
    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_30caeb612873d35c55635366.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1c6761a9a7a114cbba564349.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_2354d13e41e7ed37de7d6891.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068000;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_42fbf872031006c54e84fc4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_79f9ba8657f4d3dfe8f9d76f.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_9d428b8946d061e9e22c3075.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_194156c46e6538e4d61fdf55.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7afbb5662e5c80f5cbc28486.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_78cd3e5f82d7ed824577f972.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_60797eeb42df49cf0351d405.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2d861cb5c1a7f5edee462b71.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6faed6cc70e395fa92c447a0.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a71336e58b5716326f67dbc0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7f4640d1389c471253fa5f42.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0407d313aba4bf03279e2b27.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_17935921021b5302c2571826.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2f12948612e27f09b2c0a563.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d3b5aa19049d314a4c06596b.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7520bec9ff2562559ce6825f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_de02df31fc424f298c9293b5.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c4b35fc586fea386fd198cdc.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_7652bec1b7cc4a140b0114a9.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7b82dc92be9eb3903af66e8e.woff2')format("woff");}.ff17{font-family:ff17;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;}
.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);}
.v28{vertical-align:-84.960000px;}
.v2e{vertical-align:-67.680000px;}
.v23{vertical-align:-37.440000px;}
.v12{vertical-align:-31.680000px;}
.v30{vertical-align:-28.800000px;}
.v27{vertical-align:-27.360000px;}
.v1e{vertical-align:-25.920000px;}
.v1c{vertical-align:-24.480000px;}
.v2f{vertical-align:-23.040000px;}
.v1f{vertical-align:-21.600000px;}
.v10{vertical-align:-20.160000px;}
.v29{vertical-align:-18.720000px;}
.v13{vertical-align:-17.280000px;}
.va{vertical-align:-15.840000px;}
.vb{vertical-align:-14.400000px;}
.vd{vertical-align:-12.960000px;}
.v16{vertical-align:-11.520000px;}
.v14{vertical-align:-10.080000px;}
.ve{vertical-align:-8.640000px;}
.v11{vertical-align:-7.200000px;}
.vf{vertical-align:-5.760000px;}
.v1{vertical-align:-4.320000px;}
.v3{vertical-align:-2.880000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440000px;}
.v6{vertical-align:2.880000px;}
.v9{vertical-align:4.320000px;}
.v5{vertical-align:5.760000px;}
.v7{vertical-align:7.200000px;}
.v18{vertical-align:8.640000px;}
.v17{vertical-align:10.080000px;}
.v8{vertical-align:11.520000px;}
.v15{vertical-align:12.960000px;}
.v19{vertical-align:14.400000px;}
.v1b{vertical-align:15.840000px;}
.vc{vertical-align:17.280000px;}
.v25{vertical-align:18.720000px;}
.v1a{vertical-align:20.160000px;}
.v26{vertical-align:21.600000px;}
.v22{vertical-align:23.040000px;}
.v21{vertical-align:24.480000px;}
.v2d{vertical-align:25.920000px;}
.v1d{vertical-align:27.360000px;}
.v20{vertical-align:28.800000px;}
.v24{vertical-align:30.240000px;}
.v2c{vertical-align:31.680000px;}
.v2a{vertical-align:33.120000px;}
.v2b{vertical-align:36.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:144.270000px;}
.ls3{letter-spacing:151.272000px;}
.ls1{letter-spacing:186.030000px;}
.ls4{letter-spacing:1372.998000px;}
.ls6{letter-spacing:1595.592000px;}
.ls5{letter-spacing:1918.152000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:2.640000px;}
.ws1{word-spacing:6.591000px;}
.ws3{word-spacing:2151.900000px;}
._11{margin-left:-5.940000px;}
._12{margin-left:-3.480000px;}
._e{margin-left:-2.400000px;}
._16{margin-left:-1.245000px;}
._3{width:1.992000px;}
._0{width:3.060000px;}
._1{width:4.560000px;}
._8{width:6.273000px;}
._9{width:7.983000px;}
._a{width:9.582000px;}
._6{width:10.830000px;}
._5{width:12.627000px;}
._d{width:13.926000px;}
._4{width:15.426000px;}
._7{width:17.274000px;}
._b{width:18.999000px;}
._2{width:20.478000px;}
._f{width:22.017000px;}
._15{width:23.238000px;}
._c{width:24.387000px;}
._10{width:26.688000px;}
._13{width:28.650000px;}
._14{width:31.596000px;}
._18{width:962.211000px;}
._17{width:1374.720000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs2f{font-size:24.000000px;}
.fs2e{font-size:27.000000px;}
.fs2d{font-size:30.000000px;}
.fs2b{font-size:33.000000px;}
.fs2c{font-size:36.000000px;}
.fs14{font-size:39.000000px;}
.fs27{font-size:42.000000px;}
.fs25{font-size:45.000000px;}
.fs26{font-size:48.000000px;}
.fs23{font-size:51.000000px;}
.fs22{font-size:54.000000px;}
.fs24{font-size:57.000000px;}
.fs21{font-size:60.000000px;}
.fs20{font-size:63.000000px;}
.fs1e{font-size:66.000000px;}
.fs1d{font-size:69.000000px;}
.fs12{font-size:72.000000px;}
.fs10{font-size:75.000000px;}
.fsf{font-size:78.000000px;}
.fs1a{font-size:81.000000px;}
.fs11{font-size:84.000000px;}
.fs1c{font-size:87.000000px;}
.fs1b{font-size:90.000000px;}
.fs1f{font-size:93.000000px;}
.fs13{font-size:99.000000px;}
.fs30{font-size:102.000000px;}
.fs29{font-size:105.000000px;}
.fs2a{font-size:108.000000px;}
.fs28{font-size:111.000000px;}
.fs3{font-size:114.000000px;}
.fsb{font-size:117.000000px;}
.fs2{font-size:120.000000px;}
.fse{font-size:129.000000px;}
.fsd{font-size:132.000000px;}
.fsc{font-size:135.000000px;}
.fs8{font-size:138.000000px;}
.fs7{font-size:141.000000px;}
.fs19{font-size:144.000000px;}
.fsa{font-size:147.000000px;}
.fs18{font-size:150.000000px;}
.fs9{font-size:153.000000px;}
.fs6{font-size:156.000000px;}
.fs16{font-size:159.000000px;}
.fs17{font-size:165.000000px;}
.fs5{font-size:168.000000px;}
.fs1{font-size:174.000000px;}
.fs4{font-size:177.000000px;}
.fs0{font-size:180.000000px;}
.fs15{font-size:186.000000px;}
.y6e{bottom:-31.067700px;}
.y1cc{bottom:-27.107700px;}
.y0{bottom:0.000000px;}
.y2d8{bottom:17.172300px;}
.yd8{bottom:18.972300px;}
.y6f{bottom:23.292300px;}
.y16c{bottom:23.652300px;}
.y1a3{bottom:24.732300px;}
.y22d{bottom:26.532300px;}
.y12c{bottom:27.252300px;}
.y211{bottom:27.972300px;}
.ya1{bottom:28.332300px;}
.y25d{bottom:28.692300px;}
.y24e{bottom:29.052300px;}
.yff{bottom:29.412300px;}
.y179{bottom:30.132300px;}
.y13e{bottom:30.492300px;}
.ya{bottom:34.092300px;}
.y29f{bottom:38.052300px;}
.y2d6{bottom:43.452300px;}
.y1a2{bottom:60.372300px;}
.y16b{bottom:60.732300px;}
.y1cb{bottom:61.452300px;}
.y6d{bottom:62.532300px;}
.y1f5{bottom:62.892300px;}
.yd7{bottom:63.252300px;}
.y12b{bottom:63.612300px;}
.ya0{bottom:64.692300px;}
.y13d{bottom:65.412300px;}
.yfe{bottom:66.132300px;}
.y298{bottom:71.172300px;}
.y43{bottom:74.052300px;}
.y29e{bottom:74.412300px;}
.y1a1{bottom:75.132300px;}
.y6c{bottom:76.212300px;}
.yd6{bottom:79.452300px;}
.y2d5{bottom:80.892300px;}
.y12a{bottom:81.612300px;}
.y9f{bottom:82.692300px;}
.yfd{bottom:83.052300px;}
.y210{bottom:84.132300px;}
.y2af{bottom:85.932300px;}
.y13c{bottom:86.292300px;}
.y297{bottom:92.052300px;}
.yd5{bottom:92.772300px;}
.y6b{bottom:93.852300px;}
.y42{bottom:94.932300px;}
.y129{bottom:99.252300px;}
.y9e{bottom:100.332300px;}
.yfc{bottom:101.052300px;}
.y2d7{bottom:101.412300px;}
.y2d4{bottom:101.772300px;}
.y16a{bottom:102.852300px;}
.y1ca{bottom:103.572300px;}
.y2ae{bottom:104.652300px;}
.y1f4{bottom:105.012300px;}
.y22c{bottom:105.372300px;}
.yd4{bottom:106.092300px;}
.y24d{bottom:106.452300px;}
.y13b{bottom:107.172300px;}
.y6a{bottom:110.052300px;}
.y296{bottom:112.932300px;}
.y9d{bottom:115.452300px;}
.y41{bottom:115.812300px;}
.y29d{bottom:116.532300px;}
.y128{bottom:116.892300px;}
.y15{bottom:117.612300px;}
.yfb{bottom:118.692300px;}
.yd3{bottom:119.412300px;}
.y69{bottom:124.092300px;}
.y1c9{bottom:124.452300px;}
.y20f{bottom:125.532300px;}
.y1f3{bottom:126.252300px;}
.y13a{bottom:128.412300px;}
.y178{bottom:130.212300px;}
.yd2{bottom:133.092300px;}
.y295{bottom:133.452300px;}
.y127{bottom:134.532300px;}
.y9c{bottom:134.892300px;}
.yfa{bottom:135.972300px;}
.y40{bottom:136.692300px;}
.y2ad{bottom:137.412300px;}
.y2d3{bottom:143.892300px;}
.y177{bottom:144.612300px;}
.y1c8{bottom:145.332300px;}
.yd1{bottom:146.412300px;}
.y1f2{bottom:146.772300px;}
.y22b{bottom:147.492300px;}
.y9{bottom:148.932300px;}
.y126{bottom:152.172300px;}
.yf9{bottom:152.892300px;}
.y3f{bottom:157.572300px;}
.y29c{bottom:158.292300px;}
.yd0{bottom:160.812300px;}
.y176{bottom:161.532300px;}
.y169{bottom:165.492300px;}
.y1c7{bottom:166.212300px;}
.y9b{bottom:166.572300px;}
.yf8{bottom:166.932300px;}
.y1a0{bottom:167.292300px;}
.y2ac{bottom:168.012300px;}
.y22a{bottom:168.372300px;}
.y24c{bottom:169.092300px;}
.y125{bottom:169.812300px;}
.y139{bottom:170.172300px;}
.y8{bottom:171.972300px;}
.y294{bottom:175.212300px;}
.y175{bottom:175.572300px;}
.ycf{bottom:177.372300px;}
.y68{bottom:179.892300px;}
.y9a{bottom:184.212300px;}
.y2d2{bottom:184.932300px;}
.y168{bottom:186.372300px;}
.y124{bottom:187.452300px;}
.y20e{bottom:187.812300px;}
.y19f{bottom:188.172300px;}
.y2ab{bottom:188.532300px;}
.y1f1{bottom:188.892300px;}
.y14{bottom:191.412300px;}
.y24b{bottom:192.492300px;}
.yce{bottom:194.292300px;}
.y7{bottom:195.012300px;}
.y293{bottom:196.092300px;}
.y3e{bottom:198.612300px;}
.y29b{bottom:199.692300px;}
.y67{bottom:200.052300px;}
.y99{bottom:201.132300px;}
.y123{bottom:204.372300px;}
.y167{bottom:207.252300px;}
.y20d{bottom:208.692300px;}
.y19e{bottom:209.052300px;}
.y1f0{bottom:209.772300px;}
.y229{bottom:210.132300px;}
.ycd{bottom:210.852300px;}
.y138{bottom:211.212300px;}
.yf7{bottom:211.932300px;}
.y13{bottom:212.292300px;}
.y98{bottom:214.812300px;}
.y292{bottom:216.972300px;}
.y122{bottom:218.412300px;}
.y3d{bottom:219.492300px;}
.y29a{bottom:220.572300px;}
.y66{bottom:220.932300px;}
.y2d1{bottom:225.252300px;}
.ycc{bottom:227.772300px;}
.y166{bottom:228.132300px;}
.y20c{bottom:229.212300px;}
.y19d{bottom:229.572300px;}
.y1ef{bottom:230.652300px;}
.y228{bottom:231.012300px;}
.y137{bottom:232.092300px;}
.y97{bottom:232.452300px;}
.y12{bottom:233.892300px;}
.y291{bottom:237.492300px;}
.y3c{bottom:240.012300px;}
.y65{bottom:241.452300px;}
.ycb{bottom:243.612300px;}
.y165{bottom:248.652300px;}
.y96{bottom:249.012300px;}
.y20b{bottom:250.092300px;}
.y19c{bottom:250.452300px;}
.y1ee{bottom:251.172300px;}
.y227{bottom:251.532300px;}
.yf6{bottom:252.972300px;}
.yca{bottom:256.932300px;}
.y121{bottom:257.292300px;}
.y64{bottom:261.972300px;}
.y95{bottom:263.412300px;}
.y164{bottom:269.172300px;}
.y1c6{bottom:269.532300px;}
.yc9{bottom:270.972300px;}
.y19b{bottom:271.332300px;}
.y1ed{bottom:272.412300px;}
.y136{bottom:273.132300px;}
.yf5{bottom:273.852300px;}
.y290{bottom:280.692300px;}
.y3b{bottom:281.412300px;}
.y63{bottom:282.852300px;}
.yc8{bottom:287.532300px;}
.y1c5{bottom:290.052300px;}
.y19a{bottom:291.852300px;}
.y1ec{bottom:292.932300px;}
.y226{bottom:293.292300px;}
.y135{bottom:294.012300px;}
.yf4{bottom:294.372300px;}
.y24a{bottom:296.172300px;}
.y120{bottom:299.052300px;}
.y3a{bottom:302.292300px;}
.y62{bottom:303.372300px;}
.yc7{bottom:304.092300px;}
.y2cf{bottom:309.492300px;}
.y2d0{bottom:310.212300px;}
.y1c4{bottom:310.932300px;}
.y163{bottom:311.292300px;}
.y20a{bottom:312.012300px;}
.y199{bottom:312.732300px;}
.y1eb{bottom:313.452300px;}
.y225{bottom:313.812300px;}
.y94{bottom:314.532300px;}
.yf3{bottom:314.892300px;}
.y174{bottom:315.252300px;}
.yc6{bottom:320.652300px;}
.y61{bottom:323.892300px;}
.y2ce{bottom:329.292300px;}
.y1c3{bottom:331.092300px;}
.y162{bottom:332.172300px;}
.y209{bottom:332.892300px;}
.y198{bottom:333.252300px;}
.y1ea{bottom:334.332300px;}
.y93{bottom:335.412300px;}
.yc5{bottom:337.212300px;}
.y60{bottom:344.412300px;}
.y2cd{bottom:350.892300px;}
.y1c2{bottom:351.612300px;}
.y161{bottom:352.332300px;}
.yc4{bottom:353.772300px;}
.y197{bottom:354.132300px;}
.y1e9{bottom:354.492300px;}
.y11f{bottom:355.212300px;}
.y134{bottom:355.932300px;}
.yf2{bottom:356.292300px;}
.y249{bottom:357.732300px;}
.y28f{bottom:361.692300px;}
.y5f{bottom:364.932300px;}
.y299{bottom:365.652300px;}
.y2cc{bottom:367.452300px;}
.yc3{bottom:370.332300px;}
.y2cb{bottom:370.692300px;}
.y1c1{bottom:372.492300px;}
.y160{bottom:372.852300px;}
.y196{bottom:374.292300px;}
.y224{bottom:375.012300px;}
.y11e{bottom:375.372300px;}
.y92{bottom:376.092300px;}
.y133{bottom:376.452300px;}
.y173{bottom:376.812300px;}
.y28e{bottom:382.212300px;}
.y39{bottom:384.372300px;}
.y5e{bottom:385.812300px;}
.yc2{bottom:386.892300px;}
.y2aa{bottom:391.212300px;}
.y1c0{bottom:393.012300px;}
.y15f{bottom:393.732300px;}
.y208{bottom:394.452300px;}
.y195{bottom:394.812300px;}
.y11d{bottom:395.892300px;}
.y248{bottom:396.252300px;}
.y91{bottom:396.972300px;}
.yf1{bottom:397.332300px;}
.y28d{bottom:402.732300px;}
.yc1{bottom:403.452300px;}
.y38{bottom:405.612300px;}
.y288{bottom:406.692300px;}
.y223{bottom:409.212300px;}
.y2ca{bottom:411.012300px;}
.y15e{bottom:413.892300px;}
.y207{bottom:414.972300px;}
.y194{bottom:415.332300px;}
.y1e8{bottom:416.052300px;}
.y11c{bottom:416.412300px;}
.y132{bottom:417.492300px;}
.yf0{bottom:417.852300px;}
.y90{bottom:418.572300px;}
.yc0{bottom:420.012300px;}
.y28c{bottom:423.252300px;}
.y37{bottom:425.412300px;}
.y5d{bottom:426.852300px;}
.y287{bottom:427.212300px;}
.y2c9{bottom:431.892300px;}
.y15d{bottom:434.412300px;}
.y206{bottom:435.492300px;}
.y193{bottom:435.852300px;}
.y1e7{bottom:436.572300px;}
.y11b{bottom:436.932300px;}
.y8f{bottom:438.012300px;}
.yef{bottom:438.372300px;}
.y172{bottom:438.732300px;}
.y247{bottom:440.172300px;}
.y28b{bottom:444.132300px;}
.y36{bottom:446.652300px;}
.y5c{bottom:447.372300px;}
.y286{bottom:447.732300px;}
.y192{bottom:449.892300px;}
.y2c8{bottom:452.412300px;}
.y2c7{bottom:453.492300px;}
.y15c{bottom:454.932300px;}
.y205{bottom:456.012300px;}
.y222{bottom:457.092300px;}
.y11a{bottom:457.452300px;}
.ybf{bottom:457.812300px;}
.y8e{bottom:458.532300px;}
.yee{bottom:459.252300px;}
.y28a{bottom:464.652300px;}
.y35{bottom:466.812300px;}
.y5b{bottom:468.252300px;}
.y2c6{bottom:471.852300px;}
.y1bf{bottom:475.092300px;}
.y204{bottom:476.532300px;}
.y1e6{bottom:477.612300px;}
.ybe{bottom:477.972300px;}
.y246{bottom:478.332300px;}
.y8d{bottom:479.412300px;}
.y171{bottom:479.772300px;}
.y11{bottom:483.732300px;}
.y289{bottom:485.172300px;}
.y34{bottom:487.692300px;}
.y5a{bottom:488.772300px;}
.y2c5{bottom:492.732300px;}
.y15b{bottom:495.612300px;}
.y1be{bottom:495.972300px;}
.y191{bottom:496.692300px;}
.y203{bottom:497.052300px;}
.y221{bottom:497.412300px;}
.y1e5{bottom:497.772300px;}
.ybd{bottom:498.492300px;}
.y8c{bottom:499.572300px;}
.y131{bottom:499.932300px;}
.yed{bottom:500.292300px;}
.y245{bottom:501.732300px;}
.y278{bottom:506.052300px;}
.y33{bottom:508.212300px;}
.y59{bottom:509.292300px;}
.y10{bottom:512.532300px;}
.y2c4{bottom:512.892300px;}
.y2be{bottom:515.412300px;}
.y220{bottom:515.772300px;}
.y15a{bottom:516.132300px;}
.y1bd{bottom:516.852300px;}
.y190{bottom:517.212300px;}
.y202{bottom:517.932300px;}
.y1e4{bottom:518.292300px;}
.y119{bottom:519.012300px;}
.ybc{bottom:519.372300px;}
.y8b{bottom:520.452300px;}
.y170{bottom:520.812300px;}
.y277{bottom:526.572300px;}
.y32{bottom:529.092300px;}
.y58{bottom:530.172300px;}
.y118{bottom:533.412300px;}
.y2bd{bottom:535.932300px;}
.y159{bottom:536.652300px;}
.y18f{bottom:538.092300px;}
.y1e3{bottom:538.812300px;}
.y201{bottom:539.892300px;}
.y244{bottom:540.252300px;}
.y8a{bottom:540.972300px;}
.yec{bottom:541.332300px;}
.y16f{bottom:541.692300px;}
.y276{bottom:547.092300px;}
.y31{bottom:549.252300px;}
.y57{bottom:550.692300px;}
.y2c3{bottom:553.932300px;}
.y158{bottom:557.172300px;}
.y1bc{bottom:557.532300px;}
.y1e2{bottom:558.972300px;}
.ybb{bottom:560.052300px;}
.y243{bottom:560.772300px;}
.y89{bottom:561.852300px;}
.y16e{bottom:562.212300px;}
.y275{bottom:567.972300px;}
.y2c2{bottom:570.132300px;}
.y30{bottom:570.492300px;}
.y56{bottom:571.572300px;}
.y157{bottom:577.332300px;}
.y1bb{bottom:578.412300px;}
.y1e1{bottom:579.492300px;}
.y200{bottom:579.852300px;}
.y21f{bottom:580.212300px;}
.y117{bottom:580.572300px;}
.yba{bottom:580.932300px;}
.y88{bottom:582.372300px;}
.yeb{bottom:582.732300px;}
.y274{bottom:588.492300px;}
.y2f{bottom:590.652300px;}
.y55{bottom:592.092300px;}
.y2c1{bottom:594.612300px;}
.y156{bottom:597.852300px;}
.y18e{bottom:598.572300px;}
.y1ba{bottom:598.932300px;}
.y1ff{bottom:599.652300px;}
.y1e0{bottom:600.012300px;}
.y21e{bottom:600.372300px;}
.y116{bottom:601.092300px;}
.yb9{bottom:601.452300px;}
.y242{bottom:602.172300px;}
.y87{bottom:602.892300px;}
.yea{bottom:603.252300px;}
.y12e{bottom:609.012300px;}
.y273{bottom:609.372300px;}
.y130{bottom:610.812300px;}
.y2e{bottom:611.532300px;}
.y54{bottom:612.612300px;}
.y285{bottom:613.332300px;}
.y2c0{bottom:614.772300px;}
.y155{bottom:618.372300px;}
.y1b9{bottom:619.452300px;}
.y1fe{bottom:621.612300px;}
.y6{bottom:621.972300px;}
.y241{bottom:622.332300px;}
.y115{bottom:622.692300px;}
.y86{bottom:623.412300px;}
.ye9{bottom:623.772300px;}
.y12d{bottom:627.372300px;}
.y16d{bottom:627.732300px;}
.y12f{bottom:629.532300px;}
.y53{bottom:633.132300px;}
.y2bf{bottom:634.932300px;}
.y154{bottom:638.892300px;}
.y1b8{bottom:640.692300px;}
.y21d{bottom:641.052300px;}
.yb8{bottom:642.492300px;}
.y85{bottom:644.292300px;}
.ye8{bottom:644.652300px;}
.y240{bottom:646.452300px;}
.y2d{bottom:653.652300px;}
.y52{bottom:654.012300px;}
.y2bc{bottom:655.812300px;}
.y153{bottom:659.412300px;}
.y5{bottom:660.492300px;}
.y1df{bottom:661.212300px;}
.y114{bottom:662.292300px;}
.yb7{bottom:663.012300px;}
.y84{bottom:664.812300px;}
.ye7{bottom:665.172300px;}
.y272{bottom:671.292300px;}
.y284{bottom:675.252300px;}
.y2bb{bottom:675.612300px;}
.y152{bottom:679.932300px;}
.y18d{bottom:680.652300px;}
.y1b7{bottom:681.372300px;}
.y21c{bottom:681.732300px;}
.y113{bottom:682.812300px;}
.yb6{bottom:683.172300px;}
.y23f{bottom:684.252300px;}
.ye6{bottom:685.692300px;}
.y271{bottom:691.812300px;}
.y51{bottom:695.052300px;}
.y283{bottom:695.772300px;}
.y2ba{bottom:696.492300px;}
.y151{bottom:700.452300px;}
.y18c{bottom:701.172300px;}
.y1de{bottom:701.892300px;}
.y1b6{bottom:702.252300px;}
.y112{bottom:703.692300px;}
.yb5{bottom:704.052300px;}
.y83{bottom:706.212300px;}
.y23e{bottom:708.012300px;}
.y270{bottom:708.372300px;}
.y2c{bottom:714.492300px;}
.y50{bottom:715.572300px;}
.y2b9{bottom:716.292300px;}
.yf{bottom:719.172300px;}
.y150{bottom:720.972300px;}
.y18b{bottom:721.332300px;}
.y1dd{bottom:722.412300px;}
.y1b5{bottom:722.772300px;}
.y111{bottom:723.852300px;}
.y1fd{bottom:724.212300px;}
.yb4{bottom:724.572300px;}
.y82{bottom:726.732300px;}
.y26f{bottom:732.852300px;}
.y4f{bottom:736.092300px;}
.y27e{bottom:736.812300px;}
.y2b8{bottom:737.532300px;}
.y2b{bottom:738.612300px;}
.y14f{bottom:741.132300px;}
.y18a{bottom:742.212300px;}
.y1dc{bottom:742.932300px;}
.y1b4{bottom:743.292300px;}
.y25c{bottom:743.652300px;}
.y110{bottom:744.372300px;}
.y1fc{bottom:744.732300px;}
.yb3{bottom:745.092300px;}
.y23d{bottom:746.172300px;}
.y81{bottom:747.252300px;}
.y2b7{bottom:753.012300px;}
.y26e{bottom:753.732300px;}
.y2a{bottom:755.532300px;}
.y4e{bottom:756.612300px;}
.y27d{bottom:757.692300px;}
.y14e{bottom:762.012300px;}
.y189{bottom:762.732300px;}
.y1db{bottom:763.092300px;}
.y21b{bottom:763.452300px;}
.y1b3{bottom:763.812300px;}
.y25b{bottom:764.172300px;}
.y10f{bottom:764.892300px;}
.y80{bottom:767.772300px;}
.ye{bottom:768.132300px;}
.y23c{bottom:769.932300px;}
.y26d{bottom:774.252300px;}
.y29{bottom:776.412300px;}
.y4d{bottom:777.132300px;}
.y4{bottom:783.252300px;}
.y1da{bottom:783.612300px;}
.y21a{bottom:783.972300px;}
.y1b2{bottom:784.332300px;}
.y10e{bottom:785.412300px;}
.yb2{bottom:786.132300px;}
.y7f{bottom:788.292300px;}
.y26c{bottom:794.772300px;}
.y28{bottom:796.572300px;}
.y4c{bottom:798.372300px;}
.y282{bottom:799.092300px;}
.y10d{bottom:799.452300px;}
.y2b6{bottom:801.972300px;}
.y14d{bottom:803.052300px;}
.y1d9{bottom:804.132300px;}
.y1b1{bottom:804.852300px;}
.y25a{bottom:805.212300px;}
.yb1{bottom:806.652300px;}
.y7e{bottom:808.812300px;}
.ye5{bottom:809.172300px;}
.y23b{bottom:810.972300px;}
.y26b{bottom:815.292300px;}
.y27{bottom:817.452300px;}
.yd{bottom:818.172300px;}
.y281{bottom:819.972300px;}
.y3{bottom:823.572300px;}
.y188{bottom:823.932300px;}
.y1d8{bottom:824.652300px;}
.y1fb{bottom:826.812300px;}
.yb0{bottom:827.172300px;}
.y7d{bottom:829.332300px;}
.ye4{bottom:829.692300px;}
.y26a{bottom:835.812300px;}
.y26{bottom:837.612300px;}
.y4b{bottom:839.052300px;}
.y280{bottom:840.132300px;}
.y14c{bottom:843.732300px;}
.y187{bottom:844.452300px;}
.y1d7{bottom:844.812300px;}
.y219{bottom:845.172300px;}
.y259{bottom:845.532300px;}
.y1b0{bottom:845.892300px;}
.y10c{bottom:846.972300px;}
.yaf{bottom:847.692300px;}
.y23a{bottom:849.132300px;}
.y7c{bottom:849.852300px;}
.ye3{bottom:850.212300px;}
.y269{bottom:856.692300px;}
.y25{bottom:858.492300px;}
.y4a{bottom:859.572300px;}
.y2{bottom:860.292300px;}
.y27f{bottom:860.652300px;}
.y14b{bottom:864.612300px;}
.y186{bottom:864.972300px;}
.y1d6{bottom:865.332300px;}
.y258{bottom:865.692300px;}
.y1af{bottom:866.052300px;}
.y10b{bottom:867.492300px;}
.y1fa{bottom:867.852300px;}
.yae{bottom:868.572300px;}
.y239{bottom:869.292300px;}
.y7b{bottom:870.372300px;}
.y268{bottom:876.852300px;}
.y24{bottom:878.652300px;}
.y49{bottom:880.092300px;}
.y14a{bottom:884.772300px;}
.y185{bottom:885.132300px;}
.y1d5{bottom:885.852300px;}
.y218{bottom:886.212300px;}
.y257{bottom:886.572300px;}
.y10a{bottom:888.012300px;}
.y1f9{bottom:888.732300px;}
.y238{bottom:889.812300px;}
.y7a{bottom:891.252300px;}
.ye2{bottom:891.612300px;}
.y267{bottom:897.732300px;}
.y2b5{bottom:899.532300px;}
.y23{bottom:899.892300px;}
.y27b{bottom:902.052300px;}
.y149{bottom:905.652300px;}
.y184{bottom:906.012300px;}
.y1d4{bottom:906.372300px;}
.y256{bottom:906.732300px;}
.y1{bottom:907.092300px;}
.y1ae{bottom:907.812300px;}
.y109{bottom:908.892300px;}
.yad{bottom:909.252300px;}
.y237{bottom:910.692300px;}
.ye1{bottom:912.132300px;}
.y266{bottom:918.252300px;}
.y22{bottom:920.412300px;}
.y217{bottom:920.772300px;}
.y2a9{bottom:921.132300px;}
.y48{bottom:921.492300px;}
.y148{bottom:926.172300px;}
.y1d3{bottom:926.532300px;}
.y183{bottom:926.892300px;}
.y2b4{bottom:927.252300px;}
.y1ad{bottom:928.332300px;}
.yac{bottom:929.772300px;}
.y79{bottom:932.292300px;}
.ye0{bottom:932.652300px;}
.y236{bottom:934.452300px;}
.y265{bottom:938.772300px;}
.y2a8{bottom:939.852300px;}
.y21{bottom:940.932300px;}
.y27c{bottom:943.092300px;}
.y147{bottom:947.412300px;}
.y255{bottom:947.772300px;}
.y1d2{bottom:948.132300px;}
.y1ac{bottom:948.852300px;}
.y1f8{bottom:950.292300px;}
.yab{bottom:950.652300px;}
.y78{bottom:953.172300px;}
.ydf{bottom:953.532300px;}
.y264{bottom:955.332300px;}
.y2a7{bottom:960.372300px;}
.y182{bottom:967.212300px;}
.y216{bottom:967.572300px;}
.y254{bottom:967.932300px;}
.y2b3{bottom:968.292300px;}
.y1ab{bottom:969.732300px;}
.y108{bottom:970.452300px;}
.yaa{bottom:971.172300px;}
.y235{bottom:972.612300px;}
.y77{bottom:973.692300px;}
.yc{bottom:979.812300px;}
.y263{bottom:980.172300px;}
.y20{bottom:982.692300px;}
.y27a{bottom:984.852300px;}
.y146{bottom:987.732300px;}
.y1d1{bottom:988.092300px;}
.y253{bottom:988.452300px;}
.y2b2{bottom:988.812300px;}
.y1aa{bottom:990.612300px;}
.y107{bottom:990.972300px;}
.ya9{bottom:991.692300px;}
.y234{bottom:993.132300px;}
.y76{bottom:994.212300px;}
.yde{bottom:994.932300px;}
.y47{bottom:997.812300px;}
.y262{bottom:1000.692300px;}
.y181{bottom:1008.252300px;}
.y145{bottom:1008.612300px;}
.y252{bottom:1008.972300px;}
.y2a6{bottom:1009.692300px;}
.y233{bottom:1010.052300px;}
.y106{bottom:1011.852300px;}
.ya8{bottom:1012.572300px;}
.y75{bottom:1015.092300px;}
.y261{bottom:1021.572300px;}
.y2a5{bottom:1023.012300px;}
.y46{bottom:1024.452300px;}
.y279{bottom:1025.892300px;}
.y180{bottom:1028.772300px;}
.y144{bottom:1029.132300px;}
.y2b1{bottom:1029.852300px;}
.y1d0{bottom:1030.212300px;}
.y1a9{bottom:1031.652300px;}
.y105{bottom:1032.372300px;}
.y1f7{bottom:1032.732300px;}
.ya7{bottom:1033.452300px;}
.y74{bottom:1035.612300px;}
.ydd{bottom:1035.972300px;}
.y260{bottom:1042.092300px;}
.y1f{bottom:1044.612300px;}
.y17f{bottom:1049.292300px;}
.y143{bottom:1049.652300px;}
.y2b0{bottom:1050.372300px;}
.y215{bottom:1051.452300px;}
.y1a8{bottom:1052.532300px;}
.y104{bottom:1052.892300px;}
.ya6{bottom:1053.972300px;}
.y251{bottom:1055.052300px;}
.y232{bottom:1055.412300px;}
.y73{bottom:1056.132300px;}
.ydc{bottom:1056.492300px;}
.y2a4{bottom:1063.332300px;}
.y1a{bottom:1063.423800px;}
.y17e{bottom:1070.172300px;}
.y142{bottom:1070.532300px;}
.y1a7{bottom:1073.412300px;}
.y103{bottom:1073.772300px;}
.ya5{bottom:1074.852300px;}
.y231{bottom:1076.292300px;}
.y72{bottom:1077.372300px;}
.ydb{bottom:1077.732300px;}
.y2a3{bottom:1081.692300px;}
.y25f{bottom:1084.572300px;}
.y1e{bottom:1085.652300px;}
.y17d{bottom:1090.692300px;}
.y1cf{bottom:1091.052300px;}
.y141{bottom:1092.132300px;}
.y45{bottom:1092.492300px;}
.y214{bottom:1093.212300px;}
.y1a6{bottom:1093.932300px;}
.y102{bottom:1094.652300px;}
.ya4{bottom:1095.372300px;}
.y230{bottom:1096.812300px;}
.y71{bottom:1098.252300px;}
.y2a2{bottom:1104.372300px;}
.y1d{bottom:1105.812300px;}
.y19{bottom:1106.623800px;}
.y17c{bottom:1110.852300px;}
.y1ce{bottom:1111.572300px;}
.y140{bottom:1111.932300px;}
.ya3{bottom:1112.652300px;}
.y213{bottom:1113.732300px;}
.y1a5{bottom:1114.812300px;}
.y101{bottom:1115.172300px;}
.y22f{bottom:1117.692300px;}
.yda{bottom:1118.772300px;}
.y44{bottom:1125.252300px;}
.y2a1{bottom:1127.412300px;}
.y18{bottom:1128.223800px;}
.y212{bottom:1131.732300px;}
.y17b{bottom:1132.092300px;}
.y13f{bottom:1132.812300px;}
.y1a4{bottom:1135.692300px;}
.y250{bottom:1136.412300px;}
.y100{bottom:1136.772300px;}
.ya2{bottom:1137.132300px;}
.y22e{bottom:1138.572300px;}
.y70{bottom:1138.932300px;}
.yd9{bottom:1140.012300px;}
.y25e{bottom:1146.132300px;}
.y1c{bottom:1146.492300px;}
.y17{bottom:1149.823800px;}
.y1cd{bottom:1153.332300px;}
.y2a0{bottom:1162.692300px;}
.y17a{bottom:1164.852300px;}
.y16{bottom:1171.423800px;}
.y24f{bottom:1203.732300px;}
.y1f6{bottom:1213.092300px;}
.y1b{bottom:1215.252300px;}
.yb{bottom:1218.132300px;}
.ha1{height:31.289062px;}
.h3c{height:37.546875px;}
.h3b{height:38.044688px;}
.h6c{height:38.986875px;}
.h66{height:39.235781px;}
.h77{height:39.484688px;}
.hc{height:40.675781px;}
.h76{height:40.924687px;}
.h75{height:41.173594px;}
.h6d{height:42.115781px;}
.h62{height:42.364688px;}
.hb0{height:43.555781px;}
.h57{height:43.804688px;}
.h67{height:44.053594px;}
.h8d{height:44.995781px;}
.h6e{height:45.244687px;}
.h63{height:45.493594px;}
.h61{height:45.742500px;}
.h58{height:46.933594px;}
.h89{height:48.124688px;}
.h91{height:49.120313px;}
.h56{height:49.564687px;}
.h33{height:50.062500px;}
.h18{height:50.616000px;}
.h8e{height:51.004687px;}
.h8a{height:51.253594px;}
.h59{height:51.502500px;}
.h2c{height:51.751406px;}
.h6b{height:52.444687px;}
.h5f{height:53.191406px;}
.h8b{height:53.386875px;}
.h64{height:53.440313px;}
.hc5{height:53.689219px;}
.h5a{height:54.133594px;}
.h2d{height:54.382500px;}
.h65{height:54.880312px;}
.h3d{height:56.320312px;}
.h86{height:57.511406px;}
.h23{height:57.760313px;}
.ha2{height:58.009219px;}
.h17{height:58.392000px;}
.had{height:58.507031px;}
.hac{height:58.755938px;}
.h22{height:59.200313px;}
.h29{height:59.449219px;}
.h73{height:59.698125px;}
.h84{height:59.947031px;}
.h2f{height:60.195938px;}
.h28{height:60.391406px;}
.h55{height:60.640312px;}
.haf{height:60.889219px;}
.h3a{height:61.138125px;}
.h2e{height:61.387031px;}
.h85{height:61.440469px;}
.h25{height:62.080313px;}
.h1f{height:62.329219px;}
.h2a{height:62.578125px;}
.h37{height:62.827031px;}
.hb7{height:63.520312px;}
.h26{height:63.769219px;}
.h8c{height:63.964688px;}
.h5e{height:64.018125px;}
.h34{height:64.267031px;}
.hc4{height:64.320469px;}
.h90{height:64.515938px;}
.hbb{height:65.209219px;}
.h1c{height:65.458125px;}
.h27{height:65.707031px;}
.h39{height:65.955937px;}
.h71{height:66.204844px;}
.h9c{height:66.649219px;}
.h21{height:66.898125px;}
.h35{height:67.147031px;}
.h38{height:67.395937px;}
.h74{height:67.644844px;}
.h83{height:67.893750px;}
.h6a{height:68.089219px;}
.h4b{height:68.338125px;}
.h54{height:68.587031px;}
.h24{height:68.835938px;}
.h82{height:69.084844px;}
.hbd{height:69.280313px;}
.h52{height:69.529219px;}
.h51{height:69.778125px;}
.h50{height:70.027031px;}
.h5d{height:70.275937px;}
.h32{height:70.524844px;}
.hbc{height:70.720313px;}
.hb6{height:70.969219px;}
.h46{height:71.218125px;}
.h4c{height:71.467031px;}
.h5c{height:71.715938px;}
.h15{height:71.964844px;}
.h47{height:72.409219px;}
.h49{height:72.658125px;}
.h3e{height:72.907031px;}
.h4e{height:73.155938px;}
.h53{height:73.404844px;}
.h36{height:73.653750px;}
.hb8{height:73.849219px;}
.h7a{height:74.098125px;}
.h4a{height:74.347031px;}
.h4d{height:74.595937px;}
.h70{height:74.844844px;}
.hc3{height:75.040312px;}
.hb3{height:75.093750px;}
.ha4{height:75.289219px;}
.h7b{height:75.538125px;}
.h42{height:75.787031px;}
.h48{height:76.035937px;}
.h60{height:76.284844px;}
.h13{height:76.533750px;}
.h2b{height:76.729219px;}
.h9b{height:76.978125px;}
.h41{height:77.227031px;}
.h40{height:77.475938px;}
.h68{height:77.724844px;}
.h14{height:77.973750px;}
.h9e{height:78.169219px;}
.h1a{height:78.222656px;}
.h7c{height:78.418125px;}
.h78{height:78.667031px;}
.h3f{height:78.915937px;}
.h4f{height:79.164844px;}
.h45{height:79.413750px;}
.h9a{height:79.609219px;}
.h96{height:79.858125px;}
.ha5{height:80.107031px;}
.h44{height:80.355938px;}
.h69{height:80.604844px;}
.hae{height:80.853750px;}
.h7f{height:81.049219px;}
.h97{height:81.298125px;}
.ha{height:81.351562px;}
.h9d{height:81.547031px;}
.haa{height:81.795937px;}
.h93{height:82.489219px;}
.h7d{height:82.738125px;}
.h5b{height:82.987031px;}
.h81{height:83.040469px;}
.h79{height:83.235937px;}
.hab{height:83.484844px;}
.ha8{height:83.680312px;}
.hba{height:83.733750px;}
.ha0{height:84.178125px;}
.h1d{height:84.231563px;}
.h7e{height:84.427031px;}
.h11{height:84.480469px;}
.ha9{height:84.675938px;}
.h8f{height:85.173750px;}
.h9f{height:85.618125px;}
.h43{height:85.671562px;}
.h98{height:85.867031px;}
.h9{height:86.169375px;}
.h88{height:86.364844px;}
.hc0{height:86.560312px;}
.h92{height:87.058125px;}
.h80{height:87.307031px;}
.hb5{height:87.360469px;}
.h8{height:87.609375px;}
.ha6{height:87.804844px;}
.hb9{height:88.053750px;}
.h72{height:88.747031px;}
.h87{height:88.800469px;}
.h99{height:88.995938px;}
.h1b{height:89.742656px;}
.h16{height:90.489375px;}
.h20{height:90.738281px;}
.h95{height:91.627031px;}
.hbe{height:91.875938px;}
.hb2{height:92.124844px;}
.h94{height:93.067031px;}
.h1e{height:93.867188px;}
.hc2{height:94.009219px;}
.h6f{height:94.507031px;}
.h12{height:96.747188px;}
.h19{height:96.996094px;}
.ha7{height:97.387031px;}
.ha3{height:98.827031px;}
.hbf{height:101.955937px;}
.hc6{height:103.253906px;}
.hb4{height:106.382812px;}
.hc1{height:113.280469px;}
.h30{height:115.769531px;}
.h31{height:119.147344px;}
.h6{height:123.716250px;}
.h3{height:125.156250px;}
.hb{height:140.302969px;}
.h7{height:140.800781px;}
.h10{height:156.445312px;}
.hf{height:157.885312px;}
.hb1{height:159.574219px;}
.h5{height:162.703125px;}
.he{height:172.089844px;}
.h4{height:184.605469px;}
.h2{height:187.734375px;}
.hd{height:193.992188px;}
.h1{height:1206.750000px;}
.h0{height:1206.883800px;}
.w0{width:807.557250px;}
.w1{width:807.750000px;}
.x4c{left:-21.483750px;}
.x27{left:-18.603750px;}
.x48{left:-15.363750px;}
.x51{left:-13.923750px;}
.x68{left:-4.203750px;}
.x14{left:-1.323750px;}
.x0{left:0.000000px;}
.x31{left:23.876250px;}
.x26{left:25.316250px;}
.x25{left:26.396250px;}
.x24{left:27.476250px;}
.x21{left:28.556250px;}
.x22{left:29.636250px;}
.x35{left:31.076250px;}
.x3d{left:32.156250px;}
.x44{left:33.236250px;}
.x46{left:35.036250px;}
.x6a{left:37.196250px;}
.x20{left:38.276250px;}
.x6e{left:39.356250px;}
.x6c{left:40.436250px;}
.x2d{left:41.516250px;}
.x29{left:42.956250px;}
.x2b{left:44.036250px;}
.x2f{left:45.116250px;}
.x2c{left:46.196250px;}
.x32{left:49.436250px;}
.x1{left:51.236250px;}
.x23{left:52.676250px;}
.x34{left:54.476250px;}
.x3e{left:56.276250px;}
.x4f{left:57.356250px;}
.x45{left:58.436250px;}
.x4a{left:59.516250px;}
.x64{left:60.596250px;}
.x6b{left:62.036250px;}
.x69{left:63.116250px;}
.x6d{left:64.196250px;}
.x70{left:65.636250px;}
.x33{left:67.076250px;}
.x2a{left:68.156250px;}
.x2e{left:69.956250px;}
.x3b{left:71.036250px;}
.x49{left:72.116250px;}
.x16{left:74.276250px;}
.x1a{left:78.596250px;}
.x1f{left:79.676250px;}
.x54{left:81.476250px;}
.x55{left:82.556250px;}
.x4{left:84.356250px;}
.x40{left:85.436250px;}
.x65{left:86.876250px;}
.x13{left:88.179750px;}
.x37{left:95.876250px;}
.x1b{left:98.756250px;}
.x1c{left:99.836250px;}
.x1e{left:100.916250px;}
.x41{left:137.636250px;}
.xd{left:139.796250px;}
.xc{left:166.796250px;}
.x38{left:174.716250px;}
.xa{left:206.756250px;}
.x3{left:218.276250px;}
.x9{left:223.316250px;}
.x6{left:228.356250px;}
.x50{left:231.596250px;}
.xb{left:245.636250px;}
.x5{left:261.836250px;}
.x8{left:262.916250px;}
.x11{left:268.316250px;}
.xf{left:271.916250px;}
.x18{left:280.196250px;}
.x12{left:290.636250px;}
.xe{left:294.236250px;}
.x17{left:296.036250px;}
.x19{left:307.556250px;}
.x1d{left:311.156250px;}
.x10{left:314.036250px;}
.x7{left:316.196250px;}
.x15{left:341.756250px;}
.x28{left:370.556250px;}
.x36{left:373.796250px;}
.x3f{left:376.316250px;}
.x4d{left:378.116250px;}
.x47{left:382.796250px;}
.x52{left:385.316250px;}
.x30{left:392.156250px;}
.x3c{left:394.676250px;}
.x53{left:395.756250px;}
.x73{left:396.836250px;}
.x63{left:399.716250px;}
.x67{left:419.156250px;}
.x2{left:450.476250px;}
.x42{left:483.956250px;}
.x39{left:494.396250px;}
.x3a{left:535.076250px;}
.x43{left:559.916250px;}
.x77{left:644.876250px;}
.x78{left:659.996250px;}
.x74{left:690.596250px;}
.x5d{left:702.476250px;}
.x6f{left:703.556250px;}
.x76{left:723.356250px;}
.x72{left:730.556250px;}
.x56{left:731.996250px;}
.x71{left:737.036250px;}
.x75{left:738.476250px;}
.x58{left:740.636250px;}
.x5f{left:742.076250px;}
.x5a{left:749.276250px;}
.x60{left:750.716250px;}
.x59{left:756.476250px;}
.x5e{left:758.276250px;}
.x62{left:759.356250px;}
.x66{left:760.436250px;}
.x61{left:761.876250px;}
.x57{left:764.396250px;}
.x5c{left:765.476250px;}
.x5b{left:766.916250px;}
.x4e{left:832.796250px;}
.x4b{left:839.276250px;}
@media print{
.v28{vertical-align:-75.520000pt;}
.v2e{vertical-align:-60.160000pt;}
.v23{vertical-align:-33.280000pt;}
.v12{vertical-align:-28.160000pt;}
.v30{vertical-align:-25.600000pt;}
.v27{vertical-align:-24.320000pt;}
.v1e{vertical-align:-23.040000pt;}
.v1c{vertical-align:-21.760000pt;}
.v2f{vertical-align:-20.480000pt;}
.v1f{vertical-align:-19.200000pt;}
.v10{vertical-align:-17.920000pt;}
.v29{vertical-align:-16.640000pt;}
.v13{vertical-align:-15.360000pt;}
.va{vertical-align:-14.080000pt;}
.vb{vertical-align:-12.800000pt;}
.vd{vertical-align:-11.520000pt;}
.v16{vertical-align:-10.240000pt;}
.v14{vertical-align:-8.960000pt;}
.ve{vertical-align:-7.680000pt;}
.v11{vertical-align:-6.400000pt;}
.vf{vertical-align:-5.120000pt;}
.v1{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.560000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280000pt;}
.v6{vertical-align:2.560000pt;}
.v9{vertical-align:3.840000pt;}
.v5{vertical-align:5.120000pt;}
.v7{vertical-align:6.400000pt;}
.v18{vertical-align:7.680000pt;}
.v17{vertical-align:8.960000pt;}
.v8{vertical-align:10.240000pt;}
.v15{vertical-align:11.520000pt;}
.v19{vertical-align:12.800000pt;}
.v1b{vertical-align:14.080000pt;}
.vc{vertical-align:15.360000pt;}
.v25{vertical-align:16.640000pt;}
.v1a{vertical-align:17.920000pt;}
.v26{vertical-align:19.200000pt;}
.v22{vertical-align:20.480000pt;}
.v21{vertical-align:21.760000pt;}
.v2d{vertical-align:23.040000pt;}
.v1d{vertical-align:24.320000pt;}
.v20{vertical-align:25.600000pt;}
.v24{vertical-align:26.880000pt;}
.v2c{vertical-align:28.160000pt;}
.v2a{vertical-align:29.440000pt;}
.v2b{vertical-align:32.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:128.240000pt;}
.ls3{letter-spacing:134.464000pt;}
.ls1{letter-spacing:165.360000pt;}
.ls4{letter-spacing:1220.442667pt;}
.ls6{letter-spacing:1418.304000pt;}
.ls5{letter-spacing:1705.024000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:2.346667pt;}
.ws1{word-spacing:5.858667pt;}
.ws3{word-spacing:1912.800000pt;}
._11{margin-left:-5.280000pt;}
._12{margin-left:-3.093333pt;}
._e{margin-left:-2.133333pt;}
._16{margin-left:-1.106667pt;}
._3{width:1.770667pt;}
._0{width:2.720000pt;}
._1{width:4.053333pt;}
._8{width:5.576000pt;}
._9{width:7.096000pt;}
._a{width:8.517333pt;}
._6{width:9.626667pt;}
._5{width:11.224000pt;}
._d{width:12.378667pt;}
._4{width:13.712000pt;}
._7{width:15.354667pt;}
._b{width:16.888000pt;}
._2{width:18.202667pt;}
._f{width:19.570667pt;}
._15{width:20.656000pt;}
._c{width:21.677333pt;}
._10{width:23.722667pt;}
._13{width:25.466667pt;}
._14{width:28.085333pt;}
._18{width:855.298667pt;}
._17{width:1221.973333pt;}
.fs2f{font-size:21.333333pt;}
.fs2e{font-size:24.000000pt;}
.fs2d{font-size:26.666667pt;}
.fs2b{font-size:29.333333pt;}
.fs2c{font-size:32.000000pt;}
.fs14{font-size:34.666667pt;}
.fs27{font-size:37.333333pt;}
.fs25{font-size:40.000000pt;}
.fs26{font-size:42.666667pt;}
.fs23{font-size:45.333333pt;}
.fs22{font-size:48.000000pt;}
.fs24{font-size:50.666667pt;}
.fs21{font-size:53.333333pt;}
.fs20{font-size:56.000000pt;}
.fs1e{font-size:58.666667pt;}
.fs1d{font-size:61.333333pt;}
.fs12{font-size:64.000000pt;}
.fs10{font-size:66.666667pt;}
.fsf{font-size:69.333333pt;}
.fs1a{font-size:72.000000pt;}
.fs11{font-size:74.666667pt;}
.fs1c{font-size:77.333333pt;}
.fs1b{font-size:80.000000pt;}
.fs1f{font-size:82.666667pt;}
.fs13{font-size:88.000000pt;}
.fs30{font-size:90.666667pt;}
.fs29{font-size:93.333333pt;}
.fs2a{font-size:96.000000pt;}
.fs28{font-size:98.666667pt;}
.fs3{font-size:101.333333pt;}
.fsb{font-size:104.000000pt;}
.fs2{font-size:106.666667pt;}
.fse{font-size:114.666667pt;}
.fsd{font-size:117.333333pt;}
.fsc{font-size:120.000000pt;}
.fs8{font-size:122.666667pt;}
.fs7{font-size:125.333333pt;}
.fs19{font-size:128.000000pt;}
.fsa{font-size:130.666667pt;}
.fs18{font-size:133.333333pt;}
.fs9{font-size:136.000000pt;}
.fs6{font-size:138.666667pt;}
.fs16{font-size:141.333333pt;}
.fs17{font-size:146.666667pt;}
.fs5{font-size:149.333333pt;}
.fs1{font-size:154.666667pt;}
.fs4{font-size:157.333333pt;}
.fs0{font-size:160.000000pt;}
.fs15{font-size:165.333333pt;}
.y6e{bottom:-27.615733pt;}
.y1cc{bottom:-24.095733pt;}
.y0{bottom:0.000000pt;}
.y2d8{bottom:15.264267pt;}
.yd8{bottom:16.864267pt;}
.y6f{bottom:20.704267pt;}
.y16c{bottom:21.024267pt;}
.y1a3{bottom:21.984267pt;}
.y22d{bottom:23.584267pt;}
.y12c{bottom:24.224267pt;}
.y211{bottom:24.864267pt;}
.ya1{bottom:25.184267pt;}
.y25d{bottom:25.504267pt;}
.y24e{bottom:25.824267pt;}
.yff{bottom:26.144267pt;}
.y179{bottom:26.784267pt;}
.y13e{bottom:27.104267pt;}
.ya{bottom:30.304267pt;}
.y29f{bottom:33.824267pt;}
.y2d6{bottom:38.624267pt;}
.y1a2{bottom:53.664267pt;}
.y16b{bottom:53.984267pt;}
.y1cb{bottom:54.624267pt;}
.y6d{bottom:55.584267pt;}
.y1f5{bottom:55.904267pt;}
.yd7{bottom:56.224267pt;}
.y12b{bottom:56.544267pt;}
.ya0{bottom:57.504267pt;}
.y13d{bottom:58.144267pt;}
.yfe{bottom:58.784267pt;}
.y298{bottom:63.264267pt;}
.y43{bottom:65.824267pt;}
.y29e{bottom:66.144267pt;}
.y1a1{bottom:66.784267pt;}
.y6c{bottom:67.744267pt;}
.yd6{bottom:70.624267pt;}
.y2d5{bottom:71.904267pt;}
.y12a{bottom:72.544267pt;}
.y9f{bottom:73.504267pt;}
.yfd{bottom:73.824267pt;}
.y210{bottom:74.784267pt;}
.y2af{bottom:76.384267pt;}
.y13c{bottom:76.704267pt;}
.y297{bottom:81.824267pt;}
.yd5{bottom:82.464267pt;}
.y6b{bottom:83.424267pt;}
.y42{bottom:84.384267pt;}
.y129{bottom:88.224267pt;}
.y9e{bottom:89.184267pt;}
.yfc{bottom:89.824267pt;}
.y2d7{bottom:90.144267pt;}
.y2d4{bottom:90.464267pt;}
.y16a{bottom:91.424267pt;}
.y1ca{bottom:92.064267pt;}
.y2ae{bottom:93.024267pt;}
.y1f4{bottom:93.344267pt;}
.y22c{bottom:93.664267pt;}
.yd4{bottom:94.304267pt;}
.y24d{bottom:94.624267pt;}
.y13b{bottom:95.264267pt;}
.y6a{bottom:97.824267pt;}
.y296{bottom:100.384267pt;}
.y9d{bottom:102.624267pt;}
.y41{bottom:102.944267pt;}
.y29d{bottom:103.584267pt;}
.y128{bottom:103.904267pt;}
.y15{bottom:104.544267pt;}
.yfb{bottom:105.504267pt;}
.yd3{bottom:106.144267pt;}
.y69{bottom:110.304267pt;}
.y1c9{bottom:110.624267pt;}
.y20f{bottom:111.584267pt;}
.y1f3{bottom:112.224267pt;}
.y13a{bottom:114.144267pt;}
.y178{bottom:115.744267pt;}
.yd2{bottom:118.304267pt;}
.y295{bottom:118.624267pt;}
.y127{bottom:119.584267pt;}
.y9c{bottom:119.904267pt;}
.yfa{bottom:120.864267pt;}
.y40{bottom:121.504267pt;}
.y2ad{bottom:122.144267pt;}
.y2d3{bottom:127.904267pt;}
.y177{bottom:128.544267pt;}
.y1c8{bottom:129.184267pt;}
.yd1{bottom:130.144267pt;}
.y1f2{bottom:130.464267pt;}
.y22b{bottom:131.104267pt;}
.y9{bottom:132.384267pt;}
.y126{bottom:135.264267pt;}
.yf9{bottom:135.904267pt;}
.y3f{bottom:140.064267pt;}
.y29c{bottom:140.704267pt;}
.yd0{bottom:142.944267pt;}
.y176{bottom:143.584267pt;}
.y169{bottom:147.104267pt;}
.y1c7{bottom:147.744267pt;}
.y9b{bottom:148.064267pt;}
.yf8{bottom:148.384267pt;}
.y1a0{bottom:148.704267pt;}
.y2ac{bottom:149.344267pt;}
.y22a{bottom:149.664267pt;}
.y24c{bottom:150.304267pt;}
.y125{bottom:150.944267pt;}
.y139{bottom:151.264267pt;}
.y8{bottom:152.864267pt;}
.y294{bottom:155.744267pt;}
.y175{bottom:156.064267pt;}
.ycf{bottom:157.664267pt;}
.y68{bottom:159.904267pt;}
.y9a{bottom:163.744267pt;}
.y2d2{bottom:164.384267pt;}
.y168{bottom:165.664267pt;}
.y124{bottom:166.624267pt;}
.y20e{bottom:166.944267pt;}
.y19f{bottom:167.264267pt;}
.y2ab{bottom:167.584267pt;}
.y1f1{bottom:167.904267pt;}
.y14{bottom:170.144267pt;}
.y24b{bottom:171.104267pt;}
.yce{bottom:172.704267pt;}
.y7{bottom:173.344267pt;}
.y293{bottom:174.304267pt;}
.y3e{bottom:176.544267pt;}
.y29b{bottom:177.504267pt;}
.y67{bottom:177.824267pt;}
.y99{bottom:178.784267pt;}
.y123{bottom:181.664267pt;}
.y167{bottom:184.224267pt;}
.y20d{bottom:185.504267pt;}
.y19e{bottom:185.824267pt;}
.y1f0{bottom:186.464267pt;}
.y229{bottom:186.784267pt;}
.ycd{bottom:187.424267pt;}
.y138{bottom:187.744267pt;}
.yf7{bottom:188.384267pt;}
.y13{bottom:188.704267pt;}
.y98{bottom:190.944267pt;}
.y292{bottom:192.864267pt;}
.y122{bottom:194.144267pt;}
.y3d{bottom:195.104267pt;}
.y29a{bottom:196.064267pt;}
.y66{bottom:196.384267pt;}
.y2d1{bottom:200.224267pt;}
.ycc{bottom:202.464267pt;}
.y166{bottom:202.784267pt;}
.y20c{bottom:203.744267pt;}
.y19d{bottom:204.064267pt;}
.y1ef{bottom:205.024267pt;}
.y228{bottom:205.344267pt;}
.y137{bottom:206.304267pt;}
.y97{bottom:206.624267pt;}
.y12{bottom:207.904267pt;}
.y291{bottom:211.104267pt;}
.y3c{bottom:213.344267pt;}
.y65{bottom:214.624267pt;}
.ycb{bottom:216.544267pt;}
.y165{bottom:221.024267pt;}
.y96{bottom:221.344267pt;}
.y20b{bottom:222.304267pt;}
.y19c{bottom:222.624267pt;}
.y1ee{bottom:223.264267pt;}
.y227{bottom:223.584267pt;}
.yf6{bottom:224.864267pt;}
.yca{bottom:228.384267pt;}
.y121{bottom:228.704267pt;}
.y64{bottom:232.864267pt;}
.y95{bottom:234.144267pt;}
.y164{bottom:239.264267pt;}
.y1c6{bottom:239.584267pt;}
.yc9{bottom:240.864267pt;}
.y19b{bottom:241.184267pt;}
.y1ed{bottom:242.144267pt;}
.y136{bottom:242.784267pt;}
.yf5{bottom:243.424267pt;}
.y290{bottom:249.504267pt;}
.y3b{bottom:250.144267pt;}
.y63{bottom:251.424267pt;}
.yc8{bottom:255.584267pt;}
.y1c5{bottom:257.824267pt;}
.y19a{bottom:259.424267pt;}
.y1ec{bottom:260.384267pt;}
.y226{bottom:260.704267pt;}
.y135{bottom:261.344267pt;}
.yf4{bottom:261.664267pt;}
.y24a{bottom:263.264267pt;}
.y120{bottom:265.824267pt;}
.y3a{bottom:268.704267pt;}
.y62{bottom:269.664267pt;}
.yc7{bottom:270.304267pt;}
.y2cf{bottom:275.104267pt;}
.y2d0{bottom:275.744267pt;}
.y1c4{bottom:276.384267pt;}
.y163{bottom:276.704267pt;}
.y20a{bottom:277.344267pt;}
.y199{bottom:277.984267pt;}
.y1eb{bottom:278.624267pt;}
.y225{bottom:278.944267pt;}
.y94{bottom:279.584267pt;}
.yf3{bottom:279.904267pt;}
.y174{bottom:280.224267pt;}
.yc6{bottom:285.024267pt;}
.y61{bottom:287.904267pt;}
.y2ce{bottom:292.704267pt;}
.y1c3{bottom:294.304267pt;}
.y162{bottom:295.264267pt;}
.y209{bottom:295.904267pt;}
.y198{bottom:296.224267pt;}
.y1ea{bottom:297.184267pt;}
.y93{bottom:298.144267pt;}
.yc5{bottom:299.744267pt;}
.y60{bottom:306.144267pt;}
.y2cd{bottom:311.904267pt;}
.y1c2{bottom:312.544267pt;}
.y161{bottom:313.184267pt;}
.yc4{bottom:314.464267pt;}
.y197{bottom:314.784267pt;}
.y1e9{bottom:315.104267pt;}
.y11f{bottom:315.744267pt;}
.y134{bottom:316.384267pt;}
.yf2{bottom:316.704267pt;}
.y249{bottom:317.984267pt;}
.y28f{bottom:321.504267pt;}
.y5f{bottom:324.384267pt;}
.y299{bottom:325.024267pt;}
.y2cc{bottom:326.624267pt;}
.yc3{bottom:329.184267pt;}
.y2cb{bottom:329.504267pt;}
.y1c1{bottom:331.104267pt;}
.y160{bottom:331.424267pt;}
.y196{bottom:332.704267pt;}
.y224{bottom:333.344267pt;}
.y11e{bottom:333.664267pt;}
.y92{bottom:334.304267pt;}
.y133{bottom:334.624267pt;}
.y173{bottom:334.944267pt;}
.y28e{bottom:339.744267pt;}
.y39{bottom:341.664267pt;}
.y5e{bottom:342.944267pt;}
.yc2{bottom:343.904267pt;}
.y2aa{bottom:347.744267pt;}
.y1c0{bottom:349.344267pt;}
.y15f{bottom:349.984267pt;}
.y208{bottom:350.624267pt;}
.y195{bottom:350.944267pt;}
.y11d{bottom:351.904267pt;}
.y248{bottom:352.224267pt;}
.y91{bottom:352.864267pt;}
.yf1{bottom:353.184267pt;}
.y28d{bottom:357.984267pt;}
.yc1{bottom:358.624267pt;}
.y38{bottom:360.544267pt;}
.y288{bottom:361.504267pt;}
.y223{bottom:363.744267pt;}
.y2ca{bottom:365.344267pt;}
.y15e{bottom:367.904267pt;}
.y207{bottom:368.864267pt;}
.y194{bottom:369.184267pt;}
.y1e8{bottom:369.824267pt;}
.y11c{bottom:370.144267pt;}
.y132{bottom:371.104267pt;}
.yf0{bottom:371.424267pt;}
.y90{bottom:372.064267pt;}
.yc0{bottom:373.344267pt;}
.y28c{bottom:376.224267pt;}
.y37{bottom:378.144267pt;}
.y5d{bottom:379.424267pt;}
.y287{bottom:379.744267pt;}
.y2c9{bottom:383.904267pt;}
.y15d{bottom:386.144267pt;}
.y206{bottom:387.104267pt;}
.y193{bottom:387.424267pt;}
.y1e7{bottom:388.064267pt;}
.y11b{bottom:388.384267pt;}
.y8f{bottom:389.344267pt;}
.yef{bottom:389.664267pt;}
.y172{bottom:389.984267pt;}
.y247{bottom:391.264267pt;}
.y28b{bottom:394.784267pt;}
.y36{bottom:397.024267pt;}
.y5c{bottom:397.664267pt;}
.y286{bottom:397.984267pt;}
.y192{bottom:399.904267pt;}
.y2c8{bottom:402.144267pt;}
.y2c7{bottom:403.104267pt;}
.y15c{bottom:404.384267pt;}
.y205{bottom:405.344267pt;}
.y222{bottom:406.304267pt;}
.y11a{bottom:406.624267pt;}
.ybf{bottom:406.944267pt;}
.y8e{bottom:407.584267pt;}
.yee{bottom:408.224267pt;}
.y28a{bottom:413.024267pt;}
.y35{bottom:414.944267pt;}
.y5b{bottom:416.224267pt;}
.y2c6{bottom:419.424267pt;}
.y1bf{bottom:422.304267pt;}
.y204{bottom:423.584267pt;}
.y1e6{bottom:424.544267pt;}
.ybe{bottom:424.864267pt;}
.y246{bottom:425.184267pt;}
.y8d{bottom:426.144267pt;}
.y171{bottom:426.464267pt;}
.y11{bottom:429.984267pt;}
.y289{bottom:431.264267pt;}
.y34{bottom:433.504267pt;}
.y5a{bottom:434.464267pt;}
.y2c5{bottom:437.984267pt;}
.y15b{bottom:440.544267pt;}
.y1be{bottom:440.864267pt;}
.y191{bottom:441.504267pt;}
.y203{bottom:441.824267pt;}
.y221{bottom:442.144267pt;}
.y1e5{bottom:442.464267pt;}
.ybd{bottom:443.104267pt;}
.y8c{bottom:444.064267pt;}
.y131{bottom:444.384267pt;}
.yed{bottom:444.704267pt;}
.y245{bottom:445.984267pt;}
.y278{bottom:449.824267pt;}
.y33{bottom:451.744267pt;}
.y59{bottom:452.704267pt;}
.y10{bottom:455.584267pt;}
.y2c4{bottom:455.904267pt;}
.y2be{bottom:458.144267pt;}
.y220{bottom:458.464267pt;}
.y15a{bottom:458.784267pt;}
.y1bd{bottom:459.424267pt;}
.y190{bottom:459.744267pt;}
.y202{bottom:460.384267pt;}
.y1e4{bottom:460.704267pt;}
.y119{bottom:461.344267pt;}
.ybc{bottom:461.664267pt;}
.y8b{bottom:462.624267pt;}
.y170{bottom:462.944267pt;}
.y277{bottom:468.064267pt;}
.y32{bottom:470.304267pt;}
.y58{bottom:471.264267pt;}
.y118{bottom:474.144267pt;}
.y2bd{bottom:476.384267pt;}
.y159{bottom:477.024267pt;}
.y18f{bottom:478.304267pt;}
.y1e3{bottom:478.944267pt;}
.y201{bottom:479.904267pt;}
.y244{bottom:480.224267pt;}
.y8a{bottom:480.864267pt;}
.yec{bottom:481.184267pt;}
.y16f{bottom:481.504267pt;}
.y276{bottom:486.304267pt;}
.y31{bottom:488.224267pt;}
.y57{bottom:489.504267pt;}
.y2c3{bottom:492.384267pt;}
.y158{bottom:495.264267pt;}
.y1bc{bottom:495.584267pt;}
.y1e2{bottom:496.864267pt;}
.ybb{bottom:497.824267pt;}
.y243{bottom:498.464267pt;}
.y89{bottom:499.424267pt;}
.y16e{bottom:499.744267pt;}
.y275{bottom:504.864267pt;}
.y2c2{bottom:506.784267pt;}
.y30{bottom:507.104267pt;}
.y56{bottom:508.064267pt;}
.y157{bottom:513.184267pt;}
.y1bb{bottom:514.144267pt;}
.y1e1{bottom:515.104267pt;}
.y200{bottom:515.424267pt;}
.y21f{bottom:515.744267pt;}
.y117{bottom:516.064267pt;}
.yba{bottom:516.384267pt;}
.y88{bottom:517.664267pt;}
.yeb{bottom:517.984267pt;}
.y274{bottom:523.104267pt;}
.y2f{bottom:525.024267pt;}
.y55{bottom:526.304267pt;}
.y2c1{bottom:528.544267pt;}
.y156{bottom:531.424267pt;}
.y18e{bottom:532.064267pt;}
.y1ba{bottom:532.384267pt;}
.y1ff{bottom:533.024267pt;}
.y1e0{bottom:533.344267pt;}
.y21e{bottom:533.664267pt;}
.y116{bottom:534.304267pt;}
.yb9{bottom:534.624267pt;}
.y242{bottom:535.264267pt;}
.y87{bottom:535.904267pt;}
.yea{bottom:536.224267pt;}
.y12e{bottom:541.344267pt;}
.y273{bottom:541.664267pt;}
.y130{bottom:542.944267pt;}
.y2e{bottom:543.584267pt;}
.y54{bottom:544.544267pt;}
.y285{bottom:545.184267pt;}
.y2c0{bottom:546.464267pt;}
.y155{bottom:549.664267pt;}
.y1b9{bottom:550.624267pt;}
.y1fe{bottom:552.544267pt;}
.y6{bottom:552.864267pt;}
.y241{bottom:553.184267pt;}
.y115{bottom:553.504267pt;}
.y86{bottom:554.144267pt;}
.ye9{bottom:554.464267pt;}
.y12d{bottom:557.664267pt;}
.y16d{bottom:557.984267pt;}
.y12f{bottom:559.584267pt;}
.y53{bottom:562.784267pt;}
.y2bf{bottom:564.384267pt;}
.y154{bottom:567.904267pt;}
.y1b8{bottom:569.504267pt;}
.y21d{bottom:569.824267pt;}
.yb8{bottom:571.104267pt;}
.y85{bottom:572.704267pt;}
.ye8{bottom:573.024267pt;}
.y240{bottom:574.624267pt;}
.y2d{bottom:581.024267pt;}
.y52{bottom:581.344267pt;}
.y2bc{bottom:582.944267pt;}
.y153{bottom:586.144267pt;}
.y5{bottom:587.104267pt;}
.y1df{bottom:587.744267pt;}
.y114{bottom:588.704267pt;}
.yb7{bottom:589.344267pt;}
.y84{bottom:590.944267pt;}
.ye7{bottom:591.264267pt;}
.y272{bottom:596.704267pt;}
.y284{bottom:600.224267pt;}
.y2bb{bottom:600.544267pt;}
.y152{bottom:604.384267pt;}
.y18d{bottom:605.024267pt;}
.y1b7{bottom:605.664267pt;}
.y21c{bottom:605.984267pt;}
.y113{bottom:606.944267pt;}
.yb6{bottom:607.264267pt;}
.y23f{bottom:608.224267pt;}
.ye6{bottom:609.504267pt;}
.y271{bottom:614.944267pt;}
.y51{bottom:617.824267pt;}
.y283{bottom:618.464267pt;}
.y2ba{bottom:619.104267pt;}
.y151{bottom:622.624267pt;}
.y18c{bottom:623.264267pt;}
.y1de{bottom:623.904267pt;}
.y1b6{bottom:624.224267pt;}
.y112{bottom:625.504267pt;}
.yb5{bottom:625.824267pt;}
.y83{bottom:627.744267pt;}
.y23e{bottom:629.344267pt;}
.y270{bottom:629.664267pt;}
.y2c{bottom:635.104267pt;}
.y50{bottom:636.064267pt;}
.y2b9{bottom:636.704267pt;}
.yf{bottom:639.264267pt;}
.y150{bottom:640.864267pt;}
.y18b{bottom:641.184267pt;}
.y1dd{bottom:642.144267pt;}
.y1b5{bottom:642.464267pt;}
.y111{bottom:643.424267pt;}
.y1fd{bottom:643.744267pt;}
.yb4{bottom:644.064267pt;}
.y82{bottom:645.984267pt;}
.y26f{bottom:651.424267pt;}
.y4f{bottom:654.304267pt;}
.y27e{bottom:654.944267pt;}
.y2b8{bottom:655.584267pt;}
.y2b{bottom:656.544267pt;}
.y14f{bottom:658.784267pt;}
.y18a{bottom:659.744267pt;}
.y1dc{bottom:660.384267pt;}
.y1b4{bottom:660.704267pt;}
.y25c{bottom:661.024267pt;}
.y110{bottom:661.664267pt;}
.y1fc{bottom:661.984267pt;}
.yb3{bottom:662.304267pt;}
.y23d{bottom:663.264267pt;}
.y81{bottom:664.224267pt;}
.y2b7{bottom:669.344267pt;}
.y26e{bottom:669.984267pt;}
.y2a{bottom:671.584267pt;}
.y4e{bottom:672.544267pt;}
.y27d{bottom:673.504267pt;}
.y14e{bottom:677.344267pt;}
.y189{bottom:677.984267pt;}
.y1db{bottom:678.304267pt;}
.y21b{bottom:678.624267pt;}
.y1b3{bottom:678.944267pt;}
.y25b{bottom:679.264267pt;}
.y10f{bottom:679.904267pt;}
.y80{bottom:682.464267pt;}
.ye{bottom:682.784267pt;}
.y23c{bottom:684.384267pt;}
.y26d{bottom:688.224267pt;}
.y29{bottom:690.144267pt;}
.y4d{bottom:690.784267pt;}
.y4{bottom:696.224267pt;}
.y1da{bottom:696.544267pt;}
.y21a{bottom:696.864267pt;}
.y1b2{bottom:697.184267pt;}
.y10e{bottom:698.144267pt;}
.yb2{bottom:698.784267pt;}
.y7f{bottom:700.704267pt;}
.y26c{bottom:706.464267pt;}
.y28{bottom:708.064267pt;}
.y4c{bottom:709.664267pt;}
.y282{bottom:710.304267pt;}
.y10d{bottom:710.624267pt;}
.y2b6{bottom:712.864267pt;}
.y14d{bottom:713.824267pt;}
.y1d9{bottom:714.784267pt;}
.y1b1{bottom:715.424267pt;}
.y25a{bottom:715.744267pt;}
.yb1{bottom:717.024267pt;}
.y7e{bottom:718.944267pt;}
.ye5{bottom:719.264267pt;}
.y23b{bottom:720.864267pt;}
.y26b{bottom:724.704267pt;}
.y27{bottom:726.624267pt;}
.yd{bottom:727.264267pt;}
.y281{bottom:728.864267pt;}
.y3{bottom:732.064267pt;}
.y188{bottom:732.384267pt;}
.y1d8{bottom:733.024267pt;}
.y1fb{bottom:734.944267pt;}
.yb0{bottom:735.264267pt;}
.y7d{bottom:737.184267pt;}
.ye4{bottom:737.504267pt;}
.y26a{bottom:742.944267pt;}
.y26{bottom:744.544267pt;}
.y4b{bottom:745.824267pt;}
.y280{bottom:746.784267pt;}
.y14c{bottom:749.984267pt;}
.y187{bottom:750.624267pt;}
.y1d7{bottom:750.944267pt;}
.y219{bottom:751.264267pt;}
.y259{bottom:751.584267pt;}
.y1b0{bottom:751.904267pt;}
.y10c{bottom:752.864267pt;}
.yaf{bottom:753.504267pt;}
.y23a{bottom:754.784267pt;}
.y7c{bottom:755.424267pt;}
.ye3{bottom:755.744267pt;}
.y269{bottom:761.504267pt;}
.y25{bottom:763.104267pt;}
.y4a{bottom:764.064267pt;}
.y2{bottom:764.704267pt;}
.y27f{bottom:765.024267pt;}
.y14b{bottom:768.544267pt;}
.y186{bottom:768.864267pt;}
.y1d6{bottom:769.184267pt;}
.y258{bottom:769.504267pt;}
.y1af{bottom:769.824267pt;}
.y10b{bottom:771.104267pt;}
.y1fa{bottom:771.424267pt;}
.yae{bottom:772.064267pt;}
.y239{bottom:772.704267pt;}
.y7b{bottom:773.664267pt;}
.y268{bottom:779.424267pt;}
.y24{bottom:781.024267pt;}
.y49{bottom:782.304267pt;}
.y14a{bottom:786.464267pt;}
.y185{bottom:786.784267pt;}
.y1d5{bottom:787.424267pt;}
.y218{bottom:787.744267pt;}
.y257{bottom:788.064267pt;}
.y10a{bottom:789.344267pt;}
.y1f9{bottom:789.984267pt;}
.y238{bottom:790.944267pt;}
.y7a{bottom:792.224267pt;}
.ye2{bottom:792.544267pt;}
.y267{bottom:797.984267pt;}
.y2b5{bottom:799.584267pt;}
.y23{bottom:799.904267pt;}
.y27b{bottom:801.824267pt;}
.y149{bottom:805.024267pt;}
.y184{bottom:805.344267pt;}
.y1d4{bottom:805.664267pt;}
.y256{bottom:805.984267pt;}
.y1{bottom:806.304267pt;}
.y1ae{bottom:806.944267pt;}
.y109{bottom:807.904267pt;}
.yad{bottom:808.224267pt;}
.y237{bottom:809.504267pt;}
.ye1{bottom:810.784267pt;}
.y266{bottom:816.224267pt;}
.y22{bottom:818.144267pt;}
.y217{bottom:818.464267pt;}
.y2a9{bottom:818.784267pt;}
.y48{bottom:819.104267pt;}
.y148{bottom:823.264267pt;}
.y1d3{bottom:823.584267pt;}
.y183{bottom:823.904267pt;}
.y2b4{bottom:824.224267pt;}
.y1ad{bottom:825.184267pt;}
.yac{bottom:826.464267pt;}
.y79{bottom:828.704267pt;}
.ye0{bottom:829.024267pt;}
.y236{bottom:830.624267pt;}
.y265{bottom:834.464267pt;}
.y2a8{bottom:835.424267pt;}
.y21{bottom:836.384267pt;}
.y27c{bottom:838.304267pt;}
.y147{bottom:842.144267pt;}
.y255{bottom:842.464267pt;}
.y1d2{bottom:842.784267pt;}
.y1ac{bottom:843.424267pt;}
.y1f8{bottom:844.704267pt;}
.yab{bottom:845.024267pt;}
.y78{bottom:847.264267pt;}
.ydf{bottom:847.584267pt;}
.y264{bottom:849.184267pt;}
.y2a7{bottom:853.664267pt;}
.y182{bottom:859.744267pt;}
.y216{bottom:860.064267pt;}
.y254{bottom:860.384267pt;}
.y2b3{bottom:860.704267pt;}
.y1ab{bottom:861.984267pt;}
.y108{bottom:862.624267pt;}
.yaa{bottom:863.264267pt;}
.y235{bottom:864.544267pt;}
.y77{bottom:865.504267pt;}
.yc{bottom:870.944267pt;}
.y263{bottom:871.264267pt;}
.y20{bottom:873.504267pt;}
.y27a{bottom:875.424267pt;}
.y146{bottom:877.984267pt;}
.y1d1{bottom:878.304267pt;}
.y253{bottom:878.624267pt;}
.y2b2{bottom:878.944267pt;}
.y1aa{bottom:880.544267pt;}
.y107{bottom:880.864267pt;}
.ya9{bottom:881.504267pt;}
.y234{bottom:882.784267pt;}
.y76{bottom:883.744267pt;}
.yde{bottom:884.384267pt;}
.y47{bottom:886.944267pt;}
.y262{bottom:889.504267pt;}
.y181{bottom:896.224267pt;}
.y145{bottom:896.544267pt;}
.y252{bottom:896.864267pt;}
.y2a6{bottom:897.504267pt;}
.y233{bottom:897.824267pt;}
.y106{bottom:899.424267pt;}
.ya8{bottom:900.064267pt;}
.y75{bottom:902.304267pt;}
.y261{bottom:908.064267pt;}
.y2a5{bottom:909.344267pt;}
.y46{bottom:910.624267pt;}
.y279{bottom:911.904267pt;}
.y180{bottom:914.464267pt;}
.y144{bottom:914.784267pt;}
.y2b1{bottom:915.424267pt;}
.y1d0{bottom:915.744267pt;}
.y1a9{bottom:917.024267pt;}
.y105{bottom:917.664267pt;}
.y1f7{bottom:917.984267pt;}
.ya7{bottom:918.624267pt;}
.y74{bottom:920.544267pt;}
.ydd{bottom:920.864267pt;}
.y260{bottom:926.304267pt;}
.y1f{bottom:928.544267pt;}
.y17f{bottom:932.704267pt;}
.y143{bottom:933.024267pt;}
.y2b0{bottom:933.664267pt;}
.y215{bottom:934.624267pt;}
.y1a8{bottom:935.584267pt;}
.y104{bottom:935.904267pt;}
.ya6{bottom:936.864267pt;}
.y251{bottom:937.824267pt;}
.y232{bottom:938.144267pt;}
.y73{bottom:938.784267pt;}
.ydc{bottom:939.104267pt;}
.y2a4{bottom:945.184267pt;}
.y1a{bottom:945.265600pt;}
.y17e{bottom:951.264267pt;}
.y142{bottom:951.584267pt;}
.y1a7{bottom:954.144267pt;}
.y103{bottom:954.464267pt;}
.ya5{bottom:955.424267pt;}
.y231{bottom:956.704267pt;}
.y72{bottom:957.664267pt;}
.ydb{bottom:957.984267pt;}
.y2a3{bottom:961.504267pt;}
.y25f{bottom:964.064267pt;}
.y1e{bottom:965.024267pt;}
.y17d{bottom:969.504267pt;}
.y1cf{bottom:969.824267pt;}
.y141{bottom:970.784267pt;}
.y45{bottom:971.104267pt;}
.y214{bottom:971.744267pt;}
.y1a6{bottom:972.384267pt;}
.y102{bottom:973.024267pt;}
.ya4{bottom:973.664267pt;}
.y230{bottom:974.944267pt;}
.y71{bottom:976.224267pt;}
.y2a2{bottom:981.664267pt;}
.y1d{bottom:982.944267pt;}
.y19{bottom:983.665600pt;}
.y17c{bottom:987.424267pt;}
.y1ce{bottom:988.064267pt;}
.y140{bottom:988.384267pt;}
.ya3{bottom:989.024267pt;}
.y213{bottom:989.984267pt;}
.y1a5{bottom:990.944267pt;}
.y101{bottom:991.264267pt;}
.y22f{bottom:993.504267pt;}
.yda{bottom:994.464267pt;}
.y44{bottom:1000.224267pt;}
.y2a1{bottom:1002.144267pt;}
.y18{bottom:1002.865600pt;}
.y212{bottom:1005.984267pt;}
.y17b{bottom:1006.304267pt;}
.y13f{bottom:1006.944267pt;}
.y1a4{bottom:1009.504267pt;}
.y250{bottom:1010.144267pt;}
.y100{bottom:1010.464267pt;}
.ya2{bottom:1010.784267pt;}
.y22e{bottom:1012.064267pt;}
.y70{bottom:1012.384267pt;}
.yd9{bottom:1013.344267pt;}
.y25e{bottom:1018.784267pt;}
.y1c{bottom:1019.104267pt;}
.y17{bottom:1022.065600pt;}
.y1cd{bottom:1025.184267pt;}
.y2a0{bottom:1033.504267pt;}
.y17a{bottom:1035.424267pt;}
.y16{bottom:1041.265600pt;}
.y24f{bottom:1069.984267pt;}
.y1f6{bottom:1078.304267pt;}
.y1b{bottom:1080.224267pt;}
.yb{bottom:1082.784267pt;}
.ha1{height:27.812500pt;}
.h3c{height:33.375000pt;}
.h3b{height:33.817500pt;}
.h6c{height:34.655000pt;}
.h66{height:34.876250pt;}
.h77{height:35.097500pt;}
.hc{height:36.156250pt;}
.h76{height:36.377500pt;}
.h75{height:36.598750pt;}
.h6d{height:37.436250pt;}
.h62{height:37.657500pt;}
.hb0{height:38.716250pt;}
.h57{height:38.937500pt;}
.h67{height:39.158750pt;}
.h8d{height:39.996250pt;}
.h6e{height:40.217500pt;}
.h63{height:40.438750pt;}
.h61{height:40.660000pt;}
.h58{height:41.718750pt;}
.h89{height:42.777500pt;}
.h91{height:43.662500pt;}
.h56{height:44.057500pt;}
.h33{height:44.500000pt;}
.h18{height:44.992000pt;}
.h8e{height:45.337500pt;}
.h8a{height:45.558750pt;}
.h59{height:45.780000pt;}
.h2c{height:46.001250pt;}
.h6b{height:46.617500pt;}
.h5f{height:47.281250pt;}
.h8b{height:47.455000pt;}
.h64{height:47.502500pt;}
.hc5{height:47.723750pt;}
.h5a{height:48.118750pt;}
.h2d{height:48.340000pt;}
.h65{height:48.782500pt;}
.h3d{height:50.062500pt;}
.h86{height:51.121250pt;}
.h23{height:51.342500pt;}
.ha2{height:51.563750pt;}
.h17{height:51.904000pt;}
.had{height:52.006250pt;}
.hac{height:52.227500pt;}
.h22{height:52.622500pt;}
.h29{height:52.843750pt;}
.h73{height:53.065000pt;}
.h84{height:53.286250pt;}
.h2f{height:53.507500pt;}
.h28{height:53.681250pt;}
.h55{height:53.902500pt;}
.haf{height:54.123750pt;}
.h3a{height:54.345000pt;}
.h2e{height:54.566250pt;}
.h85{height:54.613750pt;}
.h25{height:55.182500pt;}
.h1f{height:55.403750pt;}
.h2a{height:55.625000pt;}
.h37{height:55.846250pt;}
.hb7{height:56.462500pt;}
.h26{height:56.683750pt;}
.h8c{height:56.857500pt;}
.h5e{height:56.905000pt;}
.h34{height:57.126250pt;}
.hc4{height:57.173750pt;}
.h90{height:57.347500pt;}
.hbb{height:57.963750pt;}
.h1c{height:58.185000pt;}
.h27{height:58.406250pt;}
.h39{height:58.627500pt;}
.h71{height:58.848750pt;}
.h9c{height:59.243750pt;}
.h21{height:59.465000pt;}
.h35{height:59.686250pt;}
.h38{height:59.907500pt;}
.h74{height:60.128750pt;}
.h83{height:60.350000pt;}
.h6a{height:60.523750pt;}
.h4b{height:60.745000pt;}
.h54{height:60.966250pt;}
.h24{height:61.187500pt;}
.h82{height:61.408750pt;}
.hbd{height:61.582500pt;}
.h52{height:61.803750pt;}
.h51{height:62.025000pt;}
.h50{height:62.246250pt;}
.h5d{height:62.467500pt;}
.h32{height:62.688750pt;}
.hbc{height:62.862500pt;}
.hb6{height:63.083750pt;}
.h46{height:63.305000pt;}
.h4c{height:63.526250pt;}
.h5c{height:63.747500pt;}
.h15{height:63.968750pt;}
.h47{height:64.363750pt;}
.h49{height:64.585000pt;}
.h3e{height:64.806250pt;}
.h4e{height:65.027500pt;}
.h53{height:65.248750pt;}
.h36{height:65.470000pt;}
.hb8{height:65.643750pt;}
.h7a{height:65.865000pt;}
.h4a{height:66.086250pt;}
.h4d{height:66.307500pt;}
.h70{height:66.528750pt;}
.hc3{height:66.702500pt;}
.hb3{height:66.750000pt;}
.ha4{height:66.923750pt;}
.h7b{height:67.145000pt;}
.h42{height:67.366250pt;}
.h48{height:67.587500pt;}
.h60{height:67.808750pt;}
.h13{height:68.030000pt;}
.h2b{height:68.203750pt;}
.h9b{height:68.425000pt;}
.h41{height:68.646250pt;}
.h40{height:68.867500pt;}
.h68{height:69.088750pt;}
.h14{height:69.310000pt;}
.h9e{height:69.483750pt;}
.h1a{height:69.531250pt;}
.h7c{height:69.705000pt;}
.h78{height:69.926250pt;}
.h3f{height:70.147500pt;}
.h4f{height:70.368750pt;}
.h45{height:70.590000pt;}
.h9a{height:70.763750pt;}
.h96{height:70.985000pt;}
.ha5{height:71.206250pt;}
.h44{height:71.427500pt;}
.h69{height:71.648750pt;}
.hae{height:71.870000pt;}
.h7f{height:72.043750pt;}
.h97{height:72.265000pt;}
.ha{height:72.312500pt;}
.h9d{height:72.486250pt;}
.haa{height:72.707500pt;}
.h93{height:73.323750pt;}
.h7d{height:73.545000pt;}
.h5b{height:73.766250pt;}
.h81{height:73.813750pt;}
.h79{height:73.987500pt;}
.hab{height:74.208750pt;}
.ha8{height:74.382500pt;}
.hba{height:74.430000pt;}
.ha0{height:74.825000pt;}
.h1d{height:74.872500pt;}
.h7e{height:75.046250pt;}
.h11{height:75.093750pt;}
.ha9{height:75.267500pt;}
.h8f{height:75.710000pt;}
.h9f{height:76.105000pt;}
.h43{height:76.152500pt;}
.h98{height:76.326250pt;}
.h9{height:76.595000pt;}
.h88{height:76.768750pt;}
.hc0{height:76.942500pt;}
.h92{height:77.385000pt;}
.h80{height:77.606250pt;}
.hb5{height:77.653750pt;}
.h8{height:77.875000pt;}
.ha6{height:78.048750pt;}
.hb9{height:78.270000pt;}
.h72{height:78.886250pt;}
.h87{height:78.933750pt;}
.h99{height:79.107500pt;}
.h1b{height:79.771250pt;}
.h16{height:80.435000pt;}
.h20{height:80.656250pt;}
.h95{height:81.446250pt;}
.hbe{height:81.667500pt;}
.hb2{height:81.888750pt;}
.h94{height:82.726250pt;}
.h1e{height:83.437500pt;}
.hc2{height:83.563750pt;}
.h6f{height:84.006250pt;}
.h12{height:85.997500pt;}
.h19{height:86.218750pt;}
.ha7{height:86.566250pt;}
.ha3{height:87.846250pt;}
.hbf{height:90.627500pt;}
.hc6{height:91.781250pt;}
.hb4{height:94.562500pt;}
.hc1{height:100.693750pt;}
.h30{height:102.906250pt;}
.h31{height:105.908750pt;}
.h6{height:109.970000pt;}
.h3{height:111.250000pt;}
.hb{height:124.713750pt;}
.h7{height:125.156250pt;}
.h10{height:139.062500pt;}
.hf{height:140.342500pt;}
.hb1{height:141.843750pt;}
.h5{height:144.625000pt;}
.he{height:152.968750pt;}
.h4{height:164.093750pt;}
.h2{height:166.875000pt;}
.hd{height:172.437500pt;}
.h1{height:1072.666667pt;}
.h0{height:1072.785600pt;}
.w0{width:717.828667pt;}
.w1{width:718.000000pt;}
.x4c{left:-19.096667pt;}
.x27{left:-16.536667pt;}
.x48{left:-13.656667pt;}
.x51{left:-12.376667pt;}
.x68{left:-3.736667pt;}
.x14{left:-1.176667pt;}
.x0{left:0.000000pt;}
.x31{left:21.223333pt;}
.x26{left:22.503333pt;}
.x25{left:23.463333pt;}
.x24{left:24.423333pt;}
.x21{left:25.383333pt;}
.x22{left:26.343333pt;}
.x35{left:27.623333pt;}
.x3d{left:28.583333pt;}
.x44{left:29.543333pt;}
.x46{left:31.143333pt;}
.x6a{left:33.063333pt;}
.x20{left:34.023333pt;}
.x6e{left:34.983333pt;}
.x6c{left:35.943333pt;}
.x2d{left:36.903333pt;}
.x29{left:38.183333pt;}
.x2b{left:39.143333pt;}
.x2f{left:40.103333pt;}
.x2c{left:41.063333pt;}
.x32{left:43.943333pt;}
.x1{left:45.543333pt;}
.x23{left:46.823333pt;}
.x34{left:48.423333pt;}
.x3e{left:50.023333pt;}
.x4f{left:50.983333pt;}
.x45{left:51.943333pt;}
.x4a{left:52.903333pt;}
.x64{left:53.863333pt;}
.x6b{left:55.143333pt;}
.x69{left:56.103333pt;}
.x6d{left:57.063333pt;}
.x70{left:58.343333pt;}
.x33{left:59.623333pt;}
.x2a{left:60.583333pt;}
.x2e{left:62.183333pt;}
.x3b{left:63.143333pt;}
.x49{left:64.103333pt;}
.x16{left:66.023333pt;}
.x1a{left:69.863333pt;}
.x1f{left:70.823333pt;}
.x54{left:72.423333pt;}
.x55{left:73.383333pt;}
.x4{left:74.983333pt;}
.x40{left:75.943333pt;}
.x65{left:77.223333pt;}
.x13{left:78.382000pt;}
.x37{left:85.223333pt;}
.x1b{left:87.783333pt;}
.x1c{left:88.743333pt;}
.x1e{left:89.703333pt;}
.x41{left:122.343333pt;}
.xd{left:124.263333pt;}
.xc{left:148.263333pt;}
.x38{left:155.303333pt;}
.xa{left:183.783333pt;}
.x3{left:194.023333pt;}
.x9{left:198.503333pt;}
.x6{left:202.983333pt;}
.x50{left:205.863333pt;}
.xb{left:218.343333pt;}
.x5{left:232.743333pt;}
.x8{left:233.703333pt;}
.x11{left:238.503333pt;}
.xf{left:241.703333pt;}
.x18{left:249.063333pt;}
.x12{left:258.343333pt;}
.xe{left:261.543333pt;}
.x17{left:263.143333pt;}
.x19{left:273.383333pt;}
.x1d{left:276.583333pt;}
.x10{left:279.143333pt;}
.x7{left:281.063333pt;}
.x15{left:303.783333pt;}
.x28{left:329.383333pt;}
.x36{left:332.263333pt;}
.x3f{left:334.503333pt;}
.x4d{left:336.103333pt;}
.x47{left:340.263333pt;}
.x52{left:342.503333pt;}
.x30{left:348.583333pt;}
.x3c{left:350.823333pt;}
.x53{left:351.783333pt;}
.x73{left:352.743333pt;}
.x63{left:355.303333pt;}
.x67{left:372.583333pt;}
.x2{left:400.423333pt;}
.x42{left:430.183333pt;}
.x39{left:439.463333pt;}
.x3a{left:475.623333pt;}
.x43{left:497.703333pt;}
.x77{left:573.223333pt;}
.x78{left:586.663333pt;}
.x74{left:613.863333pt;}
.x5d{left:624.423333pt;}
.x6f{left:625.383333pt;}
.x76{left:642.983333pt;}
.x72{left:649.383333pt;}
.x56{left:650.663333pt;}
.x71{left:655.143333pt;}
.x75{left:656.423333pt;}
.x58{left:658.343333pt;}
.x5f{left:659.623333pt;}
.x5a{left:666.023333pt;}
.x60{left:667.303333pt;}
.x59{left:672.423333pt;}
.x5e{left:674.023333pt;}
.x62{left:674.983333pt;}
.x66{left:675.943333pt;}
.x61{left:677.223333pt;}
.x57{left:679.463333pt;}
.x5c{left:680.423333pt;}
.x5b{left:681.703333pt;}
.x4e{left:740.263333pt;}
.x4b{left:746.023333pt;}
}




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