
    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_7429ec83da6e551a93640ca7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208000;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_693a3495f29b78e575e40311.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.044000;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_192b50bc5459fac8cd73e92b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_af399a516dae5f41e3bb0672.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.204000;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_02c5810852f7bd39e7f94648.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.204000;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_091cf9ded66072f6fef9268f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_dc017a255b68bcfe6d7e7695.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_7da3b16941e3cfb64a56e9a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.718000;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_829dbb81ad5d22863e347e18.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891602;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_925fdd9a38a11080362f1d91.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208000;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;}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:81.328124px;}
.ls18{letter-spacing:84.662110px;}
.lse{letter-spacing:91.801463px;}
.ls12{letter-spacing:112.650078px;}
.ls9{letter-spacing:113.009949px;}
.ls10{letter-spacing:113.069962px;}
.ls5{letter-spacing:115.409020px;}
.ls3{letter-spacing:116.248650px;}
.ls14{letter-spacing:117.987992px;}
.lsf{letter-spacing:125.689820px;}
.lsd{letter-spacing:128.088891px;}
.lsc{letter-spacing:128.928519px;}
.ls1{letter-spacing:130.212570px;}
.ls8{letter-spacing:131.327591px;}
.lsb{letter-spacing:144.222521px;}
.ls7{letter-spacing:146.621592px;}
.ls16{letter-spacing:149.200560px;}
.ls2{letter-spacing:1630.175234px;}
.lsa{letter-spacing:1835.114234px;}
.ls4{letter-spacing:1980.437234px;}
.ls6{letter-spacing:2204.328839px;}
.ls13{letter-spacing:2238.935076px;}
.ls11{letter-spacing:2239.594848px;}
.ls15{letter-spacing:2336.036679px;}
.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;}
}
.ws2{word-spacing:-25.632001px;}
.ws3{word-spacing:-22.427999px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.700000px;}
.ws7{word-spacing:-16.440000px;}
.ws1{word-spacing:-16.020000px;}
.ws5{word-spacing:-13.152000px;}
.ws8{word-spacing:-12.816000px;}
.ws0{word-spacing:0.000000px;}
._18{margin-left:-6.609375px;}
._17{margin-left:-5.343750px;}
._1a{margin-left:-3.829375px;}
._5{margin-left:-1.000459px;}
._8{width:2.603236px;}
._2{width:3.627531px;}
._3{width:5.369814px;}
._1{width:8.134340px;}
._c{width:9.560627px;}
._7{width:10.576845px;}
._6{width:12.197067px;}
._0{width:13.498186px;}
._9{width:17.879414px;}
._b{width:22.343468px;}
._12{width:23.344778px;}
._a{width:26.951561px;}
._e{width:31.291468px;}
._14{width:32.410330px;}
._d{width:35.944976px;}
._13{width:40.466015px;}
._16{width:44.973089px;}
._10{width:49.395335px;}
._f{width:53.901579px;}
._11{width:55.089845px;}
._15{width:58.403966px;}
._19{width:62.999999px;}
._4{width:67.409550px;}
._21{width:76.374911px;}
._22{width:85.455981px;}
._1d{width:89.774858px;}
._23{width:94.455981px;}
._1e{width:98.921087px;}
._24{width:103.415520px;}
._1c{width:112.499988px;}
._1b{width:117.000000px;}
._1f{width:278.789327px;}
._20{width:696.502638px;}
.fc2{color:rgb(107,193,255);}
.fc1{color:rgb(107,193,254);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000002px;}
.fs4{font-size:41.999999px;}
.fs3{font-size:48.000002px;}
.fs0{font-size:59.999999px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:83.999997px;}
.fs2{font-size:96.000003px;}
.fs7{font-size:108.000000px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y28e{bottom:4.200000px;}
.y223{bottom:6.901175px;}
.y27{bottom:9.750000px;}
.y29{bottom:9.750092px;}
.y47{bottom:12.150000px;}
.y2d5{bottom:12.410157px;}
.y22b{bottom:12.411621px;}
.y78{bottom:12.412353px;}
.y44{bottom:12.412719px;}
.yed{bottom:12.413086px;}
.y167{bottom:12.893550px;}
.y172{bottom:12.893564px;}
.y1a{bottom:13.200000px;}
.y21c{bottom:13.200002px;}
.y1fa{bottom:13.200006px;}
.y251{bottom:14.250000px;}
.y24a{bottom:15.898230px;}
.y1d6{bottom:15.898236px;}
.y1e2{bottom:15.898238px;}
.y1a5{bottom:15.898242px;}
.y1c3{bottom:15.898244px;}
.y1be{bottom:15.898247px;}
.y1dc{bottom:15.899699px;}
.y1cc{bottom:15.899708px;}
.y1d0{bottom:15.899709px;}
.y258{bottom:15.899712px;}
.y212{bottom:15.899714px;}
.y1bb{bottom:15.899715px;}
.y1d9{bottom:15.901164px;}
.y20b{bottom:15.901169px;}
.y27a{bottom:15.901170px;}
.y1a2{bottom:15.901172px;}
.y1ae{bottom:15.901173px;}
.y228{bottom:15.901175px;}
.y266{bottom:15.901176px;}
.y1e9{bottom:15.901178px;}
.y269{bottom:15.902637px;}
.y1ec{bottom:15.902649px;}
.y1b{bottom:17.625000px;}
.y8d{bottom:17.625368px;}
.y24{bottom:18.675056px;}
.y340{bottom:18.677345px;}
.y339{bottom:19.535157px;}
.y1d{bottom:19.537536px;}
.y66{bottom:22.125000px;}
.y2f2{bottom:22.199997px;}
.y28d{bottom:22.200000px;}
.y178{bottom:23.241207px;}
.y17b{bottom:23.241209px;}
.y159{bottom:23.242676px;}
.y182{bottom:23.242677px;}
.y15e{bottom:23.244141px;}
.y16e{bottom:23.244147px;}
.yaa{bottom:25.405665px;}
.y79{bottom:25.406025px;}
.y49{bottom:25.406400px;}
.y22c{bottom:25.407135px;}
.y2d6{bottom:25.408590px;}
.y46{bottom:25.650000px;}
.y222{bottom:27.602345px;}
.y1f2{bottom:31.200000px;}
.y21b{bottom:31.200002px;}
.y2f{bottom:32.250000px;}
.y18{bottom:33.375000px;}
.y33f{bottom:34.198835px;}
.y23{bottom:34.199927px;}
.y17d{bottom:35.244141px;}
.y257{bottom:36.597942px;}
.y211{bottom:36.597944px;}
.y1ba{bottom:36.597945px;}
.y26c{bottom:36.597950px;}
.y234{bottom:36.597951px;}
.y1cb{bottom:36.597953px;}
.y1d5{bottom:36.599406px;}
.y1e1{bottom:36.599408px;}
.y1a4{bottom:36.599414px;}
.y1ad{bottom:36.599415px;}
.y1bd{bottom:36.599417px;}
.y1cf{bottom:36.600879px;}
.y20a{bottom:36.600884px;}
.y265{bottom:36.600891px;}
.y279{bottom:36.602340px;}
.y227{bottom:36.602345px;}
.y1e8{bottom:36.602348px;}
.yec{bottom:36.618164px;}
.y43{bottom:36.618531px;}
.y77{bottom:36.618897px;}
.y22a{bottom:36.619629px;}
.y2d4{bottom:36.621093px;}
.y28c{bottom:40.200000px;}
.y171{bottom:42.591794px;}
.y166{bottom:42.591795px;}
.y1aa{bottom:45.599414px;}
.y45{bottom:47.906250px;}
.y6f{bottom:48.000000px;}
.y2f7{bottom:49.199997px;}
.y1f5{bottom:49.200000px;}
.y21a{bottom:49.200002px;}
.y22{bottom:49.725074px;}
.y33e{bottom:49.726175px;}
.y177{bottom:54.290037px;}
.y181{bottom:54.290040px;}
.y15d{bottom:54.291501px;}
.y16d{bottom:54.291507px;}
.y72{bottom:54.750000px;}
.y48{bottom:56.906250px;}
.y256{bottom:57.297657px;}
.y1c2{bottom:57.297659px;}
.y1b9{bottom:57.297660px;}
.y209{bottom:57.299114px;}
.y249{bottom:57.299115px;}
.y1d4{bottom:57.299121px;}
.y1ca{bottom:57.299123px;}
.y1e0{bottom:57.300578px;}
.y1ac{bottom:57.300587px;}
.y278{bottom:57.302055px;}
.y1e7{bottom:57.302063px;}
.y28b{bottom:58.200000px;}
.y21{bottom:65.249945px;}
.y33d{bottom:65.253515px;}
.y1a9{bottom:66.300587px;}
.y1f9{bottom:67.200000px;}
.y219{bottom:67.200002px;}
.y341{bottom:71.625000px;}
.y170{bottom:72.290039px;}
.y165{bottom:72.290040px;}
.y6e{bottom:73.875000px;}
.y17a{bottom:75.290038px;}
.y312{bottom:76.199997px;}
.y28a{bottom:76.200000px;}
.y71{bottom:77.250000px;}
.y1c1{bottom:77.998829px;}
.y1b8{bottom:77.998830px;}
.y248{bottom:78.000285px;}
.y1c9{bottom:78.000293px;}
.y23c{bottom:85.200000px;}
.y176{bottom:85.335927px;}
.y180{bottom:85.337403px;}
.y15c{bottom:85.338861px;}
.y16c{bottom:85.338867px;}
.y1a8{bottom:86.998829px;}
.y20{bottom:89.775000px;}
.y33c{bottom:89.775005px;}
.y164{bottom:92.988270px;}
.y16{bottom:94.125000px;}
.y8c{bottom:94.125368px;}
.y289{bottom:94.200000px;}
.y218{bottom:96.901172px;}
.y42{bottom:97.106250px;}
.y1b7{bottom:98.700000px;}
.y311{bottom:103.199997px;}
.y23b{bottom:103.200000px;}
.y1f{bottom:105.300056px;}
.y33b{bottom:105.302345px;}
.y1a7{bottom:107.700000px;}
.y288{bottom:112.200000px;}
.y14{bottom:114.600030px;}
.y175{bottom:116.384757px;}
.y17f{bottom:116.384766px;}
.y16b{bottom:116.386227px;}
.y33a{bottom:116.548826px;}
.y154{bottom:117.524415px;}
.y261{bottom:117.900877px;}
.y300{bottom:117.902340px;}
.y247{bottom:119.398230px;}
.y1b6{bottom:119.399715px;}
.y122{bottom:120.899414px;}
.y302{bottom:121.200000px;}
.y163{bottom:122.686515px;}
.y31d{bottom:126.902340px;}
.y264{bottom:128.249994px;}
.y30a{bottom:129.152340px;}
.y19f{bottom:129.234374px;}
.y281{bottom:129.375000px;}
.y310{bottom:130.199997px;}
.y287{bottom:130.200000px;}
.y225{bottom:130.500000px;}
.y23f{bottom:133.088385px;}
.y140{bottom:134.173829px;}
.y2e9{bottom:136.125000px;}
.ya9{bottom:136.649414px;}
.y226{bottom:136.798826px;}
.y15b{bottom:137.384766px;}
.yce{bottom:137.774414px;}
.y263{bottom:138.599121px;}
.y338{bottom:138.732423px;}
.y1b5{bottom:140.097945px;}
.y31c{bottom:140.402340px;}
.y221{bottom:141.298826px;}
.y10c{bottom:141.825435px;}
.y17c{bottom:146.525387px;}
.y121{bottom:146.774414px;}
.y174{bottom:147.430662px;}
.y16a{bottom:147.433602px;}
.y286{bottom:148.200000px;}
.y262{bottom:148.951178px;}
.y13{bottom:149.475030px;}
.y2ed{bottom:149.625000px;}
.y162{bottom:152.384760px;}
.y153{bottom:152.399415px;}
.y31b{bottom:153.902340px;}
.y19e{bottom:155.109374px;}
.y1e6{bottom:157.048822px;}
.y316{bottom:157.199997px;}
.y2e2{bottom:157.200000px;}
.y2dd{bottom:159.750000px;}
.y13f{bottom:160.048830px;}
.y1b4{bottom:160.797660px;}
.y246{bottom:160.799115px;}
.ya8{bottom:162.524414px;}
.ycd{bottom:163.649415px;}
.y229{bottom:163.798828px;}
.y297{bottom:164.812500px;}
.y285{bottom:166.200000px;}
.y224{bottom:166.500000px;}
.y304{bottom:167.402340px;}
.y299{bottom:169.763673px;}
.y120{bottom:172.649414px;}
.y301{bottom:175.200000px;}
.y2ec{bottom:176.625000px;}
.y10b{bottom:176.700434px;}
.y267{bottom:178.201170px;}
.y322{bottom:178.652340px;}
.y29a{bottom:180.111326px;}
.y305{bottom:180.902340px;}
.y19d{bottom:180.984374px;}
.y1b3{bottom:181.498830px;}
.y245{bottom:181.500285px;}
.y161{bottom:182.083005px;}
.y41{bottom:182.474850px;}
.y260{bottom:182.701170px;}
.y315{bottom:184.199997px;}
.y284{bottom:184.200000px;}
.y12{bottom:184.350030px;}
.y152{bottom:187.274415px;}
.ya7{bottom:188.399414px;}
.y298{bottom:190.461908px;}
.y30c{bottom:192.152340px;}
.y303{bottom:194.402340px;}
.y217{bottom:194.624998px;}
.y13e{bottom:194.923829px;}
.y1eb{bottom:198.448236px;}
.ycc{bottom:198.524414px;}
.y169{bottom:199.479492px;}
.y173{bottom:199.699225px;}
.y1b2{bottom:202.200000px;}
.y10a{bottom:202.575434px;}
.y2eb{bottom:203.625000px;}
.y21e{bottom:204.076171px;}
.y309{bottom:205.652340px;}
.y19c{bottom:206.859375px;}
.y25e{bottom:210.826170px;}
.y2e1{bottom:211.200000px;}
.y160{bottom:211.781250px;}
.ya6{bottom:214.274414px;}
.yeb{bottom:214.274415px;}
.y3e{bottom:215.099850px;}
.y2ea{bottom:217.125000px;}
.y2d3{bottom:218.999999px;}
.y1ea{bottom:219.149408px;}
.y30b{bottom:219.152340px;}
.y11{bottom:219.225030px;}
.y283{bottom:220.200000px;}
.y13d{bottom:220.798830px;}
.y1e5{bottom:221.849115px;}
.y151{bottom:222.149415px;}
.y244{bottom:222.898230px;}
.y1b1{bottom:222.898245px;}
.ycb{bottom:224.399414px;}
.y40{bottom:226.349850px;}
.y318{bottom:228.152340px;}
.y109{bottom:228.450434px;}
.y25b{bottom:231.525879px;}
.y295{bottom:236.250000px;}
.y3f{bottom:237.599850px;}
.y282{bottom:238.200000px;}
.ya5{bottom:240.149415px;}
.y19b{bottom:241.734374px;}
.y25d{bottom:241.875006px;}
.y21f{bottom:242.326170px;}
.y243{bottom:243.597945px;}
.y1b0{bottom:243.599415px;}
.y24b{bottom:246.937501px;}
.y29b{bottom:249.750000px;}
.y1df{bottom:249.975592px;}
.yca{bottom:250.274414px;}
.y25c{bottom:252.224123px;}
.y2d2{bottom:252.750000px;}
.y317{bottom:254.027340px;}
.y10{bottom:254.100030px;}
.y296{bottom:254.250000px;}
.yea{bottom:254.324565px;}
.y108{bottom:254.325434px;}
.y337{bottom:254.326171px;}
.y13c{bottom:255.673829px;}
.y150{bottom:257.024414px;}
.y220{bottom:260.326170px;}
.y242{bottom:264.299115px;}
.y2e0{bottom:265.200000px;}
.ya4{bottom:266.024414px;}
.y19a{bottom:267.609374px;}
.y3b{bottom:270.224850px;}
.y1af{bottom:275.513670px;}
.y216{bottom:275.624998px;}
.y11f{bottom:276.149414px;}
.yc9{bottom:276.149415px;}
.y21d{bottom:278.326170px;}
.y327{bottom:279.149415px;}
.y107{bottom:280.200434px;}
.y2e3{bottom:281.250000px;}
.y3d{bottom:281.474850px;}
.y13b{bottom:281.548830px;}
.y28f{bottom:282.375000px;}
.y14f{bottom:282.899414px;}
.y241{bottom:285.000285px;}
.yf{bottom:288.975030px;}
.y1e4{bottom:291.375006px;}
.y25f{bottom:291.826170px;}
.ya3{bottom:291.899415px;}
.y2df{bottom:292.200000px;}
.y3c{bottom:292.724850px;}
.y199{bottom:293.484374px;}
.y31a{bottom:295.652340px;}
.y25a{bottom:296.326170px;}
.y293{bottom:296.326173px;}
.y291{bottom:300.375000px;}
.yc8{bottom:302.024414px;}
.y240{bottom:305.700000px;}
.y106{bottom:306.075434px;}
.y210{bottom:306.451171px;}
.y2d1{bottom:307.499999px;}
.ye9{bottom:308.549566px;}
.y14e{bottom:308.774415px;}
.y2fc{bottom:309.152340px;}
.y1e3{bottom:312.076177px;}
.y1de{bottom:314.775885px;}
.y13a{bottom:316.423829px;}
.y292{bottom:317.024408px;}
.y2de{bottom:319.200000px;}
.y198{bottom:319.359374px;}
.y31f{bottom:320.402340px;}
.y319{bottom:322.652340px;}
.ye{bottom:323.850030px;}
.y179{bottom:323.888679px;}
.y255{bottom:324.451173px;}
.y3a{bottom:325.349850px;}
.ya2{bottom:326.774414px;}
.yc7{bottom:327.899414px;}
.y11e{bottom:327.899415px;}
.y214{bottom:329.849115px;}
.y105{bottom:331.950434px;}
.y326{bottom:333.902341px;}
.ye8{bottom:334.424570px;}
.y253{bottom:334.798826px;}
.y2fe{bottom:336.152340px;}
.y2e4{bottom:336.375000px;}
.y39{bottom:336.599850px;}
.y213{bottom:338.849115px;}
.y2d0{bottom:341.249999px;}
.y139{bottom:342.298830px;}
.y1db{bottom:342.899416px;}
.y14d{bottom:343.649414px;}
.y254{bottom:345.149408px;}
.y197{bottom:345.234374px;}
.y306{bottom:347.402340px;}
.y2ff{bottom:349.652340px;}
.y294{bottom:349.875000px;}
.y2a6{bottom:351.525885px;}
.ya1{bottom:352.649414px;}
.yc6{bottom:353.774414px;}
.y290{bottom:354.375000px;}
.y104{bottom:357.825434px;}
.ye7{bottom:360.300300px;}
.y60{bottom:362.324700px;}
.y11d{bottom:362.774414px;}
.y2fd{bottom:363.152340px;}
.y2e8{bottom:363.375000px;}
.y1dd{bottom:363.599123px;}
.yd{bottom:363.900000px;}
.y259{bottom:364.048830px;}
.y1da{bottom:366.298830px;}
.y215{bottom:368.548828px;}
.y252{bottom:368.548830px;}
.y1bc{bottom:368.663083px;}
.y14c{bottom:369.524414px;}
.y196{bottom:371.109375px;}
.y20f{bottom:371.250000px;}
.y308{bottom:374.402340px;}
.y2cf{bottom:375.000000px;}
.y138{bottom:377.173829px;}
.ya0{bottom:378.524414px;}
.yc5{bottom:379.649414px;}
.y38{bottom:380.474850px;}
.y27e{bottom:382.500001px;}
.y103{bottom:383.700434px;}
.y2a5{bottom:386.400885px;}
.y324{bottom:387.902340px;}
.y11c{bottom:388.649414px;}
.y2e7{bottom:390.375000px;}
.y1d3{bottom:394.426764px;}
.ye6{bottom:395.175299px;}
.y14b{bottom:395.399415px;}
.y24f{bottom:396.676764px;}
.y5f{bottom:397.199700px;}
.y208{bottom:399.375001px;}
.y321{bottom:401.402340px;}
.y137{bottom:403.048830px;}
.y27d{bottom:403.198236px;}
.y9f{bottom:404.399414px;}
.yc4{bottom:405.524414px;}
.y195{bottom:405.984374px;}
.y24d{bottom:407.024416px;}
.yc{bottom:409.125000px;}
.y102{bottom:409.575434px;}
.y201{bottom:409.724121px;}
.y27f{bottom:413.548828px;}
.y11b{bottom:414.524414px;}
.y307{bottom:414.902340px;}
.y1d8{bottom:415.125006px;}
.y168{bottom:417.106930px;}
.y24e{bottom:417.374999px;}
.y2e6{bottom:417.375000px;}
.ye5{bottom:421.050299px;}
.y2a4{bottom:421.275884px;}
.y20d{bottom:422.775885px;}
.y320{bottom:428.402340px;}
.y2ce{bottom:429.749999px;}
.y9e{bottom:430.274414px;}
.y14a{bottom:430.274415px;}
.y37{bottom:430.724850px;}
.y2e5{bottom:430.875000px;}
.yc3{bottom:431.399414px;}
.y20c{bottom:431.775885px;}
.y194{bottom:431.859374px;}
.y5e{bottom:432.074700px;}
.y101{bottom:435.450434px;}
.y1d7{bottom:435.826177px;}
.y250{bottom:436.275885px;}
.y136{bottom:437.923829px;}
.y1d2{bottom:438.525885px;}
.y336{bottom:439.576170px;}
.y11a{bottom:440.399414px;}
.y24c{bottom:440.775885px;}
.y323{bottom:441.902340px;}
.y280{bottom:442.798830px;}
.yb{bottom:444.000000px;}
.ye4{bottom:446.925299px;}
.y2a3{bottom:447.150884px;}
.y27c{bottom:447.298830px;}
.y36{bottom:449.662350px;}
.y2bb{bottom:449.849114px;}
.y76{bottom:454.125000px;}
.y2f8{bottom:455.402340px;}
.y314{bottom:455.402343px;}
.y9d{bottom:456.149415px;}
.yc2{bottom:457.274414px;}
.y193{bottom:457.734374px;}
.y100{bottom:461.325435px;}
.y20e{bottom:461.474122px;}
.y2cd{bottom:463.499999px;}
.y135{bottom:463.798829px;}
.y207{bottom:464.173830px;}
.y149{bottom:465.149415px;}
.y119{bottom:466.274414px;}
.y1c8{bottom:466.650878px;}
.y5d{bottom:466.949700px;}
.y23a{bottom:468.900885px;}
.y325{bottom:468.902340px;}
.ye3{bottom:472.800299px;}
.y2a2{bottom:473.025885px;}
.y335{bottom:474.451170px;}
.y277{bottom:475.423830px;}
.y2ba{bottom:475.724114px;}
.ya{bottom:478.875000px;}
.y2fa{bottom:482.402340px;}
.yc1{bottom:483.149414px;}
.y35{bottom:483.412350px;}
.y192{bottom:483.609374px;}
.y274{bottom:485.775878px;}
.y1d1{bottom:487.350584px;}
.y75{bottom:489.000000px;}
.y134{bottom:489.673829px;}
.y118{bottom:492.149414px;}
.y203{bottom:492.301764px;}
.y5c{bottom:492.824699px;}
.y9c{bottom:494.475000px;}
.y2fb{bottom:495.902340px;}
.y30f{bottom:495.902343px;}
.y276{bottom:496.124994px;}
.yff{bottom:496.200434px;}
.y2cc{bottom:497.249999px;}
.ye2{bottom:498.675299px;}
.y148{bottom:500.024415px;}
.y2b9{bottom:501.599114px;}
.y23d{bottom:502.198236px;}
.y205{bottom:505.349115px;}
.y275{bottom:506.474121px;}
.y74{bottom:507.375000px;}
.y2a1{bottom:507.900884px;}
.y1ce{bottom:508.050291px;}
.yc0{bottom:509.024414px;}
.y334{bottom:509.326170px;}
.y2f9{bottom:509.402340px;}
.y191{bottom:509.484375px;}
.y239{bottom:512.548828px;}
.y9{bottom:513.750000px;}
.y204{bottom:514.349115px;}
.y133{bottom:515.548829px;}
.y34{bottom:517.162350px;}
.y117{bottom:518.024414px;}
.yfe{bottom:522.075434px;}
.ye1{bottom:524.550299px;}
.y2b8{bottom:527.474114px;}
.y5b{bottom:527.699894px;}
.y1cd{bottom:528.749998px;}
.y2cb{bottom:531.000000px;}
.y1c7{bottom:531.451170px;}
.y206{bottom:533.701177px;}
.y2a0{bottom:533.775885px;}
.ybf{bottom:534.899414px;}
.y147{bottom:534.899415px;}
.y202{bottom:536.400885px;}
.y30e{bottom:536.402340px;}
.y73{bottom:540.000000px;}
.y132{bottom:541.423829px;}
.y116{bottom:543.899414px;}
.y333{bottom:544.201170px;}
.y16f{bottom:544.296384px;}
.y190{bottom:544.359374px;}
.y9b{bottom:545.249999px;}
.yfd{bottom:547.950434px;}
.y8{bottom:548.625000px;}
.ye0{bottom:550.425300px;}
.y33{bottom:550.912350px;}
.y2b7{bottom:553.349115px;}
.y23e{bottom:556.201177px;}
.y27b{bottom:556.423830px;}
.y238{bottom:558.900885px;}
.y1c0{bottom:559.576171px;}
.ybe{bottom:560.774414px;}
.y273{bottom:560.923830px;}
.y5a{bottom:562.574894px;}
.y313{bottom:563.402340px;}
.y1ff{bottom:564.525885px;}
.y131{bottom:567.298829px;}
.y29f{bottom:568.650885px;}
.y115{bottom:569.774414px;}
.y146{bottom:569.774415px;}
.y18f{bottom:570.234374px;}
.y1fd{bottom:570.823236px;}
.y9a{bottom:571.124999px;}
.y70{bottom:572.625000px;}
.yfc{bottom:573.825434px;}
.y31e{bottom:574.652343px;}
.y2dc{bottom:574.875000px;}
.y6d{bottom:576.000000px;}
.y332{bottom:579.076170px;}
.y1c6{bottom:580.274414px;}
.y1fe{bottom:582.525885px;}
.y7{bottom:583.500000px;}
.y32{bottom:584.662350px;}
.ydf{bottom:585.300299px;}
.y2ca{bottom:585.749999px;}
.ybd{bottom:586.649415px;}
.y233{bottom:587.025879px;}
.y2b6{bottom:588.224114px;}
.y2db{bottom:588.375000px;}
.y26f{bottom:589.051764px;}
.y130{bottom:593.173829px;}
.y235{bottom:595.125000px;}
.y114{bottom:595.649414px;}
.y18e{bottom:596.109375px;}
.y99{bottom:596.999999px;}
.y236{bottom:597.375006px;}
.y59{bottom:597.449894px;}
.y200{bottom:597.826178px;}
.y271{bottom:599.399416px;}
.yfb{bottom:599.700434px;}
.y1fc{bottom:600.525885px;}
.y1c5{bottom:600.975586px;}
.y2f6{bottom:601.652343px;}
.y2da{bottom:601.875000px;}
.y29e{bottom:603.525885px;}
.y145{bottom:604.649414px;}
.y270{bottom:609.749998px;}
.yde{bottom:611.175299px;}
.y331{bottom:613.951170px;}
.y2b5{bottom:614.099114px;}
.y1f6{bottom:614.588385px;}
.y2f1{bottom:615.152343px;}
.y2d9{bottom:615.375000px;}
.y31{bottom:618.412350px;}
.y12f{bottom:619.048830px;}
.y2c9{bottom:619.499999px;}
.ybc{bottom:621.524414px;}
.y1c4{bottom:621.673829px;}
.y98{bottom:622.874999px;}
.y1bf{bottom:624.375000px;}
.yfa{bottom:625.575434px;}
.y237{bottom:628.423829px;}
.y1f8{bottom:628.650879px;}
.y272{bottom:628.650885px;}
.y2f5{bottom:628.652343px;}
.y144{bottom:630.524414px;}
.y232{bottom:631.125000px;}
.y58{bottom:632.324894px;}
.y26e{bottom:633.150885px;}
.y18d{bottom:634.434960px;}
.y15f{bottom:634.516117px;}
.ydd{bottom:637.050299px;}
.y29d{bottom:638.400885px;}
.y8a{bottom:639.750000px;}
.y2b4{bottom:639.974114px;}
.y6{bottom:643.499999px;}
.ybb{bottom:647.399414px;}
.y97{bottom:648.749999px;}
.yf9{bottom:651.450435px;}
.y2e{bottom:651.599850px;}
.y1a6{bottom:652.500000px;}
.y2c8{bottom:653.250000px;}
.y2f4{bottom:655.652343px;}
.y143{bottom:656.399414px;}
.y29c{bottom:656.775879px;}
.y12e{bottom:657.374415px;}
.y230{bottom:659.250000px;}
.y26b{bottom:661.275879px;}
.y30{bottom:662.849850px;}
.ydc{bottom:662.925299px;}
.y1fb{bottom:664.650879px;}
.y22f{bottom:665.548827px;}
.y2b3{bottom:665.849114px;}
.y57{bottom:667.199895px;}
.y2f3{bottom:669.152343px;}
.y6c{bottom:672.750000px;}
.yba{bottom:673.274414px;}
.y330{bottom:673.948244px;}
.y89{bottom:674.624999px;}
.y96{bottom:674.625000px;}
.y142{bottom:682.274414px;}
.y1f7{bottom:682.650879px;}
.y18c{bottom:685.209959px;}
.ydb{bottom:688.800299px;}
.yf8{bottom:689.774565px;}
.y2b2{bottom:691.724114px;}
.y268{bottom:692.323242px;}
.y231{bottom:692.548829px;}
.y56{bottom:693.074894px;}
.y5{bottom:695.249999px;}
.y22e{bottom:695.250000px;}
.y113{bottom:699.149414px;}
.yb9{bottom:699.149415px;}
.y88{bottom:700.499999px;}
.y26a{bottom:702.673829px;}
.y1ab{bottom:702.899414px;}
.y2d{bottom:707.287350px;}
.y2c7{bottom:707.999999px;}
.y12d{bottom:708.149413px;}
.y141{bottom:708.149414px;}
.y15a{bottom:708.912601px;}
.y95{bottom:709.499999px;}
.y30d{bottom:709.652343px;}
.y1f4{bottom:710.775879px;}
.y18b{bottom:711.084959px;}
.yda{bottom:714.675299px;}
.y2b1{bottom:717.599115px;}
.y1f1{bottom:719.775879px;}
.y6b{bottom:723.000000px;}
.y22d{bottom:723.375000px;}
.y1a3{bottom:723.600586px;}
.y112{bottom:725.024414px;}
.y32f{bottom:725.698244px;}
.y87{bottom:726.374999px;}
.y2d8{bottom:726.447655px;}
.y55{bottom:727.949894px;}
.y1f3{bottom:728.775879px;}
.y12c{bottom:734.024413px;}
.yb8{bottom:734.024414px;}
.y94{bottom:735.374999px;}
.y18a{bottom:736.959959px;}
.yf7{bottom:740.549564px;}
.yd9{bottom:740.550299px;}
.y2c{bottom:741.037350px;}
.y6a{bottom:741.375000px;}
.y2c6{bottom:741.749999px;}
.y26d{bottom:742.275879px;}
.y1a1{bottom:744.298829px;}
.y1f0{bottom:746.775879px;}
.y4{bottom:747.000001px;}
.y111{bottom:750.899415px;}
.y86{bottom:752.249999px;}
.y2b0{bottom:752.474114px;}
.y12b{bottom:759.899413px;}
.yb7{bottom:759.899414px;}
.y93{bottom:761.249999px;}
.y54{bottom:762.824894px;}
.y189{bottom:762.834959px;}
.yf6{bottom:766.424564px;}
.yd8{bottom:766.425300px;}
.y68{bottom:774.000000px;}
.y2b{bottom:774.787350px;}
.y1ed{bottom:774.900879px;}
.y2ee{bottom:774.902343px;}
.y2c5{bottom:775.499999px;}
.y32e{bottom:777.448246px;}
.y85{bottom:778.125000px;}
.y2af{bottom:778.349114px;}
.y2d7{bottom:782.400000px;}
.y69{bottom:784.125000px;}
.y12a{bottom:785.774413px;}
.yb6{bottom:785.774414px;}
.y92{bottom:787.124999px;}
.y188{bottom:788.709959px;}
.yf5{bottom:792.299564px;}
.y1a0{bottom:792.750000px;}
.y53{bottom:797.699894px;}
.yd7{bottom:801.300292px;}
.y2ae{bottom:804.224114px;}
.y2a{bottom:808.537350px;}
.y2c4{bottom:809.249999px;}
.y1ee{bottom:809.775879px;}
.y2ef{bottom:809.777343px;}
.y129{bottom:811.649413px;}
.yb5{bottom:811.649414px;}
.y84{bottom:812.999999px;}
.y187{bottom:814.584959px;}
.yf4{bottom:818.174564px;}
.y1ef{bottom:821.588379px;}
.y2f0{bottom:821.589843px;}
.y3{bottom:824.250001px;}
.yd6{bottom:827.175292px;}
.y67{bottom:829.125000px;}
.y32d{bottom:829.573245px;}
.y2ad{bottom:830.099115px;}
.y52{bottom:832.574894px;}
.y128{bottom:837.524413px;}
.y110{bottom:837.524414px;}
.yb4{bottom:837.524415px;}
.y83{bottom:838.874999px;}
.y91{bottom:838.875000px;}
.y186{bottom:840.459959px;}
.y28{bottom:842.287349px;}
.y2c3{bottom:843.000000px;}
.yf3{bottom:844.049565px;}
.yd5{bottom:853.050292px;}
.y127{bottom:863.399413px;}
.y10f{bottom:863.399414px;}
.y158{bottom:864.227052px;}
.y32c{bottom:864.451173px;}
.y82{bottom:864.749999px;}
.y2ac{bottom:864.974120px;}
.y185{bottom:866.334959px;}
.y51{bottom:867.449894px;}
.yb3{bottom:872.399413px;}
.y90{bottom:873.749999px;}
.y64{bottom:874.125000px;}
.y26{bottom:876.037440px;}
.y2{bottom:876.375001px;}
.yf2{bottom:878.924560px;}
.yd4{bottom:878.925292px;}
.y65{bottom:884.250000px;}
.y126{bottom:889.274413px;}
.y10e{bottom:889.274414px;}
.y81{bottom:890.625000px;}
.y2ab{bottom:890.849120px;}
.y184{bottom:892.209960px;}
.y2c2{bottom:897.749999px;}
.yb2{bottom:898.274413px;}
.y8f{bottom:899.624999px;}
.y50{bottom:902.324894px;}
.yf1{bottom:904.799560px;}
.yd3{bottom:904.800292px;}
.y17e{bottom:910.584960px;}
.y25{bottom:914.400000px;}
.y125{bottom:915.149413px;}
.y10d{bottom:915.149415px;}
.y2aa{bottom:916.724120px;}
.y157{bottom:923.024414px;}
.yb1{bottom:924.149413px;}
.y1e{bottom:924.750000px;}
.y80{bottom:925.499999px;}
.y63{bottom:929.250000px;}
.yf0{bottom:930.674560px;}
.yd2{bottom:930.675292px;}
.y2c1{bottom:931.499999px;}
.y4f{bottom:937.199890px;}
.y124{bottom:941.024413px;}
.y2a9{bottom:942.599120px;}
.y1c{bottom:946.931214px;}
.yb0{bottom:950.024413px;}
.y7f{bottom:951.374999px;}
.yef{bottom:956.549560px;}
.yd1{bottom:956.550292px;}
.y156{bottom:957.899414px;}
.y62{bottom:961.875000px;}
.y2c0{bottom:965.250000px;}
.y123{bottom:966.899414px;}
.y2a8{bottom:968.474121px;}
.y4e{bottom:972.074891px;}
.yaf{bottom:975.899413px;}
.y7e{bottom:977.250000px;}
.yee{bottom:982.424561px;}
.yd0{bottom:982.425293px;}
.y155{bottom:992.774414px;}
.yae{bottom:1001.774413px;}
.y183{bottom:1003.727051px;}
.y2a7{bottom:1008.525000px;}
.y4d{bottom:1013.850146px;}
.y8e{bottom:1017.299414px;}
.y7d{bottom:1017.299781px;}
.y61{bottom:1017.300147px;}
.y2bf{bottom:1017.300879px;}
.ycf{bottom:1020.749413px;}
.yad{bottom:1027.649414px;}
.y8b{bottom:1044.899414px;}
.y7a{bottom:1044.899781px;}
.y15{bottom:1044.900056px;}
.y4a{bottom:1044.900147px;}
.y2bc{bottom:1044.900879px;}
.y32b{bottom:1048.576172px;}
.y1{bottom:1062.750000px;}
.y328{bottom:1065.826171px;}
.yab{bottom:1079.774414px;}
.y7b{bottom:1079.774781px;}
.y17{bottom:1079.775056px;}
.y4b{bottom:1079.775147px;}
.y2bd{bottom:1079.775879px;}
.yac{bottom:1091.586914px;}
.y7c{bottom:1091.587281px;}
.y19{bottom:1091.587556px;}
.y4c{bottom:1091.587647px;}
.y2be{bottom:1091.588379px;}
.y329{bottom:1100.701172px;}
.y32a{bottom:1112.513672px;}
.h6{height:27.000000px;}
.h36{height:29.699707px;}
.h2d{height:29.701171px;}
.hc{height:31.500000px;}
.hd{height:31.500092px;}
.hb{height:33.840000px;}
.h13{height:36.000000px;}
.h12{height:36.660001px;}
.h9{height:39.479999px;}
.h22{height:40.047363px;}
.h3c{height:41.402344px;}
.h19{height:43.875000px;}
.h46{height:44.832001px;}
.h38{height:45.000000px;}
.h7{height:45.120001px;}
.hf{height:46.199999px;}
.h45{height:47.285157px;}
.h3e{height:47.286621px;}
.h1c{height:47.287353px;}
.h11{height:47.287719px;}
.h21{height:47.288086px;}
.h23{height:48.796875px;}
.h25{height:49.992188px;}
.h2e{height:50.399414px;}
.h34{height:50.400879px;}
.h3d{height:50.402344px;}
.h5{height:50.625000px;}
.h17{height:51.696000px;}
.h2a{height:52.048828px;}
.he{height:54.000000px;}
.h16{height:56.039999px;}
.h1{height:56.399999px;}
.h39{height:63.000000px;}
.h41{height:71.097657px;}
.h35{height:71.099121px;}
.h30{height:71.100586px;}
.h3{height:74.112002px;}
.h54{height:75.785157px;}
.h8{height:75.787536px;}
.h20{height:78.455997px;}
.h3a{height:81.000000px;}
.h28{height:89.094726px;}
.h18{height:89.664003px;}
.h47{height:90.000000px;}
.h32{height:91.798829px;}
.h33{height:91.800293px;}
.h29{height:92.094726px;}
.h2{height:92.639998px;}
.h1a{height:95.625000px;}
.h1b{height:99.000000px;}
.h15{height:100.872000px;}
.h1e{height:101.520000px;}
.h51{height:108.000000px;}
.h3b{height:110.701171px;}
.h10{height:110.906250px;}
.h52{height:112.079997px;}
.h44{height:112.080002px;}
.h42{height:112.500000px;}
.h3f{height:117.000000px;}
.ha{height:120.150056px;}
.h55{height:120.152345px;}
.h2f{height:121.500000px;}
.h53{height:122.173829px;}
.h2b{height:133.189454px;}
.h4c{height:143.097657px;}
.h37{height:143.099121px;}
.h14{height:143.099853px;}
.h4{height:143.099944px;}
.h1d{height:143.100219px;}
.h1f{height:143.100586px;}
.h4d{height:144.000000px;}
.h24{height:154.189454px;}
.h4a{height:171.000000px;}
.h4e{height:189.000000px;}
.h4b{height:198.000000px;}
.h50{height:216.000000px;}
.h27{height:216.284180px;}
.h49{height:225.000000px;}
.h26{height:228.585938px;}
.h43{height:252.000000px;}
.h31{height:257.399415px;}
.h4f{height:306.000000px;}
.h40{height:319.500000px;}
.h48{height:333.000000px;}
.h2c{height:918.000000px;}
.h0{height:1188.000000px;}
.w24{width:37.125000px;}
.w16{width:38.250000px;}
.w21{width:39.375000px;}
.w20{width:40.500000px;}
.w23{width:47.250000px;}
.wc{width:57.375000px;}
.w1c{width:58.500000px;}
.w1e{width:59.625000px;}
.w1f{width:61.875000px;}
.w18{width:64.125000px;}
.w25{width:66.375000px;}
.w1d{width:67.500000px;}
.w15{width:69.750000px;}
.w26{width:70.875000px;}
.w19{width:73.125000px;}
.w22{width:76.500000px;}
.w6{width:79.875000px;}
.w1a{width:92.250000px;}
.w14{width:97.875000px;}
.w7{width:100.125000px;}
.w1b{width:106.875000px;}
.w10{width:147.375000px;}
.w17{width:150.750000px;}
.w8{width:154.125000px;}
.wa{width:202.500000px;}
.w2{width:241.875000px;}
.wf{width:336.375000px;}
.w12{width:337.500000px;}
.w1{width:351.000000px;}
.w9{width:356.625000px;}
.we{width:357.750000px;}
.w3{width:435.375000px;}
.w4{width:451.125000px;}
.wb{width:455.625000px;}
.w27{width:462.375000px;}
.w11{width:546.750000px;}
.w5{width:694.125000px;}
.wd{width:695.250000px;}
.w0{width:918.000000px;}
.w13{width:1188.000000px;}
.x0{left:0.000000px;}
.x41{left:2.250000px;}
.xd{left:3.375000px;}
.xb{left:4.500000px;}
.x26{left:6.750000px;}
.x16{left:7.875000px;}
.x3a{left:8.987005px;}
.x37{left:10.953197px;}
.x34{left:13.224998px;}
.x36{left:14.525754px;}
.x3e{left:16.138178px;}
.x3d{left:18.529773px;}
.x38{left:19.620810px;}
.x33{left:21.664825px;}
.x3b{left:24.793705px;}
.x39{left:26.256397px;}
.x35{left:32.526329px;}
.x3f{left:36.488505px;}
.x18{left:49.500000px;}
.x40{left:86.625000px;}
.x13{left:94.500000px;}
.x1c{left:102.375000px;}
.x1{left:108.000000px;}
.xc{left:109.125000px;}
.x23{left:114.868824px;}
.x1f{left:116.164524px;}
.x19{left:122.625000px;}
.x21{left:135.000000px;}
.x1a{left:138.375000px;}
.x5{left:145.368665px;}
.x25{left:154.621170px;}
.x22{left:155.754547px;}
.x14{left:157.500000px;}
.x20{left:161.106554px;}
.x8{left:164.773567px;}
.x42{left:168.750000px;}
.xf{left:190.125000px;}
.x28{left:208.125000px;}
.x4{left:221.883531px;}
.x9{left:228.375000px;}
.x43{left:235.125000px;}
.x1e{left:250.875000px;}
.x6{left:275.907229px;}
.x29{left:279.000000px;}
.x1b{left:282.375000px;}
.x10{left:291.375000px;}
.x15{left:297.000000px;}
.x44{left:299.250000px;}
.x2a{left:318.375000px;}
.x45{left:342.000000px;}
.x7{left:343.125000px;}
.xa{left:349.875000px;}
.xe{left:352.125000px;}
.x46{left:383.625000px;}
.x11{left:446.625000px;}
.x27{left:447.750000px;}
.x3{left:459.000000px;}
.x1d{left:461.250000px;}
.x47{left:462.375000px;}
.x2b{left:470.250000px;}
.x2c{left:535.500000px;}
.x48{left:541.125000px;}
.x49{left:600.750000px;}
.x2d{left:609.750000px;}
.x2{left:623.250000px;}
.x4a{left:660.375000px;}
.x2e{left:703.125000px;}
.x4b{left:709.875000px;}
.x4c{left:749.250000px;}
.x17{left:752.625000px;}
.x24{left:799.114545px;}
.x12{left:803.142608px;}
.x2f{left:811.125000px;}
.x51{left:814.500000px;}
.x4d{left:817.875000px;}
.x30{left:870.750000px;}
.x4e{left:877.500000px;}
.x31{left:939.375000px;}
.x4f{left:946.125000px;}
.x32{left:1000.125000px;}
.x50{left:1024.875000px;}
.x3c{left:1073.142608px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:72.291666pt;}
.ls18{letter-spacing:75.255209pt;}
.lse{letter-spacing:81.601300pt;}
.ls12{letter-spacing:100.133403pt;}
.ls9{letter-spacing:100.453288pt;}
.ls10{letter-spacing:100.506633pt;}
.ls5{letter-spacing:102.585796pt;}
.ls3{letter-spacing:103.332133pt;}
.ls14{letter-spacing:104.878215pt;}
.lsf{letter-spacing:111.724284pt;}
.lsd{letter-spacing:113.856792pt;}
.lsc{letter-spacing:114.603128pt;}
.ls1{letter-spacing:115.744507pt;}
.ls8{letter-spacing:116.735636pt;}
.lsb{letter-spacing:128.197796pt;}
.ls7{letter-spacing:130.330304pt;}
.ls16{letter-spacing:132.622720pt;}
.ls2{letter-spacing:1449.044652pt;}
.lsa{letter-spacing:1631.212652pt;}
.ls4{letter-spacing:1760.388652pt;}
.ls6{letter-spacing:1959.403412pt;}
.ls13{letter-spacing:1990.164512pt;}
.ls11{letter-spacing:1990.750976pt;}
.ls15{letter-spacing:2076.477048pt;}
.ws2{word-spacing:-22.784001pt;}
.ws3{word-spacing:-19.935999pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.733333pt;}
.ws7{word-spacing:-14.613333pt;}
.ws1{word-spacing:-14.240000pt;}
.ws5{word-spacing:-11.690667pt;}
.ws8{word-spacing:-11.392000pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-5.875000pt;}
._17{margin-left:-4.750000pt;}
._1a{margin-left:-3.403889pt;}
._5{margin-left:-0.889297pt;}
._8{width:2.313988pt;}
._2{width:3.224472pt;}
._3{width:4.773168pt;}
._1{width:7.230524pt;}
._c{width:8.498335pt;}
._7{width:9.401640pt;}
._6{width:10.841837pt;}
._0{width:11.998388pt;}
._9{width:15.892812pt;}
._b{width:19.860861pt;}
._12{width:20.750914pt;}
._a{width:23.956943pt;}
._e{width:27.814638pt;}
._14{width:28.809182pt;}
._d{width:31.951090pt;}
._13{width:35.969791pt;}
._16{width:39.976079pt;}
._10{width:43.906965pt;}
._f{width:47.912515pt;}
._11{width:48.968751pt;}
._15{width:51.914636pt;}
._19{width:55.999999pt;}
._4{width:59.919600pt;}
._21{width:67.888810pt;}
._22{width:75.960872pt;}
._1d{width:79.799874pt;}
._23{width:83.960872pt;}
._1e{width:87.929855pt;}
._24{width:91.924907pt;}
._1c{width:99.999990pt;}
._1b{width:104.000000pt;}
._1f{width:247.812735pt;}
._20{width:619.113456pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666668pt;}
.fs4{font-size:37.333332pt;}
.fs3{font-size:42.666668pt;}
.fs0{font-size:53.333332pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:74.666664pt;}
.fs2{font-size:85.333336pt;}
.fs7{font-size:96.000000pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y28e{bottom:3.733334pt;}
.y223{bottom:6.134378pt;}
.y27{bottom:8.666667pt;}
.y29{bottom:8.666748pt;}
.y47{bottom:10.800000pt;}
.y2d5{bottom:11.031250pt;}
.y22b{bottom:11.032552pt;}
.y78{bottom:11.033202pt;}
.y44{bottom:11.033528pt;}
.yed{bottom:11.033854pt;}
.y167{bottom:11.460933pt;}
.y172{bottom:11.460945pt;}
.y1a{bottom:11.733334pt;}
.y21c{bottom:11.733335pt;}
.y1fa{bottom:11.733339pt;}
.y251{bottom:12.666667pt;}
.y24a{bottom:14.131760pt;}
.y1d6{bottom:14.131766pt;}
.y1e2{bottom:14.131767pt;}
.y1a5{bottom:14.131771pt;}
.y1c3{bottom:14.131772pt;}
.y1be{bottom:14.131775pt;}
.y1dc{bottom:14.133066pt;}
.y1cc{bottom:14.133074pt;}
.y1d0{bottom:14.133075pt;}
.y258{bottom:14.133078pt;}
.y212{bottom:14.133079pt;}
.y1bb{bottom:14.133080pt;}
.y1d9{bottom:14.134368pt;}
.y20b{bottom:14.134372pt;}
.y27a{bottom:14.134374pt;}
.y1a2{bottom:14.134375pt;}
.y1ae{bottom:14.134376pt;}
.y228{bottom:14.134378pt;}
.y266{bottom:14.134379pt;}
.y1e9{bottom:14.134380pt;}
.y269{bottom:14.135678pt;}
.y1ec{bottom:14.135688pt;}
.y1b{bottom:15.666667pt;}
.y8d{bottom:15.666994pt;}
.y24{bottom:16.600050pt;}
.y340{bottom:16.602084pt;}
.y339{bottom:17.364584pt;}
.y1d{bottom:17.366698pt;}
.y66{bottom:19.666667pt;}
.y2f2{bottom:19.733331pt;}
.y28d{bottom:19.733334pt;}
.y178{bottom:20.658851pt;}
.y17b{bottom:20.658852pt;}
.y159{bottom:20.660156pt;}
.y182{bottom:20.660157pt;}
.y15e{bottom:20.661459pt;}
.y16e{bottom:20.661464pt;}
.yaa{bottom:22.582814pt;}
.y79{bottom:22.583134pt;}
.y49{bottom:22.583467pt;}
.y22c{bottom:22.584120pt;}
.y2d6{bottom:22.585414pt;}
.y46{bottom:22.800000pt;}
.y222{bottom:24.535418pt;}
.y1f2{bottom:27.733334pt;}
.y21b{bottom:27.733335pt;}
.y2f{bottom:28.666667pt;}
.y18{bottom:29.666667pt;}
.y33f{bottom:30.398964pt;}
.y23{bottom:30.399935pt;}
.y17d{bottom:31.328125pt;}
.y257{bottom:32.531504pt;}
.y211{bottom:32.531506pt;}
.y1ba{bottom:32.531507pt;}
.y26c{bottom:32.531511pt;}
.y234{bottom:32.531512pt;}
.y1cb{bottom:32.531514pt;}
.y1d5{bottom:32.532806pt;}
.y1e1{bottom:32.532807pt;}
.y1a4{bottom:32.532812pt;}
.y1ad{bottom:32.532814pt;}
.y1bd{bottom:32.532815pt;}
.y1cf{bottom:32.534115pt;}
.y20a{bottom:32.534119pt;}
.y265{bottom:32.534126pt;}
.y279{bottom:32.535414pt;}
.y227{bottom:32.535418pt;}
.y1e8{bottom:32.535420pt;}
.yec{bottom:32.549479pt;}
.y43{bottom:32.549805pt;}
.y77{bottom:32.550131pt;}
.y22a{bottom:32.550781pt;}
.y2d4{bottom:32.552083pt;}
.y28c{bottom:35.733334pt;}
.y171{bottom:37.859372pt;}
.y166{bottom:37.859373pt;}
.y1aa{bottom:40.532812pt;}
.y45{bottom:42.583333pt;}
.y6f{bottom:42.666667pt;}
.y2f7{bottom:43.733331pt;}
.y1f5{bottom:43.733334pt;}
.y21a{bottom:43.733335pt;}
.y22{bottom:44.200066pt;}
.y33e{bottom:44.201044pt;}
.y177{bottom:48.257811pt;}
.y181{bottom:48.257813pt;}
.y15d{bottom:48.259112pt;}
.y16d{bottom:48.259117pt;}
.y72{bottom:48.666667pt;}
.y48{bottom:50.583333pt;}
.y256{bottom:50.931251pt;}
.y1c2{bottom:50.931252pt;}
.y1b9{bottom:50.931254pt;}
.y209{bottom:50.932546pt;}
.y249{bottom:50.932547pt;}
.y1d4{bottom:50.932552pt;}
.y1ca{bottom:50.932554pt;}
.y1e0{bottom:50.933847pt;}
.y1ac{bottom:50.933855pt;}
.y278{bottom:50.935160pt;}
.y1e7{bottom:50.935167pt;}
.y28b{bottom:51.733334pt;}
.y21{bottom:57.999951pt;}
.y33d{bottom:58.003124pt;}
.y1a9{bottom:58.933855pt;}
.y1f9{bottom:59.733334pt;}
.y219{bottom:59.733335pt;}
.y341{bottom:63.666667pt;}
.y170{bottom:64.257812pt;}
.y165{bottom:64.257813pt;}
.y6e{bottom:65.666667pt;}
.y17a{bottom:66.924479pt;}
.y312{bottom:67.733331pt;}
.y28a{bottom:67.733334pt;}
.y71{bottom:68.666667pt;}
.y1c1{bottom:69.332292pt;}
.y1b8{bottom:69.332294pt;}
.y248{bottom:69.333587pt;}
.y1c9{bottom:69.333594pt;}
.y23c{bottom:75.733334pt;}
.y176{bottom:75.854157pt;}
.y180{bottom:75.855469pt;}
.y15c{bottom:75.856765pt;}
.y16c{bottom:75.856771pt;}
.y1a8{bottom:77.332292pt;}
.y20{bottom:79.800000pt;}
.y33c{bottom:79.800004pt;}
.y164{bottom:82.656240pt;}
.y16{bottom:83.666667pt;}
.y8c{bottom:83.666994pt;}
.y289{bottom:83.733334pt;}
.y218{bottom:86.134375pt;}
.y42{bottom:86.316667pt;}
.y1b7{bottom:87.733334pt;}
.y311{bottom:91.733331pt;}
.y23b{bottom:91.733334pt;}
.y1f{bottom:93.600050pt;}
.y33b{bottom:93.602084pt;}
.y1a7{bottom:95.733334pt;}
.y288{bottom:99.733334pt;}
.y14{bottom:101.866694pt;}
.y175{bottom:103.453117pt;}
.y17f{bottom:103.453125pt;}
.y16b{bottom:103.454424pt;}
.y33a{bottom:103.598956pt;}
.y154{bottom:104.466147pt;}
.y261{bottom:104.800780pt;}
.y300{bottom:104.802080pt;}
.y247{bottom:106.131760pt;}
.y1b6{bottom:106.133080pt;}
.y122{bottom:107.466146pt;}
.y302{bottom:107.733334pt;}
.y163{bottom:109.054680pt;}
.y31d{bottom:112.802080pt;}
.y264{bottom:113.999995pt;}
.y30a{bottom:114.802080pt;}
.y19f{bottom:114.874999pt;}
.y281{bottom:115.000000pt;}
.y310{bottom:115.733331pt;}
.y287{bottom:115.733334pt;}
.y225{bottom:116.000000pt;}
.y23f{bottom:118.300787pt;}
.y140{bottom:119.265626pt;}
.y2e9{bottom:121.000000pt;}
.ya9{bottom:121.466146pt;}
.y226{bottom:121.598956pt;}
.y15b{bottom:122.119792pt;}
.yce{bottom:122.466146pt;}
.y263{bottom:123.199219pt;}
.y338{bottom:123.317709pt;}
.y1b5{bottom:124.531507pt;}
.y31c{bottom:124.802080pt;}
.y221{bottom:125.598956pt;}
.y10c{bottom:126.067054pt;}
.y17c{bottom:130.244788pt;}
.y121{bottom:130.466146pt;}
.y174{bottom:131.049477pt;}
.y16a{bottom:131.052091pt;}
.y286{bottom:131.733334pt;}
.y262{bottom:132.401047pt;}
.y13{bottom:132.866694pt;}
.y2ed{bottom:133.000000pt;}
.y162{bottom:135.453120pt;}
.y153{bottom:135.466147pt;}
.y31b{bottom:136.802080pt;}
.y19e{bottom:137.874999pt;}
.y1e6{bottom:139.598953pt;}
.y316{bottom:139.733331pt;}
.y2e2{bottom:139.733334pt;}
.y2dd{bottom:142.000000pt;}
.y13f{bottom:142.265627pt;}
.y1b4{bottom:142.931254pt;}
.y246{bottom:142.932547pt;}
.ya8{bottom:144.466146pt;}
.ycd{bottom:145.466147pt;}
.y229{bottom:145.598959pt;}
.y297{bottom:146.500000pt;}
.y285{bottom:147.733334pt;}
.y224{bottom:148.000000pt;}
.y304{bottom:148.802080pt;}
.y299{bottom:150.901043pt;}
.y120{bottom:153.466146pt;}
.y301{bottom:155.733334pt;}
.y2ec{bottom:157.000000pt;}
.y10b{bottom:157.067053pt;}
.y267{bottom:158.401040pt;}
.y322{bottom:158.802080pt;}
.y29a{bottom:160.098956pt;}
.y305{bottom:160.802080pt;}
.y19d{bottom:160.874999pt;}
.y1b3{bottom:161.332294pt;}
.y245{bottom:161.333587pt;}
.y161{bottom:161.851560pt;}
.y41{bottom:162.199867pt;}
.y260{bottom:162.401040pt;}
.y315{bottom:163.733331pt;}
.y284{bottom:163.733334pt;}
.y12{bottom:163.866694pt;}
.y152{bottom:166.466147pt;}
.ya7{bottom:167.466146pt;}
.y298{bottom:169.299473pt;}
.y30c{bottom:170.802080pt;}
.y303{bottom:172.802080pt;}
.y217{bottom:172.999999pt;}
.y13e{bottom:173.265626pt;}
.y1eb{bottom:176.398432pt;}
.ycc{bottom:176.466146pt;}
.y169{bottom:177.315104pt;}
.y173{bottom:177.510423pt;}
.y1b2{bottom:179.733334pt;}
.y10a{bottom:180.067053pt;}
.y2eb{bottom:181.000000pt;}
.y21e{bottom:181.401041pt;}
.y309{bottom:182.802080pt;}
.y19c{bottom:183.875000pt;}
.y25e{bottom:187.401040pt;}
.y2e1{bottom:187.733334pt;}
.y160{bottom:188.250000pt;}
.ya6{bottom:190.466146pt;}
.yeb{bottom:190.466147pt;}
.y3e{bottom:191.199867pt;}
.y2ea{bottom:193.000000pt;}
.y2d3{bottom:194.666666pt;}
.y1ea{bottom:194.799473pt;}
.y30b{bottom:194.802080pt;}
.y11{bottom:194.866694pt;}
.y283{bottom:195.733334pt;}
.y13d{bottom:196.265627pt;}
.y1e5{bottom:197.199213pt;}
.y151{bottom:197.466147pt;}
.y244{bottom:198.131760pt;}
.y1b1{bottom:198.131774pt;}
.ycb{bottom:199.466146pt;}
.y40{bottom:201.199867pt;}
.y318{bottom:202.802080pt;}
.y109{bottom:203.067053pt;}
.y25b{bottom:205.800781pt;}
.y295{bottom:210.000000pt;}
.y3f{bottom:211.199867pt;}
.y282{bottom:211.733334pt;}
.ya5{bottom:213.466147pt;}
.y19b{bottom:214.874999pt;}
.y25d{bottom:215.000005pt;}
.y21f{bottom:215.401040pt;}
.y243{bottom:216.531507pt;}
.y1b0{bottom:216.532814pt;}
.y24b{bottom:219.500001pt;}
.y29b{bottom:222.000000pt;}
.y1df{bottom:222.200527pt;}
.yca{bottom:222.466146pt;}
.y25c{bottom:224.199220pt;}
.y2d2{bottom:224.666667pt;}
.y317{bottom:225.802080pt;}
.y10{bottom:225.866694pt;}
.y296{bottom:226.000000pt;}
.yea{bottom:226.066280pt;}
.y108{bottom:226.067053pt;}
.y337{bottom:226.067708pt;}
.y13c{bottom:227.265626pt;}
.y150{bottom:228.466146pt;}
.y220{bottom:231.401040pt;}
.y242{bottom:234.932547pt;}
.y2e0{bottom:235.733334pt;}
.ya4{bottom:236.466146pt;}
.y19a{bottom:237.874999pt;}
.y3b{bottom:240.199867pt;}
.y1af{bottom:244.901040pt;}
.y216{bottom:244.999999pt;}
.y11f{bottom:245.466146pt;}
.yc9{bottom:245.466147pt;}
.y21d{bottom:247.401040pt;}
.y327{bottom:248.132814pt;}
.y107{bottom:249.067053pt;}
.y2e3{bottom:250.000000pt;}
.y3d{bottom:250.199867pt;}
.y13b{bottom:250.265627pt;}
.y28f{bottom:251.000000pt;}
.y14f{bottom:251.466146pt;}
.y241{bottom:253.333587pt;}
.yf{bottom:256.866694pt;}
.y1e4{bottom:259.000005pt;}
.y25f{bottom:259.401040pt;}
.ya3{bottom:259.466147pt;}
.y2df{bottom:259.733334pt;}
.y3c{bottom:260.199867pt;}
.y199{bottom:260.874999pt;}
.y31a{bottom:262.802080pt;}
.y25a{bottom:263.401040pt;}
.y293{bottom:263.401043pt;}
.y291{bottom:267.000000pt;}
.yc8{bottom:268.466146pt;}
.y240{bottom:271.733334pt;}
.y106{bottom:272.067053pt;}
.y210{bottom:272.401041pt;}
.y2d1{bottom:273.333333pt;}
.ye9{bottom:274.266281pt;}
.y14e{bottom:274.466147pt;}
.y2fc{bottom:274.802080pt;}
.y1e3{bottom:277.401047pt;}
.y1de{bottom:279.800787pt;}
.y13a{bottom:281.265626pt;}
.y292{bottom:281.799473pt;}
.y2de{bottom:283.733334pt;}
.y198{bottom:283.874999pt;}
.y31f{bottom:284.802080pt;}
.y319{bottom:286.802080pt;}
.ye{bottom:287.866694pt;}
.y179{bottom:287.901048pt;}
.y255{bottom:288.401043pt;}
.y3a{bottom:289.199867pt;}
.ya2{bottom:290.466146pt;}
.yc7{bottom:291.466146pt;}
.y11e{bottom:291.466147pt;}
.y214{bottom:293.199213pt;}
.y105{bottom:295.067053pt;}
.y326{bottom:296.802081pt;}
.ye8{bottom:297.266285pt;}
.y253{bottom:297.598956pt;}
.y2fe{bottom:298.802080pt;}
.y2e4{bottom:299.000000pt;}
.y39{bottom:299.199867pt;}
.y213{bottom:301.199213pt;}
.y2d0{bottom:303.333333pt;}
.y139{bottom:304.265627pt;}
.y1db{bottom:304.799481pt;}
.y14d{bottom:305.466146pt;}
.y254{bottom:306.799473pt;}
.y197{bottom:306.874999pt;}
.y306{bottom:308.802080pt;}
.y2ff{bottom:310.802080pt;}
.y294{bottom:311.000000pt;}
.y2a6{bottom:312.467454pt;}
.ya1{bottom:313.466146pt;}
.yc6{bottom:314.466146pt;}
.y290{bottom:315.000000pt;}
.y104{bottom:318.067053pt;}
.ye7{bottom:320.266934pt;}
.y60{bottom:322.066400pt;}
.y11d{bottom:322.466146pt;}
.y2fd{bottom:322.802080pt;}
.y2e8{bottom:323.000000pt;}
.y1dd{bottom:323.199220pt;}
.yd{bottom:323.466667pt;}
.y259{bottom:323.598960pt;}
.y1da{bottom:325.598960pt;}
.y215{bottom:327.598959pt;}
.y252{bottom:327.598960pt;}
.y1bc{bottom:327.700519pt;}
.y14c{bottom:328.466146pt;}
.y196{bottom:329.875000pt;}
.y20f{bottom:330.000000pt;}
.y308{bottom:332.802080pt;}
.y2cf{bottom:333.333334pt;}
.y138{bottom:335.265626pt;}
.ya0{bottom:336.466146pt;}
.yc5{bottom:337.466146pt;}
.y38{bottom:338.199867pt;}
.y27e{bottom:340.000001pt;}
.y103{bottom:341.067053pt;}
.y2a5{bottom:343.467454pt;}
.y324{bottom:344.802080pt;}
.y11c{bottom:345.466146pt;}
.y2e7{bottom:347.000000pt;}
.y1d3{bottom:350.601568pt;}
.ye6{bottom:351.266933pt;}
.y14b{bottom:351.466147pt;}
.y24f{bottom:352.601568pt;}
.y5f{bottom:353.066400pt;}
.y208{bottom:355.000001pt;}
.y321{bottom:356.802080pt;}
.y137{bottom:358.265627pt;}
.y27d{bottom:358.398432pt;}
.y9f{bottom:359.466146pt;}
.yc4{bottom:360.466146pt;}
.y195{bottom:360.874999pt;}
.y24d{bottom:361.799481pt;}
.yc{bottom:363.666667pt;}
.y102{bottom:364.067053pt;}
.y201{bottom:364.199219pt;}
.y27f{bottom:367.598959pt;}
.y11b{bottom:368.466146pt;}
.y307{bottom:368.802080pt;}
.y1d8{bottom:369.000005pt;}
.y168{bottom:370.761716pt;}
.y24e{bottom:370.999999pt;}
.y2e6{bottom:371.000000pt;}
.ye5{bottom:374.266933pt;}
.y2a4{bottom:374.467453pt;}
.y20d{bottom:375.800787pt;}
.y320{bottom:380.802080pt;}
.y2ce{bottom:381.999999pt;}
.y9e{bottom:382.466146pt;}
.y14a{bottom:382.466147pt;}
.y37{bottom:382.866534pt;}
.y2e5{bottom:383.000000pt;}
.yc3{bottom:383.466146pt;}
.y20c{bottom:383.800787pt;}
.y194{bottom:383.874999pt;}
.y5e{bottom:384.066400pt;}
.y101{bottom:387.067053pt;}
.y1d7{bottom:387.401047pt;}
.y250{bottom:387.800787pt;}
.y136{bottom:389.265626pt;}
.y1d2{bottom:389.800787pt;}
.y336{bottom:390.734374pt;}
.y11a{bottom:391.466146pt;}
.y24c{bottom:391.800787pt;}
.y323{bottom:392.802080pt;}
.y280{bottom:393.598960pt;}
.yb{bottom:394.666667pt;}
.ye4{bottom:397.266933pt;}
.y2a3{bottom:397.467453pt;}
.y27c{bottom:397.598960pt;}
.y36{bottom:399.699867pt;}
.y2bb{bottom:399.865879pt;}
.y76{bottom:403.666667pt;}
.y2f8{bottom:404.802080pt;}
.y314{bottom:404.802083pt;}
.y9d{bottom:405.466147pt;}
.yc2{bottom:406.466146pt;}
.y193{bottom:406.874999pt;}
.y100{bottom:410.067054pt;}
.y20e{bottom:410.199220pt;}
.y2cd{bottom:411.999999pt;}
.y135{bottom:412.265626pt;}
.y207{bottom:412.598960pt;}
.y149{bottom:413.466147pt;}
.y119{bottom:414.466146pt;}
.y1c8{bottom:414.800780pt;}
.y5d{bottom:415.066400pt;}
.y23a{bottom:416.800787pt;}
.y325{bottom:416.802080pt;}
.ye3{bottom:420.266933pt;}
.y2a2{bottom:420.467454pt;}
.y335{bottom:421.734374pt;}
.y277{bottom:422.598960pt;}
.y2ba{bottom:422.865879pt;}
.ya{bottom:425.666667pt;}
.y2fa{bottom:428.802080pt;}
.yc1{bottom:429.466146pt;}
.y35{bottom:429.699867pt;}
.y192{bottom:429.874999pt;}
.y274{bottom:431.800780pt;}
.y1d1{bottom:433.200519pt;}
.y75{bottom:434.666667pt;}
.y134{bottom:435.265626pt;}
.y118{bottom:437.466146pt;}
.y203{bottom:437.601568pt;}
.y5c{bottom:438.066399pt;}
.y9c{bottom:439.533333pt;}
.y2fb{bottom:440.802080pt;}
.y30f{bottom:440.802083pt;}
.y276{bottom:440.999995pt;}
.yff{bottom:441.067053pt;}
.y2cc{bottom:441.999999pt;}
.ye2{bottom:443.266933pt;}
.y148{bottom:444.466147pt;}
.y2b9{bottom:445.865879pt;}
.y23d{bottom:446.398432pt;}
.y205{bottom:449.199213pt;}
.y275{bottom:450.199219pt;}
.y74{bottom:451.000000pt;}
.y2a1{bottom:451.467453pt;}
.y1ce{bottom:451.600259pt;}
.yc0{bottom:452.466146pt;}
.y334{bottom:452.734374pt;}
.y2f9{bottom:452.802080pt;}
.y191{bottom:452.875000pt;}
.y239{bottom:455.598959pt;}
.y9{bottom:456.666667pt;}
.y204{bottom:457.199213pt;}
.y133{bottom:458.265626pt;}
.y34{bottom:459.699867pt;}
.y117{bottom:460.466146pt;}
.yfe{bottom:464.067053pt;}
.ye1{bottom:466.266933pt;}
.y2b8{bottom:468.865879pt;}
.y5b{bottom:469.066573pt;}
.y1cd{bottom:469.999999pt;}
.y2cb{bottom:472.000000pt;}
.y1c7{bottom:472.401040pt;}
.y206{bottom:474.401047pt;}
.y2a0{bottom:474.467454pt;}
.ybf{bottom:475.466146pt;}
.y147{bottom:475.466147pt;}
.y202{bottom:476.800787pt;}
.y30e{bottom:476.802080pt;}
.y73{bottom:480.000000pt;}
.y132{bottom:481.265626pt;}
.y116{bottom:483.466146pt;}
.y333{bottom:483.734374pt;}
.y16f{bottom:483.819008pt;}
.y190{bottom:483.874999pt;}
.y9b{bottom:484.666666pt;}
.yfd{bottom:487.067053pt;}
.y8{bottom:487.666667pt;}
.ye0{bottom:489.266934pt;}
.y33{bottom:489.699867pt;}
.y2b7{bottom:491.865880pt;}
.y23e{bottom:494.401047pt;}
.y27b{bottom:494.598960pt;}
.y238{bottom:496.800787pt;}
.y1c0{bottom:497.401041pt;}
.ybe{bottom:498.466146pt;}
.y273{bottom:498.598960pt;}
.y5a{bottom:500.066573pt;}
.y313{bottom:500.802080pt;}
.y1ff{bottom:501.800787pt;}
.y131{bottom:504.265626pt;}
.y29f{bottom:505.467454pt;}
.y115{bottom:506.466146pt;}
.y146{bottom:506.466147pt;}
.y18f{bottom:506.874999pt;}
.y1fd{bottom:507.398432pt;}
.y9a{bottom:507.666666pt;}
.y70{bottom:509.000000pt;}
.yfc{bottom:510.067053pt;}
.y31e{bottom:510.802083pt;}
.y2dc{bottom:511.000000pt;}
.y6d{bottom:512.000000pt;}
.y332{bottom:514.734374pt;}
.y1c6{bottom:515.799479pt;}
.y1fe{bottom:517.800787pt;}
.y7{bottom:518.666667pt;}
.y32{bottom:519.699867pt;}
.ydf{bottom:520.266933pt;}
.y2ca{bottom:520.666666pt;}
.ybd{bottom:521.466147pt;}
.y233{bottom:521.800781pt;}
.y2b6{bottom:522.865879pt;}
.y2db{bottom:523.000000pt;}
.y26f{bottom:523.601568pt;}
.y130{bottom:527.265626pt;}
.y235{bottom:529.000000pt;}
.y114{bottom:529.466146pt;}
.y18e{bottom:529.875000pt;}
.y99{bottom:530.666666pt;}
.y236{bottom:531.000005pt;}
.y59{bottom:531.066573pt;}
.y200{bottom:531.401047pt;}
.y271{bottom:532.799481pt;}
.yfb{bottom:533.067053pt;}
.y1fc{bottom:533.800787pt;}
.y1c5{bottom:534.200521pt;}
.y2f6{bottom:534.802083pt;}
.y2da{bottom:535.000000pt;}
.y29e{bottom:536.467454pt;}
.y145{bottom:537.466146pt;}
.y270{bottom:541.999999pt;}
.yde{bottom:543.266933pt;}
.y331{bottom:545.734374pt;}
.y2b5{bottom:545.865879pt;}
.y1f6{bottom:546.300787pt;}
.y2f1{bottom:546.802083pt;}
.y2d9{bottom:547.000000pt;}
.y31{bottom:549.699867pt;}
.y12f{bottom:550.265627pt;}
.y2c9{bottom:550.666666pt;}
.ybc{bottom:552.466146pt;}
.y1c4{bottom:552.598959pt;}
.y98{bottom:553.666666pt;}
.y1bf{bottom:555.000000pt;}
.yfa{bottom:556.067053pt;}
.y237{bottom:558.598959pt;}
.y1f8{bottom:558.800781pt;}
.y272{bottom:558.800787pt;}
.y2f5{bottom:558.802083pt;}
.y144{bottom:560.466146pt;}
.y232{bottom:561.000000pt;}
.y58{bottom:562.066573pt;}
.y26e{bottom:562.800787pt;}
.y18d{bottom:563.942187pt;}
.y15f{bottom:564.014327pt;}
.ydd{bottom:566.266933pt;}
.y29d{bottom:567.467454pt;}
.y8a{bottom:568.666667pt;}
.y2b4{bottom:568.865879pt;}
.y6{bottom:571.999999pt;}
.ybb{bottom:575.466146pt;}
.y97{bottom:576.666666pt;}
.yf9{bottom:579.067054pt;}
.y2e{bottom:579.199867pt;}
.y1a6{bottom:580.000000pt;}
.y2c8{bottom:580.666667pt;}
.y2f4{bottom:582.802083pt;}
.y143{bottom:583.466146pt;}
.y29c{bottom:583.800781pt;}
.y12e{bottom:584.332813pt;}
.y230{bottom:586.000000pt;}
.y26b{bottom:587.800781pt;}
.y30{bottom:589.199867pt;}
.ydc{bottom:589.266933pt;}
.y1fb{bottom:590.800781pt;}
.y22f{bottom:591.598957pt;}
.y2b3{bottom:591.865879pt;}
.y57{bottom:593.066574pt;}
.y2f3{bottom:594.802083pt;}
.y6c{bottom:598.000000pt;}
.yba{bottom:598.466146pt;}
.y330{bottom:599.065105pt;}
.y89{bottom:599.666666pt;}
.y96{bottom:599.666667pt;}
.y142{bottom:606.466146pt;}
.y1f7{bottom:606.800781pt;}
.y18c{bottom:609.075519pt;}
.ydb{bottom:612.266933pt;}
.yf8{bottom:613.132947pt;}
.y2b2{bottom:614.865879pt;}
.y268{bottom:615.398437pt;}
.y231{bottom:615.598959pt;}
.y56{bottom:616.066573pt;}
.y5{bottom:617.999999pt;}
.y22e{bottom:618.000000pt;}
.y113{bottom:621.466146pt;}
.yb9{bottom:621.466147pt;}
.y88{bottom:622.666666pt;}
.y26a{bottom:624.598959pt;}
.y1ab{bottom:624.799479pt;}
.y2d{bottom:628.699867pt;}
.y2c7{bottom:629.333333pt;}
.y12d{bottom:629.466145pt;}
.y141{bottom:629.466146pt;}
.y15a{bottom:630.144535pt;}
.y95{bottom:630.666666pt;}
.y30d{bottom:630.802083pt;}
.y1f4{bottom:631.800781pt;}
.y18b{bottom:632.075519pt;}
.yda{bottom:635.266933pt;}
.y2b1{bottom:637.865880pt;}
.y1f1{bottom:639.800781pt;}
.y6b{bottom:642.666667pt;}
.y22d{bottom:643.000000pt;}
.y1a3{bottom:643.200521pt;}
.y112{bottom:644.466146pt;}
.y32f{bottom:645.065105pt;}
.y87{bottom:645.666666pt;}
.y2d8{bottom:645.731249pt;}
.y55{bottom:647.066573pt;}
.y1f3{bottom:647.800781pt;}
.y12c{bottom:652.466145pt;}
.yb8{bottom:652.466146pt;}
.y94{bottom:653.666666pt;}
.y18a{bottom:655.075519pt;}
.yf7{bottom:658.266279pt;}
.yd9{bottom:658.266933pt;}
.y2c{bottom:658.699867pt;}
.y6a{bottom:659.000000pt;}
.y2c6{bottom:659.333333pt;}
.y26d{bottom:659.800781pt;}
.y1a1{bottom:661.598959pt;}
.y1f0{bottom:663.800781pt;}
.y4{bottom:664.000001pt;}
.y111{bottom:667.466147pt;}
.y86{bottom:668.666666pt;}
.y2b0{bottom:668.865879pt;}
.y12b{bottom:675.466145pt;}
.yb7{bottom:675.466146pt;}
.y93{bottom:676.666666pt;}
.y54{bottom:678.066573pt;}
.y189{bottom:678.075519pt;}
.yf6{bottom:681.266279pt;}
.yd8{bottom:681.266934pt;}
.y68{bottom:688.000000pt;}
.y2b{bottom:688.699867pt;}
.y1ed{bottom:688.800781pt;}
.y2ee{bottom:688.802083pt;}
.y2c5{bottom:689.333333pt;}
.y32e{bottom:691.065107pt;}
.y85{bottom:691.666667pt;}
.y2af{bottom:691.865879pt;}
.y2d7{bottom:695.466667pt;}
.y69{bottom:697.000000pt;}
.y12a{bottom:698.466145pt;}
.yb6{bottom:698.466146pt;}
.y92{bottom:699.666666pt;}
.y188{bottom:701.075519pt;}
.yf5{bottom:704.266279pt;}
.y1a0{bottom:704.666667pt;}
.y53{bottom:709.066573pt;}
.yd7{bottom:712.266926pt;}
.y2ae{bottom:714.865879pt;}
.y2a{bottom:718.699867pt;}
.y2c4{bottom:719.333333pt;}
.y1ee{bottom:719.800781pt;}
.y2ef{bottom:719.802083pt;}
.y129{bottom:721.466145pt;}
.yb5{bottom:721.466146pt;}
.y84{bottom:722.666666pt;}
.y187{bottom:724.075519pt;}
.yf4{bottom:727.266279pt;}
.y1ef{bottom:730.300781pt;}
.y2f0{bottom:730.302083pt;}
.y3{bottom:732.666667pt;}
.yd6{bottom:735.266926pt;}
.y67{bottom:737.000000pt;}
.y32d{bottom:737.398440pt;}
.y2ad{bottom:737.865880pt;}
.y52{bottom:740.066573pt;}
.y128{bottom:744.466145pt;}
.y110{bottom:744.466146pt;}
.yb4{bottom:744.466147pt;}
.y83{bottom:745.666666pt;}
.y91{bottom:745.666667pt;}
.y186{bottom:747.075519pt;}
.y28{bottom:748.699865pt;}
.y2c3{bottom:749.333334pt;}
.yf3{bottom:750.266280pt;}
.yd5{bottom:758.266926pt;}
.y127{bottom:767.466145pt;}
.y10f{bottom:767.466146pt;}
.y158{bottom:768.201824pt;}
.y32c{bottom:768.401042pt;}
.y82{bottom:768.666666pt;}
.y2ac{bottom:768.865885pt;}
.y185{bottom:770.075519pt;}
.y51{bottom:771.066573pt;}
.yb3{bottom:775.466145pt;}
.y90{bottom:776.666666pt;}
.y64{bottom:777.000000pt;}
.y26{bottom:778.699947pt;}
.y2{bottom:779.000001pt;}
.yf2{bottom:781.266275pt;}
.yd4{bottom:781.266926pt;}
.y65{bottom:786.000000pt;}
.y126{bottom:790.466145pt;}
.y10e{bottom:790.466146pt;}
.y81{bottom:791.666667pt;}
.y2ab{bottom:791.865885pt;}
.y184{bottom:793.075520pt;}
.y2c2{bottom:797.999999pt;}
.yb2{bottom:798.466145pt;}
.y8f{bottom:799.666666pt;}
.y50{bottom:802.066573pt;}
.yf1{bottom:804.266275pt;}
.yd3{bottom:804.266926pt;}
.y17e{bottom:809.408853pt;}
.y25{bottom:812.800000pt;}
.y125{bottom:813.466145pt;}
.y10d{bottom:813.466147pt;}
.y2aa{bottom:814.865885pt;}
.y157{bottom:820.466146pt;}
.yb1{bottom:821.466145pt;}
.y1e{bottom:822.000000pt;}
.y80{bottom:822.666666pt;}
.y63{bottom:826.000000pt;}
.yf0{bottom:827.266275pt;}
.yd2{bottom:827.266926pt;}
.y2c1{bottom:827.999999pt;}
.y4f{bottom:833.066569pt;}
.y124{bottom:836.466145pt;}
.y2a9{bottom:837.865885pt;}
.y1c{bottom:841.716635pt;}
.yb0{bottom:844.466145pt;}
.y7f{bottom:845.666666pt;}
.yef{bottom:850.266275pt;}
.yd1{bottom:850.266926pt;}
.y156{bottom:851.466146pt;}
.y62{bottom:855.000000pt;}
.y2c0{bottom:858.000000pt;}
.y123{bottom:859.466146pt;}
.y2a8{bottom:860.865886pt;}
.y4e{bottom:864.066570pt;}
.yaf{bottom:867.466145pt;}
.y7e{bottom:868.666667pt;}
.yee{bottom:873.266276pt;}
.yd0{bottom:873.266927pt;}
.y155{bottom:882.466146pt;}
.yae{bottom:890.466145pt;}
.y183{bottom:892.201823pt;}
.y2a7{bottom:896.466667pt;}
.y4d{bottom:901.200130pt;}
.y8e{bottom:904.266145pt;}
.y7d{bottom:904.266472pt;}
.y61{bottom:904.266797pt;}
.y2bf{bottom:904.267448pt;}
.ycf{bottom:907.332812pt;}
.yad{bottom:913.466146pt;}
.y8b{bottom:928.799479pt;}
.y7a{bottom:928.799805pt;}
.y15{bottom:928.800049pt;}
.y4a{bottom:928.800131pt;}
.y2bc{bottom:928.800781pt;}
.y32b{bottom:932.067708pt;}
.y1{bottom:944.666667pt;}
.y328{bottom:947.401041pt;}
.yab{bottom:959.799479pt;}
.y7b{bottom:959.799805pt;}
.y17{bottom:959.800049pt;}
.y4b{bottom:959.800131pt;}
.y2bd{bottom:959.800781pt;}
.yac{bottom:970.299479pt;}
.y7c{bottom:970.299805pt;}
.y19{bottom:970.300049pt;}
.y4c{bottom:970.300131pt;}
.y2be{bottom:970.300781pt;}
.y329{bottom:978.401041pt;}
.y32a{bottom:988.901041pt;}
.h6{height:24.000000pt;}
.h36{height:26.399740pt;}
.h2d{height:26.401041pt;}
.hc{height:28.000000pt;}
.hd{height:28.000081pt;}
.hb{height:30.080000pt;}
.h13{height:32.000000pt;}
.h12{height:32.586668pt;}
.h9{height:35.093332pt;}
.h22{height:35.597656pt;}
.h3c{height:36.802084pt;}
.h19{height:39.000000pt;}
.h46{height:39.850668pt;}
.h38{height:40.000000pt;}
.h7{height:40.106668pt;}
.hf{height:41.066666pt;}
.h45{height:42.031251pt;}
.h3e{height:42.032552pt;}
.h1c{height:42.033203pt;}
.h11{height:42.033528pt;}
.h21{height:42.033855pt;}
.h23{height:43.375000pt;}
.h25{height:44.437500pt;}
.h2e{height:44.799479pt;}
.h34{height:44.800781pt;}
.h3d{height:44.802084pt;}
.h5{height:45.000000pt;}
.h17{height:45.952000pt;}
.h2a{height:46.265625pt;}
.he{height:48.000000pt;}
.h16{height:49.813332pt;}
.h1{height:50.133332pt;}
.h39{height:56.000000pt;}
.h41{height:63.197917pt;}
.h35{height:63.199219pt;}
.h30{height:63.200521pt;}
.h3{height:65.877335pt;}
.h54{height:67.364584pt;}
.h8{height:67.366699pt;}
.h20{height:69.738664pt;}
.h3a{height:72.000000pt;}
.h28{height:79.195312pt;}
.h18{height:79.701336pt;}
.h47{height:80.000000pt;}
.h32{height:81.598959pt;}
.h33{height:81.600260pt;}
.h29{height:81.861979pt;}
.h2{height:82.346665pt;}
.h1a{height:85.000000pt;}
.h1b{height:88.000000pt;}
.h15{height:89.664000pt;}
.h1e{height:90.240000pt;}
.h51{height:96.000000pt;}
.h3b{height:98.401041pt;}
.h10{height:98.583333pt;}
.h52{height:99.626664pt;}
.h44{height:99.626668pt;}
.h42{height:100.000000pt;}
.h3f{height:104.000000pt;}
.ha{height:106.800049pt;}
.h55{height:106.802084pt;}
.h2f{height:108.000000pt;}
.h53{height:108.598959pt;}
.h2b{height:118.390625pt;}
.h4c{height:127.197917pt;}
.h37{height:127.199219pt;}
.h14{height:127.199869pt;}
.h4{height:127.199951pt;}
.h1d{height:127.200195pt;}
.h1f{height:127.200521pt;}
.h4d{height:128.000000pt;}
.h24{height:137.057292pt;}
.h4a{height:152.000000pt;}
.h4e{height:168.000000pt;}
.h4b{height:176.000000pt;}
.h50{height:192.000000pt;}
.h27{height:192.252604pt;}
.h49{height:200.000000pt;}
.h26{height:203.187500pt;}
.h43{height:224.000000pt;}
.h31{height:228.799480pt;}
.h4f{height:272.000000pt;}
.h40{height:284.000000pt;}
.h48{height:296.000000pt;}
.h2c{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w24{width:33.000000pt;}
.w16{width:34.000000pt;}
.w21{width:35.000000pt;}
.w20{width:36.000000pt;}
.w23{width:42.000000pt;}
.wc{width:51.000000pt;}
.w1c{width:52.000000pt;}
.w1e{width:53.000000pt;}
.w1f{width:55.000000pt;}
.w18{width:57.000000pt;}
.w25{width:59.000000pt;}
.w1d{width:60.000000pt;}
.w15{width:62.000000pt;}
.w26{width:63.000000pt;}
.w19{width:65.000000pt;}
.w22{width:68.000000pt;}
.w6{width:71.000000pt;}
.w1a{width:82.000000pt;}
.w14{width:87.000000pt;}
.w7{width:89.000000pt;}
.w1b{width:95.000000pt;}
.w10{width:131.000000pt;}
.w17{width:134.000000pt;}
.w8{width:137.000000pt;}
.wa{width:180.000000pt;}
.w2{width:215.000000pt;}
.wf{width:299.000000pt;}
.w12{width:300.000000pt;}
.w1{width:312.000000pt;}
.w9{width:317.000000pt;}
.we{width:318.000000pt;}
.w3{width:387.000000pt;}
.w4{width:401.000000pt;}
.wb{width:405.000000pt;}
.w27{width:411.000000pt;}
.w11{width:486.000000pt;}
.w5{width:617.000000pt;}
.wd{width:618.000000pt;}
.w0{width:816.000000pt;}
.w13{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x41{left:2.000000pt;}
.xd{left:3.000000pt;}
.xb{left:4.000000pt;}
.x26{left:6.000000pt;}
.x16{left:7.000000pt;}
.x3a{left:7.988449pt;}
.x37{left:9.736175pt;}
.x34{left:11.755554pt;}
.x36{left:12.911781pt;}
.x3e{left:14.345047pt;}
.x3d{left:16.470909pt;}
.x38{left:17.440720pt;}
.x33{left:19.257622pt;}
.x3b{left:22.038849pt;}
.x39{left:23.339020pt;}
.x35{left:28.912292pt;}
.x3f{left:32.434227pt;}
.x18{left:44.000000pt;}
.x40{left:77.000000pt;}
.x13{left:84.000000pt;}
.x1c{left:91.000000pt;}
.x1{left:96.000000pt;}
.xc{left:97.000000pt;}
.x23{left:102.105621pt;}
.x1f{left:103.257355pt;}
.x19{left:109.000000pt;}
.x21{left:120.000000pt;}
.x1a{left:123.000000pt;}
.x5{left:129.216591pt;}
.x25{left:137.441040pt;}
.x22{left:138.448486pt;}
.x14{left:140.000000pt;}
.x20{left:143.205826pt;}
.x8{left:146.465393pt;}
.x42{left:150.000000pt;}
.xf{left:169.000000pt;}
.x28{left:185.000000pt;}
.x4{left:197.229805pt;}
.x9{left:203.000000pt;}
.x43{left:209.000000pt;}
.x1e{left:223.000000pt;}
.x6{left:245.250870pt;}
.x29{left:248.000000pt;}
.x1b{left:251.000000pt;}
.x10{left:259.000000pt;}
.x15{left:264.000000pt;}
.x44{left:266.000000pt;}
.x2a{left:283.000000pt;}
.x45{left:304.000000pt;}
.x7{left:305.000000pt;}
.xa{left:311.000000pt;}
.xe{left:313.000000pt;}
.x46{left:341.000000pt;}
.x11{left:397.000000pt;}
.x27{left:398.000000pt;}
.x3{left:408.000000pt;}
.x1d{left:410.000000pt;}
.x47{left:411.000000pt;}
.x2b{left:418.000000pt;}
.x2c{left:476.000000pt;}
.x48{left:481.000000pt;}
.x49{left:534.000000pt;}
.x2d{left:542.000000pt;}
.x2{left:554.000000pt;}
.x4a{left:587.000000pt;}
.x2e{left:625.000000pt;}
.x4b{left:631.000000pt;}
.x4c{left:666.000000pt;}
.x17{left:669.000000pt;}
.x24{left:710.324040pt;}
.x12{left:713.904540pt;}
.x2f{left:721.000000pt;}
.x51{left:724.000000pt;}
.x4d{left:727.000000pt;}
.x30{left:774.000000pt;}
.x4e{left:780.000000pt;}
.x31{left:835.000000pt;}
.x4f{left:841.000000pt;}
.x32{left:889.000000pt;}
.x50{left:911.000000pt;}
.x3c{left:953.904540pt;}
}




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