
    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_9a265381ca1dbb09abacbb7a.woff2')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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_4c4b9bd74cb030845471d8fe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e227bb2f13a9fbe6e4e979c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1967d2a2ce41256199c8c6b5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_de447e127ebdd65f16973317.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_9fb284180da631b03a2070fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_70561bbfdd4b828d6b98ac59.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_311c976b5a7371c5b804c182.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-79.920000px;}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-23.760000px;}
.v6{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.269400px;}
.ls29{letter-spacing:-0.259800px;}
.ls3d{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.109200px;}
.ls22{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.045360px;}
.ls20{letter-spacing:0.053280px;}
.ls36{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.106560px;}
.ls23{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.144000px;}
.lse{letter-spacing:0.178560px;}
.ls2b{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.206400px;}
.ls2c{letter-spacing:0.206640px;}
.ls1b{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.262200px;}
.ls19{letter-spacing:0.298800px;}
.ls21{letter-spacing:0.306600px;}
.ls1c{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.391680px;}
.lsf{letter-spacing:0.442080px;}
.ls12{letter-spacing:0.457920px;}
.ls31{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.567600px;}
.lsd{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.900000px;}
.ls30{letter-spacing:0.924000px;}
.ls25{letter-spacing:0.979920px;}
.ls11{letter-spacing:0.982080px;}
.ls35{letter-spacing:1.440000px;}
.ls39{letter-spacing:2.880000px;}
.ls27{letter-spacing:3.060000px;}
.ls3c{letter-spacing:5.040000px;}
.ls1f{letter-spacing:5.760000px;}
.ls1a{letter-spacing:7.200000px;}
.ls2f{letter-spacing:7.920000px;}
.ls34{letter-spacing:10.080000px;}
.ls3a{letter-spacing:10.800000px;}
.ls3{letter-spacing:11.520000px;}
.ls37{letter-spacing:12.960000px;}
.ls3b{letter-spacing:15.120000px;}
.ls26{letter-spacing:15.480000px;}
.ls32{letter-spacing:15.840000px;}
.ls33{letter-spacing:17.280000px;}
.ls6{letter-spacing:18.000000px;}
.ls28{letter-spacing:18.720000px;}
.ls38{letter-spacing:21.600000px;}
.ls2e{letter-spacing:197.436000px;}
.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;}
}
.ws18{word-spacing:-60.120000px;}
.ws17{word-spacing:-60.066600px;}
.ws1{word-spacing:-21.060000px;}
.ws1f{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.614080px;}
.wsf{word-spacing:-17.127600px;}
.wse{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.wsb{word-spacing:-16.254600px;}
.ws1e{word-spacing:-15.864000px;}
.ws19{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.226440px;}
.ws1b{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.833200px;}
.ws1d{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.328000px;}
.ws7{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.790600px;}
.wsa{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.000000px;}
.ws15{word-spacing:-8.928000px;}
.ws14{word-spacing:-8.604000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-4.736880px;}
._9{margin-left:-3.719280px;}
._6{margin-left:-2.392800px;}
._0{margin-left:-1.268640px;}
._2{width:1.196640px;}
._1{width:2.336640px;}
._5{width:3.999360px;}
._8{width:5.604000px;}
._a{width:7.056000px;}
._7{width:8.280000px;}
._13{width:9.360000px;}
._3{width:10.368000px;}
._4{width:11.376000px;}
._b{width:12.411360px;}
._c{width:13.824000px;}
._d{width:15.132000px;}
._14{width:16.632000px;}
._10{width:19.152000px;}
._11{width:20.886720px;}
._17{width:22.580640px;}
._15{width:23.976000px;}
._16{width:25.083360px;}
._e{width:26.280000px;}
._f{width:27.360000px;}
._1a{width:29.376000px;}
._1b{width:30.440160px;}
._18{width:34.200000px;}
._19{width:35.856000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:3.405000px;}
.y1a1{bottom:3.420000px;}
.y1a3{bottom:3.765000px;}
.y1a0{bottom:12.060000px;}
.y18d{bottom:14.925000px;}
.y17f{bottom:14.940000px;}
.y18a{bottom:15.105000px;}
.y164{bottom:15.120000px;}
.y16f{bottom:15.285000px;}
.y169{bottom:15.300000px;}
.y16e{bottom:15.465000px;}
.y168{bottom:15.480000px;}
.y17c{bottom:15.510000px;}
.y16c{bottom:15.525000px;}
.y171{bottom:15.645000px;}
.y173{bottom:15.660000px;}
.y17b{bottom:15.690000px;}
.y16b{bottom:15.705000px;}
.yce{bottom:15.840000px;}
.yf3{bottom:16.005000px;}
.yde{bottom:16.020000px;}
.yee{bottom:16.050000px;}
.yf1{bottom:16.185000px;}
.yd6{bottom:16.200000px;}
.yd9{bottom:16.245000px;}
.yf5{bottom:16.365000px;}
.yd4{bottom:16.380000px;}
.ye0{bottom:16.560000px;}
.y143{bottom:16.740000px;}
.y194{bottom:16.920000px;}
.y20a{bottom:17.085000px;}
.y146{bottom:17.100000px;}
.y1c8{bottom:17.130000px;}
.y226{bottom:17.145000px;}
.y10d{bottom:17.280000px;}
.y21b{bottom:17.310000px;}
.y102{bottom:17.325000px;}
.y108{bottom:17.445000px;}
.y104{bottom:17.460000px;}
.y129{bottom:17.505000px;}
.y10a{bottom:17.625000px;}
.y106{bottom:17.640000px;}
.y100{bottom:17.820000px;}
.y251{bottom:18.171000px;}
.yff{bottom:18.180000px;}
.y24a{bottom:20.325000px;}
.y165{bottom:20.700000px;}
.y209{bottom:22.305000px;}
.y204{bottom:22.320000px;}
.y214{bottom:22.500000px;}
.y207{bottom:22.545000px;}
.yd1{bottom:23.400000px;}
.yef{bottom:23.610000px;}
.y1d5{bottom:24.660000px;}
.y163{bottom:26.100000px;}
.y1cf{bottom:26.460000px;}
.yd0{bottom:30.420000px;}
.yd2{bottom:30.780000px;}
.yed{bottom:30.990000px;}
.y161{bottom:32.580000px;}
.y247{bottom:32.970000px;}
.y24f{bottom:33.645000px;}
.y1d6{bottom:34.020000px;}
.y126{bottom:34.560000px;}
.y202{bottom:35.460000px;}
.y1ce{bottom:35.640000px;}
.y1c4{bottom:41.220000px;}
.y200{bottom:41.760000px;}
.y1d4{bottom:43.380000px;}
.y1c6{bottom:47.340000px;}
.y1d7{bottom:48.960000px;}
.y250{bottom:50.745000px;}
.y21a{bottom:54.210000px;}
.y1c5{bottom:65.880000px;}
.y7{bottom:68.760000px;}
.y6{bottom:87.876000px;}
.y124{bottom:108.396000px;}
.y252{bottom:110.016000px;}
.y83{bottom:111.096000px;}
.yfb{bottom:114.876000px;}
.y1eb{bottom:115.596000px;}
.y9c{bottom:116.496000px;}
.y305{bottom:117.576000px;}
.ybe{bottom:119.196000px;}
.y314{bottom:120.276000px;}
.y27a{bottom:121.356000px;}
.y1ae{bottom:122.436000px;}
.y33{bottom:122.976000px;}
.y221{bottom:123.156000px;}
.y2a6{bottom:124.596000px;}
.y24e{bottom:124.965000px;}
.y5c{bottom:125.136000px;}
.y15f{bottom:127.116000px;}
.y294{bottom:127.296000px;}
.y1fe{bottom:128.736000px;}
.y123{bottom:129.096000px;}
.yfa{bottom:131.976000px;}
.y1c1{bottom:135.036000px;}
.y2f7{bottom:138.276000px;}
.y304{bottom:138.456000px;}
.y141{bottom:139.716000px;}
.ybd{bottom:139.896000px;}
.y23d{bottom:140.076000px;}
.y2ea{bottom:140.976000px;}
.y279{bottom:142.056000px;}
.y191{bottom:142.416000px;}
.y1ad{bottom:143.136000px;}
.y32{bottom:143.316000px;}
.y82{bottom:143.676000px;}
.y2a5{bottom:145.296000px;}
.y5b{bottom:145.836000px;}
.ycc{bottom:147.276000px;}
.y293{bottom:147.996000px;}
.y1ea{bottom:148.356000px;}
.y9b{bottom:149.076000px;}
.yf9{bottom:149.256000px;}
.y2f6{bottom:158.970000px;}
.y15e{bottom:159.690000px;}
.ybc{bottom:160.590000px;}
.y220{bottom:161.850000px;}
.y278{bottom:162.750000px;}
.yf8{bottom:163.485000px;}
.y2be{bottom:163.650000px;}
.y1ac{bottom:163.830000px;}
.y31{bottom:164.370000px;}
.y2a4{bottom:165.990000px;}
.y5a{bottom:166.530000px;}
.y1fd{bottom:167.430000px;}
.y292{bottom:168.690000px;}
.y9a{bottom:169.770000px;}
.y122{bottom:171.930000px;}
.y140{bottom:172.830000px;}
.y1c0{bottom:173.730000px;}
.y190{bottom:173.925000px;}
.y81{bottom:176.430000px;}
.y2d6{bottom:176.970000px;}
.y2e9{bottom:179.670000px;}
.y1e9{bottom:180.930000px;}
.ybb{bottom:181.290000px;}
.y318{bottom:182.550000px;}
.y277{bottom:183.450000px;}
.y1ab{bottom:184.530000px;}
.y30{bottom:185.070000px;}
.y2a3{bottom:186.690000px;}
.y59{bottom:187.230000px;}
.y291{bottom:189.390000px;}
.y24d{bottom:190.125000px;}
.ycb{bottom:190.290000px;}
.y99{bottom:190.470000px;}
.yf7{bottom:190.485000px;}
.y15d{bottom:192.450000px;}
.y13f{bottom:193.530000px;}
.y2f5{bottom:197.670000px;}
.y18f{bottom:197.685000px;}
.y2e8{bottom:200.370000px;}
.y21f{bottom:200.550000px;}
.yba{bottom:201.990000px;}
.y276{bottom:204.150000px;}
.y1aa{bottom:205.230000px;}
.y23c{bottom:205.590000px;}
.y2f{bottom:205.770000px;}
.y1fc{bottom:206.130000px;}
.y2a2{bottom:207.390000px;}
.y80{bottom:209.190000px;}
.y290{bottom:210.090000px;}
.y98{bottom:211.170000px;}
.y1bf{bottom:212.430000px;}
.y1e8{bottom:213.690000px;}
.y13e{bottom:214.230000px;}
.y121{bottom:214.590000px;}
.y2d5{bottom:215.670000px;}
.yf6{bottom:217.305000px;}
.y313{bottom:218.370000px;}
.y303{bottom:218.550000px;}
.y58{bottom:219.450000px;}
.y24c{bottom:220.725000px;}
.y18e{bottom:220.905000px;}
.yb9{bottom:222.690000px;}
.y275{bottom:224.850000px;}
.y15c{bottom:225.210000px;}
.y2e{bottom:226.470000px;}
.y2a1{bottom:228.090000px;}
.y28f{bottom:230.790000px;}
.y97{bottom:231.870000px;}
.yca{bottom:233.490000px;}
.y13d{bottom:234.930000px;}
.y2f4{bottom:236.370000px;}
.y2d4{bottom:236.550000px;}
.y23b{bottom:238.170000px;}
.y2e7{bottom:239.070000px;}
.y21e{bottom:239.250000px;}
.y7f{bottom:241.770000px;}
.yb8{bottom:243.390000px;}
.y2bd{bottom:243.930000px;}
.yf4{bottom:244.305000px;}
.y1fb{bottom:244.830000px;}
.y18c{bottom:244.845000px;}
.y274{bottom:245.550000px;}
.y1a9{bottom:245.730000px;}
.y120{bottom:246.090000px;}
.y1e7{bottom:246.450000px;}
.y2d{bottom:247.170000px;}
.y2a0{bottom:248.790000px;}
.y1be{bottom:251.130000px;}
.y24b{bottom:251.325000px;}
.y28e{bottom:251.490000px;}
.y57{bottom:252.570000px;}
.y2d3{bottom:257.070000px;}
.y15b{bottom:257.790000px;}
.y312{bottom:259.770000px;}
.y1a7{bottom:259.965000px;}
.yb7{bottom:264.090000px;}
.y273{bottom:266.250000px;}
.y11f{bottom:266.970000px;}
.y2c{bottom:267.870000px;}
.y18b{bottom:267.885000px;}
.y29f{bottom:269.490000px;}
.y23a{bottom:270.930000px;}
.yf2{bottom:272.025000px;}
.y13c{bottom:272.190000px;}
.y96{bottom:273.270000px;}
.y7e{bottom:274.530000px;}
.yc9{bottom:276.510000px;}
.y2e6{bottom:277.770000px;}
.y1a6{bottom:277.965000px;}
.y21d{bottom:278.130000px;}
.y1e6{bottom:279.030000px;}
.y249{bottom:281.925000px;}
.y2bc{bottom:282.450000px;}
.y1fa{bottom:283.530000px;}
.y13b{bottom:284.070000px;}
.yb6{bottom:284.790000px;}
.y56{bottom:285.330000px;}
.y272{bottom:286.950000px;}
.y11e{bottom:287.670000px;}
.y2b{bottom:288.210000px;}
.y1bd{bottom:289.830000px;}
.y29e{bottom:290.190000px;}
.y15a{bottom:290.550000px;}
.y189{bottom:291.825000px;}
.y28d{bottom:292.890000px;}
.y95{bottom:293.970000px;}
.y1a5{bottom:295.245000px;}
.y2d2{bottom:295.770000px;}
.y2e5{bottom:298.470000px;}
.y21c{bottom:298.830000px;}
.yf0{bottom:298.845000px;}
.y2bb{bottom:303.330000px;}
.y239{bottom:303.690000px;}
.yb5{bottom:305.490000px;}
.y13a{bottom:306.570000px;}
.y7d{bottom:307.290000px;}
.y271{bottom:307.650000px;}
.y11d{bottom:308.370000px;}
.y2a{bottom:309.270000px;}
.y29d{bottom:310.890000px;}
.y1e5{bottom:311.790000px;}
.y1a4{bottom:312.525000px;}
.y28c{bottom:313.590000px;}
.y94{bottom:314.670000px;}
.y188{bottom:315.045000px;}
.y139{bottom:315.585000px;}
.y302{bottom:316.470000px;}
.y55{bottom:317.910000px;}
.yc8{bottom:319.530000px;}
.y246{bottom:319.725000px;}
.y1f9{bottom:322.230000px;}
.y159{bottom:323.310000px;}
.y2ba{bottom:324.030000px;}
.yec{bottom:325.845000px;}
.yb4{bottom:326.190000px;}
.y7c{bottom:328.350000px;}
.y1bc{bottom:328.530000px;}
.y11c{bottom:329.070000px;}
.y1a2{bottom:329.805000px;}
.y29{bottom:329.970000px;}
.y29c{bottom:331.590000px;}
.y219{bottom:333.045000px;}
.y28b{bottom:334.290000px;}
.y2d1{bottom:334.470000px;}
.y93{bottom:335.370000px;}
.y238{bottom:336.270000px;}
.y2e4{bottom:337.215000px;}
.y301{bottom:337.395000px;}
.y54{bottom:338.655000px;}
.y187{bottom:338.835000px;}
.y1e4{bottom:344.595000px;}
.yb3{bottom:346.935000px;}
.y19f{bottom:347.835000px;}
.y138{bottom:348.195000px;}
.y7b{bottom:349.095000px;}
.y11b{bottom:349.815000px;}
.y28{bottom:350.715000px;}
.y248{bottom:351.615000px;}
.y29b{bottom:352.335000px;}
.y28a{bottom:355.035000px;}
.y2f3{bottom:355.215000px;}
.y2d0{bottom:355.395000px;}
.y158{bottom:355.935000px;}
.y92{bottom:356.115000px;}
.y300{bottom:357.915000px;}
.y311{bottom:358.095000px;}
.y53{bottom:359.355000px;}
.y1f8{bottom:360.975000px;}
.y186{bottom:362.055000px;}
.yc7{bottom:362.595000px;}
.y1bb{bottom:367.275000px;}
.yb2{bottom:367.635000px;}
.y237{bottom:369.075000px;}
.y7a{bottom:369.795000px;}
.y11a{bottom:370.515000px;}
.y27{bottom:371.415000px;}
.y289{bottom:375.735000px;}
.y2cf{bottom:375.915000px;}
.y91{bottom:376.815000px;}
.y1e3{bottom:377.175000px;}
.y310{bottom:378.615000px;}
.y52{bottom:380.055000px;}
.y137{bottom:380.595000px;}
.y29a{bottom:384.735000px;}
.y185{bottom:385.095000px;}
.yb1{bottom:388.335000px;}
.y157{bottom:388.695000px;}
.y79{bottom:390.495000px;}
.y119{bottom:391.215000px;}
.y26{bottom:391.755000px;}
.y2f2{bottom:393.915000px;}
.yeb{bottom:394.455000px;}
.y245{bottom:395.535000px;}
.y2ff{bottom:396.615000px;}
.y2e3{bottom:396.795000px;}
.y218{bottom:396.975000px;}
.y90{bottom:397.515000px;}
.y2b9{bottom:398.235000px;}
.y19e{bottom:399.495000px;}
.y1f7{bottom:399.675000px;}
.y1db{bottom:400.755000px;}
.y236{bottom:401.835000px;}
.yc6{bottom:405.615000px;}
.y1ba{bottom:405.795000px;}
.y51{bottom:407.595000px;}
.y288{bottom:408.495000px;}
.yb0{bottom:409.035000px;}
.y1e2{bottom:409.935000px;}
.y78{bottom:411.015000px;}
.y270{bottom:411.195000px;}
.y118{bottom:411.915000px;}
.y25{bottom:412.815000px;}
.y136{bottom:413.175000px;}
.y2ce{bottom:414.615000px;}
.y244{bottom:416.235000px;}
.y2e2{bottom:417.315000px;}
.y8f{bottom:418.215000px;}
.y2b8{bottom:419.115000px;}
.y19d{bottom:420.195000px;}
.y50{bottom:421.455000px;}
.y299{bottom:426.495000px;}
.y217{bottom:427.575000px;}
.y287{bottom:429.195000px;}
.yaf{bottom:429.735000px;}
.y26f{bottom:431.895000px;}
.y184{bottom:432.255000px;}
.y117{bottom:432.615000px;}
.y24{bottom:433.515000px;}
.y235{bottom:434.415000px;}
.y2fe{bottom:435.315000px;}
.y1f6{bottom:438.375000px;}
.y8e{bottom:438.915000px;}
.y2b7{bottom:439.815000px;}
.y4f{bottom:442.155000px;}
.y1e1{bottom:442.695000px;}
.y1b9{bottom:444.855000px;}
.y135{bottom:445.575000px;}
.y298{bottom:447.195000px;}
.yea{bottom:448.275000px;}
.yc5{bottom:448.635000px;}
.y243{bottom:448.995000px;}
.y77{bottom:449.895000px;}
.yae{bottom:450.435000px;}
.y26e{bottom:452.595000px;}
.y116{bottom:453.315000px;}
.y2f1{bottom:453.495000px;}
.y156{bottom:454.035000px;}
.y23{bottom:454.215000px;}
.y183{bottom:456.015000px;}
.y216{bottom:458.175000px;}
.y19c{bottom:458.895000px;}
.y8d{bottom:459.615000px;}
.y1da{bottom:461.955000px;}
.y4e{bottom:462.855000px;}
.y1b8{bottom:465.555000px;}
.y234{bottom:467.535000px;}
.y297{bottom:467.895000px;}
.y242{bottom:469.695000px;}
.y286{bottom:470.595000px;}
.yad{bottom:471.135000px;}
.y26d{bottom:473.295000px;}
.y115{bottom:474.015000px;}
.y2cd{bottom:474.195000px;}
.y22{bottom:474.915000px;}
.ye9{bottom:475.275000px;}
.y2b6{bottom:475.455000px;}
.y1d9{bottom:476.355000px;}
.y30f{bottom:476.715000px;}
.y1f5{bottom:477.255000px;}
.y134{bottom:478.155000px;}
.y182{bottom:479.235000px;}
.y19b{bottom:479.595000px;}
.y8c{bottom:480.315000px;}
.y4d{bottom:483.555000px;}
.y1b7{bottom:486.255000px;}
.y155{bottom:486.795000px;}
.y76{bottom:488.235000px;}
.y296{bottom:488.595000px;}
.y215{bottom:488.775000px;}
.y241{bottom:490.395000px;}
.y285{bottom:491.295000px;}
.yac{bottom:491.835000px;}
.y26c{bottom:493.995000px;}
.y114{bottom:494.715000px;}
.y21{bottom:495.615000px;}
.y1f4{bottom:497.955000px;}
.y19a{bottom:500.295000px;}
.y8b{bottom:501.015000px;}
.ye8{bottom:502.095000px;}
.y181{bottom:503.175000px;}
.y4c{bottom:504.255000px;}
.y1b6{bottom:506.955000px;}
.y1d8{bottom:507.675000px;}
.y1e0{bottom:508.395000px;}
.y75{bottom:508.935000px;}
.y295{bottom:509.295000px;}
.y133{bottom:510.555000px;}
.y240{bottom:511.095000px;}
.y284{bottom:511.995000px;}
.yab{bottom:512.535000px;}
.y2f0{bottom:512.715000px;}
.y2b5{bottom:514.155000px;}
.y26b{bottom:514.695000px;}
.y113{bottom:515.415000px;}
.y20{bottom:515.955000px;}
.y1f3{bottom:518.655000px;}
.y213{bottom:519.375000px;}
.y154{bottom:519.555000px;}
.y8a{bottom:521.715000px;}
.y4b{bottom:524.955000px;}
.y180{bottom:526.215000px;}
.y1b5{bottom:527.655000px;}
.ye7{bottom:528.915000px;}
.y1df{bottom:529.095000px;}
.y233{bottom:529.635000px;}
.y74{bottom:529.995000px;}
.y283{bottom:532.695000px;}
.yaa{bottom:533.055000px;}
.y2cc{bottom:533.415000px;}
.yc4{bottom:534.855000px;}
.y2b4{bottom:535.035000px;}
.y26a{bottom:535.395000px;}
.y112{bottom:536.115000px;}
.y1f{bottom:537.015000px;}
.y1d3{bottom:538.995000px;}
.y1f2{bottom:539.355000px;}
.y199{bottom:540.975000px;}
.y89{bottom:542.415000px;}
.y132{bottom:542.955000px;}
.y4a{bottom:545.655000px;}
.y1b4{bottom:548.355000px;}
.y1de{bottom:549.795000px;}
.y17e{bottom:550.155000px;}
.y232{bottom:550.335000px;}
.y73{bottom:550.695000px;}
.y2ef{bottom:551.415000px;}
.y23f{bottom:551.775000px;}
.y153{bottom:552.135000px;}
.y282{bottom:553.395000px;}
.ya9{bottom:553.755000px;}
.y2e1{bottom:554.115000px;}
.y2fd{bottom:554.295000px;}
.y198{bottom:555.195000px;}
.y2b3{bottom:555.555000px;}
.y269{bottom:556.095000px;}
.ye6{bottom:556.815000px;}
.y1e{bottom:557.715000px;}
.y88{bottom:563.115000px;}
.y49{bottom:566.355000px;}
.y1dd{bottom:570.495000px;}
.y231{bottom:571.035000px;}
.y72{bottom:571.395000px;}
.y2cb{bottom:572.115000px;}
.y2ee{bottom:572.295000px;}
.y17d{bottom:573.195000px;}
.y281{bottom:574.095000px;}
.ya8{bottom:574.455000px;}
.y23e{bottom:574.815000px;}
.y30e{bottom:574.995000px;}
.y131{bottom:575.535000px;}
.y268{bottom:576.795000px;}
.y1f1{bottom:577.335000px;}
.y111{bottom:577.515000px;}
.yc3{bottom:577.875000px;}
.y1d{bottom:578.415000px;}
.y212{bottom:580.755000px;}
.ye5{bottom:583.635000px;}
.y87{bottom:583.815000px;}
.y152{bottom:584.895000px;}
.y197{bottom:585.795000px;}
.y48{bottom:587.055000px;}
.y1b3{bottom:591.195000px;}
.y230{bottom:591.735000px;}
.y71{bottom:592.095000px;}
.y2e0{bottom:592.815000px;}
.y2ca{bottom:592.995000px;}
.y2b2{bottom:594.255000px;}
.y1f0{bottom:594.615000px;}
.y280{bottom:594.795000px;}
.ya7{bottom:595.155000px;}
.y30d{bottom:595.515000px;}
.y17a{bottom:597.135000px;}
.y267{bottom:597.495000px;}
.y110{bottom:598.215000px;}
.y1c{bottom:599.115000px;}
.y1d2{bottom:603.435000px;}
.y86{bottom:604.545000px;}
.y47{bottom:607.785000px;}
.y130{bottom:607.965000px;}
.y211{bottom:611.385000px;}
.ye4{bottom:611.565000px;}
.y1ef{bottom:611.925000px;}
.y70{bottom:612.825000px;}
.y2c9{bottom:613.545000px;}
.y27f{bottom:615.525000px;}
.ya6{bottom:615.885000px;}
.y196{bottom:616.425000px;}
.y151{bottom:617.685000px;}
.y266{bottom:618.225000px;}
.y10f{bottom:618.945000px;}
.y1b{bottom:619.845000px;}
.yc2{bottom:620.925000px;}
.y179{bottom:621.105000px;}
.y85{bottom:625.245000px;}
.y46{bottom:628.125000px;}
.y1ee{bottom:629.205000px;}
.y2ed{bottom:631.545000px;}
.y1dc{bottom:631.725000px;}
.y1b2{bottom:632.085000px;}
.y22f{bottom:632.445000px;}
.y2b1{bottom:632.985000px;}
.y6f{bottom:633.525000px;}
.y317{bottom:633.885000px;}
.y1d1{bottom:634.065000px;}
.y30c{bottom:634.245000px;}
.y27e{bottom:636.225000px;}
.ya5{bottom:636.585000px;}
.ye3{bottom:638.385000px;}
.y265{bottom:638.925000px;}
.y1a{bottom:640.545000px;}
.y210{bottom:641.985000px;}
.y178{bottom:644.865000px;}
.y1ed{bottom:646.485000px;}
.y195{bottom:647.025000px;}
.y22e{bottom:649.725000px;}
.y150{bottom:650.265000px;}
.yc1{bottom:652.245000px;}
.y2b0{bottom:653.685000px;}
.y6e{bottom:654.225000px;}
.y27d{bottom:656.925000px;}
.ya4{bottom:657.285000px;}
.y10e{bottom:659.445000px;}
.y264{bottom:659.625000px;}
.y19{bottom:661.245000px;}
.y1ec{bottom:663.585000px;}
.y1d0{bottom:664.665000px;}
.y84{bottom:665.745000px;}
.y22d{bottom:666.825000px;}
.ye2{bottom:667.725000px;}
.y177{bottom:668.805000px;}
.y2ec{bottom:670.245000px;}
.y20f{bottom:672.585000px;}
.y12f{bottom:672.945000px;}
.yc0{bottom:673.125000px;}
.y10c{bottom:673.665000px;}
.y6d{bottom:674.925000px;}
.y27c{bottom:677.625000px;}
.ya3{bottom:677.985000px;}
.y192{bottom:678.345000px;}
.y263{bottom:680.325000px;}
.y22c{bottom:681.225000px;}
.y18{bottom:681.945000px;}
.y14f{bottom:683.025000px;}
.y2c8{bottom:690.945000px;}
.y2eb{bottom:691.125000px;}
.y2af{bottom:692.385000px;}
.y176{bottom:692.565000px;}
.y30b{bottom:693.645000px;}
.y45{bottom:693.825000px;}
.y1cd{bottom:695.265000px;}
.y6c{bottom:695.625000px;}
.ye1{bottom:696.165000px;}
.y27b{bottom:698.145000px;}
.ya2{bottom:698.685000px;}
.y262{bottom:701.025000px;}
.y17{bottom:702.645000px;}
.y20e{bottom:703.185000px;}
.y12e{bottom:705.345000px;}
.y10b{bottom:706.965000px;}
.y193{bottom:709.845000px;}
.y2df{bottom:711.645000px;}
.y22b{bottom:711.825000px;}
.y316{bottom:714.345000px;}
.y44{bottom:714.525000px;}
.y14e{bottom:715.785000px;}
.y6b{bottom:716.325000px;}
.ya1{bottom:719.385000px;}
.y261{bottom:721.725000px;}
.ydf{bottom:722.985000px;}
.y16{bottom:723.345000px;}
.y2ae{bottom:731.085000px;}
.y2c7{bottom:732.345000px;}
.y20d{bottom:733.785000px;}
.y43{bottom:735.225000px;}
.y6a{bottom:737.025000px;}
.y12d{bottom:737.925000px;}
.y109{bottom:739.380000px;}
.y175{bottom:739.545000px;}
.y22a{bottom:742.425000px;}
.y15{bottom:744.045000px;}
.y1cc{bottom:744.405000px;}
.y14d{bottom:748.725000px;}
.y2de{bottom:750.345000px;}
.ydd{bottom:750.885000px;}
.y315{bottom:753.045000px;}
.y42{bottom:755.925000px;}
.y69{bottom:757.725000px;}
.ya0{bottom:762.405000px;}
.y260{bottom:763.125000px;}
.y174{bottom:763.485000px;}
.y14{bottom:764.385000px;}
.y20c{bottom:764.400000px;}
.y14c{bottom:769.425000px;}
.y12c{bottom:770.325000px;}
.y2c6{bottom:771.045000px;}
.y2fc{bottom:771.225000px;}
.y107{bottom:771.960000px;}
.y229{bottom:773.025000px;}
.y1cb{bottom:775.005000px;}
.y41{bottom:776.625000px;}
.ydc{bottom:777.705000px;}
.y68{bottom:778.425000px;}
.y2ad{bottom:779.685000px;}
.y25f{bottom:783.825000px;}
.y13{bottom:785.085000px;}
.y172{bottom:787.245000px;}
.y2dd{bottom:789.045000px;}
.y14b{bottom:790.125000px;}
.y2fb{bottom:791.745000px;}
.y30a{bottom:791.925000px;}
.y20b{bottom:795.000000px;}
.y40{bottom:797.325000px;}
.ybf{bottom:798.945000px;}
.y67{bottom:799.125000px;}
.y12b{bottom:802.920000px;}
.y9f{bottom:803.085000px;}
.y228{bottom:803.640000px;}
.y105{bottom:804.345000px;}
.y25e{bottom:804.525000px;}
.ydb{bottom:805.425000px;}
.y1ca{bottom:805.605000px;}
.y12{bottom:806.145000px;}
.y2c5{bottom:809.745000px;}
.y2dc{bottom:809.925000px;}
.y170{bottom:811.200000px;}
.y309{bottom:812.445000px;}
.y2ac{bottom:813.165000px;}
.y3f{bottom:818.025000px;}
.y66{bottom:819.825000px;}
.y25d{bottom:825.225000px;}
.y208{bottom:826.320000px;}
.y11{bottom:826.845000px;}
.y9e{bottom:827.025000px;}
.y2db{bottom:830.445000px;}
.y2c4{bottom:830.625000px;}
.y14a{bottom:830.805000px;}
.yda{bottom:832.425000px;}
.y227{bottom:834.225000px;}
.y16d{bottom:835.140000px;}
.y12a{bottom:835.320000px;}
.y1c9{bottom:836.205000px;}
.y103{bottom:836.925000px;}
.y3e{bottom:838.725000px;}
.y65{bottom:840.525000px;}
.y149{bottom:845.025000px;}
.y25c{bottom:845.925000px;}
.y10{bottom:847.545000px;}
.y2ab{bottom:849.165000px;}
.y2c3{bottom:851.145000px;}
.y206{bottom:856.905000px;}
.y16a{bottom:858.885000px;}
.y3d{bottom:859.425000px;}
.yd8{bottom:860.145000px;}
.y64{bottom:861.225000px;}
.y225{bottom:864.825000px;}
.y25b{bottom:866.625000px;}
.y1c7{bottom:867.000000px;}
.y128{bottom:867.885000px;}
.yf{bottom:868.245000px;}
.y2da{bottom:869.145000px;}
.y2aa{bottom:869.865000px;}
.y101{bottom:870.045000px;}
.y148{bottom:875.670000px;}
.y3c{bottom:880.170000px;}
.y63{bottom:881.970000px;}
.y167{bottom:882.870000px;}
.yd7{bottom:887.190000px;}
.y25a{bottom:887.370000px;}
.y205{bottom:887.730000px;}
.ye{bottom:888.630000px;}
.y308{bottom:889.710000px;}
.y2c2{bottom:889.890000px;}
.y2a9{bottom:890.610000px;}
.y224{bottom:895.470000px;}
.y1c3{bottom:898.350000px;}
.y3b{bottom:900.870000px;}
.y125{bottom:901.050000px;}
.y62{bottom:902.670000px;}
.yfe{bottom:903.390000px;}
.y147{bottom:906.270000px;}
.y166{bottom:906.630000px;}
.y2d9{bottom:907.710000px;}
.y259{bottom:907.890000px;}
.yd{bottom:909.690000px;}
.y2fa{bottom:910.590000px;}
.y2a8{bottom:911.310000px;}
.yd5{bottom:914.910000px;}
.y203{bottom:918.330000px;}
.y3a{bottom:921.570000px;}
.y61{bottom:923.370000px;}
.y222{bottom:926.790000px;}
.y2c1{bottom:928.410000px;}
.y258{bottom:928.590000px;}
.y160{bottom:930.570000px;}
.y307{bottom:931.290000px;}
.y127{bottom:935.610000px;}
.y145{bottom:936.870000px;}
.yd3{bottom:941.910000px;}
.y39{bottom:942.270000px;}
.yc{bottom:942.630000px;}
.y2a7{bottom:943.530000px;}
.y60{bottom:943.890000px;}
.y257{bottom:949.290000px;}
.y1ff{bottom:949.650000px;}
.yfd{bottom:954.330000px;}
.y162{bottom:954.510000px;}
.y223{bottom:958.290000px;}
.y1b1{bottom:961.890000px;}
.y38{bottom:962.610000px;}
.y5f{bottom:964.590000px;}
.yb{bottom:966.750000px;}
.y142{bottom:968.190000px;}
.ycf{bottom:969.630000px;}
.y256{bottom:969.990000px;}
.yfc{bottom:975.030000px;}
.y1c2{bottom:978.990000px;}
.y201{bottom:980.970000px;}
.y1b0{bottom:982.590000px;}
.y5e{bottom:985.290000px;}
.y2f9{bottom:987.810000px;}
.y2d8{bottom:987.990000px;}
.y255{bottom:990.690000px;}
.ya{bottom:990.870000px;}
.y144{bottom:999.690000px;}
.y37{bottom:1005.810000px;}
.y5d{bottom:1005.990000px;}
.y306{bottom:1008.510000px;}
.y2c0{bottom:1008.690000px;}
.ycd{bottom:1013.010000px;}
.y1af{bottom:1015.530000px;}
.y2d7{bottom:1026.510000px;}
.y36{bottom:1026.690000px;}
.y9{bottom:1028.310000px;}
.y2f8{bottom:1029.390000px;}
.y254{bottom:1029.570000px;}
.y2bf{bottom:1047.210000px;}
.y35{bottom:1047.390000px;}
.y8{bottom:1059.270000px;}
.y253{bottom:1067.730000px;}
.y9d{bottom:1067.910000px;}
.y34{bottom:1068.090000px;}
.y5{bottom:1088.970000px;}
.y4{bottom:1109.130000px;}
.y3{bottom:1130.910000px;}
.y2{bottom:1151.460000px;}
.y1{bottom:1171.980000px;}
.h4a{height:17.265000px;}
.h49{height:17.301000px;}
.h42{height:23.025000px;}
.h36{height:23.205000px;}
.h40{height:23.220000px;}
.h37{height:23.745000px;}
.h3f{height:23.760000px;}
.h43{height:23.781000px;}
.h3c{height:23.925000px;}
.h3d{height:23.940000px;}
.h3a{height:23.962500px;}
.h41{height:23.970000px;}
.hd{height:26.805000px;}
.h17{height:26.820000px;}
.h13{height:26.985000px;}
.h16{height:27.000000px;}
.h14{height:27.022500px;}
.h3e{height:27.298828px;}
.h11{height:27.705000px;}
.h15{height:27.720000px;}
.h1a{height:27.885000px;}
.h18{height:27.900000px;}
.h19{height:27.930000px;}
.h30{height:30.585000px;}
.h45{height:30.600000px;}
.h4c{height:30.621000px;}
.h31{height:30.622500px;}
.h47{height:30.630000px;}
.h53{height:30.765000px;}
.h46{height:30.780000px;}
.h52{height:30.802500px;}
.h58{height:31.161000px;}
.h57{height:31.305000px;}
.h23{height:32.385000px;}
.h20{height:32.400000px;}
.h28{height:32.422500px;}
.h29{height:32.430000px;}
.h24{height:32.565000px;}
.h22{height:32.580000px;}
.h2a{height:32.601000px;}
.h1f{height:32.602500px;}
.h1d{height:33.645000px;}
.h27{height:33.825000px;}
.h34{height:34.365000px;}
.h48{height:34.545000px;}
.h3b{height:35.314453px;}
.h38{height:35.332031px;}
.h39{height:35.806641px;}
.h35{height:36.281250px;}
.h33{height:36.861328px;}
.h59{height:37.065000px;}
.h54{height:38.139609px;}
.h2b{height:38.158594px;}
.hf{height:41.745000px;}
.h1b{height:41.781000px;}
.h56{height:42.997500px;}
.h2d{height:44.130938px;}
.h51{height:45.004219px;}
.ha{height:47.344922px;}
.h12{height:47.980898px;}
.h10{height:48.616875px;}
.h4d{height:49.140000px;}
.h50{height:49.305000px;}
.he{height:49.394180px;}
.h32{height:58.305000px;}
.h1c{height:58.651172px;}
.h2c{height:59.038594px;}
.hc{height:60.226875px;}
.h2f{height:62.085000px;}
.h44{height:62.100000px;}
.h55{height:63.201000px;}
.h5a{height:64.251000px;}
.h4e{height:64.425000px;}
.h5b{height:64.546875px;}
.h21{height:64.978594px;}
.h2{height:65.010937px;}
.h3{height:65.884219px;}
.h4{height:66.082500px;}
.h25{height:66.757500px;}
.h26{height:67.125000px;}
.h1e{height:67.824844px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:74.704922px;}
.h2e{height:76.317188px;}
.h4b{height:79.725000px;}
.h4f{height:80.625000px;}
.h6{height:84.898125px;}
.h5{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:23.580000px;}
.w31{width:23.796000px;}
.w2e{width:24.660000px;}
.w2f{width:34.920000px;}
.w34{width:35.985000px;}
.w32{width:37.065000px;}
.w5d{width:39.405000px;}
.w22{width:39.420000px;}
.w24{width:39.585000px;}
.w20{width:39.600000px;}
.w26{width:39.765000px;}
.w1e{width:39.945000px;}
.w2b{width:40.485000px;}
.w35{width:47.325000px;}
.w64{width:47.685000px;}
.w61{width:48.045000px;}
.w1f{width:48.441000px;}
.w5e{width:49.341000px;}
.w36{width:49.485000px;}
.w33{width:49.521000px;}
.w63{width:51.285000px;}
.w25{width:57.045000px;}
.w21{width:57.060000px;}
.w27{width:57.081000px;}
.w23{width:57.276000px;}
.w28{width:59.925000px;}
.w62{width:61.941000px;}
.w5{width:63.165000px;}
.w60{width:67.536000px;}
.w2c{width:69.645000px;}
.w5f{width:70.920000px;}
.w3f{width:71.445000px;}
.w3e{width:74.325000px;}
.w7{width:76.305000px;}
.w4a{width:84.441000px;}
.w56{width:85.671000px;}
.w9{width:87.285000px;}
.w59{width:87.465000px;}
.wf{width:87.501000px;}
.w18{width:88.401000px;}
.w57{width:88.761000px;}
.w48{width:90.201000px;}
.w6c{width:90.525000px;}
.w6d{width:90.561000px;}
.w6e{width:91.065000px;}
.w3a{width:94.680000px;}
.w39{width:94.701000px;}
.w3b{width:94.716000px;}
.w68{width:95.025000px;}
.w69{width:95.061000px;}
.w6a{width:95.385000px;}
.w1b{width:96.645000px;}
.w19{width:96.660000px;}
.w1a{width:96.696000px;}
.w1c{width:96.861000px;}
.w47{width:97.005000px;}
.w52{width:97.401000px;}
.w49{width:97.545000px;}
.w5b{width:98.985000px;}
.w51{width:99.525000px;}
.w1d{width:99.885000px;}
.w17{width:101.151000px;}
.w46{width:101.196000px;}
.w4b{width:103.305000px;}
.w6{width:106.401000px;}
.w2a{width:106.956000px;}
.w4f{width:108.741000px;}
.w58{width:110.340000px;}
.w38{width:112.311000px;}
.w67{width:112.356000px;}
.w5a{width:113.241000px;}
.wd{width:117.360000px;}
.w50{width:118.296000px;}
.w53{width:120.585000px;}
.w16{width:124.725000px;}
.w14{width:124.956000px;}
.w13{width:125.100000px;}
.w15{width:125.121000px;}
.w6b{width:125.676000px;}
.w4e{width:135.711000px;}
.w10{width:136.245000px;}
.w3d{width:138.081000px;}
.w4{width:138.276000px;}
.we{width:139.536000px;}
.w40{width:144.351000px;}
.w11{width:180.381000px;}
.w4d{width:187.755000px;}
.w45{width:188.115000px;}
.w4c{width:198.390000px;}
.w44{width:198.750000px;}
.wa{width:199.641000px;}
.w2d{width:219.435000px;}
.w42{width:220.695000px;}
.wc{width:223.755000px;}
.wb{width:256.890000px;}
.w29{width:258.861000px;}
.w65{width:282.441000px;}
.w3c{width:283.875000px;}
.w3{width:307.641000px;}
.w41{width:315.240000px;}
.w43{width:318.981000px;}
.w54{width:326.580000px;}
.w8{width:358.626000px;}
.w66{width:397.875000px;}
.w12{width:499.935000px;}
.w5c{width:605.790000px;}
.w55{width:680.310000px;}
.w2{width:691.830000px;}
.w37{width:695.430000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:5.211000px;}
.x41{left:7.185000px;}
.x8d{left:8.811000px;}
.x60{left:10.080000px;}
.x64{left:12.045000px;}
.x69{left:13.500000px;}
.x25{left:14.565000px;}
.x3a{left:16.545000px;}
.x43{left:18.540000px;}
.x40{left:20.160000px;}
.x29{left:21.780000px;}
.x38{left:22.845000px;}
.x39{left:24.105000px;}
.x27{left:25.770000px;}
.x2f{left:27.165000px;}
.x7f{left:28.800000px;}
.x37{left:29.865000px;}
.x2b{left:31.485000px;}
.x68{left:33.105000px;}
.x31{left:35.100000px;}
.x7b{left:36.540000px;}
.x2d{left:38.160000px;}
.x81{left:39.810000px;}
.x8c{left:41.205000px;}
.x36{left:43.545000px;}
.x33{left:45.030000px;}
.x44{left:46.260000px;}
.x50{left:48.045000px;}
.x30{left:49.350000px;}
.x46{left:50.400000px;}
.x4f{left:52.020000px;}
.x2c{left:53.130000px;}
.x48{left:54.540000px;}
.x45{left:55.620000px;}
.x32{left:56.730000px;}
.x2e{left:58.170000px;}
.x49{left:59.760000px;}
.x47{left:61.410000px;}
.x6c{left:62.445000px;}
.x24{left:65.370000px;}
.x2a{left:69.150000px;}
.x84{left:70.230000px;}
.x95{left:71.310000px;}
.x6d{left:73.605000px;}
.x78{left:75.585000px;}
.x3f{left:76.890000px;}
.x90{left:80.490000px;}
.x6b{left:82.785000px;}
.x73{left:85.125000px;}
.x75{left:87.105000px;}
.x71{left:88.545000px;}
.x6a{left:90.705000px;}
.x3d{left:96.660000px;}
.x6e{left:97.725000px;}
.x3b{left:99.705000px;}
.x70{left:107.985000px;}
.x82{left:111.450000px;}
.x86{left:114.885000px;}
.x9b{left:116.670000px;}
.x8f{left:118.245000px;}
.x5d{left:120.105000px;}
.x87{left:122.565000px;}
.x2{left:127.656000px;}
.x83{left:130.710000px;}
.x85{left:137.370000px;}
.x19{left:138.816000px;}
.x4{left:139.896000px;}
.x5{left:144.576000px;}
.x8e{left:146.325000px;}
.x1f{left:148.896000px;}
.xa2{left:156.450000px;}
.x88{left:159.645000px;}
.x6{left:162.210000px;}
.x1e{left:180.750000px;}
.xa5{left:187.590000px;}
.x18{left:192.810000px;}
.xa6{left:198.930000px;}
.x4b{left:200.010000px;}
.x15{left:205.230000px;}
.x96{left:207.765000px;}
.x20{left:212.610000px;}
.x52{left:228.825000px;}
.x79{left:239.985000px;}
.x9c{left:247.185000px;}
.x34{left:259.770000px;}
.x91{left:263.385000px;}
.x57{left:268.785000px;}
.x21{left:271.110000px;}
.x1{left:277.230000px;}
.x97{left:296.535000px;}
.xb{left:305.175000px;}
.x4a{left:308.055000px;}
.x53{left:317.955000px;}
.x72{left:320.610000px;}
.x77{left:322.770000px;}
.x6f{left:325.110000px;}
.x3c{left:327.315000px;}
.x74{left:329.610000px;}
.x76{left:332.130000px;}
.x7a{left:334.695000px;}
.x9d{left:335.955000px;}
.x58{left:357.555000px;}
.xa{left:372.855000px;}
.x5e{left:378.975000px;}
.x61{left:403.635000px;}
.x98{left:406.875000px;}
.xa1{left:410.115000px;}
.x54{left:415.515000px;}
.x7c{left:429.375000px;}
.x4c{left:433.155000px;}
.x23{left:435.315000px;}
.x62{left:438.555000px;}
.x7{left:443.955000px;}
.x9e{left:446.295000px;}
.x59{left:454.935000px;}
.x63{left:462.135000px;}
.x14{left:478.545000px;}
.x35{left:486.300000px;}
.x92{left:490.440000px;}
.x55{left:512.940000px;}
.x1b{left:521.745000px;}
.x7d{left:524.100000px;}
.xc{left:525.705000px;}
.x17{left:527.325000px;}
.x89{left:535.260000px;}
.x1a{left:539.205000px;}
.x5a{left:552.540000px;}
.x4d{left:558.120000px;}
.x9{left:574.485000px;}
.xf{left:581.145000px;}
.x3e{left:584.220000px;}
.x13{left:586.545000px;}
.x93{left:589.980000px;}
.x5f{left:596.100000px;}
.xd{left:598.605000px;}
.x99{left:601.320000px;}
.xe{left:611.205000px;}
.x1d{left:615.165000px;}
.xa3{left:617.520000px;}
.x12{left:620.565000px;}
.x10{left:627.225000px;}
.x65{left:633.180000px;}
.x26{left:636.780000px;}
.x16{left:642.525000px;}
.x1c{left:645.585000px;}
.x5b{left:650.100000px;}
.x11{left:659.670000px;}
.x7e{left:662.190000px;}
.x9f{left:663.270000px;}
.x42{left:671.730000px;}
.x4e{left:683.250000px;}
.x94{left:687.390000px;}
.x56{left:708.090000px;}
.xa4{left:712.590000px;}
.x9a{left:714.570000px;}
.x8b{left:717.450000px;}
.x66{left:718.710000px;}
.x8a{left:723.210000px;}
.x80{left:736.530000px;}
.x28{left:743.190000px;}
.x5c{left:748.050000px;}
.xa0{left:762.270000px;}
.x67{left:766.050000px;}
.x51{left:791.430000px;}
.x3{left:799.890000px;}
.x8{left:808.170000px;}
@media print{
.v8{vertical-align:-71.040000pt;}
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-21.120000pt;}
.v6{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.239467pt;}
.ls29{letter-spacing:-0.230933pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.040320pt;}
.ls20{letter-spacing:0.047360pt;}
.ls36{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.094720pt;}
.ls23{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.158720pt;}
.ls2b{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.183467pt;}
.ls2c{letter-spacing:0.183680pt;}
.ls1b{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.233067pt;}
.ls19{letter-spacing:0.265600pt;}
.ls21{letter-spacing:0.272533pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.348160pt;}
.lsf{letter-spacing:0.392960pt;}
.ls12{letter-spacing:0.407040pt;}
.ls31{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.504533pt;}
.lsd{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls30{letter-spacing:0.821333pt;}
.ls25{letter-spacing:0.871040pt;}
.ls11{letter-spacing:0.872960pt;}
.ls35{letter-spacing:1.280000pt;}
.ls39{letter-spacing:2.560000pt;}
.ls27{letter-spacing:2.720000pt;}
.ls3c{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls1a{letter-spacing:6.400000pt;}
.ls2f{letter-spacing:7.040000pt;}
.ls34{letter-spacing:8.960000pt;}
.ls3a{letter-spacing:9.600000pt;}
.ls3{letter-spacing:10.240000pt;}
.ls37{letter-spacing:11.520000pt;}
.ls3b{letter-spacing:13.440000pt;}
.ls26{letter-spacing:13.760000pt;}
.ls32{letter-spacing:14.080000pt;}
.ls33{letter-spacing:15.360000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls28{letter-spacing:16.640000pt;}
.ls38{letter-spacing:19.200000pt;}
.ls2e{letter-spacing:175.498667pt;}
.ws18{word-spacing:-53.440000pt;}
.ws17{word-spacing:-53.392533pt;}
.ws1{word-spacing:-18.720000pt;}
.ws1f{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.656960pt;}
.wsf{word-spacing:-15.224533pt;}
.wse{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws1e{word-spacing:-14.101333pt;}
.ws19{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.534613pt;}
.ws1b{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.185067pt;}
.ws1d{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-12.736000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.480533pt;}
.wsa{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.000000pt;}
.ws15{word-spacing:-7.936000pt;}
.ws14{word-spacing:-7.648000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-4.210560pt;}
._9{margin-left:-3.306027pt;}
._6{margin-left:-2.126933pt;}
._0{margin-left:-1.127680pt;}
._2{width:1.063680pt;}
._1{width:2.077013pt;}
._5{width:3.554987pt;}
._8{width:4.981333pt;}
._a{width:6.272000pt;}
._7{width:7.360000pt;}
._13{width:8.320000pt;}
._3{width:9.216000pt;}
._4{width:10.112000pt;}
._b{width:11.032320pt;}
._c{width:12.288000pt;}
._d{width:13.450667pt;}
._14{width:14.784000pt;}
._10{width:17.024000pt;}
._11{width:18.565973pt;}
._17{width:20.071680pt;}
._15{width:21.312000pt;}
._16{width:22.296320pt;}
._e{width:23.360000pt;}
._f{width:24.320000pt;}
._1a{width:26.112000pt;}
._1b{width:27.057920pt;}
._18{width:30.400000pt;}
._19{width:31.872000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:3.026667pt;}
.y1a1{bottom:3.040000pt;}
.y1a3{bottom:3.346667pt;}
.y1a0{bottom:10.720000pt;}
.y18d{bottom:13.266667pt;}
.y17f{bottom:13.280000pt;}
.y18a{bottom:13.426667pt;}
.y164{bottom:13.440000pt;}
.y16f{bottom:13.586667pt;}
.y169{bottom:13.600000pt;}
.y16e{bottom:13.746667pt;}
.y168{bottom:13.760000pt;}
.y17c{bottom:13.786667pt;}
.y16c{bottom:13.800000pt;}
.y171{bottom:13.906667pt;}
.y173{bottom:13.920000pt;}
.y17b{bottom:13.946667pt;}
.y16b{bottom:13.960000pt;}
.yce{bottom:14.080000pt;}
.yf3{bottom:14.226667pt;}
.yde{bottom:14.240000pt;}
.yee{bottom:14.266667pt;}
.yf1{bottom:14.386667pt;}
.yd6{bottom:14.400000pt;}
.yd9{bottom:14.440000pt;}
.yf5{bottom:14.546667pt;}
.yd4{bottom:14.560000pt;}
.ye0{bottom:14.720000pt;}
.y143{bottom:14.880000pt;}
.y194{bottom:15.040000pt;}
.y20a{bottom:15.186667pt;}
.y146{bottom:15.200000pt;}
.y1c8{bottom:15.226667pt;}
.y226{bottom:15.240000pt;}
.y10d{bottom:15.360000pt;}
.y21b{bottom:15.386667pt;}
.y102{bottom:15.400000pt;}
.y108{bottom:15.506667pt;}
.y104{bottom:15.520000pt;}
.y129{bottom:15.560000pt;}
.y10a{bottom:15.666667pt;}
.y106{bottom:15.680000pt;}
.y100{bottom:15.840000pt;}
.y251{bottom:16.152000pt;}
.yff{bottom:16.160000pt;}
.y24a{bottom:18.066667pt;}
.y165{bottom:18.400000pt;}
.y209{bottom:19.826667pt;}
.y204{bottom:19.840000pt;}
.y214{bottom:20.000000pt;}
.y207{bottom:20.040000pt;}
.yd1{bottom:20.800000pt;}
.yef{bottom:20.986667pt;}
.y1d5{bottom:21.920000pt;}
.y163{bottom:23.200000pt;}
.y1cf{bottom:23.520000pt;}
.yd0{bottom:27.040000pt;}
.yd2{bottom:27.360000pt;}
.yed{bottom:27.546667pt;}
.y161{bottom:28.960000pt;}
.y247{bottom:29.306667pt;}
.y24f{bottom:29.906667pt;}
.y1d6{bottom:30.240000pt;}
.y126{bottom:30.720000pt;}
.y202{bottom:31.520000pt;}
.y1ce{bottom:31.680000pt;}
.y1c4{bottom:36.640000pt;}
.y200{bottom:37.120000pt;}
.y1d4{bottom:38.560000pt;}
.y1c6{bottom:42.080000pt;}
.y1d7{bottom:43.520000pt;}
.y250{bottom:45.106667pt;}
.y21a{bottom:48.186667pt;}
.y1c5{bottom:58.560000pt;}
.y7{bottom:61.120000pt;}
.y6{bottom:78.112000pt;}
.y124{bottom:96.352000pt;}
.y252{bottom:97.792000pt;}
.y83{bottom:98.752000pt;}
.yfb{bottom:102.112000pt;}
.y1eb{bottom:102.752000pt;}
.y9c{bottom:103.552000pt;}
.y305{bottom:104.512000pt;}
.ybe{bottom:105.952000pt;}
.y314{bottom:106.912000pt;}
.y27a{bottom:107.872000pt;}
.y1ae{bottom:108.832000pt;}
.y33{bottom:109.312000pt;}
.y221{bottom:109.472000pt;}
.y2a6{bottom:110.752000pt;}
.y24e{bottom:111.080000pt;}
.y5c{bottom:111.232000pt;}
.y15f{bottom:112.992000pt;}
.y294{bottom:113.152000pt;}
.y1fe{bottom:114.432000pt;}
.y123{bottom:114.752000pt;}
.yfa{bottom:117.312000pt;}
.y1c1{bottom:120.032000pt;}
.y2f7{bottom:122.912000pt;}
.y304{bottom:123.072000pt;}
.y141{bottom:124.192000pt;}
.ybd{bottom:124.352000pt;}
.y23d{bottom:124.512000pt;}
.y2ea{bottom:125.312000pt;}
.y279{bottom:126.272000pt;}
.y191{bottom:126.592000pt;}
.y1ad{bottom:127.232000pt;}
.y32{bottom:127.392000pt;}
.y82{bottom:127.712000pt;}
.y2a5{bottom:129.152000pt;}
.y5b{bottom:129.632000pt;}
.ycc{bottom:130.912000pt;}
.y293{bottom:131.552000pt;}
.y1ea{bottom:131.872000pt;}
.y9b{bottom:132.512000pt;}
.yf9{bottom:132.672000pt;}
.y2f6{bottom:141.306667pt;}
.y15e{bottom:141.946667pt;}
.ybc{bottom:142.746667pt;}
.y220{bottom:143.866667pt;}
.y278{bottom:144.666667pt;}
.yf8{bottom:145.320000pt;}
.y2be{bottom:145.466667pt;}
.y1ac{bottom:145.626667pt;}
.y31{bottom:146.106667pt;}
.y2a4{bottom:147.546667pt;}
.y5a{bottom:148.026667pt;}
.y1fd{bottom:148.826667pt;}
.y292{bottom:149.946667pt;}
.y9a{bottom:150.906667pt;}
.y122{bottom:152.826667pt;}
.y140{bottom:153.626667pt;}
.y1c0{bottom:154.426667pt;}
.y190{bottom:154.600000pt;}
.y81{bottom:156.826667pt;}
.y2d6{bottom:157.306667pt;}
.y2e9{bottom:159.706667pt;}
.y1e9{bottom:160.826667pt;}
.ybb{bottom:161.146667pt;}
.y318{bottom:162.266667pt;}
.y277{bottom:163.066667pt;}
.y1ab{bottom:164.026667pt;}
.y30{bottom:164.506667pt;}
.y2a3{bottom:165.946667pt;}
.y59{bottom:166.426667pt;}
.y291{bottom:168.346667pt;}
.y24d{bottom:169.000000pt;}
.ycb{bottom:169.146667pt;}
.y99{bottom:169.306667pt;}
.yf7{bottom:169.320000pt;}
.y15d{bottom:171.066667pt;}
.y13f{bottom:172.026667pt;}
.y2f5{bottom:175.706667pt;}
.y18f{bottom:175.720000pt;}
.y2e8{bottom:178.106667pt;}
.y21f{bottom:178.266667pt;}
.yba{bottom:179.546667pt;}
.y276{bottom:181.466667pt;}
.y1aa{bottom:182.426667pt;}
.y23c{bottom:182.746667pt;}
.y2f{bottom:182.906667pt;}
.y1fc{bottom:183.226667pt;}
.y2a2{bottom:184.346667pt;}
.y80{bottom:185.946667pt;}
.y290{bottom:186.746667pt;}
.y98{bottom:187.706667pt;}
.y1bf{bottom:188.826667pt;}
.y1e8{bottom:189.946667pt;}
.y13e{bottom:190.426667pt;}
.y121{bottom:190.746667pt;}
.y2d5{bottom:191.706667pt;}
.yf6{bottom:193.160000pt;}
.y313{bottom:194.106667pt;}
.y303{bottom:194.266667pt;}
.y58{bottom:195.066667pt;}
.y24c{bottom:196.200000pt;}
.y18e{bottom:196.360000pt;}
.yb9{bottom:197.946667pt;}
.y275{bottom:199.866667pt;}
.y15c{bottom:200.186667pt;}
.y2e{bottom:201.306667pt;}
.y2a1{bottom:202.746667pt;}
.y28f{bottom:205.146667pt;}
.y97{bottom:206.106667pt;}
.yca{bottom:207.546667pt;}
.y13d{bottom:208.826667pt;}
.y2f4{bottom:210.106667pt;}
.y2d4{bottom:210.266667pt;}
.y23b{bottom:211.706667pt;}
.y2e7{bottom:212.506667pt;}
.y21e{bottom:212.666667pt;}
.y7f{bottom:214.906667pt;}
.yb8{bottom:216.346667pt;}
.y2bd{bottom:216.826667pt;}
.yf4{bottom:217.160000pt;}
.y1fb{bottom:217.626667pt;}
.y18c{bottom:217.640000pt;}
.y274{bottom:218.266667pt;}
.y1a9{bottom:218.426667pt;}
.y120{bottom:218.746667pt;}
.y1e7{bottom:219.066667pt;}
.y2d{bottom:219.706667pt;}
.y2a0{bottom:221.146667pt;}
.y1be{bottom:223.226667pt;}
.y24b{bottom:223.400000pt;}
.y28e{bottom:223.546667pt;}
.y57{bottom:224.506667pt;}
.y2d3{bottom:228.506667pt;}
.y15b{bottom:229.146667pt;}
.y312{bottom:230.906667pt;}
.y1a7{bottom:231.080000pt;}
.yb7{bottom:234.746667pt;}
.y273{bottom:236.666667pt;}
.y11f{bottom:237.306667pt;}
.y2c{bottom:238.106667pt;}
.y18b{bottom:238.120000pt;}
.y29f{bottom:239.546667pt;}
.y23a{bottom:240.826667pt;}
.yf2{bottom:241.800000pt;}
.y13c{bottom:241.946667pt;}
.y96{bottom:242.906667pt;}
.y7e{bottom:244.026667pt;}
.yc9{bottom:245.786667pt;}
.y2e6{bottom:246.906667pt;}
.y1a6{bottom:247.080000pt;}
.y21d{bottom:247.226667pt;}
.y1e6{bottom:248.026667pt;}
.y249{bottom:250.600000pt;}
.y2bc{bottom:251.066667pt;}
.y1fa{bottom:252.026667pt;}
.y13b{bottom:252.506667pt;}
.yb6{bottom:253.146667pt;}
.y56{bottom:253.626667pt;}
.y272{bottom:255.066667pt;}
.y11e{bottom:255.706667pt;}
.y2b{bottom:256.186667pt;}
.y1bd{bottom:257.626667pt;}
.y29e{bottom:257.946667pt;}
.y15a{bottom:258.266667pt;}
.y189{bottom:259.400000pt;}
.y28d{bottom:260.346667pt;}
.y95{bottom:261.306667pt;}
.y1a5{bottom:262.440000pt;}
.y2d2{bottom:262.906667pt;}
.y2e5{bottom:265.306667pt;}
.y21c{bottom:265.626667pt;}
.yf0{bottom:265.640000pt;}
.y2bb{bottom:269.626667pt;}
.y239{bottom:269.946667pt;}
.yb5{bottom:271.546667pt;}
.y13a{bottom:272.506667pt;}
.y7d{bottom:273.146667pt;}
.y271{bottom:273.466667pt;}
.y11d{bottom:274.106667pt;}
.y2a{bottom:274.906667pt;}
.y29d{bottom:276.346667pt;}
.y1e5{bottom:277.146667pt;}
.y1a4{bottom:277.800000pt;}
.y28c{bottom:278.746667pt;}
.y94{bottom:279.706667pt;}
.y188{bottom:280.040000pt;}
.y139{bottom:280.520000pt;}
.y302{bottom:281.306667pt;}
.y55{bottom:282.586667pt;}
.yc8{bottom:284.026667pt;}
.y246{bottom:284.200000pt;}
.y1f9{bottom:286.426667pt;}
.y159{bottom:287.386667pt;}
.y2ba{bottom:288.026667pt;}
.yec{bottom:289.640000pt;}
.yb4{bottom:289.946667pt;}
.y7c{bottom:291.866667pt;}
.y1bc{bottom:292.026667pt;}
.y11c{bottom:292.506667pt;}
.y1a2{bottom:293.160000pt;}
.y29{bottom:293.306667pt;}
.y29c{bottom:294.746667pt;}
.y219{bottom:296.040000pt;}
.y28b{bottom:297.146667pt;}
.y2d1{bottom:297.306667pt;}
.y93{bottom:298.106667pt;}
.y238{bottom:298.906667pt;}
.y2e4{bottom:299.746667pt;}
.y301{bottom:299.906667pt;}
.y54{bottom:301.026667pt;}
.y187{bottom:301.186667pt;}
.y1e4{bottom:306.306667pt;}
.yb3{bottom:308.386667pt;}
.y19f{bottom:309.186667pt;}
.y138{bottom:309.506667pt;}
.y7b{bottom:310.306667pt;}
.y11b{bottom:310.946667pt;}
.y28{bottom:311.746667pt;}
.y248{bottom:312.546667pt;}
.y29b{bottom:313.186667pt;}
.y28a{bottom:315.586667pt;}
.y2f3{bottom:315.746667pt;}
.y2d0{bottom:315.906667pt;}
.y158{bottom:316.386667pt;}
.y92{bottom:316.546667pt;}
.y300{bottom:318.146667pt;}
.y311{bottom:318.306667pt;}
.y53{bottom:319.426667pt;}
.y1f8{bottom:320.866667pt;}
.y186{bottom:321.826667pt;}
.yc7{bottom:322.306667pt;}
.y1bb{bottom:326.466667pt;}
.yb2{bottom:326.786667pt;}
.y237{bottom:328.066667pt;}
.y7a{bottom:328.706667pt;}
.y11a{bottom:329.346667pt;}
.y27{bottom:330.146667pt;}
.y289{bottom:333.986667pt;}
.y2cf{bottom:334.146667pt;}
.y91{bottom:334.946667pt;}
.y1e3{bottom:335.266667pt;}
.y310{bottom:336.546667pt;}
.y52{bottom:337.826667pt;}
.y137{bottom:338.306667pt;}
.y29a{bottom:341.986667pt;}
.y185{bottom:342.306667pt;}
.yb1{bottom:345.186667pt;}
.y157{bottom:345.506667pt;}
.y79{bottom:347.106667pt;}
.y119{bottom:347.746667pt;}
.y26{bottom:348.226667pt;}
.y2f2{bottom:350.146667pt;}
.yeb{bottom:350.626667pt;}
.y245{bottom:351.586667pt;}
.y2ff{bottom:352.546667pt;}
.y2e3{bottom:352.706667pt;}
.y218{bottom:352.866667pt;}
.y90{bottom:353.346667pt;}
.y2b9{bottom:353.986667pt;}
.y19e{bottom:355.106667pt;}
.y1f7{bottom:355.266667pt;}
.y1db{bottom:356.226667pt;}
.y236{bottom:357.186667pt;}
.yc6{bottom:360.546667pt;}
.y1ba{bottom:360.706667pt;}
.y51{bottom:362.306667pt;}
.y288{bottom:363.106667pt;}
.yb0{bottom:363.586667pt;}
.y1e2{bottom:364.386667pt;}
.y78{bottom:365.346667pt;}
.y270{bottom:365.506667pt;}
.y118{bottom:366.146667pt;}
.y25{bottom:366.946667pt;}
.y136{bottom:367.266667pt;}
.y2ce{bottom:368.546667pt;}
.y244{bottom:369.986667pt;}
.y2e2{bottom:370.946667pt;}
.y8f{bottom:371.746667pt;}
.y2b8{bottom:372.546667pt;}
.y19d{bottom:373.506667pt;}
.y50{bottom:374.626667pt;}
.y299{bottom:379.106667pt;}
.y217{bottom:380.066667pt;}
.y287{bottom:381.506667pt;}
.yaf{bottom:381.986667pt;}
.y26f{bottom:383.906667pt;}
.y184{bottom:384.226667pt;}
.y117{bottom:384.546667pt;}
.y24{bottom:385.346667pt;}
.y235{bottom:386.146667pt;}
.y2fe{bottom:386.946667pt;}
.y1f6{bottom:389.666667pt;}
.y8e{bottom:390.146667pt;}
.y2b7{bottom:390.946667pt;}
.y4f{bottom:393.026667pt;}
.y1e1{bottom:393.506667pt;}
.y1b9{bottom:395.426667pt;}
.y135{bottom:396.066667pt;}
.y298{bottom:397.506667pt;}
.yea{bottom:398.466667pt;}
.yc5{bottom:398.786667pt;}
.y243{bottom:399.106667pt;}
.y77{bottom:399.906667pt;}
.yae{bottom:400.386667pt;}
.y26e{bottom:402.306667pt;}
.y116{bottom:402.946667pt;}
.y2f1{bottom:403.106667pt;}
.y156{bottom:403.586667pt;}
.y23{bottom:403.746667pt;}
.y183{bottom:405.346667pt;}
.y216{bottom:407.266667pt;}
.y19c{bottom:407.906667pt;}
.y8d{bottom:408.546667pt;}
.y1da{bottom:410.626667pt;}
.y4e{bottom:411.426667pt;}
.y1b8{bottom:413.826667pt;}
.y234{bottom:415.586667pt;}
.y297{bottom:415.906667pt;}
.y242{bottom:417.506667pt;}
.y286{bottom:418.306667pt;}
.yad{bottom:418.786667pt;}
.y26d{bottom:420.706667pt;}
.y115{bottom:421.346667pt;}
.y2cd{bottom:421.506667pt;}
.y22{bottom:422.146667pt;}
.ye9{bottom:422.466667pt;}
.y2b6{bottom:422.626667pt;}
.y1d9{bottom:423.426667pt;}
.y30f{bottom:423.746667pt;}
.y1f5{bottom:424.226667pt;}
.y134{bottom:425.026667pt;}
.y182{bottom:425.986667pt;}
.y19b{bottom:426.306667pt;}
.y8c{bottom:426.946667pt;}
.y4d{bottom:429.826667pt;}
.y1b7{bottom:432.226667pt;}
.y155{bottom:432.706667pt;}
.y76{bottom:433.986667pt;}
.y296{bottom:434.306667pt;}
.y215{bottom:434.466667pt;}
.y241{bottom:435.906667pt;}
.y285{bottom:436.706667pt;}
.yac{bottom:437.186667pt;}
.y26c{bottom:439.106667pt;}
.y114{bottom:439.746667pt;}
.y21{bottom:440.546667pt;}
.y1f4{bottom:442.626667pt;}
.y19a{bottom:444.706667pt;}
.y8b{bottom:445.346667pt;}
.ye8{bottom:446.306667pt;}
.y181{bottom:447.266667pt;}
.y4c{bottom:448.226667pt;}
.y1b6{bottom:450.626667pt;}
.y1d8{bottom:451.266667pt;}
.y1e0{bottom:451.906667pt;}
.y75{bottom:452.386667pt;}
.y295{bottom:452.706667pt;}
.y133{bottom:453.826667pt;}
.y240{bottom:454.306667pt;}
.y284{bottom:455.106667pt;}
.yab{bottom:455.586667pt;}
.y2f0{bottom:455.746667pt;}
.y2b5{bottom:457.026667pt;}
.y26b{bottom:457.506667pt;}
.y113{bottom:458.146667pt;}
.y20{bottom:458.626667pt;}
.y1f3{bottom:461.026667pt;}
.y213{bottom:461.666667pt;}
.y154{bottom:461.826667pt;}
.y8a{bottom:463.746667pt;}
.y4b{bottom:466.626667pt;}
.y180{bottom:467.746667pt;}
.y1b5{bottom:469.026667pt;}
.ye7{bottom:470.146667pt;}
.y1df{bottom:470.306667pt;}
.y233{bottom:470.786667pt;}
.y74{bottom:471.106667pt;}
.y283{bottom:473.506667pt;}
.yaa{bottom:473.826667pt;}
.y2cc{bottom:474.146667pt;}
.yc4{bottom:475.426667pt;}
.y2b4{bottom:475.586667pt;}
.y26a{bottom:475.906667pt;}
.y112{bottom:476.546667pt;}
.y1f{bottom:477.346667pt;}
.y1d3{bottom:479.106667pt;}
.y1f2{bottom:479.426667pt;}
.y199{bottom:480.866667pt;}
.y89{bottom:482.146667pt;}
.y132{bottom:482.626667pt;}
.y4a{bottom:485.026667pt;}
.y1b4{bottom:487.426667pt;}
.y1de{bottom:488.706667pt;}
.y17e{bottom:489.026667pt;}
.y232{bottom:489.186667pt;}
.y73{bottom:489.506667pt;}
.y2ef{bottom:490.146667pt;}
.y23f{bottom:490.466667pt;}
.y153{bottom:490.786667pt;}
.y282{bottom:491.906667pt;}
.ya9{bottom:492.226667pt;}
.y2e1{bottom:492.546667pt;}
.y2fd{bottom:492.706667pt;}
.y198{bottom:493.506667pt;}
.y2b3{bottom:493.826667pt;}
.y269{bottom:494.306667pt;}
.ye6{bottom:494.946667pt;}
.y1e{bottom:495.746667pt;}
.y88{bottom:500.546667pt;}
.y49{bottom:503.426667pt;}
.y1dd{bottom:507.106667pt;}
.y231{bottom:507.586667pt;}
.y72{bottom:507.906667pt;}
.y2cb{bottom:508.546667pt;}
.y2ee{bottom:508.706667pt;}
.y17d{bottom:509.506667pt;}
.y281{bottom:510.306667pt;}
.ya8{bottom:510.626667pt;}
.y23e{bottom:510.946667pt;}
.y30e{bottom:511.106667pt;}
.y131{bottom:511.586667pt;}
.y268{bottom:512.706667pt;}
.y1f1{bottom:513.186667pt;}
.y111{bottom:513.346667pt;}
.yc3{bottom:513.666667pt;}
.y1d{bottom:514.146667pt;}
.y212{bottom:516.226667pt;}
.ye5{bottom:518.786667pt;}
.y87{bottom:518.946667pt;}
.y152{bottom:519.906667pt;}
.y197{bottom:520.706667pt;}
.y48{bottom:521.826667pt;}
.y1b3{bottom:525.506667pt;}
.y230{bottom:525.986667pt;}
.y71{bottom:526.306667pt;}
.y2e0{bottom:526.946667pt;}
.y2ca{bottom:527.106667pt;}
.y2b2{bottom:528.226667pt;}
.y1f0{bottom:528.546667pt;}
.y280{bottom:528.706667pt;}
.ya7{bottom:529.026667pt;}
.y30d{bottom:529.346667pt;}
.y17a{bottom:530.786667pt;}
.y267{bottom:531.106667pt;}
.y110{bottom:531.746667pt;}
.y1c{bottom:532.546667pt;}
.y1d2{bottom:536.386667pt;}
.y86{bottom:537.373333pt;}
.y47{bottom:540.253333pt;}
.y130{bottom:540.413333pt;}
.y211{bottom:543.453333pt;}
.ye4{bottom:543.613333pt;}
.y1ef{bottom:543.933333pt;}
.y70{bottom:544.733333pt;}
.y2c9{bottom:545.373333pt;}
.y27f{bottom:547.133333pt;}
.ya6{bottom:547.453333pt;}
.y196{bottom:547.933333pt;}
.y151{bottom:549.053333pt;}
.y266{bottom:549.533333pt;}
.y10f{bottom:550.173333pt;}
.y1b{bottom:550.973333pt;}
.yc2{bottom:551.933333pt;}
.y179{bottom:552.093333pt;}
.y85{bottom:555.773333pt;}
.y46{bottom:558.333333pt;}
.y1ee{bottom:559.293333pt;}
.y2ed{bottom:561.373333pt;}
.y1dc{bottom:561.533333pt;}
.y1b2{bottom:561.853333pt;}
.y22f{bottom:562.173333pt;}
.y2b1{bottom:562.653333pt;}
.y6f{bottom:563.133333pt;}
.y317{bottom:563.453333pt;}
.y1d1{bottom:563.613333pt;}
.y30c{bottom:563.773333pt;}
.y27e{bottom:565.533333pt;}
.ya5{bottom:565.853333pt;}
.ye3{bottom:567.453333pt;}
.y265{bottom:567.933333pt;}
.y1a{bottom:569.373333pt;}
.y210{bottom:570.653333pt;}
.y178{bottom:573.213333pt;}
.y1ed{bottom:574.653333pt;}
.y195{bottom:575.133333pt;}
.y22e{bottom:577.533333pt;}
.y150{bottom:578.013333pt;}
.yc1{bottom:579.773333pt;}
.y2b0{bottom:581.053333pt;}
.y6e{bottom:581.533333pt;}
.y27d{bottom:583.933333pt;}
.ya4{bottom:584.253333pt;}
.y10e{bottom:586.173333pt;}
.y264{bottom:586.333333pt;}
.y19{bottom:587.773333pt;}
.y1ec{bottom:589.853333pt;}
.y1d0{bottom:590.813333pt;}
.y84{bottom:591.773333pt;}
.y22d{bottom:592.733333pt;}
.ye2{bottom:593.533333pt;}
.y177{bottom:594.493333pt;}
.y2ec{bottom:595.773333pt;}
.y20f{bottom:597.853333pt;}
.y12f{bottom:598.173333pt;}
.yc0{bottom:598.333333pt;}
.y10c{bottom:598.813333pt;}
.y6d{bottom:599.933333pt;}
.y27c{bottom:602.333333pt;}
.ya3{bottom:602.653333pt;}
.y192{bottom:602.973333pt;}
.y263{bottom:604.733333pt;}
.y22c{bottom:605.533333pt;}
.y18{bottom:606.173333pt;}
.y14f{bottom:607.133333pt;}
.y2c8{bottom:614.173333pt;}
.y2eb{bottom:614.333333pt;}
.y2af{bottom:615.453333pt;}
.y176{bottom:615.613333pt;}
.y30b{bottom:616.573333pt;}
.y45{bottom:616.733333pt;}
.y1cd{bottom:618.013333pt;}
.y6c{bottom:618.333333pt;}
.ye1{bottom:618.813333pt;}
.y27b{bottom:620.573333pt;}
.ya2{bottom:621.053333pt;}
.y262{bottom:623.133333pt;}
.y17{bottom:624.573333pt;}
.y20e{bottom:625.053333pt;}
.y12e{bottom:626.973333pt;}
.y10b{bottom:628.413333pt;}
.y193{bottom:630.973333pt;}
.y2df{bottom:632.573333pt;}
.y22b{bottom:632.733333pt;}
.y316{bottom:634.973333pt;}
.y44{bottom:635.133333pt;}
.y14e{bottom:636.253333pt;}
.y6b{bottom:636.733333pt;}
.ya1{bottom:639.453333pt;}
.y261{bottom:641.533333pt;}
.ydf{bottom:642.653333pt;}
.y16{bottom:642.973333pt;}
.y2ae{bottom:649.853333pt;}
.y2c7{bottom:650.973333pt;}
.y20d{bottom:652.253333pt;}
.y43{bottom:653.533333pt;}
.y6a{bottom:655.133333pt;}
.y12d{bottom:655.933333pt;}
.y109{bottom:657.226667pt;}
.y175{bottom:657.373333pt;}
.y22a{bottom:659.933333pt;}
.y15{bottom:661.373333pt;}
.y1cc{bottom:661.693333pt;}
.y14d{bottom:665.533333pt;}
.y2de{bottom:666.973333pt;}
.ydd{bottom:667.453333pt;}
.y315{bottom:669.373333pt;}
.y42{bottom:671.933333pt;}
.y69{bottom:673.533333pt;}
.ya0{bottom:677.693333pt;}
.y260{bottom:678.333333pt;}
.y174{bottom:678.653333pt;}
.y14{bottom:679.453333pt;}
.y20c{bottom:679.466667pt;}
.y14c{bottom:683.933333pt;}
.y12c{bottom:684.733333pt;}
.y2c6{bottom:685.373333pt;}
.y2fc{bottom:685.533333pt;}
.y107{bottom:686.186667pt;}
.y229{bottom:687.133333pt;}
.y1cb{bottom:688.893333pt;}
.y41{bottom:690.333333pt;}
.ydc{bottom:691.293333pt;}
.y68{bottom:691.933333pt;}
.y2ad{bottom:693.053333pt;}
.y25f{bottom:696.733333pt;}
.y13{bottom:697.853333pt;}
.y172{bottom:699.773333pt;}
.y2dd{bottom:701.373333pt;}
.y14b{bottom:702.333333pt;}
.y2fb{bottom:703.773333pt;}
.y30a{bottom:703.933333pt;}
.y20b{bottom:706.666667pt;}
.y40{bottom:708.733333pt;}
.ybf{bottom:710.173333pt;}
.y67{bottom:710.333333pt;}
.y12b{bottom:713.706667pt;}
.y9f{bottom:713.853333pt;}
.y228{bottom:714.346667pt;}
.y105{bottom:714.973333pt;}
.y25e{bottom:715.133333pt;}
.ydb{bottom:715.933333pt;}
.y1ca{bottom:716.093333pt;}
.y12{bottom:716.573333pt;}
.y2c5{bottom:719.773333pt;}
.y2dc{bottom:719.933333pt;}
.y170{bottom:721.066667pt;}
.y309{bottom:722.173333pt;}
.y2ac{bottom:722.813333pt;}
.y3f{bottom:727.133333pt;}
.y66{bottom:728.733333pt;}
.y25d{bottom:733.533333pt;}
.y208{bottom:734.506667pt;}
.y11{bottom:734.973333pt;}
.y9e{bottom:735.133333pt;}
.y2db{bottom:738.173333pt;}
.y2c4{bottom:738.333333pt;}
.y14a{bottom:738.493333pt;}
.yda{bottom:739.933333pt;}
.y227{bottom:741.533333pt;}
.y16d{bottom:742.346667pt;}
.y12a{bottom:742.506667pt;}
.y1c9{bottom:743.293333pt;}
.y103{bottom:743.933333pt;}
.y3e{bottom:745.533333pt;}
.y65{bottom:747.133333pt;}
.y149{bottom:751.133333pt;}
.y25c{bottom:751.933333pt;}
.y10{bottom:753.373333pt;}
.y2ab{bottom:754.813333pt;}
.y2c3{bottom:756.573333pt;}
.y206{bottom:761.693333pt;}
.y16a{bottom:763.453333pt;}
.y3d{bottom:763.933333pt;}
.yd8{bottom:764.573333pt;}
.y64{bottom:765.533333pt;}
.y225{bottom:768.733333pt;}
.y25b{bottom:770.333333pt;}
.y1c7{bottom:770.666667pt;}
.y128{bottom:771.453333pt;}
.yf{bottom:771.773333pt;}
.y2da{bottom:772.573333pt;}
.y2aa{bottom:773.213333pt;}
.y101{bottom:773.373333pt;}
.y148{bottom:778.373333pt;}
.y3c{bottom:782.373333pt;}
.y63{bottom:783.973333pt;}
.y167{bottom:784.773333pt;}
.yd7{bottom:788.613333pt;}
.y25a{bottom:788.773333pt;}
.y205{bottom:789.093333pt;}
.ye{bottom:789.893333pt;}
.y308{bottom:790.853333pt;}
.y2c2{bottom:791.013333pt;}
.y2a9{bottom:791.653333pt;}
.y224{bottom:795.973333pt;}
.y1c3{bottom:798.533333pt;}
.y3b{bottom:800.773333pt;}
.y125{bottom:800.933333pt;}
.y62{bottom:802.373333pt;}
.yfe{bottom:803.013333pt;}
.y147{bottom:805.573333pt;}
.y166{bottom:805.893333pt;}
.y2d9{bottom:806.853333pt;}
.y259{bottom:807.013333pt;}
.yd{bottom:808.613333pt;}
.y2fa{bottom:809.413333pt;}
.y2a8{bottom:810.053333pt;}
.yd5{bottom:813.253333pt;}
.y203{bottom:816.293333pt;}
.y3a{bottom:819.173333pt;}
.y61{bottom:820.773333pt;}
.y222{bottom:823.813333pt;}
.y2c1{bottom:825.253333pt;}
.y258{bottom:825.413333pt;}
.y160{bottom:827.173333pt;}
.y307{bottom:827.813333pt;}
.y127{bottom:831.653333pt;}
.y145{bottom:832.773333pt;}
.yd3{bottom:837.253333pt;}
.y39{bottom:837.573333pt;}
.yc{bottom:837.893333pt;}
.y2a7{bottom:838.693333pt;}
.y60{bottom:839.013333pt;}
.y257{bottom:843.813333pt;}
.y1ff{bottom:844.133333pt;}
.yfd{bottom:848.293333pt;}
.y162{bottom:848.453333pt;}
.y223{bottom:851.813333pt;}
.y1b1{bottom:855.013333pt;}
.y38{bottom:855.653333pt;}
.y5f{bottom:857.413333pt;}
.yb{bottom:859.333333pt;}
.y142{bottom:860.613333pt;}
.ycf{bottom:861.893333pt;}
.y256{bottom:862.213333pt;}
.yfc{bottom:866.693333pt;}
.y1c2{bottom:870.213333pt;}
.y201{bottom:871.973333pt;}
.y1b0{bottom:873.413333pt;}
.y5e{bottom:875.813333pt;}
.y2f9{bottom:878.053333pt;}
.y2d8{bottom:878.213333pt;}
.y255{bottom:880.613333pt;}
.ya{bottom:880.773333pt;}
.y144{bottom:888.613333pt;}
.y37{bottom:894.053333pt;}
.y5d{bottom:894.213333pt;}
.y306{bottom:896.453333pt;}
.y2c0{bottom:896.613333pt;}
.ycd{bottom:900.453333pt;}
.y1af{bottom:902.693333pt;}
.y2d7{bottom:912.453333pt;}
.y36{bottom:912.613333pt;}
.y9{bottom:914.053333pt;}
.y2f8{bottom:915.013333pt;}
.y254{bottom:915.173333pt;}
.y2bf{bottom:930.853333pt;}
.y35{bottom:931.013333pt;}
.y8{bottom:941.573333pt;}
.y253{bottom:949.093333pt;}
.y9d{bottom:949.253333pt;}
.y34{bottom:949.413333pt;}
.y5{bottom:967.973333pt;}
.y4{bottom:985.893333pt;}
.y3{bottom:1005.253333pt;}
.y2{bottom:1023.520000pt;}
.y1{bottom:1041.760000pt;}
.h4a{height:15.346667pt;}
.h49{height:15.378667pt;}
.h42{height:20.466667pt;}
.h36{height:20.626667pt;}
.h40{height:20.640000pt;}
.h37{height:21.106667pt;}
.h3f{height:21.120000pt;}
.h43{height:21.138667pt;}
.h3c{height:21.266667pt;}
.h3d{height:21.280000pt;}
.h3a{height:21.300000pt;}
.h41{height:21.306667pt;}
.hd{height:23.826667pt;}
.h17{height:23.840000pt;}
.h13{height:23.986667pt;}
.h16{height:24.000000pt;}
.h14{height:24.020000pt;}
.h3e{height:24.265625pt;}
.h11{height:24.626667pt;}
.h15{height:24.640000pt;}
.h1a{height:24.786667pt;}
.h18{height:24.800000pt;}
.h19{height:24.826667pt;}
.h30{height:27.186667pt;}
.h45{height:27.200000pt;}
.h4c{height:27.218667pt;}
.h31{height:27.220000pt;}
.h47{height:27.226667pt;}
.h53{height:27.346667pt;}
.h46{height:27.360000pt;}
.h52{height:27.380000pt;}
.h58{height:27.698667pt;}
.h57{height:27.826667pt;}
.h23{height:28.786667pt;}
.h20{height:28.800000pt;}
.h28{height:28.820000pt;}
.h29{height:28.826667pt;}
.h24{height:28.946667pt;}
.h22{height:28.960000pt;}
.h2a{height:28.978667pt;}
.h1f{height:28.980000pt;}
.h1d{height:29.906667pt;}
.h27{height:30.066667pt;}
.h34{height:30.546667pt;}
.h48{height:30.706667pt;}
.h3b{height:31.390625pt;}
.h38{height:31.406250pt;}
.h39{height:31.828125pt;}
.h35{height:32.250000pt;}
.h33{height:32.765625pt;}
.h59{height:32.946667pt;}
.h54{height:33.901875pt;}
.h2b{height:33.918750pt;}
.hf{height:37.106667pt;}
.h1b{height:37.138667pt;}
.h56{height:38.220000pt;}
.h2d{height:39.227500pt;}
.h51{height:40.003750pt;}
.ha{height:42.084375pt;}
.h12{height:42.649687pt;}
.h10{height:43.215000pt;}
.h4d{height:43.680000pt;}
.h50{height:43.826667pt;}
.he{height:43.905937pt;}
.h32{height:51.826667pt;}
.h1c{height:52.134375pt;}
.h2c{height:52.478750pt;}
.hc{height:53.535000pt;}
.h2f{height:55.186667pt;}
.h44{height:55.200000pt;}
.h55{height:56.178667pt;}
.h5a{height:57.112000pt;}
.h4e{height:57.266667pt;}
.h5b{height:57.375000pt;}
.h21{height:57.758750pt;}
.h2{height:57.787500pt;}
.h3{height:58.563750pt;}
.h4{height:58.740000pt;}
.h25{height:59.340000pt;}
.h26{height:59.666667pt;}
.h1e{height:60.288750pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:66.404375pt;}
.h2e{height:67.837500pt;}
.h4b{height:70.866667pt;}
.h4f{height:71.666667pt;}
.h6{height:75.465000pt;}
.h5{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:20.960000pt;}
.w31{width:21.152000pt;}
.w2e{width:21.920000pt;}
.w2f{width:31.040000pt;}
.w34{width:31.986667pt;}
.w32{width:32.946667pt;}
.w5d{width:35.026667pt;}
.w22{width:35.040000pt;}
.w24{width:35.186667pt;}
.w20{width:35.200000pt;}
.w26{width:35.346667pt;}
.w1e{width:35.506667pt;}
.w2b{width:35.986667pt;}
.w35{width:42.066667pt;}
.w64{width:42.386667pt;}
.w61{width:42.706667pt;}
.w1f{width:43.058667pt;}
.w5e{width:43.858667pt;}
.w36{width:43.986667pt;}
.w33{width:44.018667pt;}
.w63{width:45.586667pt;}
.w25{width:50.706667pt;}
.w21{width:50.720000pt;}
.w27{width:50.738667pt;}
.w23{width:50.912000pt;}
.w28{width:53.266667pt;}
.w62{width:55.058667pt;}
.w5{width:56.146667pt;}
.w60{width:60.032000pt;}
.w2c{width:61.906667pt;}
.w5f{width:63.040000pt;}
.w3f{width:63.506667pt;}
.w3e{width:66.066667pt;}
.w7{width:67.826667pt;}
.w4a{width:75.058667pt;}
.w56{width:76.152000pt;}
.w9{width:77.586667pt;}
.w59{width:77.746667pt;}
.wf{width:77.778667pt;}
.w18{width:78.578667pt;}
.w57{width:78.898667pt;}
.w48{width:80.178667pt;}
.w6c{width:80.466667pt;}
.w6d{width:80.498667pt;}
.w6e{width:80.946667pt;}
.w3a{width:84.160000pt;}
.w39{width:84.178667pt;}
.w3b{width:84.192000pt;}
.w68{width:84.466667pt;}
.w69{width:84.498667pt;}
.w6a{width:84.786667pt;}
.w1b{width:85.906667pt;}
.w19{width:85.920000pt;}
.w1a{width:85.952000pt;}
.w1c{width:86.098667pt;}
.w47{width:86.226667pt;}
.w52{width:86.578667pt;}
.w49{width:86.706667pt;}
.w5b{width:87.986667pt;}
.w51{width:88.466667pt;}
.w1d{width:88.786667pt;}
.w17{width:89.912000pt;}
.w46{width:89.952000pt;}
.w4b{width:91.826667pt;}
.w6{width:94.578667pt;}
.w2a{width:95.072000pt;}
.w4f{width:96.658667pt;}
.w58{width:98.080000pt;}
.w38{width:99.832000pt;}
.w67{width:99.872000pt;}
.w5a{width:100.658667pt;}
.wd{width:104.320000pt;}
.w50{width:105.152000pt;}
.w53{width:107.186667pt;}
.w16{width:110.866667pt;}
.w14{width:111.072000pt;}
.w13{width:111.200000pt;}
.w15{width:111.218667pt;}
.w6b{width:111.712000pt;}
.w4e{width:120.632000pt;}
.w10{width:121.106667pt;}
.w3d{width:122.738667pt;}
.w4{width:122.912000pt;}
.we{width:124.032000pt;}
.w40{width:128.312000pt;}
.w11{width:160.338667pt;}
.w4d{width:166.893333pt;}
.w45{width:167.213333pt;}
.w4c{width:176.346667pt;}
.w44{width:176.666667pt;}
.wa{width:177.458667pt;}
.w2d{width:195.053333pt;}
.w42{width:196.173333pt;}
.wc{width:198.893333pt;}
.wb{width:228.346667pt;}
.w29{width:230.098667pt;}
.w65{width:251.058667pt;}
.w3c{width:252.333333pt;}
.w3{width:273.458667pt;}
.w41{width:280.213333pt;}
.w43{width:283.538667pt;}
.w54{width:290.293333pt;}
.w8{width:318.778667pt;}
.w66{width:353.666667pt;}
.w12{width:444.386667pt;}
.w5c{width:538.480000pt;}
.w55{width:604.720000pt;}
.w2{width:614.960000pt;}
.w37{width:618.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:4.632000pt;}
.x41{left:6.386667pt;}
.x8d{left:7.832000pt;}
.x60{left:8.960000pt;}
.x64{left:10.706667pt;}
.x69{left:12.000000pt;}
.x25{left:12.946667pt;}
.x3a{left:14.706667pt;}
.x43{left:16.480000pt;}
.x40{left:17.920000pt;}
.x29{left:19.360000pt;}
.x38{left:20.306667pt;}
.x39{left:21.426667pt;}
.x27{left:22.906667pt;}
.x2f{left:24.146667pt;}
.x7f{left:25.600000pt;}
.x37{left:26.546667pt;}
.x2b{left:27.986667pt;}
.x68{left:29.426667pt;}
.x31{left:31.200000pt;}
.x7b{left:32.480000pt;}
.x2d{left:33.920000pt;}
.x81{left:35.386667pt;}
.x8c{left:36.626667pt;}
.x36{left:38.706667pt;}
.x33{left:40.026667pt;}
.x44{left:41.120000pt;}
.x50{left:42.706667pt;}
.x30{left:43.866667pt;}
.x46{left:44.800000pt;}
.x4f{left:46.240000pt;}
.x2c{left:47.226667pt;}
.x48{left:48.480000pt;}
.x45{left:49.440000pt;}
.x32{left:50.426667pt;}
.x2e{left:51.706667pt;}
.x49{left:53.120000pt;}
.x47{left:54.586667pt;}
.x6c{left:55.506667pt;}
.x24{left:58.106667pt;}
.x2a{left:61.466667pt;}
.x84{left:62.426667pt;}
.x95{left:63.386667pt;}
.x6d{left:65.426667pt;}
.x78{left:67.186667pt;}
.x3f{left:68.346667pt;}
.x90{left:71.546667pt;}
.x6b{left:73.586667pt;}
.x73{left:75.666667pt;}
.x75{left:77.426667pt;}
.x71{left:78.706667pt;}
.x6a{left:80.626667pt;}
.x3d{left:85.920000pt;}
.x6e{left:86.866667pt;}
.x3b{left:88.626667pt;}
.x70{left:95.986667pt;}
.x82{left:99.066667pt;}
.x86{left:102.120000pt;}
.x9b{left:103.706667pt;}
.x8f{left:105.106667pt;}
.x5d{left:106.760000pt;}
.x87{left:108.946667pt;}
.x2{left:113.472000pt;}
.x83{left:116.186667pt;}
.x85{left:122.106667pt;}
.x19{left:123.392000pt;}
.x4{left:124.352000pt;}
.x5{left:128.512000pt;}
.x8e{left:130.066667pt;}
.x1f{left:132.352000pt;}
.xa2{left:139.066667pt;}
.x88{left:141.906667pt;}
.x6{left:144.186667pt;}
.x1e{left:160.666667pt;}
.xa5{left:166.746667pt;}
.x18{left:171.386667pt;}
.xa6{left:176.826667pt;}
.x4b{left:177.786667pt;}
.x15{left:182.426667pt;}
.x96{left:184.680000pt;}
.x20{left:188.986667pt;}
.x52{left:203.400000pt;}
.x79{left:213.320000pt;}
.x9c{left:219.720000pt;}
.x34{left:230.906667pt;}
.x91{left:234.120000pt;}
.x57{left:238.920000pt;}
.x21{left:240.986667pt;}
.x1{left:246.426667pt;}
.x97{left:263.586667pt;}
.xb{left:271.266667pt;}
.x4a{left:273.826667pt;}
.x53{left:282.626667pt;}
.x72{left:284.986667pt;}
.x77{left:286.906667pt;}
.x6f{left:288.986667pt;}
.x3c{left:290.946667pt;}
.x74{left:292.986667pt;}
.x76{left:295.226667pt;}
.x7a{left:297.506667pt;}
.x9d{left:298.626667pt;}
.x58{left:317.826667pt;}
.xa{left:331.426667pt;}
.x5e{left:336.866667pt;}
.x61{left:358.786667pt;}
.x98{left:361.666667pt;}
.xa1{left:364.546667pt;}
.x54{left:369.346667pt;}
.x7c{left:381.666667pt;}
.x4c{left:385.026667pt;}
.x23{left:386.946667pt;}
.x62{left:389.826667pt;}
.x7{left:394.626667pt;}
.x9e{left:396.706667pt;}
.x59{left:404.386667pt;}
.x63{left:410.786667pt;}
.x14{left:425.373333pt;}
.x35{left:432.266667pt;}
.x92{left:435.946667pt;}
.x55{left:455.946667pt;}
.x1b{left:463.773333pt;}
.x7d{left:465.866667pt;}
.xc{left:467.293333pt;}
.x17{left:468.733333pt;}
.x89{left:475.786667pt;}
.x1a{left:479.293333pt;}
.x5a{left:491.146667pt;}
.x4d{left:496.106667pt;}
.x9{left:510.653333pt;}
.xf{left:516.573333pt;}
.x3e{left:519.306667pt;}
.x13{left:521.373333pt;}
.x93{left:524.426667pt;}
.x5f{left:529.866667pt;}
.xd{left:532.093333pt;}
.x99{left:534.506667pt;}
.xe{left:543.293333pt;}
.x1d{left:546.813333pt;}
.xa3{left:548.906667pt;}
.x12{left:551.613333pt;}
.x10{left:557.533333pt;}
.x65{left:562.826667pt;}
.x26{left:566.026667pt;}
.x16{left:571.133333pt;}
.x1c{left:573.853333pt;}
.x5b{left:577.866667pt;}
.x11{left:586.373333pt;}
.x7e{left:588.613333pt;}
.x9f{left:589.573333pt;}
.x42{left:597.093333pt;}
.x4e{left:607.333333pt;}
.x94{left:611.013333pt;}
.x56{left:629.413333pt;}
.xa4{left:633.413333pt;}
.x9a{left:635.173333pt;}
.x8b{left:637.733333pt;}
.x66{left:638.853333pt;}
.x8a{left:642.853333pt;}
.x80{left:654.693333pt;}
.x28{left:660.613333pt;}
.x5c{left:664.933333pt;}
.xa0{left:677.573333pt;}
.x67{left:680.933333pt;}
.x51{left:703.493333pt;}
.x3{left:711.013333pt;}
.x8{left:718.373333pt;}
}




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