
    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_6ac327e95b7b5864f039fbed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941895;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_afd5547fd7c66a8cbed2c4f4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_becefe400ee20cf2dc61f41b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_82767e744d561d2d6f8f7e78.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b370b300e60a5448dbd2931d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_857b876fbb05b0f7d8e6b6ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b72981d3c6b6965386c12441.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_c7d7ed47b7a73d701847e2e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_636b037f159a8bbe7754a26a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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_61c5c5ebffb55d3cba5d6ee2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_94993add500cbf8289417fcb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.118652;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);}
.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;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.443400px;}
.ls10{letter-spacing:-0.432000px;}
.ls2a{letter-spacing:-0.306000px;}
.ls22{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.126600px;}
.ls21{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.075000px;}
.ls7{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.236400px;}
.ls11{letter-spacing:0.276600px;}
.ls4{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.613440px;}
.ls12{letter-spacing:0.864000px;}
.ls1d{letter-spacing:1.584000px;}
.ls1c{letter-spacing:5.904000px;}
.ls15{letter-spacing:6.624000px;}
.ls18{letter-spacing:8.064000px;}
.ls16{letter-spacing:10.944000px;}
.ls17{letter-spacing:11.784000px;}
.ls5{letter-spacing:15.264000px;}
.ls14{letter-spacing:18.144000px;}
.ls1b{letter-spacing:21.744000px;}
.ls1e{letter-spacing:22.464000px;}
.ls19{letter-spacing:28.224000px;}
.ls13{letter-spacing:54.864000px;}
.ls1a{letter-spacing:192.360000px;}
.ls1f{letter-spacing:192.384000px;}
.ls25{letter-spacing:196.104000px;}
.ls2{letter-spacing:198.056640px;}
.ls23{letter-spacing:235.560000px;}
.ls26{letter-spacing:241.256640px;}
.lsb{letter-spacing:849.836640px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws11{word-spacing:-20.520000px;}
.ws5{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.800000px;}
.wsc{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.512000px;}
.ws6{word-spacing:-19.440000px;}
.wsf{word-spacing:-16.506480px;}
.wsd{word-spacing:-14.595960px;}
.ws9{word-spacing:-14.555760px;}
.ws7{word-spacing:-14.394360px;}
.ws13{word-spacing:-14.319360px;}
.ws1{word-spacing:-14.192760px;}
.wsa{word-spacing:-13.229520px;}
.ws14{word-spacing:-12.276000px;}
.ws16{word-spacing:-12.204000px;}
.ws12{word-spacing:-12.186000px;}
.ws15{word-spacing:-11.898000px;}
.ws0{word-spacing:0.000000px;}
._1f{margin-left:-18.708000px;}
._1d{margin-left:-17.244000px;}
._19{margin-left:-16.152000px;}
._1b{margin-left:-15.072000px;}
._17{margin-left:-13.010880px;}
._1a{margin-left:-11.988960px;}
._1e{margin-left:-10.065120px;}
._18{margin-left:-8.160000px;}
._1c{margin-left:-6.216000px;}
._23{margin-left:-5.212800px;}
._5{margin-left:-4.190400px;}
._4{margin-left:-2.969280px;}
._2{margin-left:-1.149120px;}
._0{width:1.149120px;}
._1{width:2.431920px;}
._7{width:4.176000px;}
._e{width:5.328000px;}
._a{width:6.552000px;}
._9{width:7.608000px;}
._d{width:9.218880px;}
._25{width:10.293120px;}
._c{width:11.376000px;}
._20{width:12.744000px;}
._15{width:14.400000px;}
._14{width:15.768000px;}
._2c{width:17.136000px;}
._2b{width:18.144000px;}
._11{width:21.744000px;}
._12{width:22.752000px;}
._2e{width:23.760000px;}
._2a{width:25.704000px;}
._2f{width:26.928000px;}
._33{width:27.933120px;}
._6{width:29.378880px;}
._3{width:30.729600px;}
._13{width:31.896000px;}
._8{width:33.226080px;}
._10{width:34.848000px;}
._f{width:35.928000px;}
._22{width:37.512000px;}
._21{width:39.168000px;}
._34{width:40.608000px;}
._44{width:41.616000px;}
._3e{width:42.912000px;}
._37{width:44.100000px;}
._36{width:45.144000px;}
._32{width:46.920000px;}
._38{width:48.221760px;}
._31{width:49.389120px;}
._30{width:50.544000px;}
._43{width:51.770880px;}
._27{width:53.712000px;}
._26{width:54.792000px;}
._42{width:56.390880px;}
._49{width:57.674880px;}
._3c{width:58.677120px;}
._3b{width:59.976000px;}
._2d{width:62.904000px;}
._3d{width:64.584000px;}
._47{width:66.456000px;}
._3a{width:69.120000px;}
._39{width:70.344000px;}
._41{width:75.591360px;}
._40{width:76.752000px;}
._28{width:148.032000px;}
._29{width:149.112000px;}
._35{width:152.040000px;}
._3f{width:172.344000px;}
._b{width:192.360000px;}
._48{width:198.056640px;}
._45{width:235.560000px;}
._46{width:636.084000px;}
._16{width:844.140000px;}
._24{width:849.836640px;}
.fc9{color:transparent;}
.fc8{color:rgb(192,0,0);}
.fc7{color:rgb(0,176,240);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(0,176,80);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2e2{bottom:3.600000px;}
.y2ec{bottom:3.765000px;}
.y2a0{bottom:3.780000px;}
.y2ab{bottom:4.140000px;}
.y29b{bottom:4.515000px;}
.y2ac{bottom:4.680000px;}
.y174{bottom:5.760000px;}
.y17a{bottom:5.790000px;}
.y16b{bottom:5.940000px;}
.y2ef{bottom:6.105000px;}
.y180{bottom:6.120000px;}
.y181{bottom:6.300000px;}
.y2d9{bottom:6.855000px;}
.y2af{bottom:7.560000px;}
.y2c7{bottom:8.460000px;}
.y2c4{bottom:9.180000px;}
.y2ae{bottom:9.900000px;}
.y2d0{bottom:10.800000px;}
.y2b4{bottom:10.980000px;}
.y2d3{bottom:11.700000px;}
.y29e{bottom:12.060000px;}
.y17c{bottom:12.240000px;}
.y2b2{bottom:13.320000px;}
.y2b6{bottom:14.385000px;}
.y2bf{bottom:14.400000px;}
.y2d6{bottom:15.120000px;}
.y177{bottom:15.660000px;}
.y1e1{bottom:15.825000px;}
.y170{bottom:15.840000px;}
.y2ce{bottom:15.870000px;}
.y1e5{bottom:16.005000px;}
.y2d5{bottom:16.020000px;}
.y2c5{bottom:16.380000px;}
.y2b3{bottom:16.740000px;}
.y2cd{bottom:17.280000px;}
.y2cf{bottom:17.850000px;}
.y29d{bottom:18.180000px;}
.y2f3{bottom:18.345000px;}
.y2e6{bottom:18.720000px;}
.y2f1{bottom:20.145000px;}
.y29f{bottom:20.160000px;}
.y2e1{bottom:20.175000px;}
.y2eb{bottom:20.190000px;}
.y2bd{bottom:20.700000px;}
.y2cb{bottom:20.880000px;}
.y2ba{bottom:21.225000px;}
.y2d2{bottom:21.420000px;}
.y2a7{bottom:21.600000px;}
.y2ee{bottom:22.665000px;}
.y2a9{bottom:23.220000px;}
.y2d7{bottom:23.400000px;}
.y299{bottom:23.580000px;}
.y172{bottom:25.560000px;}
.y16e{bottom:25.740000px;}
.y2c6{bottom:26.640000px;}
.y2c3{bottom:27.360000px;}
.y2cc{bottom:29.520000px;}
.y2b7{bottom:30.225000px;}
.y2f2{bottom:34.725000px;}
.y2e5{bottom:35.280000px;}
.y176{bottom:35.460000px;}
.y16f{bottom:35.640000px;}
.y2bc{bottom:36.180000px;}
.y2ca{bottom:36.540000px;}
.y2b9{bottom:37.470000px;}
.y2db{bottom:39.960000px;}
.y2e9{bottom:40.665000px;}
.y173{bottom:45.360000px;}
.y16d{bottom:45.540000px;}
.y2e8{bottom:48.585000px;}
.y2e4{bottom:51.660000px;}
.y2dd{bottom:51.675000px;}
.y2df{bottom:53.100000px;}
.y2b1{bottom:53.460000px;}
.y1f{bottom:57.456000px;}
.y2e3{bottom:61.020000px;}
.y2c1{bottom:68.940000px;}
.y1e{bottom:76.716000px;}
.y2c8{bottom:81.000000px;}
.y159{bottom:135.396000px;}
.y7b{bottom:139.356000px;}
.y9d{bottom:140.256000px;}
.y1e6{bottom:143.136000px;}
.y216{bottom:144.036000px;}
.y215{bottom:144.216000px;}
.y10b{bottom:144.396000px;}
.yd2{bottom:145.656000px;}
.y297{bottom:147.636000px;}
.y218{bottom:148.176000px;}
.y2e7{bottom:150.525000px;}
.y160{bottom:151.050000px;}
.y169{bottom:151.950000px;}
.y194{bottom:152.310000px;}
.y22a{bottom:152.490000px;}
.y19d{bottom:153.570000px;}
.y143{bottom:154.650000px;}
.y15c{bottom:155.550000px;}
.y1e4{bottom:155.565000px;}
.yec{bottom:155.910000px;}
.y252{bottom:156.450000px;}
.y1d{bottom:157.170000px;}
.y1d4{bottom:158.070000px;}
.y277{bottom:160.230000px;}
.y20c{bottom:160.410000px;}
.y3c{bottom:161.310000px;}
.yba{bottom:166.350000px;}
.y9c{bottom:167.070000px;}
.y2a2{bottom:168.870000px;}
.y2a5{bottom:168.885000px;}
.y1ef{bottom:173.010000px;}
.y7a{bottom:173.730000px;}
.y20d{bottom:174.990000px;}
.y214{bottom:175.170000px;}
.y10a{bottom:175.350000px;}
.y140{bottom:175.530000px;}
.y217{bottom:179.130000px;}
.y122{bottom:180.930000px;}
.y1af{bottom:182.010000px;}
.y1c{bottom:182.190000px;}
.y168{bottom:183.090000px;}
.y193{bottom:183.270000px;}
.y19c{bottom:184.530000px;}
.yd1{bottom:184.710000px;}
.y142{bottom:185.790000px;}
.yeb{bottom:187.050000px;}
.y1d7{bottom:187.230000px;}
.y251{bottom:187.410000px;}
.y296{bottom:187.590000px;}
.y3b{bottom:188.310000px;}
.y23a{bottom:189.030000px;}
.y1d3{bottom:189.210000px;}
.y1e3{bottom:190.125000px;}
.y20b{bottom:191.370000px;}
.y15b{bottom:194.430000px;}
.yb9{bottom:197.310000px;}
.y158{bottom:197.490000px;}
.y2f0{bottom:198.765000px;}
.y276{bottom:203.250000px;}
.y1ee{bottom:204.150000px;}
.y1be{bottom:206.130000px;}
.y213{bottom:206.310000px;}
.y109{bottom:206.490000px;}
.y1b{bottom:207.210000px;}
.y79{bottom:208.110000px;}
.y5a{bottom:210.270000px;}
.y263{bottom:210.450000px;}
.y121{bottom:211.890000px;}
.y13b{bottom:213.150000px;}
.y167{bottom:214.050000px;}
.y192{bottom:214.410000px;}
.y3a{bottom:215.130000px;}
.y141{bottom:216.750000px;}
.yea{bottom:218.010000px;}
.y1d6{bottom:218.190000px;}
.y234{bottom:219.450000px;}
.y1d2{bottom:220.170000px;}
.y20a{bottom:222.510000px;}
.yd0{bottom:223.590000px;}
.y1e2{bottom:224.505000px;}
.y295{bottom:226.470000px;}
.yb8{bottom:228.450000px;}
.y250{bottom:230.430000px;}
.y1a{bottom:232.230000px;}
.y2ed{bottom:232.605000px;}
.y15a{bottom:233.310000px;}
.y275{bottom:234.390000px;}
.y1ed{bottom:235.110000px;}
.y2a4{bottom:235.305000px;}
.y1bd{bottom:237.090000px;}
.y108{bottom:237.450000px;}
.y13f{bottom:237.630000px;}
.y59{bottom:241.230000px;}
.y262{bottom:241.410000px;}
.y39{bottom:242.130000px;}
.y78{bottom:242.490000px;}
.y120{bottom:243.030000px;}
.y1ae{bottom:244.110000px;}
.y13a{bottom:244.290000px;}
.y166{bottom:245.190000px;}
.y191{bottom:245.370000px;}
.y19b{bottom:247.890000px;}
.ye9{bottom:249.150000px;}
.y1d5{bottom:249.330000px;}
.y233{bottom:250.410000px;}
.y1d1{bottom:251.310000px;}
.y209{bottom:253.470000px;}
.y19{bottom:257.250000px;}
.y1e0{bottom:259.065000px;}
.yb7{bottom:259.410000px;}
.y157{bottom:259.590000px;}
.ycf{bottom:262.470000px;}
.y239{bottom:263.190000px;}
.y294{bottom:263.550000px;}
.y274{bottom:265.530000px;}
.y1ec{bottom:266.250000px;}
.y1bc{bottom:268.050000px;}
.y107{bottom:268.590000px;}
.y2ea{bottom:268.785000px;}
.y38{bottom:268.950000px;}
.y94{bottom:270.570000px;}
.y58{bottom:272.190000px;}
.y24f{bottom:273.630000px;}
.y11f{bottom:273.990000px;}
.y139{bottom:275.250000px;}
.y165{bottom:276.150000px;}
.y229{bottom:276.330000px;}
.y190{bottom:276.510000px;}
.y77{bottom:276.870000px;}
.y19a{bottom:278.850000px;}
.ye8{bottom:280.110000px;}
.yed{bottom:280.290000px;}
.y232{bottom:281.595000px;}
.y18{bottom:282.315000px;}
.y261{bottom:284.295000px;}
.y208{bottom:284.655000px;}
.yb6{bottom:290.595000px;}
.y1df{bottom:293.475000px;}
.y238{bottom:294.195000px;}
.y37{bottom:295.995000px;}
.y1eb{bottom:297.255000px;}
.y1bb{bottom:299.235000px;}
.y106{bottom:299.595000px;}
.y293{bottom:300.495000px;}
.y13e{bottom:300.855000px;}
.yce{bottom:301.395000px;}
.y2dc{bottom:302.460000px;}
.y2da{bottom:302.475000px;}
.y57{bottom:303.375000px;}
.y24e{bottom:304.635000px;}
.y11e{bottom:305.175000px;}
.y1ad{bottom:306.255000px;}
.y138{bottom:306.435000px;}
.y17{bottom:307.155000px;}
.y1dd{bottom:307.515000px;}
.y18f{bottom:307.695000px;}
.y273{bottom:308.595000px;}
.y93{bottom:309.675000px;}
.ye7{bottom:311.295000px;}
.y76{bottom:311.475000px;}
.y231{bottom:312.555000px;}
.y1d0{bottom:313.455000px;}
.y260{bottom:315.435000px;}
.y207{bottom:315.615000px;}
.yb5{bottom:321.555000px;}
.y36{bottom:322.995000px;}
.y1ea{bottom:328.395000px;}
.y156{bottom:329.475000px;}
.y1ba{bottom:330.195000px;}
.y105{bottom:330.735000px;}
.y13d{bottom:331.995000px;}
.y16{bottom:332.175000px;}
.y56{bottom:334.335000px;}
.y24d{bottom:335.955000px;}
.y11d{bottom:336.135000px;}
.y137{bottom:337.395000px;}
.y292{bottom:337.575000px;}
.y164{bottom:338.295000px;}
.y228{bottom:338.475000px;}
.y1dc{bottom:338.655000px;}
.y18e{bottom:339.915000px;}
.ycd{bottom:340.275000px;}
.y92{bottom:342.075000px;}
.ye6{bottom:342.255000px;}
.y1f3{bottom:342.435000px;}
.y230{bottom:343.695000px;}
.y1cf{bottom:344.415000px;}
.y75{bottom:345.855000px;}
.y25f{bottom:346.575000px;}
.y206{bottom:346.755000px;}
.y35{bottom:349.995000px;}
.y272{bottom:351.435000px;}
.yb4{bottom:352.695000px;}
.y15{bottom:357.195000px;}
.y1e9{bottom:359.355000px;}
.y155{bottom:360.615000px;}
.y1b9{bottom:361.335000px;}
.y104{bottom:361.695000px;}
.y13c{bottom:364.215000px;}
.y55{bottom:365.475000px;}
.y24c{bottom:366.915000px;}
.y11c{bottom:367.275000px;}
.y2e0{bottom:367.800000px;}
.y2de{bottom:367.815000px;}
.y1ac{bottom:368.355000px;}
.y136{bottom:368.535000px;}
.y163{bottom:369.255000px;}
.y1db{bottom:369.615000px;}
.y18d{bottom:370.875000px;}
.ye5{bottom:373.395000px;}
.y1f2{bottom:373.575000px;}
.y291{bottom:374.475000px;}
.y22f{bottom:374.655000px;}
.y1ce{bottom:375.555000px;}
.y91{bottom:376.455000px;}
.y34{bottom:376.635000px;}
.y205{bottom:377.715000px;}
.ycc{bottom:379.155000px;}
.y74{bottom:380.235000px;}
.y14{bottom:382.215000px;}
.y271{bottom:382.575000px;}
.yb3{bottom:383.655000px;}
.y25e{bottom:389.775000px;}
.y1e8{bottom:390.495000px;}
.y154{bottom:391.575000px;}
.y1b8{bottom:392.295000px;}
.y103{bottom:392.835000px;}
.y54{bottom:396.435000px;}
.y11b{bottom:398.235000px;}
.y135{bottom:399.495000px;}
.y162{bottom:400.395000px;}
.y227{bottom:400.575000px;}
.y1da{bottom:400.755000px;}
.y18c{bottom:402.015000px;}
.ye4{bottom:404.355000px;}
.y1f1{bottom:404.535000px;}
.y22e{bottom:405.795000px;}
.y1cd{bottom:406.515000px;}
.y13{bottom:407.235000px;}
.y204{bottom:408.855000px;}
.y24b{bottom:409.755000px;}
.y90{bottom:410.835000px;}
.y290{bottom:411.555000px;}
.y270{bottom:413.715000px;}
.y73{bottom:414.615000px;}
.yb2{bottom:414.795000px;}
.y33{bottom:415.515000px;}
.ycb{bottom:418.035000px;}
.y153{bottom:422.715000px;}
.y1b7{bottom:423.435000px;}
.y102{bottom:423.795000px;}
.y161{bottom:426.855000px;}
.y53{bottom:427.575000px;}
.y11a{bottom:429.375000px;}
.y1ab{bottom:430.455000px;}
.y134{bottom:430.635000px;}
.y226{bottom:431.715000px;}
.y12{bottom:432.255000px;}
.y25d{bottom:432.615000px;}
.y1d9{bottom:432.975000px;}
.y18b{bottom:433.155000px;}
.y2d8{bottom:434.400000px;}
.y2d1{bottom:434.415000px;}
.y1e7{bottom:435.315000px;}
.ye3{bottom:435.495000px;}
.y1f0{bottom:435.675000px;}
.y22d{bottom:436.935000px;}
.y1cc{bottom:437.655000px;}
.y17f{bottom:438.555000px;}
.y203{bottom:439.815000px;}
.y24a{bottom:440.895000px;}
.y237{bottom:442.695000px;}
.y8f{bottom:445.395000px;}
.yb1{bottom:445.755000px;}
.y28f{bottom:448.455000px;}
.y72{bottom:448.995000px;}
.y152{bottom:453.675000px;}
.y1b6{bottom:454.395000px;}
.y32{bottom:454.575000px;}
.y101{bottom:454.935000px;}
.y26f{bottom:456.735000px;}
.yca{bottom:457.095000px;}
.y11{bottom:457.275000px;}
.y52{bottom:458.535000px;}
.y17e{bottom:459.795000px;}
.y119{bottom:460.335000px;}
.y133{bottom:461.595000px;}
.y225{bottom:462.675000px;}
.y18a{bottom:464.115000px;}
.ye2{bottom:466.455000px;}
.y199{bottom:466.635000px;}
.y22c{bottom:467.895000px;}
.y1cb{bottom:468.615000px;}
.y202{bottom:470.955000px;}
.y236{bottom:473.655000px;}
.y25c{bottom:475.635000px;}
.y2d4{bottom:475.995000px;}
.yb0{bottom:476.895000px;}
.y8e{bottom:479.775000px;}
.y10{bottom:482.115000px;}
.y71{bottom:483.375000px;}
.y249{bottom:483.915000px;}
.y151{bottom:484.815000px;}
.y1b5{bottom:485.535000px;}
.y100{bottom:485.895000px;}
.y26e{bottom:487.875000px;}
.y22b{bottom:488.775000px;}
.y51{bottom:489.675000px;}
.y31{bottom:491.475000px;}
.y1aa{bottom:492.555000px;}
.y132{bottom:492.735000px;}
.y17d{bottom:493.275000px;}
.y224{bottom:493.815000px;}
.y1d8{bottom:495.075000px;}
.yc9{bottom:495.975000px;}
.y189{bottom:496.335000px;}
.ye1{bottom:497.595000px;}
.y198{bottom:497.775000px;}
.y1ca{bottom:499.755000px;}
.y201{bottom:501.915000px;}
.y25b{bottom:506.775000px;}
.yf{bottom:507.135000px;}
.yaf{bottom:507.855000px;}
.y8d{bottom:514.155000px;}
.y248{bottom:514.875000px;}
.y150{bottom:515.775000px;}
.y1b4{bottom:516.495000px;}
.yff{bottom:517.035000px;}
.y70{bottom:517.935000px;}
.y50{bottom:520.635000px;}
.y118{bottom:522.435000px;}
.y131{bottom:523.695000px;}
.y223{bottom:524.775000px;}
.y17b{bottom:526.575000px;}
.y188{bottom:527.295000px;}
.y30{bottom:528.555000px;}
.y197{bottom:528.735000px;}
.y1c9{bottom:530.715000px;}
.ye{bottom:532.155000px;}
.y200{bottom:533.055000px;}
.yc8{bottom:534.855000px;}
.y25a{bottom:537.915000px;}
.yae{bottom:538.995000px;}
.y247{bottom:546.015000px;}
.y14f{bottom:546.915000px;}
.y1b3{bottom:547.635000px;}
.yfe{bottom:547.995000px;}
.y8c{bottom:548.535000px;}
.y280{bottom:550.155000px;}
.y4f{bottom:551.775000px;}
.y6f{bottom:552.315000px;}
.y2a3{bottom:553.200000px;}
.y2a1{bottom:553.215000px;}
.y117{bottom:554.835000px;}
.y222{bottom:555.915000px;}
.yd{bottom:557.175000px;}
.y187{bottom:558.435000px;}
.y28e{bottom:559.515000px;}
.ye0{bottom:559.695000px;}
.y196{bottom:559.875000px;}
.y179{bottom:560.055000px;}
.y1c8{bottom:561.855000px;}
.y1ff{bottom:564.015000px;}
.y2f{bottom:565.485000px;}
.yad{bottom:569.985000px;}
.yc7{bottom:573.765000px;}
.y14e{bottom:577.905000px;}
.y1b2{bottom:578.625000px;}
.yfd{bottom:579.165000px;}
.y178{bottom:580.605000px;}
.y259{bottom:580.965000px;}
.yc{bottom:582.225000px;}
.y4e{bottom:582.765000px;}
.y8b{bottom:582.945000px;}
.y2be{bottom:584.565000px;}
.y246{bottom:584.925000px;}
.y116{bottom:585.825000px;}
.y6e{bottom:586.725000px;}
.y221{bottom:586.905000px;}
.y186{bottom:589.425000px;}
.ydf{bottom:590.685000px;}
.y195{bottom:590.865000px;}
.y1c7{bottom:592.845000px;}
.y26d{bottom:593.025000px;}
.y27f{bottom:593.205000px;}
.y1fe{bottom:595.185000px;}
.y28d{bottom:596.445000px;}
.yac{bottom:600.945000px;}
.y2e{bottom:602.565000px;}
.yb{bottom:607.245000px;}
.y2f5{bottom:607.965000px;}
.y14d{bottom:609.045000px;}
.y212{bottom:609.765000px;}
.yfc{bottom:610.125000px;}
.y245{bottom:611.745000px;}
.y258{bottom:611.925000px;}
.yc6{bottom:612.645000px;}
.y4d{bottom:613.905000px;}
.y15f{bottom:616.785000px;}
.y115{bottom:616.965000px;}
.y8a{bottom:617.325000px;}
.y130{bottom:618.045000px;}
.y185{bottom:620.565000px;}
.y6d{bottom:621.105000px;}
.yde{bottom:621.645000px;}
.y184{bottom:621.825000px;}
.y1c6{bottom:623.985000px;}
.y1fd{bottom:626.145000px;}
.y2c9{bottom:629.025000px;}
.yab{bottom:632.085000px;}
.ya{bottom:632.265000px;}
.y28c{bottom:633.525000px;}
.y26c{bottom:636.045000px;}
.y27e{bottom:636.405000px;}
.y2d{bottom:639.465000px;}
.y14c{bottom:640.005000px;}
.y211{bottom:640.725000px;}
.y175{bottom:640.905000px;}
.yfb{bottom:641.265000px;}
.y257{bottom:643.065000px;}
.y4c{bottom:644.865000px;}
.y2f4{bottom:646.845000px;}
.y114{bottom:647.925000px;}
.y220{bottom:649.005000px;}
.y12f{bottom:649.185000px;}
.yc5{bottom:651.525000px;}
.y89{bottom:651.705000px;}
.ydd{bottom:652.785000px;}
.y183{bottom:652.965000px;}
.y1c5{bottom:654.945000px;}
.y6c{bottom:655.485000px;}
.y1fc{bottom:657.285000px;}
.yaa{bottom:663.045000px;}
.y28b{bottom:670.425000px;}
.y14b{bottom:671.145000px;}
.y210{bottom:671.865000px;}
.yfa{bottom:672.225000px;}
.y9{bottom:672.405000px;}
.y27d{bottom:673.305000px;}
.y4b{bottom:676.005000px;}
.y2c{bottom:676.545000px;}
.y26b{bottom:679.065000px;}
.y113{bottom:680.145000px;}
.y2c0{bottom:680.505000px;}
.ydc{bottom:683.745000px;}
.y182{bottom:683.925000px;}
.y244{bottom:685.905000px;}
.y1c4{bottom:686.085000px;}
.y88{bottom:686.265000px;}
.y1fb{bottom:688.245000px;}
.y6b{bottom:689.865000px;}
.yc4{bottom:690.585000px;}
.y1a9{bottom:690.945000px;}
.ya9{bottom:694.185000px;}
.y171{bottom:701.205000px;}
.y14a{bottom:702.105000px;}
.y20f{bottom:702.825000px;}
.yf9{bottom:703.365000px;}
.y4a{bottom:706.965000px;}
.y235{bottom:707.145000px;}
.y28a{bottom:707.505000px;}
.y26a{bottom:710.025000px;}
.y21f{bottom:711.105000px;}
.y112{bottom:711.285000px;}
.y15e{bottom:712.365000px;}
.y2b{bottom:713.625000px;}
.ydb{bottom:714.885000px;}
.y19e{bottom:715.065000px;}
.y27c{bottom:716.505000px;}
.y1c3{bottom:717.045000px;}
.y8{bottom:717.765000px;}
.y1fa{bottom:718.845000px;}
.y87{bottom:720.645000px;}
.y2c2{bottom:722.085000px;}
.y6a{bottom:724.245000px;}
.ya8{bottom:725.145000px;}
.y256{bottom:728.925000px;}
.y243{bottom:729.105000px;}
.yc3{bottom:729.465000px;}
.y1a8{bottom:733.965000px;}
.yf8{bottom:734.325000px;}
.y49{bottom:738.105000px;}
.y149{bottom:740.985000px;}
.y269{bottom:741.165000px;}
.y111{bottom:742.245000px;}
.y289{bottom:744.405000px;}
.y15d{bottom:744.585000px;}
.yda{bottom:745.845000px;}
.y1de{bottom:746.025000px;}
.y27b{bottom:747.465000px;}
.y1c2{bottom:748.185000px;}
.y1f9{bottom:748.365000px;}
.y2a{bottom:750.525000px;}
.y86{bottom:755.025000px;}
.ya7{bottom:756.285000px;}
.y69{bottom:758.805000px;}
.y242{bottom:760.245000px;}
.y16c{bottom:761.325000px;}
.y7{bottom:763.485000px;}
.y2bb{bottom:764.385000px;}
.y2b5{bottom:764.400000px;}
.y1a7{bottom:764.925000px;}
.yf7{bottom:765.465000px;}
.yc2{bottom:768.345000px;}
.y48{bottom:769.065000px;}
.y148{bottom:772.125000px;}
.y21e{bottom:773.205000px;}
.y12e{bottom:773.385000px;}
.y110{bottom:774.465000px;}
.yd9{bottom:776.985000px;}
.y1c0{bottom:777.165000px;}
.y1c1{bottom:778.785000px;}
.y1f8{bottom:779.325000px;}
.y288{bottom:781.485000px;}
.y268{bottom:784.005000px;}
.ya6{bottom:787.245000px;}
.y29{bottom:787.605000px;}
.y85{bottom:789.405000px;}
.y27a{bottom:790.485000px;}
.y68{bottom:793.185000px;}
.y1a6{bottom:796.065000px;}
.yf6{bottom:796.425000px;}
.y47{bottom:800.205000px;}
.y147{bottom:803.085000px;}
.y241{bottom:803.265000px;}
.y12d{bottom:804.345000px;}
.y10f{bottom:805.605000px;}
.yc1{bottom:807.225000px;}
.yd8{bottom:807.945000px;}
.y1bf{bottom:808.125000px;}
.y1f7{bottom:810.465000px;}
.y6{bottom:811.365000px;}
.y267{bottom:815.325000px;}
.y2b8{bottom:815.700000px;}
.ya5{bottom:818.385000px;}
.y16a{bottom:821.625000px;}
.y84{bottom:823.785000px;}
.y28{bottom:824.505000px;}
.y20e{bottom:827.025000px;}
.y67{bottom:827.565000px;}
.y46{bottom:831.165000px;}
.y146{bottom:834.225000px;}
.y21d{bottom:835.305000px;}
.y12c{bottom:835.485000px;}
.y10e{bottom:836.565000px;}
.yd7{bottom:839.085000px;}
.y1a5{bottom:839.265000px;}
.y1f6{bottom:841.425000px;}
.yc0{bottom:846.105000px;}
.y266{bottom:846.285000px;}
.y5{bottom:847.005000px;}
.ya4{bottom:849.390000px;}
.y287{bottom:855.510000px;}
.y83{bottom:858.210000px;}
.yf5{bottom:858.570000px;}
.y27{bottom:861.630000px;}
.y66{bottom:861.990000px;}
.y45{bottom:862.350000px;}
.y279{bottom:864.690000px;}
.y12b{bottom:866.490000px;}
.y2a6{bottom:868.110000px;}
.y10d{bottom:869.010000px;}
.yd6{bottom:870.090000px;}
.y1a4{bottom:870.270000px;}
.y1f5{bottom:872.610000px;}
.y255{bottom:877.290000px;}
.y240{bottom:877.470000px;}
.ya3{bottom:880.530000px;}
.ybf{bottom:885.030000px;}
.y82{bottom:885.210000px;}
.yf4{bottom:889.710000px;}
.y4{bottom:891.510000px;}
.y286{bottom:892.410000px;}
.y44{bottom:893.310000px;}
.y65{bottom:896.370000px;}
.y145{bottom:897.450000px;}
.y26{bottom:898.530000px;}
.y12a{bottom:898.710000px;}
.y10c{bottom:899.970000px;}
.yd5{bottom:901.230000px;}
.y1a3{bottom:901.410000px;}
.y1f4{bottom:903.030000px;}
.y9b{bottom:906.630000px;}
.y23f{bottom:908.430000px;}
.y278{bottom:908.610000px;}
.ya2{bottom:911.490000px;}
.yef{bottom:912.390000px;}
.y81{bottom:919.590000px;}
.y265{bottom:920.310000px;}
.yf3{bottom:920.670000px;}
.ybe{bottom:923.910000px;}
.y43{bottom:924.450000px;}
.y3{bottom:928.590000px;}
.y285{bottom:929.490000px;}
.y129{bottom:929.850000px;}
.y64{bottom:930.750000px;}
.yd4{bottom:932.190000px;}
.y1a2{bottom:932.370000px;}
.y25{bottom:935.610000px;}
.y2b0{bottom:936.510000px;}
.y9a{bottom:937.590000px;}
.y23e{bottom:939.390000px;}
.ya1{bottom:942.630000px;}
.yee{bottom:951.270000px;}
.y264{bottom:951.450000px;}
.yf2{bottom:951.630000px;}
.y80{bottom:953.970000px;}
.y42{bottom:955.410000px;}
.y21c{bottom:959.550000px;}
.y128{bottom:960.810000px;}
.y2ad{bottom:961.530000px;}
.ybd{bottom:962.970000px;}
.yd3{bottom:963.330000px;}
.y1a1{bottom:963.510000px;}
.y63{bottom:965.310000px;}
.y2{bottom:965.490000px;}
.y284{bottom:966.570000px;}
.y24{bottom:972.510000px;}
.ya0{bottom:973.590000px;}
.y99{bottom:980.610000px;}
.y23d{bottom:982.410000px;}
.y254{bottom:982.590000px;}
.y2a8{bottom:986.370000px;}
.y41{bottom:986.550000px;}
.y7f{bottom:988.350000px;}
.yf1{bottom:990.690000px;}
.y127{bottom:991.950000px;}
.y5e{bottom:994.290000px;}
.y1a0{bottom:994.470000px;}
.y1{bottom:998.070000px;}
.y62{bottom:999.690000px;}
.ybc{bottom:1001.850000px;}
.y283{bottom:1003.470000px;}
.y9f{bottom:1004.730000px;}
.y2aa{bottom:1005.450000px;}
.y23{bottom:1009.590000px;}
.y23c{bottom:1013.370000px;}
.y253{bottom:1013.550000px;}
.y40{bottom:1017.510000px;}
.y21b{bottom:1021.650000px;}
.y7e{bottom:1022.730000px;}
.y126{bottom:1022.910000px;}
.y98{bottom:1023.810000px;}
.y144{bottom:1024.170000px;}
.y29c{bottom:1024.530000px;}
.y5d{bottom:1025.430000px;}
.y19f{bottom:1025.610000px;}
.yf0{bottom:1029.570000px;}
.y61{bottom:1034.070000px;}
.y9e{bottom:1035.690000px;}
.y282{bottom:1040.550000px;}
.ybb{bottom:1040.730000px;}
.y23b{bottom:1044.510000px;}
.y22{bottom:1046.490000px;}
.y3f{bottom:1048.650000px;}
.y21a{bottom:1052.790000px;}
.y125{bottom:1055.310000px;}
.y5c{bottom:1056.390000px;}
.y1b1{bottom:1056.570000px;}
.y7d{bottom:1057.290000px;}
.y29a{bottom:1059.795000px;}
.y298{bottom:1059.810000px;}
.y97{bottom:1066.830000px;}
.y60{bottom:1068.450000px;}
.y281{bottom:1077.450000px;}
.y3e{bottom:1079.610000px;}
.y21{bottom:1083.570000px;}
.y7c{bottom:1084.110000px;}
.y124{bottom:1086.270000px;}
.y5b{bottom:1087.530000px;}
.y1b0{bottom:1087.710000px;}
.y219{bottom:1091.850000px;}
.y96{bottom:1097.790000px;}
.y5f{bottom:1112.550000px;}
.y123{bottom:1117.230000px;}
.y3d{bottom:1118.490000px;}
.y95{bottom:1118.670000px;}
.y20{bottom:1120.470000px;}
.h29{height:18.345000px;}
.ha{height:19.800000px;}
.h10{height:19.830000px;}
.h13{height:20.505000px;}
.h2a{height:24.105000px;}
.h3a{height:30.630000px;}
.h2d{height:30.945000px;}
.h12{height:32.565000px;}
.h11{height:32.745000px;}
.h15{height:32.925000px;}
.h50{height:32.931000px;}
.h51{height:32.940000px;}
.h17{height:32.961000px;}
.h4c{height:32.962500px;}
.h1a{height:33.105000px;}
.h4f{height:35.445000px;}
.h4d{height:35.451000px;}
.h4e{height:35.460000px;}
.h2c{height:35.805000px;}
.h27{height:37.425000px;}
.h1f{height:38.325000px;}
.h1d{height:38.331000px;}
.h1e{height:38.340000px;}
.h3e{height:39.405000px;}
.h3f{height:39.415500px;}
.h40{height:39.420000px;}
.h36{height:40.860000px;}
.h3d{height:41.025000px;}
.h21{height:41.238281px;}
.h44{height:41.238290px;}
.h2f{height:41.238294px;}
.h42{height:41.238297px;}
.h3c{height:41.238299px;}
.h4b{height:41.238302px;}
.h35{height:41.580000px;}
.h39{height:43.740000px;}
.h20{height:44.534180px;}
.h28{height:45.637031px;}
.h52{height:47.505000px;}
.h2{height:48.386250px;}
.h26{height:48.386284px;}
.h23{height:48.386290px;}
.h33{height:48.386295px;}
.h1b{height:50.312812px;}
.h31{height:50.400000px;}
.h38{height:50.760000px;}
.h30{height:51.681000px;}
.h5{height:52.253437px;}
.h1c{height:52.785000px;}
.h18{height:54.386719px;}
.h19{height:54.984375px;}
.h16{height:59.378906px;}
.he{height:59.395500px;}
.hd{height:59.400000px;}
.hf{height:59.575500px;}
.hc{height:59.580000px;}
.hb{height:62.327813px;}
.h14{height:64.371094px;}
.h49{height:64.425000px;}
.h8{height:64.546875px;}
.h9{height:65.144531px;}
.h47{height:65.865000px;}
.h45{height:65.875500px;}
.h46{height:65.880000px;}
.h2b{height:67.665000px;}
.h4{height:69.473320px;}
.h6{height:75.093750px;}
.h7{height:78.973945px;}
.h3b{height:82.605000px;}
.h34{height:83.160000px;}
.h37{height:95.220000px;}
.h3{height:99.874688px;}
.h2e{height:102.981000px;}
.h48{height:131.205000px;}
.h41{height:131.215500px;}
.h43{height:131.220000px;}
.h4a{height:151.215000px;}
.h25{height:155.685000px;}
.h32{height:179.100000px;}
.h22{height:470.580000px;}
.h24{height:470.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:39.240000px;}
.wa{width:41.755500px;}
.w6{width:41.760000px;}
.w8{width:41.781000px;}
.wb{width:41.782500px;}
.w1a{width:52.236000px;}
.w1e{width:52.770000px;}
.w1c{width:62.985000px;}
.w19{width:63.000000px;}
.w1b{width:63.165000px;}
.w24{width:67.716000px;}
.w27{width:67.725000px;}
.w1d{width:73.821000px;}
.w20{width:94.851000px;}
.w15{width:98.481000px;}
.w28{width:100.071000px;}
.w29{width:100.080000px;}
.w13{width:106.920000px;}
.w11{width:111.951000px;}
.w21{width:118.101000px;}
.w12{width:118.641000px;}
.w16{width:124.005000px;}
.w14{width:127.116000px;}
.w23{width:147.996000px;}
.w9{width:169.770000px;}
.wd{width:169.785000px;}
.w5{width:200.955000px;}
.w2a{width:212.055000px;}
.w4{width:212.250000px;}
.w22{width:213.681000px;}
.w10{width:222.495000px;}
.we{width:230.601000px;}
.wf{width:234.030000px;}
.w2{width:243.435000px;}
.w7{width:264.990000px;}
.wc{width:265.005000px;}
.w17{width:306.960000px;}
.w18{width:306.975000px;}
.w3{width:307.695000px;}
.w2b{width:312.855000px;}
.w25{width:312.861000px;}
.w2c{width:312.870000px;}
.w26{width:435.165000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:8.280000px;}
.x38{left:9.360000px;}
.x71{left:11.151000px;}
.x3f{left:12.225000px;}
.x28{left:13.356000px;}
.x3a{left:15.315000px;}
.x2a{left:16.740000px;}
.x57{left:18.360000px;}
.x5f{left:19.470000px;}
.x32{left:20.880000px;}
.x3c{left:21.960000px;}
.x63{left:24.300000px;}
.x64{left:26.310000px;}
.x2f{left:28.080000px;}
.x67{left:29.685000px;}
.x3d{left:31.140000px;}
.x2b{left:32.940000px;}
.x6b{left:35.130000px;}
.x2e{left:36.540000px;}
.x65{left:38.730000px;}
.x34{left:39.780000px;}
.x68{left:41.070000px;}
.x35{left:43.056000px;}
.x3e{left:46.620000px;}
.x6c{left:49.170000px;}
.x27{left:52.056000px;}
.x39{left:54.000000px;}
.x31{left:55.476000px;}
.x41{left:57.240000px;}
.x43{left:58.716000px;}
.x36{left:61.596000px;}
.x45{left:64.656000px;}
.x6a{left:65.865000px;}
.x3b{left:72.030000px;}
.x42{left:73.650000px;}
.x2c{left:75.780000px;}
.x75{left:79.770000px;}
.x66{left:81.345000px;}
.x26{left:82.620000px;}
.x21{left:84.060000px;}
.x33{left:87.480000px;}
.x69{left:88.545000px;}
.x74{left:89.850000px;}
.x46{left:96.660000px;}
.x22{left:98.130000px;}
.x37{left:101.520000px;}
.x40{left:104.940000px;}
.x6d{left:106.425000px;}
.x44{left:111.960000px;}
.x70{left:119.685000px;}
.x60{left:121.530000px;}
.x72{left:123.465000px;}
.x2{left:127.656000px;}
.x5e{left:129.090000px;}
.x24{left:130.170000px;}
.x48{left:132.510000px;}
.x50{left:135.756000px;}
.x55{left:140.430000px;}
.x12{left:144.216000px;}
.x16{left:153.750000px;}
.x73{left:156.405000px;}
.x3{left:160.410000px;}
.x1f{left:170.130000px;}
.xf{left:180.750000px;}
.x61{left:200.370000px;}
.x1d{left:207.750000px;}
.x51{left:211.890000px;}
.x6f{left:214.275000px;}
.x4b{left:217.305000px;}
.x62{left:231.885000px;}
.x1e{left:234.750000px;}
.x4{left:258.510000px;}
.x1b{left:259.950000px;}
.x29{left:285.735000px;}
.x76{left:301.935000px;}
.x23{left:328.215000px;}
.x49{left:335.955000px;}
.x56{left:350.715000px;}
.xb{left:353.235000px;}
.x6{left:372.315000px;}
.xc{left:381.315000px;}
.x19{left:393.195000px;}
.x4d{left:395.535000px;}
.x1a{left:413.355000px;}
.x4e{left:415.335000px;}
.x11{left:416.415000px;}
.x6e{left:420.015000px;}
.x5{left:425.415000px;}
.x77{left:429.915000px;}
.x1{left:432.075000px;}
.x52{left:434.595000px;}
.x14{left:436.035000px;}
.x13{left:438.015000px;}
.xe{left:440.535000px;}
.xd{left:442.515000px;}
.xa{left:446.505000px;}
.x10{left:454.425000px;}
.x20{left:458.385000px;}
.x1c{left:465.405000px;}
.x58{left:467.580000px;}
.x7{left:508.245000px;}
.x8{left:524.805000px;}
.x59{left:531.480000px;}
.x17{left:552.525000px;}
.x4a{left:570.000000px;}
.x4f{left:573.405000px;}
.x18{left:591.405000px;}
.x2d{left:594.120000px;}
.x5a{left:595.200000px;}
.x15{left:605.625000px;}
.x25{left:636.630000px;}
.x53{left:651.570000px;}
.x4c{left:668.490000px;}
.x5b{left:669.750000px;}
.x54{left:685.410000px;}
.x5c{left:733.470000px;}
.x9{left:765.510000px;}
.x5d{left:797.370000px;}
.x30{left:807.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.394133pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls2a{letter-spacing:-0.272000pt;}
.ls22{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.112533pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.066667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.210133pt;}
.ls11{letter-spacing:0.245867pt;}
.ls4{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.545280pt;}
.ls12{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:5.248000pt;}
.ls15{letter-spacing:5.888000pt;}
.ls18{letter-spacing:7.168000pt;}
.ls16{letter-spacing:9.728000pt;}
.ls17{letter-spacing:10.474667pt;}
.ls5{letter-spacing:13.568000pt;}
.ls14{letter-spacing:16.128000pt;}
.ls1b{letter-spacing:19.328000pt;}
.ls1e{letter-spacing:19.968000pt;}
.ls19{letter-spacing:25.088000pt;}
.ls13{letter-spacing:48.768000pt;}
.ls1a{letter-spacing:170.986667pt;}
.ls1f{letter-spacing:171.008000pt;}
.ls25{letter-spacing:174.314667pt;}
.ls2{letter-spacing:176.050347pt;}
.ls23{letter-spacing:209.386667pt;}
.ls26{letter-spacing:214.450347pt;}
.lsb{letter-spacing:755.410347pt;}
.wse{word-spacing:-64.000000pt;}
.ws11{word-spacing:-18.240000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.wsb{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.600000pt;}
.wsc{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.344000pt;}
.ws6{word-spacing:-17.280000pt;}
.wsf{word-spacing:-14.672427pt;}
.wsd{word-spacing:-12.974187pt;}
.ws9{word-spacing:-12.938453pt;}
.ws7{word-spacing:-12.794987pt;}
.ws13{word-spacing:-12.728320pt;}
.ws1{word-spacing:-12.615787pt;}
.wsa{word-spacing:-11.759573pt;}
.ws14{word-spacing:-10.912000pt;}
.ws16{word-spacing:-10.848000pt;}
.ws12{word-spacing:-10.832000pt;}
.ws15{word-spacing:-10.576000pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-16.629333pt;}
._1d{margin-left:-15.328000pt;}
._19{margin-left:-14.357333pt;}
._1b{margin-left:-13.397333pt;}
._17{margin-left:-11.565227pt;}
._1a{margin-left:-10.656853pt;}
._1e{margin-left:-8.946773pt;}
._18{margin-left:-7.253333pt;}
._1c{margin-left:-5.525333pt;}
._23{margin-left:-4.633600pt;}
._5{margin-left:-3.724800pt;}
._4{margin-left:-2.639360pt;}
._2{margin-left:-1.021440pt;}
._0{width:1.021440pt;}
._1{width:2.161707pt;}
._7{width:3.712000pt;}
._e{width:4.736000pt;}
._a{width:5.824000pt;}
._9{width:6.762667pt;}
._d{width:8.194560pt;}
._25{width:9.149440pt;}
._c{width:10.112000pt;}
._20{width:11.328000pt;}
._15{width:12.800000pt;}
._14{width:14.016000pt;}
._2c{width:15.232000pt;}
._2b{width:16.128000pt;}
._11{width:19.328000pt;}
._12{width:20.224000pt;}
._2e{width:21.120000pt;}
._2a{width:22.848000pt;}
._2f{width:23.936000pt;}
._33{width:24.829440pt;}
._6{width:26.114560pt;}
._3{width:27.315200pt;}
._13{width:28.352000pt;}
._8{width:29.534293pt;}
._10{width:30.976000pt;}
._f{width:31.936000pt;}
._22{width:33.344000pt;}
._21{width:34.816000pt;}
._34{width:36.096000pt;}
._44{width:36.992000pt;}
._3e{width:38.144000pt;}
._37{width:39.200000pt;}
._36{width:40.128000pt;}
._32{width:41.706667pt;}
._38{width:42.863787pt;}
._31{width:43.901440pt;}
._30{width:44.928000pt;}
._43{width:46.018560pt;}
._27{width:47.744000pt;}
._26{width:48.704000pt;}
._42{width:50.125227pt;}
._49{width:51.266560pt;}
._3c{width:52.157440pt;}
._3b{width:53.312000pt;}
._2d{width:55.914667pt;}
._3d{width:57.408000pt;}
._47{width:59.072000pt;}
._3a{width:61.440000pt;}
._39{width:62.528000pt;}
._41{width:67.192320pt;}
._40{width:68.224000pt;}
._28{width:131.584000pt;}
._29{width:132.544000pt;}
._35{width:135.146667pt;}
._3f{width:153.194667pt;}
._b{width:170.986667pt;}
._48{width:176.050347pt;}
._45{width:209.386667pt;}
._46{width:565.408000pt;}
._16{width:750.346667pt;}
._24{width:755.410347pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2e2{bottom:3.200000pt;}
.y2ec{bottom:3.346667pt;}
.y2a0{bottom:3.360000pt;}
.y2ab{bottom:3.680000pt;}
.y29b{bottom:4.013333pt;}
.y2ac{bottom:4.160000pt;}
.y174{bottom:5.120000pt;}
.y17a{bottom:5.146667pt;}
.y16b{bottom:5.280000pt;}
.y2ef{bottom:5.426667pt;}
.y180{bottom:5.440000pt;}
.y181{bottom:5.600000pt;}
.y2d9{bottom:6.093333pt;}
.y2af{bottom:6.720000pt;}
.y2c7{bottom:7.520000pt;}
.y2c4{bottom:8.160000pt;}
.y2ae{bottom:8.800000pt;}
.y2d0{bottom:9.600000pt;}
.y2b4{bottom:9.760000pt;}
.y2d3{bottom:10.400000pt;}
.y29e{bottom:10.720000pt;}
.y17c{bottom:10.880000pt;}
.y2b2{bottom:11.840000pt;}
.y2b6{bottom:12.786667pt;}
.y2bf{bottom:12.800000pt;}
.y2d6{bottom:13.440000pt;}
.y177{bottom:13.920000pt;}
.y1e1{bottom:14.066667pt;}
.y170{bottom:14.080000pt;}
.y2ce{bottom:14.106667pt;}
.y1e5{bottom:14.226667pt;}
.y2d5{bottom:14.240000pt;}
.y2c5{bottom:14.560000pt;}
.y2b3{bottom:14.880000pt;}
.y2cd{bottom:15.360000pt;}
.y2cf{bottom:15.866667pt;}
.y29d{bottom:16.160000pt;}
.y2f3{bottom:16.306667pt;}
.y2e6{bottom:16.640000pt;}
.y2f1{bottom:17.906667pt;}
.y29f{bottom:17.920000pt;}
.y2e1{bottom:17.933333pt;}
.y2eb{bottom:17.946667pt;}
.y2bd{bottom:18.400000pt;}
.y2cb{bottom:18.560000pt;}
.y2ba{bottom:18.866667pt;}
.y2d2{bottom:19.040000pt;}
.y2a7{bottom:19.200000pt;}
.y2ee{bottom:20.146667pt;}
.y2a9{bottom:20.640000pt;}
.y2d7{bottom:20.800000pt;}
.y299{bottom:20.960000pt;}
.y172{bottom:22.720000pt;}
.y16e{bottom:22.880000pt;}
.y2c6{bottom:23.680000pt;}
.y2c3{bottom:24.320000pt;}
.y2cc{bottom:26.240000pt;}
.y2b7{bottom:26.866667pt;}
.y2f2{bottom:30.866667pt;}
.y2e5{bottom:31.360000pt;}
.y176{bottom:31.520000pt;}
.y16f{bottom:31.680000pt;}
.y2bc{bottom:32.160000pt;}
.y2ca{bottom:32.480000pt;}
.y2b9{bottom:33.306667pt;}
.y2db{bottom:35.520000pt;}
.y2e9{bottom:36.146667pt;}
.y173{bottom:40.320000pt;}
.y16d{bottom:40.480000pt;}
.y2e8{bottom:43.186667pt;}
.y2e4{bottom:45.920000pt;}
.y2dd{bottom:45.933333pt;}
.y2df{bottom:47.200000pt;}
.y2b1{bottom:47.520000pt;}
.y1f{bottom:51.072000pt;}
.y2e3{bottom:54.240000pt;}
.y2c1{bottom:61.280000pt;}
.y1e{bottom:68.192000pt;}
.y2c8{bottom:72.000000pt;}
.y159{bottom:120.352000pt;}
.y7b{bottom:123.872000pt;}
.y9d{bottom:124.672000pt;}
.y1e6{bottom:127.232000pt;}
.y216{bottom:128.032000pt;}
.y215{bottom:128.192000pt;}
.y10b{bottom:128.352000pt;}
.yd2{bottom:129.472000pt;}
.y297{bottom:131.232000pt;}
.y218{bottom:131.712000pt;}
.y2e7{bottom:133.800000pt;}
.y160{bottom:134.266667pt;}
.y169{bottom:135.066667pt;}
.y194{bottom:135.386667pt;}
.y22a{bottom:135.546667pt;}
.y19d{bottom:136.506667pt;}
.y143{bottom:137.466667pt;}
.y15c{bottom:138.266667pt;}
.y1e4{bottom:138.280000pt;}
.yec{bottom:138.586667pt;}
.y252{bottom:139.066667pt;}
.y1d{bottom:139.706667pt;}
.y1d4{bottom:140.506667pt;}
.y277{bottom:142.426667pt;}
.y20c{bottom:142.586667pt;}
.y3c{bottom:143.386667pt;}
.yba{bottom:147.866667pt;}
.y9c{bottom:148.506667pt;}
.y2a2{bottom:150.106667pt;}
.y2a5{bottom:150.120000pt;}
.y1ef{bottom:153.786667pt;}
.y7a{bottom:154.426667pt;}
.y20d{bottom:155.546667pt;}
.y214{bottom:155.706667pt;}
.y10a{bottom:155.866667pt;}
.y140{bottom:156.026667pt;}
.y217{bottom:159.226667pt;}
.y122{bottom:160.826667pt;}
.y1af{bottom:161.786667pt;}
.y1c{bottom:161.946667pt;}
.y168{bottom:162.746667pt;}
.y193{bottom:162.906667pt;}
.y19c{bottom:164.026667pt;}
.yd1{bottom:164.186667pt;}
.y142{bottom:165.146667pt;}
.yeb{bottom:166.266667pt;}
.y1d7{bottom:166.426667pt;}
.y251{bottom:166.586667pt;}
.y296{bottom:166.746667pt;}
.y3b{bottom:167.386667pt;}
.y23a{bottom:168.026667pt;}
.y1d3{bottom:168.186667pt;}
.y1e3{bottom:169.000000pt;}
.y20b{bottom:170.106667pt;}
.y15b{bottom:172.826667pt;}
.yb9{bottom:175.386667pt;}
.y158{bottom:175.546667pt;}
.y2f0{bottom:176.680000pt;}
.y276{bottom:180.666667pt;}
.y1ee{bottom:181.466667pt;}
.y1be{bottom:183.226667pt;}
.y213{bottom:183.386667pt;}
.y109{bottom:183.546667pt;}
.y1b{bottom:184.186667pt;}
.y79{bottom:184.986667pt;}
.y5a{bottom:186.906667pt;}
.y263{bottom:187.066667pt;}
.y121{bottom:188.346667pt;}
.y13b{bottom:189.466667pt;}
.y167{bottom:190.266667pt;}
.y192{bottom:190.586667pt;}
.y3a{bottom:191.226667pt;}
.y141{bottom:192.666667pt;}
.yea{bottom:193.786667pt;}
.y1d6{bottom:193.946667pt;}
.y234{bottom:195.066667pt;}
.y1d2{bottom:195.706667pt;}
.y20a{bottom:197.786667pt;}
.yd0{bottom:198.746667pt;}
.y1e2{bottom:199.560000pt;}
.y295{bottom:201.306667pt;}
.yb8{bottom:203.066667pt;}
.y250{bottom:204.826667pt;}
.y1a{bottom:206.426667pt;}
.y2ed{bottom:206.760000pt;}
.y15a{bottom:207.386667pt;}
.y275{bottom:208.346667pt;}
.y1ed{bottom:208.986667pt;}
.y2a4{bottom:209.160000pt;}
.y1bd{bottom:210.746667pt;}
.y108{bottom:211.066667pt;}
.y13f{bottom:211.226667pt;}
.y59{bottom:214.426667pt;}
.y262{bottom:214.586667pt;}
.y39{bottom:215.226667pt;}
.y78{bottom:215.546667pt;}
.y120{bottom:216.026667pt;}
.y1ae{bottom:216.986667pt;}
.y13a{bottom:217.146667pt;}
.y166{bottom:217.946667pt;}
.y191{bottom:218.106667pt;}
.y19b{bottom:220.346667pt;}
.ye9{bottom:221.466667pt;}
.y1d5{bottom:221.626667pt;}
.y233{bottom:222.586667pt;}
.y1d1{bottom:223.386667pt;}
.y209{bottom:225.306667pt;}
.y19{bottom:228.666667pt;}
.y1e0{bottom:230.280000pt;}
.yb7{bottom:230.586667pt;}
.y157{bottom:230.746667pt;}
.ycf{bottom:233.306667pt;}
.y239{bottom:233.946667pt;}
.y294{bottom:234.266667pt;}
.y274{bottom:236.026667pt;}
.y1ec{bottom:236.666667pt;}
.y1bc{bottom:238.266667pt;}
.y107{bottom:238.746667pt;}
.y2ea{bottom:238.920000pt;}
.y38{bottom:239.066667pt;}
.y94{bottom:240.506667pt;}
.y58{bottom:241.946667pt;}
.y24f{bottom:243.226667pt;}
.y11f{bottom:243.546667pt;}
.y139{bottom:244.666667pt;}
.y165{bottom:245.466667pt;}
.y229{bottom:245.626667pt;}
.y190{bottom:245.786667pt;}
.y77{bottom:246.106667pt;}
.y19a{bottom:247.866667pt;}
.ye8{bottom:248.986667pt;}
.yed{bottom:249.146667pt;}
.y232{bottom:250.306667pt;}
.y18{bottom:250.946667pt;}
.y261{bottom:252.706667pt;}
.y208{bottom:253.026667pt;}
.yb6{bottom:258.306667pt;}
.y1df{bottom:260.866667pt;}
.y238{bottom:261.506667pt;}
.y37{bottom:263.106667pt;}
.y1eb{bottom:264.226667pt;}
.y1bb{bottom:265.986667pt;}
.y106{bottom:266.306667pt;}
.y293{bottom:267.106667pt;}
.y13e{bottom:267.426667pt;}
.yce{bottom:267.906667pt;}
.y2dc{bottom:268.853333pt;}
.y2da{bottom:268.866667pt;}
.y57{bottom:269.666667pt;}
.y24e{bottom:270.786667pt;}
.y11e{bottom:271.266667pt;}
.y1ad{bottom:272.226667pt;}
.y138{bottom:272.386667pt;}
.y17{bottom:273.026667pt;}
.y1dd{bottom:273.346667pt;}
.y18f{bottom:273.506667pt;}
.y273{bottom:274.306667pt;}
.y93{bottom:275.266667pt;}
.ye7{bottom:276.706667pt;}
.y76{bottom:276.866667pt;}
.y231{bottom:277.826667pt;}
.y1d0{bottom:278.626667pt;}
.y260{bottom:280.386667pt;}
.y207{bottom:280.546667pt;}
.yb5{bottom:285.826667pt;}
.y36{bottom:287.106667pt;}
.y1ea{bottom:291.906667pt;}
.y156{bottom:292.866667pt;}
.y1ba{bottom:293.506667pt;}
.y105{bottom:293.986667pt;}
.y13d{bottom:295.106667pt;}
.y16{bottom:295.266667pt;}
.y56{bottom:297.186667pt;}
.y24d{bottom:298.626667pt;}
.y11d{bottom:298.786667pt;}
.y137{bottom:299.906667pt;}
.y292{bottom:300.066667pt;}
.y164{bottom:300.706667pt;}
.y228{bottom:300.866667pt;}
.y1dc{bottom:301.026667pt;}
.y18e{bottom:302.146667pt;}
.ycd{bottom:302.466667pt;}
.y92{bottom:304.066667pt;}
.ye6{bottom:304.226667pt;}
.y1f3{bottom:304.386667pt;}
.y230{bottom:305.506667pt;}
.y1cf{bottom:306.146667pt;}
.y75{bottom:307.426667pt;}
.y25f{bottom:308.066667pt;}
.y206{bottom:308.226667pt;}
.y35{bottom:311.106667pt;}
.y272{bottom:312.386667pt;}
.yb4{bottom:313.506667pt;}
.y15{bottom:317.506667pt;}
.y1e9{bottom:319.426667pt;}
.y155{bottom:320.546667pt;}
.y1b9{bottom:321.186667pt;}
.y104{bottom:321.506667pt;}
.y13c{bottom:323.746667pt;}
.y55{bottom:324.866667pt;}
.y24c{bottom:326.146667pt;}
.y11c{bottom:326.466667pt;}
.y2e0{bottom:326.933333pt;}
.y2de{bottom:326.946667pt;}
.y1ac{bottom:327.426667pt;}
.y136{bottom:327.586667pt;}
.y163{bottom:328.226667pt;}
.y1db{bottom:328.546667pt;}
.y18d{bottom:329.666667pt;}
.ye5{bottom:331.906667pt;}
.y1f2{bottom:332.066667pt;}
.y291{bottom:332.866667pt;}
.y22f{bottom:333.026667pt;}
.y1ce{bottom:333.826667pt;}
.y91{bottom:334.626667pt;}
.y34{bottom:334.786667pt;}
.y205{bottom:335.746667pt;}
.ycc{bottom:337.026667pt;}
.y74{bottom:337.986667pt;}
.y14{bottom:339.746667pt;}
.y271{bottom:340.066667pt;}
.yb3{bottom:341.026667pt;}
.y25e{bottom:346.466667pt;}
.y1e8{bottom:347.106667pt;}
.y154{bottom:348.066667pt;}
.y1b8{bottom:348.706667pt;}
.y103{bottom:349.186667pt;}
.y54{bottom:352.386667pt;}
.y11b{bottom:353.986667pt;}
.y135{bottom:355.106667pt;}
.y162{bottom:355.906667pt;}
.y227{bottom:356.066667pt;}
.y1da{bottom:356.226667pt;}
.y18c{bottom:357.346667pt;}
.ye4{bottom:359.426667pt;}
.y1f1{bottom:359.586667pt;}
.y22e{bottom:360.706667pt;}
.y1cd{bottom:361.346667pt;}
.y13{bottom:361.986667pt;}
.y204{bottom:363.426667pt;}
.y24b{bottom:364.226667pt;}
.y90{bottom:365.186667pt;}
.y290{bottom:365.826667pt;}
.y270{bottom:367.746667pt;}
.y73{bottom:368.546667pt;}
.yb2{bottom:368.706667pt;}
.y33{bottom:369.346667pt;}
.ycb{bottom:371.586667pt;}
.y153{bottom:375.746667pt;}
.y1b7{bottom:376.386667pt;}
.y102{bottom:376.706667pt;}
.y161{bottom:379.426667pt;}
.y53{bottom:380.066667pt;}
.y11a{bottom:381.666667pt;}
.y1ab{bottom:382.626667pt;}
.y134{bottom:382.786667pt;}
.y226{bottom:383.746667pt;}
.y12{bottom:384.226667pt;}
.y25d{bottom:384.546667pt;}
.y1d9{bottom:384.866667pt;}
.y18b{bottom:385.026667pt;}
.y2d8{bottom:386.133333pt;}
.y2d1{bottom:386.146667pt;}
.y1e7{bottom:386.946667pt;}
.ye3{bottom:387.106667pt;}
.y1f0{bottom:387.266667pt;}
.y22d{bottom:388.386667pt;}
.y1cc{bottom:389.026667pt;}
.y17f{bottom:389.826667pt;}
.y203{bottom:390.946667pt;}
.y24a{bottom:391.906667pt;}
.y237{bottom:393.506667pt;}
.y8f{bottom:395.906667pt;}
.yb1{bottom:396.226667pt;}
.y28f{bottom:398.626667pt;}
.y72{bottom:399.106667pt;}
.y152{bottom:403.266667pt;}
.y1b6{bottom:403.906667pt;}
.y32{bottom:404.066667pt;}
.y101{bottom:404.386667pt;}
.y26f{bottom:405.986667pt;}
.yca{bottom:406.306667pt;}
.y11{bottom:406.466667pt;}
.y52{bottom:407.586667pt;}
.y17e{bottom:408.706667pt;}
.y119{bottom:409.186667pt;}
.y133{bottom:410.306667pt;}
.y225{bottom:411.266667pt;}
.y18a{bottom:412.546667pt;}
.ye2{bottom:414.626667pt;}
.y199{bottom:414.786667pt;}
.y22c{bottom:415.906667pt;}
.y1cb{bottom:416.546667pt;}
.y202{bottom:418.626667pt;}
.y236{bottom:421.026667pt;}
.y25c{bottom:422.786667pt;}
.y2d4{bottom:423.106667pt;}
.yb0{bottom:423.906667pt;}
.y8e{bottom:426.466667pt;}
.y10{bottom:428.546667pt;}
.y71{bottom:429.666667pt;}
.y249{bottom:430.146667pt;}
.y151{bottom:430.946667pt;}
.y1b5{bottom:431.586667pt;}
.y100{bottom:431.906667pt;}
.y26e{bottom:433.666667pt;}
.y22b{bottom:434.466667pt;}
.y51{bottom:435.266667pt;}
.y31{bottom:436.866667pt;}
.y1aa{bottom:437.826667pt;}
.y132{bottom:437.986667pt;}
.y17d{bottom:438.466667pt;}
.y224{bottom:438.946667pt;}
.y1d8{bottom:440.066667pt;}
.yc9{bottom:440.866667pt;}
.y189{bottom:441.186667pt;}
.ye1{bottom:442.306667pt;}
.y198{bottom:442.466667pt;}
.y1ca{bottom:444.226667pt;}
.y201{bottom:446.146667pt;}
.y25b{bottom:450.466667pt;}
.yf{bottom:450.786667pt;}
.yaf{bottom:451.426667pt;}
.y8d{bottom:457.026667pt;}
.y248{bottom:457.666667pt;}
.y150{bottom:458.466667pt;}
.y1b4{bottom:459.106667pt;}
.yff{bottom:459.586667pt;}
.y70{bottom:460.386667pt;}
.y50{bottom:462.786667pt;}
.y118{bottom:464.386667pt;}
.y131{bottom:465.506667pt;}
.y223{bottom:466.466667pt;}
.y17b{bottom:468.066667pt;}
.y188{bottom:468.706667pt;}
.y30{bottom:469.826667pt;}
.y197{bottom:469.986667pt;}
.y1c9{bottom:471.746667pt;}
.ye{bottom:473.026667pt;}
.y200{bottom:473.826667pt;}
.yc8{bottom:475.426667pt;}
.y25a{bottom:478.146667pt;}
.yae{bottom:479.106667pt;}
.y247{bottom:485.346667pt;}
.y14f{bottom:486.146667pt;}
.y1b3{bottom:486.786667pt;}
.yfe{bottom:487.106667pt;}
.y8c{bottom:487.586667pt;}
.y280{bottom:489.026667pt;}
.y4f{bottom:490.466667pt;}
.y6f{bottom:490.946667pt;}
.y2a3{bottom:491.733333pt;}
.y2a1{bottom:491.746667pt;}
.y117{bottom:493.186667pt;}
.y222{bottom:494.146667pt;}
.yd{bottom:495.266667pt;}
.y187{bottom:496.386667pt;}
.y28e{bottom:497.346667pt;}
.ye0{bottom:497.506667pt;}
.y196{bottom:497.666667pt;}
.y179{bottom:497.826667pt;}
.y1c8{bottom:499.426667pt;}
.y1ff{bottom:501.346667pt;}
.y2f{bottom:502.653333pt;}
.yad{bottom:506.653333pt;}
.yc7{bottom:510.013333pt;}
.y14e{bottom:513.693333pt;}
.y1b2{bottom:514.333333pt;}
.yfd{bottom:514.813333pt;}
.y178{bottom:516.093333pt;}
.y259{bottom:516.413333pt;}
.yc{bottom:517.533333pt;}
.y4e{bottom:518.013333pt;}
.y8b{bottom:518.173333pt;}
.y2be{bottom:519.613333pt;}
.y246{bottom:519.933333pt;}
.y116{bottom:520.733333pt;}
.y6e{bottom:521.533333pt;}
.y221{bottom:521.693333pt;}
.y186{bottom:523.933333pt;}
.ydf{bottom:525.053333pt;}
.y195{bottom:525.213333pt;}
.y1c7{bottom:526.973333pt;}
.y26d{bottom:527.133333pt;}
.y27f{bottom:527.293333pt;}
.y1fe{bottom:529.053333pt;}
.y28d{bottom:530.173333pt;}
.yac{bottom:534.173333pt;}
.y2e{bottom:535.613333pt;}
.yb{bottom:539.773333pt;}
.y2f5{bottom:540.413333pt;}
.y14d{bottom:541.373333pt;}
.y212{bottom:542.013333pt;}
.yfc{bottom:542.333333pt;}
.y245{bottom:543.773333pt;}
.y258{bottom:543.933333pt;}
.yc6{bottom:544.573333pt;}
.y4d{bottom:545.693333pt;}
.y15f{bottom:548.253333pt;}
.y115{bottom:548.413333pt;}
.y8a{bottom:548.733333pt;}
.y130{bottom:549.373333pt;}
.y185{bottom:551.613333pt;}
.y6d{bottom:552.093333pt;}
.yde{bottom:552.573333pt;}
.y184{bottom:552.733333pt;}
.y1c6{bottom:554.653333pt;}
.y1fd{bottom:556.573333pt;}
.y2c9{bottom:559.133333pt;}
.yab{bottom:561.853333pt;}
.ya{bottom:562.013333pt;}
.y28c{bottom:563.133333pt;}
.y26c{bottom:565.373333pt;}
.y27e{bottom:565.693333pt;}
.y2d{bottom:568.413333pt;}
.y14c{bottom:568.893333pt;}
.y211{bottom:569.533333pt;}
.y175{bottom:569.693333pt;}
.yfb{bottom:570.013333pt;}
.y257{bottom:571.613333pt;}
.y4c{bottom:573.213333pt;}
.y2f4{bottom:574.973333pt;}
.y114{bottom:575.933333pt;}
.y220{bottom:576.893333pt;}
.y12f{bottom:577.053333pt;}
.yc5{bottom:579.133333pt;}
.y89{bottom:579.293333pt;}
.ydd{bottom:580.253333pt;}
.y183{bottom:580.413333pt;}
.y1c5{bottom:582.173333pt;}
.y6c{bottom:582.653333pt;}
.y1fc{bottom:584.253333pt;}
.yaa{bottom:589.373333pt;}
.y28b{bottom:595.933333pt;}
.y14b{bottom:596.573333pt;}
.y210{bottom:597.213333pt;}
.yfa{bottom:597.533333pt;}
.y9{bottom:597.693333pt;}
.y27d{bottom:598.493333pt;}
.y4b{bottom:600.893333pt;}
.y2c{bottom:601.373333pt;}
.y26b{bottom:603.613333pt;}
.y113{bottom:604.573333pt;}
.y2c0{bottom:604.893333pt;}
.ydc{bottom:607.773333pt;}
.y182{bottom:607.933333pt;}
.y244{bottom:609.693333pt;}
.y1c4{bottom:609.853333pt;}
.y88{bottom:610.013333pt;}
.y1fb{bottom:611.773333pt;}
.y6b{bottom:613.213333pt;}
.yc4{bottom:613.853333pt;}
.y1a9{bottom:614.173333pt;}
.ya9{bottom:617.053333pt;}
.y171{bottom:623.293333pt;}
.y14a{bottom:624.093333pt;}
.y20f{bottom:624.733333pt;}
.yf9{bottom:625.213333pt;}
.y4a{bottom:628.413333pt;}
.y235{bottom:628.573333pt;}
.y28a{bottom:628.893333pt;}
.y26a{bottom:631.133333pt;}
.y21f{bottom:632.093333pt;}
.y112{bottom:632.253333pt;}
.y15e{bottom:633.213333pt;}
.y2b{bottom:634.333333pt;}
.ydb{bottom:635.453333pt;}
.y19e{bottom:635.613333pt;}
.y27c{bottom:636.893333pt;}
.y1c3{bottom:637.373333pt;}
.y8{bottom:638.013333pt;}
.y1fa{bottom:638.973333pt;}
.y87{bottom:640.573333pt;}
.y2c2{bottom:641.853333pt;}
.y6a{bottom:643.773333pt;}
.ya8{bottom:644.573333pt;}
.y256{bottom:647.933333pt;}
.y243{bottom:648.093333pt;}
.yc3{bottom:648.413333pt;}
.y1a8{bottom:652.413333pt;}
.yf8{bottom:652.733333pt;}
.y49{bottom:656.093333pt;}
.y149{bottom:658.653333pt;}
.y269{bottom:658.813333pt;}
.y111{bottom:659.773333pt;}
.y289{bottom:661.693333pt;}
.y15d{bottom:661.853333pt;}
.yda{bottom:662.973333pt;}
.y1de{bottom:663.133333pt;}
.y27b{bottom:664.413333pt;}
.y1c2{bottom:665.053333pt;}
.y1f9{bottom:665.213333pt;}
.y2a{bottom:667.133333pt;}
.y86{bottom:671.133333pt;}
.ya7{bottom:672.253333pt;}
.y69{bottom:674.493333pt;}
.y242{bottom:675.773333pt;}
.y16c{bottom:676.733333pt;}
.y7{bottom:678.653333pt;}
.y2bb{bottom:679.453333pt;}
.y2b5{bottom:679.466667pt;}
.y1a7{bottom:679.933333pt;}
.yf7{bottom:680.413333pt;}
.yc2{bottom:682.973333pt;}
.y48{bottom:683.613333pt;}
.y148{bottom:686.333333pt;}
.y21e{bottom:687.293333pt;}
.y12e{bottom:687.453333pt;}
.y110{bottom:688.413333pt;}
.yd9{bottom:690.653333pt;}
.y1c0{bottom:690.813333pt;}
.y1c1{bottom:692.253333pt;}
.y1f8{bottom:692.733333pt;}
.y288{bottom:694.653333pt;}
.y268{bottom:696.893333pt;}
.ya6{bottom:699.773333pt;}
.y29{bottom:700.093333pt;}
.y85{bottom:701.693333pt;}
.y27a{bottom:702.653333pt;}
.y68{bottom:705.053333pt;}
.y1a6{bottom:707.613333pt;}
.yf6{bottom:707.933333pt;}
.y47{bottom:711.293333pt;}
.y147{bottom:713.853333pt;}
.y241{bottom:714.013333pt;}
.y12d{bottom:714.973333pt;}
.y10f{bottom:716.093333pt;}
.yc1{bottom:717.533333pt;}
.yd8{bottom:718.173333pt;}
.y1bf{bottom:718.333333pt;}
.y1f7{bottom:720.413333pt;}
.y6{bottom:721.213333pt;}
.y267{bottom:724.733333pt;}
.y2b8{bottom:725.066667pt;}
.ya5{bottom:727.453333pt;}
.y16a{bottom:730.333333pt;}
.y84{bottom:732.253333pt;}
.y28{bottom:732.893333pt;}
.y20e{bottom:735.133333pt;}
.y67{bottom:735.613333pt;}
.y46{bottom:738.813333pt;}
.y146{bottom:741.533333pt;}
.y21d{bottom:742.493333pt;}
.y12c{bottom:742.653333pt;}
.y10e{bottom:743.613333pt;}
.yd7{bottom:745.853333pt;}
.y1a5{bottom:746.013333pt;}
.y1f6{bottom:747.933333pt;}
.yc0{bottom:752.093333pt;}
.y266{bottom:752.253333pt;}
.y5{bottom:752.893333pt;}
.ya4{bottom:755.013333pt;}
.y287{bottom:760.453333pt;}
.y83{bottom:762.853333pt;}
.yf5{bottom:763.173333pt;}
.y27{bottom:765.893333pt;}
.y66{bottom:766.213333pt;}
.y45{bottom:766.533333pt;}
.y279{bottom:768.613333pt;}
.y12b{bottom:770.213333pt;}
.y2a6{bottom:771.653333pt;}
.y10d{bottom:772.453333pt;}
.yd6{bottom:773.413333pt;}
.y1a4{bottom:773.573333pt;}
.y1f5{bottom:775.653333pt;}
.y255{bottom:779.813333pt;}
.y240{bottom:779.973333pt;}
.ya3{bottom:782.693333pt;}
.ybf{bottom:786.693333pt;}
.y82{bottom:786.853333pt;}
.yf4{bottom:790.853333pt;}
.y4{bottom:792.453333pt;}
.y286{bottom:793.253333pt;}
.y44{bottom:794.053333pt;}
.y65{bottom:796.773333pt;}
.y145{bottom:797.733333pt;}
.y26{bottom:798.693333pt;}
.y12a{bottom:798.853333pt;}
.y10c{bottom:799.973333pt;}
.yd5{bottom:801.093333pt;}
.y1a3{bottom:801.253333pt;}
.y1f4{bottom:802.693333pt;}
.y9b{bottom:805.893333pt;}
.y23f{bottom:807.493333pt;}
.y278{bottom:807.653333pt;}
.ya2{bottom:810.213333pt;}
.yef{bottom:811.013333pt;}
.y81{bottom:817.413333pt;}
.y265{bottom:818.053333pt;}
.yf3{bottom:818.373333pt;}
.ybe{bottom:821.253333pt;}
.y43{bottom:821.733333pt;}
.y3{bottom:825.413333pt;}
.y285{bottom:826.213333pt;}
.y129{bottom:826.533333pt;}
.y64{bottom:827.333333pt;}
.yd4{bottom:828.613333pt;}
.y1a2{bottom:828.773333pt;}
.y25{bottom:831.653333pt;}
.y2b0{bottom:832.453333pt;}
.y9a{bottom:833.413333pt;}
.y23e{bottom:835.013333pt;}
.ya1{bottom:837.893333pt;}
.yee{bottom:845.573333pt;}
.y264{bottom:845.733333pt;}
.yf2{bottom:845.893333pt;}
.y80{bottom:847.973333pt;}
.y42{bottom:849.253333pt;}
.y21c{bottom:852.933333pt;}
.y128{bottom:854.053333pt;}
.y2ad{bottom:854.693333pt;}
.ybd{bottom:855.973333pt;}
.yd3{bottom:856.293333pt;}
.y1a1{bottom:856.453333pt;}
.y63{bottom:858.053333pt;}
.y2{bottom:858.213333pt;}
.y284{bottom:859.173333pt;}
.y24{bottom:864.453333pt;}
.ya0{bottom:865.413333pt;}
.y99{bottom:871.653333pt;}
.y23d{bottom:873.253333pt;}
.y254{bottom:873.413333pt;}
.y2a8{bottom:876.773333pt;}
.y41{bottom:876.933333pt;}
.y7f{bottom:878.533333pt;}
.yf1{bottom:880.613333pt;}
.y127{bottom:881.733333pt;}
.y5e{bottom:883.813333pt;}
.y1a0{bottom:883.973333pt;}
.y1{bottom:887.173333pt;}
.y62{bottom:888.613333pt;}
.ybc{bottom:890.533333pt;}
.y283{bottom:891.973333pt;}
.y9f{bottom:893.093333pt;}
.y2aa{bottom:893.733333pt;}
.y23{bottom:897.413333pt;}
.y23c{bottom:900.773333pt;}
.y253{bottom:900.933333pt;}
.y40{bottom:904.453333pt;}
.y21b{bottom:908.133333pt;}
.y7e{bottom:909.093333pt;}
.y126{bottom:909.253333pt;}
.y98{bottom:910.053333pt;}
.y144{bottom:910.373333pt;}
.y29c{bottom:910.693333pt;}
.y5d{bottom:911.493333pt;}
.y19f{bottom:911.653333pt;}
.yf0{bottom:915.173333pt;}
.y61{bottom:919.173333pt;}
.y9e{bottom:920.613333pt;}
.y282{bottom:924.933333pt;}
.ybb{bottom:925.093333pt;}
.y23b{bottom:928.453333pt;}
.y22{bottom:930.213333pt;}
.y3f{bottom:932.133333pt;}
.y21a{bottom:935.813333pt;}
.y125{bottom:938.053333pt;}
.y5c{bottom:939.013333pt;}
.y1b1{bottom:939.173333pt;}
.y7d{bottom:939.813333pt;}
.y29a{bottom:942.040000pt;}
.y298{bottom:942.053333pt;}
.y97{bottom:948.293333pt;}
.y60{bottom:949.733333pt;}
.y281{bottom:957.733333pt;}
.y3e{bottom:959.653333pt;}
.y21{bottom:963.173333pt;}
.y7c{bottom:963.653333pt;}
.y124{bottom:965.573333pt;}
.y5b{bottom:966.693333pt;}
.y1b0{bottom:966.853333pt;}
.y219{bottom:970.533333pt;}
.y96{bottom:975.813333pt;}
.y5f{bottom:988.933333pt;}
.y123{bottom:993.093333pt;}
.y3d{bottom:994.213333pt;}
.y95{bottom:994.373333pt;}
.y20{bottom:995.973333pt;}
.h29{height:16.306667pt;}
.ha{height:17.600000pt;}
.h10{height:17.626667pt;}
.h13{height:18.226667pt;}
.h2a{height:21.426667pt;}
.h3a{height:27.226667pt;}
.h2d{height:27.506667pt;}
.h12{height:28.946667pt;}
.h11{height:29.106667pt;}
.h15{height:29.266667pt;}
.h50{height:29.272000pt;}
.h51{height:29.280000pt;}
.h17{height:29.298667pt;}
.h4c{height:29.300000pt;}
.h1a{height:29.426667pt;}
.h4f{height:31.506667pt;}
.h4d{height:31.512000pt;}
.h4e{height:31.520000pt;}
.h2c{height:31.826667pt;}
.h27{height:33.266667pt;}
.h1f{height:34.066667pt;}
.h1d{height:34.072000pt;}
.h1e{height:34.080000pt;}
.h3e{height:35.026667pt;}
.h3f{height:35.036000pt;}
.h40{height:35.040000pt;}
.h36{height:36.320000pt;}
.h3d{height:36.466667pt;}
.h21{height:36.656250pt;}
.h44{height:36.656257pt;}
.h2f{height:36.656261pt;}
.h42{height:36.656264pt;}
.h3c{height:36.656266pt;}
.h4b{height:36.656269pt;}
.h35{height:36.960000pt;}
.h39{height:38.880000pt;}
.h20{height:39.585938pt;}
.h28{height:40.566250pt;}
.h52{height:42.226667pt;}
.h2{height:43.010000pt;}
.h26{height:43.010030pt;}
.h23{height:43.010035pt;}
.h33{height:43.010040pt;}
.h1b{height:44.722500pt;}
.h31{height:44.800000pt;}
.h38{height:45.120000pt;}
.h30{height:45.938667pt;}
.h5{height:46.447500pt;}
.h1c{height:46.920000pt;}
.h18{height:48.343750pt;}
.h19{height:48.875000pt;}
.h16{height:52.781250pt;}
.he{height:52.796000pt;}
.hd{height:52.800000pt;}
.hf{height:52.956000pt;}
.hc{height:52.960000pt;}
.hb{height:55.402500pt;}
.h14{height:57.218750pt;}
.h49{height:57.266667pt;}
.h8{height:57.375000pt;}
.h9{height:57.906250pt;}
.h47{height:58.546667pt;}
.h45{height:58.556000pt;}
.h46{height:58.560000pt;}
.h2b{height:60.146667pt;}
.h4{height:61.754062pt;}
.h6{height:66.750000pt;}
.h7{height:70.199062pt;}
.h3b{height:73.426667pt;}
.h34{height:73.920000pt;}
.h37{height:84.640000pt;}
.h3{height:88.777500pt;}
.h2e{height:91.538667pt;}
.h48{height:116.626667pt;}
.h41{height:116.636000pt;}
.h43{height:116.640000pt;}
.h4a{height:134.413333pt;}
.h25{height:138.386667pt;}
.h32{height:159.200000pt;}
.h22{height:418.293333pt;}
.h24{height:418.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:34.880000pt;}
.wa{width:37.116000pt;}
.w6{width:37.120000pt;}
.w8{width:37.138667pt;}
.wb{width:37.140000pt;}
.w1a{width:46.432000pt;}
.w1e{width:46.906667pt;}
.w1c{width:55.986667pt;}
.w19{width:56.000000pt;}
.w1b{width:56.146667pt;}
.w24{width:60.192000pt;}
.w27{width:60.200000pt;}
.w1d{width:65.618667pt;}
.w20{width:84.312000pt;}
.w15{width:87.538667pt;}
.w28{width:88.952000pt;}
.w29{width:88.960000pt;}
.w13{width:95.040000pt;}
.w11{width:99.512000pt;}
.w21{width:104.978667pt;}
.w12{width:105.458667pt;}
.w16{width:110.226667pt;}
.w14{width:112.992000pt;}
.w23{width:131.552000pt;}
.w9{width:150.906667pt;}
.wd{width:150.920000pt;}
.w5{width:178.626667pt;}
.w2a{width:188.493333pt;}
.w4{width:188.666667pt;}
.w22{width:189.938667pt;}
.w10{width:197.773333pt;}
.we{width:204.978667pt;}
.wf{width:208.026667pt;}
.w2{width:216.386667pt;}
.w7{width:235.546667pt;}
.wc{width:235.560000pt;}
.w17{width:272.853333pt;}
.w18{width:272.866667pt;}
.w3{width:273.506667pt;}
.w2b{width:278.093333pt;}
.w25{width:278.098667pt;}
.w2c{width:278.106667pt;}
.w26{width:386.813333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:7.360000pt;}
.x38{left:8.320000pt;}
.x71{left:9.912000pt;}
.x3f{left:10.866667pt;}
.x28{left:11.872000pt;}
.x3a{left:13.613333pt;}
.x2a{left:14.880000pt;}
.x57{left:16.320000pt;}
.x5f{left:17.306667pt;}
.x32{left:18.560000pt;}
.x3c{left:19.520000pt;}
.x63{left:21.600000pt;}
.x64{left:23.386667pt;}
.x2f{left:24.960000pt;}
.x67{left:26.386667pt;}
.x3d{left:27.680000pt;}
.x2b{left:29.280000pt;}
.x6b{left:31.226667pt;}
.x2e{left:32.480000pt;}
.x65{left:34.426667pt;}
.x34{left:35.360000pt;}
.x68{left:36.506667pt;}
.x35{left:38.272000pt;}
.x3e{left:41.440000pt;}
.x6c{left:43.706667pt;}
.x27{left:46.272000pt;}
.x39{left:48.000000pt;}
.x31{left:49.312000pt;}
.x41{left:50.880000pt;}
.x43{left:52.192000pt;}
.x36{left:54.752000pt;}
.x45{left:57.472000pt;}
.x6a{left:58.546667pt;}
.x3b{left:64.026667pt;}
.x42{left:65.466667pt;}
.x2c{left:67.360000pt;}
.x75{left:70.906667pt;}
.x66{left:72.306667pt;}
.x26{left:73.440000pt;}
.x21{left:74.720000pt;}
.x33{left:77.760000pt;}
.x69{left:78.706667pt;}
.x74{left:79.866667pt;}
.x46{left:85.920000pt;}
.x22{left:87.226667pt;}
.x37{left:90.240000pt;}
.x40{left:93.280000pt;}
.x6d{left:94.600000pt;}
.x44{left:99.520000pt;}
.x70{left:106.386667pt;}
.x60{left:108.026667pt;}
.x72{left:109.746667pt;}
.x2{left:113.472000pt;}
.x5e{left:114.746667pt;}
.x24{left:115.706667pt;}
.x48{left:117.786667pt;}
.x50{left:120.672000pt;}
.x55{left:124.826667pt;}
.x12{left:128.192000pt;}
.x16{left:136.666667pt;}
.x73{left:139.026667pt;}
.x3{left:142.586667pt;}
.x1f{left:151.226667pt;}
.xf{left:160.666667pt;}
.x61{left:178.106667pt;}
.x1d{left:184.666667pt;}
.x51{left:188.346667pt;}
.x6f{left:190.466667pt;}
.x4b{left:193.160000pt;}
.x62{left:206.120000pt;}
.x1e{left:208.666667pt;}
.x4{left:229.786667pt;}
.x1b{left:231.066667pt;}
.x29{left:253.986667pt;}
.x76{left:268.386667pt;}
.x23{left:291.746667pt;}
.x49{left:298.626667pt;}
.x56{left:311.746667pt;}
.xb{left:313.986667pt;}
.x6{left:330.946667pt;}
.xc{left:338.946667pt;}
.x19{left:349.506667pt;}
.x4d{left:351.586667pt;}
.x1a{left:367.426667pt;}
.x4e{left:369.186667pt;}
.x11{left:370.146667pt;}
.x6e{left:373.346667pt;}
.x5{left:378.146667pt;}
.x77{left:382.146667pt;}
.x1{left:384.066667pt;}
.x52{left:386.306667pt;}
.x14{left:387.586667pt;}
.x13{left:389.346667pt;}
.xe{left:391.586667pt;}
.xd{left:393.346667pt;}
.xa{left:396.893333pt;}
.x10{left:403.933333pt;}
.x20{left:407.453333pt;}
.x1c{left:413.693333pt;}
.x58{left:415.626667pt;}
.x7{left:451.773333pt;}
.x8{left:466.493333pt;}
.x59{left:472.426667pt;}
.x17{left:491.133333pt;}
.x4a{left:506.666667pt;}
.x4f{left:509.693333pt;}
.x18{left:525.693333pt;}
.x2d{left:528.106667pt;}
.x5a{left:529.066667pt;}
.x15{left:538.333333pt;}
.x25{left:565.893333pt;}
.x53{left:579.173333pt;}
.x4c{left:594.213333pt;}
.x5b{left:595.333333pt;}
.x54{left:609.253333pt;}
.x5c{left:651.973333pt;}
.x9{left:680.453333pt;}
.x5d{left:708.773333pt;}
.x30{left:717.440000pt;}
}




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