
    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_caa99afdc6c4479bc583a901.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.176000;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_548ca774838732ee8ef57e3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_3d143d010c3c39e796bf3690.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130000;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_6b2ae2df20d837773107d3aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_e0d736f950311b0ecd504ae8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.099500;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_2abf19747f1a364b0b9e69c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_55a34b3778e732d89e2c0571.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.144000;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_70a444c62b31e7e86acbac48.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734375;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_435c8af3d22192d09f5afb2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_b845df1660f95fac2411f52e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.069000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1fe55dd9c40cd3617d8c4b5e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.105000;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_f8a34ac6e06a1879b3dcccde.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104583;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_e356357c3f99974ac18e3817.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.176000;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_418b64cf91898cac01938f94.woff2')format("woff");}.fff{font-family:fff;line-height:1.143000;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_ecb295ea282030728ff1894d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.105000;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_2bee8fc265ebfe3bc76d4787.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.701000;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_df1061f9c0ce1bd94f4bc14e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.724000;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_549f2bce968d4a5be0b96b49.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.087500;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_05a27fd737b2cb9994d338dc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.713000;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_f43777d73e988809fa656039.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.094500;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_0b06b457eff802d832b4f4ff.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.087000;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);}
.v2{vertical-align:-24.888300px;}
.v6{vertical-align:-22.767180px;}
.v4{vertical-align:-18.215640px;}
.v5{vertical-align:-17.076540px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.399200px;}
.v1{vertical-align:24.888300px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000540px;}
.ls9{letter-spacing:0.001380px;}
.ls8{letter-spacing:0.012660px;}
.ls3{letter-spacing:0.016620px;}
.ls1{letter-spacing:0.016860px;}
.ls5{letter-spacing:0.017700px;}
.ls6{letter-spacing:0.018300px;}
.ls0{letter-spacing:0.018960px;}
.ls7{letter-spacing:0.019200px;}
.lsa{letter-spacing:3.283762px;}
.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;}
}
.ws6{word-spacing:-54.000000px;}
.ws11{word-spacing:-36.707764px;}
.wsa{word-spacing:-28.032000px;}
.wsc{word-spacing:-26.280000px;}
.ws12{word-spacing:-16.776000px;}
.ws13{word-spacing:-15.378000px;}
.ws10{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.220000px;}
.ws14{word-spacing:-13.980000px;}
.ws5{word-spacing:-13.200000px;}
.ws2{word-spacing:-12.798000px;}
.ws8{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.376000px;}
.wsf{word-spacing:-10.008000px;}
.ws1{word-spacing:-8.532000px;}
.ws9{word-spacing:-8.006400px;}
.wsd{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.678800px;}
.wsb{word-spacing:-7.506000px;}
.wse{word-spacing:-6.399000px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:1.680000px;}
._b{margin-left:-11.051632px;}
._12{margin-left:-9.963947px;}
._a{margin-left:-8.817925px;}
._7{margin-left:-7.776676px;}
._5{margin-left:-6.243575px;}
._3{margin-left:-4.362331px;}
._1{margin-left:-3.270311px;}
._4{margin-left:-1.294382px;}
._2{width:1.004639px;}
._0{width:2.051222px;}
._6{width:3.749035px;}
._11{width:37.242331px;}
._f{width:38.523575px;}
._10{width:39.903575px;}
._9{width:41.202000px;}
._d{width:42.780026px;}
._e{width:45.454358px;}
._14{width:46.650315px;}
._15{width:49.788000px;}
._c{width:51.299993px;}
._8{width:55.080000px;}
._13{width:58.919981px;}
.fca{color:rgb(75,134,146);}
.fc6{color:rgb(27,28,29);}
.fc4{color:transparent;}
.fcb{color:rgb(49,88,159);}
.fc3{color:rgb(17,85,204);}
.fc9{color:rgb(35,31,32);}
.fc8{color:rgb(31,31,31);}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(36,36,36);}
.fc2{color:rgb(67,67,67);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:8.400000px;}
.fs9{font-size:27.000000px;}
.fs7{font-size:28.800000px;}
.fs6{font-size:32.400000px;}
.fs4{font-size:36.000000px;}
.fs10{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fsf{font-size:88.672800px;}
.fs2{font-size:90.000000px;}
.fsd{font-size:102.000000px;}
.fs1{font-size:108.000000px;}
.fse{font-size:117.277200px;}
.y0{bottom:0.000000px;}
.y377{bottom:3.109500px;}
.y224{bottom:11.005050px;}
.y209{bottom:11.005500px;}
.y201{bottom:11.005950px;}
.y210{bottom:11.006400px;}
.y1ec{bottom:11.006550px;}
.y1f2{bottom:11.006850px;}
.y1e3{bottom:11.007000px;}
.y1e7{bottom:11.007300px;}
.y21b{bottom:11.007450px;}
.y1f8{bottom:11.007750px;}
.y1f6{bottom:11.008200px;}
.y216{bottom:11.008500px;}
.y218{bottom:11.010000px;}
.y27a{bottom:11.967900px;}
.y350{bottom:11.969100px;}
.y193{bottom:11.969400px;}
.y1e0{bottom:11.969850px;}
.y14f{bottom:11.970300px;}
.yca{bottom:11.970600px;}
.y2e3{bottom:11.973900px;}
.y145{bottom:13.608000px;}
.y34b{bottom:13.611000px;}
.y58{bottom:19.783500px;}
.y2{bottom:19.785000px;}
.y1db{bottom:28.606500px;}
.yc4{bottom:28.608000px;}
.y212{bottom:29.671500px;}
.y208{bottom:29.671650px;}
.y227{bottom:29.671800px;}
.y221{bottom:29.672250px;}
.y20e{bottom:29.672400px;}
.y21a{bottom:29.672550px;}
.y1f1{bottom:29.673000px;}
.y1eb{bottom:29.673300px;}
.y200{bottom:29.673900px;}
.y1e6{bottom:29.674050px;}
.y1f5{bottom:29.674350px;}
.y1ee{bottom:29.674500px;}
.y21d{bottom:29.674950px;}
.y236{bottom:30.823650px;}
.y1df{bottom:30.824100px;}
.y161{bottom:30.824250px;}
.y14e{bottom:30.824550px;}
.yc9{bottom:30.825450px;}
.y279{bottom:30.826350px;}
.y2e2{bottom:30.826500px;}
.y378{bottom:31.638750px;}
.y207{bottom:48.337800px;}
.y226{bottom:48.338550px;}
.y1ff{bottom:48.339000px;}
.y1ea{bottom:48.340050px;}
.y20d{bottom:48.340350px;}
.y1f4{bottom:48.340500px;}
.y215{bottom:48.340650px;}
.y1fa{bottom:48.341250px;}
.y1e5{bottom:48.342000px;}
.y1de{bottom:49.679550px;}
.y160{bottom:49.679700px;}
.y14d{bottom:49.680000px;}
.yc8{bottom:49.680300px;}
.y2e1{bottom:49.681950px;}
.y56{bottom:58.409250px;}
.y303{bottom:58.410900px;}
.y206{bottom:67.004550px;}
.y1fe{bottom:67.005750px;}
.y20c{bottom:67.006500px;}
.y214{bottom:67.007400px;}
.y1e9{bottom:67.008000px;}
.y34f{bottom:68.532600px;}
.y14c{bottom:68.533650px;}
.y15f{bottom:68.533950px;}
.y235{bottom:68.534550px;}
.y1dd{bottom:68.535000px;}
.yc7{bottom:68.535150px;}
.y2e0{bottom:68.537400px;}
.y28{bottom:74.605650px;}
.y1fd{bottom:85.672500px;}
.y14b{bottom:87.389100px;}
.yc6{bottom:87.390000px;}
.y34e{bottom:87.391050px;}
.y25b{bottom:101.410050px;}
.y198{bottom:101.853900px;}
.y26a{bottom:101.854050px;}
.yae{bottom:101.854200px;}
.y122{bottom:101.854350px;}
.y1c3{bottom:101.854425px;}
.y232{bottom:101.854500px;}
.y150{bottom:101.854650px;}
.y2fc{bottom:101.854875px;}
.yde{bottom:101.854890px;}
.y371{bottom:101.854950px;}
.yf6{bottom:101.855250px;}
.y293{bottom:101.855400px;}
.y55{bottom:101.856000px;}
.y2d9{bottom:102.496200px;}
.y2c5{bottom:102.878550px;}
.y205{bottom:104.337600px;}
.y14a{bottom:106.244550px;}
.y34d{bottom:106.246500px;}
.y372{bottom:115.207650px;}
.yaf{bottom:115.653600px;}
.y2da{bottom:115.996200px;}
.y27{bottom:118.599300px;}
.y204{bottom:123.003750px;}
.y2c4{bottom:123.617850px;}
.y149{bottom:125.099400px;}
.y294{bottom:129.006450px;}
.ydf{bottom:129.452400px;}
.yb0{bottom:130.832250px;}
.y37c{bottom:131.463000px;}
.y2db{bottom:131.568750px;}
.y386{bottom:140.463000px;}
.y203{bottom:141.670500px;}
.ye0{bottom:143.251200px;}
.y2fd{bottom:143.892750px;}
.y148{bottom:143.954250px;}
.y31b{bottom:144.585900px;}
.yb1{bottom:144.631050px;}
.y25a{bottom:145.262250px;}
.y54{bottom:146.342100px;}
.y348{bottom:151.585350px;}
.ye1{bottom:157.050000px;}
.y2fe{bottom:157.392750px;}
.yb2{bottom:158.430000px;}
.y2c3{bottom:158.761050px;}
.y385{bottom:160.263000px;}
.y231{bottom:161.200050px;}
.y370{bottom:162.263700px;}
.y147{bottom:162.808500px;}
.y292{bottom:163.342500px;}
.y53{bottom:165.008250px;}
.y31a{bottom:165.328050px;}
.y146{bottom:165.675000px;}
.y259{bottom:166.001550px;}
.y2be{bottom:170.434350px;}
.ye2{bottom:170.848800px;}
.y37b{bottom:171.063000px;}
.y2ff{bottom:171.192300px;}
.yb3{bottom:172.228800px;}
.y347{bottom:172.324650px;}
.y2d8{bottom:172.511700px;}
.y26{bottom:173.121900px;}
.y269{bottom:174.369150px;}
.y2c2{bottom:177.428100px;}
.y384{bottom:178.263000px;}
.yf5{bottom:179.643150px;}
.y1e8{bottom:180.793500px;}
.y230{bottom:181.939350px;}
.y36f{bottom:183.003000px;}
.y52{bottom:183.675000px;}
.y291{bottom:184.082100px;}
.y123{bottom:184.203150px;}
.ye3{bottom:184.647300px;}
.y300{bottom:184.990800px;}
.y319{bottom:186.067350px;}
.y2bd{bottom:191.176500px;}
.y258{bottom:192.742050px;}
.y268{bottom:193.035900px;}
.y346{bottom:193.066800px;}
.y2d7{bottom:193.251000px;}
.y2c1{bottom:196.094850px;}
.y383{bottom:196.263000px;}
.y199{bottom:198.447300px;}
.y301{bottom:198.789300px;}
.y1e4{bottom:199.459500px;}
.yf4{bottom:200.383650px;}
.y51{bottom:202.341150px;}
.y22f{bottom:202.679850px;}
.y177{bottom:204.224850px;}
.y290{bottom:204.823050px;}
.y318{bottom:206.806650px;}
.y37a{bottom:210.663000px;}
.y2bc{bottom:211.917600px;}
.y19a{bottom:212.245800px;}
.y302{bottom:212.587800px;}
.y36e{bottom:212.741550px;}
.y257{bottom:213.483000px;}
.y1c2{bottom:213.804825px;}
.y345{bottom:213.808950px;}
.y2d6{bottom:213.991500px;}
.y382{bottom:214.263000px;}
.y1ed{bottom:218.127000px;}
.y267{bottom:218.299200px;}
.yad{bottom:218.770950px;}
.y50{bottom:221.007900px;}
.yf3{bottom:221.124600px;}
.y22e{bottom:223.420800px;}
.y176{bottom:224.965350px;}
.y28f{bottom:225.565200px;}
.y317{bottom:227.545950px;}
.y2c0{bottom:230.358150px;}
.y121{bottom:232.064850px;}
.y2bb{bottom:232.658550px;}
.y36d{bottom:233.483700px;}
.ydd{bottom:233.617590px;}
.y256{bottom:234.223500px;}
.y1c1{bottom:234.546975px;}
.y2d5{bottom:234.733650px;}
.y25{bottom:237.379350px;}
.yac{bottom:239.511450px;}
.y4f{bottom:239.674050px;}
.yf2{bottom:241.865100px;}
.y2fb{bottom:243.222825px;}
.y22d{bottom:244.161300px;}
.y175{bottom:245.705250px;}
.y316{bottom:248.288100px;}
.y344{bottom:249.548250px;}
.y379{bottom:252.063000px;}
.y120{bottom:252.805800px;}
.y2ba{bottom:253.397850px;}
.y36c{bottom:254.225850px;}
.y255{bottom:254.964450px;}
.y1c0{bottom:255.286275px;}
.ydc{bottom:255.300675px;}
.y28e{bottom:255.304500px;}
.y2d4{bottom:255.474600px;}
.y24{bottom:256.045500px;}
.y197{bottom:257.186400px;}
.y4e{bottom:258.340800px;}
.yab{bottom:260.252400px;}
.yf1{bottom:262.606050px;}
.y2fa{bottom:263.964975px;}
.y22c{bottom:264.902250px;}
.y174{bottom:266.446800px;}
.y1e2{bottom:267.834000px;}
.y315{bottom:269.027400px;}
.y343{bottom:270.287550px;}
.y11f{bottom:273.546300px;}
.y2b9{bottom:274.138650px;}
.y23{bottom:274.712250px;}
.y36b{bottom:274.965150px;}
.y254{bottom:275.704950px;}
.y1bf{bottom:276.026775px;}
.y28d{bottom:276.043950px;}
.y2d3{bottom:276.213900px;}
.ydb{bottom:276.983925px;}
.y4d{bottom:277.006950px;}
.yaa{bottom:280.992900px;}
.yf0{bottom:283.345950px;}
.y2f9{bottom:284.707125px;}
.y22b{bottom:285.641550px;}
.y173{bottom:287.186100px;}
.y314{bottom:289.769550px;}
.y342{bottom:291.029700px;}
.y196{bottom:292.927350px;}
.y373{bottom:293.581500px;}
.y11e{bottom:294.286800px;}
.y2b8{bottom:294.877950px;}
.y4c{bottom:295.673100px;}
.y36a{bottom:295.778250px;}
.y253{bottom:296.445900px;}
.y1be{bottom:296.767725px;}
.y28c{bottom:296.784450px;}
.y2d2{bottom:296.953200px;}
.y85{bottom:297.945750px;}
.yda{bottom:298.667175px;}
.ya9{bottom:301.733400px;}
.yef{bottom:304.086450px;}
.y2f8{bottom:305.446425px;}
.y22a{bottom:306.383700px;}
.y172{bottom:307.927050px;}
.y22{bottom:308.378400px;}
.y144{bottom:308.973000px;}
.y313{bottom:310.508850px;}
.y341{bottom:311.767875px;}
.y4b{bottom:314.339850px;}
.y11d{bottom:315.027300px;}
.y2b7{bottom:315.618450px;}
.y252{bottom:317.185200px;}
.y1bd{bottom:317.508225px;}
.y28b{bottom:317.526600px;}
.y2d1{bottom:317.695350px;}
.y1e1{bottom:319.257000px;}
.yd9{bottom:320.350500px;}
.ya8{bottom:322.473900px;}
.y2f7{bottom:326.185725px;}
.y369{bottom:326.234700px;}
.y21{bottom:327.044550px;}
.y229{bottom:327.123000px;}
.y171{bottom:328.667550px;}
.y312{bottom:331.251000px;}
.y195{bottom:331.657200px;}
.y340{bottom:332.507175px;}
.y11c{bottom:335.768250px;}
.y2b6{bottom:336.359400px;}
.y251{bottom:337.927350px;}
.y1bc{bottom:338.249175px;}
.y28a{bottom:338.267550px;}
.y2d0{bottom:338.435850px;}
.yd8{bottom:342.034350px;}
.yee{bottom:342.816900px;}
.ya7{bottom:343.214400px;}
.y20{bottom:345.711300px;}
.y368{bottom:346.976850px;}
.y1dc{bottom:347.542500px;}
.y228{bottom:347.863500px;}
.y4a{bottom:348.006000px;}
.y170{bottom:349.408050px;}
.y311{bottom:351.990300px;}
.y84{bottom:352.467750px;}
.y33f{bottom:353.249325px;}
.y2f6{bottom:355.927875px;}
.y11b{bottom:356.508750px;}
.y2b5{bottom:357.098700px;}
.y289{bottom:359.006850px;}
.y2cf{bottom:359.176800px;}
.y194{bottom:362.767500px;}
.yd7{bottom:363.717150px;}
.ya6{bottom:363.955350px;}
.y1f{bottom:364.377450px;}
.y250{bottom:364.666650px;}
.y1bb{bottom:364.988475px;}
.y367{bottom:367.716150px;}
.y16f{bottom:370.149000px;}
.y83{bottom:371.134500px;}
.y143{bottom:372.099300px;}
.y1da{bottom:372.565500px;}
.y310{bottom:372.732450px;}
.y33e{bottom:373.988625px;}
.y2f5{bottom:376.667175px;}
.y11a{bottom:377.248650px;}
.y2b4{bottom:377.840850px;}
.y225{bottom:378.750000px;}
.y288{bottom:379.746150px;}
.y2ce{bottom:379.916100px;}
.y49{bottom:381.670950px;}
.y1e{bottom:383.044200px;}
.ya5{bottom:384.695850px;}
.yd6{bottom:385.401000px;}
.y24f{bottom:385.407150px;}
.y1ba{bottom:385.728975px;}
.y366{bottom:388.455450px;}
.y82{bottom:389.800650px;}
.y16e{bottom:390.888600px;}
.y142{bottom:392.840850px;}
.y30f{bottom:393.471750px;}
.y33d{bottom:394.727925px;}
.yed{bottom:397.339350px;}
.y2f4{bottom:397.409325px;}
.y119{bottom:397.989150px;}
.y2b3{bottom:398.580150px;}
.y287{bottom:400.488300px;}
.y2cd{bottom:400.655400px;}
.y1d{bottom:401.710350px;}
.ya4{bottom:405.436350px;}
.y24e{bottom:406.148100px;}
.y1b9{bottom:406.469925px;}
.yd5{bottom:407.084250px;}
.y81{bottom:408.467400px;}
.y365{bottom:409.194750px;}
.y16d{bottom:411.628500px;}
.y192{bottom:411.907500px;}
.y141{bottom:413.580150px;}
.y30e{bottom:414.211050px;}
.y33c{bottom:415.470075px;}
.yec{bottom:416.004825px;}
.y223{bottom:416.083500px;}
.y2f3{bottom:418.148625px;}
.y118{bottom:418.729650px;}
.y286{bottom:421.228800px;}
.y2cc{bottom:421.397550px;}
.y48{bottom:423.436050px;}
.ya3{bottom:426.176850px;}
.y24d{bottom:426.888600px;}
.y80{bottom:427.133550px;}
.y2b2{bottom:428.320650px;}
.yd4{bottom:428.766675px;}
.y364{bottom:430.007850px;}
.y16c{bottom:432.370050px;}
.y1b8{bottom:433.210425px;}
.y140{bottom:434.321100px;}
.y222{bottom:434.748000px;}
.y1c{bottom:435.375750px;}
.y33b{bottom:436.212225px;}
.y2f2{bottom:438.887925px;}
.y117{bottom:439.470600px;}
.y285{bottom:441.969750px;}
.y47{bottom:444.176550px;}
.y7f{bottom:445.800300px;}
.ya2{bottom:446.917800px;}
.y24c{bottom:447.629550px;}
.y2b1{bottom:449.061600px;}
.y30d{bottom:449.354550px;}
.yeb{bottom:450.269325px;}
.yd3{bottom:450.449325px;}
.y16b{bottom:453.109350px;}
.y1b7{bottom:453.951375px;}
.y1b{bottom:454.042500px;}
.y13f{bottom:455.061600px;}
.y191{bottom:455.785500px;}
.y2cb{bottom:456.540750px;}
.y2f1{bottom:459.627225px;}
.y1d9{bottom:459.690450px;}
.y116{bottom:460.211100px;}
.y363{bottom:460.467150px;}
.y284{bottom:462.709050px;}
.y7e{bottom:464.466450px;}
.y46{bottom:464.917050px;}
.y220{bottom:465.790500px;}
.y33a{bottom:465.951525px;}
.y30c{bottom:468.023700px;}
.y24b{bottom:468.370050px;}
.y2b0{bottom:469.803750px;}
.yd2{bottom:472.133775px;}
.y16a{bottom:473.850900px;}
.y1b6{bottom:474.691875px;}
.y2ca{bottom:475.205850px;}
.y13e{bottom:475.802100px;}
.y2f0{bottom:480.369375px;}
.y1d8{bottom:480.432600px;}
.y115{bottom:480.952050px;}
.y362{bottom:481.206450px;}
.ya1{bottom:482.657700px;}
.y7d{bottom:483.132600px;}
.y283{bottom:483.451200px;}
.y45{bottom:485.657550px;}
.y30b{bottom:486.688800px;}
.y339{bottom:486.690825px;}
.y24a{bottom:489.109350px;}
.y2af{bottom:490.543050px;}
.yd1{bottom:493.816425px;}
.y2c9{bottom:493.870950px;}
.y169{bottom:494.590800px;}
.y1b5{bottom:495.432825px;}
.y13d{bottom:496.543050px;}
.y2ef{bottom:501.111525px;}
.y1d7{bottom:501.171900px;}
.y114{bottom:501.691950px;}
.y7c{bottom:501.799350px;}
.y361{bottom:501.948600px;}
.y282{bottom:504.190500px;}
.y30a{bottom:505.353900px;}
.y44{bottom:506.398050px;}
.y338{bottom:507.432975px;}
.y249{bottom:509.850300px;}
.y2ae{bottom:511.282350px;}
.y1a{bottom:512.306460px;}
.y168{bottom:515.330700px;}
.yd0{bottom:515.499675px;}
.y1b4{bottom:516.172125px;}
.y13c{bottom:517.282350px;}
.ya0{bottom:518.398200px;}
.y7b{bottom:520.465500px;}
.y21f{bottom:521.788500px;}
.y2ee{bottom:521.850825px;}
.y1d6{bottom:521.914050px;}
.y360{bottom:522.687900px;}
.y281{bottom:524.931000px;}
.y43{bottom:527.138550px;}
.y2c8{bottom:528.137100px;}
.y337{bottom:528.175125px;}
.y248{bottom:530.590800px;}
.y113{bottom:531.432450px;}
.y2ad{bottom:532.022850px;}
.y19{bottom:533.046960px;}
.y309{bottom:533.620050px;}
.y167{bottom:536.072250px;}
.y1b3{bottom:536.912625px;}
.ycf{bottom:537.182700px;}
.y13b{bottom:538.023300px;}
.y7a{bottom:539.131650px;}
.y9f{bottom:539.139150px;}
.y21e{bottom:540.456000px;}
.y2ed{bottom:542.590125px;}
.y1d5{bottom:542.653350px;}
.y190{bottom:542.912700px;}
.y35f{bottom:543.498000px;}
.y280{bottom:545.671950px;}
.y42{bottom:547.879050px;}
.y336{bottom:548.914425px;}
.y247{bottom:551.331750px;}
.y112{bottom:552.173400px;}
.y2ac{bottom:552.765000px;}
.y18{bottom:553.787460px;}
.y166{bottom:556.811550px;}
.y1b2{bottom:557.653575px;}
.y79{bottom:557.798400px;}
.y13a{bottom:558.763800px;}
.y9e{bottom:559.879050px;}
.y2ec{bottom:563.332275px;}
.y1d4{bottom:563.392650px;}
.y18f{bottom:563.653650px;}
.y27f{bottom:566.411250px;}
.y335{bottom:569.653725px;}
.y21c{bottom:571.497000px;}
.y246{bottom:572.072250px;}
.y111{bottom:572.913300px;}
.yce{bottom:572.923650px;}
.y2ab{bottom:573.505950px;}
.y17{bottom:574.527960px;}
.y78{bottom:576.464550px;}
.y1b1{bottom:578.394075px;}
.y139{bottom:579.504300px;}
.y35e{bottom:579.958500px;}
.y9d{bottom:580.620000px;}
.y41{bottom:582.505050px;}
.y2eb{bottom:584.074200px;}
.y1d3{bottom:584.134800px;}
.y18e{bottom:584.394150px;}
.y219{bottom:590.164500px;}
.y334{bottom:590.393025px;}
.y165{bottom:592.552500px;}
.y110{bottom:593.654250px;}
.ycd{bottom:593.663550px;}
.y2aa{bottom:594.245250px;}
.y77{bottom:595.131300px;}
.y16{bottom:595.268460px;}
.y245{bottom:598.813200px;}
.y138{bottom:600.245250px;}
.y35d{bottom:600.697800px;}
.y9c{bottom:601.360050px;}
.y27e{bottom:602.151750px;}
.y2ea{bottom:604.813500px;}
.y1d2{bottom:604.874100px;}
.y1b0{bottom:605.135025px;}
.y18d{bottom:605.135100px;}
.y333{bottom:611.132325px;}
.y164{bottom:613.293450px;}
.y76{bottom:613.797450px;}
.y10f{bottom:614.394750px;}
.ycc{bottom:614.404050px;}
.y2a9{bottom:614.984550px;}
.y40{bottom:618.246000px;}
.y244{bottom:619.552500px;}
.y137{bottom:620.985750px;}
.y35c{bottom:621.439950px;}
.y15{bottom:622.009410px;}
.y9b{bottom:622.100550px;}
.y27d{bottom:622.893900px;}
.y2e9{bottom:625.552800px;}
.y1d1{bottom:625.616250px;}
.y1af{bottom:625.874325px;}
.y18c{bottom:625.875000px;}
.y217{bottom:627.495000px;}
.y332{bottom:631.874475px;}
.y75{bottom:632.464200px;}
.y10e{bottom:635.135700px;}
.ycb{bottom:635.145000px;}
.y2a8{bottom:635.725050px;}
.y3f{bottom:638.986350px;}
.y243{bottom:640.294650px;}
.y136{bottom:641.725650px;}
.y35b{bottom:642.179250px;}
.y9a{bottom:642.841050px;}
.y27c{bottom:643.634850px;}
.y2e8{bottom:646.294950px;}
.y1d0{bottom:646.355550px;}
.y1ae{bottom:646.616475px;}
.y18b{bottom:646.616550px;}
.y74{bottom:651.130350px;}
.y163{bottom:652.024800px;}
.y331{bottom:652.616625px;}
.y10d{bottom:655.876200px;}
.y2a7{bottom:656.467200px;}
.y213{bottom:658.537500px;}
.y3e{bottom:659.726850px;}
.y14{bottom:660.749910px;}
.y242{bottom:661.033950px;}
.y135{bottom:662.467200px;}
.y35a{bottom:662.918550px;}
.y99{bottom:663.581550px;}
.yc5{bottom:664.905000px;}
.y2e7{bottom:667.034250px;}
.y1cf{bottom:667.096050px;}
.y1ad{bottom:667.355775px;}
.y18a{bottom:667.355850px;}
.y73{bottom:669.796500px;}
.y330{bottom:673.356750px;}
.y10c{bottom:676.614450px;}
.y2a6{bottom:677.208150px;}
.y241{bottom:681.774450px;}
.y27b{bottom:682.363500px;}
.y162{bottom:683.134500px;}
.y134{bottom:683.206500px;}
.y359{bottom:683.660700px;}
.y98{bottom:684.322050px;}
.y13{bottom:687.712485px;}
.y2e6{bottom:687.773550px;}
.y1ce{bottom:687.837000px;}
.y1ac{bottom:688.096275px;}
.y189{bottom:688.096350px;}
.y72{bottom:688.463250px;}
.y3d{bottom:689.467350px;}
.y32f{bottom:694.096050px;}
.y10b{bottom:697.355400px;}
.y2a5{bottom:697.947450px;}
.y240{bottom:702.515400px;}
.y133{bottom:703.948200px;}
.y358{bottom:704.402850px;}
.y97{bottom:705.062550px;}
.y71{bottom:707.129400px;}
.y12{bottom:708.452925px;}
.y2e5{bottom:708.515700px;}
.y1cd{bottom:708.577500px;}
.yc3{bottom:708.783000px;}
.y1ab{bottom:708.837225px;}
.y188{bottom:708.837300px;}
.y3c{bottom:710.207850px;}
.y211{bottom:714.538500px;}
.y32e{bottom:714.838200px;}
.y10a{bottom:718.095900px;}
.y2a4{bottom:718.686750px;}
.y23f{bottom:723.255900px;}
.y357{bottom:725.142150px;}
.y70{bottom:725.796150px;}
.y96{bottom:725.803500px;}
.y11{bottom:729.193365px;}
.y2e4{bottom:729.255000px;}
.y1aa{bottom:729.576525px;}
.y187{bottom:729.577200px;}
.y3b{bottom:730.948350px;}
.y278{bottom:731.505000px;}
.y15e{bottom:732.276000px;}
.y32d{bottom:735.580350px;}
.y277{bottom:737.673000px;}
.y109{bottom:738.836850px;}
.y2a3{bottom:739.428900px;}
.y132{bottom:739.688100px;}
.y23e{bottom:743.996850px;}
.y6f{bottom:744.462300px;}
.y356{bottom:745.881450px;}
.y95{bottom:746.544300px;}
.y1cc{bottom:747.307950px;}
.y10{bottom:749.933805px;}
.y186{bottom:750.318750px;}
.y3a{bottom:751.688850px;}
.y2df{bottom:753.015000px;}
.y1a9{bottom:756.318675px;}
.y32c{bottom:756.319650px;}
.y108{bottom:759.577350px;}
.y2a2{bottom:760.169400px;}
.y131{bottom:760.429050px;}
.y6e{bottom:763.129050px;}
.y20b{bottom:764.245500px;}
.y23d{bottom:764.736150px;}
.y355{bottom:766.623600px;}
.y94{bottom:767.284200px;}
.yf{bottom:770.674245px;}
.y185{bottom:771.058050px;}
.y39{bottom:772.429800px;}
.y15d{bottom:776.154000px;}
.y1a8{bottom:777.059175px;}
.y1cb{bottom:778.418250px;}
.y107{bottom:780.317250px;}
.y130{bottom:781.168950px;}
.y6d{bottom:781.795200px;}
.y20f{bottom:782.911500px;}
.y375{bottom:784.488000px;}
.y23c{bottom:785.476650px;}
.y32b{bottom:786.058950px;}
.y354{bottom:787.365750px;}
.y93{bottom:788.025150px;}
.ye{bottom:791.415270px;}
.y184{bottom:791.799000px;}
.y38{bottom:793.169700px;}
.y2a1{bottom:795.910350px;}
.y1a7{bottom:797.798475px;}
.yc2{bottom:798.899250px;}
.y6c{bottom:800.461950px;}
.y106{bottom:801.058200px;}
.y20a{bottom:801.579000px;}
.y12f{bottom:801.910500px;}
.y23b{bottom:806.217600px;}
.y32a{bottom:806.801100px;}
.y353{bottom:808.105050px;}
.y92{bottom:808.765650px;}
.y2de{bottom:811.893000px;}
.yd{bottom:812.155710px;}
.y183{bottom:812.539500px;}
.y37{bottom:813.910650px;}
.y276{bottom:815.799900px;}
.y2a0{bottom:816.649650px;}
.y1a6{bottom:818.539500px;}
.y6b{bottom:819.127500px;}
.y105{bottom:821.798700px;}
.y12e{bottom:822.649800px;}
.y23a{bottom:826.958100px;}
.y329{bottom:827.540400px;}
.y352{bottom:828.844350px;}
.y91{bottom:829.506150px;}
.yc{bottom:832.896150px;}
.y182{bottom:833.280000px;}
.y1ca{bottom:833.539200px;}
.y36{bottom:834.651150px;}
.y275{bottom:836.539200px;}
.y29f{bottom:837.390150px;}
.y6a{bottom:837.794250px;}
.y374{bottom:837.874500px;}
.y1a5{bottom:839.280000px;}
.y104{bottom:842.539200px;}
.y239{bottom:847.699050px;}
.y328{bottom:848.279700px;}
.y351{bottom:849.586500px;}
.y90{bottom:850.246650px;}
.y266{bottom:851.279700px;}
.y202{bottom:851.287500px;}
.yb{bottom:853.414500px;}
.yc1{bottom:854.019600px;}
.y181{bottom:854.020950px;}
.y1c9{bottom:854.279700px;}
.y35{bottom:855.391650px;}
.y69{bottom:856.460400px;}
.y274{bottom:857.279700px;}
.y29e{bottom:858.131100px;}
.y1a4{bottom:860.020650px;}
.y12d{bottom:861.381450px;}
.y103{bottom:863.279700px;}
.y15c{bottom:863.280075px;}
.y327{bottom:869.021850px;}
.y265{bottom:872.020650px;}
.y238{bottom:874.438350px;}
.yc0{bottom:874.760100px;}
.y180{bottom:874.761450px;}
.y1c8{bottom:875.020650px;}
.y68{bottom:875.127150px;}
.y34{bottom:876.132150px;}
.y8f{bottom:876.987600px;}
.y273{bottom:878.020650px;}
.y29d{bottom:878.873250px;}
.y34c{bottom:879.345000px;}
.y1a3{bottom:880.761150px;}
.y102{bottom:884.020650px;}
.y15b{bottom:884.021025px;}
.ya{bottom:889.155000px;}
.y326{bottom:889.761150px;}
.y264{bottom:892.761150px;}
.y67{bottom:893.793300px;}
.y237{bottom:895.180500px;}
.ybf{bottom:895.500600px;}
.y17f{bottom:895.501350px;}
.y1c7{bottom:895.759950px;}
.y272{bottom:898.759950px;}
.y29c{bottom:899.612550px;}
.y1a2{bottom:901.500450px;}
.y8e{bottom:903.728100px;}
.y2dd{bottom:904.759950px;}
.y15a{bottom:904.760925px;}
.y101{bottom:904.761150px;}
.y1fc{bottom:907.285500px;}
.y9{bottom:909.895500px;}
.y325{bottom:910.503300px;}
.y33{bottom:911.872650px;}
.y66{bottom:912.459450px;}
.y263{bottom:913.502100px;}
.ybe{bottom:916.241550px;}
.y17e{bottom:916.242900px;}
.y1c6{bottom:916.502100px;}
.y12c{bottom:916.502400px;}
.y271{bottom:919.502100px;}
.y29b{bottom:920.351850px;}
.y1a1{bottom:922.241400px;}
.y234{bottom:924.940500px;}
.y2dc{bottom:925.500450px;}
.y100{bottom:925.502100px;}
.y159{bottom:925.502475px;}
.y8d{bottom:930.468000px;}
.y65{bottom:931.126200px;}
.y324{bottom:931.242600px;}
.y262{bottom:934.242600px;}
.ybd{bottom:936.982050px;}
.y1c5{bottom:937.241400px;}
.y12b{bottom:937.241700px;}
.y270{bottom:940.241400px;}
.y29a{bottom:941.092350px;}
.y158{bottom:946.241775px;}
.yff{bottom:946.242000px;}
.y2c7{bottom:946.242600px;}
.y32{bottom:947.613150px;}
.y64{bottom:949.792350px;}
.y8{bottom:950.010900px;}
.y17d{bottom:951.982200px;}
.y323{bottom:951.984750px;}
.y261{bottom:954.981900px;}
.y34a{bottom:957.076500px;}
.y8c{bottom:957.208950px;}
.ybc{bottom:957.722550px;}
.y12a{bottom:957.982650px;}
.y1a0{bottom:957.983550px;}
.y26f{bottom:960.981900px;}
.y299{bottom:961.834500px;}
.yfe{bottom:966.981900px;}
.y157{bottom:966.982725px;}
.y2c6{bottom:966.983550px;}
.y31{bottom:968.354100px;}
.y63{bottom:968.459100px;}
.y17c{bottom:972.723150px;}
.y322{bottom:972.724050px;}
.y260{bottom:975.722850px;}
.ybb{bottom:978.463050px;}
.y7{bottom:978.471000px;}
.y19f{bottom:978.722850px;}
.y129{bottom:978.723150px;}
.y26e{bottom:981.722850px;}
.y1fb{bottom:981.951000px;}
.y8b{bottom:983.949450px;}
.y62{bottom:987.125250px;}
.yfd{bottom:987.722850px;}
.y156{bottom:987.723225px;}
.y308{bottom:987.724050px;}
.yea{bottom:988.749825px;}
.y30{bottom:989.094000px;}
.y233{bottom:992.818500px;}
.y17b{bottom:993.463650px;}
.y321{bottom:993.466200px;}
.y298{bottom:997.575450px;}
.y19e{bottom:999.463350px;}
.y128{bottom:999.463650px;}
.y25f{bottom:1002.463350px;}
.y26d{bottom:1002.465000px;}
.y61{bottom:1005.792000px;}
.y2bf{bottom:1008.462150px;}
.yfc{bottom:1008.463350px;}
.y155{bottom:1008.463725px;}
.ye9{bottom:1009.490775px;}
.y2f{bottom:1009.834950px;}
.y8a{bottom:1010.689950px;}
.y1f9{bottom:1012.992000px;}
.yba{bottom:1014.203550px;}
.y17a{bottom:1014.204600px;}
.y320{bottom:1014.205500px;}
.y6{bottom:1014.841350px;}
.y297{bottom:1018.314750px;}
.y19d{bottom:1020.204300px;}
.y127{bottom:1020.204600px;}
.y25e{bottom:1023.204300px;}
.y60{bottom:1024.458150px;}
.yfb{bottom:1029.204300px;}
.y154{bottom:1029.204675px;}
.y349{bottom:1029.205350px;}
.y307{bottom:1029.205500px;}
.ye8{bottom:1030.231275px;}
.y2e{bottom:1030.575450px;}
.y89{bottom:1031.430450px;}
.y179{bottom:1034.944500px;}
.y31f{bottom:1034.944800px;}
.y296{bottom:1039.056900px;}
.y19c{bottom:1040.944800px;}
.y5f{bottom:1043.124900px;}
.y25d{bottom:1043.943600px;}
.yb9{bottom:1049.944050px;}
.yfa{bottom:1049.944200px;}
.y126{bottom:1049.944500px;}
.y1c4{bottom:1049.944800px;}
.y153{bottom:1049.945175px;}
.y306{bottom:1049.947650px;}
.y1f7{bottom:1050.325500px;}
.y2d{bottom:1051.315950px;}
.y88{bottom:1052.170950px;}
.y5{bottom:1052.174400px;}
.y31e{bottom:1055.684100px;}
.y5e{bottom:1061.791050px;}
.y25c{bottom:1064.685750px;}
.ye7{bottom:1066.914750px;}
.yb8{bottom:1070.684550px;}
.yf9{bottom:1070.684700px;}
.y152{bottom:1070.685075px;}
.y19b{bottom:1070.685750px;}
.y125{bottom:1070.686050px;}
.y305{bottom:1070.686950px;}
.y2c{bottom:1072.056450px;}
.y31d{bottom:1076.426250px;}
.y295{bottom:1077.786750px;}
.y87{bottom:1078.911450px;}
.y5d{bottom:1080.457800px;}
.ye6{bottom:1088.598150px;}
.y4{bottom:1089.507450px;}
.y26c{bottom:1091.425050px;}
.yb7{bottom:1091.425500px;}
.yf8{bottom:1091.425650px;}
.y178{bottom:1091.426250px;}
.y151{bottom:1091.426625px;}
.y124{bottom:1091.427000px;}
.y2b{bottom:1092.796950px;}
.y31c{bottom:1097.168400px;}
.y5c{bottom:1099.123950px;}
.y1f3{bottom:1100.032500px;}
.ye5{bottom:1110.281250px;}
.y381{bottom:1110.685500px;}
.y26b{bottom:1112.164350px;}
.yf7{bottom:1112.165550px;}
.yb6{bottom:1112.166000px;}
.y2a{bottom:1113.537450px;}
.y86{bottom:1113.538050px;}
.y5b{bottom:1117.790100px;}
.y1f0{bottom:1118.700000px;}
.y376{bottom:1120.687500px;}
.y380{bottom:1123.285500px;}
.y3{bottom:1126.840500px;}
.ye4{bottom:1131.963750px;}
.yb5{bottom:1132.906500px;}
.y304{bottom:1132.907700px;}
.y37f{bottom:1135.885500px;}
.y5a{bottom:1136.456850px;}
.y1ef{bottom:1137.366000px;}
.y29{bottom:1146.268500px;}
.y37e{bottom:1148.485500px;}
.yb4{bottom:1153.647000px;}
.y59{bottom:1155.123000px;}
.y37d{bottom:1161.085500px;}
.y1{bottom:1168.407000px;}
.y57{bottom:1168.408500px;}
.h17{height:7.980000px;}
.h24{height:19.656738px;}
.h11{height:20.967188px;}
.h40{height:24.462000px;}
.h41{height:26.208984px;}
.h2f{height:29.916150px;}
.h34{height:29.916750px;}
.h39{height:29.917950px;}
.h8{height:32.616000px;}
.h4f{height:34.671000px;}
.h3b{height:42.146550px;}
.h26{height:42.147000px;}
.h3{height:43.488000px;}
.h31{height:46.440000px;}
.h3e{height:47.947800px;}
.h20{height:47.952000px;}
.h21{height:47.952600px;}
.h3f{height:47.955000px;}
.h38{height:48.581250px;}
.h33{height:48.583050px;}
.hb{height:48.924000px;}
.hc{height:48.927000px;}
.h50{height:49.560000px;}
.h4a{height:50.729850px;}
.h42{height:51.146550px;}
.h45{height:51.149400px;}
.h47{height:51.264000px;}
.h7{height:51.600000px;}
.h10{height:51.753600px;}
.h15{height:53.280000px;}
.h1e{height:54.359400px;}
.h9{height:54.360000px;}
.hf{height:54.360600px;}
.h25{height:54.361200px;}
.h14{height:54.361800px;}
.ha{height:54.362160px;}
.h1d{height:54.363000px;}
.h2b{height:54.363600px;}
.h23{height:54.364200px;}
.h44{height:54.364500px;}
.h3d{height:54.365400px;}
.h4e{height:54.516000px;}
.h2c{height:55.848300px;}
.h2a{height:56.856300px;}
.h1f{height:57.501000px;}
.h1a{height:57.503400px;}
.h1b{height:57.504000px;}
.h6{height:57.504300px;}
.h19{height:57.505200px;}
.h28{height:57.505800px;}
.h22{height:57.506640px;}
.h2d{height:57.506700px;}
.h1c{height:57.507300px;}
.h4d{height:60.084000px;}
.h4c{height:61.982287px;}
.h5{height:65.566406px;}
.h16{height:66.146550px;}
.h3a{height:67.249200px;}
.h35{height:67.249800px;}
.h30{height:67.251000px;}
.h3c{height:72.315300px;}
.h49{height:72.624000px;}
.hd{height:81.540000px;}
.h4b{height:81.976763px;}
.h48{height:85.119000px;}
.h32{height:85.915950px;}
.h2e{height:91.170150px;}
.h12{height:94.350000px;}
.h13{height:94.591500px;}
.h2{height:94.592550px;}
.h43{height:94.593000px;}
.h4{height:97.848000px;}
.he{height:98.400000px;}
.h36{height:104.581050px;}
.h18{height:110.024400px;}
.h29{height:110.025000px;}
.h46{height:128.879850px;}
.h37{height:160.581000px;}
.h27{height:185.445000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:30.375000px;}
.w7{width:31.500000px;}
.w5{width:32.625000px;}
.w3{width:33.750000px;}
.w9{width:165.375000px;}
.wa{width:208.125000px;}
.wf{width:227.808000px;}
.wb{width:284.625000px;}
.w4{width:668.250000px;}
.w6{width:669.375000px;}
.w8{width:670.500000px;}
.wd{width:671.625000px;}
.we{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w2{width:894.000000px;}
.x26{left:-31.566750px;}
.x0{left:0.000000px;}
.x14{left:4.500000px;}
.xb{left:7.875000px;}
.x27{left:28.913700px;}
.x28{left:36.473700px;}
.x29{left:54.628650px;}
.x2{left:108.000000px;}
.x13{left:109.125000px;}
.x19{left:112.108065px;}
.x23{left:115.271025px;}
.xe{left:118.285170px;}
.x24{left:119.762775px;}
.x1f{left:122.218560px;}
.x6{left:135.000000px;}
.x1b{left:138.375000px;}
.x12{left:139.500000px;}
.x10{left:140.625000px;}
.xc{left:141.750000px;}
.x1a{left:147.009315px;}
.x20{left:155.306460px;}
.x7{left:162.000000px;}
.xf{left:169.267500px;}
.xa{left:189.000150px;}
.x1{left:208.929000px;}
.x5{left:227.415000px;}
.x25{left:248.959500px;}
.x15{left:275.625000px;}
.x4{left:282.373950px;}
.x2f{left:350.754000px;}
.x21{left:352.650960px;}
.x1d{left:370.317000px;}
.x11{left:409.707000px;}
.x17{left:410.782500px;}
.x9{left:413.307000px;}
.x16{left:484.875000px;}
.x3{left:528.580950px;}
.x2d{left:581.048700px;}
.x2b{left:583.657950px;}
.x2a{left:593.176500px;}
.x2c{left:599.712600px;}
.x2e{left:672.060600px;}
.x1e{left:724.894560px;}
.x1c{left:782.833500px;}
.x8{left:784.913940px;}
.x22{left:789.749025px;}
.x18{left:790.876065px;}
.xd{left:824.624670px;}
@media print{
.v2{vertical-align:-22.122933pt;}
.v6{vertical-align:-20.237493pt;}
.v4{vertical-align:-16.191680pt;}
.v5{vertical-align:-15.179147pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.910400pt;}
.v1{vertical-align:22.122933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000480pt;}
.ls9{letter-spacing:0.001227pt;}
.ls8{letter-spacing:0.011253pt;}
.ls3{letter-spacing:0.014773pt;}
.ls1{letter-spacing:0.014987pt;}
.ls5{letter-spacing:0.015733pt;}
.ls6{letter-spacing:0.016267pt;}
.ls0{letter-spacing:0.016853pt;}
.ls7{letter-spacing:0.017067pt;}
.lsa{letter-spacing:2.918899pt;}
.ws6{word-spacing:-48.000000pt;}
.ws11{word-spacing:-32.629123pt;}
.wsa{word-spacing:-24.917333pt;}
.wsc{word-spacing:-23.360000pt;}
.ws12{word-spacing:-14.912000pt;}
.ws13{word-spacing:-13.669333pt;}
.ws10{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws14{word-spacing:-12.426667pt;}
.ws5{word-spacing:-11.733333pt;}
.ws2{word-spacing:-11.376000pt;}
.ws8{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.112000pt;}
.wsf{word-spacing:-8.896000pt;}
.ws1{word-spacing:-7.584000pt;}
.ws9{word-spacing:-7.116800pt;}
.wsd{word-spacing:-7.040000pt;}
.ws7{word-spacing:-6.825600pt;}
.wsb{word-spacing:-6.672000pt;}
.wse{word-spacing:-5.688000pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:1.493333pt;}
._b{margin-left:-9.823673pt;}
._12{margin-left:-8.856842pt;}
._a{margin-left:-7.838156pt;}
._7{margin-left:-6.912601pt;}
._5{margin-left:-5.549844pt;}
._3{margin-left:-3.877628pt;}
._1{margin-left:-2.906943pt;}
._4{margin-left:-1.150562pt;}
._2{width:0.893012pt;}
._0{width:1.823309pt;}
._6{width:3.332476pt;}
._11{width:33.104295pt;}
._f{width:34.243178pt;}
._10{width:35.469844pt;}
._9{width:36.624000pt;}
._d{width:38.026690pt;}
._e{width:40.403874pt;}
._14{width:41.466946pt;}
._15{width:44.256000pt;}
._c{width:45.599994pt;}
._8{width:48.960000pt;}
._13{width:52.373316pt;}
.fs8{font-size:7.466667pt;}
.fs9{font-size:24.000000pt;}
.fs7{font-size:25.600000pt;}
.fs6{font-size:28.800000pt;}
.fs4{font-size:32.000000pt;}
.fs10{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fsf{font-size:78.820267pt;}
.fs2{font-size:80.000000pt;}
.fsd{font-size:90.666667pt;}
.fs1{font-size:96.000000pt;}
.fse{font-size:104.246400pt;}
.y0{bottom:0.000000pt;}
.y377{bottom:2.764000pt;}
.y224{bottom:9.782267pt;}
.y209{bottom:9.782667pt;}
.y201{bottom:9.783067pt;}
.y210{bottom:9.783467pt;}
.y1ec{bottom:9.783600pt;}
.y1f2{bottom:9.783867pt;}
.y1e3{bottom:9.784000pt;}
.y1e7{bottom:9.784267pt;}
.y21b{bottom:9.784400pt;}
.y1f8{bottom:9.784667pt;}
.y1f6{bottom:9.785067pt;}
.y216{bottom:9.785333pt;}
.y218{bottom:9.786667pt;}
.y27a{bottom:10.638133pt;}
.y350{bottom:10.639200pt;}
.y193{bottom:10.639467pt;}
.y1e0{bottom:10.639867pt;}
.y14f{bottom:10.640267pt;}
.yca{bottom:10.640533pt;}
.y2e3{bottom:10.643467pt;}
.y145{bottom:12.096000pt;}
.y34b{bottom:12.098667pt;}
.y58{bottom:17.585333pt;}
.y2{bottom:17.586667pt;}
.y1db{bottom:25.428000pt;}
.yc4{bottom:25.429333pt;}
.y212{bottom:26.374667pt;}
.y208{bottom:26.374800pt;}
.y227{bottom:26.374933pt;}
.y221{bottom:26.375333pt;}
.y20e{bottom:26.375467pt;}
.y21a{bottom:26.375600pt;}
.y1f1{bottom:26.376000pt;}
.y1eb{bottom:26.376267pt;}
.y200{bottom:26.376800pt;}
.y1e6{bottom:26.376933pt;}
.y1f5{bottom:26.377200pt;}
.y1ee{bottom:26.377333pt;}
.y21d{bottom:26.377733pt;}
.y236{bottom:27.398800pt;}
.y1df{bottom:27.399200pt;}
.y161{bottom:27.399333pt;}
.y14e{bottom:27.399600pt;}
.yc9{bottom:27.400400pt;}
.y279{bottom:27.401200pt;}
.y2e2{bottom:27.401333pt;}
.y378{bottom:28.123333pt;}
.y207{bottom:42.966933pt;}
.y226{bottom:42.967600pt;}
.y1ff{bottom:42.968000pt;}
.y1ea{bottom:42.968933pt;}
.y20d{bottom:42.969200pt;}
.y1f4{bottom:42.969333pt;}
.y215{bottom:42.969467pt;}
.y1fa{bottom:42.970000pt;}
.y1e5{bottom:42.970667pt;}
.y1de{bottom:44.159600pt;}
.y160{bottom:44.159733pt;}
.y14d{bottom:44.160000pt;}
.yc8{bottom:44.160267pt;}
.y2e1{bottom:44.161733pt;}
.y56{bottom:51.919333pt;}
.y303{bottom:51.920800pt;}
.y206{bottom:59.559600pt;}
.y1fe{bottom:59.560667pt;}
.y20c{bottom:59.561333pt;}
.y214{bottom:59.562133pt;}
.y1e9{bottom:59.562667pt;}
.y34f{bottom:60.917867pt;}
.y14c{bottom:60.918800pt;}
.y15f{bottom:60.919067pt;}
.y235{bottom:60.919600pt;}
.y1dd{bottom:60.920000pt;}
.yc7{bottom:60.920133pt;}
.y2e0{bottom:60.922133pt;}
.y28{bottom:66.316133pt;}
.y1fd{bottom:76.153333pt;}
.y14b{bottom:77.679200pt;}
.yc6{bottom:77.680000pt;}
.y34e{bottom:77.680933pt;}
.y25b{bottom:90.142267pt;}
.y198{bottom:90.536800pt;}
.y26a{bottom:90.536933pt;}
.yae{bottom:90.537067pt;}
.y122{bottom:90.537200pt;}
.y1c3{bottom:90.537267pt;}
.y232{bottom:90.537333pt;}
.y150{bottom:90.537467pt;}
.y2fc{bottom:90.537667pt;}
.yde{bottom:90.537680pt;}
.y371{bottom:90.537733pt;}
.yf6{bottom:90.538000pt;}
.y293{bottom:90.538133pt;}
.y55{bottom:90.538667pt;}
.y2d9{bottom:91.107733pt;}
.y2c5{bottom:91.447600pt;}
.y205{bottom:92.744533pt;}
.y14a{bottom:94.439600pt;}
.y34d{bottom:94.441333pt;}
.y372{bottom:102.406800pt;}
.yaf{bottom:102.803200pt;}
.y2da{bottom:103.107733pt;}
.y27{bottom:105.421600pt;}
.y204{bottom:109.336667pt;}
.y2c4{bottom:109.882533pt;}
.y149{bottom:111.199467pt;}
.y294{bottom:114.672400pt;}
.ydf{bottom:115.068800pt;}
.yb0{bottom:116.295333pt;}
.y37c{bottom:116.856000pt;}
.y2db{bottom:116.950000pt;}
.y386{bottom:124.856000pt;}
.y203{bottom:125.929333pt;}
.ye0{bottom:127.334400pt;}
.y2fd{bottom:127.904667pt;}
.y148{bottom:127.959333pt;}
.y31b{bottom:128.520800pt;}
.yb1{bottom:128.560933pt;}
.y25a{bottom:129.122000pt;}
.y54{bottom:130.081867pt;}
.y348{bottom:134.742533pt;}
.ye1{bottom:139.600000pt;}
.y2fe{bottom:139.904667pt;}
.yb2{bottom:140.826667pt;}
.y2c3{bottom:141.120933pt;}
.y385{bottom:142.456000pt;}
.y231{bottom:143.288933pt;}
.y370{bottom:144.234400pt;}
.y147{bottom:144.718667pt;}
.y292{bottom:145.193333pt;}
.y53{bottom:146.674000pt;}
.y31a{bottom:146.958267pt;}
.y146{bottom:147.266667pt;}
.y259{bottom:147.556933pt;}
.y2be{bottom:151.497200pt;}
.ye2{bottom:151.865600pt;}
.y37b{bottom:152.056000pt;}
.y2ff{bottom:152.170933pt;}
.yb3{bottom:153.092267pt;}
.y347{bottom:153.177467pt;}
.y2d8{bottom:153.343733pt;}
.y26{bottom:153.886133pt;}
.y269{bottom:154.994800pt;}
.y2c2{bottom:157.713867pt;}
.y384{bottom:158.456000pt;}
.yf5{bottom:159.682800pt;}
.y1e8{bottom:160.705333pt;}
.y230{bottom:161.723867pt;}
.y36f{bottom:162.669333pt;}
.y52{bottom:163.266667pt;}
.y291{bottom:163.628533pt;}
.y123{bottom:163.736133pt;}
.ye3{bottom:164.130933pt;}
.y300{bottom:164.436267pt;}
.y319{bottom:165.393200pt;}
.y2bd{bottom:169.934667pt;}
.y258{bottom:171.326267pt;}
.y268{bottom:171.587467pt;}
.y346{bottom:171.614933pt;}
.y2d7{bottom:171.778667pt;}
.y2c1{bottom:174.306533pt;}
.y383{bottom:174.456000pt;}
.y199{bottom:176.397600pt;}
.y301{bottom:176.701600pt;}
.y1e4{bottom:177.297333pt;}
.yf4{bottom:178.118800pt;}
.y51{bottom:179.858800pt;}
.y22f{bottom:180.159867pt;}
.y177{bottom:181.533200pt;}
.y290{bottom:182.064933pt;}
.y318{bottom:183.828133pt;}
.y37a{bottom:187.256000pt;}
.y2bc{bottom:188.371200pt;}
.y19a{bottom:188.662933pt;}
.y302{bottom:188.966933pt;}
.y36e{bottom:189.103600pt;}
.y257{bottom:189.762667pt;}
.y1c2{bottom:190.048733pt;}
.y345{bottom:190.052400pt;}
.y2d6{bottom:190.214667pt;}
.y382{bottom:190.456000pt;}
.y1ed{bottom:193.890667pt;}
.y267{bottom:194.043733pt;}
.yad{bottom:194.463067pt;}
.y50{bottom:196.451467pt;}
.yf3{bottom:196.555200pt;}
.y22e{bottom:198.596267pt;}
.y176{bottom:199.969200pt;}
.y28f{bottom:200.502400pt;}
.y317{bottom:202.263067pt;}
.y2c0{bottom:204.762800pt;}
.y121{bottom:206.279867pt;}
.y2bb{bottom:206.807600pt;}
.y36d{bottom:207.541067pt;}
.ydd{bottom:207.660080pt;}
.y256{bottom:208.198667pt;}
.y1c1{bottom:208.486200pt;}
.y2d5{bottom:208.652133pt;}
.y25{bottom:211.003867pt;}
.yac{bottom:212.899067pt;}
.y4f{bottom:213.043600pt;}
.yf2{bottom:214.991200pt;}
.y2fb{bottom:216.198067pt;}
.y22d{bottom:217.032267pt;}
.y175{bottom:218.404667pt;}
.y316{bottom:220.700533pt;}
.y344{bottom:221.820667pt;}
.y379{bottom:224.056000pt;}
.y120{bottom:224.716267pt;}
.y2ba{bottom:225.242533pt;}
.y36c{bottom:225.978533pt;}
.y255{bottom:226.635067pt;}
.y1c0{bottom:226.921133pt;}
.ydc{bottom:226.933933pt;}
.y28e{bottom:226.937333pt;}
.y2d4{bottom:227.088533pt;}
.y24{bottom:227.596000pt;}
.y197{bottom:228.610133pt;}
.y4e{bottom:229.636267pt;}
.yab{bottom:231.335467pt;}
.yf1{bottom:233.427600pt;}
.y2fa{bottom:234.635533pt;}
.y22c{bottom:235.468667pt;}
.y174{bottom:236.841600pt;}
.y1e2{bottom:238.074667pt;}
.y315{bottom:239.135467pt;}
.y343{bottom:240.255600pt;}
.y11f{bottom:243.152267pt;}
.y2b9{bottom:243.678800pt;}
.y23{bottom:244.188667pt;}
.y36b{bottom:244.413467pt;}
.y254{bottom:245.071067pt;}
.y1bf{bottom:245.357133pt;}
.y28d{bottom:245.372400pt;}
.y2d3{bottom:245.523467pt;}
.ydb{bottom:246.207933pt;}
.y4d{bottom:246.228400pt;}
.yaa{bottom:249.771467pt;}
.yf0{bottom:251.863067pt;}
.y2f9{bottom:253.073000pt;}
.y22b{bottom:253.903600pt;}
.y173{bottom:255.276533pt;}
.y314{bottom:257.572933pt;}
.y342{bottom:258.693067pt;}
.y196{bottom:260.379867pt;}
.y373{bottom:260.961333pt;}
.y11e{bottom:261.588267pt;}
.y2b8{bottom:262.113733pt;}
.y4c{bottom:262.820533pt;}
.y36a{bottom:262.914000pt;}
.y253{bottom:263.507467pt;}
.y1be{bottom:263.793533pt;}
.y28c{bottom:263.808400pt;}
.y2d2{bottom:263.958400pt;}
.y85{bottom:264.840667pt;}
.yda{bottom:265.481933pt;}
.ya9{bottom:268.207467pt;}
.yef{bottom:270.299067pt;}
.y2f8{bottom:271.507933pt;}
.y22a{bottom:272.341067pt;}
.y172{bottom:273.712933pt;}
.y22{bottom:274.114133pt;}
.y144{bottom:274.642667pt;}
.y313{bottom:276.007867pt;}
.y341{bottom:277.127000pt;}
.y4b{bottom:279.413200pt;}
.y11d{bottom:280.024267pt;}
.y2b7{bottom:280.549733pt;}
.y252{bottom:281.942400pt;}
.y1bd{bottom:282.229533pt;}
.y28b{bottom:282.245867pt;}
.y2d1{bottom:282.395867pt;}
.y1e1{bottom:283.784000pt;}
.yd9{bottom:284.756000pt;}
.ya8{bottom:286.643467pt;}
.y2f7{bottom:289.942867pt;}
.y369{bottom:289.986400pt;}
.y21{bottom:290.706267pt;}
.y229{bottom:290.776000pt;}
.y171{bottom:292.148933pt;}
.y312{bottom:294.445333pt;}
.y195{bottom:294.806400pt;}
.y340{bottom:295.561933pt;}
.y11c{bottom:298.460667pt;}
.y2b6{bottom:298.986133pt;}
.y251{bottom:300.379867pt;}
.y1bc{bottom:300.665933pt;}
.y28a{bottom:300.682267pt;}
.y2d0{bottom:300.831867pt;}
.yd8{bottom:304.030533pt;}
.yee{bottom:304.726133pt;}
.ya7{bottom:305.079467pt;}
.y20{bottom:307.298933pt;}
.y368{bottom:308.423867pt;}
.y1dc{bottom:308.926667pt;}
.y228{bottom:309.212000pt;}
.y4a{bottom:309.338667pt;}
.y170{bottom:310.584933pt;}
.y311{bottom:312.880267pt;}
.y84{bottom:313.304667pt;}
.y33f{bottom:313.999400pt;}
.y2f6{bottom:316.380333pt;}
.y11b{bottom:316.896667pt;}
.y2b5{bottom:317.421067pt;}
.y289{bottom:319.117200pt;}
.y2cf{bottom:319.268267pt;}
.y194{bottom:322.460000pt;}
.yd7{bottom:323.304133pt;}
.ya6{bottom:323.515867pt;}
.y1f{bottom:323.891067pt;}
.y250{bottom:324.148133pt;}
.y1bb{bottom:324.434200pt;}
.y367{bottom:326.858800pt;}
.y16f{bottom:329.021333pt;}
.y83{bottom:329.897333pt;}
.y143{bottom:330.754933pt;}
.y1da{bottom:331.169333pt;}
.y310{bottom:331.317733pt;}
.y33e{bottom:332.434333pt;}
.y2f5{bottom:334.815267pt;}
.y11a{bottom:335.332133pt;}
.y2b4{bottom:335.858533pt;}
.y225{bottom:336.666667pt;}
.y288{bottom:337.552133pt;}
.y2ce{bottom:337.703200pt;}
.y49{bottom:339.263067pt;}
.y1e{bottom:340.483733pt;}
.ya5{bottom:341.951867pt;}
.yd6{bottom:342.578667pt;}
.y24f{bottom:342.584133pt;}
.y1ba{bottom:342.870200pt;}
.y366{bottom:345.293733pt;}
.y82{bottom:346.489467pt;}
.y16e{bottom:347.456533pt;}
.y142{bottom:349.191867pt;}
.y30f{bottom:349.752667pt;}
.y33d{bottom:350.869267pt;}
.yed{bottom:353.190533pt;}
.y2f4{bottom:353.252733pt;}
.y119{bottom:353.768133pt;}
.y2b3{bottom:354.293467pt;}
.y287{bottom:355.989600pt;}
.y2cd{bottom:356.138133pt;}
.y1d{bottom:357.075867pt;}
.ya4{bottom:360.387867pt;}
.y24e{bottom:361.020533pt;}
.y1b9{bottom:361.306600pt;}
.yd5{bottom:361.852667pt;}
.y81{bottom:363.082133pt;}
.y365{bottom:363.728667pt;}
.y16d{bottom:365.892000pt;}
.y192{bottom:366.140000pt;}
.y141{bottom:367.626800pt;}
.y30e{bottom:368.187600pt;}
.y33c{bottom:369.306733pt;}
.yec{bottom:369.782067pt;}
.y223{bottom:369.852000pt;}
.y2f3{bottom:371.687667pt;}
.y118{bottom:372.204133pt;}
.y286{bottom:374.425600pt;}
.y2cc{bottom:374.575600pt;}
.y48{bottom:376.387600pt;}
.ya3{bottom:378.823867pt;}
.y24d{bottom:379.456533pt;}
.y80{bottom:379.674267pt;}
.y2b2{bottom:380.729467pt;}
.yd4{bottom:381.125933pt;}
.y364{bottom:382.229200pt;}
.y16c{bottom:384.328933pt;}
.y1b8{bottom:385.075933pt;}
.y140{bottom:386.063200pt;}
.y222{bottom:386.442667pt;}
.y1c{bottom:387.000667pt;}
.y33b{bottom:387.744200pt;}
.y2f2{bottom:390.122600pt;}
.y117{bottom:390.640533pt;}
.y285{bottom:392.862000pt;}
.y47{bottom:394.823600pt;}
.y7f{bottom:396.266933pt;}
.ya2{bottom:397.260267pt;}
.y24c{bottom:397.892933pt;}
.y2b1{bottom:399.165867pt;}
.y30d{bottom:399.426267pt;}
.yeb{bottom:400.239400pt;}
.yd3{bottom:400.399400pt;}
.y16b{bottom:402.763867pt;}
.y1b7{bottom:403.512333pt;}
.y1b{bottom:403.593333pt;}
.y13f{bottom:404.499200pt;}
.y191{bottom:405.142667pt;}
.y2cb{bottom:405.814000pt;}
.y2f1{bottom:408.557533pt;}
.y1d9{bottom:408.613733pt;}
.y116{bottom:409.076533pt;}
.y363{bottom:409.304133pt;}
.y284{bottom:411.296933pt;}
.y7e{bottom:412.859067pt;}
.y46{bottom:413.259600pt;}
.y220{bottom:414.036000pt;}
.y33a{bottom:414.179133pt;}
.y30c{bottom:416.021067pt;}
.y24b{bottom:416.328933pt;}
.y2b0{bottom:417.603333pt;}
.yd2{bottom:419.674467pt;}
.y16a{bottom:421.200800pt;}
.y1b6{bottom:421.948333pt;}
.y2ca{bottom:422.405200pt;}
.y13e{bottom:422.935200pt;}
.y2f0{bottom:426.995000pt;}
.y1d8{bottom:427.051200pt;}
.y115{bottom:427.512933pt;}
.y362{bottom:427.739067pt;}
.ya1{bottom:429.029067pt;}
.y7d{bottom:429.451200pt;}
.y283{bottom:429.734400pt;}
.y45{bottom:431.695600pt;}
.y30b{bottom:432.612267pt;}
.y339{bottom:432.614067pt;}
.y24a{bottom:434.763867pt;}
.y2af{bottom:436.038267pt;}
.yd1{bottom:438.947933pt;}
.y2c9{bottom:438.996400pt;}
.y169{bottom:439.636267pt;}
.y1b5{bottom:440.384733pt;}
.y13d{bottom:441.371600pt;}
.y2ef{bottom:445.432467pt;}
.y1d7{bottom:445.486133pt;}
.y114{bottom:445.948400pt;}
.y7c{bottom:446.043867pt;}
.y361{bottom:446.176533pt;}
.y282{bottom:448.169333pt;}
.y30a{bottom:449.203467pt;}
.y44{bottom:450.131600pt;}
.y338{bottom:451.051533pt;}
.y249{bottom:453.200267pt;}
.y2ae{bottom:454.473200pt;}
.y1a{bottom:455.383520pt;}
.y168{bottom:458.071733pt;}
.yd0{bottom:458.221933pt;}
.y1b4{bottom:458.819667pt;}
.y13c{bottom:459.806533pt;}
.ya0{bottom:460.798400pt;}
.y7b{bottom:462.636000pt;}
.y21f{bottom:463.812000pt;}
.y2ee{bottom:463.867400pt;}
.y1d6{bottom:463.923600pt;}
.y360{bottom:464.611467pt;}
.y281{bottom:466.605333pt;}
.y43{bottom:468.567600pt;}
.y2c8{bottom:469.455200pt;}
.y337{bottom:469.489000pt;}
.y248{bottom:471.636267pt;}
.y113{bottom:472.384400pt;}
.y2ad{bottom:472.909200pt;}
.y19{bottom:473.819520pt;}
.y309{bottom:474.328933pt;}
.y167{bottom:476.508667pt;}
.y1b3{bottom:477.255667pt;}
.ycf{bottom:477.495733pt;}
.y13b{bottom:478.242933pt;}
.y7a{bottom:479.228133pt;}
.y9f{bottom:479.234800pt;}
.y21e{bottom:480.405333pt;}
.y2ed{bottom:482.302333pt;}
.y1d5{bottom:482.358533pt;}
.y190{bottom:482.589067pt;}
.y35f{bottom:483.109333pt;}
.y280{bottom:485.041733pt;}
.y42{bottom:487.003600pt;}
.y336{bottom:487.923933pt;}
.y247{bottom:490.072667pt;}
.y112{bottom:490.820800pt;}
.y2ac{bottom:491.346667pt;}
.y18{bottom:492.255520pt;}
.y166{bottom:494.943600pt;}
.y1b2{bottom:495.692067pt;}
.y79{bottom:495.820800pt;}
.y13a{bottom:496.678933pt;}
.y9e{bottom:497.670267pt;}
.y2ec{bottom:500.739800pt;}
.y1d4{bottom:500.793467pt;}
.y18f{bottom:501.025467pt;}
.y27f{bottom:503.476667pt;}
.y335{bottom:506.358867pt;}
.y21c{bottom:507.997333pt;}
.y246{bottom:508.508667pt;}
.y111{bottom:509.256267pt;}
.yce{bottom:509.265467pt;}
.y2ab{bottom:509.783067pt;}
.y17{bottom:510.691520pt;}
.y78{bottom:512.412933pt;}
.y1b1{bottom:514.128067pt;}
.y139{bottom:515.114933pt;}
.y35e{bottom:515.518667pt;}
.y9d{bottom:516.106667pt;}
.y41{bottom:517.782267pt;}
.y2eb{bottom:519.177067pt;}
.y1d3{bottom:519.230933pt;}
.y18e{bottom:519.461467pt;}
.y219{bottom:524.590667pt;}
.y334{bottom:524.793800pt;}
.y165{bottom:526.713333pt;}
.y110{bottom:527.692667pt;}
.ycd{bottom:527.700933pt;}
.y2aa{bottom:528.218000pt;}
.y77{bottom:529.005600pt;}
.y16{bottom:529.127520pt;}
.y245{bottom:532.278400pt;}
.y138{bottom:533.551333pt;}
.y35d{bottom:533.953600pt;}
.y9c{bottom:534.542267pt;}
.y27e{bottom:535.246000pt;}
.y2ea{bottom:537.612000pt;}
.y1d2{bottom:537.665867pt;}
.y1b0{bottom:537.897800pt;}
.y18d{bottom:537.897867pt;}
.y333{bottom:543.228733pt;}
.y164{bottom:545.149733pt;}
.y76{bottom:545.597733pt;}
.y10f{bottom:546.128667pt;}
.ycc{bottom:546.136933pt;}
.y2a9{bottom:546.652933pt;}
.y40{bottom:549.552000pt;}
.y244{bottom:550.713333pt;}
.y137{bottom:551.987333pt;}
.y35c{bottom:552.391067pt;}
.y15{bottom:552.897253pt;}
.y9b{bottom:552.978267pt;}
.y27d{bottom:553.683467pt;}
.y2e9{bottom:556.046933pt;}
.y1d1{bottom:556.103333pt;}
.y1af{bottom:556.332733pt;}
.y18c{bottom:556.333333pt;}
.y217{bottom:557.773333pt;}
.y332{bottom:561.666200pt;}
.y75{bottom:562.190400pt;}
.y10e{bottom:564.565067pt;}
.ycb{bottom:564.573333pt;}
.y2a8{bottom:565.088933pt;}
.y3f{bottom:567.987867pt;}
.y243{bottom:569.150800pt;}
.y136{bottom:570.422800pt;}
.y35b{bottom:570.826000pt;}
.y9a{bottom:571.414267pt;}
.y27c{bottom:572.119867pt;}
.y2e8{bottom:574.484400pt;}
.y1d0{bottom:574.538267pt;}
.y1ae{bottom:574.770200pt;}
.y18b{bottom:574.770267pt;}
.y74{bottom:578.782533pt;}
.y163{bottom:579.577600pt;}
.y331{bottom:580.103667pt;}
.y10d{bottom:583.001067pt;}
.y2a7{bottom:583.526400pt;}
.y213{bottom:585.366667pt;}
.y3e{bottom:586.423867pt;}
.y14{bottom:587.333253pt;}
.y242{bottom:587.585733pt;}
.y135{bottom:588.859733pt;}
.y35a{bottom:589.260933pt;}
.y99{bottom:589.850267pt;}
.yc5{bottom:591.026667pt;}
.y2e7{bottom:592.919333pt;}
.y1cf{bottom:592.974267pt;}
.y1ad{bottom:593.205133pt;}
.y18a{bottom:593.205200pt;}
.y73{bottom:595.374667pt;}
.y330{bottom:598.539333pt;}
.y10c{bottom:601.435067pt;}
.y2a6{bottom:601.962800pt;}
.y241{bottom:606.021733pt;}
.y27b{bottom:606.545333pt;}
.y162{bottom:607.230667pt;}
.y134{bottom:607.294667pt;}
.y359{bottom:607.698400pt;}
.y98{bottom:608.286267pt;}
.y13{bottom:611.299987pt;}
.y2e6{bottom:611.354267pt;}
.y1ce{bottom:611.410667pt;}
.y1ac{bottom:611.641133pt;}
.y189{bottom:611.641200pt;}
.y72{bottom:611.967333pt;}
.y3d{bottom:612.859867pt;}
.y32f{bottom:616.974267pt;}
.y10b{bottom:619.871467pt;}
.y2a5{bottom:620.397733pt;}
.y240{bottom:624.458133pt;}
.y133{bottom:625.731733pt;}
.y358{bottom:626.135867pt;}
.y97{bottom:626.722267pt;}
.y71{bottom:628.559467pt;}
.y12{bottom:629.735933pt;}
.y2e5{bottom:629.791733pt;}
.y1cd{bottom:629.846667pt;}
.yc3{bottom:630.029333pt;}
.y1ab{bottom:630.077533pt;}
.y188{bottom:630.077600pt;}
.y3c{bottom:631.295867pt;}
.y211{bottom:635.145333pt;}
.y32e{bottom:635.411733pt;}
.y10a{bottom:638.307467pt;}
.y2a4{bottom:638.832667pt;}
.y23f{bottom:642.894133pt;}
.y357{bottom:644.570800pt;}
.y70{bottom:645.152133pt;}
.y96{bottom:645.158667pt;}
.y11{bottom:648.171880pt;}
.y2e4{bottom:648.226667pt;}
.y1aa{bottom:648.512467pt;}
.y187{bottom:648.513067pt;}
.y3b{bottom:649.731867pt;}
.y278{bottom:650.226667pt;}
.y15e{bottom:650.912000pt;}
.y32d{bottom:653.849200pt;}
.y277{bottom:655.709333pt;}
.y109{bottom:656.743867pt;}
.y2a3{bottom:657.270133pt;}
.y132{bottom:657.500533pt;}
.y23e{bottom:661.330533pt;}
.y6f{bottom:661.744267pt;}
.y356{bottom:663.005733pt;}
.y95{bottom:663.594933pt;}
.y1cc{bottom:664.273733pt;}
.y10{bottom:666.607827pt;}
.y186{bottom:666.950000pt;}
.y3a{bottom:668.167867pt;}
.y2df{bottom:669.346667pt;}
.y1a9{bottom:672.283267pt;}
.y32c{bottom:672.284133pt;}
.y108{bottom:675.179867pt;}
.y2a2{bottom:675.706133pt;}
.y131{bottom:675.936933pt;}
.y6e{bottom:678.336933pt;}
.y20b{bottom:679.329333pt;}
.y23d{bottom:679.765467pt;}
.y355{bottom:681.443200pt;}
.y94{bottom:682.030400pt;}
.yf{bottom:685.043773pt;}
.y185{bottom:685.384933pt;}
.y39{bottom:686.604267pt;}
.y15d{bottom:689.914667pt;}
.y1a8{bottom:690.719267pt;}
.y1cb{bottom:691.927333pt;}
.y107{bottom:693.615333pt;}
.y130{bottom:694.372400pt;}
.y6d{bottom:694.929067pt;}
.y20f{bottom:695.921333pt;}
.y375{bottom:697.322667pt;}
.y23c{bottom:698.201467pt;}
.y32b{bottom:698.719067pt;}
.y354{bottom:699.880667pt;}
.y93{bottom:700.466800pt;}
.ye{bottom:703.480240pt;}
.y184{bottom:703.821333pt;}
.y38{bottom:705.039733pt;}
.y2a1{bottom:707.475867pt;}
.y1a7{bottom:709.154200pt;}
.yc2{bottom:710.132667pt;}
.y6c{bottom:711.521733pt;}
.y106{bottom:712.051733pt;}
.y20a{bottom:712.514667pt;}
.y12f{bottom:712.809333pt;}
.y23b{bottom:716.637867pt;}
.y32a{bottom:717.156533pt;}
.y353{bottom:718.315600pt;}
.y92{bottom:718.902800pt;}
.y2de{bottom:721.682667pt;}
.yd{bottom:721.916187pt;}
.y183{bottom:722.257333pt;}
.y37{bottom:723.476133pt;}
.y276{bottom:725.155467pt;}
.y2a0{bottom:725.910800pt;}
.y1a6{bottom:727.590667pt;}
.y6b{bottom:728.113333pt;}
.y105{bottom:730.487733pt;}
.y12e{bottom:731.244267pt;}
.y23a{bottom:735.073867pt;}
.y329{bottom:735.591467pt;}
.y352{bottom:736.750533pt;}
.y91{bottom:737.338800pt;}
.yc{bottom:740.352133pt;}
.y182{bottom:740.693333pt;}
.y1ca{bottom:740.923733pt;}
.y36{bottom:741.912133pt;}
.y275{bottom:743.590400pt;}
.y29f{bottom:744.346800pt;}
.y6a{bottom:744.706000pt;}
.y374{bottom:744.777333pt;}
.y1a5{bottom:746.026667pt;}
.y104{bottom:748.923733pt;}
.y239{bottom:753.510267pt;}
.y328{bottom:754.026400pt;}
.y351{bottom:755.188000pt;}
.y90{bottom:755.774800pt;}
.y266{bottom:756.693067pt;}
.y202{bottom:756.700000pt;}
.yb{bottom:758.590667pt;}
.yc1{bottom:759.128533pt;}
.y181{bottom:759.129733pt;}
.y1c9{bottom:759.359733pt;}
.y35{bottom:760.348133pt;}
.y69{bottom:761.298133pt;}
.y274{bottom:762.026400pt;}
.y29e{bottom:762.783200pt;}
.y1a4{bottom:764.462800pt;}
.y12d{bottom:765.672400pt;}
.y103{bottom:767.359733pt;}
.y15c{bottom:767.360067pt;}
.y327{bottom:772.463867pt;}
.y265{bottom:775.129467pt;}
.y238{bottom:777.278533pt;}
.yc0{bottom:777.564533pt;}
.y180{bottom:777.565733pt;}
.y1c8{bottom:777.796133pt;}
.y68{bottom:777.890800pt;}
.y34{bottom:778.784133pt;}
.y8f{bottom:779.544533pt;}
.y273{bottom:780.462800pt;}
.y29d{bottom:781.220667pt;}
.y34c{bottom:781.640000pt;}
.y1a3{bottom:782.898800pt;}
.y102{bottom:785.796133pt;}
.y15b{bottom:785.796467pt;}
.ya{bottom:790.360000pt;}
.y326{bottom:790.898800pt;}
.y264{bottom:793.565467pt;}
.y67{bottom:794.482933pt;}
.y237{bottom:795.716000pt;}
.ybf{bottom:796.000533pt;}
.y17f{bottom:796.001200pt;}
.y1c7{bottom:796.231067pt;}
.y272{bottom:798.897733pt;}
.y29c{bottom:799.655600pt;}
.y1a2{bottom:801.333733pt;}
.y8e{bottom:803.313867pt;}
.y2dd{bottom:804.231067pt;}
.y15a{bottom:804.231933pt;}
.y101{bottom:804.232133pt;}
.y1fc{bottom:806.476000pt;}
.y9{bottom:808.796000pt;}
.y325{bottom:809.336267pt;}
.y33{bottom:810.553467pt;}
.y66{bottom:811.075067pt;}
.y263{bottom:812.001867pt;}
.ybe{bottom:814.436933pt;}
.y17e{bottom:814.438133pt;}
.y1c6{bottom:814.668533pt;}
.y12c{bottom:814.668800pt;}
.y271{bottom:817.335200pt;}
.y29b{bottom:818.090533pt;}
.y1a1{bottom:819.770133pt;}
.y234{bottom:822.169333pt;}
.y2dc{bottom:822.667067pt;}
.y100{bottom:822.668533pt;}
.y159{bottom:822.668867pt;}
.y8d{bottom:827.082667pt;}
.y65{bottom:827.667733pt;}
.y324{bottom:827.771200pt;}
.y262{bottom:830.437867pt;}
.ybd{bottom:832.872933pt;}
.y1c5{bottom:833.103467pt;}
.y12b{bottom:833.103733pt;}
.y270{bottom:835.770133pt;}
.y29a{bottom:836.526533pt;}
.y158{bottom:841.103800pt;}
.yff{bottom:841.104000pt;}
.y2c7{bottom:841.104533pt;}
.y32{bottom:842.322800pt;}
.y64{bottom:844.259867pt;}
.y8{bottom:844.454133pt;}
.y17d{bottom:846.206400pt;}
.y323{bottom:846.208667pt;}
.y261{bottom:848.872800pt;}
.y34a{bottom:850.734667pt;}
.y8c{bottom:850.852400pt;}
.ybc{bottom:851.308933pt;}
.y12a{bottom:851.540133pt;}
.y1a0{bottom:851.540933pt;}
.y26f{bottom:854.206133pt;}
.y299{bottom:854.964000pt;}
.yfe{bottom:859.539467pt;}
.y157{bottom:859.540200pt;}
.y2c6{bottom:859.540933pt;}
.y31{bottom:860.759200pt;}
.y63{bottom:860.852533pt;}
.y17c{bottom:864.642800pt;}
.y322{bottom:864.643600pt;}
.y260{bottom:867.309200pt;}
.ybb{bottom:869.744933pt;}
.y7{bottom:869.752000pt;}
.y19f{bottom:869.975867pt;}
.y129{bottom:869.976133pt;}
.y26e{bottom:872.642533pt;}
.y1fb{bottom:872.845333pt;}
.y8b{bottom:874.621733pt;}
.y62{bottom:877.444667pt;}
.yfd{bottom:877.975867pt;}
.y156{bottom:877.976200pt;}
.y308{bottom:877.976933pt;}
.yea{bottom:878.888733pt;}
.y30{bottom:879.194667pt;}
.y233{bottom:882.505333pt;}
.y17b{bottom:883.078800pt;}
.y321{bottom:883.081067pt;}
.y298{bottom:886.733733pt;}
.y19e{bottom:888.411867pt;}
.y128{bottom:888.412133pt;}
.y25f{bottom:891.078533pt;}
.y26d{bottom:891.080000pt;}
.y61{bottom:894.037333pt;}
.y2bf{bottom:896.410800pt;}
.yfc{bottom:896.411867pt;}
.y155{bottom:896.412200pt;}
.ye9{bottom:897.325133pt;}
.y2f{bottom:897.631067pt;}
.y8a{bottom:898.391067pt;}
.y1f9{bottom:900.437333pt;}
.yba{bottom:901.514267pt;}
.y17a{bottom:901.515200pt;}
.y320{bottom:901.516000pt;}
.y6{bottom:902.081200pt;}
.y297{bottom:905.168667pt;}
.y19d{bottom:906.848267pt;}
.y127{bottom:906.848533pt;}
.y25e{bottom:909.514933pt;}
.y60{bottom:910.629467pt;}
.yfb{bottom:914.848267pt;}
.y154{bottom:914.848600pt;}
.y349{bottom:914.849200pt;}
.y307{bottom:914.849333pt;}
.ye8{bottom:915.761133pt;}
.y2e{bottom:916.067067pt;}
.y89{bottom:916.827067pt;}
.y179{bottom:919.950667pt;}
.y31f{bottom:919.950933pt;}
.y296{bottom:923.606133pt;}
.y19c{bottom:925.284267pt;}
.y5f{bottom:927.222133pt;}
.y25d{bottom:927.949867pt;}
.yb9{bottom:933.283600pt;}
.yfa{bottom:933.283733pt;}
.y126{bottom:933.284000pt;}
.y1c4{bottom:933.284267pt;}
.y153{bottom:933.284600pt;}
.y306{bottom:933.286800pt;}
.y1f7{bottom:933.622667pt;}
.y2d{bottom:934.503067pt;}
.y88{bottom:935.263067pt;}
.y5{bottom:935.266133pt;}
.y31e{bottom:938.385867pt;}
.y5e{bottom:943.814267pt;}
.y25c{bottom:946.387333pt;}
.ye7{bottom:948.368667pt;}
.yb8{bottom:951.719600pt;}
.yf9{bottom:951.719733pt;}
.y152{bottom:951.720067pt;}
.y19b{bottom:951.720667pt;}
.y125{bottom:951.720933pt;}
.y305{bottom:951.721733pt;}
.y2c{bottom:952.939067pt;}
.y31d{bottom:956.823333pt;}
.y295{bottom:958.032667pt;}
.y87{bottom:959.032400pt;}
.y5d{bottom:960.406933pt;}
.ye6{bottom:967.642800pt;}
.y4{bottom:968.451067pt;}
.y26c{bottom:970.155600pt;}
.yb7{bottom:970.156000pt;}
.yf8{bottom:970.156133pt;}
.y178{bottom:970.156667pt;}
.y151{bottom:970.157000pt;}
.y124{bottom:970.157333pt;}
.y2b{bottom:971.375067pt;}
.y31c{bottom:975.260800pt;}
.y5c{bottom:976.999067pt;}
.y1f3{bottom:977.806667pt;}
.ye5{bottom:986.916667pt;}
.y381{bottom:987.276000pt;}
.y26b{bottom:988.590533pt;}
.yf7{bottom:988.591600pt;}
.yb6{bottom:988.592000pt;}
.y2a{bottom:989.811067pt;}
.y86{bottom:989.811600pt;}
.y5b{bottom:993.591200pt;}
.y1f0{bottom:994.400000pt;}
.y376{bottom:996.166667pt;}
.y380{bottom:998.476000pt;}
.y3{bottom:1001.636000pt;}
.ye4{bottom:1006.190000pt;}
.yb5{bottom:1007.028000pt;}
.y304{bottom:1007.029067pt;}
.y37f{bottom:1009.676000pt;}
.y5a{bottom:1010.183867pt;}
.y1ef{bottom:1010.992000pt;}
.y29{bottom:1018.905333pt;}
.y37e{bottom:1020.876000pt;}
.yb4{bottom:1025.464000pt;}
.y59{bottom:1026.776000pt;}
.y37d{bottom:1032.076000pt;}
.y1{bottom:1038.584000pt;}
.y57{bottom:1038.585333pt;}
.h17{height:7.093333pt;}
.h24{height:17.472656pt;}
.h11{height:18.637500pt;}
.h40{height:21.744000pt;}
.h41{height:23.296875pt;}
.h2f{height:26.592133pt;}
.h34{height:26.592667pt;}
.h39{height:26.593733pt;}
.h8{height:28.992000pt;}
.h4f{height:30.818667pt;}
.h3b{height:37.463600pt;}
.h26{height:37.464000pt;}
.h3{height:38.656000pt;}
.h31{height:41.280000pt;}
.h3e{height:42.620267pt;}
.h20{height:42.624000pt;}
.h21{height:42.624533pt;}
.h3f{height:42.626667pt;}
.h38{height:43.183333pt;}
.h33{height:43.184933pt;}
.hb{height:43.488000pt;}
.hc{height:43.490667pt;}
.h50{height:44.053333pt;}
.h4a{height:45.093200pt;}
.h42{height:45.463600pt;}
.h45{height:45.466133pt;}
.h47{height:45.568000pt;}
.h7{height:45.866667pt;}
.h10{height:46.003200pt;}
.h15{height:47.360000pt;}
.h1e{height:48.319467pt;}
.h9{height:48.320000pt;}
.hf{height:48.320533pt;}
.h25{height:48.321067pt;}
.h14{height:48.321600pt;}
.ha{height:48.321920pt;}
.h1d{height:48.322667pt;}
.h2b{height:48.323200pt;}
.h23{height:48.323733pt;}
.h44{height:48.324000pt;}
.h3d{height:48.324800pt;}
.h4e{height:48.458667pt;}
.h2c{height:49.642933pt;}
.h2a{height:50.538933pt;}
.h1f{height:51.112000pt;}
.h1a{height:51.114133pt;}
.h1b{height:51.114667pt;}
.h6{height:51.114933pt;}
.h19{height:51.115733pt;}
.h28{height:51.116267pt;}
.h22{height:51.117013pt;}
.h2d{height:51.117067pt;}
.h1c{height:51.117600pt;}
.h4d{height:53.408000pt;}
.h4c{height:55.095366pt;}
.h5{height:58.281250pt;}
.h16{height:58.796933pt;}
.h3a{height:59.777067pt;}
.h35{height:59.777600pt;}
.h30{height:59.778667pt;}
.h3c{height:64.280267pt;}
.h49{height:64.554667pt;}
.hd{height:72.480000pt;}
.h4b{height:72.868234pt;}
.h48{height:75.661333pt;}
.h32{height:76.369733pt;}
.h2e{height:81.040133pt;}
.h12{height:83.866667pt;}
.h13{height:84.081333pt;}
.h2{height:84.082267pt;}
.h43{height:84.082667pt;}
.h4{height:86.976000pt;}
.he{height:87.466667pt;}
.h36{height:92.960933pt;}
.h18{height:97.799467pt;}
.h29{height:97.800000pt;}
.h46{height:114.559867pt;}
.h37{height:142.738667pt;}
.h27{height:164.840000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:27.000000pt;}
.w7{width:28.000000pt;}
.w5{width:29.000000pt;}
.w3{width:30.000000pt;}
.w9{width:147.000000pt;}
.wa{width:185.000000pt;}
.wf{width:202.496000pt;}
.wb{width:253.000000pt;}
.w4{width:594.000000pt;}
.w6{width:595.000000pt;}
.w8{width:596.000000pt;}
.wd{width:597.000000pt;}
.we{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w2{width:794.666667pt;}
.x26{left:-28.059333pt;}
.x0{left:0.000000pt;}
.x14{left:4.000000pt;}
.xb{left:7.000000pt;}
.x27{left:25.701067pt;}
.x28{left:32.421067pt;}
.x29{left:48.558800pt;}
.x2{left:96.000000pt;}
.x13{left:97.000000pt;}
.x19{left:99.651613pt;}
.x23{left:102.463133pt;}
.xe{left:105.142373pt;}
.x24{left:106.455800pt;}
.x1f{left:108.638720pt;}
.x6{left:120.000000pt;}
.x1b{left:123.000000pt;}
.x12{left:124.000000pt;}
.x10{left:125.000000pt;}
.xc{left:126.000000pt;}
.x1a{left:130.674947pt;}
.x20{left:138.050187pt;}
.x7{left:144.000000pt;}
.xf{left:150.460000pt;}
.xa{left:168.000133pt;}
.x1{left:185.714667pt;}
.x5{left:202.146667pt;}
.x25{left:221.297333pt;}
.x15{left:245.000000pt;}
.x4{left:250.999067pt;}
.x2f{left:311.781333pt;}
.x21{left:313.467520pt;}
.x1d{left:329.170667pt;}
.x11{left:364.184000pt;}
.x17{left:365.140000pt;}
.x9{left:367.384000pt;}
.x16{left:431.000000pt;}
.x3{left:469.849733pt;}
.x2d{left:516.487733pt;}
.x2b{left:518.807067pt;}
.x2a{left:527.268000pt;}
.x2c{left:533.077867pt;}
.x2e{left:597.387200pt;}
.x1e{left:644.350720pt;}
.x1c{left:695.852000pt;}
.x8{left:697.701280pt;}
.x22{left:701.999133pt;}
.x18{left:703.000947pt;}
.xd{left:732.999707pt;}
}




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