
    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_8fb803a7d5e57c3f5b9bf75f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c2012c2b5bce2cd53dced4a0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_66ac66a010cde502b6c9a1b3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d0a7b0f503081b414b05d6f.woff')format("woff");}.ff4{font-family:ff4;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: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_2708fd9fd160649447b04223.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_99f1eab36cb7e3915a98827c.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_53b28bcc86a3b39a3e00ec8a.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_558fca6da05bf22a8ee8ec8b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_a84dc6594dfac6bd15670e91.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e0fee60f84aa67e8b2ac2455.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0f31720e86d7001c818442b7.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_68b80adee978f90e98f5603c.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-78.480000px;}
.v5{vertical-align:-68.400000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1e{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.450600px;}
.ls1a{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.269400px;}
.lsd{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.150600px;}
.ls16{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.054720px;}
.ls11{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.223800px;}
.ls10{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.284400px;}
.ls1f{letter-spacing:0.334080px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.538800px;}
.ls1d{letter-spacing:0.678960px;}
.lsb{letter-spacing:0.720000px;}
.lsa{letter-spacing:3.780000px;}
.ls4{letter-spacing:15.300000px;}
.ls1c{letter-spacing:23.940000px;}
.ls5{letter-spacing:47.700000px;}
.ls1{letter-spacing:71.280000px;}
.ls2{letter-spacing:72.000000px;}
.ls3{letter-spacing:72.120000px;}
.ls18{letter-spacing:447.276000px;}
.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;}
}
.wsa{word-spacing:-41.760000px;}
.ws10{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.733600px;}
.ws1b{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.504400px;}
.ws19{word-spacing:-14.274720px;}
.ws18{word-spacing:-14.220000px;}
.ws6{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.716000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.482000px;}
.ws1d{word-spacing:-12.598800px;}
.ws15{word-spacing:-12.420000px;}
.ws1c{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.878800px;}
.ws13{word-spacing:-11.790600px;}
.ws17{word-spacing:-11.700000px;}
.ws1e{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.950480px;}
.ws9{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._6{margin-left:-59.580000px;}
._2c{margin-left:-4.311360px;}
._1f{margin-left:-3.292560px;}
._3{margin-left:-2.169360px;}
._2{margin-left:-1.126080px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._1d{width:3.449760px;}
._19{width:4.498560px;}
._9{width:5.796720px;}
._8{width:7.529760px;}
._17{width:9.180000px;}
._15{width:10.746000px;}
._16{width:11.802000px;}
._10{width:13.804560px;}
._1a{width:14.904000px;}
._1c{width:16.912800px;}
._22{width:18.048960px;}
._11{width:19.063440px;}
._26{width:20.087280px;}
._20{width:21.095280px;}
._e{width:22.888080px;}
._18{width:24.462000px;}
._a{width:25.876080px;}
._21{width:27.282240px;}
._23{width:29.103120px;}
._24{width:30.298320px;}
._29{width:31.377600px;}
._28{width:32.449680px;}
._f{width:34.063200px;}
._d{width:35.207760px;}
._c{width:36.453600px;}
._25{width:37.469520px;}
._b{width:38.903760px;}
._12{width:40.212720px;}
._14{width:41.762160px;}
._13{width:43.206480px;}
._27{width:44.939520px;}
._2b{width:48.525120px;}
._2a{width:49.882800px;}
._1b{width:53.786880px;}
._2d{width:55.943280px;}
._30{width:59.042880px;}
._4{width:65.496000px;}
._32{width:66.693120px;}
._33{width:75.118320px;}
._31{width:81.094320px;}
._34{width:83.185920px;}
._2f{width:91.134000px;}
._2e{width:107.542080px;}
._35{width:167.310000px;}
._5{width:199.620000px;}
._1e{width:289.470000px;}
._7{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs12{font-size:6.000000px;}
.fse{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fsf{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs11{font-size:42.000000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y72{bottom:-251.490000px;}
.y71{bottom:-217.830000px;}
.y83{bottom:-189.570000px;}
.y70{bottom:-183.990000px;}
.y82{bottom:-155.910000px;}
.y6f{bottom:-150.330000px;}
.y81{bottom:-122.070000px;}
.y6e{bottom:-116.490000px;}
.y80{bottom:-88.410000px;}
.y6d{bottom:-82.830000px;}
.y7f{bottom:-54.570000px;}
.y6c{bottom:-49.140000px;}
.y65{bottom:-28.650000px;}
.y3c{bottom:-27.180000px;}
.y7e{bottom:-20.910000px;}
.y85{bottom:-17.922750px;}
.y6b{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y314{bottom:1.837500px;}
.y2f7{bottom:2.520000px;}
.y278{bottom:2.685000px;}
.y6a{bottom:2.700000px;}
.y2e8{bottom:2.715000px;}
.y279{bottom:2.865000px;}
.y270{bottom:2.880000px;}
.y2ef{bottom:3.045000px;}
.y26f{bottom:3.060000px;}
.y5b{bottom:3.225000px;}
.y2f5{bottom:3.240000px;}
.y308{bottom:3.585000px;}
.y2{bottom:3.960000px;}
.y197{bottom:4.665000px;}
.y147{bottom:4.680000px;}
.y1ac{bottom:4.695000px;}
.y14a{bottom:4.860000px;}
.y1a3{bottom:4.890000px;}
.y151{bottom:4.905000px;}
.y153{bottom:5.025000px;}
.y3b{bottom:5.040000px;}
.y2d0{bottom:5.565000px;}
.y64{bottom:5.580000px;}
.y2d9{bottom:5.745000px;}
.y2fe{bottom:5.760000px;}
.y2da{bottom:5.925000px;}
.y2fd{bottom:5.940000px;}
.y1b3{bottom:6.480000px;}
.y1b4{bottom:6.660000px;}
.y2f9{bottom:7.185000px;}
.y1ae{bottom:7.200000px;}
.y2b1{bottom:7.560000px;}
.y2b2{bottom:7.740000px;}
.y1b0{bottom:7.920000px;}
.y1b1{bottom:8.100000px;}
.y248{bottom:8.280000px;}
.y2d6{bottom:8.445000px;}
.y24a{bottom:8.460000px;}
.y253{bottom:8.625000px;}
.y24f{bottom:8.640000px;}
.y2cc{bottom:8.805000px;}
.y262{bottom:8.820000px;}
.y269{bottom:9.000000px;}
.y26a{bottom:9.180000px;}
.y265{bottom:9.360000px;}
.y2c0{bottom:9.540000px;}
.y27c{bottom:9.705000px;}
.y26c{bottom:9.720000px;}
.y2d3{bottom:9.885000px;}
.y26d{bottom:9.900000px;}
.y7d{bottom:10.095000px;}
.y7{bottom:12.420000px;}
.y2d1{bottom:12.585000px;}
.y187{bottom:12.600000px;}
.y19e{bottom:12.780000px;}
.y2b9{bottom:13.140000px;}
.y15a{bottom:13.320000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y1a9{bottom:15.120000px;}
.y2d7{bottom:15.645000px;}
.y69{bottom:15.660000px;}
.y267{bottom:15.840000px;}
.y2cd{bottom:16.005000px;}
.y2b7{bottom:16.020000px;}
.y2d2{bottom:16.545000px;}
.y2e6{bottom:16.560000px;}
.y27d{bottom:16.725000px;}
.y287{bottom:16.740000px;}
.y26e{bottom:16.920000px;}
.y5a{bottom:19.245000px;}
.y2cf{bottom:19.425000px;}
.y19d{bottom:20.520000px;}
.y188{bottom:20.700000px;}
.y2d5{bottom:22.305000px;}
.y2bb{bottom:22.320000px;}
.y2cb{bottom:22.665000px;}
.y2c5{bottom:22.680000px;}
.y2b6{bottom:22.860000px;}
.y1ad{bottom:23.040000px;}
.y7c{bottom:23.055000px;}
.y27b{bottom:23.385000px;}
.y286{bottom:23.400000px;}
.y6{bottom:25.200000px;}
.y194{bottom:25.365000px;}
.y196{bottom:25.545000px;}
.y1aa{bottom:25.560000px;}
.y62{bottom:28.095000px;}
.y68{bottom:28.800000px;}
.y2e5{bottom:30.420000px;}
.y27e{bottom:30.585000px;}
.y288{bottom:30.600000px;}
.y59{bottom:32.565000px;}
.y7b{bottom:36.195000px;}
.y5{bottom:38.160000px;}
.y61{bottom:40.515000px;}
.y67{bottom:41.040000px;}
.y58{bottom:41.385000px;}
.y2e4{bottom:44.100000px;}
.y195{bottom:46.245000px;}
.yeb{bottom:46.260000px;}
.y7a{bottom:49.155000px;}
.y60{bottom:52.575000px;}
.y57{bottom:59.205000px;}
.y87{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.y79{bottom:62.295000px;}
.yea{bottom:62.640000px;}
.y84{bottom:63.780000px;}
.y5f{bottom:64.665000px;}
.y78{bottom:75.255000px;}
.y5e{bottom:76.725000px;}
.y56{bottom:77.025000px;}
.y313{bottom:79.380000px;}
.ye9{bottom:80.460000px;}
.y77{bottom:88.215000px;}
.y312{bottom:91.440000px;}
.y5d{bottom:93.825000px;}
.y55{bottom:94.845000px;}
.y2e0{bottom:98.280000px;}
.y76{bottom:101.355000px;}
.y2ae{bottom:102.240000px;}
.y311{bottom:103.500000px;}
.y1ee{bottom:103.680000px;}
.y144{bottom:104.580000px;}
.y204{bottom:106.740000px;}
.y183{bottom:106.920000px;}
.y54{bottom:108.210000px;}
.y1c6{bottom:108.540000px;}
.y11b{bottom:109.440000px;}
.yc0{bottom:109.800000px;}
.y1d2{bottom:111.420000px;}
.ye7{bottom:113.400000px;}
.y2ad{bottom:114.300000px;}
.y75{bottom:114.315000px;}
.y310{bottom:115.380000px;}
.y22d{bottom:117.000000px;}
.y53{bottom:117.030000px;}
.y39{bottom:121.320000px;}
.y143{bottom:121.680000px;}
.y1ed{bottom:123.480000px;}
.y246{bottom:126.360000px;}
.y203{bottom:126.540000px;}
.y182{bottom:126.720000px;}
.y74{bottom:126.735000px;}
.ybf{bottom:127.080000px;}
.y1c5{bottom:128.340000px;}
.y2df{bottom:128.880000px;}
.y11a{bottom:129.240000px;}
.y30f{bottom:130.140000px;}
.y1d1{bottom:131.400000px;}
.ye6{bottom:133.200000px;}
.y52{bottom:135.030000px;}
.y22c{bottom:136.980000px;}
.y2ac{bottom:138.420000px;}
.y38{bottom:138.600000px;}
.y142{bottom:141.480000px;}
.y1ec{bottom:143.280000px;}
.ybe{bottom:144.360000px;}
.y30e{bottom:144.720000px;}
.y202{bottom:146.340000px;}
.y1c4{bottom:148.140000px;}
.y119{bottom:149.940000px;}
.y2ab{bottom:150.480000px;}
.y1d0{bottom:151.200000px;}
.y51{bottom:152.850000px;}
.ye5{bottom:153.000000px;}
.y37{bottom:155.880000px;}
.y22b{bottom:156.780000px;}
.y245{bottom:156.960000px;}
.y30d{bottom:159.345000px;}
.y2de{bottom:159.480000px;}
.y141{bottom:161.280000px;}
.ybd{bottom:161.640000px;}
.y2aa{bottom:162.570000px;}
.y1eb{bottom:163.110000px;}
.y201{bottom:167.250000px;}
.y1c3{bottom:167.970000px;}
.y50{bottom:170.670000px;}
.y1cf{bottom:171.030000px;}
.ye4{bottom:173.010000px;}
.y36{bottom:173.190000px;}
.y118{bottom:173.910000px;}
.y2a9{bottom:174.810000px;}
.y22a{bottom:176.610000px;}
.y30c{bottom:178.245000px;}
.ybc{bottom:178.950000px;}
.y181{bottom:180.750000px;}
.y140{bottom:181.110000px;}
.y1ea{bottom:183.090000px;}
.y2a8{bottom:186.870000px;}
.y244{bottom:187.590000px;}
.y1c2{bottom:187.950000px;}
.y4f{bottom:188.490000px;}
.y2dd{bottom:190.110000px;}
.y35{bottom:190.470000px;}
.y1ce{bottom:190.830000px;}
.ye3{bottom:192.810000px;}
.y30b{bottom:192.825000px;}
.ybb{bottom:196.050000px;}
.y229{bottom:196.410000px;}
.y2a7{bottom:198.930000px;}
.y180{bottom:200.550000px;}
.y13f{bottom:200.910000px;}
.y4e{bottom:201.810000px;}
.y1e9{bottom:202.890000px;}
.y2dc{bottom:207.030000px;}
.y30a{bottom:207.225000px;}
.y34{bottom:207.570000px;}
.y1c1{bottom:207.750000px;}
.y200{bottom:208.110000px;}
.y4d{bottom:210.630000px;}
.y2a6{bottom:210.990000px;}
.ye2{bottom:212.610000px;}
.yba{bottom:213.330000px;}
.y117{bottom:214.770000px;}
.y228{bottom:216.210000px;}
.y243{bottom:218.190000px;}
.y2db{bottom:220.170000px;}
.y17f{bottom:220.350000px;}
.y13e{bottom:220.710000px;}
.y309{bottom:221.805000px;}
.y1e8{bottom:222.690000px;}
.y2a5{bottom:223.050000px;}
.y33{bottom:224.850000px;}
.y1c0{bottom:227.550000px;}
.y4c{bottom:228.450000px;}
.y1ff{bottom:228.810000px;}
.yb9{bottom:230.610000px;}
.y2d8{bottom:231.885000px;}
.ye1{bottom:232.410000px;}
.y116{bottom:234.570000px;}
.y2a4{bottom:235.110000px;}
.y227{bottom:236.190000px;}
.y307{bottom:236.385000px;}
.y17e{bottom:240.150000px;}
.y13d{bottom:240.690000px;}
.y32{bottom:242.130000px;}
.y1e7{bottom:242.490000px;}
.y4b{bottom:246.450000px;}
.y2a3{bottom:247.170000px;}
.y1bf{bottom:247.350000px;}
.yb8{bottom:247.890000px;}
.y242{bottom:248.790000px;}
.y1cd{bottom:250.410000px;}
.y306{bottom:251.865000px;}
.ye0{bottom:252.210000px;}
.y2d4{bottom:252.225000px;}
.y115{bottom:254.370000px;}
.y226{bottom:255.990000px;}
.y2a2{bottom:259.230000px;}
.y17d{bottom:260.130000px;}
.y13c{bottom:260.490000px;}
.y1e6{bottom:262.290000px;}
.y31{bottom:262.650000px;}
.y4a{bottom:264.270000px;}
.yb7{bottom:265.170000px;}
.y305{bottom:266.445000px;}
.y1be{bottom:267.150000px;}
.y1fe{bottom:269.670000px;}
.y1cc{bottom:270.210000px;}
.y2a1{bottom:271.290000px;}
.ydf{bottom:272.190000px;}
.y114{bottom:274.170000px;}
.y225{bottom:275.790000px;}
.y13b{bottom:277.950000px;}
.y241{bottom:279.390000px;}
.y17c{bottom:279.930000px;}
.y49{bottom:282.090000px;}
.y1e5{bottom:282.270000px;}
.yb6{bottom:282.450000px;}
.y30{bottom:282.990000px;}
.y2a0{bottom:283.350000px;}
.y1bd{bottom:286.050000px;}
.y1fd{bottom:289.470000px;}
.y1cb{bottom:290.010000px;}
.yde{bottom:291.990000px;}
.y3d{bottom:292.005000px;}
.y2f{bottom:292.890000px;}
.y113{bottom:294.150000px;}
.y304{bottom:294.885000px;}
.y13a{bottom:295.050000px;}
.y29f{bottom:295.410000px;}
.y224{bottom:295.590000px;}
.yb5{bottom:299.550000px;}
.y17b{bottom:299.730000px;}
.y48{bottom:299.910000px;}
.y2e{bottom:300.990000px;}
.y1e4{bottom:302.070000px;}
.y1bc{bottom:305.850000px;}
.y29e{bottom:307.470000px;}
.y1ca{bottom:309.810000px;}
.y240{bottom:309.990000px;}
.y1fc{bottom:310.350000px;}
.ydd{bottom:311.790000px;}
.y139{bottom:312.330000px;}
.y112{bottom:313.950000px;}
.y223{bottom:315.390000px;}
.y2d{bottom:316.290000px;}
.yb4{bottom:316.830000px;}
.y47{bottom:317.730000px;}
.y17a{bottom:319.530000px;}
.y2ce{bottom:320.265000px;}
.y303{bottom:320.475000px;}
.y1e3{bottom:321.870000px;}
.y1bb{bottom:325.830000px;}
.y138{bottom:329.610000px;}
.y1c9{bottom:329.790000px;}
.ydc{bottom:331.590000px;}
.y29d{bottom:331.770000px;}
.y111{bottom:333.750000px;}
.yb3{bottom:334.110000px;}
.y302{bottom:335.055000px;}
.y222{bottom:335.370000px;}
.y46{bottom:335.760000px;}
.y179{bottom:339.330000px;}
.y2c{bottom:340.050000px;}
.y23f{bottom:340.590000px;}
.y1e2{bottom:341.670000px;}
.y29c{bottom:343.830000px;}
.y1ba{bottom:345.630000px;}
.y137{bottom:346.890000px;}
.y1c8{bottom:349.590000px;}
.y1fb{bottom:351.210000px;}
.yb2{bottom:351.390000px;}
.y110{bottom:353.550000px;}
.y45{bottom:353.580000px;}
.y2ca{bottom:354.105000px;}
.y221{bottom:355.170000px;}
.y29b{bottom:355.890000px;}
.y178{bottom:359.310000px;}
.y2b{bottom:360.930000px;}
.y1e1{bottom:361.470000px;}
.y301{bottom:362.055000px;}
.y136{bottom:364.170000px;}
.y1b9{bottom:366.330000px;}
.y29a{bottom:367.950000px;}
.yb1{bottom:368.670000px;}
.y1c7{bottom:369.390000px;}
.y23e{bottom:371.190000px;}
.ydb{bottom:371.370000px;}
.y44{bottom:371.400000px;}
.y1fa{bottom:371.910000px;}
.y10f{bottom:373.350000px;}
.y220{bottom:374.970000px;}
.y177{bottom:379.110000px;}
.y299{bottom:380.010000px;}
.y2a{bottom:380.730000px;}
.y135{bottom:381.450000px;}
.y300{bottom:382.215000px;}
.y43{bottom:384.720000px;}
.y1b8{bottom:385.590000px;}
.yb0{bottom:385.770000px;}
.yda{bottom:391.170000px;}
.y298{bottom:392.070000px;}
.y10e{bottom:393.375000px;}
.y42{bottom:393.540000px;}
.y29{bottom:394.635000px;}
.y21f{bottom:394.815000px;}
.y1f9{bottom:395.715000px;}
.y1b7{bottom:397.695000px;}
.y134{bottom:398.595000px;}
.y176{bottom:398.955000px;}
.y1e0{bottom:401.295000px;}
.y23d{bottom:402.015000px;}
.y2ff{bottom:402.555000px;}
.yaf{bottom:403.095000px;}
.y28{bottom:403.275000px;}
.y297{bottom:404.175000px;}
.y1b6{bottom:409.755000px;}
.yd9{bottom:411.015000px;}
.y41{bottom:411.360000px;}
.y73{bottom:413.160000px;}
.y10d{bottom:413.175000px;}
.y21e{bottom:414.615000px;}
.y133{bottom:415.875000px;}
.y296{bottom:416.235000px;}
.y175{bottom:418.755000px;}
.yae{bottom:420.375000px;}
.y1df{bottom:421.095000px;}
.y1b5{bottom:421.815000px;}
.y23c{bottom:424.155000px;}
.y27{bottom:426.495000px;}
.y295{bottom:428.115000px;}
.y40{bottom:429.180000px;}
.yd8{bottom:430.815000px;}
.y10c{bottom:432.975000px;}
.y132{bottom:433.155000px;}
.y1b2{bottom:433.695000px;}
.y21d{bottom:434.595000px;}
.y2c9{bottom:435.135000px;}
.y261{bottom:435.855000px;}
.y1f8{bottom:436.575000px;}
.yad{bottom:437.655000px;}
.y174{bottom:438.555000px;}
.y1de{bottom:440.895000px;}
.y294{bottom:442.515000px;}
.y3f{bottom:447.180000px;}
.y26{bottom:449.895000px;}
.yd7{bottom:450.615000px;}
.y2fc{bottom:450.975000px;}
.y10b{bottom:452.775000px;}
.y131{bottom:453.675000px;}
.y1af{bottom:453.855000px;}
.y21c{bottom:454.395000px;}
.yac{bottom:454.935000px;}
.y1f7{bottom:456.555000px;}
.y293{bottom:457.095000px;}
.y173{bottom:458.535000px;}
.y260{bottom:460.515000px;}
.y1dd{bottom:460.695000px;}
.y2c8{bottom:462.135000px;}
.y3e{bottom:465.000000px;}
.yd6{bottom:470.595000px;}
.y2fb{bottom:471.315000px;}
.y292{bottom:471.675000px;}
.yab{bottom:472.215000px;}
.y10a{bottom:472.575000px;}
.y25{bottom:473.115000px;}
.y130{bottom:473.295000px;}
.y21b{bottom:474.195000px;}
.y1f6{bottom:476.355000px;}
.y1ab{bottom:478.320000px;}
.y172{bottom:478.335000px;}
.y1dc{bottom:480.675000px;}
.y25f{bottom:484.455000px;}
.y291{bottom:486.255000px;}
.y12f{bottom:486.615000px;}
.yaa{bottom:489.315000px;}
.yd5{bottom:490.395000px;}
.y109{bottom:492.555000px;}
.y21a{bottom:493.995000px;}
.y24{bottom:496.335000px;}
.y2fa{bottom:496.920000px;}
.y1f5{bottom:497.055000px;}
.y171{bottom:498.135000px;}
.y1db{bottom:500.475000px;}
.y290{bottom:500.835000px;}
.y2c7{bottom:502.635000px;}
.y12e{bottom:506.415000px;}
.ya9{bottom:506.595000px;}
.y25e{bottom:508.395000px;}
.yd4{bottom:511.095000px;}
.y2f8{bottom:511.500000px;}
.y108{bottom:512.355000px;}
.y219{bottom:513.795000px;}
.y28f{bottom:515.415000px;}
.y170{bottom:517.935000px;}
.y23{bottom:519.735000px;}
.y1da{bottom:520.275000px;}
.y1a8{bottom:520.455000px;}
.ya8{bottom:523.875000px;}
.y12d{bottom:526.215000px;}
.yd3{bottom:530.715000px;}
.y107{bottom:532.155000px;}
.y25d{bottom:532.335000px;}
.y218{bottom:533.775000px;}
.y2f6{bottom:534.525000px;}
.y1a7{bottom:535.575000px;}
.y16f{bottom:537.735000px;}
.y1f4{bottom:537.915000px;}
.y1d9{bottom:540.075000px;}
.ya7{bottom:541.155000px;}
.y22{bottom:542.955000px;}
.y2c6{bottom:543.135000px;}
.yd2{bottom:543.855000px;}
.y12c{bottom:546.015000px;}
.y2f4{bottom:548.205000px;}
.y1a6{bottom:550.515000px;}
.y106{bottom:551.955000px;}
.y217{bottom:553.575000px;}
.y25c{bottom:556.095000px;}
.y28e{bottom:557.535000px;}
.y16e{bottom:557.715000px;}
.ya6{bottom:558.435000px;}
.y1d8{bottom:559.875000px;}
.y2f3{bottom:562.980000px;}
.yd1{bottom:563.835000px;}
.y5c{bottom:564.900000px;}
.y12b{bottom:565.815000px;}
.y1a5{bottom:567.075000px;}
.y105{bottom:571.755000px;}
.y28d{bottom:572.115000px;}
.y216{bottom:573.375000px;}
.ya5{bottom:575.715000px;}
.y16d{bottom:577.515000px;}
.y2f2{bottom:577.560000px;}
.y1f3{bottom:577.695000px;}
.y25b{bottom:579.315000px;}
.y1d7{bottom:579.855000px;}
.yd0{bottom:583.635000px;}
.y12a{bottom:585.795000px;}
.y28c{bottom:586.515000px;}
.y104{bottom:591.735000px;}
.y2f1{bottom:592.140000px;}
.ya4{bottom:592.815000px;}
.y215{bottom:593.175000px;}
.y16c{bottom:597.315000px;}
.y1f2{bottom:597.495000px;}
.y21{bottom:597.855000px;}
.y1d6{bottom:599.655000px;}
.y1a4{bottom:600.375000px;}
.y28b{bottom:601.095000px;}
.y25a{bottom:603.255000px;}
.ycf{bottom:603.435000px;}
.y129{bottom:605.595000px;}
.y2f0{bottom:606.720000px;}
.ya3{bottom:610.095000px;}
.y103{bottom:611.535000px;}
.y214{bottom:612.975000px;}
.y20{bottom:613.335000px;}
.y28a{bottom:615.675000px;}
.y16b{bottom:617.115000px;}
.y1f1{bottom:617.295000px;}
.y1a2{bottom:618.375000px;}
.y1d5{bottom:619.455000px;}
.y2ee{bottom:621.120000px;}
.yce{bottom:623.265000px;}
.y2c4{bottom:624.165000px;}
.y128{bottom:625.425000px;}
.y259{bottom:627.225000px;}
.ya2{bottom:627.405000px;}
.y1f{bottom:628.845000px;}
.y289{bottom:630.285000px;}
.y102{bottom:631.365000px;}
.y213{bottom:632.985000px;}
.y2ed{bottom:635.685000px;}
.y1f0{bottom:637.125000px;}
.y16a{bottom:637.305000px;}
.y1d4{bottom:639.285000px;}
.ycd{bottom:643.065000px;}
.y1e{bottom:644.325000px;}
.ya1{bottom:644.685000px;}
.y285{bottom:644.865000px;}
.y127{bottom:645.225000px;}
.y2ec{bottom:650.310000px;}
.y101{bottom:651.165000px;}
.y212{bottom:652.785000px;}
.y1a1{bottom:656.925000px;}
.y1d3{bottom:659.085000px;}
.y1d{bottom:659.985000px;}
.ya0{bottom:661.965000px;}
.ycc{bottom:663.045000px;}
.y2c3{bottom:664.665000px;}
.y2eb{bottom:664.890000px;}
.y126{bottom:665.025000px;}
.y1a0{bottom:670.605000px;}
.y1c{bottom:670.965000px;}
.y211{bottom:672.585000px;}
.y15e{bottom:673.485000px;}
.y258{bottom:675.105000px;}
.y1ef{bottom:676.905000px;}
.y169{bottom:679.065000px;}
.y9f{bottom:679.245000px;}
.y2ea{bottom:679.470000px;}
.y19f{bottom:682.665000px;}
.y66{bottom:682.845000px;}
.y1b{bottom:684.645000px;}
.y125{bottom:685.005000px;}
.y15d{bottom:685.545000px;}
.y284{bottom:686.985000px;}
.y23b{bottom:687.885000px;}
.y100{bottom:690.945000px;}
.y2c2{bottom:691.665000px;}
.y210{bottom:692.385000px;}
.y2e9{bottom:693.690000px;}
.y19c{bottom:694.365000px;}
.y9e{bottom:696.345000px;}
.y1a{bottom:697.245000px;}
.y15c{bottom:697.605000px;}
.y168{bottom:698.865000px;}
.y257{bottom:699.045000px;}
.y283{bottom:701.565000px;}
.ycb{bottom:703.545000px;}
.y124{bottom:704.805000px;}
.y19{bottom:709.665000px;}
.y2e7{bottom:709.695000px;}
.y2e3{bottom:709.710000px;}
.yff{bottom:711.645000px;}
.y20f{bottom:712.185000px;}
.y9d{bottom:713.625000px;}
.y23a{bottom:714.525000px;}
.y282{bottom:715.965000px;}
.y167{bottom:718.665000px;}
.y2c1{bottom:719.385000px;}
.y15b{bottom:721.725000px;}
.y18{bottom:722.625000px;}
.y256{bottom:722.985000px;}
.yca{bottom:723.165000px;}
.y123{bottom:724.605000px;}
.y19b{bottom:726.945000px;}
.y281{bottom:730.545000px;}
.y9c{bottom:730.905000px;}
.yfe{bottom:731.445000px;}
.y20e{bottom:732.165000px;}
.y159{bottom:733.425000px;}
.yc9{bottom:736.305000px;}
.y17{bottom:736.485000px;}
.y166{bottom:738.465000px;}
.y19a{bottom:743.505000px;}
.yfd{bottom:744.405000px;}
.y239{bottom:745.125000px;}
.y2bf{bottom:745.665000px;}
.y255{bottom:746.925000px;}
.y9b{bottom:748.185000px;}
.y16{bottom:749.265000px;}
.y158{bottom:750.165000px;}
.y20d{bottom:751.965000px;}
.yc8{bottom:756.105000px;}
.y165{bottom:758.265000px;}
.y280{bottom:759.705000px;}
.y199{bottom:760.065000px;}
.yfc{bottom:764.205000px;}
.y9a{bottom:765.465000px;}
.y157{bottom:766.725000px;}
.y254{bottom:770.865000px;}
.y20c{bottom:771.765000px;}
.y2e2{bottom:772.710000px;}
.y2be{bottom:773.385000px;}
.y27f{bottom:774.285000px;}
.y238{bottom:775.725000px;}
.y15{bottom:776.085000px;}
.y198{bottom:776.805000px;}
.y164{bottom:778.245000px;}
.y99{bottom:782.565000px;}
.y156{bottom:783.300000px;}
.yfb{bottom:784.185000px;}
.y27a{bottom:788.880000px;}
.y20b{bottom:791.565000px;}
.y252{bottom:794.640000px;}
.y193{bottom:794.820000px;}
.yc7{bottom:795.885000px;}
.y163{bottom:798.045000px;}
.y98{bottom:799.845000px;}
.y155{bottom:800.025000px;}
.y2bd{bottom:800.385000px;}
.yfa{bottom:803.985000px;}
.y237{bottom:806.325000px;}
.y14{bottom:806.865000px;}
.y20a{bottom:812.265000px;}
.yc6{bottom:815.685000px;}
.y154{bottom:816.585000px;}
.y97{bottom:817.125000px;}
.y162{bottom:817.845000px;}
.y251{bottom:818.565000px;}
.y13{bottom:820.545000px;}
.yf9{bottom:823.785000px;}
.y2e1{bottom:825.480000px;}
.y2bc{bottom:827.385000px;}
.y277{bottom:831.000000px;}
.y152{bottom:833.160000px;}
.y96{bottom:834.405000px;}
.yc5{bottom:835.485000px;}
.y236{bottom:836.925000px;}
.y161{bottom:837.645000px;}
.y12{bottom:838.905000px;}
.y250{bottom:842.505000px;}
.yf8{bottom:843.585000px;}
.y276{bottom:845.565000px;}
.y150{bottom:849.885000px;}
.y95{bottom:851.685000px;}
.y11{bottom:852.810000px;}
.y2ba{bottom:852.990000px;}
.y209{bottom:853.350000px;}
.yc4{bottom:855.330000px;}
.y160{bottom:857.490000px;}
.y192{bottom:857.670000px;}
.y275{bottom:860.010000px;}
.y122{bottom:863.430000px;}
.yf7{bottom:864.330000px;}
.y10{bottom:866.490000px;}
.y235{bottom:867.570000px;}
.y94{bottom:869.010000px;}
.y191{bottom:873.150000px;}
.y274{bottom:874.590000px;}
.yc3{bottom:875.310000px;}
.y15f{bottom:877.470000px;}
.yf{bottom:879.630000px;}
.y14f{bottom:883.050000px;}
.y121{bottom:883.410000px;}
.yf6{bottom:884.130000px;}
.y93{bottom:886.110000px;}
.y273{bottom:889.170000px;}
.y190{bottom:890.430000px;}
.y2b8{bottom:892.770000px;}
.y208{bottom:893.850000px;}
.yc2{bottom:896.010000px;}
.yf5{bottom:897.270000px;}
.y234{bottom:898.350000px;}
.y14e{bottom:899.790000px;}
.ye{bottom:901.590000px;}
.y120{bottom:903.210000px;}
.y92{bottom:903.390000px;}
.y272{bottom:903.750000px;}
.y18f{bottom:903.930000px;}
.y24e{bottom:914.370000px;}
.y18e{bottom:915.990000px;}
.y14d{bottom:916.350000px;}
.yc1{bottom:916.890000px;}
.yf4{bottom:917.070000px;}
.y271{bottom:918.330000px;}
.y91{bottom:920.670000px;}
.y11f{bottom:923.010000px;}
.yd{bottom:926.070000px;}
.y2b5{bottom:927.870000px;}
.y18d{bottom:928.050000px;}
.y233{bottom:928.950000px;}
.y14c{bottom:932.910000px;}
.y207{bottom:934.710000px;}
.yf3{bottom:936.870000px;}
.y90{bottom:937.950000px;}
.y24d{bottom:938.310000px;}
.y18c{bottom:939.750000px;}
.y11e{bottom:942.810000px;}
.y26b{bottom:947.310000px;}
.yc{bottom:949.290000px;}
.y14b{bottom:949.650000px;}
.y206{bottom:954.510000px;}
.y8f{bottom:955.230000px;}
.y18b{bottom:956.490000px;}
.yf2{bottom:956.670000px;}
.y232{bottom:959.550000px;}
.y24c{bottom:962.250000px;}
.y11d{bottom:963.510000px;}
.y149{bottom:966.210000px;}
.y2b4{bottom:968.370000px;}
.y8e{bottom:972.510000px;}
.yb{bottom:972.690000px;}
.y18a{bottom:973.050000px;}
.y205{bottom:975.390000px;}
.y268{bottom:975.750000px;}
.yf1{bottom:976.650000px;}
.y148{bottom:982.770000px;}
.y11c{bottom:983.490000px;}
.y24b{bottom:986.190000px;}
.y8d{bottom:989.610000px;}
.y231{bottom:990.150000px;}
.y2b3{bottom:995.370000px;}
.yf0{bottom:996.450000px;}
.y146{bottom:1000.950000px;}
.y266{bottom:1002.750000px;}
.ya{bottom:1004.550000px;}
.y189{bottom:1006.350000px;}
.y8c{bottom:1006.890000px;}
.y249{bottom:1010.130000px;}
.yef{bottom:1016.250000px;}
.y230{bottom:1020.750000px;}
.y2b0{bottom:1021.830000px;}
.y8b{bottom:1024.170000px;}
.y186{bottom:1024.350000px;}
.y145{bottom:1024.710000px;}
.y247{bottom:1035.510000px;}
.yee{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y22f{bottom:1040.370000px;}
.y8a{bottom:1041.450000px;}
.y264{bottom:1044.690000px;}
.y2af{bottom:1047.390000px;}
.yed{bottom:1055.850000px;}
.y89{bottom:1058.730000px;}
.y22e{bottom:1060.170000px;}
.y185{bottom:1061.610000px;}
.y8{bottom:1063.230000px;}
.yec{bottom:1075.650000px;}
.y88{bottom:1075.830000px;}
.y184{bottom:1077.090000px;}
.y263{bottom:1077.270000px;}
.y63{bottom:1096.200000px;}
.ye8{bottom:1103.940000px;}
.y86{bottom:1123.200000px;}
.y3a{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h71{height:6.257812px;}
.h68{height:12.780000px;}
.h6b{height:12.945000px;}
.h65{height:13.305000px;}
.h2{height:13.500000px;}
.h48{height:13.665000px;}
.h4c{height:13.680000px;}
.h4a{height:13.702500px;}
.h49{height:13.845000px;}
.h4d{height:13.860000px;}
.h66{height:13.882500px;}
.h4f{height:13.890000px;}
.h6f{height:13.896000px;}
.h67{height:14.040000px;}
.h6d{height:14.745000px;}
.h2a{height:15.825000px;}
.h2d{height:15.840000px;}
.h2c{height:15.862500px;}
.h2b{height:16.005000px;}
.h2f{height:16.020000px;}
.h35{height:16.050000px;}
.h17{height:16.920000px;}
.h16{height:18.140625px;}
.h6e{height:18.165000px;}
.h3a{height:19.425000px;}
.h5e{height:19.605000px;}
.h69{height:22.125000px;}
.h1d{height:22.140000px;}
.h39{height:22.305000px;}
.h42{height:22.485000px;}
.h3d{height:23.025000px;}
.h40{height:23.040000px;}
.h3c{height:23.205000px;}
.h3f{height:23.220000px;}
.h3e{height:23.242500px;}
.h41{height:23.250000px;}
.h13{height:23.319141px;}
.h51{height:23.385000px;}
.h43{height:23.925000px;}
.h50{height:24.285000px;}
.h55{height:24.840000px;}
.h6c{height:24.861000px;}
.h6a{height:24.870000px;}
.h58{height:25.560000px;}
.h52{height:25.725000px;}
.h46{height:26.265000px;}
.h56{height:26.280000px;}
.h44{height:26.985000px;}
.h57{height:27.000000px;}
.h5d{height:27.525000px;}
.h47{height:27.705000px;}
.h25{height:29.664141px;}
.hb{height:29.678906px;}
.hd{height:30.963516px;}
.h34{height:31.680000px;}
.h30{height:31.845000px;}
.h2e{height:32.580000px;}
.h5c{height:33.105000px;}
.h53{height:34.365000px;}
.h15{height:36.281250px;}
.h36{height:36.525000px;}
.h37{height:36.535500px;}
.h38{height:36.540000px;}
.h54{height:39.045000px;}
.h11{height:39.503370px;}
.h45{height:39.765000px;}
.h59{height:39.780000px;}
.h5b{height:39.801000px;}
.h5a{height:39.810000px;}
.h5{height:40.985156px;}
.h70{height:41.220703px;}
.h4b{height:41.385000px;}
.h4e{height:41.400000px;}
.h26{height:41.535703px;}
.h1c{height:42.086250px;}
.hf{height:44.518359px;}
.h64{height:45.714375px;}
.h10{height:46.622932px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h18{height:48.616875px;}
.h1f{height:52.020000px;}
.h12{height:52.998047px;}
.h29{height:53.573906px;}
.h19{height:54.421875px;}
.h61{height:55.065000px;}
.h62{height:55.071000px;}
.h63{height:55.080000px;}
.he{height:55.291992px;}
.h3b{height:55.824609px;}
.h31{height:57.225000px;}
.h32{height:57.235500px;}
.h33{height:57.240000px;}
.h3{height:58.651172px;}
.h28{height:59.038594px;}
.h9{height:60.226875px;}
.h27{height:61.423863px;}
.ha{height:65.010937px;}
.h20{height:65.884219px;}
.h24{height:70.628906px;}
.h23{height:70.664062px;}
.h14{height:72.562500px;}
.h1e{height:74.953125px;}
.h22{height:75.093750px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h1b{height:101.925000px;}
.h21{height:137.700000px;}
.h1a{height:477.255000px;}
.h5f{height:892.980000px;}
.h60{height:893.250000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w27{width:43.410000px;}
.w25{width:61.905000px;}
.w39{width:70.905000px;}
.w3a{width:71.481000px;}
.w38{width:74.325000px;}
.w2d{width:78.105000px;}
.w3f{width:80.805000px;}
.w3b{width:80.811000px;}
.w3c{width:80.820000px;}
.w18{width:81.036000px;}
.w3{width:82.071000px;}
.w3e{width:87.330000px;}
.w31{width:92.736000px;}
.w3d{width:101.145000px;}
.w1c{width:102.801000px;}
.w23{width:102.945000px;}
.w1b{width:102.951000px;}
.w1f{width:102.955500px;}
.w20{width:102.960000px;}
.w24{width:102.981000px;}
.w21{width:102.982500px;}
.w22{width:102.990000px;}
.w1d{width:102.996000px;}
.w1e{width:103.005000px;}
.w32{width:103.161000px;}
.w33{width:107.985000px;}
.wd{width:108.381000px;}
.w16{width:108.750000px;}
.w13{width:108.756000px;}
.w14{width:108.765000px;}
.w10{width:109.461000px;}
.w2c{width:110.916000px;}
.wf{width:113.250000px;}
.w17{width:114.321000px;}
.we{width:116.985000px;}
.w15{width:119.685000px;}
.w11{width:119.691000px;}
.w12{width:119.700000px;}
.w2a{width:120.051000px;}
.w34{width:121.530000px;}
.w2e{width:128.361000px;}
.w2b{width:129.261000px;}
.w2f{width:141.690000px;}
.w19{width:148.485000px;}
.w1a{width:148.521000px;}
.w9{width:154.470000px;}
.wc{width:162.030000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.wb{width:181.821000px;}
.w30{width:296.655000px;}
.w29{width:348.180000px;}
.w28{width:360.246000px;}
.w26{width:512.010000px;}
.w37{width:513.105000px;}
.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;}
.w40{width:999.180000px;}
.w35{width:1190.700000px;}
.w36{width:1191.000000px;}
.x0{left:0.000000px;}
.x75{left:4.252500px;}
.x2{left:8.091000px;}
.x59{left:9.165000px;}
.x14{left:10.791000px;}
.x74{left:11.865000px;}
.x50{left:13.710000px;}
.x43{left:15.120000px;}
.x6f{left:16.560000px;}
.x2d{left:17.640000px;}
.x72{left:18.720000px;}
.x62{left:19.965000px;}
.x1a{left:21.255000px;}
.x30{left:23.070000px;}
.x73{left:24.660000px;}
.x32{left:25.785000px;}
.x33{left:27.030000px;}
.x44{left:28.605000px;}
.x34{left:30.090000px;}
.x2e{left:31.155000px;}
.x2a{left:32.610000px;}
.x31{left:34.590000px;}
.x67{left:35.850000px;}
.x24{left:37.260000px;}
.x3f{left:39.420000px;}
.x69{left:40.500000px;}
.x5d{left:41.940000px;}
.x71{left:43.770000px;}
.x28{left:45.180000px;}
.x68{left:46.290000px;}
.x2b{left:47.880000px;}
.x22{left:49.140000px;}
.x5f{left:51.150000px;}
.x66{left:54.000000px;}
.x60{left:55.470000px;}
.x5e{left:57.240000px;}
.x21{left:59.580000px;}
.x3b{left:60.690000px;}
.x3d{left:63.750000px;}
.x3c{left:65.145000px;}
.x3a{left:66.810000px;}
.x39{left:68.205000px;}
.x61{left:70.770000px;}
.x23{left:72.000000px;}
.x3{left:73.965000px;}
.x13{left:81.765000px;}
.x6b{left:87.660000px;}
.x19{left:93.105000px;}
.x16{left:94.545000px;}
.x10{left:101.196000px;}
.x55{left:105.150000px;}
.x1{left:108.045000px;}
.xc{left:110.376000px;}
.xe{left:112.896000px;}
.x54{left:120.450000px;}
.x26{left:121.536000px;}
.x51{left:123.150000px;}
.x45{left:126.936000px;}
.x11{left:132.696000px;}
.x1c{left:134.316000px;}
.x1d{left:135.396000px;}
.x6{left:137.916000px;}
.x53{left:139.350000px;}
.x8{left:140.796000px;}
.xa{left:141.876000px;}
.x4e{left:152.310000px;}
.x56{left:153.390000px;}
.x7{left:154.470000px;}
.x4d{left:156.270000px;}
.x48{left:159.525000px;}
.x47{left:162.030000px;}
.x4f{left:175.710000px;}
.x52{left:177.690000px;}
.x4c{left:186.330000px;}
.x4{left:190.125000px;}
.xd{left:210.810000px;}
.x49{left:221.445000px;}
.x35{left:222.525000px;}
.x58{left:228.105000px;}
.x4a{left:241.080000px;}
.x6a{left:257.790000px;}
.x20{left:289.875000px;}
.x15{left:302.835000px;}
.x17{left:310.350000px;}
.x3e{left:314.175000px;}
.x36{left:336.855000px;}
.x5a{left:357.375000px;}
.x18{left:371.580000px;}
.xb{left:385.275000px;}
.x63{left:404.355000px;}
.xf{left:413.205000px;}
.x37{left:417.900000px;}
.x5{left:446.505000px;}
.x9{left:452.265000px;}
.x57{left:468.300000px;}
.x12{left:490.785000px;}
.x64{left:497.100000px;}
.x40{left:520.140000px;}
.x5b{left:546.420000px;}
.x38{left:566.400000px;}
.x27{left:599.190000px;}
.x2c{left:600.270000px;}
.x1b{left:620.253000px;}
.x41{left:623.130000px;}
.x1f{left:645.450000px;}
.x5c{left:674.790000px;}
.x65{left:708.270000px;}
.x29{left:716.190000px;}
.x2f{left:719.970000px;}
.x42{left:726.090000px;}
.x4b{left:733.470000px;}
.x6c{left:745.680000px;}
.x25{left:796.680000px;}
.x1e{left:799.200000px;}
.x6d{left:817.170000px;}
.x46{left:829.440000px;}
.x6e{left:897.990000px;}
.x76{left:917.973000px;}
.x70{left:999.150000px;}
@media print{
.v3{vertical-align:-69.760000pt;}
.v5{vertical-align:-60.800000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.400533pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.239467pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.133867pt;}
.ls16{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.048640pt;}
.ls11{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.198933pt;}
.ls10{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.252800pt;}
.ls1f{letter-spacing:0.296960pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.478933pt;}
.ls1d{letter-spacing:0.603520pt;}
.lsb{letter-spacing:0.640000pt;}
.lsa{letter-spacing:3.360000pt;}
.ls4{letter-spacing:13.600000pt;}
.ls1c{letter-spacing:21.280000pt;}
.ls5{letter-spacing:42.400000pt;}
.ls1{letter-spacing:63.360000pt;}
.ls2{letter-spacing:64.000000pt;}
.ls3{letter-spacing:64.106667pt;}
.ls18{letter-spacing:397.578667pt;}
.wsa{word-spacing:-37.120000pt;}
.ws10{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.185067pt;}
.ws12{word-spacing:-13.096533pt;}
.ws1b{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.892800pt;}
.ws19{word-spacing:-12.688640pt;}
.ws18{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.192000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.984000pt;}
.ws1d{word-spacing:-11.198933pt;}
.ws15{word-spacing:-11.040000pt;}
.ws1c{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.558933pt;}
.ws13{word-spacing:-10.480533pt;}
.ws17{word-spacing:-10.400000pt;}
.ws1e{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.733760pt;}
.ws9{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._6{margin-left:-52.960000pt;}
._2c{margin-left:-3.832320pt;}
._1f{margin-left:-2.926720pt;}
._3{margin-left:-1.928320pt;}
._2{margin-left:-1.000960pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._1d{width:3.066453pt;}
._19{width:3.998720pt;}
._9{width:5.152640pt;}
._8{width:6.693120pt;}
._17{width:8.160000pt;}
._15{width:9.552000pt;}
._16{width:10.490667pt;}
._10{width:12.270720pt;}
._1a{width:13.248000pt;}
._1c{width:15.033600pt;}
._22{width:16.043520pt;}
._11{width:16.945280pt;}
._26{width:17.855360pt;}
._20{width:18.751360pt;}
._e{width:20.344960pt;}
._18{width:21.744000pt;}
._a{width:23.000960pt;}
._21{width:24.250880pt;}
._23{width:25.869440pt;}
._24{width:26.931840pt;}
._29{width:27.891200pt;}
._28{width:28.844160pt;}
._f{width:30.278400pt;}
._d{width:31.295787pt;}
._c{width:32.403200pt;}
._25{width:33.306240pt;}
._b{width:34.581120pt;}
._12{width:35.744640pt;}
._14{width:37.121920pt;}
._13{width:38.405760pt;}
._27{width:39.946240pt;}
._2b{width:43.133440pt;}
._2a{width:44.340267pt;}
._1b{width:47.810560pt;}
._2d{width:49.727360pt;}
._30{width:52.482560pt;}
._4{width:58.218667pt;}
._32{width:59.282773pt;}
._33{width:66.771840pt;}
._31{width:72.083840pt;}
._34{width:73.943040pt;}
._2f{width:81.008000pt;}
._2e{width:95.592960pt;}
._35{width:148.720000pt;}
._5{width:177.440000pt;}
._1e{width:257.306667pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs12{font-size:5.333333pt;}
.fse{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fsf{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs11{font-size:37.333333pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y72{bottom:-223.546667pt;}
.y71{bottom:-193.626667pt;}
.y83{bottom:-168.506667pt;}
.y70{bottom:-163.546667pt;}
.y82{bottom:-138.586667pt;}
.y6f{bottom:-133.626667pt;}
.y81{bottom:-108.506667pt;}
.y6e{bottom:-103.546667pt;}
.y80{bottom:-78.586667pt;}
.y6d{bottom:-73.626667pt;}
.y7f{bottom:-48.506667pt;}
.y6c{bottom:-43.680000pt;}
.y65{bottom:-25.466667pt;}
.y3c{bottom:-24.160000pt;}
.y7e{bottom:-18.586667pt;}
.y85{bottom:-15.931333pt;}
.y6b{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y314{bottom:1.633333pt;}
.y2f7{bottom:2.240000pt;}
.y278{bottom:2.386667pt;}
.y6a{bottom:2.400000pt;}
.y2e8{bottom:2.413333pt;}
.y279{bottom:2.546667pt;}
.y270{bottom:2.560000pt;}
.y2ef{bottom:2.706667pt;}
.y26f{bottom:2.720000pt;}
.y5b{bottom:2.866667pt;}
.y2f5{bottom:2.880000pt;}
.y308{bottom:3.186667pt;}
.y2{bottom:3.520000pt;}
.y197{bottom:4.146667pt;}
.y147{bottom:4.160000pt;}
.y1ac{bottom:4.173333pt;}
.y14a{bottom:4.320000pt;}
.y1a3{bottom:4.346667pt;}
.y151{bottom:4.360000pt;}
.y153{bottom:4.466667pt;}
.y3b{bottom:4.480000pt;}
.y2d0{bottom:4.946667pt;}
.y64{bottom:4.960000pt;}
.y2d9{bottom:5.106667pt;}
.y2fe{bottom:5.120000pt;}
.y2da{bottom:5.266667pt;}
.y2fd{bottom:5.280000pt;}
.y1b3{bottom:5.760000pt;}
.y1b4{bottom:5.920000pt;}
.y2f9{bottom:6.386667pt;}
.y1ae{bottom:6.400000pt;}
.y2b1{bottom:6.720000pt;}
.y2b2{bottom:6.880000pt;}
.y1b0{bottom:7.040000pt;}
.y1b1{bottom:7.200000pt;}
.y248{bottom:7.360000pt;}
.y2d6{bottom:7.506667pt;}
.y24a{bottom:7.520000pt;}
.y253{bottom:7.666667pt;}
.y24f{bottom:7.680000pt;}
.y2cc{bottom:7.826667pt;}
.y262{bottom:7.840000pt;}
.y269{bottom:8.000000pt;}
.y26a{bottom:8.160000pt;}
.y265{bottom:8.320000pt;}
.y2c0{bottom:8.480000pt;}
.y27c{bottom:8.626667pt;}
.y26c{bottom:8.640000pt;}
.y2d3{bottom:8.786667pt;}
.y26d{bottom:8.800000pt;}
.y7d{bottom:8.973333pt;}
.y7{bottom:11.040000pt;}
.y2d1{bottom:11.186667pt;}
.y187{bottom:11.200000pt;}
.y19e{bottom:11.360000pt;}
.y2b9{bottom:11.680000pt;}
.y15a{bottom:11.840000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y1a9{bottom:13.440000pt;}
.y2d7{bottom:13.906667pt;}
.y69{bottom:13.920000pt;}
.y267{bottom:14.080000pt;}
.y2cd{bottom:14.226667pt;}
.y2b7{bottom:14.240000pt;}
.y2d2{bottom:14.706667pt;}
.y2e6{bottom:14.720000pt;}
.y27d{bottom:14.866667pt;}
.y287{bottom:14.880000pt;}
.y26e{bottom:15.040000pt;}
.y5a{bottom:17.106667pt;}
.y2cf{bottom:17.266667pt;}
.y19d{bottom:18.240000pt;}
.y188{bottom:18.400000pt;}
.y2d5{bottom:19.826667pt;}
.y2bb{bottom:19.840000pt;}
.y2cb{bottom:20.146667pt;}
.y2c5{bottom:20.160000pt;}
.y2b6{bottom:20.320000pt;}
.y1ad{bottom:20.480000pt;}
.y7c{bottom:20.493333pt;}
.y27b{bottom:20.786667pt;}
.y286{bottom:20.800000pt;}
.y6{bottom:22.400000pt;}
.y194{bottom:22.546667pt;}
.y196{bottom:22.706667pt;}
.y1aa{bottom:22.720000pt;}
.y62{bottom:24.973333pt;}
.y68{bottom:25.600000pt;}
.y2e5{bottom:27.040000pt;}
.y27e{bottom:27.186667pt;}
.y288{bottom:27.200000pt;}
.y59{bottom:28.946667pt;}
.y7b{bottom:32.173333pt;}
.y5{bottom:33.920000pt;}
.y61{bottom:36.013333pt;}
.y67{bottom:36.480000pt;}
.y58{bottom:36.786667pt;}
.y2e4{bottom:39.200000pt;}
.y195{bottom:41.106667pt;}
.yeb{bottom:41.120000pt;}
.y7a{bottom:43.693333pt;}
.y60{bottom:46.733333pt;}
.y57{bottom:52.626667pt;}
.y87{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.y79{bottom:55.373333pt;}
.yea{bottom:55.680000pt;}
.y84{bottom:56.693333pt;}
.y5f{bottom:57.480000pt;}
.y78{bottom:66.893333pt;}
.y5e{bottom:68.200000pt;}
.y56{bottom:68.466667pt;}
.y313{bottom:70.560000pt;}
.ye9{bottom:71.520000pt;}
.y77{bottom:78.413333pt;}
.y312{bottom:81.280000pt;}
.y5d{bottom:83.400000pt;}
.y55{bottom:84.306667pt;}
.y2e0{bottom:87.360000pt;}
.y76{bottom:90.093333pt;}
.y2ae{bottom:90.880000pt;}
.y311{bottom:92.000000pt;}
.y1ee{bottom:92.160000pt;}
.y144{bottom:92.960000pt;}
.y204{bottom:94.880000pt;}
.y183{bottom:95.040000pt;}
.y54{bottom:96.186667pt;}
.y1c6{bottom:96.480000pt;}
.y11b{bottom:97.280000pt;}
.yc0{bottom:97.600000pt;}
.y1d2{bottom:99.040000pt;}
.ye7{bottom:100.800000pt;}
.y2ad{bottom:101.600000pt;}
.y75{bottom:101.613333pt;}
.y310{bottom:102.560000pt;}
.y22d{bottom:104.000000pt;}
.y53{bottom:104.026667pt;}
.y39{bottom:107.840000pt;}
.y143{bottom:108.160000pt;}
.y1ed{bottom:109.760000pt;}
.y246{bottom:112.320000pt;}
.y203{bottom:112.480000pt;}
.y182{bottom:112.640000pt;}
.y74{bottom:112.653333pt;}
.ybf{bottom:112.960000pt;}
.y1c5{bottom:114.080000pt;}
.y2df{bottom:114.560000pt;}
.y11a{bottom:114.880000pt;}
.y30f{bottom:115.680000pt;}
.y1d1{bottom:116.800000pt;}
.ye6{bottom:118.400000pt;}
.y52{bottom:120.026667pt;}
.y22c{bottom:121.760000pt;}
.y2ac{bottom:123.040000pt;}
.y38{bottom:123.200000pt;}
.y142{bottom:125.760000pt;}
.y1ec{bottom:127.360000pt;}
.ybe{bottom:128.320000pt;}
.y30e{bottom:128.640000pt;}
.y202{bottom:130.080000pt;}
.y1c4{bottom:131.680000pt;}
.y119{bottom:133.280000pt;}
.y2ab{bottom:133.760000pt;}
.y1d0{bottom:134.400000pt;}
.y51{bottom:135.866667pt;}
.ye5{bottom:136.000000pt;}
.y37{bottom:138.560000pt;}
.y22b{bottom:139.360000pt;}
.y245{bottom:139.520000pt;}
.y30d{bottom:141.640000pt;}
.y2de{bottom:141.760000pt;}
.y141{bottom:143.360000pt;}
.ybd{bottom:143.680000pt;}
.y2aa{bottom:144.506667pt;}
.y1eb{bottom:144.986667pt;}
.y201{bottom:148.666667pt;}
.y1c3{bottom:149.306667pt;}
.y50{bottom:151.706667pt;}
.y1cf{bottom:152.026667pt;}
.ye4{bottom:153.786667pt;}
.y36{bottom:153.946667pt;}
.y118{bottom:154.586667pt;}
.y2a9{bottom:155.386667pt;}
.y22a{bottom:156.986667pt;}
.y30c{bottom:158.440000pt;}
.ybc{bottom:159.066667pt;}
.y181{bottom:160.666667pt;}
.y140{bottom:160.986667pt;}
.y1ea{bottom:162.746667pt;}
.y2a8{bottom:166.106667pt;}
.y244{bottom:166.746667pt;}
.y1c2{bottom:167.066667pt;}
.y4f{bottom:167.546667pt;}
.y2dd{bottom:168.986667pt;}
.y35{bottom:169.306667pt;}
.y1ce{bottom:169.626667pt;}
.ye3{bottom:171.386667pt;}
.y30b{bottom:171.400000pt;}
.ybb{bottom:174.266667pt;}
.y229{bottom:174.586667pt;}
.y2a7{bottom:176.826667pt;}
.y180{bottom:178.266667pt;}
.y13f{bottom:178.586667pt;}
.y4e{bottom:179.386667pt;}
.y1e9{bottom:180.346667pt;}
.y2dc{bottom:184.026667pt;}
.y30a{bottom:184.200000pt;}
.y34{bottom:184.506667pt;}
.y1c1{bottom:184.666667pt;}
.y200{bottom:184.986667pt;}
.y4d{bottom:187.226667pt;}
.y2a6{bottom:187.546667pt;}
.ye2{bottom:188.986667pt;}
.yba{bottom:189.626667pt;}
.y117{bottom:190.906667pt;}
.y228{bottom:192.186667pt;}
.y243{bottom:193.946667pt;}
.y2db{bottom:195.706667pt;}
.y17f{bottom:195.866667pt;}
.y13e{bottom:196.186667pt;}
.y309{bottom:197.160000pt;}
.y1e8{bottom:197.946667pt;}
.y2a5{bottom:198.266667pt;}
.y33{bottom:199.866667pt;}
.y1c0{bottom:202.266667pt;}
.y4c{bottom:203.066667pt;}
.y1ff{bottom:203.386667pt;}
.yb9{bottom:204.986667pt;}
.y2d8{bottom:206.120000pt;}
.ye1{bottom:206.586667pt;}
.y116{bottom:208.506667pt;}
.y2a4{bottom:208.986667pt;}
.y227{bottom:209.946667pt;}
.y307{bottom:210.120000pt;}
.y17e{bottom:213.466667pt;}
.y13d{bottom:213.946667pt;}
.y32{bottom:215.226667pt;}
.y1e7{bottom:215.546667pt;}
.y4b{bottom:219.066667pt;}
.y2a3{bottom:219.706667pt;}
.y1bf{bottom:219.866667pt;}
.yb8{bottom:220.346667pt;}
.y242{bottom:221.146667pt;}
.y1cd{bottom:222.586667pt;}
.y306{bottom:223.880000pt;}
.ye0{bottom:224.186667pt;}
.y2d4{bottom:224.200000pt;}
.y115{bottom:226.106667pt;}
.y226{bottom:227.546667pt;}
.y2a2{bottom:230.426667pt;}
.y17d{bottom:231.226667pt;}
.y13c{bottom:231.546667pt;}
.y1e6{bottom:233.146667pt;}
.y31{bottom:233.466667pt;}
.y4a{bottom:234.906667pt;}
.yb7{bottom:235.706667pt;}
.y305{bottom:236.840000pt;}
.y1be{bottom:237.466667pt;}
.y1fe{bottom:239.706667pt;}
.y1cc{bottom:240.186667pt;}
.y2a1{bottom:241.146667pt;}
.ydf{bottom:241.946667pt;}
.y114{bottom:243.706667pt;}
.y225{bottom:245.146667pt;}
.y13b{bottom:247.066667pt;}
.y241{bottom:248.346667pt;}
.y17c{bottom:248.826667pt;}
.y49{bottom:250.746667pt;}
.y1e5{bottom:250.906667pt;}
.yb6{bottom:251.066667pt;}
.y30{bottom:251.546667pt;}
.y2a0{bottom:251.866667pt;}
.y1bd{bottom:254.266667pt;}
.y1fd{bottom:257.306667pt;}
.y1cb{bottom:257.786667pt;}
.yde{bottom:259.546667pt;}
.y3d{bottom:259.560000pt;}
.y2f{bottom:260.346667pt;}
.y113{bottom:261.466667pt;}
.y304{bottom:262.120000pt;}
.y13a{bottom:262.266667pt;}
.y29f{bottom:262.586667pt;}
.y224{bottom:262.746667pt;}
.yb5{bottom:266.266667pt;}
.y17b{bottom:266.426667pt;}
.y48{bottom:266.586667pt;}
.y2e{bottom:267.546667pt;}
.y1e4{bottom:268.506667pt;}
.y1bc{bottom:271.866667pt;}
.y29e{bottom:273.306667pt;}
.y1ca{bottom:275.386667pt;}
.y240{bottom:275.546667pt;}
.y1fc{bottom:275.866667pt;}
.ydd{bottom:277.146667pt;}
.y139{bottom:277.626667pt;}
.y112{bottom:279.066667pt;}
.y223{bottom:280.346667pt;}
.y2d{bottom:281.146667pt;}
.yb4{bottom:281.626667pt;}
.y47{bottom:282.426667pt;}
.y17a{bottom:284.026667pt;}
.y2ce{bottom:284.680000pt;}
.y303{bottom:284.866667pt;}
.y1e3{bottom:286.106667pt;}
.y1bb{bottom:289.626667pt;}
.y138{bottom:292.986667pt;}
.y1c9{bottom:293.146667pt;}
.ydc{bottom:294.746667pt;}
.y29d{bottom:294.906667pt;}
.y111{bottom:296.666667pt;}
.yb3{bottom:296.986667pt;}
.y302{bottom:297.826667pt;}
.y222{bottom:298.106667pt;}
.y46{bottom:298.453333pt;}
.y179{bottom:301.626667pt;}
.y2c{bottom:302.266667pt;}
.y23f{bottom:302.746667pt;}
.y1e2{bottom:303.706667pt;}
.y29c{bottom:305.626667pt;}
.y1ba{bottom:307.226667pt;}
.y137{bottom:308.346667pt;}
.y1c8{bottom:310.746667pt;}
.y1fb{bottom:312.186667pt;}
.yb2{bottom:312.346667pt;}
.y110{bottom:314.266667pt;}
.y45{bottom:314.293333pt;}
.y2ca{bottom:314.760000pt;}
.y221{bottom:315.706667pt;}
.y29b{bottom:316.346667pt;}
.y178{bottom:319.386667pt;}
.y2b{bottom:320.826667pt;}
.y1e1{bottom:321.306667pt;}
.y301{bottom:321.826667pt;}
.y136{bottom:323.706667pt;}
.y1b9{bottom:325.626667pt;}
.y29a{bottom:327.066667pt;}
.yb1{bottom:327.706667pt;}
.y1c7{bottom:328.346667pt;}
.y23e{bottom:329.946667pt;}
.ydb{bottom:330.106667pt;}
.y44{bottom:330.133333pt;}
.y1fa{bottom:330.586667pt;}
.y10f{bottom:331.866667pt;}
.y220{bottom:333.306667pt;}
.y177{bottom:336.986667pt;}
.y299{bottom:337.786667pt;}
.y2a{bottom:338.426667pt;}
.y135{bottom:339.066667pt;}
.y300{bottom:339.746667pt;}
.y43{bottom:341.973333pt;}
.y1b8{bottom:342.746667pt;}
.yb0{bottom:342.906667pt;}
.yda{bottom:347.706667pt;}
.y298{bottom:348.506667pt;}
.y10e{bottom:349.666667pt;}
.y42{bottom:349.813333pt;}
.y29{bottom:350.786667pt;}
.y21f{bottom:350.946667pt;}
.y1f9{bottom:351.746667pt;}
.y1b7{bottom:353.506667pt;}
.y134{bottom:354.306667pt;}
.y176{bottom:354.626667pt;}
.y1e0{bottom:356.706667pt;}
.y23d{bottom:357.346667pt;}
.y2ff{bottom:357.826667pt;}
.yaf{bottom:358.306667pt;}
.y28{bottom:358.466667pt;}
.y297{bottom:359.266667pt;}
.y1b6{bottom:364.226667pt;}
.yd9{bottom:365.346667pt;}
.y41{bottom:365.653333pt;}
.y73{bottom:367.253333pt;}
.y10d{bottom:367.266667pt;}
.y21e{bottom:368.546667pt;}
.y133{bottom:369.666667pt;}
.y296{bottom:369.986667pt;}
.y175{bottom:372.226667pt;}
.yae{bottom:373.666667pt;}
.y1df{bottom:374.306667pt;}
.y1b5{bottom:374.946667pt;}
.y23c{bottom:377.026667pt;}
.y27{bottom:379.106667pt;}
.y295{bottom:380.546667pt;}
.y40{bottom:381.493333pt;}
.yd8{bottom:382.946667pt;}
.y10c{bottom:384.866667pt;}
.y132{bottom:385.026667pt;}
.y1b2{bottom:385.506667pt;}
.y21d{bottom:386.306667pt;}
.y2c9{bottom:386.786667pt;}
.y261{bottom:387.426667pt;}
.y1f8{bottom:388.066667pt;}
.yad{bottom:389.026667pt;}
.y174{bottom:389.826667pt;}
.y1de{bottom:391.906667pt;}
.y294{bottom:393.346667pt;}
.y3f{bottom:397.493333pt;}
.y26{bottom:399.906667pt;}
.yd7{bottom:400.546667pt;}
.y2fc{bottom:400.866667pt;}
.y10b{bottom:402.466667pt;}
.y131{bottom:403.266667pt;}
.y1af{bottom:403.426667pt;}
.y21c{bottom:403.906667pt;}
.yac{bottom:404.386667pt;}
.y1f7{bottom:405.826667pt;}
.y293{bottom:406.306667pt;}
.y173{bottom:407.586667pt;}
.y260{bottom:409.346667pt;}
.y1dd{bottom:409.506667pt;}
.y2c8{bottom:410.786667pt;}
.y3e{bottom:413.333333pt;}
.yd6{bottom:418.306667pt;}
.y2fb{bottom:418.946667pt;}
.y292{bottom:419.266667pt;}
.yab{bottom:419.746667pt;}
.y10a{bottom:420.066667pt;}
.y25{bottom:420.546667pt;}
.y130{bottom:420.706667pt;}
.y21b{bottom:421.506667pt;}
.y1f6{bottom:423.426667pt;}
.y1ab{bottom:425.173333pt;}
.y172{bottom:425.186667pt;}
.y1dc{bottom:427.266667pt;}
.y25f{bottom:430.626667pt;}
.y291{bottom:432.226667pt;}
.y12f{bottom:432.546667pt;}
.yaa{bottom:434.946667pt;}
.yd5{bottom:435.906667pt;}
.y109{bottom:437.826667pt;}
.y21a{bottom:439.106667pt;}
.y24{bottom:441.186667pt;}
.y2fa{bottom:441.706667pt;}
.y1f5{bottom:441.826667pt;}
.y171{bottom:442.786667pt;}
.y1db{bottom:444.866667pt;}
.y290{bottom:445.186667pt;}
.y2c7{bottom:446.786667pt;}
.y12e{bottom:450.146667pt;}
.ya9{bottom:450.306667pt;}
.y25e{bottom:451.906667pt;}
.yd4{bottom:454.306667pt;}
.y2f8{bottom:454.666667pt;}
.y108{bottom:455.426667pt;}
.y219{bottom:456.706667pt;}
.y28f{bottom:458.146667pt;}
.y170{bottom:460.386667pt;}
.y23{bottom:461.986667pt;}
.y1da{bottom:462.466667pt;}
.y1a8{bottom:462.626667pt;}
.ya8{bottom:465.666667pt;}
.y12d{bottom:467.746667pt;}
.yd3{bottom:471.746667pt;}
.y107{bottom:473.026667pt;}
.y25d{bottom:473.186667pt;}
.y218{bottom:474.466667pt;}
.y2f6{bottom:475.133333pt;}
.y1a7{bottom:476.066667pt;}
.y16f{bottom:477.986667pt;}
.y1f4{bottom:478.146667pt;}
.y1d9{bottom:480.066667pt;}
.ya7{bottom:481.026667pt;}
.y22{bottom:482.626667pt;}
.y2c6{bottom:482.786667pt;}
.yd2{bottom:483.426667pt;}
.y12c{bottom:485.346667pt;}
.y2f4{bottom:487.293333pt;}
.y1a6{bottom:489.346667pt;}
.y106{bottom:490.626667pt;}
.y217{bottom:492.066667pt;}
.y25c{bottom:494.306667pt;}
.y28e{bottom:495.586667pt;}
.y16e{bottom:495.746667pt;}
.ya6{bottom:496.386667pt;}
.y1d8{bottom:497.666667pt;}
.y2f3{bottom:500.426667pt;}
.yd1{bottom:501.186667pt;}
.y5c{bottom:502.133333pt;}
.y12b{bottom:502.946667pt;}
.y1a5{bottom:504.066667pt;}
.y105{bottom:508.226667pt;}
.y28d{bottom:508.546667pt;}
.y216{bottom:509.666667pt;}
.ya5{bottom:511.746667pt;}
.y16d{bottom:513.346667pt;}
.y2f2{bottom:513.386667pt;}
.y1f3{bottom:513.506667pt;}
.y25b{bottom:514.946667pt;}
.y1d7{bottom:515.426667pt;}
.yd0{bottom:518.786667pt;}
.y12a{bottom:520.706667pt;}
.y28c{bottom:521.346667pt;}
.y104{bottom:525.986667pt;}
.y2f1{bottom:526.346667pt;}
.ya4{bottom:526.946667pt;}
.y215{bottom:527.266667pt;}
.y16c{bottom:530.946667pt;}
.y1f2{bottom:531.106667pt;}
.y21{bottom:531.426667pt;}
.y1d6{bottom:533.026667pt;}
.y1a4{bottom:533.666667pt;}
.y28b{bottom:534.306667pt;}
.y25a{bottom:536.226667pt;}
.ycf{bottom:536.386667pt;}
.y129{bottom:538.306667pt;}
.y2f0{bottom:539.306667pt;}
.ya3{bottom:542.306667pt;}
.y103{bottom:543.586667pt;}
.y214{bottom:544.866667pt;}
.y20{bottom:545.186667pt;}
.y28a{bottom:547.266667pt;}
.y16b{bottom:548.546667pt;}
.y1f1{bottom:548.706667pt;}
.y1a2{bottom:549.666667pt;}
.y1d5{bottom:550.626667pt;}
.y2ee{bottom:552.106667pt;}
.yce{bottom:554.013333pt;}
.y2c4{bottom:554.813333pt;}
.y128{bottom:555.933333pt;}
.y259{bottom:557.533333pt;}
.ya2{bottom:557.693333pt;}
.y1f{bottom:558.973333pt;}
.y289{bottom:560.253333pt;}
.y102{bottom:561.213333pt;}
.y213{bottom:562.653333pt;}
.y2ed{bottom:565.053333pt;}
.y1f0{bottom:566.333333pt;}
.y16a{bottom:566.493333pt;}
.y1d4{bottom:568.253333pt;}
.ycd{bottom:571.613333pt;}
.y1e{bottom:572.733333pt;}
.ya1{bottom:573.053333pt;}
.y285{bottom:573.213333pt;}
.y127{bottom:573.533333pt;}
.y2ec{bottom:578.053333pt;}
.y101{bottom:578.813333pt;}
.y212{bottom:580.253333pt;}
.y1a1{bottom:583.933333pt;}
.y1d3{bottom:585.853333pt;}
.y1d{bottom:586.653333pt;}
.ya0{bottom:588.413333pt;}
.ycc{bottom:589.373333pt;}
.y2c3{bottom:590.813333pt;}
.y2eb{bottom:591.013333pt;}
.y126{bottom:591.133333pt;}
.y1a0{bottom:596.093333pt;}
.y1c{bottom:596.413333pt;}
.y211{bottom:597.853333pt;}
.y15e{bottom:598.653333pt;}
.y258{bottom:600.093333pt;}
.y1ef{bottom:601.693333pt;}
.y169{bottom:603.613333pt;}
.y9f{bottom:603.773333pt;}
.y2ea{bottom:603.973333pt;}
.y19f{bottom:606.813333pt;}
.y66{bottom:606.973333pt;}
.y1b{bottom:608.573333pt;}
.y125{bottom:608.893333pt;}
.y15d{bottom:609.373333pt;}
.y284{bottom:610.653333pt;}
.y23b{bottom:611.453333pt;}
.y100{bottom:614.173333pt;}
.y2c2{bottom:614.813333pt;}
.y210{bottom:615.453333pt;}
.y2e9{bottom:616.613333pt;}
.y19c{bottom:617.213333pt;}
.y9e{bottom:618.973333pt;}
.y1a{bottom:619.773333pt;}
.y15c{bottom:620.093333pt;}
.y168{bottom:621.213333pt;}
.y257{bottom:621.373333pt;}
.y283{bottom:623.613333pt;}
.ycb{bottom:625.373333pt;}
.y124{bottom:626.493333pt;}
.y19{bottom:630.813333pt;}
.y2e7{bottom:630.840000pt;}
.y2e3{bottom:630.853333pt;}
.yff{bottom:632.573333pt;}
.y20f{bottom:633.053333pt;}
.y9d{bottom:634.333333pt;}
.y23a{bottom:635.133333pt;}
.y282{bottom:636.413333pt;}
.y167{bottom:638.813333pt;}
.y2c1{bottom:639.453333pt;}
.y15b{bottom:641.533333pt;}
.y18{bottom:642.333333pt;}
.y256{bottom:642.653333pt;}
.yca{bottom:642.813333pt;}
.y123{bottom:644.093333pt;}
.y19b{bottom:646.173333pt;}
.y281{bottom:649.373333pt;}
.y9c{bottom:649.693333pt;}
.yfe{bottom:650.173333pt;}
.y20e{bottom:650.813333pt;}
.y159{bottom:651.933333pt;}
.yc9{bottom:654.493333pt;}
.y17{bottom:654.653333pt;}
.y166{bottom:656.413333pt;}
.y19a{bottom:660.893333pt;}
.yfd{bottom:661.693333pt;}
.y239{bottom:662.333333pt;}
.y2bf{bottom:662.813333pt;}
.y255{bottom:663.933333pt;}
.y9b{bottom:665.053333pt;}
.y16{bottom:666.013333pt;}
.y158{bottom:666.813333pt;}
.y20d{bottom:668.413333pt;}
.yc8{bottom:672.093333pt;}
.y165{bottom:674.013333pt;}
.y280{bottom:675.293333pt;}
.y199{bottom:675.613333pt;}
.yfc{bottom:679.293333pt;}
.y9a{bottom:680.413333pt;}
.y157{bottom:681.533333pt;}
.y254{bottom:685.213333pt;}
.y20c{bottom:686.013333pt;}
.y2e2{bottom:686.853333pt;}
.y2be{bottom:687.453333pt;}
.y27f{bottom:688.253333pt;}
.y238{bottom:689.533333pt;}
.y15{bottom:689.853333pt;}
.y198{bottom:690.493333pt;}
.y164{bottom:691.773333pt;}
.y99{bottom:695.613333pt;}
.y156{bottom:696.266667pt;}
.yfb{bottom:697.053333pt;}
.y27a{bottom:701.226667pt;}
.y20b{bottom:703.613333pt;}
.y252{bottom:706.346667pt;}
.y193{bottom:706.506667pt;}
.yc7{bottom:707.453333pt;}
.y163{bottom:709.373333pt;}
.y98{bottom:710.973333pt;}
.y155{bottom:711.133333pt;}
.y2bd{bottom:711.453333pt;}
.yfa{bottom:714.653333pt;}
.y237{bottom:716.733333pt;}
.y14{bottom:717.213333pt;}
.y20a{bottom:722.013333pt;}
.yc6{bottom:725.053333pt;}
.y154{bottom:725.853333pt;}
.y97{bottom:726.333333pt;}
.y162{bottom:726.973333pt;}
.y251{bottom:727.613333pt;}
.y13{bottom:729.373333pt;}
.yf9{bottom:732.253333pt;}
.y2e1{bottom:733.760000pt;}
.y2bc{bottom:735.453333pt;}
.y277{bottom:738.666667pt;}
.y152{bottom:740.586667pt;}
.y96{bottom:741.693333pt;}
.yc5{bottom:742.653333pt;}
.y236{bottom:743.933333pt;}
.y161{bottom:744.573333pt;}
.y12{bottom:745.693333pt;}
.y250{bottom:748.893333pt;}
.yf8{bottom:749.853333pt;}
.y276{bottom:751.613333pt;}
.y150{bottom:755.453333pt;}
.y95{bottom:757.053333pt;}
.y11{bottom:758.053333pt;}
.y2ba{bottom:758.213333pt;}
.y209{bottom:758.533333pt;}
.yc4{bottom:760.293333pt;}
.y160{bottom:762.213333pt;}
.y192{bottom:762.373333pt;}
.y275{bottom:764.453333pt;}
.y122{bottom:767.493333pt;}
.yf7{bottom:768.293333pt;}
.y10{bottom:770.213333pt;}
.y235{bottom:771.173333pt;}
.y94{bottom:772.453333pt;}
.y191{bottom:776.133333pt;}
.y274{bottom:777.413333pt;}
.yc3{bottom:778.053333pt;}
.y15f{bottom:779.973333pt;}
.yf{bottom:781.893333pt;}
.y14f{bottom:784.933333pt;}
.y121{bottom:785.253333pt;}
.yf6{bottom:785.893333pt;}
.y93{bottom:787.653333pt;}
.y273{bottom:790.373333pt;}
.y190{bottom:791.493333pt;}
.y2b8{bottom:793.573333pt;}
.y208{bottom:794.533333pt;}
.yc2{bottom:796.453333pt;}
.yf5{bottom:797.573333pt;}
.y234{bottom:798.533333pt;}
.y14e{bottom:799.813333pt;}
.ye{bottom:801.413333pt;}
.y120{bottom:802.853333pt;}
.y92{bottom:803.013333pt;}
.y272{bottom:803.333333pt;}
.y18f{bottom:803.493333pt;}
.y24e{bottom:812.773333pt;}
.y18e{bottom:814.213333pt;}
.y14d{bottom:814.533333pt;}
.yc1{bottom:815.013333pt;}
.yf4{bottom:815.173333pt;}
.y271{bottom:816.293333pt;}
.y91{bottom:818.373333pt;}
.y11f{bottom:820.453333pt;}
.yd{bottom:823.173333pt;}
.y2b5{bottom:824.773333pt;}
.y18d{bottom:824.933333pt;}
.y233{bottom:825.733333pt;}
.y14c{bottom:829.253333pt;}
.y207{bottom:830.853333pt;}
.yf3{bottom:832.773333pt;}
.y90{bottom:833.733333pt;}
.y24d{bottom:834.053333pt;}
.y18c{bottom:835.333333pt;}
.y11e{bottom:838.053333pt;}
.y26b{bottom:842.053333pt;}
.yc{bottom:843.813333pt;}
.y14b{bottom:844.133333pt;}
.y206{bottom:848.453333pt;}
.y8f{bottom:849.093333pt;}
.y18b{bottom:850.213333pt;}
.yf2{bottom:850.373333pt;}
.y232{bottom:852.933333pt;}
.y24c{bottom:855.333333pt;}
.y11d{bottom:856.453333pt;}
.y149{bottom:858.853333pt;}
.y2b4{bottom:860.773333pt;}
.y8e{bottom:864.453333pt;}
.yb{bottom:864.613333pt;}
.y18a{bottom:864.933333pt;}
.y205{bottom:867.013333pt;}
.y268{bottom:867.333333pt;}
.yf1{bottom:868.133333pt;}
.y148{bottom:873.573333pt;}
.y11c{bottom:874.213333pt;}
.y24b{bottom:876.613333pt;}
.y8d{bottom:879.653333pt;}
.y231{bottom:880.133333pt;}
.y2b3{bottom:884.773333pt;}
.yf0{bottom:885.733333pt;}
.y146{bottom:889.733333pt;}
.y266{bottom:891.333333pt;}
.ya{bottom:892.933333pt;}
.y189{bottom:894.533333pt;}
.y8c{bottom:895.013333pt;}
.y249{bottom:897.893333pt;}
.yef{bottom:903.333333pt;}
.y230{bottom:907.333333pt;}
.y2b0{bottom:908.293333pt;}
.y8b{bottom:910.373333pt;}
.y186{bottom:910.533333pt;}
.y145{bottom:910.853333pt;}
.y247{bottom:920.453333pt;}
.yee{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y22f{bottom:924.773333pt;}
.y8a{bottom:925.733333pt;}
.y264{bottom:928.613333pt;}
.y2af{bottom:931.013333pt;}
.yed{bottom:938.533333pt;}
.y89{bottom:941.093333pt;}
.y22e{bottom:942.373333pt;}
.y185{bottom:943.653333pt;}
.y8{bottom:945.093333pt;}
.yec{bottom:956.133333pt;}
.y88{bottom:956.293333pt;}
.y184{bottom:957.413333pt;}
.y263{bottom:957.573333pt;}
.y63{bottom:974.400000pt;}
.ye8{bottom:981.280000pt;}
.y86{bottom:998.400000pt;}
.y3a{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h71{height:5.562500pt;}
.h68{height:11.360000pt;}
.h6b{height:11.506667pt;}
.h65{height:11.826667pt;}
.h2{height:12.000000pt;}
.h48{height:12.146667pt;}
.h4c{height:12.160000pt;}
.h4a{height:12.180000pt;}
.h49{height:12.306667pt;}
.h4d{height:12.320000pt;}
.h66{height:12.340000pt;}
.h4f{height:12.346667pt;}
.h6f{height:12.352000pt;}
.h67{height:12.480000pt;}
.h6d{height:13.106667pt;}
.h2a{height:14.066667pt;}
.h2d{height:14.080000pt;}
.h2c{height:14.100000pt;}
.h2b{height:14.226667pt;}
.h2f{height:14.240000pt;}
.h35{height:14.266667pt;}
.h17{height:15.040000pt;}
.h16{height:16.125000pt;}
.h6e{height:16.146667pt;}
.h3a{height:17.266667pt;}
.h5e{height:17.426667pt;}
.h69{height:19.666667pt;}
.h1d{height:19.680000pt;}
.h39{height:19.826667pt;}
.h42{height:19.986667pt;}
.h3d{height:20.466667pt;}
.h40{height:20.480000pt;}
.h3c{height:20.626667pt;}
.h3f{height:20.640000pt;}
.h3e{height:20.660000pt;}
.h41{height:20.666667pt;}
.h13{height:20.728125pt;}
.h51{height:20.786667pt;}
.h43{height:21.266667pt;}
.h50{height:21.586667pt;}
.h55{height:22.080000pt;}
.h6c{height:22.098667pt;}
.h6a{height:22.106667pt;}
.h58{height:22.720000pt;}
.h52{height:22.866667pt;}
.h46{height:23.346667pt;}
.h56{height:23.360000pt;}
.h44{height:23.986667pt;}
.h57{height:24.000000pt;}
.h5d{height:24.466667pt;}
.h47{height:24.626667pt;}
.h25{height:26.368125pt;}
.hb{height:26.381250pt;}
.hd{height:27.523125pt;}
.h34{height:28.160000pt;}
.h30{height:28.306667pt;}
.h2e{height:28.960000pt;}
.h5c{height:29.426667pt;}
.h53{height:30.546667pt;}
.h15{height:32.250000pt;}
.h36{height:32.466667pt;}
.h37{height:32.476000pt;}
.h38{height:32.480000pt;}
.h54{height:34.706667pt;}
.h11{height:35.114107pt;}
.h45{height:35.346667pt;}
.h59{height:35.360000pt;}
.h5b{height:35.378667pt;}
.h5a{height:35.386667pt;}
.h5{height:36.431250pt;}
.h70{height:36.640625pt;}
.h4b{height:36.786667pt;}
.h4e{height:36.800000pt;}
.h26{height:36.920625pt;}
.h1c{height:37.410000pt;}
.hf{height:39.571875pt;}
.h64{height:40.635000pt;}
.h10{height:41.442606pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h18{height:43.215000pt;}
.h1f{height:46.240000pt;}
.h12{height:47.109375pt;}
.h29{height:47.621250pt;}
.h19{height:48.375000pt;}
.h61{height:48.946667pt;}
.h62{height:48.952000pt;}
.h63{height:48.960000pt;}
.he{height:49.148438pt;}
.h3b{height:49.621875pt;}
.h31{height:50.866667pt;}
.h32{height:50.876000pt;}
.h33{height:50.880000pt;}
.h3{height:52.134375pt;}
.h28{height:52.478750pt;}
.h9{height:53.535000pt;}
.h27{height:54.598989pt;}
.ha{height:57.787500pt;}
.h20{height:58.563750pt;}
.h24{height:62.781250pt;}
.h23{height:62.812500pt;}
.h14{height:64.500000pt;}
.h1e{height:66.625000pt;}
.h22{height:66.750000pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h1b{height:90.600000pt;}
.h21{height:122.400000pt;}
.h1a{height:424.226667pt;}
.h5f{height:793.760000pt;}
.h60{height:794.000000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w27{width:38.586667pt;}
.w25{width:55.026667pt;}
.w39{width:63.026667pt;}
.w3a{width:63.538667pt;}
.w38{width:66.066667pt;}
.w2d{width:69.426667pt;}
.w3f{width:71.826667pt;}
.w3b{width:71.832000pt;}
.w3c{width:71.840000pt;}
.w18{width:72.032000pt;}
.w3{width:72.952000pt;}
.w3e{width:77.626667pt;}
.w31{width:82.432000pt;}
.w3d{width:89.906667pt;}
.w1c{width:91.378667pt;}
.w23{width:91.506667pt;}
.w1b{width:91.512000pt;}
.w1f{width:91.516000pt;}
.w20{width:91.520000pt;}
.w24{width:91.538667pt;}
.w21{width:91.540000pt;}
.w22{width:91.546667pt;}
.w1d{width:91.552000pt;}
.w1e{width:91.560000pt;}
.w32{width:91.698667pt;}
.w33{width:95.986667pt;}
.wd{width:96.338667pt;}
.w16{width:96.666667pt;}
.w13{width:96.672000pt;}
.w14{width:96.680000pt;}
.w10{width:97.298667pt;}
.w2c{width:98.592000pt;}
.wf{width:100.666667pt;}
.w17{width:101.618667pt;}
.we{width:103.986667pt;}
.w15{width:106.386667pt;}
.w11{width:106.392000pt;}
.w12{width:106.400000pt;}
.w2a{width:106.712000pt;}
.w34{width:108.026667pt;}
.w2e{width:114.098667pt;}
.w2b{width:114.898667pt;}
.w2f{width:125.946667pt;}
.w19{width:131.986667pt;}
.w1a{width:132.018667pt;}
.w9{width:137.306667pt;}
.wc{width:144.026667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.wb{width:161.618667pt;}
.w30{width:263.693333pt;}
.w29{width:309.493333pt;}
.w28{width:320.218667pt;}
.w26{width:455.120000pt;}
.w37{width:456.093333pt;}
.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;}
.w40{width:888.160000pt;}
.w35{width:1058.400000pt;}
.w36{width:1058.666667pt;}
.x0{left:0.000000pt;}
.x75{left:3.780000pt;}
.x2{left:7.192000pt;}
.x59{left:8.146667pt;}
.x14{left:9.592000pt;}
.x74{left:10.546667pt;}
.x50{left:12.186667pt;}
.x43{left:13.440000pt;}
.x6f{left:14.720000pt;}
.x2d{left:15.680000pt;}
.x72{left:16.640000pt;}
.x62{left:17.746667pt;}
.x1a{left:18.893333pt;}
.x30{left:20.506667pt;}
.x73{left:21.920000pt;}
.x32{left:22.920000pt;}
.x33{left:24.026667pt;}
.x44{left:25.426667pt;}
.x34{left:26.746667pt;}
.x2e{left:27.693333pt;}
.x2a{left:28.986667pt;}
.x31{left:30.746667pt;}
.x67{left:31.866667pt;}
.x24{left:33.120000pt;}
.x3f{left:35.040000pt;}
.x69{left:36.000000pt;}
.x5d{left:37.280000pt;}
.x71{left:38.906667pt;}
.x28{left:40.160000pt;}
.x68{left:41.146667pt;}
.x2b{left:42.560000pt;}
.x22{left:43.680000pt;}
.x5f{left:45.466667pt;}
.x66{left:48.000000pt;}
.x60{left:49.306667pt;}
.x5e{left:50.880000pt;}
.x21{left:52.960000pt;}
.x3b{left:53.946667pt;}
.x3d{left:56.666667pt;}
.x3c{left:57.906667pt;}
.x3a{left:59.386667pt;}
.x39{left:60.626667pt;}
.x61{left:62.906667pt;}
.x23{left:64.000000pt;}
.x3{left:65.746667pt;}
.x13{left:72.680000pt;}
.x6b{left:77.920000pt;}
.x19{left:82.760000pt;}
.x16{left:84.040000pt;}
.x10{left:89.952000pt;}
.x55{left:93.466667pt;}
.x1{left:96.040000pt;}
.xc{left:98.112000pt;}
.xe{left:100.352000pt;}
.x54{left:107.066667pt;}
.x26{left:108.032000pt;}
.x51{left:109.466667pt;}
.x45{left:112.832000pt;}
.x11{left:117.952000pt;}
.x1c{left:119.392000pt;}
.x1d{left:120.352000pt;}
.x6{left:122.592000pt;}
.x53{left:123.866667pt;}
.x8{left:125.152000pt;}
.xa{left:126.112000pt;}
.x4e{left:135.386667pt;}
.x56{left:136.346667pt;}
.x7{left:137.306667pt;}
.x4d{left:138.906667pt;}
.x48{left:141.800000pt;}
.x47{left:144.026667pt;}
.x4f{left:156.186667pt;}
.x52{left:157.946667pt;}
.x4c{left:165.626667pt;}
.x4{left:169.000000pt;}
.xd{left:187.386667pt;}
.x49{left:196.840000pt;}
.x35{left:197.800000pt;}
.x58{left:202.760000pt;}
.x4a{left:214.293333pt;}
.x6a{left:229.146667pt;}
.x20{left:257.666667pt;}
.x15{left:269.186667pt;}
.x17{left:275.866667pt;}
.x3e{left:279.266667pt;}
.x36{left:299.426667pt;}
.x5a{left:317.666667pt;}
.x18{left:330.293333pt;}
.xb{left:342.466667pt;}
.x63{left:359.426667pt;}
.xf{left:367.293333pt;}
.x37{left:371.466667pt;}
.x5{left:396.893333pt;}
.x9{left:402.013333pt;}
.x57{left:416.266667pt;}
.x12{left:436.253333pt;}
.x64{left:441.866667pt;}
.x40{left:462.346667pt;}
.x5b{left:485.706667pt;}
.x38{left:503.466667pt;}
.x27{left:532.613333pt;}
.x2c{left:533.573333pt;}
.x1b{left:551.336000pt;}
.x41{left:553.893333pt;}
.x1f{left:573.733333pt;}
.x5c{left:599.813333pt;}
.x65{left:629.573333pt;}
.x29{left:636.613333pt;}
.x2f{left:639.973333pt;}
.x42{left:645.413333pt;}
.x4b{left:651.973333pt;}
.x6c{left:662.826667pt;}
.x25{left:708.160000pt;}
.x1e{left:710.400000pt;}
.x6d{left:726.373333pt;}
.x46{left:737.280000pt;}
.x6e{left:798.213333pt;}
.x76{left:815.976000pt;}
.x70{left:888.133333pt;}
}




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