
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8a618cfca1b0fd1c2b21b578.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_12ce37964662d88c8a41fe5c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98276f2f4550f28b1d0112c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6255e607b3186eea33228d8d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1433f95186a234eb9dbea230.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_e4297d28508e4eadbfee096c.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_a07afe1b1823860ac453566f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_864a8c69137fdf09719a3f2c.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_e0fee60f84aa67e8b2ac2455.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_3366247e4d95da105f8c7679.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_e95c433b8d38c6c04596137e.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_46bba346828121cbf6ce62ff.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3ec86ad8535e56497f3cb523.woff')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v5{vertical-align:-78.480000px;}
.v3{vertical-align:-59.040000px;}
.v6{vertical-align:-48.240000px;}
.v2{vertical-align:-41.040000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.942000px;}
.lsb{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.349800px;}
.ls15{letter-spacing:-0.269400px;}
.ls17{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.223800px;}
.ls1b{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.150600px;}
.ls10{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144720px;}
.ls1e{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.223800px;}
.lse{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls21{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.460200px;}
.ls8{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.978000px;}
.ls20{letter-spacing:0.979920px;}
.ls2{letter-spacing:15.300000px;}
.ls1f{letter-spacing:16.506720px;}
.ls1c{letter-spacing:46.026720px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls14{letter-spacing:277.680000px;}
.ls1{letter-spacing:352.776000px;}
.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;}
}
.ws8{word-spacing:-41.760000px;}
.wsd{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws2{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.400200px;}
.ws18{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.580000px;}
.wse{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.790600px;}
.wsf{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.340000px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
.ws1{word-spacing:60.865920px;}
._6{margin-left:-59.580000px;}
._39{margin-left:-7.948080px;}
._3d{margin-left:-6.174960px;}
._2c{margin-left:-5.076000px;}
._18{margin-left:-3.837600px;}
._3{margin-left:-2.229120px;}
._2{margin-left:-1.216800px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._24{width:3.515760px;}
._23{width:4.840560px;}
._10{width:5.916240px;}
._19{width:6.935760px;}
._15{width:8.187120px;}
._25{width:9.203040px;}
._a{width:10.218960px;}
._17{width:11.867040px;}
._b{width:13.206960px;}
._1a{width:14.958000px;}
._1b{width:16.035600px;}
._26{width:17.118240px;}
._e{width:18.167040px;}
._1d{width:19.601280px;}
._f{width:21.214800px;}
._8{width:22.979520px;}
._9{width:24.262560px;}
._22{width:25.797360px;}
._1e{width:26.951760px;}
._1f{width:28.445760px;}
._20{width:29.521440px;}
._28{width:30.895920px;}
._29{width:31.971600px;}
._2f{width:33.166800px;}
._16{width:34.302240px;}
._34{width:35.437680px;}
._35{width:37.409760px;}
._21{width:39.381840px;}
._2b{width:40.481280px;}
._36{width:42.608880px;}
._2e{width:43.624800px;}
._14{width:44.700480px;}
._3e{width:45.977040px;}
._31{width:47.150640px;}
._32{width:48.463200px;}
._11{width:50.078880px;}
._12{width:51.246000px;}
._37{width:53.544960px;}
._13{width:54.979200px;}
._2a{width:56.616960px;}
._27{width:57.967200px;}
._c{width:60.210000px;}
._d{width:61.373520px;}
._33{width:64.215840px;}
._4{width:65.496000px;}
._3f{width:66.664080px;}
._2d{width:72.727920px;}
._30{width:75.596400px;}
._3a{width:78.524640px;}
._38{width:80.676000px;}
._40{width:90.177840px;}
._3c{width:187.168320px;}
._5{width:199.620000px;}
._1c{width:282.270000px;}
._3b{width:454.506480px;}
._41{width:511.333200px;}
._7{width:755.976000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(63,63,241);}
.fc3{color:transparent;}
.fc6{color:rgb(46,116,181);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fse{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs1{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fsf{font-size:131.760000px;}
.y74{bottom:-251.670000px;}
.y73{bottom:-217.830000px;}
.y72{bottom:-184.170000px;}
.y83{bottom:-169.050000px;}
.y71{bottom:-150.330000px;}
.y82{bottom:-135.210000px;}
.y70{bottom:-116.670000px;}
.y81{bottom:-101.550000px;}
.y6f{bottom:-83.010000px;}
.y80{bottom:-67.890000px;}
.y6e{bottom:-49.140000px;}
.y7f{bottom:-34.050000px;}
.y67{bottom:-28.650000px;}
.y3d{bottom:-27.180000px;}
.y85{bottom:-17.922750px;}
.y6d{bottom:-15.480000px;}
.y7e{bottom:-0.345000px;}
.y0{bottom:0.000000px;}
.y64{bottom:1.815000px;}
.y233{bottom:1.837500px;}
.y6c{bottom:2.520000px;}
.y3{bottom:3.960000px;}
.y119{bottom:4.665000px;}
.y101{bottom:4.680000px;}
.y160{bottom:4.695000px;}
.y117{bottom:4.845000px;}
.y102{bottom:4.860000px;}
.y3c{bottom:5.040000px;}
.y180{bottom:5.220000px;}
.y66{bottom:5.580000px;}
.y133{bottom:5.955000px;}
.y158{bottom:6.480000px;}
.y168{bottom:7.380000px;}
.y12d{bottom:7.920000px;}
.y12b{bottom:8.640000px;}
.y189{bottom:8.655000px;}
.y13c{bottom:9.360000px;}
.y161{bottom:9.540000px;}
.yff{bottom:9.720000px;}
.y13e{bottom:10.080000px;}
.y14e{bottom:10.620000px;}
.y17b{bottom:11.160000px;}
.y8{bottom:12.420000px;}
.y17e{bottom:12.600000px;}
.y136{bottom:12.780000px;}
.y12f{bottom:12.960000px;}
.y5{bottom:13.500000px;}
.y4{bottom:13.680000px;}
.y63{bottom:13.875000px;}
.y183{bottom:14.940000px;}
.y6b{bottom:15.660000px;}
.y15c{bottom:17.820000px;}
.y151{bottom:18.000000px;}
.y179{bottom:18.360000px;}
.y16d{bottom:18.705000px;}
.y14c{bottom:18.720000px;}
.y15f{bottom:18.915000px;}
.y170{bottom:19.440000px;}
.y131{bottom:19.980000px;}
.y17d{bottom:20.520000px;}
.y5a{bottom:20.685000px;}
.y137{bottom:20.700000px;}
.y130{bottom:20.880000px;}
.y165{bottom:21.420000px;}
.y167{bottom:21.600000px;}
.y187{bottom:22.680000px;}
.y12c{bottom:23.940000px;}
.y7{bottom:25.200000px;}
.y17a{bottom:25.365000px;}
.y62{bottom:25.935000px;}
.y182{bottom:27.000000px;}
.y129{bottom:28.260000px;}
.y6a{bottom:28.620000px;}
.y156{bottom:28.995000px;}
.y7d{bottom:30.615000px;}
.y16f{bottom:30.945000px;}
.y15d{bottom:32.220000px;}
.y59{bottom:34.545000px;}
.y174{bottom:34.920000px;}
.y177{bottom:35.100000px;}
.y166{bottom:35.460000px;}
.y153{bottom:36.000000px;}
.y61{bottom:37.995000px;}
.y6{bottom:38.160000px;}
.y69{bottom:41.040000px;}
.y154{bottom:43.020000px;}
.y58{bottom:43.365000px;}
.y7c{bottom:44.295000px;}
.yf0{bottom:46.260000px;}
.y176{bottom:48.945000px;}
.y60{bottom:50.055000px;}
.y7b{bottom:57.615000px;}
.y88{bottom:60.480000px;}
.y57{bottom:61.185000px;}
.y2{bottom:61.380000px;}
.y5f{bottom:62.145000px;}
.yef{bottom:62.640000px;}
.y84{bottom:63.780000px;}
.y7a{bottom:70.575000px;}
.y5e{bottom:74.385000px;}
.y56{bottom:79.230000px;}
.yee{bottom:80.460000px;}
.y79{bottom:83.535000px;}
.y5d{bottom:86.445000px;}
.y78{bottom:96.675000px;}
.y55{bottom:97.050000px;}
.ybe{bottom:98.820000px;}
.y5c{bottom:103.365000px;}
.y1ca{bottom:103.680000px;}
.y1f6{bottom:104.940000px;}
.y1a8{bottom:105.660000px;}
.y126{bottom:109.620000px;}
.y77{bottom:109.635000px;}
.y14a{bottom:110.340000px;}
.y226{bottom:111.420000px;}
.yed{bottom:113.400000px;}
.y54{bottom:114.870000px;}
.ybd{bottom:118.620000px;}
.y76{bottom:122.055000px;}
.y3a{bottom:122.760000px;}
.y149{bottom:123.120000px;}
.y1c9{bottom:123.480000px;}
.y1f5{bottom:124.740000px;}
.y1a7{bottom:125.460000px;}
.y53{bottom:128.190000px;}
.y125{bottom:129.420000px;}
.y232{bottom:131.220000px;}
.yec{bottom:133.200000px;}
.y196{bottom:135.360000px;}
.y148{bottom:135.540000px;}
.y219{bottom:136.980000px;}
.y52{bottom:137.010000px;}
.ybc{bottom:138.420000px;}
.y39{bottom:142.740000px;}
.y1c8{bottom:143.280000px;}
.y1a6{bottom:145.260000px;}
.y1f4{bottom:145.440000px;}
.y124{bottom:149.220000px;}
.yeb{bottom:153.000000px;}
.y51{bottom:154.830000px;}
.y195{bottom:155.160000px;}
.y218{bottom:156.780000px;}
.ybb{bottom:159.300000px;}
.y38{bottom:162.570000px;}
.y1c7{bottom:163.110000px;}
.y1a5{bottom:165.270000px;}
.y123{bottom:169.050000px;}
.y50{bottom:172.650000px;}
.yea{bottom:173.010000px;}
.y194{bottom:174.990000px;}
.y217{bottom:176.610000px;}
.yba{bottom:178.950000px;}
.y37{bottom:182.370000px;}
.y1c6{bottom:183.090000px;}
.y1a4{bottom:185.070000px;}
.y1f3{bottom:186.330000px;}
.y225{bottom:187.050000px;}
.y122{bottom:189.030000px;}
.y4f{bottom:190.650000px;}
.yb9{bottom:192.090000px;}
.ye9{bottom:192.810000px;}
.y193{bottom:194.970000px;}
.y216{bottom:196.410000px;}
.y36{bottom:202.170000px;}
.y1c5{bottom:202.890000px;}
.y1a3{bottom:204.870000px;}
.y1f2{bottom:206.310000px;}
.y231{bottom:206.850000px;}
.y4e{bottom:208.470000px;}
.y121{bottom:208.830000px;}
.yb8{bottom:211.890000px;}
.ye8{bottom:212.610000px;}
.y192{bottom:214.770000px;}
.y215{bottom:216.210000px;}
.y35{bottom:221.970000px;}
.y1c4{bottom:222.690000px;}
.y1a2{bottom:224.670000px;}
.y224{bottom:224.850000px;}
.y4d{bottom:226.290000px;}
.y1f1{bottom:227.010000px;}
.y120{bottom:228.630000px;}
.yb7{bottom:231.690000px;}
.ye7{bottom:232.410000px;}
.y191{bottom:234.570000px;}
.y214{bottom:236.190000px;}
.y34{bottom:241.950000px;}
.y1c3{bottom:242.490000px;}
.y4c{bottom:244.110000px;}
.y1a1{bottom:244.470000px;}
.y230{bottom:244.650000px;}
.y11f{bottom:248.430000px;}
.ye6{bottom:252.210000px;}
.yb6{bottom:252.570000px;}
.y190{bottom:254.370000px;}
.y213{bottom:255.990000px;}
.y33{bottom:261.750000px;}
.y4b{bottom:261.930000px;}
.y1c2{bottom:262.290000px;}
.y223{bottom:262.650000px;}
.y1a0{bottom:264.450000px;}
.y1f0{bottom:267.870000px;}
.y11e{bottom:268.230000px;}
.ye5{bottom:272.190000px;}
.yb5{bottom:273.450000px;}
.y18f{bottom:274.170000px;}
.y212{bottom:275.790000px;}
.y4a{bottom:279.750000px;}
.y32{bottom:281.550000px;}
.y1c1{bottom:282.270000px;}
.y22f{bottom:282.630000px;}
.y19f{bottom:284.250000px;}
.y1ef{bottom:287.670000px;}
.y11d{bottom:288.210000px;}
.ye4{bottom:292.890000px;}
.y18e{bottom:294.150000px;}
.y211{bottom:295.590000px;}
.y49{bottom:297.750000px;}
.y222{bottom:300.630000px;}
.y1c0{bottom:302.070000px;}
.y31{bottom:302.250000px;}
.y19e{bottom:304.050000px;}
.y1ee{bottom:308.370000px;}
.yb4{bottom:311.610000px;}
.y18d{bottom:313.950000px;}
.y210{bottom:315.390000px;}
.y48{bottom:315.600000px;}
.y11c{bottom:316.470000px;}
.y22e{bottom:320.430000px;}
.y3e{bottom:320.625000px;}
.y1bf{bottom:321.870000px;}
.y30{bottom:322.590000px;}
.y19d{bottom:323.850000px;}
.y11b{bottom:328.185000px;}
.yb3{bottom:328.890000px;}
.y47{bottom:328.920000px;}
.y2f{bottom:332.490000px;}
.ye3{bottom:333.750000px;}
.y20f{bottom:335.370000px;}
.y46{bottom:337.740000px;}
.y221{bottom:338.430000px;}
.y1be{bottom:341.670000px;}
.y19c{bottom:343.650000px;}
.y2e{bottom:344.010000px;}
.y11a{bottom:344.925000px;}
.yb2{bottom:346.170000px;}
.y1ed{bottom:349.410000px;}
.ye2{bottom:353.550000px;}
.y20e{bottom:355.170000px;}
.y45{bottom:355.560000px;}
.y22d{bottom:358.230000px;}
.y1bd{bottom:361.470000px;}
.y118{bottom:361.485000px;}
.yb1{bottom:363.450000px;}
.y19b{bottom:363.630000px;}
.y2d{bottom:367.770000px;}
.y1ec{bottom:370.110000px;}
.ye1{bottom:373.350000px;}
.y44{bottom:373.380000px;}
.y20d{bottom:374.970000px;}
.y220{bottom:376.230000px;}
.y116{bottom:378.045000px;}
.yb0{bottom:380.730000px;}
.y1bc{bottom:381.450000px;}
.y19a{bottom:383.430000px;}
.y43{bottom:391.380000px;}
.y2c{bottom:391.530000px;}
.ye0{bottom:393.375000px;}
.y1eb{bottom:393.915000px;}
.y115{bottom:394.815000px;}
.y22c{bottom:396.075000px;}
.yaf{bottom:398.055000px;}
.y75{bottom:399.480000px;}
.y1bb{bottom:401.295000px;}
.y199{bottom:403.275000px;}
.y42{bottom:404.520000px;}
.y114{bottom:411.375000px;}
.y2b{bottom:412.455000px;}
.ydf{bottom:413.175000px;}
.y41{bottom:413.520000px;}
.y21f{bottom:414.075000px;}
.y20c{bottom:414.615000px;}
.yae{bottom:415.155000px;}
.y1ba{bottom:421.095000px;}
.y198{bottom:423.075000px;}
.y113{bottom:427.935000px;}
.y40{bottom:431.340000px;}
.y2a{bottom:432.255000px;}
.yad{bottom:432.435000px;}
.yde{bottom:433.875000px;}
.y20b{bottom:434.595000px;}
.y1ea{bottom:434.775000px;}
.y1b9{bottom:440.895000px;}
.y197{bottom:442.875000px;}
.y112{bottom:444.675000px;}
.y29{bottom:446.115000px;}
.y3f{bottom:449.160000px;}
.yac{bottom:449.715000px;}
.y21e{bottom:451.875000px;}
.ydd{bottom:453.675000px;}
.y20a{bottom:454.395000px;}
.y1e9{bottom:454.575000px;}
.y28{bottom:454.755000px;}
.y1b8{bottom:460.695000px;}
.y111{bottom:461.235000px;}
.ydc{bottom:466.635000px;}
.yab{bottom:466.995000px;}
.y22b{bottom:471.855000px;}
.y18c{bottom:473.115000px;}
.y209{bottom:474.195000px;}
.y1e8{bottom:474.555000px;}
.y110{bottom:477.795000px;}
.y27{bottom:477.975000px;}
.y1b7{bottom:480.675000px;}
.yaa{bottom:484.275000px;}
.ydb{bottom:486.615000px;}
.y18b{bottom:486.795000px;}
.y21d{bottom:489.855000px;}
.y208{bottom:493.995000px;}
.y1e7{bottom:494.355000px;}
.y10f{bottom:494.535000px;}
.y1b6{bottom:500.475000px;}
.y18a{bottom:500.655000px;}
.y26{bottom:501.375000px;}
.ya9{bottom:501.555000px;}
.yda{bottom:506.415000px;}
.y22a{bottom:509.655000px;}
.y10e{bottom:511.095000px;}
.y188{bottom:512.520000px;}
.y186{bottom:512.535000px;}
.y207{bottom:513.795000px;}
.y1e6{bottom:514.155000px;}
.ya8{bottom:518.655000px;}
.y1b5{bottom:520.275000px;}
.y25{bottom:524.595000px;}
.yd9{bottom:526.215000px;}
.y10d{bottom:527.655000px;}
.y206{bottom:533.775000px;}
.y1e5{bottom:533.955000px;}
.y185{bottom:534.135000px;}
.ya7{bottom:535.935000px;}
.y1b4{bottom:540.075000px;}
.y10c{bottom:544.395000px;}
.yd8{bottom:546.015000px;}
.y229{bottom:547.455000px;}
.y184{bottom:550.695000px;}
.ya6{bottom:553.215000px;}
.y205{bottom:553.575000px;}
.y1e4{bottom:553.755000px;}
.y1b3{bottom:559.875000px;}
.y10b{bottom:560.955000px;}
.y21c{bottom:565.455000px;}
.yd7{bottom:565.815000px;}
.y181{bottom:567.435000px;}
.y5b{bottom:568.140000px;}
.y147{bottom:568.155000px;}
.ya5{bottom:570.495000px;}
.y204{bottom:573.375000px;}
.y1e3{bottom:573.735000px;}
.y10a{bottom:577.515000px;}
.y24{bottom:579.495000px;}
.y1b2{bottom:579.855000px;}
.y228{bottom:585.255000px;}
.yd6{bottom:585.795000px;}
.ya4{bottom:587.775000px;}
.y203{bottom:593.175000px;}
.y109{bottom:594.255000px;}
.y1e2{bottom:594.435000px;}
.y23{bottom:594.975000px;}
.y1b1{bottom:599.655000px;}
.y146{bottom:601.095000px;}
.y21b{bottom:603.255000px;}
.ya3{bottom:604.875000px;}
.yd5{bottom:605.595000px;}
.y22{bottom:610.455000px;}
.y108{bottom:610.815000px;}
.y17f{bottom:610.995000px;}
.y202{bottom:612.975000px;}
.y145{bottom:613.335000px;}
.y1b0{bottom:619.455000px;}
.ya2{bottom:622.155000px;}
.y227{bottom:623.085000px;}
.y144{bottom:625.065000px;}
.yd4{bottom:625.425000px;}
.y21{bottom:625.965000px;}
.y107{bottom:627.405000px;}
.y17c{bottom:628.485000px;}
.y201{bottom:632.985000px;}
.y1e1{bottom:635.325000px;}
.y1af{bottom:639.285000px;}
.ya1{bottom:639.465000px;}
.y21a{bottom:641.085000px;}
.y20{bottom:641.625000px;}
.y106{bottom:644.145000px;}
.yd3{bottom:645.225000px;}
.y200{bottom:652.785000px;}
.y1e0{bottom:655.125000px;}
.ya0{bottom:656.745000px;}
.y1f{bottom:657.105000px;}
.y143{bottom:658.365000px;}
.y1ae{bottom:659.085000px;}
.y105{bottom:660.705000px;}
.y173{bottom:661.065000px;}
.y175{bottom:661.080000px;}
.yd2{bottom:665.025000px;}
.y1e{bottom:672.585000px;}
.y9f{bottom:674.025000px;}
.y1df{bottom:674.925000px;}
.y104{bottom:677.265000px;}
.y1ad{bottom:679.065000px;}
.y1d{bottom:683.745000px;}
.yd1{bottom:685.005000px;}
.y142{bottom:690.765000px;}
.y9e{bottom:691.305000px;}
.y1ff{bottom:693.285000px;}
.y103{bottom:694.005000px;}
.y1de{bottom:694.905000px;}
.y68{bottom:695.625000px;}
.y1c{bottom:697.425000px;}
.y1ac{bottom:698.865000px;}
.y178{bottom:704.625000px;}
.yd0{bottom:704.805000px;}
.y9d{bottom:708.405000px;}
.y1b{bottom:710.025000px;}
.y100{bottom:710.565000px;}
.y1dd{bottom:714.705000px;}
.y1ab{bottom:718.665000px;}
.y172{bottom:721.185000px;}
.y1a{bottom:722.445000px;}
.y141{bottom:723.345000px;}
.ycf{bottom:724.605000px;}
.y9c{bottom:725.685000px;}
.yfe{bottom:728.565000px;}
.y1fe{bottom:734.145000px;}
.y1dc{bottom:734.505000px;}
.y19{bottom:735.225000px;}
.y171{bottom:737.745000px;}
.y1aa{bottom:738.465000px;}
.y140{bottom:739.905000px;}
.y9b{bottom:742.965000px;}
.yce{bottom:744.405000px;}
.y18{bottom:749.085000px;}
.y1fd{bottom:754.125000px;}
.y1db{bottom:754.305000px;}
.y16e{bottom:754.485000px;}
.y16c{bottom:754.500000px;}
.y13f{bottom:756.465000px;}
.y1a9{bottom:758.265000px;}
.yfd{bottom:759.705000px;}
.y9a{bottom:760.245000px;}
.y17{bottom:761.865000px;}
.ycd{bottom:764.205000px;}
.y16b{bottom:771.045000px;}
.y1da{bottom:774.105000px;}
.y1fc{bottom:774.825000px;}
.y99{bottom:777.525000px;}
.yfc{bottom:778.245000px;}
.ycc{bottom:784.185000px;}
.y16a{bottom:787.620000px;}
.y16{bottom:788.685000px;}
.y13d{bottom:789.045000px;}
.y1d9{bottom:794.085000px;}
.y98{bottom:794.805000px;}
.yfb{bottom:798.045000px;}
.ycb{bottom:803.985000px;}
.y164{bottom:804.345000px;}
.y97{bottom:811.905000px;}
.y1d8{bottom:813.885000px;}
.y1fb{bottom:815.685000px;}
.y13b{bottom:816.045000px;}
.yfa{bottom:817.845000px;}
.y15{bottom:819.465000px;}
.y169{bottom:820.905000px;}
.yca{bottom:823.785000px;}
.y96{bottom:829.185000px;}
.y1d7{bottom:833.685000px;}
.y1fa{bottom:835.485000px;}
.y163{bottom:837.480000px;}
.yf9{bottom:837.645000px;}
.y14{bottom:837.825000px;}
.y13a{bottom:841.605000px;}
.yc9{bottom:843.585000px;}
.y95{bottom:846.465000px;}
.y13{bottom:851.505000px;}
.y1d6{bottom:853.530000px;}
.y162{bottom:854.250000px;}
.y1f9{bottom:855.330000px;}
.yf8{bottom:857.490000px;}
.y139{bottom:858.390000px;}
.yc8{bottom:863.430000px;}
.y94{bottom:863.790000px;}
.y12{bottom:865.410000px;}
.y15e{bottom:870.795000px;}
.y15b{bottom:870.810000px;}
.y1d5{bottom:873.330000px;}
.y1f8{bottom:875.310000px;}
.yf7{bottom:877.470000px;}
.y11{bottom:879.270000px;}
.y93{bottom:881.070000px;}
.yc7{bottom:883.410000px;}
.y138{bottom:890.790000px;}
.y10{bottom:892.950000px;}
.y1d4{bottom:893.310000px;}
.y1f7{bottom:896.010000px;}
.y15a{bottom:896.730000px;}
.yf6{bottom:897.270000px;}
.y92{bottom:898.350000px;}
.yc6{bottom:903.210000px;}
.y1d3{bottom:913.110000px;}
.y159{bottom:913.290000px;}
.y91{bottom:915.450000px;}
.yf{bottom:917.070000px;}
.yc5{bottom:923.010000px;}
.y135{bottom:923.370000px;}
.y155{bottom:929.835000px;}
.y152{bottom:929.850000px;}
.y90{bottom:932.730000px;}
.y1d2{bottom:932.910000px;}
.ye{bottom:936.150000px;}
.yf5{bottom:936.870000px;}
.yc4{bottom:942.810000px;}
.y157{bottom:949.470000px;}
.y8f{bottom:950.010000px;}
.y1d1{bottom:952.710000px;}
.y134{bottom:955.770000px;}
.yf4{bottom:956.670000px;}
.yd{bottom:957.750000px;}
.yc3{bottom:962.610000px;}
.y150{bottom:966.030000px;}
.y8e{bottom:967.290000px;}
.y132{bottom:972.315000px;}
.y12e{bottom:972.330000px;}
.y1d0{bottom:972.510000px;}
.yf3{bottom:976.650000px;}
.yc{bottom:980.970000px;}
.yc2{bottom:982.590000px;}
.y8d{bottom:984.570000px;}
.y1cf{bottom:992.490000px;}
.yf2{bottom:996.450000px;}
.y8c{bottom:1001.670000px;}
.yc1{bottom:1003.290000px;}
.yb{bottom:1004.550000px;}
.y128{bottom:1006.350000px;}
.y14f{bottom:1008.690000px;}
.y1ce{bottom:1012.290000px;}
.yf1{bottom:1016.250000px;}
.y8b{bottom:1018.950000px;}
.yc0{bottom:1022.910000px;}
.y14b{bottom:1025.250000px;}
.y1cd{bottom:1032.090000px;}
.ybf{bottom:1036.050000px;}
.ya{bottom:1036.230000px;}
.y14d{bottom:1041.810000px;}
.y12a{bottom:1045.410000px;}
.y1cc{bottom:1051.890000px;}
.y8a{bottom:1055.850000px;}
.y9{bottom:1063.230000px;}
.y1cb{bottom:1072.590000px;}
.y89{bottom:1075.650000px;}
.y127{bottom:1077.090000px;}
.y65{bottom:1096.200000px;}
.y87{bottom:1105.920000px;}
.y1{bottom:1121.220000px;}
.y86{bottom:1123.200000px;}
.y3b{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h56{height:6.257812px;}
.h3{height:13.500000px;}
.h2c{height:15.825000px;}
.h2a{height:15.840000px;}
.h2d{height:15.861000px;}
.h35{height:15.862500px;}
.h2b{height:15.870000px;}
.h39{height:16.020000px;}
.h4d{height:16.770000px;}
.h18{height:16.920000px;}
.h17{height:18.140625px;}
.h41{height:18.885000px;}
.h53{height:20.865000px;}
.h1e{height:22.140000px;}
.h15{height:23.319141px;}
.h2f{height:23.925000px;}
.h36{height:24.840000px;}
.h45{height:25.185000px;}
.h29{height:25.740000px;}
.h37{height:26.280000px;}
.h3c{height:27.525000px;}
.h26{height:29.664141px;}
.hc{height:29.678906px;}
.he{height:30.963516px;}
.h34{height:31.665000px;}
.h38{height:31.680000px;}
.h31{height:31.845000px;}
.h32{height:31.851000px;}
.h33{height:31.860000px;}
.h47{height:32.395500px;}
.h48{height:32.400000px;}
.h13{height:36.281250px;}
.h50{height:37.425000px;}
.h51{height:37.435500px;}
.h52{height:37.440000px;}
.h30{height:38.325000px;}
.h12{height:39.503370px;}
.h6{height:40.985156px;}
.h28{height:41.535703px;}
.h27{height:41.726953px;}
.h42{height:41.745000px;}
.h43{height:41.751000px;}
.h44{height:41.760000px;}
.h3d{height:41.925000px;}
.h1d{height:42.086250px;}
.h4f{height:42.645000px;}
.h22{height:42.759141px;}
.h4c{height:42.835500px;}
.h4b{height:42.840000px;}
.h3b{height:44.085000px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hd{height:47.344922px;}
.h5{height:47.699850px;}
.h19{height:48.616875px;}
.h46{height:48.982500px;}
.h20{height:52.020000px;}
.h14{height:52.998047px;}
.h1a{height:54.421875px;}
.hf{height:55.291992px;}
.h4{height:58.651172px;}
.h55{height:59.439023px;}
.ha{height:60.226875px;}
.h4e{height:60.330000px;}
.h54{height:61.423863px;}
.h2e{height:62.985000px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.h25{height:70.628906px;}
.h24{height:70.664062px;}
.h16{height:72.562500px;}
.h1f{height:74.953125px;}
.h23{height:75.093750px;}
.h4a{height:75.955500px;}
.h49{height:75.960000px;}
.h3e{height:78.105000px;}
.h3f{height:78.111000px;}
.h40{height:78.120000px;}
.h8{height:86.585445px;}
.h9{height:96.508125px;}
.h1c{height:111.465000px;}
.h3a{height:129.315234px;}
.h21{height:133.020000px;}
.h1b{height:461.415000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wf{width:30.951000px;}
.wc{width:34.185000px;}
.w1c{width:43.365000px;}
.w24{width:43.371000px;}
.w21{width:43.375500px;}
.w1f{width:43.380000px;}
.w1a{width:43.545000px;}
.w22{width:43.551000px;}
.w25{width:43.555500px;}
.w23{width:43.560000px;}
.w1b{width:45.885000px;}
.w27{width:45.891000px;}
.w28{width:45.900000px;}
.w1d{width:45.921000px;}
.w26{width:45.922500px;}
.w1e{width:45.930000px;}
.w29{width:45.936000px;}
.w2a{width:45.945000px;}
.w13{width:59.760000px;}
.wd{width:72.921000px;}
.w11{width:79.725000px;}
.w3{width:82.071000px;}
.w16{width:89.265000px;}
.w18{width:89.310000px;}
.w17{width:89.481000px;}
.w19{width:90.936000px;}
.w12{width:94.530000px;}
.we{width:107.121000px;}
.w15{width:134.496000px;}
.w9{width:154.470000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.wb{width:212.070000px;}
.w14{width:229.521000px;}
.w10{width:456.390000px;}
.w20{width:491.865000px;}
.w6{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:4.252500px;}
.x2{left:8.091000px;}
.x34{left:9.351000px;}
.x14{left:10.791000px;}
.x32{left:12.411000px;}
.x25{left:13.665000px;}
.x2e{left:15.840000px;}
.x3e{left:18.345000px;}
.x28{left:19.425000px;}
.x1a{left:21.255000px;}
.x29{left:22.350000px;}
.x30{left:27.540000px;}
.x31{left:28.620000px;}
.x33{left:29.880000px;}
.x43{left:31.860000px;}
.x44{left:39.420000px;}
.x27{left:53.445000px;}
.x3{left:73.965000px;}
.x13{left:81.765000px;}
.x19{left:93.105000px;}
.x16{left:94.545000px;}
.xf{left:101.196000px;}
.x1{left:108.036000px;}
.x20{left:110.196000px;}
.x1c{left:111.636000px;}
.x6{left:127.296000px;}
.x10{left:132.696000px;}
.x1e{left:135.036000px;}
.x9{left:136.476000px;}
.x2a{left:139.005000px;}
.x36{left:141.876000px;}
.xb{left:177.870000px;}
.x7{left:183.270000px;}
.x4{left:190.125000px;}
.xa{left:193.350000px;}
.xc{left:203.070000px;}
.x2b{left:216.210000px;}
.xe{left:218.730000px;}
.xd{left:221.070000px;}
.x42{left:245.955000px;}
.x15{left:302.655000px;}
.x22{left:303.915000px;}
.x23{left:309.135000px;}
.x17{left:310.350000px;}
.x37{left:337.575000px;}
.x18{left:371.580000px;}
.x3c{left:428.520000px;}
.x1d{left:444.165000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.x38{left:472.080000px;}
.x11{left:489.165000px;}
.x12{left:490.785000px;}
.x3d{left:517.980000px;}
.x24{left:521.220000px;}
.x26{left:555.420000px;}
.x39{left:561.360000px;}
.x2c{left:595.410000px;}
.x3f{left:607.290000px;}
.x1b{left:620.253000px;}
.x21{left:645.450000px;}
.x3a{left:650.850000px;}
.x2d{left:675.150000px;}
.x40{left:696.750000px;}
.x3b{left:740.130000px;}
.x2f{left:769.680000px;}
.x41{left:786.060000px;}
.x35{left:794.160000px;}
.x1f{left:799.200000px;}
@media print{
.v5{vertical-align:-69.760000pt;}
.v3{vertical-align:-52.480000pt;}
.v6{vertical-align:-42.880000pt;}
.v2{vertical-align:-36.480000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.837333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.310933pt;}
.ls15{letter-spacing:-0.239467pt;}
.ls17{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls1b{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.133867pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls1e{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.198933pt;}
.lse{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls21{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.409067pt;}
.ls8{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.869333pt;}
.ls20{letter-spacing:0.871040pt;}
.ls2{letter-spacing:13.600000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls14{letter-spacing:246.826667pt;}
.ls1{letter-spacing:313.578667pt;}
.ws8{word-spacing:-37.120000pt;}
.wsd{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.689067pt;}
.ws18{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.096533pt;}
.ws17{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.480533pt;}
.wsf{word-spacing:-10.400000pt;}
.ws13{word-spacing:-10.080000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
.ws1{word-spacing:54.103040pt;}
._6{margin-left:-52.960000pt;}
._39{margin-left:-7.064960pt;}
._3d{margin-left:-5.488853pt;}
._2c{margin-left:-4.512000pt;}
._18{margin-left:-3.411200pt;}
._3{margin-left:-1.981440pt;}
._2{margin-left:-1.081600pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._24{width:3.125120pt;}
._23{width:4.302720pt;}
._10{width:5.258880pt;}
._19{width:6.165120pt;}
._15{width:7.277440pt;}
._25{width:8.180480pt;}
._a{width:9.083520pt;}
._17{width:10.548480pt;}
._b{width:11.739520pt;}
._1a{width:13.296000pt;}
._1b{width:14.253867pt;}
._26{width:15.216213pt;}
._e{width:16.148480pt;}
._1d{width:17.423360pt;}
._f{width:18.857600pt;}
._8{width:20.426240pt;}
._9{width:21.566720pt;}
._22{width:22.930987pt;}
._1e{width:23.957120pt;}
._1f{width:25.285120pt;}
._20{width:26.241280pt;}
._28{width:27.463040pt;}
._29{width:28.419200pt;}
._2f{width:29.481600pt;}
._16{width:30.490880pt;}
._34{width:31.500160pt;}
._35{width:33.253120pt;}
._21{width:35.006080pt;}
._2b{width:35.983360pt;}
._36{width:37.874560pt;}
._2e{width:38.777600pt;}
._14{width:39.733760pt;}
._3e{width:40.868480pt;}
._31{width:41.911680pt;}
._32{width:43.078400pt;}
._11{width:44.514560pt;}
._12{width:45.552000pt;}
._37{width:47.595520pt;}
._13{width:48.870400pt;}
._2a{width:50.326187pt;}
._27{width:51.526400pt;}
._c{width:53.520000pt;}
._d{width:54.554240pt;}
._33{width:57.080747pt;}
._4{width:58.218667pt;}
._3f{width:59.256960pt;}
._2d{width:64.647040pt;}
._30{width:67.196800pt;}
._3a{width:69.799680pt;}
._38{width:71.712000pt;}
._40{width:80.158080pt;}
._3c{width:166.371840pt;}
._5{width:177.440000pt;}
._1c{width:250.906667pt;}
._3b{width:404.005760pt;}
._41{width:454.518400pt;}
._7{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fse{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs1{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fsf{font-size:117.120000pt;}
.y74{bottom:-223.706667pt;}
.y73{bottom:-193.626667pt;}
.y72{bottom:-163.706667pt;}
.y83{bottom:-150.266667pt;}
.y71{bottom:-133.626667pt;}
.y82{bottom:-120.186667pt;}
.y70{bottom:-103.706667pt;}
.y81{bottom:-90.266667pt;}
.y6f{bottom:-73.786667pt;}
.y80{bottom:-60.346667pt;}
.y6e{bottom:-43.680000pt;}
.y7f{bottom:-30.266667pt;}
.y67{bottom:-25.466667pt;}
.y3d{bottom:-24.160000pt;}
.y85{bottom:-15.931333pt;}
.y6d{bottom:-13.760000pt;}
.y7e{bottom:-0.306667pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.613333pt;}
.y233{bottom:1.633333pt;}
.y6c{bottom:2.240000pt;}
.y3{bottom:3.520000pt;}
.y119{bottom:4.146667pt;}
.y101{bottom:4.160000pt;}
.y160{bottom:4.173333pt;}
.y117{bottom:4.306667pt;}
.y102{bottom:4.320000pt;}
.y3c{bottom:4.480000pt;}
.y180{bottom:4.640000pt;}
.y66{bottom:4.960000pt;}
.y133{bottom:5.293333pt;}
.y158{bottom:5.760000pt;}
.y168{bottom:6.560000pt;}
.y12d{bottom:7.040000pt;}
.y12b{bottom:7.680000pt;}
.y189{bottom:7.693333pt;}
.y13c{bottom:8.320000pt;}
.y161{bottom:8.480000pt;}
.yff{bottom:8.640000pt;}
.y13e{bottom:8.960000pt;}
.y14e{bottom:9.440000pt;}
.y17b{bottom:9.920000pt;}
.y8{bottom:11.040000pt;}
.y17e{bottom:11.200000pt;}
.y136{bottom:11.360000pt;}
.y12f{bottom:11.520000pt;}
.y5{bottom:12.000000pt;}
.y4{bottom:12.160000pt;}
.y63{bottom:12.333333pt;}
.y183{bottom:13.280000pt;}
.y6b{bottom:13.920000pt;}
.y15c{bottom:15.840000pt;}
.y151{bottom:16.000000pt;}
.y179{bottom:16.320000pt;}
.y16d{bottom:16.626667pt;}
.y14c{bottom:16.640000pt;}
.y15f{bottom:16.813333pt;}
.y170{bottom:17.280000pt;}
.y131{bottom:17.760000pt;}
.y17d{bottom:18.240000pt;}
.y5a{bottom:18.386667pt;}
.y137{bottom:18.400000pt;}
.y130{bottom:18.560000pt;}
.y165{bottom:19.040000pt;}
.y167{bottom:19.200000pt;}
.y187{bottom:20.160000pt;}
.y12c{bottom:21.280000pt;}
.y7{bottom:22.400000pt;}
.y17a{bottom:22.546667pt;}
.y62{bottom:23.053333pt;}
.y182{bottom:24.000000pt;}
.y129{bottom:25.120000pt;}
.y6a{bottom:25.440000pt;}
.y156{bottom:25.773333pt;}
.y7d{bottom:27.213333pt;}
.y16f{bottom:27.506667pt;}
.y15d{bottom:28.640000pt;}
.y59{bottom:30.706667pt;}
.y174{bottom:31.040000pt;}
.y177{bottom:31.200000pt;}
.y166{bottom:31.520000pt;}
.y153{bottom:32.000000pt;}
.y61{bottom:33.773333pt;}
.y6{bottom:33.920000pt;}
.y69{bottom:36.480000pt;}
.y154{bottom:38.240000pt;}
.y58{bottom:38.546667pt;}
.y7c{bottom:39.373333pt;}
.yf0{bottom:41.120000pt;}
.y176{bottom:43.506667pt;}
.y60{bottom:44.493333pt;}
.y7b{bottom:51.213333pt;}
.y88{bottom:53.760000pt;}
.y57{bottom:54.386667pt;}
.y2{bottom:54.560000pt;}
.y5f{bottom:55.240000pt;}
.yef{bottom:55.680000pt;}
.y84{bottom:56.693333pt;}
.y7a{bottom:62.733333pt;}
.y5e{bottom:66.120000pt;}
.y56{bottom:70.426667pt;}
.yee{bottom:71.520000pt;}
.y79{bottom:74.253333pt;}
.y5d{bottom:76.840000pt;}
.y78{bottom:85.933333pt;}
.y55{bottom:86.266667pt;}
.ybe{bottom:87.840000pt;}
.y5c{bottom:91.880000pt;}
.y1ca{bottom:92.160000pt;}
.y1f6{bottom:93.280000pt;}
.y1a8{bottom:93.920000pt;}
.y126{bottom:97.440000pt;}
.y77{bottom:97.453333pt;}
.y14a{bottom:98.080000pt;}
.y226{bottom:99.040000pt;}
.yed{bottom:100.800000pt;}
.y54{bottom:102.106667pt;}
.ybd{bottom:105.440000pt;}
.y76{bottom:108.493333pt;}
.y3a{bottom:109.120000pt;}
.y149{bottom:109.440000pt;}
.y1c9{bottom:109.760000pt;}
.y1f5{bottom:110.880000pt;}
.y1a7{bottom:111.520000pt;}
.y53{bottom:113.946667pt;}
.y125{bottom:115.040000pt;}
.y232{bottom:116.640000pt;}
.yec{bottom:118.400000pt;}
.y196{bottom:120.320000pt;}
.y148{bottom:120.480000pt;}
.y219{bottom:121.760000pt;}
.y52{bottom:121.786667pt;}
.ybc{bottom:123.040000pt;}
.y39{bottom:126.880000pt;}
.y1c8{bottom:127.360000pt;}
.y1a6{bottom:129.120000pt;}
.y1f4{bottom:129.280000pt;}
.y124{bottom:132.640000pt;}
.yeb{bottom:136.000000pt;}
.y51{bottom:137.626667pt;}
.y195{bottom:137.920000pt;}
.y218{bottom:139.360000pt;}
.ybb{bottom:141.600000pt;}
.y38{bottom:144.506667pt;}
.y1c7{bottom:144.986667pt;}
.y1a5{bottom:146.906667pt;}
.y123{bottom:150.266667pt;}
.y50{bottom:153.466667pt;}
.yea{bottom:153.786667pt;}
.y194{bottom:155.546667pt;}
.y217{bottom:156.986667pt;}
.yba{bottom:159.066667pt;}
.y37{bottom:162.106667pt;}
.y1c6{bottom:162.746667pt;}
.y1a4{bottom:164.506667pt;}
.y1f3{bottom:165.626667pt;}
.y225{bottom:166.266667pt;}
.y122{bottom:168.026667pt;}
.y4f{bottom:169.466667pt;}
.yb9{bottom:170.746667pt;}
.ye9{bottom:171.386667pt;}
.y193{bottom:173.306667pt;}
.y216{bottom:174.586667pt;}
.y36{bottom:179.706667pt;}
.y1c5{bottom:180.346667pt;}
.y1a3{bottom:182.106667pt;}
.y1f2{bottom:183.386667pt;}
.y231{bottom:183.866667pt;}
.y4e{bottom:185.306667pt;}
.y121{bottom:185.626667pt;}
.yb8{bottom:188.346667pt;}
.ye8{bottom:188.986667pt;}
.y192{bottom:190.906667pt;}
.y215{bottom:192.186667pt;}
.y35{bottom:197.306667pt;}
.y1c4{bottom:197.946667pt;}
.y1a2{bottom:199.706667pt;}
.y224{bottom:199.866667pt;}
.y4d{bottom:201.146667pt;}
.y1f1{bottom:201.786667pt;}
.y120{bottom:203.226667pt;}
.yb7{bottom:205.946667pt;}
.ye7{bottom:206.586667pt;}
.y191{bottom:208.506667pt;}
.y214{bottom:209.946667pt;}
.y34{bottom:215.066667pt;}
.y1c3{bottom:215.546667pt;}
.y4c{bottom:216.986667pt;}
.y1a1{bottom:217.306667pt;}
.y230{bottom:217.466667pt;}
.y11f{bottom:220.826667pt;}
.ye6{bottom:224.186667pt;}
.yb6{bottom:224.506667pt;}
.y190{bottom:226.106667pt;}
.y213{bottom:227.546667pt;}
.y33{bottom:232.666667pt;}
.y4b{bottom:232.826667pt;}
.y1c2{bottom:233.146667pt;}
.y223{bottom:233.466667pt;}
.y1a0{bottom:235.066667pt;}
.y1f0{bottom:238.106667pt;}
.y11e{bottom:238.426667pt;}
.ye5{bottom:241.946667pt;}
.yb5{bottom:243.066667pt;}
.y18f{bottom:243.706667pt;}
.y212{bottom:245.146667pt;}
.y4a{bottom:248.666667pt;}
.y32{bottom:250.266667pt;}
.y1c1{bottom:250.906667pt;}
.y22f{bottom:251.226667pt;}
.y19f{bottom:252.666667pt;}
.y1ef{bottom:255.706667pt;}
.y11d{bottom:256.186667pt;}
.ye4{bottom:260.346667pt;}
.y18e{bottom:261.466667pt;}
.y211{bottom:262.746667pt;}
.y49{bottom:264.666667pt;}
.y222{bottom:267.226667pt;}
.y1c0{bottom:268.506667pt;}
.y31{bottom:268.666667pt;}
.y19e{bottom:270.266667pt;}
.y1ee{bottom:274.106667pt;}
.yb4{bottom:276.986667pt;}
.y18d{bottom:279.066667pt;}
.y210{bottom:280.346667pt;}
.y48{bottom:280.533333pt;}
.y11c{bottom:281.306667pt;}
.y22e{bottom:284.826667pt;}
.y3e{bottom:285.000000pt;}
.y1bf{bottom:286.106667pt;}
.y30{bottom:286.746667pt;}
.y19d{bottom:287.866667pt;}
.y11b{bottom:291.720000pt;}
.yb3{bottom:292.346667pt;}
.y47{bottom:292.373333pt;}
.y2f{bottom:295.546667pt;}
.ye3{bottom:296.666667pt;}
.y20f{bottom:298.106667pt;}
.y46{bottom:300.213333pt;}
.y221{bottom:300.826667pt;}
.y1be{bottom:303.706667pt;}
.y19c{bottom:305.466667pt;}
.y2e{bottom:305.786667pt;}
.y11a{bottom:306.600000pt;}
.yb2{bottom:307.706667pt;}
.y1ed{bottom:310.586667pt;}
.ye2{bottom:314.266667pt;}
.y20e{bottom:315.706667pt;}
.y45{bottom:316.053333pt;}
.y22d{bottom:318.426667pt;}
.y1bd{bottom:321.306667pt;}
.y118{bottom:321.320000pt;}
.yb1{bottom:323.066667pt;}
.y19b{bottom:323.226667pt;}
.y2d{bottom:326.906667pt;}
.y1ec{bottom:328.986667pt;}
.ye1{bottom:331.866667pt;}
.y44{bottom:331.893333pt;}
.y20d{bottom:333.306667pt;}
.y220{bottom:334.426667pt;}
.y116{bottom:336.040000pt;}
.yb0{bottom:338.426667pt;}
.y1bc{bottom:339.066667pt;}
.y19a{bottom:340.826667pt;}
.y43{bottom:347.893333pt;}
.y2c{bottom:348.026667pt;}
.ye0{bottom:349.666667pt;}
.y1eb{bottom:350.146667pt;}
.y115{bottom:350.946667pt;}
.y22c{bottom:352.066667pt;}
.yaf{bottom:353.826667pt;}
.y75{bottom:355.093333pt;}
.y1bb{bottom:356.706667pt;}
.y199{bottom:358.466667pt;}
.y42{bottom:359.573333pt;}
.y114{bottom:365.666667pt;}
.y2b{bottom:366.626667pt;}
.ydf{bottom:367.266667pt;}
.y41{bottom:367.573333pt;}
.y21f{bottom:368.066667pt;}
.y20c{bottom:368.546667pt;}
.yae{bottom:369.026667pt;}
.y1ba{bottom:374.306667pt;}
.y198{bottom:376.066667pt;}
.y113{bottom:380.386667pt;}
.y40{bottom:383.413333pt;}
.y2a{bottom:384.226667pt;}
.yad{bottom:384.386667pt;}
.yde{bottom:385.666667pt;}
.y20b{bottom:386.306667pt;}
.y1ea{bottom:386.466667pt;}
.y1b9{bottom:391.906667pt;}
.y197{bottom:393.666667pt;}
.y112{bottom:395.266667pt;}
.y29{bottom:396.546667pt;}
.y3f{bottom:399.253333pt;}
.yac{bottom:399.746667pt;}
.y21e{bottom:401.666667pt;}
.ydd{bottom:403.266667pt;}
.y20a{bottom:403.906667pt;}
.y1e9{bottom:404.066667pt;}
.y28{bottom:404.226667pt;}
.y1b8{bottom:409.506667pt;}
.y111{bottom:409.986667pt;}
.ydc{bottom:414.786667pt;}
.yab{bottom:415.106667pt;}
.y22b{bottom:419.426667pt;}
.y18c{bottom:420.546667pt;}
.y209{bottom:421.506667pt;}
.y1e8{bottom:421.826667pt;}
.y110{bottom:424.706667pt;}
.y27{bottom:424.866667pt;}
.y1b7{bottom:427.266667pt;}
.yaa{bottom:430.466667pt;}
.ydb{bottom:432.546667pt;}
.y18b{bottom:432.706667pt;}
.y21d{bottom:435.426667pt;}
.y208{bottom:439.106667pt;}
.y1e7{bottom:439.426667pt;}
.y10f{bottom:439.586667pt;}
.y1b6{bottom:444.866667pt;}
.y18a{bottom:445.026667pt;}
.y26{bottom:445.666667pt;}
.ya9{bottom:445.826667pt;}
.yda{bottom:450.146667pt;}
.y22a{bottom:453.026667pt;}
.y10e{bottom:454.306667pt;}
.y188{bottom:455.573333pt;}
.y186{bottom:455.586667pt;}
.y207{bottom:456.706667pt;}
.y1e6{bottom:457.026667pt;}
.ya8{bottom:461.026667pt;}
.y1b5{bottom:462.466667pt;}
.y25{bottom:466.306667pt;}
.yd9{bottom:467.746667pt;}
.y10d{bottom:469.026667pt;}
.y206{bottom:474.466667pt;}
.y1e5{bottom:474.626667pt;}
.y185{bottom:474.786667pt;}
.ya7{bottom:476.386667pt;}
.y1b4{bottom:480.066667pt;}
.y10c{bottom:483.906667pt;}
.yd8{bottom:485.346667pt;}
.y229{bottom:486.626667pt;}
.y184{bottom:489.506667pt;}
.ya6{bottom:491.746667pt;}
.y205{bottom:492.066667pt;}
.y1e4{bottom:492.226667pt;}
.y1b3{bottom:497.666667pt;}
.y10b{bottom:498.626667pt;}
.y21c{bottom:502.626667pt;}
.yd7{bottom:502.946667pt;}
.y181{bottom:504.386667pt;}
.y5b{bottom:505.013333pt;}
.y147{bottom:505.026667pt;}
.ya5{bottom:507.106667pt;}
.y204{bottom:509.666667pt;}
.y1e3{bottom:509.986667pt;}
.y10a{bottom:513.346667pt;}
.y24{bottom:515.106667pt;}
.y1b2{bottom:515.426667pt;}
.y228{bottom:520.226667pt;}
.yd6{bottom:520.706667pt;}
.ya4{bottom:522.466667pt;}
.y203{bottom:527.266667pt;}
.y109{bottom:528.226667pt;}
.y1e2{bottom:528.386667pt;}
.y23{bottom:528.866667pt;}
.y1b1{bottom:533.026667pt;}
.y146{bottom:534.306667pt;}
.y21b{bottom:536.226667pt;}
.ya3{bottom:537.666667pt;}
.yd5{bottom:538.306667pt;}
.y22{bottom:542.626667pt;}
.y108{bottom:542.946667pt;}
.y17f{bottom:543.106667pt;}
.y202{bottom:544.866667pt;}
.y145{bottom:545.186667pt;}
.y1b0{bottom:550.626667pt;}
.ya2{bottom:553.026667pt;}
.y227{bottom:553.853333pt;}
.y144{bottom:555.613333pt;}
.yd4{bottom:555.933333pt;}
.y21{bottom:556.413333pt;}
.y107{bottom:557.693333pt;}
.y17c{bottom:558.653333pt;}
.y201{bottom:562.653333pt;}
.y1e1{bottom:564.733333pt;}
.y1af{bottom:568.253333pt;}
.ya1{bottom:568.413333pt;}
.y21a{bottom:569.853333pt;}
.y20{bottom:570.333333pt;}
.y106{bottom:572.573333pt;}
.yd3{bottom:573.533333pt;}
.y200{bottom:580.253333pt;}
.y1e0{bottom:582.333333pt;}
.ya0{bottom:583.773333pt;}
.y1f{bottom:584.093333pt;}
.y143{bottom:585.213333pt;}
.y1ae{bottom:585.853333pt;}
.y105{bottom:587.293333pt;}
.y173{bottom:587.613333pt;}
.y175{bottom:587.626667pt;}
.yd2{bottom:591.133333pt;}
.y1e{bottom:597.853333pt;}
.y9f{bottom:599.133333pt;}
.y1df{bottom:599.933333pt;}
.y104{bottom:602.013333pt;}
.y1ad{bottom:603.613333pt;}
.y1d{bottom:607.773333pt;}
.yd1{bottom:608.893333pt;}
.y142{bottom:614.013333pt;}
.y9e{bottom:614.493333pt;}
.y1ff{bottom:616.253333pt;}
.y103{bottom:616.893333pt;}
.y1de{bottom:617.693333pt;}
.y68{bottom:618.333333pt;}
.y1c{bottom:619.933333pt;}
.y1ac{bottom:621.213333pt;}
.y178{bottom:626.333333pt;}
.yd0{bottom:626.493333pt;}
.y9d{bottom:629.693333pt;}
.y1b{bottom:631.133333pt;}
.y100{bottom:631.613333pt;}
.y1dd{bottom:635.293333pt;}
.y1ab{bottom:638.813333pt;}
.y172{bottom:641.053333pt;}
.y1a{bottom:642.173333pt;}
.y141{bottom:642.973333pt;}
.ycf{bottom:644.093333pt;}
.y9c{bottom:645.053333pt;}
.yfe{bottom:647.613333pt;}
.y1fe{bottom:652.573333pt;}
.y1dc{bottom:652.893333pt;}
.y19{bottom:653.533333pt;}
.y171{bottom:655.773333pt;}
.y1aa{bottom:656.413333pt;}
.y140{bottom:657.693333pt;}
.y9b{bottom:660.413333pt;}
.yce{bottom:661.693333pt;}
.y18{bottom:665.853333pt;}
.y1fd{bottom:670.333333pt;}
.y1db{bottom:670.493333pt;}
.y16e{bottom:670.653333pt;}
.y16c{bottom:670.666667pt;}
.y13f{bottom:672.413333pt;}
.y1a9{bottom:674.013333pt;}
.yfd{bottom:675.293333pt;}
.y9a{bottom:675.773333pt;}
.y17{bottom:677.213333pt;}
.ycd{bottom:679.293333pt;}
.y16b{bottom:685.373333pt;}
.y1da{bottom:688.093333pt;}
.y1fc{bottom:688.733333pt;}
.y99{bottom:691.133333pt;}
.yfc{bottom:691.773333pt;}
.ycc{bottom:697.053333pt;}
.y16a{bottom:700.106667pt;}
.y16{bottom:701.053333pt;}
.y13d{bottom:701.373333pt;}
.y1d9{bottom:705.853333pt;}
.y98{bottom:706.493333pt;}
.yfb{bottom:709.373333pt;}
.ycb{bottom:714.653333pt;}
.y164{bottom:714.973333pt;}
.y97{bottom:721.693333pt;}
.y1d8{bottom:723.453333pt;}
.y1fb{bottom:725.053333pt;}
.y13b{bottom:725.373333pt;}
.yfa{bottom:726.973333pt;}
.y15{bottom:728.413333pt;}
.y169{bottom:729.693333pt;}
.yca{bottom:732.253333pt;}
.y96{bottom:737.053333pt;}
.y1d7{bottom:741.053333pt;}
.y1fa{bottom:742.653333pt;}
.y163{bottom:744.426667pt;}
.yf9{bottom:744.573333pt;}
.y14{bottom:744.733333pt;}
.y13a{bottom:748.093333pt;}
.yc9{bottom:749.853333pt;}
.y95{bottom:752.413333pt;}
.y13{bottom:756.893333pt;}
.y1d6{bottom:758.693333pt;}
.y162{bottom:759.333333pt;}
.y1f9{bottom:760.293333pt;}
.yf8{bottom:762.213333pt;}
.y139{bottom:763.013333pt;}
.yc8{bottom:767.493333pt;}
.y94{bottom:767.813333pt;}
.y12{bottom:769.253333pt;}
.y15e{bottom:774.040000pt;}
.y15b{bottom:774.053333pt;}
.y1d5{bottom:776.293333pt;}
.y1f8{bottom:778.053333pt;}
.yf7{bottom:779.973333pt;}
.y11{bottom:781.573333pt;}
.y93{bottom:783.173333pt;}
.yc7{bottom:785.253333pt;}
.y138{bottom:791.813333pt;}
.y10{bottom:793.733333pt;}
.y1d4{bottom:794.053333pt;}
.y1f7{bottom:796.453333pt;}
.y15a{bottom:797.093333pt;}
.yf6{bottom:797.573333pt;}
.y92{bottom:798.533333pt;}
.yc6{bottom:802.853333pt;}
.y1d3{bottom:811.653333pt;}
.y159{bottom:811.813333pt;}
.y91{bottom:813.733333pt;}
.yf{bottom:815.173333pt;}
.yc5{bottom:820.453333pt;}
.y135{bottom:820.773333pt;}
.y155{bottom:826.520000pt;}
.y152{bottom:826.533333pt;}
.y90{bottom:829.093333pt;}
.y1d2{bottom:829.253333pt;}
.ye{bottom:832.133333pt;}
.yf5{bottom:832.773333pt;}
.yc4{bottom:838.053333pt;}
.y157{bottom:843.973333pt;}
.y8f{bottom:844.453333pt;}
.y1d1{bottom:846.853333pt;}
.y134{bottom:849.573333pt;}
.yf4{bottom:850.373333pt;}
.yd{bottom:851.333333pt;}
.yc3{bottom:855.653333pt;}
.y150{bottom:858.693333pt;}
.y8e{bottom:859.813333pt;}
.y132{bottom:864.280000pt;}
.y12e{bottom:864.293333pt;}
.y1d0{bottom:864.453333pt;}
.yf3{bottom:868.133333pt;}
.yc{bottom:871.973333pt;}
.yc2{bottom:873.413333pt;}
.y8d{bottom:875.173333pt;}
.y1cf{bottom:882.213333pt;}
.yf2{bottom:885.733333pt;}
.y8c{bottom:890.373333pt;}
.yc1{bottom:891.813333pt;}
.yb{bottom:892.933333pt;}
.y128{bottom:894.533333pt;}
.y14f{bottom:896.613333pt;}
.y1ce{bottom:899.813333pt;}
.yf1{bottom:903.333333pt;}
.y8b{bottom:905.733333pt;}
.yc0{bottom:909.253333pt;}
.y14b{bottom:911.333333pt;}
.y1cd{bottom:917.413333pt;}
.ybf{bottom:920.933333pt;}
.ya{bottom:921.093333pt;}
.y14d{bottom:926.053333pt;}
.y12a{bottom:929.253333pt;}
.y1cc{bottom:935.013333pt;}
.y8a{bottom:938.533333pt;}
.y9{bottom:945.093333pt;}
.y1cb{bottom:953.413333pt;}
.y89{bottom:956.133333pt;}
.y127{bottom:957.413333pt;}
.y65{bottom:974.400000pt;}
.y87{bottom:983.040000pt;}
.y1{bottom:996.640000pt;}
.y86{bottom:998.400000pt;}
.y3b{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h56{height:5.562500pt;}
.h3{height:12.000000pt;}
.h2c{height:14.066667pt;}
.h2a{height:14.080000pt;}
.h2d{height:14.098667pt;}
.h35{height:14.100000pt;}
.h2b{height:14.106667pt;}
.h39{height:14.240000pt;}
.h4d{height:14.906667pt;}
.h18{height:15.040000pt;}
.h17{height:16.125000pt;}
.h41{height:16.786667pt;}
.h53{height:18.546667pt;}
.h1e{height:19.680000pt;}
.h15{height:20.728125pt;}
.h2f{height:21.266667pt;}
.h36{height:22.080000pt;}
.h45{height:22.386667pt;}
.h29{height:22.880000pt;}
.h37{height:23.360000pt;}
.h3c{height:24.466667pt;}
.h26{height:26.368125pt;}
.hc{height:26.381250pt;}
.he{height:27.523125pt;}
.h34{height:28.146667pt;}
.h38{height:28.160000pt;}
.h31{height:28.306667pt;}
.h32{height:28.312000pt;}
.h33{height:28.320000pt;}
.h47{height:28.796000pt;}
.h48{height:28.800000pt;}
.h13{height:32.250000pt;}
.h50{height:33.266667pt;}
.h51{height:33.276000pt;}
.h52{height:33.280000pt;}
.h30{height:34.066667pt;}
.h12{height:35.114107pt;}
.h6{height:36.431250pt;}
.h28{height:36.920625pt;}
.h27{height:37.090625pt;}
.h42{height:37.106667pt;}
.h43{height:37.112000pt;}
.h44{height:37.120000pt;}
.h3d{height:37.266667pt;}
.h1d{height:37.410000pt;}
.h4f{height:37.906667pt;}
.h22{height:38.008125pt;}
.h4c{height:38.076000pt;}
.h4b{height:38.080000pt;}
.h3b{height:39.186667pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hd{height:42.084375pt;}
.h5{height:42.399867pt;}
.h19{height:43.215000pt;}
.h46{height:43.540000pt;}
.h20{height:46.240000pt;}
.h14{height:47.109375pt;}
.h1a{height:48.375000pt;}
.hf{height:49.148438pt;}
.h4{height:52.134375pt;}
.h55{height:52.834688pt;}
.ha{height:53.535000pt;}
.h4e{height:53.626667pt;}
.h54{height:54.598989pt;}
.h2e{height:55.986667pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.h25{height:62.781250pt;}
.h24{height:62.812500pt;}
.h16{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h23{height:66.750000pt;}
.h4a{height:67.516000pt;}
.h49{height:67.520000pt;}
.h3e{height:69.426667pt;}
.h3f{height:69.432000pt;}
.h40{height:69.440000pt;}
.h8{height:76.964840pt;}
.h9{height:85.785000pt;}
.h1c{height:99.080000pt;}
.h3a{height:114.946875pt;}
.h21{height:118.240000pt;}
.h1b{height:410.146667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wf{width:27.512000pt;}
.wc{width:30.386667pt;}
.w1c{width:38.546667pt;}
.w24{width:38.552000pt;}
.w21{width:38.556000pt;}
.w1f{width:38.560000pt;}
.w1a{width:38.706667pt;}
.w22{width:38.712000pt;}
.w25{width:38.716000pt;}
.w23{width:38.720000pt;}
.w1b{width:40.786667pt;}
.w27{width:40.792000pt;}
.w28{width:40.800000pt;}
.w1d{width:40.818667pt;}
.w26{width:40.820000pt;}
.w1e{width:40.826667pt;}
.w29{width:40.832000pt;}
.w2a{width:40.840000pt;}
.w13{width:53.120000pt;}
.wd{width:64.818667pt;}
.w11{width:70.866667pt;}
.w3{width:72.952000pt;}
.w16{width:79.346667pt;}
.w18{width:79.386667pt;}
.w17{width:79.538667pt;}
.w19{width:80.832000pt;}
.w12{width:84.026667pt;}
.we{width:95.218667pt;}
.w15{width:119.552000pt;}
.w9{width:137.306667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.wb{width:188.506667pt;}
.w14{width:204.018667pt;}
.w10{width:405.680000pt;}
.w20{width:437.213333pt;}
.w6{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.780000pt;}
.x2{left:7.192000pt;}
.x34{left:8.312000pt;}
.x14{left:9.592000pt;}
.x32{left:11.032000pt;}
.x25{left:12.146667pt;}
.x2e{left:14.080000pt;}
.x3e{left:16.306667pt;}
.x28{left:17.266667pt;}
.x1a{left:18.893333pt;}
.x29{left:19.866667pt;}
.x30{left:24.480000pt;}
.x31{left:25.440000pt;}
.x33{left:26.560000pt;}
.x43{left:28.320000pt;}
.x44{left:35.040000pt;}
.x27{left:47.506667pt;}
.x3{left:65.746667pt;}
.x13{left:72.680000pt;}
.x19{left:82.760000pt;}
.x16{left:84.040000pt;}
.xf{left:89.952000pt;}
.x1{left:96.032000pt;}
.x20{left:97.952000pt;}
.x1c{left:99.232000pt;}
.x6{left:113.152000pt;}
.x10{left:117.952000pt;}
.x1e{left:120.032000pt;}
.x9{left:121.312000pt;}
.x2a{left:123.560000pt;}
.x36{left:126.112000pt;}
.xb{left:158.106667pt;}
.x7{left:162.906667pt;}
.x4{left:169.000000pt;}
.xa{left:171.866667pt;}
.xc{left:180.506667pt;}
.x2b{left:192.186667pt;}
.xe{left:194.426667pt;}
.xd{left:196.506667pt;}
.x42{left:218.626667pt;}
.x15{left:269.026667pt;}
.x22{left:270.146667pt;}
.x23{left:274.786667pt;}
.x17{left:275.866667pt;}
.x37{left:300.066667pt;}
.x18{left:330.293333pt;}
.x3c{left:380.906667pt;}
.x1d{left:394.813333pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.x38{left:419.626667pt;}
.x11{left:434.813333pt;}
.x12{left:436.253333pt;}
.x3d{left:460.426667pt;}
.x24{left:463.306667pt;}
.x26{left:493.706667pt;}
.x39{left:498.986667pt;}
.x2c{left:529.253333pt;}
.x3f{left:539.813333pt;}
.x1b{left:551.336000pt;}
.x21{left:573.733333pt;}
.x3a{left:578.533333pt;}
.x2d{left:600.133333pt;}
.x40{left:619.333333pt;}
.x3b{left:657.893333pt;}
.x2f{left:684.160000pt;}
.x41{left:698.720000pt;}
.x35{left:705.920000pt;}
.x1f{left:710.400000pt;}
}




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