
    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_d8ef4bae79a3f31e829d34db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_596144bd436c14e662500be0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_5774944a389a15e5ac039d5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_7a707fa7db13f8804f0b90b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_337dc0e8908468d4903d3d76.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_0d990a6c4619f0c1de2f5308.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f44dc601c551a41c4bce046e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_2b088dc07de5cd9461d644ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_7391304bc9aaa34979849bc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bd099ea6282a8ca17524e7ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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_4ce7b47609f1738e8b950c7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_4068d50a66ca8ebf382f1162.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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_9354204ab2bd92a4e8e0f9fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104980;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_30cad950b051f5b28cfb6999.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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_47a365eeaf321c47e35ef90e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.096680;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_f697720ce73e5d59867bf41a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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_f6fd9a3ba6ccb01042e5e020.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940430;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_750149fb697d060ea42bfb33.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.095703;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_f6280279066daac93d4d0a11.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.095703;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_455f6a404c9a13e7b595057a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.752441;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.820000px;}
.ls6{letter-spacing:-1.896000px;}
.ls17{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.570000px;}
.ls14{letter-spacing:-0.515400px;}
.ls1c{letter-spacing:-0.496200px;}
.ls25{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.423600px;}
.ls3{letter-spacing:-0.351600px;}
.ls2b{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.184200px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.012000px;}
.ls1e{letter-spacing:0.020160px;}
.ls28{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.305280px;}
.ls18{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.345600px;}
.ls12{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.535680px;}
.ls5{letter-spacing:0.708000px;}
.ls9{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.864000px;}
.ls26{letter-spacing:2.160000px;}
.lsb{letter-spacing:5.184000px;}
.ls11{letter-spacing:6.480000px;}
.ls22{letter-spacing:6.776640px;}
.ls16{letter-spacing:8.216640px;}
.ls15{letter-spacing:19.440000px;}
.lsc{letter-spacing:33.264000px;}
.lsd{letter-spacing:34.716000px;}
.ls29{letter-spacing:43.505280px;}
.ls27{letter-spacing:52.128000px;}
.ls2a{letter-spacing:65.105280px;}
.ls13{letter-spacing:69.586560px;}
.lsf{letter-spacing:88.128000px;}
.ls23{letter-spacing:195.022560px;}
.ls1d{letter-spacing:198.000000px;}
.ls1{letter-spacing:1647.336000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws12{word-spacing:-36.000000px;}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.208000px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.ws1{word-spacing:-16.122000px;}
.wsf{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.057400px;}
.wsc{word-spacing:-13.701024px;}
.wsd{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.668480px;}
.wse{word-spacing:-13.495800px;}
.ws9{word-spacing:-13.244880px;}
.wsb{word-spacing:-13.204824px;}
.ws2{word-spacing:-13.074720px;}
.ws5{word-spacing:0.000000px;}
._2d{margin-left:-5.690400px;}
._7{margin-left:-4.129440px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._4{width:2.341920px;}
._11{width:3.372000px;}
._c{width:4.636800px;}
._15{width:5.916000px;}
._8{width:7.485120px;}
._9{width:8.792640px;}
._13{width:10.512000px;}
._b{width:11.580480px;}
._a{width:12.651840px;}
._1a{width:13.899840px;}
._19{width:15.552000px;}
._18{width:16.704000px;}
._26{width:18.391680px;}
._f{width:19.872000px;}
._10{width:20.880000px;}
._14{width:21.990720px;}
._12{width:23.636640px;}
._6{width:24.675360px;}
._5{width:25.966080px;}
._1d{width:27.392160px;}
._1c{width:28.656000px;}
._1b{width:29.880000px;}
._2b{width:31.143360px;}
._1f{width:35.504640px;}
._17{width:36.936000px;}
._16{width:37.944000px;}
._2e{width:38.944320px;}
._21{width:42.765120px;}
._2f{width:43.778880px;}
._29{width:87.440160px;}
._22{width:107.352000px;}
._20{width:142.209120px;}
._25{width:157.980000px;}
._27{width:160.860000px;}
._1e{width:165.558600px;}
._28{width:217.620000px;}
._2a{width:225.516000px;}
._2c{width:280.152000px;}
._24{width:308.340000px;}
._23{width:348.660000px;}
._e{width:395.333280px;}
._3{width:588.569760px;}
._d{width:2208.989280px;}
.fc8{color:transparent;}
.fc7{color:rgb(73,80,87);}
.fc6{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:5.760000px;}
.fs4{font-size:11.520000px;}
.fs8{font-size:18.720000px;}
.fs2{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fsa{font-size:60.624000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:80.640000px;}
.fsb{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.y9{bottom:-4.680000px;}
.y35{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y16a{bottom:0.720000px;}
.yb{bottom:2.880000px;}
.y173{bottom:3.240000px;}
.y1c6{bottom:3.960000px;}
.y18c{bottom:4.245000px;}
.y13b{bottom:4.320000px;}
.y17f{bottom:4.605000px;}
.y1a5{bottom:5.040000px;}
.y1b3{bottom:5.085000px;}
.y1ab{bottom:5.400000px;}
.y181{bottom:5.685000px;}
.y185{bottom:6.045000px;}
.y186{bottom:6.405000px;}
.y188{bottom:6.765000px;}
.y183{bottom:7.125000px;}
.y208{bottom:7.200000px;}
.y172{bottom:7.560000px;}
.y175{bottom:7.920000px;}
.y17d{bottom:8.175000px;}
.y11b{bottom:8.640000px;}
.y16e{bottom:9.000000px;}
.y1e7{bottom:9.360000px;}
.y217{bottom:9.720000px;}
.y2fc{bottom:10.074000px;}
.y113{bottom:10.080000px;}
.y238{bottom:10.110000px;}
.y111{bottom:10.125000px;}
.y119{bottom:10.440000px;}
.y1bd{bottom:10.800000px;}
.y1bf{bottom:10.845000px;}
.y1c1{bottom:11.160000px;}
.y142{bottom:11.520000px;}
.y140{bottom:12.240000px;}
.y170{bottom:12.600000px;}
.y2ff{bottom:13.320000px;}
.y177{bottom:13.680000px;}
.y2fd{bottom:14.034000px;}
.y2f9{bottom:14.040000px;}
.y13f{bottom:14.400000px;}
.y13d{bottom:15.510000px;}
.y202{bottom:17.280000px;}
.y117{bottom:17.640000px;}
.y204{bottom:17.670000px;}
.y19e{bottom:19.440000px;}
.y14f{bottom:19.800000px;}
.y16c{bottom:20.520000px;}
.y1ae{bottom:21.240000px;}
.y151{bottom:21.960000px;}
.y1a4{bottom:22.320000px;}
.y1b2{bottom:22.365000px;}
.y1aa{bottom:22.680000px;}
.y1c3{bottom:24.840000px;}
.y1cd{bottom:24.870000px;}
.y1c8{bottom:24.885000px;}
.y1c4{bottom:25.560000px;}
.y1ce{bottom:25.590000px;}
.y1c9{bottom:25.605000px;}
.y1cb{bottom:25.920000px;}
.y240{bottom:27.720000px;}
.y207{bottom:28.080000px;}
.yc{bottom:30.600000px;}
.y225{bottom:30.630000px;}
.y200{bottom:30.960000px;}
.y205{bottom:30.990000px;}
.y118{bottom:31.350000px;}
.y19d{bottom:34.920000px;}
.y14e{bottom:35.280000px;}
.y154{bottom:36.720000px;}
.y1a7{bottom:37.800000px;}
.y152{bottom:38.205000px;}
.y1ad{bottom:38.520000px;}
.y1a3{bottom:39.600000px;}
.y1a9{bottom:39.960000px;}
.y244{bottom:45.720000px;}
.y19c{bottom:50.400000px;}
.y1a0{bottom:50.760000px;}
.y241{bottom:51.480000px;}
.y1a6{bottom:56.880000px;}
.ya{bottom:57.240000px;}
.y1a2{bottom:57.285000px;}
.y19a{bottom:64.440000px;}
.y19b{bottom:65.880000px;}
.y19f{bottom:66.240000px;}
.y8{bottom:83.556000px;}
.y24f{bottom:110.196000px;}
.y1bb{bottom:111.636000px;}
.y1fd{bottom:113.436000px;}
.y2fe{bottom:115.236000px;}
.y92{bottom:117.396000px;}
.y233{bottom:117.756000px;}
.y60{bottom:119.916000px;}
.yb5{bottom:120.996000px;}
.y2aa{bottom:121.716000px;}
.y1e0{bottom:122.796000px;}
.y78{bottom:125.316000px;}
.y17b{bottom:126.036000px;}
.y137{bottom:127.476000px;}
.y2e2{bottom:128.196000px;}
.yf8{bottom:130.356000px;}
.y24e{bottom:131.796000px;}
.y15b{bottom:133.596000px;}
.y32{bottom:134.316000px;}
.y287{bottom:134.676000px;}
.yd8{bottom:136.116000px;}
.y91{bottom:138.996000px;}
.y21c{bottom:140.436000px;}
.y5f{bottom:142.236000px;}
.y11e{bottom:142.596000px;}
.yb4{bottom:143.316000px;}
.y1df{bottom:144.396000px;}
.y2fb{bottom:146.556000px;}
.y77{bottom:147.636000px;}
.y136{bottom:149.076000px;}
.yf7{bottom:151.590000px;}
.y2cf{bottom:151.950000px;}
.y1fc{bottom:154.110000px;}
.y17a{bottom:154.470000px;}
.y1ba{bottom:157.350000px;}
.y232{bottom:158.430000px;}
.y15a{bottom:162.030000px;}
.y31{bottom:162.390000px;}
.y2a9{bottom:163.110000px;}
.y21b{bottom:163.830000px;}
.y5e{bottom:164.550000px;}
.y26a{bottom:165.270000px;}
.y1de{bottom:165.990000px;}
.yd7{bottom:166.350000px;}
.y286{bottom:167.790000px;}
.y76{bottom:169.590000px;}
.yf6{bottom:173.190000px;}
.y2ce{bottom:173.550000px;}
.yb3{bottom:177.510000px;}
.y2fa{bottom:178.590000px;}
.y135{bottom:179.670000px;}
.y11d{bottom:182.190000px;}
.y21a{bottom:182.910000px;}
.y24d{bottom:183.270000px;}
.y90{bottom:183.990000px;}
.y179{bottom:185.070000px;}
.y1dd{bottom:187.230000px;}
.y285{bottom:189.390000px;}
.y159{bottom:190.470000px;}
.y30{bottom:190.830000px;}
.y75{bottom:191.910000px;}
.y2cd{bottom:195.150000px;}
.y5d{bottom:198.795000px;}
.y269{bottom:199.515000px;}
.y231{bottom:200.235000px;}
.y1b9{bottom:203.115000px;}
.yd6{bottom:203.475000px;}
.y8f{bottom:205.635000px;}
.y2f8{bottom:210.675000px;}
.y284{bottom:211.035000px;}
.y2e1{bottom:211.395000px;}
.yb2{bottom:211.755000px;}
.y2f{bottom:213.555000px;}
.y219{bottom:214.995000px;}
.y11c{bottom:215.355000px;}
.y178{bottom:216.075000px;}
.y2cc{bottom:216.795000px;}
.yf5{bottom:218.955000px;}
.y5c{bottom:221.115000px;}
.y2a8{bottom:225.435000px;}
.yd5{bottom:225.795000px;}
.y74{bottom:226.155000px;}
.y1dc{bottom:231.195000px;}
.yb1{bottom:234.075000px;}
.y176{bottom:236.595000px;}
.y2e{bottom:236.955000px;}
.y2cb{bottom:238.395000px;}
.y8e{bottom:239.835000px;}
.yf4{bottom:240.915000px;}
.y230{bottom:241.995000px;}
.y2f7{bottom:242.715000px;}
.y5b{bottom:243.075000px;}
.y268{bottom:244.155000px;}
.y283{bottom:245.235000px;}
.y2a7{bottom:246.315000px;}
.y218{bottom:247.035000px;}
.y11a{bottom:247.395000px;}
.y24c{bottom:247.755000px;}
.yd4{bottom:248.115000px;}
.y73{bottom:248.475000px;}
.y1b8{bottom:249.195000px;}
.y1fb{bottom:251.715000px;}
.y1db{bottom:252.795000px;}
.yb0{bottom:256.395000px;}
.y2ca{bottom:259.635000px;}
.y2d{bottom:259.995000px;}
.y5a{bottom:265.395000px;}
.y267{bottom:265.755000px;}
.y134{bottom:266.475000px;}
.y2a6{bottom:267.195000px;}
.y24b{bottom:269.355000px;}
.yd3{bottom:270.075000px;}
.y72{bottom:270.435000px;}
.yf3{bottom:272.595000px;}
.y1da{bottom:274.395000px;}
.y158{bottom:275.835000px;}
.yaf{bottom:278.355000px;}
.y216{bottom:279.435000px;}
.y282{bottom:279.795000px;}
.y2c9{bottom:281.235000px;}
.y2c{bottom:283.035000px;}
.y174{bottom:283.395000px;}
.y22f{bottom:283.755000px;}
.y8d{bottom:284.475000px;}
.y59{bottom:287.355000px;}
.y2a5{bottom:287.715000px;}
.y133{bottom:288.795000px;}
.y24a{bottom:290.955000px;}
.yd2{bottom:292.395000px;}
.y71{bottom:292.755000px;}
.yf2{bottom:293.475000px;}
.y2e0{bottom:294.195000px;}
.y1b7{bottom:294.915000px;}
.y1d9{bottom:295.995000px;}
.y1fa{bottom:296.355000px;}
.y116{bottom:299.955000px;}
.yae{bottom:300.675000px;}
.y281{bottom:301.395000px;}
.y2c8{bottom:302.835000px;}
.y157{bottom:304.275000px;}
.y22e{bottom:304.995000px;}
.y2b{bottom:306.435000px;}
.y2a4{bottom:308.595000px;}
.y58{bottom:309.675000px;}
.y132{bottom:311.115000px;}
.y249{bottom:312.195000px;}
.yd1{bottom:314.355000px;}
.y70{bottom:314.715000px;}
.y1d8{bottom:317.595000px;}
.y1f9{bottom:317.955000px;}
.y2f6{bottom:319.755000px;}
.y280{bottom:322.995000px;}
.y2c7{bottom:324.465000px;}
.y8c{bottom:326.265000px;}
.y2a3{bottom:329.145000px;}
.y2a{bottom:329.505000px;}
.y266{bottom:331.305000px;}
.y57{bottom:331.665000px;}
.y156{bottom:332.745000px;}
.y131{bottom:333.465000px;}
.yad{bottom:334.905000px;}
.y2df{bottom:335.985000px;}
.y1d7{bottom:339.225000px;}
.y1f8{bottom:340.305000px;}
.y1b6{bottom:340.665000px;}
.y215{bottom:343.185000px;}
.yd0{bottom:344.625000px;}
.y2c6{bottom:346.065000px;}
.y171{bottom:347.505000px;}
.y8b{bottom:347.865000px;}
.y6f{bottom:349.305000px;}
.y2a2{bottom:350.025000px;}
.y29{bottom:352.545000px;}
.y115{bottom:352.905000px;}
.y56{bottom:353.985000px;}
.y130{bottom:355.425000px;}
.yf1{bottom:355.785000px;}
.y27f{bottom:357.225000px;}
.y22d{bottom:358.305000px;}
.y155{bottom:361.185000px;}
.yac{bottom:364.785000px;}
.y2c5{bottom:367.665000px;}
.y2a1{bottom:370.545000px;}
.y6e{bottom:371.265000px;}
.y1b5{bottom:372.705000px;}
.y2f5{bottom:374.505000px;}
.y248{bottom:375.585000px;}
.y28{bottom:375.945000px;}
.yf0{bottom:376.305000px;}
.y153{bottom:377.385000px;}
.y12f{bottom:377.745000px;}
.ycf{bottom:381.705000px;}
.y1d6{bottom:382.065000px;}
.y114{bottom:384.945000px;}
.y16f{bottom:388.185000px;}
.y1b4{bottom:388.905000px;}
.y2c4{bottom:389.265000px;}
.y27e{bottom:391.425000px;}
.y8a{bottom:392.145000px;}
.yef{bottom:397.185000px;}
.y27{bottom:397.905000px;}
.yab{bottom:401.145000px;}
.y214{bottom:403.305000px;}
.y1d5{bottom:403.665000px;}
.yce{bottom:404.025000px;}
.y6d{bottom:404.385000px;}
.y2f4{bottom:406.905000px;}
.y22c{bottom:407.985000px;}
.y55{bottom:410.505000px;}
.y2c3{bottom:410.865000px;}
.y2a0{bottom:412.305000px;}
.y27d{bottom:413.025000px;}
.y1f7{bottom:414.105000px;}
.y112{bottom:416.985000px;}
.y247{bottom:418.425000px;}
.y265{bottom:418.785000px;}
.y12e{bottom:419.505000px;}
.y16d{bottom:420.945000px;}
.y26{bottom:421.305000px;}
.yaa{bottom:423.105000px;}
.y1d4{bottom:425.265000px;}
.ycd{bottom:425.985000px;}
.yee{bottom:431.025000px;}
.y2c2{bottom:432.105000px;}
.y54{bottom:432.465000px;}
.y89{bottom:433.545000px;}
.y27c{bottom:434.625000px;}
.y213{bottom:435.345000px;}
.y1f6{bottom:435.705000px;}
.y22b{bottom:440.025000px;}
.y264{bottom:440.385000px;}
.y25{bottom:441.465000px;}
.y1b1{bottom:444.345000px;}
.ya9{bottom:445.425000px;}
.y6c{bottom:446.145000px;}
.y1d3{bottom:446.865000px;}
.y2f3{bottom:447.585000px;}
.ycc{bottom:448.305000px;}
.y110{bottom:449.025000px;}
.y246{bottom:450.510000px;}
.yed{bottom:453.030000px;}
.y2c1{bottom:454.110000px;}
.y53{bottom:454.830000px;}
.y88{bottom:455.190000px;}
.y29f{bottom:456.990000px;}
.y2de{bottom:460.590000px;}
.y12d{bottom:460.950000px;}
.y16b{bottom:463.470000px;}
.y24{bottom:464.550000px;}
.y1f5{bottom:464.910000px;}
.ya8{bottom:467.430000px;}
.y245{bottom:468.150000px;}
.y6b{bottom:468.510000px;}
.y27b{bottom:468.870000px;}
.ycb{bottom:470.310000px;}
.y22a{bottom:472.110000px;}
.y263{bottom:474.630000px;}
.yec{bottom:475.350000px;}
.y212{bottom:476.070000px;}
.y52{bottom:477.150000px;}
.y29e{bottom:478.590000px;}
.y1b0{bottom:482.190000px;}
.y12c{bottom:482.550000px;}
.y23{bottom:487.590000px;}
.y87{bottom:488.310000px;}
.y1f4{bottom:489.030000px;}
.y150{bottom:489.390000px;}
.ya7{bottom:489.750000px;}
.yca{bottom:492.630000px;}
.y2c0{bottom:497.310000px;}
.yeb{bottom:497.670000px;}
.y29d{bottom:500.190000px;}
.y2dd{bottom:501.990000px;}
.y27a{bottom:503.430000px;}
.y10f{bottom:504.870000px;}
.y211{bottom:508.110000px;}
.y229{bottom:510.270000px;}
.y22{bottom:510.990000px;}
.y51{bottom:511.350000px;}
.y6a{bottom:511.710000px;}
.y1f3{bottom:513.150000px;}
.yc9{bottom:514.950000px;}
.y169{bottom:517.110000px;}
.y2bf{bottom:518.550000px;}
.yea{bottom:519.630000px;}
.y1af{bottom:520.350000px;}
.y243{bottom:520.710000px;}
.y86{bottom:521.430000px;}
.y29c{bottom:521.790000px;}
.y2f2{bottom:523.590000px;}
.y279{bottom:524.670000px;}
.y210{bottom:525.750000px;}
.y12b{bottom:527.190000px;}
.y14d{bottom:530.070000px;}
.y1d2{bottom:532.950000px;}
.y50{bottom:533.310000px;}
.y21{bottom:534.030000px;}
.y1f2{bottom:536.550000px;}
.y10e{bottom:539.430000px;}
.y2be{bottom:540.150000px;}
.ye9{bottom:541.950000px;}
.y85{bottom:543.390000px;}
.yc8{bottom:544.830000px;}
.ya6{bottom:546.270000px;}
.y228{bottom:550.950000px;}
.y4f{bottom:555.630000px;}
.y29b{bottom:555.990000px;}
.y20{bottom:557.070000px;}
.y20f{bottom:557.430000px;}
.y1f1{bottom:558.150000px;}
.y10d{bottom:558.870000px;}
.y2bd{bottom:561.750000px;}
.ye8{bottom:563.910000px;}
.y1d1{bottom:564.990000px;}
.y84{bottom:565.710000px;}
.y12a{bottom:567.870000px;}
.y69{bottom:568.230000px;}
.y227{bottom:572.550000px;}
.y1ac{bottom:575.460000px;}
.y168{bottom:576.180000px;}
.y29a{bottom:577.620000px;}
.y4e{bottom:577.980000px;}
.y262{bottom:580.140000px;}
.y1f{bottom:580.500000px;}
.y278{bottom:580.860000px;}
.y1f0{bottom:581.580000px;}
.yc7{bottom:582.300000px;}
.y1d0{bottom:582.660000px;}
.y2bc{bottom:583.380000px;}
.y2dc{bottom:585.180000px;}
.ye7{bottom:586.260000px;}
.y83{bottom:587.700000px;}
.y242{bottom:588.420000px;}
.y129{bottom:589.500000px;}
.y20e{bottom:589.860000px;}
.y14c{bottom:592.020000px;}
.y10c{bottom:593.460000px;}
.y2f1{bottom:594.900000px;}
.y299{bottom:599.220000px;}
.y261{bottom:601.740000px;}
.y68{bottom:602.460000px;}
.ya5{bottom:602.820000px;}
.y1e{bottom:603.540000px;}
.yc6{bottom:604.260000px;}
.y226{bottom:604.620000px;}
.y167{bottom:607.140000px;}
.y4d{bottom:612.180000px;}
.y14b{bottom:613.260000px;}
.y1ef{bottom:614.340000px;}
.y10b{bottom:614.700000px;}
.y277{bottom:615.060000px;}
.ye6{bottom:616.140000px;}
.y2f0{bottom:620.460000px;}
.y128{bottom:621.900000px;}
.y82{bottom:622.260000px;}
.y260{bottom:622.980000px;}
.ya4{bottom:624.780000px;}
.y1d{bottom:626.580000px;}
.y1cf{bottom:629.460000px;}
.y298{bottom:633.420000px;}
.y4c{bottom:634.140000px;}
.y14a{bottom:634.860000px;}
.y67{bottom:635.580000px;}
.y10a{bottom:636.300000px;}
.y276{bottom:636.660000px;}
.y23f{bottom:640.980000px;}
.y81{bottom:644.220000px;}
.ya3{bottom:647.100000px;}
.y2ef{bottom:647.460000px;}
.y1a8{bottom:647.820000px;}
.y2bb{bottom:648.180000px;}
.yc5{bottom:648.540000px;}
.y1c{bottom:648.900000px;}
.ye5{bottom:653.580000px;}
.y297{bottom:655.020000px;}
.y149{bottom:656.100000px;}
.y4b{bottom:656.460000px;}
.y275{bottom:658.260000px;}
.y20d{bottom:660.060000px;}
.y127{bottom:662.220000px;}
.y166{bottom:664.020000px;}
.y25f{bottom:664.740000px;}
.y80{bottom:666.540000px;}
.y1b{bottom:667.980000px;}
.y66{bottom:668.700000px;}
.ya2{bottom:669.060000px;}
.y2ba{bottom:669.780000px;}
.y2ee{bottom:670.500000px;}
.y1a{bottom:671.580000px;}
.y224{bottom:675.180000px;}
.ye4{bottom:675.540000px;}
.y1cc{bottom:676.260000px;}
.y148{bottom:677.700000px;}
.y4a{bottom:678.780000px;}
.y19{bottom:679.140000px;}
.y1ee{bottom:679.860000px;}
.y20c{bottom:681.660000px;}
.yc4{bottom:682.740000px;}
.y25e{bottom:686.340000px;}
.y7f{bottom:688.500000px;}
.y65{bottom:690.660000px;}
.y2b9{bottom:691.020000px;}
.y165{bottom:692.460000px;}
.y2ed{bottom:696.060000px;}
.y310{bottom:696.780000px;}
.y147{bottom:699.300000px;}
.y18{bottom:701.130000px;}
.y126{bottom:702.930000px;}
.ya1{bottom:703.290000px;}
.y25d{bottom:707.610000px;}
.y2db{bottom:709.410000px;}
.ye3{bottom:710.130000px;}
.y296{bottom:710.490000px;}
.y7e{bottom:710.850000px;}
.y1ed{bottom:711.930000px;}
.y49{bottom:713.010000px;}
.y20b{bottom:713.730000px;}
.y23e{bottom:714.450000px;}
.y109{bottom:720.210000px;}
.y146{bottom:720.930000px;}
.y1ca{bottom:722.730000px;}
.y2ec{bottom:723.090000px;}
.y17{bottom:723.810000px;}
.yc3{bottom:725.250000px;}
.y223{bottom:727.770000px;}
.y25c{bottom:728.850000px;}
.ye2{bottom:732.090000px;}
.ya0{bottom:733.530000px;}
.y2b8{bottom:734.250000px;}
.y48{bottom:734.970000px;}
.y30f{bottom:738.210000px;}
.y108{bottom:741.090000px;}
.y145{bottom:742.530000px;}
.y1ec{bottom:743.970000px;}
.y7d{bottom:745.050000px;}
.y16{bottom:747.210000px;}
.y164{bottom:749.370000px;}
.y25b{bottom:750.450000px;}
.y2da{bottom:751.170000px;}
.y23d{bottom:752.610000px;}
.y295{bottom:753.690000px;}
.y20a{bottom:754.050000px;}
.ye1{bottom:754.410000px;}
.y2eb{bottom:755.130000px;}
.y2b7{bottom:755.850000px;}
.y30e{bottom:756.210000px;}
.y47{bottom:757.290000px;}
.yc2{bottom:758.730000px;}
.y125{bottom:759.090000px;}
.y107{bottom:761.970000px;}
.y144{bottom:764.130000px;}
.y7c{bottom:767.370000px;}
.y274{bottom:769.170000px;}
.y9f{bottom:769.530000px;}
.y15{bottom:769.890000px;}
.y30d{bottom:774.210000px;}
.y294{bottom:775.290000px;}
.y1a1{bottom:775.650000px;}
.y1eb{bottom:776.010000px;}
.y2b6{bottom:777.450000px;}
.y163{bottom:777.810000px;}
.y46{bottom:779.610000px;}
.yc1{bottom:780.690000px;}
.y222{bottom:781.050000px;}
.y106{bottom:782.490000px;}
.y209{bottom:785.730000px;}
.ye0{bottom:788.610000px;}
.y7b{bottom:789.330000px;}
.y273{bottom:790.770000px;}
.y9e{bottom:791.850000px;}
.y25a{bottom:792.210000px;}
.y2d9{bottom:792.570000px;}
.y14{bottom:792.930000px;}
.y23c{bottom:793.290000px;}
.y2ea{bottom:794.010000px;}
.y2b5{bottom:799.050000px;}
.y124{bottom:800.850000px;}
.y45{bottom:801.570000px;}
.yc0{bottom:803.010000px;}
.y105{bottom:803.370000px;}
.y162{bottom:806.250000px;}
.y1ea{bottom:808.050000px;}
.y293{bottom:809.490000px;}
.y30c{bottom:809.850000px;}
.ydf{bottom:810.930000px;}
.y7a{bottom:811.650000px;}
.y221{bottom:813.090000px;}
.y259{bottom:813.450000px;}
.y9d{bottom:813.810000px;}
.y13{bottom:814.890000px;}
.y1c7{bottom:816.330000px;}
.y143{bottom:816.690000px;}
.y2e9{bottom:819.570000px;}
.y2b4{bottom:820.650000px;}
.y104{bottom:823.530000px;}
.y44{bottom:823.890000px;}
.ybf{bottom:824.970000px;}
.y30b{bottom:827.895000px;}
.y292{bottom:831.135000px;}
.yde{bottom:832.935000px;}
.y2d8{bottom:834.375000px;}
.y161{bottom:834.735000px;}
.y141{bottom:835.455000px;}
.y9c{bottom:836.175000px;}
.y1e9{bottom:840.135000px;}
.y12{bottom:841.935000px;}
.y123{bottom:842.655000px;}
.y43{bottom:845.895000px;}
.y272{bottom:846.615000px;}
.y23b{bottom:846.975000px;}
.y199{bottom:848.055000px;}
.y220{bottom:851.655000px;}
.y291{bottom:852.735000px;}
.y2d7{bottom:855.615000px;}
.y258{bottom:856.335000px;}
.y64{bottom:858.135000px;}
.y9b{bottom:858.495000px;}
.ybe{bottom:859.215000px;}
.y103{bottom:863.175000px;}
.y30a{bottom:863.895000px;}
.y23a{bottom:864.615000px;}
.ydd{bottom:867.495000px;}
.y42{bottom:868.215000px;}
.y1e8{bottom:872.175000px;}
.y290{bottom:874.335000px;}
.y257{bottom:877.575000px;}
.y2e8{bottom:878.295000px;}
.y63{bottom:880.455000px;}
.y271{bottom:880.815000px;}
.y11{bottom:881.535000px;}
.y309{bottom:881.895000px;}
.y102{bottom:884.415000px;}
.y206{bottom:888.375000px;}
.y79{bottom:890.175000px;}
.ybd{bottom:890.535000px;}
.y160{bottom:893.775000px;}
.y239{bottom:896.655000px;}
.ydc{bottom:897.375000px;}
.y256{bottom:899.175000px;}
.y308{bottom:899.535000px;}
.y13e{bottom:901.695000px;}
.y41{bottom:902.415000px;}
.y9a{bottom:902.775000px;}
.y1e6{bottom:904.215000px;}
.y101{bottom:904.935000px;}
.y28f{bottom:908.535000px;}
.y2b3{bottom:908.895000px;}
.y1c5{bottom:909.975000px;}
.y270{bottom:915.375000px;}
.y10{bottom:916.815000px;}
.y307{bottom:917.175000px;}
.ybc{bottom:919.695000px;}
.y255{bottom:920.415000px;}
.y2d6{bottom:920.775000px;}
.y40{bottom:924.735000px;}
.y100{bottom:925.815000px;}
.y122{bottom:926.175000px;}
.y17c{bottom:928.440000px;}
.y28e{bottom:930.135000px;}
.y21f{bottom:932.295000px;}
.ydb{bottom:934.815000px;}
.y1e5{bottom:935.535000px;}
.y306{bottom:936.255000px;}
.y99{bottom:936.975000px;}
.y198{bottom:939.855000px;}
.y203{bottom:940.935000px;}
.y2d5{bottom:942.375000px;}
.y254{bottom:944.535000px;}
.yf{bottom:945.255000px;}
.yff{bottom:946.335000px;}
.y3f{bottom:946.695000px;}
.y191{bottom:947.880000px;}
.y190{bottom:948.600000px;}
.y13c{bottom:948.855000px;}
.y18f{bottom:948.960000px;}
.y237{bottom:949.215000px;}
.y2b2{bottom:949.575000px;}
.y18e{bottom:950.400000px;}
.y28d{bottom:951.735000px;}
.y21e{bottom:953.565000px;}
.y1c2{bottom:956.445000px;}
.ybb{bottom:956.805000px;}
.y26f{bottom:958.605000px;}
.y98{bottom:959.325000px;}
.y2d4{bottom:964.005000px;}
.y253{bottom:966.165000px;}
.y197{bottom:966.885000px;}
.yfe{bottom:967.245000px;}
.y1e4{bottom:967.605000px;}
.y121{bottom:968.325000px;}
.y3e{bottom:969.045000px;}
.y2e7{bottom:969.405000px;}
.y2b1{bottom:970.845000px;}
.y28c{bottom:973.365000px;}
.y305{bottom:975.165000px;}
.yba{bottom:979.125000px;}
.y26e{bottom:979.845000px;}
.y97{bottom:981.285000px;}
.ye{bottom:984.885000px;}
.y2d3{bottom:985.245000px;}
.y21d{bottom:985.605000px;}
.y252{bottom:987.765000px;}
.yfd{bottom:988.125000px;}
.y62{bottom:991.005000px;}
.y2b0{bottom:991.365000px;}
.y304{bottom:993.165000px;}
.y201{bottom:993.885000px;}
.y28b{bottom:994.965000px;}
.y196{bottom:995.325000px;}
.y13a{bottom:996.045000px;}
.y18d{bottom:996.480000px;}
.y18b{bottom:997.560000px;}
.y18a{bottom:997.920000px;}
.y189{bottom:998.640000px;}
.y1e3{bottom:999.645000px;}
.yb9{bottom:1001.085000px;}
.y2e6{bottom:1001.805000px;}
.y236{bottom:1002.165000px;}
.y3d{bottom:1003.245000px;}
.y96{bottom:1003.605000px;}
.y2d2{bottom:1006.845000px;}
.yfc{bottom:1008.645000px;}
.y120{bottom:1010.085000px;}
.y2af{bottom:1012.245000px;}
.y61{bottom:1013.325000px;}
.yd{bottom:1014.045000px;}
.y26d{bottom:1014.405000px;}
.y7{bottom:1021.245000px;}
.yb8{bottom:1023.405000px;}
.y195{bottom:1023.765000px;}
.y303{bottom:1025.205000px;}
.y3c{bottom:1025.565000px;}
.y2d1{bottom:1028.805000px;}
.y28a{bottom:1029.165000px;}
.yfb{bottom:1029.525000px;}
.y1e2{bottom:1031.685000px;}
.y2ae{bottom:1032.765000px;}
.y1c0{bottom:1035.285000px;}
.yda{bottom:1035.645000px;}
.y95{bottom:1036.725000px;}
.y187{bottom:1038.240000px;}
.y182{bottom:1039.320000px;}
.y180{bottom:1040.760000px;}
.y184{bottom:1041.840000px;}
.y2e5{bottom:1042.485000px;}
.yb7{bottom:1045.725000px;}
.y1ff{bottom:1046.445000px;}
.y3b{bottom:1047.525000px;}
.y26c{bottom:1048.605000px;}
.yfa{bottom:1050.045000px;}
.y251{bottom:1050.765000px;}
.y6{bottom:1051.485000px;}
.y11f{bottom:1051.845000px;}
.y194{bottom:1052.205000px;}
.y15f{bottom:1053.645000px;}
.y235{bottom:1054.725000px;}
.y302{bottom:1057.245000px;}
.yd9{bottom:1057.605000px;}
.y139{bottom:1060.485000px;}
.y2e4{bottom:1064.085000px;}
.y1be{bottom:1067.325000px;}
.y3a{bottom:1069.845000px;}
.y26b{bottom:1070.205000px;}
.y1e1{bottom:1070.565000px;}
.y2d0{bottom:1071.645000px;}
.y250{bottom:1072.005000px;}
.y289{bottom:1072.365000px;}
.y17e{bottom:1072.800000px;}
.y5{bottom:1075.245000px;}
.y94{bottom:1075.605000px;}
.yb6{bottom:1079.970000px;}
.y193{bottom:1080.690000px;}
.y15e{bottom:1082.130000px;}
.y301{bottom:1089.330000px;}
.y138{bottom:1090.410000px;}
.y39{bottom:1091.850000px;}
.y234{bottom:1093.290000px;}
.yf9{bottom:1093.650000px;}
.y288{bottom:1094.010000px;}
.y2ad{bottom:1095.090000px;}
.y2e3{bottom:1096.170000px;}
.y1bc{bottom:1099.410000px;}
.y1fe{bottom:1105.530000px;}
.y192{bottom:1109.490000px;}
.y15d{bottom:1110.210000px;}
.y38{bottom:1114.170000px;}
.y93{bottom:1114.890000px;}
.y2ac{bottom:1115.970000px;}
.y300{bottom:1121.370000px;}
.y4{bottom:1129.290000px;}
.y37{bottom:1136.490000px;}
.y2ab{bottom:1136.850000px;}
.y15c{bottom:1137.930000px;}
.y3{bottom:1146.930000px;}
.y36{bottom:1157.730000px;}
.y2{bottom:1168.530000px;}
.y34{bottom:1173.570000px;}
.y1{bottom:1190.490000px;}
.y33{bottom:1193.730000px;}
.h2d{height:2.160000px;}
.h28{height:5.729063px;}
.h6{height:7.920000px;}
.h10{height:8.640000px;}
.h2b{height:9.360000px;}
.h9{height:10.231875px;}
.h27{height:14.040000px;}
.h8{height:15.516000px;}
.h2a{height:17.316000px;}
.h31{height:20.520000px;}
.h29{height:21.600000px;}
.h32{height:22.320000px;}
.h2f{height:22.680000px;}
.h26{height:23.040000px;}
.h2e{height:24.480000px;}
.h1e{height:25.560000px;}
.h3f{height:25.920000px;}
.h1d{height:26.280000px;}
.h16{height:26.640000px;}
.h15{height:26.676000px;}
.h42{height:27.000000px;}
.h41{height:27.036000px;}
.h2c{height:27.720000px;}
.h25{height:34.560000px;}
.h20{height:36.000000px;}
.h3b{height:36.396000px;}
.h3a{height:36.720000px;}
.h24{height:37.440000px;}
.h1c{height:39.600000px;}
.h49{height:40.310156px;}
.h3e{height:41.400000px;}
.h1b{height:41.436000px;}
.h4{height:41.547656px;}
.h1a{height:47.160000px;}
.h44{height:47.196000px;}
.h18{height:47.520000px;}
.h40{height:47.556000px;}
.h17{height:47.916000px;}
.h7{height:48.013594px;}
.hf{height:48.601406px;}
.h22{height:50.760000px;}
.h1f{height:50.796000px;}
.h19{height:51.996094px;}
.h21{height:52.236000px;}
.h43{height:52.417969px;}
.h3{height:52.686563px;}
.h36{height:53.067656px;}
.h39{height:53.640000px;}
.h3c{height:54.000000px;}
.h38{height:54.036000px;}
.h11{height:54.426094px;}
.he{height:58.121719px;}
.h13{height:58.154062px;}
.hc{height:58.833281px;}
.h2{height:59.871094px;}
.h23{height:59.932969px;}
.h46{height:62.316000px;}
.h12{height:63.175781px;}
.h48{height:63.351562px;}
.hb{height:63.949219px;}
.h14{height:65.144531px;}
.h5{height:65.884219px;}
.h33{height:66.027445px;}
.hd{height:67.824844px;}
.h45{height:68.076000px;}
.h37{height:70.920000px;}
.h35{height:71.316000px;}
.h47{height:71.623125px;}
.h3d{height:74.181094px;}
.h30{height:74.847445px;}
.h34{height:78.480000px;}
.ha{height:106.155703px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:4.680000px;}
.w10{width:5.400000px;}
.wf{width:6.120000px;}
.w17{width:14.400000px;}
.w16{width:20.520000px;}
.w31{width:42.840000px;}
.w43{width:55.116000px;}
.w1f{width:57.276000px;}
.w29{width:60.516000px;}
.w2a{width:61.956000px;}
.w21{width:75.636000px;}
.w20{width:77.436000px;}
.w1e{width:77.796000px;}
.w23{width:83.196000px;}
.w1b{width:86.436000px;}
.w1a{width:88.596000px;}
.w18{width:91.080000px;}
.w1c{width:92.916000px;}
.w1d{width:96.156000px;}
.w37{width:106.596000px;}
.w34{width:113.832000px;}
.w14{width:115.200000px;}
.w26{width:118.512000px;}
.w6{width:118.836000px;}
.w28{width:119.556000px;}
.wb{width:122.436000px;}
.w2f{width:124.632000px;}
.w30{width:127.512000px;}
.w2d{width:130.392000px;}
.w12{width:136.440000px;}
.wc{width:137.232000px;}
.w25{width:137.556000px;}
.we{width:137.592000px;}
.wa{width:137.952000px;}
.w32{width:147.672000px;}
.w42{width:149.076000px;}
.w22{width:157.035000px;}
.w44{width:157.755000px;}
.w2e{width:158.430000px;}
.w35{width:160.230000px;}
.w2c{width:165.315000px;}
.w2b{width:170.355000px;}
.w3d{width:177.555000px;}
.w33{width:181.875000px;}
.w11{width:192.240000px;}
.w39{width:196.995000px;}
.w3b{width:211.065000px;}
.w41{width:213.945000px;}
.w3f{width:224.745000px;}
.w36{width:233.025000px;}
.w15{width:237.600000px;}
.w38{width:239.865000px;}
.w3c{width:240.555000px;}
.w24{width:241.665000px;}
.w8{width:259.665000px;}
.w7{width:274.785000px;}
.w19{width:293.400000px;}
.w27{width:309.390000px;}
.w4{width:338.910000px;}
.w3{width:341.790000px;}
.wd{width:365.190000px;}
.w9{width:365.550000px;}
.w40{width:506.010000px;}
.w3a{width:546.690000px;}
.w3e{width:553.215000px;}
.w5{width:618.735000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x18{left:-9.000000px;}
.x0{left:0.000000px;}
.x16{left:1.800000px;}
.x1f{left:4.320000px;}
.x21{left:5.400000px;}
.x3{left:8.640000px;}
.x44{left:12.270000px;}
.x60{left:14.400000px;}
.x23{left:16.560000px;}
.x43{left:19.470000px;}
.x41{left:20.910000px;}
.x6b{left:22.320000px;}
.x69{left:25.920000px;}
.x55{left:27.030000px;}
.x5d{left:30.600000px;}
.x4e{left:32.070000px;}
.x71{left:36.036000px;}
.x42{left:37.470000px;}
.x62{left:39.240000px;}
.x5e{left:41.799000px;}
.x56{left:45.000000px;}
.x4c{left:47.550000px;}
.x50{left:50.040000px;}
.x4f{left:52.245000px;}
.x45{left:56.190000px;}
.x51{left:61.230000px;}
.x4d{left:62.325000px;}
.x54{left:66.270000px;}
.x4a{left:67.725000px;}
.x57{left:68.790000px;}
.x77{left:70.235987px;}
.x4b{left:71.310000px;}
.x1d{left:74.910000px;}
.x10{left:77.796000px;}
.x14{left:79.235987px;}
.x74{left:80.319000px;}
.x52{left:86.445000px;}
.x53{left:90.030000px;}
.x70{left:94.710000px;}
.x19{left:100.475987px;}
.x1{left:106.235987px;}
.x3d{left:107.676000px;}
.x27{left:108.765000px;}
.x15{left:110.196000px;}
.x26{left:111.630000px;}
.x1e{left:115.605000px;}
.x13{left:117.035987px;}
.x12{left:128.195987px;}
.x9{left:149.471987px;}
.x28{left:150.915000px;}
.x7{left:154.154987px;}
.x3a{left:174.240000px;}
.x22{left:177.555000px;}
.x1a{left:178.635000px;}
.x33{left:191.880000px;}
.xf{left:194.834987px;}
.x3e{left:196.995000px;}
.xa{left:202.034987px;}
.x2d{left:211.320000px;}
.x8{left:221.144987px;}
.x2{left:228.344987px;}
.x73{left:230.505000px;}
.x64{left:238.785000px;}
.x6e{left:251.700000px;}
.xd{left:262.904987px;}
.x58{left:269.385000px;}
.xe{left:276.944987px;}
.x5f{left:281.625000px;}
.x65{left:282.705000px;}
.x3f{left:284.145000px;}
.x72{left:289.905000px;}
.x67{left:293.145000px;}
.x5{left:303.270000px;}
.x6d{left:308.310000px;}
.xb{left:319.829987px;}
.x6f{left:322.350000px;}
.x78{left:325.230000px;}
.x75{left:337.110000px;}
.x6a{left:344.310000px;}
.x2e{left:355.680000px;}
.x2f{left:359.640000px;}
.x34{left:370.800000px;}
.x35{left:374.040000px;}
.xc{left:375.629987px;}
.x40{left:378.150000px;}
.x76{left:384.269987px;}
.x17{left:386.070000px;}
.x3b{left:394.200000px;}
.x3c{left:397.800000px;}
.x68{left:408.060000px;}
.x5a{left:420.660000px;}
.x66{left:431.460000px;}
.x6{left:446.579987px;}
.x4{left:448.020000px;}
.x6c{left:451.980000px;}
.x2a{left:471.600000px;}
.x2b{left:475.560000px;}
.x2c{left:479.520000px;}
.x30{left:484.200000px;}
.x79{left:531.570000px;}
.x5b{left:541.290000px;}
.x20{left:543.090000px;}
.x1b{left:544.170000px;}
.x46{left:553.890000px;}
.x36{left:573.480000px;}
.x61{left:579.495000px;}
.x31{left:586.440000px;}
.x37{left:588.600000px;}
.x32{left:589.680000px;}
.x38{left:599.400000px;}
.x39{left:602.280000px;}
.x29{left:605.160000px;}
.x24{left:634.214987px;}
.x47{left:647.535000px;}
.x5c{left:665.925000px;}
.x1c{left:682.125000px;}
.x11{left:696.525000px;}
.x48{left:705.525000px;}
.x25{left:710.924987px;}
.x63{left:739.005000px;}
.x59{left:742.605000px;}
.x49{left:783.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.840000pt;}
.ls6{letter-spacing:-1.685333pt;}
.ls17{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.506667pt;}
.ls14{letter-spacing:-0.458133pt;}
.ls1c{letter-spacing:-0.441067pt;}
.ls25{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.376533pt;}
.ls3{letter-spacing:-0.312533pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.163733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.010667pt;}
.ls1e{letter-spacing:0.017920pt;}
.ls28{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.271360pt;}
.ls18{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.307200pt;}
.ls12{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.476160pt;}
.ls5{letter-spacing:0.629333pt;}
.ls9{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls26{letter-spacing:1.920000pt;}
.lsb{letter-spacing:4.608000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls22{letter-spacing:6.023680pt;}
.ls16{letter-spacing:7.303680pt;}
.ls15{letter-spacing:17.280000pt;}
.lsc{letter-spacing:29.568000pt;}
.lsd{letter-spacing:30.858667pt;}
.ls29{letter-spacing:38.671360pt;}
.ls27{letter-spacing:46.336000pt;}
.ls2a{letter-spacing:57.871360pt;}
.ls13{letter-spacing:61.854720pt;}
.lsf{letter-spacing:78.336000pt;}
.ls23{letter-spacing:173.353387pt;}
.ls1d{letter-spacing:176.000000pt;}
.ls1{letter-spacing:1464.298667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws12{word-spacing:-32.000000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.296000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.ws1{word-spacing:-14.330667pt;}
.wsf{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws8{word-spacing:-12.495467pt;}
.wsc{word-spacing:-12.178688pt;}
.wsd{word-spacing:-12.160000pt;}
.wsa{word-spacing:-12.149760pt;}
.wse{word-spacing:-11.996267pt;}
.ws9{word-spacing:-11.773227pt;}
.wsb{word-spacing:-11.737621pt;}
.ws2{word-spacing:-11.621973pt;}
.ws5{word-spacing:0.000000pt;}
._2d{margin-left:-5.058133pt;}
._7{margin-left:-3.670613pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._4{width:2.081707pt;}
._11{width:2.997333pt;}
._c{width:4.121600pt;}
._15{width:5.258667pt;}
._8{width:6.653440pt;}
._9{width:7.815680pt;}
._13{width:9.344000pt;}
._b{width:10.293760pt;}
._a{width:11.246080pt;}
._1a{width:12.355413pt;}
._19{width:13.824000pt;}
._18{width:14.848000pt;}
._26{width:16.348160pt;}
._f{width:17.664000pt;}
._10{width:18.560000pt;}
._14{width:19.547307pt;}
._12{width:21.010347pt;}
._6{width:21.933653pt;}
._5{width:23.080960pt;}
._1d{width:24.348587pt;}
._1c{width:25.472000pt;}
._1b{width:26.560000pt;}
._2b{width:27.682987pt;}
._1f{width:31.559680pt;}
._17{width:32.832000pt;}
._16{width:33.728000pt;}
._2e{width:34.617173pt;}
._21{width:38.013440pt;}
._2f{width:38.914560pt;}
._29{width:77.724587pt;}
._22{width:95.424000pt;}
._20{width:126.408107pt;}
._25{width:140.426667pt;}
._27{width:142.986667pt;}
._1e{width:147.163200pt;}
._28{width:193.440000pt;}
._2a{width:200.458667pt;}
._2c{width:249.024000pt;}
._24{width:274.080000pt;}
._23{width:309.920000pt;}
._e{width:351.407360pt;}
._3{width:523.173120pt;}
._d{width:1963.546027pt;}
.fs6{font-size:5.120000pt;}
.fs4{font-size:10.240000pt;}
.fs8{font-size:16.640000pt;}
.fs2{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fsa{font-size:53.888000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:71.680000pt;}
.fsb{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.y9{bottom:-4.160000pt;}
.y35{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y16a{bottom:0.640000pt;}
.yb{bottom:2.560000pt;}
.y173{bottom:2.880000pt;}
.y1c6{bottom:3.520000pt;}
.y18c{bottom:3.773333pt;}
.y13b{bottom:3.840000pt;}
.y17f{bottom:4.093333pt;}
.y1a5{bottom:4.480000pt;}
.y1b3{bottom:4.520000pt;}
.y1ab{bottom:4.800000pt;}
.y181{bottom:5.053333pt;}
.y185{bottom:5.373333pt;}
.y186{bottom:5.693333pt;}
.y188{bottom:6.013333pt;}
.y183{bottom:6.333333pt;}
.y208{bottom:6.400000pt;}
.y172{bottom:6.720000pt;}
.y175{bottom:7.040000pt;}
.y17d{bottom:7.266667pt;}
.y11b{bottom:7.680000pt;}
.y16e{bottom:8.000000pt;}
.y1e7{bottom:8.320000pt;}
.y217{bottom:8.640000pt;}
.y2fc{bottom:8.954667pt;}
.y113{bottom:8.960000pt;}
.y238{bottom:8.986667pt;}
.y111{bottom:9.000000pt;}
.y119{bottom:9.280000pt;}
.y1bd{bottom:9.600000pt;}
.y1bf{bottom:9.640000pt;}
.y1c1{bottom:9.920000pt;}
.y142{bottom:10.240000pt;}
.y140{bottom:10.880000pt;}
.y170{bottom:11.200000pt;}
.y2ff{bottom:11.840000pt;}
.y177{bottom:12.160000pt;}
.y2fd{bottom:12.474667pt;}
.y2f9{bottom:12.480000pt;}
.y13f{bottom:12.800000pt;}
.y13d{bottom:13.786667pt;}
.y202{bottom:15.360000pt;}
.y117{bottom:15.680000pt;}
.y204{bottom:15.706667pt;}
.y19e{bottom:17.280000pt;}
.y14f{bottom:17.600000pt;}
.y16c{bottom:18.240000pt;}
.y1ae{bottom:18.880000pt;}
.y151{bottom:19.520000pt;}
.y1a4{bottom:19.840000pt;}
.y1b2{bottom:19.880000pt;}
.y1aa{bottom:20.160000pt;}
.y1c3{bottom:22.080000pt;}
.y1cd{bottom:22.106667pt;}
.y1c8{bottom:22.120000pt;}
.y1c4{bottom:22.720000pt;}
.y1ce{bottom:22.746667pt;}
.y1c9{bottom:22.760000pt;}
.y1cb{bottom:23.040000pt;}
.y240{bottom:24.640000pt;}
.y207{bottom:24.960000pt;}
.yc{bottom:27.200000pt;}
.y225{bottom:27.226667pt;}
.y200{bottom:27.520000pt;}
.y205{bottom:27.546667pt;}
.y118{bottom:27.866667pt;}
.y19d{bottom:31.040000pt;}
.y14e{bottom:31.360000pt;}
.y154{bottom:32.640000pt;}
.y1a7{bottom:33.600000pt;}
.y152{bottom:33.960000pt;}
.y1ad{bottom:34.240000pt;}
.y1a3{bottom:35.200000pt;}
.y1a9{bottom:35.520000pt;}
.y244{bottom:40.640000pt;}
.y19c{bottom:44.800000pt;}
.y1a0{bottom:45.120000pt;}
.y241{bottom:45.760000pt;}
.y1a6{bottom:50.560000pt;}
.ya{bottom:50.880000pt;}
.y1a2{bottom:50.920000pt;}
.y19a{bottom:57.280000pt;}
.y19b{bottom:58.560000pt;}
.y19f{bottom:58.880000pt;}
.y8{bottom:74.272000pt;}
.y24f{bottom:97.952000pt;}
.y1bb{bottom:99.232000pt;}
.y1fd{bottom:100.832000pt;}
.y2fe{bottom:102.432000pt;}
.y92{bottom:104.352000pt;}
.y233{bottom:104.672000pt;}
.y60{bottom:106.592000pt;}
.yb5{bottom:107.552000pt;}
.y2aa{bottom:108.192000pt;}
.y1e0{bottom:109.152000pt;}
.y78{bottom:111.392000pt;}
.y17b{bottom:112.032000pt;}
.y137{bottom:113.312000pt;}
.y2e2{bottom:113.952000pt;}
.yf8{bottom:115.872000pt;}
.y24e{bottom:117.152000pt;}
.y15b{bottom:118.752000pt;}
.y32{bottom:119.392000pt;}
.y287{bottom:119.712000pt;}
.yd8{bottom:120.992000pt;}
.y91{bottom:123.552000pt;}
.y21c{bottom:124.832000pt;}
.y5f{bottom:126.432000pt;}
.y11e{bottom:126.752000pt;}
.yb4{bottom:127.392000pt;}
.y1df{bottom:128.352000pt;}
.y2fb{bottom:130.272000pt;}
.y77{bottom:131.232000pt;}
.y136{bottom:132.512000pt;}
.yf7{bottom:134.746667pt;}
.y2cf{bottom:135.066667pt;}
.y1fc{bottom:136.986667pt;}
.y17a{bottom:137.306667pt;}
.y1ba{bottom:139.866667pt;}
.y232{bottom:140.826667pt;}
.y15a{bottom:144.026667pt;}
.y31{bottom:144.346667pt;}
.y2a9{bottom:144.986667pt;}
.y21b{bottom:145.626667pt;}
.y5e{bottom:146.266667pt;}
.y26a{bottom:146.906667pt;}
.y1de{bottom:147.546667pt;}
.yd7{bottom:147.866667pt;}
.y286{bottom:149.146667pt;}
.y76{bottom:150.746667pt;}
.yf6{bottom:153.946667pt;}
.y2ce{bottom:154.266667pt;}
.yb3{bottom:157.786667pt;}
.y2fa{bottom:158.746667pt;}
.y135{bottom:159.706667pt;}
.y11d{bottom:161.946667pt;}
.y21a{bottom:162.586667pt;}
.y24d{bottom:162.906667pt;}
.y90{bottom:163.546667pt;}
.y179{bottom:164.506667pt;}
.y1dd{bottom:166.426667pt;}
.y285{bottom:168.346667pt;}
.y159{bottom:169.306667pt;}
.y30{bottom:169.626667pt;}
.y75{bottom:170.586667pt;}
.y2cd{bottom:173.466667pt;}
.y5d{bottom:176.706667pt;}
.y269{bottom:177.346667pt;}
.y231{bottom:177.986667pt;}
.y1b9{bottom:180.546667pt;}
.yd6{bottom:180.866667pt;}
.y8f{bottom:182.786667pt;}
.y2f8{bottom:187.266667pt;}
.y284{bottom:187.586667pt;}
.y2e1{bottom:187.906667pt;}
.yb2{bottom:188.226667pt;}
.y2f{bottom:189.826667pt;}
.y219{bottom:191.106667pt;}
.y11c{bottom:191.426667pt;}
.y178{bottom:192.066667pt;}
.y2cc{bottom:192.706667pt;}
.yf5{bottom:194.626667pt;}
.y5c{bottom:196.546667pt;}
.y2a8{bottom:200.386667pt;}
.yd5{bottom:200.706667pt;}
.y74{bottom:201.026667pt;}
.y1dc{bottom:205.506667pt;}
.yb1{bottom:208.066667pt;}
.y176{bottom:210.306667pt;}
.y2e{bottom:210.626667pt;}
.y2cb{bottom:211.906667pt;}
.y8e{bottom:213.186667pt;}
.yf4{bottom:214.146667pt;}
.y230{bottom:215.106667pt;}
.y2f7{bottom:215.746667pt;}
.y5b{bottom:216.066667pt;}
.y268{bottom:217.026667pt;}
.y283{bottom:217.986667pt;}
.y2a7{bottom:218.946667pt;}
.y218{bottom:219.586667pt;}
.y11a{bottom:219.906667pt;}
.y24c{bottom:220.226667pt;}
.yd4{bottom:220.546667pt;}
.y73{bottom:220.866667pt;}
.y1b8{bottom:221.506667pt;}
.y1fb{bottom:223.746667pt;}
.y1db{bottom:224.706667pt;}
.yb0{bottom:227.906667pt;}
.y2ca{bottom:230.786667pt;}
.y2d{bottom:231.106667pt;}
.y5a{bottom:235.906667pt;}
.y267{bottom:236.226667pt;}
.y134{bottom:236.866667pt;}
.y2a6{bottom:237.506667pt;}
.y24b{bottom:239.426667pt;}
.yd3{bottom:240.066667pt;}
.y72{bottom:240.386667pt;}
.yf3{bottom:242.306667pt;}
.y1da{bottom:243.906667pt;}
.y158{bottom:245.186667pt;}
.yaf{bottom:247.426667pt;}
.y216{bottom:248.386667pt;}
.y282{bottom:248.706667pt;}
.y2c9{bottom:249.986667pt;}
.y2c{bottom:251.586667pt;}
.y174{bottom:251.906667pt;}
.y22f{bottom:252.226667pt;}
.y8d{bottom:252.866667pt;}
.y59{bottom:255.426667pt;}
.y2a5{bottom:255.746667pt;}
.y133{bottom:256.706667pt;}
.y24a{bottom:258.626667pt;}
.yd2{bottom:259.906667pt;}
.y71{bottom:260.226667pt;}
.yf2{bottom:260.866667pt;}
.y2e0{bottom:261.506667pt;}
.y1b7{bottom:262.146667pt;}
.y1d9{bottom:263.106667pt;}
.y1fa{bottom:263.426667pt;}
.y116{bottom:266.626667pt;}
.yae{bottom:267.266667pt;}
.y281{bottom:267.906667pt;}
.y2c8{bottom:269.186667pt;}
.y157{bottom:270.466667pt;}
.y22e{bottom:271.106667pt;}
.y2b{bottom:272.386667pt;}
.y2a4{bottom:274.306667pt;}
.y58{bottom:275.266667pt;}
.y132{bottom:276.546667pt;}
.y249{bottom:277.506667pt;}
.yd1{bottom:279.426667pt;}
.y70{bottom:279.746667pt;}
.y1d8{bottom:282.306667pt;}
.y1f9{bottom:282.626667pt;}
.y2f6{bottom:284.226667pt;}
.y280{bottom:287.106667pt;}
.y2c7{bottom:288.413333pt;}
.y8c{bottom:290.013333pt;}
.y2a3{bottom:292.573333pt;}
.y2a{bottom:292.893333pt;}
.y266{bottom:294.493333pt;}
.y57{bottom:294.813333pt;}
.y156{bottom:295.773333pt;}
.y131{bottom:296.413333pt;}
.yad{bottom:297.693333pt;}
.y2df{bottom:298.653333pt;}
.y1d7{bottom:301.533333pt;}
.y1f8{bottom:302.493333pt;}
.y1b6{bottom:302.813333pt;}
.y215{bottom:305.053333pt;}
.yd0{bottom:306.333333pt;}
.y2c6{bottom:307.613333pt;}
.y171{bottom:308.893333pt;}
.y8b{bottom:309.213333pt;}
.y6f{bottom:310.493333pt;}
.y2a2{bottom:311.133333pt;}
.y29{bottom:313.373333pt;}
.y115{bottom:313.693333pt;}
.y56{bottom:314.653333pt;}
.y130{bottom:315.933333pt;}
.yf1{bottom:316.253333pt;}
.y27f{bottom:317.533333pt;}
.y22d{bottom:318.493333pt;}
.y155{bottom:321.053333pt;}
.yac{bottom:324.253333pt;}
.y2c5{bottom:326.813333pt;}
.y2a1{bottom:329.373333pt;}
.y6e{bottom:330.013333pt;}
.y1b5{bottom:331.293333pt;}
.y2f5{bottom:332.893333pt;}
.y248{bottom:333.853333pt;}
.y28{bottom:334.173333pt;}
.yf0{bottom:334.493333pt;}
.y153{bottom:335.453333pt;}
.y12f{bottom:335.773333pt;}
.ycf{bottom:339.293333pt;}
.y1d6{bottom:339.613333pt;}
.y114{bottom:342.173333pt;}
.y16f{bottom:345.053333pt;}
.y1b4{bottom:345.693333pt;}
.y2c4{bottom:346.013333pt;}
.y27e{bottom:347.933333pt;}
.y8a{bottom:348.573333pt;}
.yef{bottom:353.053333pt;}
.y27{bottom:353.693333pt;}
.yab{bottom:356.573333pt;}
.y214{bottom:358.493333pt;}
.y1d5{bottom:358.813333pt;}
.yce{bottom:359.133333pt;}
.y6d{bottom:359.453333pt;}
.y2f4{bottom:361.693333pt;}
.y22c{bottom:362.653333pt;}
.y55{bottom:364.893333pt;}
.y2c3{bottom:365.213333pt;}
.y2a0{bottom:366.493333pt;}
.y27d{bottom:367.133333pt;}
.y1f7{bottom:368.093333pt;}
.y112{bottom:370.653333pt;}
.y247{bottom:371.933333pt;}
.y265{bottom:372.253333pt;}
.y12e{bottom:372.893333pt;}
.y16d{bottom:374.173333pt;}
.y26{bottom:374.493333pt;}
.yaa{bottom:376.093333pt;}
.y1d4{bottom:378.013333pt;}
.ycd{bottom:378.653333pt;}
.yee{bottom:383.133333pt;}
.y2c2{bottom:384.093333pt;}
.y54{bottom:384.413333pt;}
.y89{bottom:385.373333pt;}
.y27c{bottom:386.333333pt;}
.y213{bottom:386.973333pt;}
.y1f6{bottom:387.293333pt;}
.y22b{bottom:391.133333pt;}
.y264{bottom:391.453333pt;}
.y25{bottom:392.413333pt;}
.y1b1{bottom:394.973333pt;}
.ya9{bottom:395.933333pt;}
.y6c{bottom:396.573333pt;}
.y1d3{bottom:397.213333pt;}
.y2f3{bottom:397.853333pt;}
.ycc{bottom:398.493333pt;}
.y110{bottom:399.133333pt;}
.y246{bottom:400.453333pt;}
.yed{bottom:402.693333pt;}
.y2c1{bottom:403.653333pt;}
.y53{bottom:404.293333pt;}
.y88{bottom:404.613333pt;}
.y29f{bottom:406.213333pt;}
.y2de{bottom:409.413333pt;}
.y12d{bottom:409.733333pt;}
.y16b{bottom:411.973333pt;}
.y24{bottom:412.933333pt;}
.y1f5{bottom:413.253333pt;}
.ya8{bottom:415.493333pt;}
.y245{bottom:416.133333pt;}
.y6b{bottom:416.453333pt;}
.y27b{bottom:416.773333pt;}
.ycb{bottom:418.053333pt;}
.y22a{bottom:419.653333pt;}
.y263{bottom:421.893333pt;}
.yec{bottom:422.533333pt;}
.y212{bottom:423.173333pt;}
.y52{bottom:424.133333pt;}
.y29e{bottom:425.413333pt;}
.y1b0{bottom:428.613333pt;}
.y12c{bottom:428.933333pt;}
.y23{bottom:433.413333pt;}
.y87{bottom:434.053333pt;}
.y1f4{bottom:434.693333pt;}
.y150{bottom:435.013333pt;}
.ya7{bottom:435.333333pt;}
.yca{bottom:437.893333pt;}
.y2c0{bottom:442.053333pt;}
.yeb{bottom:442.373333pt;}
.y29d{bottom:444.613333pt;}
.y2dd{bottom:446.213333pt;}
.y27a{bottom:447.493333pt;}
.y10f{bottom:448.773333pt;}
.y211{bottom:451.653333pt;}
.y229{bottom:453.573333pt;}
.y22{bottom:454.213333pt;}
.y51{bottom:454.533333pt;}
.y6a{bottom:454.853333pt;}
.y1f3{bottom:456.133333pt;}
.yc9{bottom:457.733333pt;}
.y169{bottom:459.653333pt;}
.y2bf{bottom:460.933333pt;}
.yea{bottom:461.893333pt;}
.y1af{bottom:462.533333pt;}
.y243{bottom:462.853333pt;}
.y86{bottom:463.493333pt;}
.y29c{bottom:463.813333pt;}
.y2f2{bottom:465.413333pt;}
.y279{bottom:466.373333pt;}
.y210{bottom:467.333333pt;}
.y12b{bottom:468.613333pt;}
.y14d{bottom:471.173333pt;}
.y1d2{bottom:473.733333pt;}
.y50{bottom:474.053333pt;}
.y21{bottom:474.693333pt;}
.y1f2{bottom:476.933333pt;}
.y10e{bottom:479.493333pt;}
.y2be{bottom:480.133333pt;}
.ye9{bottom:481.733333pt;}
.y85{bottom:483.013333pt;}
.yc8{bottom:484.293333pt;}
.ya6{bottom:485.573333pt;}
.y228{bottom:489.733333pt;}
.y4f{bottom:493.893333pt;}
.y29b{bottom:494.213333pt;}
.y20{bottom:495.173333pt;}
.y20f{bottom:495.493333pt;}
.y1f1{bottom:496.133333pt;}
.y10d{bottom:496.773333pt;}
.y2bd{bottom:499.333333pt;}
.ye8{bottom:501.253333pt;}
.y1d1{bottom:502.213333pt;}
.y84{bottom:502.853333pt;}
.y12a{bottom:504.773333pt;}
.y69{bottom:505.093333pt;}
.y227{bottom:508.933333pt;}
.y1ac{bottom:511.520000pt;}
.y168{bottom:512.160000pt;}
.y29a{bottom:513.440000pt;}
.y4e{bottom:513.760000pt;}
.y262{bottom:515.680000pt;}
.y1f{bottom:516.000000pt;}
.y278{bottom:516.320000pt;}
.y1f0{bottom:516.960000pt;}
.yc7{bottom:517.600000pt;}
.y1d0{bottom:517.920000pt;}
.y2bc{bottom:518.560000pt;}
.y2dc{bottom:520.160000pt;}
.ye7{bottom:521.120000pt;}
.y83{bottom:522.400000pt;}
.y242{bottom:523.040000pt;}
.y129{bottom:524.000000pt;}
.y20e{bottom:524.320000pt;}
.y14c{bottom:526.240000pt;}
.y10c{bottom:527.520000pt;}
.y2f1{bottom:528.800000pt;}
.y299{bottom:532.640000pt;}
.y261{bottom:534.880000pt;}
.y68{bottom:535.520000pt;}
.ya5{bottom:535.840000pt;}
.y1e{bottom:536.480000pt;}
.yc6{bottom:537.120000pt;}
.y226{bottom:537.440000pt;}
.y167{bottom:539.680000pt;}
.y4d{bottom:544.160000pt;}
.y14b{bottom:545.120000pt;}
.y1ef{bottom:546.080000pt;}
.y10b{bottom:546.400000pt;}
.y277{bottom:546.720000pt;}
.ye6{bottom:547.680000pt;}
.y2f0{bottom:551.520000pt;}
.y128{bottom:552.800000pt;}
.y82{bottom:553.120000pt;}
.y260{bottom:553.760000pt;}
.ya4{bottom:555.360000pt;}
.y1d{bottom:556.960000pt;}
.y1cf{bottom:559.520000pt;}
.y298{bottom:563.040000pt;}
.y4c{bottom:563.680000pt;}
.y14a{bottom:564.320000pt;}
.y67{bottom:564.960000pt;}
.y10a{bottom:565.600000pt;}
.y276{bottom:565.920000pt;}
.y23f{bottom:569.760000pt;}
.y81{bottom:572.640000pt;}
.ya3{bottom:575.200000pt;}
.y2ef{bottom:575.520000pt;}
.y1a8{bottom:575.840000pt;}
.y2bb{bottom:576.160000pt;}
.yc5{bottom:576.480000pt;}
.y1c{bottom:576.800000pt;}
.ye5{bottom:580.960000pt;}
.y297{bottom:582.240000pt;}
.y149{bottom:583.200000pt;}
.y4b{bottom:583.520000pt;}
.y275{bottom:585.120000pt;}
.y20d{bottom:586.720000pt;}
.y127{bottom:588.640000pt;}
.y166{bottom:590.240000pt;}
.y25f{bottom:590.880000pt;}
.y80{bottom:592.480000pt;}
.y1b{bottom:593.760000pt;}
.y66{bottom:594.400000pt;}
.ya2{bottom:594.720000pt;}
.y2ba{bottom:595.360000pt;}
.y2ee{bottom:596.000000pt;}
.y1a{bottom:596.960000pt;}
.y224{bottom:600.160000pt;}
.ye4{bottom:600.480000pt;}
.y1cc{bottom:601.120000pt;}
.y148{bottom:602.400000pt;}
.y4a{bottom:603.360000pt;}
.y19{bottom:603.680000pt;}
.y1ee{bottom:604.320000pt;}
.y20c{bottom:605.920000pt;}
.yc4{bottom:606.880000pt;}
.y25e{bottom:610.080000pt;}
.y7f{bottom:612.000000pt;}
.y65{bottom:613.920000pt;}
.y2b9{bottom:614.240000pt;}
.y165{bottom:615.520000pt;}
.y2ed{bottom:618.720000pt;}
.y310{bottom:619.360000pt;}
.y147{bottom:621.600000pt;}
.y18{bottom:623.226667pt;}
.y126{bottom:624.826667pt;}
.ya1{bottom:625.146667pt;}
.y25d{bottom:628.986667pt;}
.y2db{bottom:630.586667pt;}
.ye3{bottom:631.226667pt;}
.y296{bottom:631.546667pt;}
.y7e{bottom:631.866667pt;}
.y1ed{bottom:632.826667pt;}
.y49{bottom:633.786667pt;}
.y20b{bottom:634.426667pt;}
.y23e{bottom:635.066667pt;}
.y109{bottom:640.186667pt;}
.y146{bottom:640.826667pt;}
.y1ca{bottom:642.426667pt;}
.y2ec{bottom:642.746667pt;}
.y17{bottom:643.386667pt;}
.yc3{bottom:644.666667pt;}
.y223{bottom:646.906667pt;}
.y25c{bottom:647.866667pt;}
.ye2{bottom:650.746667pt;}
.ya0{bottom:652.026667pt;}
.y2b8{bottom:652.666667pt;}
.y48{bottom:653.306667pt;}
.y30f{bottom:656.186667pt;}
.y108{bottom:658.746667pt;}
.y145{bottom:660.026667pt;}
.y1ec{bottom:661.306667pt;}
.y7d{bottom:662.266667pt;}
.y16{bottom:664.186667pt;}
.y164{bottom:666.106667pt;}
.y25b{bottom:667.066667pt;}
.y2da{bottom:667.706667pt;}
.y23d{bottom:668.986667pt;}
.y295{bottom:669.946667pt;}
.y20a{bottom:670.266667pt;}
.ye1{bottom:670.586667pt;}
.y2eb{bottom:671.226667pt;}
.y2b7{bottom:671.866667pt;}
.y30e{bottom:672.186667pt;}
.y47{bottom:673.146667pt;}
.yc2{bottom:674.426667pt;}
.y125{bottom:674.746667pt;}
.y107{bottom:677.306667pt;}
.y144{bottom:679.226667pt;}
.y7c{bottom:682.106667pt;}
.y274{bottom:683.706667pt;}
.y9f{bottom:684.026667pt;}
.y15{bottom:684.346667pt;}
.y30d{bottom:688.186667pt;}
.y294{bottom:689.146667pt;}
.y1a1{bottom:689.466667pt;}
.y1eb{bottom:689.786667pt;}
.y2b6{bottom:691.066667pt;}
.y163{bottom:691.386667pt;}
.y46{bottom:692.986667pt;}
.yc1{bottom:693.946667pt;}
.y222{bottom:694.266667pt;}
.y106{bottom:695.546667pt;}
.y209{bottom:698.426667pt;}
.ye0{bottom:700.986667pt;}
.y7b{bottom:701.626667pt;}
.y273{bottom:702.906667pt;}
.y9e{bottom:703.866667pt;}
.y25a{bottom:704.186667pt;}
.y2d9{bottom:704.506667pt;}
.y14{bottom:704.826667pt;}
.y23c{bottom:705.146667pt;}
.y2ea{bottom:705.786667pt;}
.y2b5{bottom:710.266667pt;}
.y124{bottom:711.866667pt;}
.y45{bottom:712.506667pt;}
.yc0{bottom:713.786667pt;}
.y105{bottom:714.106667pt;}
.y162{bottom:716.666667pt;}
.y1ea{bottom:718.266667pt;}
.y293{bottom:719.546667pt;}
.y30c{bottom:719.866667pt;}
.ydf{bottom:720.826667pt;}
.y7a{bottom:721.466667pt;}
.y221{bottom:722.746667pt;}
.y259{bottom:723.066667pt;}
.y9d{bottom:723.386667pt;}
.y13{bottom:724.346667pt;}
.y1c7{bottom:725.626667pt;}
.y143{bottom:725.946667pt;}
.y2e9{bottom:728.506667pt;}
.y2b4{bottom:729.466667pt;}
.y104{bottom:732.026667pt;}
.y44{bottom:732.346667pt;}
.ybf{bottom:733.306667pt;}
.y30b{bottom:735.906667pt;}
.y292{bottom:738.786667pt;}
.yde{bottom:740.386667pt;}
.y2d8{bottom:741.666667pt;}
.y161{bottom:741.986667pt;}
.y141{bottom:742.626667pt;}
.y9c{bottom:743.266667pt;}
.y1e9{bottom:746.786667pt;}
.y12{bottom:748.386667pt;}
.y123{bottom:749.026667pt;}
.y43{bottom:751.906667pt;}
.y272{bottom:752.546667pt;}
.y23b{bottom:752.866667pt;}
.y199{bottom:753.826667pt;}
.y220{bottom:757.026667pt;}
.y291{bottom:757.986667pt;}
.y2d7{bottom:760.546667pt;}
.y258{bottom:761.186667pt;}
.y64{bottom:762.786667pt;}
.y9b{bottom:763.106667pt;}
.ybe{bottom:763.746667pt;}
.y103{bottom:767.266667pt;}
.y30a{bottom:767.906667pt;}
.y23a{bottom:768.546667pt;}
.ydd{bottom:771.106667pt;}
.y42{bottom:771.746667pt;}
.y1e8{bottom:775.266667pt;}
.y290{bottom:777.186667pt;}
.y257{bottom:780.066667pt;}
.y2e8{bottom:780.706667pt;}
.y63{bottom:782.626667pt;}
.y271{bottom:782.946667pt;}
.y11{bottom:783.586667pt;}
.y309{bottom:783.906667pt;}
.y102{bottom:786.146667pt;}
.y206{bottom:789.666667pt;}
.y79{bottom:791.266667pt;}
.ybd{bottom:791.586667pt;}
.y160{bottom:794.466667pt;}
.y239{bottom:797.026667pt;}
.ydc{bottom:797.666667pt;}
.y256{bottom:799.266667pt;}
.y308{bottom:799.586667pt;}
.y13e{bottom:801.506667pt;}
.y41{bottom:802.146667pt;}
.y9a{bottom:802.466667pt;}
.y1e6{bottom:803.746667pt;}
.y101{bottom:804.386667pt;}
.y28f{bottom:807.586667pt;}
.y2b3{bottom:807.906667pt;}
.y1c5{bottom:808.866667pt;}
.y270{bottom:813.666667pt;}
.y10{bottom:814.946667pt;}
.y307{bottom:815.266667pt;}
.ybc{bottom:817.506667pt;}
.y255{bottom:818.146667pt;}
.y2d6{bottom:818.466667pt;}
.y40{bottom:821.986667pt;}
.y100{bottom:822.946667pt;}
.y122{bottom:823.266667pt;}
.y17c{bottom:825.280000pt;}
.y28e{bottom:826.786667pt;}
.y21f{bottom:828.706667pt;}
.ydb{bottom:830.946667pt;}
.y1e5{bottom:831.586667pt;}
.y306{bottom:832.226667pt;}
.y99{bottom:832.866667pt;}
.y198{bottom:835.426667pt;}
.y203{bottom:836.386667pt;}
.y2d5{bottom:837.666667pt;}
.y254{bottom:839.586667pt;}
.yf{bottom:840.226667pt;}
.yff{bottom:841.186667pt;}
.y3f{bottom:841.506667pt;}
.y191{bottom:842.560000pt;}
.y190{bottom:843.200000pt;}
.y13c{bottom:843.426667pt;}
.y18f{bottom:843.520000pt;}
.y237{bottom:843.746667pt;}
.y2b2{bottom:844.066667pt;}
.y18e{bottom:844.800000pt;}
.y28d{bottom:845.986667pt;}
.y21e{bottom:847.613333pt;}
.y1c2{bottom:850.173333pt;}
.ybb{bottom:850.493333pt;}
.y26f{bottom:852.093333pt;}
.y98{bottom:852.733333pt;}
.y2d4{bottom:856.893333pt;}
.y253{bottom:858.813333pt;}
.y197{bottom:859.453333pt;}
.yfe{bottom:859.773333pt;}
.y1e4{bottom:860.093333pt;}
.y121{bottom:860.733333pt;}
.y3e{bottom:861.373333pt;}
.y2e7{bottom:861.693333pt;}
.y2b1{bottom:862.973333pt;}
.y28c{bottom:865.213333pt;}
.y305{bottom:866.813333pt;}
.yba{bottom:870.333333pt;}
.y26e{bottom:870.973333pt;}
.y97{bottom:872.253333pt;}
.ye{bottom:875.453333pt;}
.y2d3{bottom:875.773333pt;}
.y21d{bottom:876.093333pt;}
.y252{bottom:878.013333pt;}
.yfd{bottom:878.333333pt;}
.y62{bottom:880.893333pt;}
.y2b0{bottom:881.213333pt;}
.y304{bottom:882.813333pt;}
.y201{bottom:883.453333pt;}
.y28b{bottom:884.413333pt;}
.y196{bottom:884.733333pt;}
.y13a{bottom:885.373333pt;}
.y18d{bottom:885.760000pt;}
.y18b{bottom:886.720000pt;}
.y18a{bottom:887.040000pt;}
.y189{bottom:887.680000pt;}
.y1e3{bottom:888.573333pt;}
.yb9{bottom:889.853333pt;}
.y2e6{bottom:890.493333pt;}
.y236{bottom:890.813333pt;}
.y3d{bottom:891.773333pt;}
.y96{bottom:892.093333pt;}
.y2d2{bottom:894.973333pt;}
.yfc{bottom:896.573333pt;}
.y120{bottom:897.853333pt;}
.y2af{bottom:899.773333pt;}
.y61{bottom:900.733333pt;}
.yd{bottom:901.373333pt;}
.y26d{bottom:901.693333pt;}
.y7{bottom:907.773333pt;}
.yb8{bottom:909.693333pt;}
.y195{bottom:910.013333pt;}
.y303{bottom:911.293333pt;}
.y3c{bottom:911.613333pt;}
.y2d1{bottom:914.493333pt;}
.y28a{bottom:914.813333pt;}
.yfb{bottom:915.133333pt;}
.y1e2{bottom:917.053333pt;}
.y2ae{bottom:918.013333pt;}
.y1c0{bottom:920.253333pt;}
.yda{bottom:920.573333pt;}
.y95{bottom:921.533333pt;}
.y187{bottom:922.880000pt;}
.y182{bottom:923.840000pt;}
.y180{bottom:925.120000pt;}
.y184{bottom:926.080000pt;}
.y2e5{bottom:926.653333pt;}
.yb7{bottom:929.533333pt;}
.y1ff{bottom:930.173333pt;}
.y3b{bottom:931.133333pt;}
.y26c{bottom:932.093333pt;}
.yfa{bottom:933.373333pt;}
.y251{bottom:934.013333pt;}
.y6{bottom:934.653333pt;}
.y11f{bottom:934.973333pt;}
.y194{bottom:935.293333pt;}
.y15f{bottom:936.573333pt;}
.y235{bottom:937.533333pt;}
.y302{bottom:939.773333pt;}
.yd9{bottom:940.093333pt;}
.y139{bottom:942.653333pt;}
.y2e4{bottom:945.853333pt;}
.y1be{bottom:948.733333pt;}
.y3a{bottom:950.973333pt;}
.y26b{bottom:951.293333pt;}
.y1e1{bottom:951.613333pt;}
.y2d0{bottom:952.573333pt;}
.y250{bottom:952.893333pt;}
.y289{bottom:953.213333pt;}
.y17e{bottom:953.600000pt;}
.y5{bottom:955.773333pt;}
.y94{bottom:956.093333pt;}
.yb6{bottom:959.973333pt;}
.y193{bottom:960.613333pt;}
.y15e{bottom:961.893333pt;}
.y301{bottom:968.293333pt;}
.y138{bottom:969.253333pt;}
.y39{bottom:970.533333pt;}
.y234{bottom:971.813333pt;}
.yf9{bottom:972.133333pt;}
.y288{bottom:972.453333pt;}
.y2ad{bottom:973.413333pt;}
.y2e3{bottom:974.373333pt;}
.y1bc{bottom:977.253333pt;}
.y1fe{bottom:982.693333pt;}
.y192{bottom:986.213333pt;}
.y15d{bottom:986.853333pt;}
.y38{bottom:990.373333pt;}
.y93{bottom:991.013333pt;}
.y2ac{bottom:991.973333pt;}
.y300{bottom:996.773333pt;}
.y4{bottom:1003.813333pt;}
.y37{bottom:1010.213333pt;}
.y2ab{bottom:1010.533333pt;}
.y15c{bottom:1011.493333pt;}
.y3{bottom:1019.493333pt;}
.y36{bottom:1029.093333pt;}
.y2{bottom:1038.693333pt;}
.y34{bottom:1043.173333pt;}
.y1{bottom:1058.213333pt;}
.y33{bottom:1061.093333pt;}
.h2d{height:1.920000pt;}
.h28{height:5.092500pt;}
.h6{height:7.040000pt;}
.h10{height:7.680000pt;}
.h2b{height:8.320000pt;}
.h9{height:9.095000pt;}
.h27{height:12.480000pt;}
.h8{height:13.792000pt;}
.h2a{height:15.392000pt;}
.h31{height:18.240000pt;}
.h29{height:19.200000pt;}
.h32{height:19.840000pt;}
.h2f{height:20.160000pt;}
.h26{height:20.480000pt;}
.h2e{height:21.760000pt;}
.h1e{height:22.720000pt;}
.h3f{height:23.040000pt;}
.h1d{height:23.360000pt;}
.h16{height:23.680000pt;}
.h15{height:23.712000pt;}
.h42{height:24.000000pt;}
.h41{height:24.032000pt;}
.h2c{height:24.640000pt;}
.h25{height:30.720000pt;}
.h20{height:32.000000pt;}
.h3b{height:32.352000pt;}
.h3a{height:32.640000pt;}
.h24{height:33.280000pt;}
.h1c{height:35.200000pt;}
.h49{height:35.831250pt;}
.h3e{height:36.800000pt;}
.h1b{height:36.832000pt;}
.h4{height:36.931250pt;}
.h1a{height:41.920000pt;}
.h44{height:41.952000pt;}
.h18{height:42.240000pt;}
.h40{height:42.272000pt;}
.h17{height:42.592000pt;}
.h7{height:42.678750pt;}
.hf{height:43.201250pt;}
.h22{height:45.120000pt;}
.h1f{height:45.152000pt;}
.h19{height:46.218750pt;}
.h21{height:46.432000pt;}
.h43{height:46.593750pt;}
.h3{height:46.832500pt;}
.h36{height:47.171250pt;}
.h39{height:47.680000pt;}
.h3c{height:48.000000pt;}
.h38{height:48.032000pt;}
.h11{height:48.378750pt;}
.he{height:51.663750pt;}
.h13{height:51.692500pt;}
.hc{height:52.296250pt;}
.h2{height:53.218750pt;}
.h23{height:53.273750pt;}
.h46{height:55.392000pt;}
.h12{height:56.156250pt;}
.h48{height:56.312500pt;}
.hb{height:56.843750pt;}
.h14{height:57.906250pt;}
.h5{height:58.563750pt;}
.h33{height:58.691063pt;}
.hd{height:60.288750pt;}
.h45{height:60.512000pt;}
.h37{height:63.040000pt;}
.h35{height:63.392000pt;}
.h47{height:63.665000pt;}
.h3d{height:65.938750pt;}
.h30{height:66.531062pt;}
.h34{height:69.760000pt;}
.ha{height:94.360625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:4.160000pt;}
.w10{width:4.800000pt;}
.wf{width:5.440000pt;}
.w17{width:12.800000pt;}
.w16{width:18.240000pt;}
.w31{width:38.080000pt;}
.w43{width:48.992000pt;}
.w1f{width:50.912000pt;}
.w29{width:53.792000pt;}
.w2a{width:55.072000pt;}
.w21{width:67.232000pt;}
.w20{width:68.832000pt;}
.w1e{width:69.152000pt;}
.w23{width:73.952000pt;}
.w1b{width:76.832000pt;}
.w1a{width:78.752000pt;}
.w18{width:80.960000pt;}
.w1c{width:82.592000pt;}
.w1d{width:85.472000pt;}
.w37{width:94.752000pt;}
.w34{width:101.184000pt;}
.w14{width:102.400000pt;}
.w26{width:105.344000pt;}
.w6{width:105.632000pt;}
.w28{width:106.272000pt;}
.wb{width:108.832000pt;}
.w2f{width:110.784000pt;}
.w30{width:113.344000pt;}
.w2d{width:115.904000pt;}
.w12{width:121.280000pt;}
.wc{width:121.984000pt;}
.w25{width:122.272000pt;}
.we{width:122.304000pt;}
.wa{width:122.624000pt;}
.w32{width:131.264000pt;}
.w42{width:132.512000pt;}
.w22{width:139.586667pt;}
.w44{width:140.226667pt;}
.w2e{width:140.826667pt;}
.w35{width:142.426667pt;}
.w2c{width:146.946667pt;}
.w2b{width:151.426667pt;}
.w3d{width:157.826667pt;}
.w33{width:161.666667pt;}
.w11{width:170.880000pt;}
.w39{width:175.106667pt;}
.w3b{width:187.613333pt;}
.w41{width:190.173333pt;}
.w3f{width:199.773333pt;}
.w36{width:207.133333pt;}
.w15{width:211.200000pt;}
.w38{width:213.213333pt;}
.w3c{width:213.826667pt;}
.w24{width:214.813333pt;}
.w8{width:230.813333pt;}
.w7{width:244.253333pt;}
.w19{width:260.800000pt;}
.w27{width:275.013333pt;}
.w4{width:301.253333pt;}
.w3{width:303.813333pt;}
.wd{width:324.613333pt;}
.w9{width:324.933333pt;}
.w40{width:449.786667pt;}
.w3a{width:485.946667pt;}
.w3e{width:491.746667pt;}
.w5{width:549.986667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x18{left:-8.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.600000pt;}
.x1f{left:3.840000pt;}
.x21{left:4.800000pt;}
.x3{left:7.680000pt;}
.x44{left:10.906667pt;}
.x60{left:12.800000pt;}
.x23{left:14.720000pt;}
.x43{left:17.306667pt;}
.x41{left:18.586667pt;}
.x6b{left:19.840000pt;}
.x69{left:23.040000pt;}
.x55{left:24.026667pt;}
.x5d{left:27.200000pt;}
.x4e{left:28.506667pt;}
.x71{left:32.032000pt;}
.x42{left:33.306667pt;}
.x62{left:34.880000pt;}
.x5e{left:37.154667pt;}
.x56{left:40.000000pt;}
.x4c{left:42.266667pt;}
.x50{left:44.480000pt;}
.x4f{left:46.440000pt;}
.x45{left:49.946667pt;}
.x51{left:54.426667pt;}
.x4d{left:55.400000pt;}
.x54{left:58.906667pt;}
.x4a{left:60.200000pt;}
.x57{left:61.146667pt;}
.x77{left:62.431988pt;}
.x4b{left:63.386667pt;}
.x1d{left:66.586667pt;}
.x10{left:69.152000pt;}
.x14{left:70.431988pt;}
.x74{left:71.394667pt;}
.x52{left:76.840000pt;}
.x53{left:80.026667pt;}
.x70{left:84.186667pt;}
.x19{left:89.311988pt;}
.x1{left:94.431988pt;}
.x3d{left:95.712000pt;}
.x27{left:96.680000pt;}
.x15{left:97.952000pt;}
.x26{left:99.226667pt;}
.x1e{left:102.760000pt;}
.x13{left:104.031988pt;}
.x12{left:113.951988pt;}
.x9{left:132.863988pt;}
.x28{left:134.146667pt;}
.x7{left:137.026655pt;}
.x3a{left:154.880000pt;}
.x22{left:157.826667pt;}
.x1a{left:158.786667pt;}
.x33{left:170.560000pt;}
.xf{left:173.186655pt;}
.x3e{left:175.106667pt;}
.xa{left:179.586655pt;}
.x2d{left:187.840000pt;}
.x8{left:196.573322pt;}
.x2{left:202.973322pt;}
.x73{left:204.893333pt;}
.x64{left:212.253333pt;}
.x6e{left:223.733333pt;}
.xd{left:233.693322pt;}
.x58{left:239.453333pt;}
.xe{left:246.173322pt;}
.x5f{left:250.333333pt;}
.x65{left:251.293333pt;}
.x3f{left:252.573333pt;}
.x72{left:257.693333pt;}
.x67{left:260.573333pt;}
.x5{left:269.573333pt;}
.x6d{left:274.053333pt;}
.xb{left:284.293322pt;}
.x6f{left:286.533333pt;}
.x78{left:289.093333pt;}
.x75{left:299.653333pt;}
.x6a{left:306.053333pt;}
.x2e{left:316.160000pt;}
.x2f{left:319.680000pt;}
.x34{left:329.600000pt;}
.x35{left:332.480000pt;}
.xc{left:333.893322pt;}
.x40{left:336.133333pt;}
.x76{left:341.573322pt;}
.x17{left:343.173333pt;}
.x3b{left:350.400000pt;}
.x3c{left:353.600000pt;}
.x68{left:362.720000pt;}
.x5a{left:373.920000pt;}
.x66{left:383.520000pt;}
.x6{left:396.959988pt;}
.x4{left:398.240000pt;}
.x6c{left:401.760000pt;}
.x2a{left:419.200000pt;}
.x2b{left:422.720000pt;}
.x2c{left:426.240000pt;}
.x30{left:430.400000pt;}
.x79{left:472.506667pt;}
.x5b{left:481.146667pt;}
.x20{left:482.746667pt;}
.x1b{left:483.706667pt;}
.x46{left:492.346667pt;}
.x36{left:509.760000pt;}
.x61{left:515.106667pt;}
.x31{left:521.280000pt;}
.x37{left:523.200000pt;}
.x32{left:524.160000pt;}
.x38{left:532.800000pt;}
.x39{left:535.360000pt;}
.x29{left:537.920000pt;}
.x24{left:563.746655pt;}
.x47{left:575.586667pt;}
.x5c{left:591.933333pt;}
.x1c{left:606.333333pt;}
.x11{left:619.133333pt;}
.x48{left:627.133333pt;}
.x25{left:631.933322pt;}
.x63{left:656.893333pt;}
.x59{left:660.093333pt;}
.x49{left:696.613333pt;}
}




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