
    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_ab5ecbf6a5f41b654e291a64.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_aa82774cea0a0080d4ad95bb.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cd457468d684459a3fd593d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_6ecee2a6264bec7e70477203.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_0c590e53262b516c718afa29.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.892578;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_360502ea4809cd6cfdd8b400.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_61865e19dd2acf59462f0178.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ba39d152e811b0226b58f05c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_ebb184ccf2e8188b628f5165.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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_1c4ee6fcaed4c017cb46fa4d.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3f7476c1571d86b76a385d14.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-13.471168px;}
.ls11{letter-spacing:-0.624000px;}
.ls17{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.178800px;}
.lsa{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.097800px;}
.ls13{letter-spacing:0.097920px;}
.ls14{letter-spacing:0.106560px;}
.lsd{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.153360px;}
.ls9{letter-spacing:0.178800px;}
.lsc{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.189735px;}
.lse{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls1b{letter-spacing:10.980000px;}
.ls1{letter-spacing:48.420000px;}
.ls10{letter-spacing:55.620000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws6{word-spacing:-10.980000px;}
.ws9{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.350600px;}
.ws11{word-spacing:-10.261200px;}
.wsb{word-spacing:-10.213800px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
.ws5{word-spacing:60.840000px;}
._12{margin-left:-2872.656000px;}
._13{margin-left:-2841.234240px;}
._36{margin-left:-179.909280px;}
._38{margin-left:-166.498560px;}
._39{margin-left:-123.613200px;}
._35{margin-left:-104.847840px;}
._37{margin-left:-73.620000px;}
._6{margin-left:-60.300000px;}
._3a{margin-left:-48.600000px;}
._9{margin-left:-3.525840px;}
._8{margin-left:-2.509920px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._10{width:2.216400px;}
._2{width:3.332640px;}
._b{width:5.313120px;}
._2c{width:6.561360px;}
._d{width:7.586640px;}
._c{width:8.844480px;}
._f{width:10.323840px;}
._e{width:11.394000px;}
._1b{width:13.130160px;}
._17{width:16.010160px;}
._15{width:17.205360px;}
._16{width:18.340800px;}
._23{width:19.606800px;}
._34{width:20.682480px;}
._18{width:21.687360px;}
._19{width:23.007600px;}
._2d{width:24.018000px;}
._a{width:25.213200px;}
._32{width:26.245680px;}
._2e{width:27.370080px;}
._1f{width:28.445760px;}
._31{width:29.456160px;}
._1e{width:30.537360px;}
._20{width:31.786800px;}
._1d{width:32.802720px;}
._1a{width:34.003440px;}
._25{width:35.193120px;}
._26{width:36.367200px;}
._2f{width:37.457520px;}
._44{width:38.486400px;}
._2a{width:39.615360px;}
._2b{width:40.636800px;}
._27{width:41.647200px;}
._29{width:42.821280px;}
._28{width:44.222400px;}
._42{width:45.341280px;}
._3e{width:47.329920px;}
._3d{width:48.823920px;}
._24{width:49.944000px;}
._14{width:51.268560px;}
._3b{width:53.109600px;}
._21{width:54.734640px;}
._22{width:55.761600px;}
._3c{width:56.837520px;}
._30{width:58.146480px;}
._3f{width:59.232960px;}
._41{width:60.629760px;}
._40{width:62.210160px;}
._45{width:63.883440px;}
._4{width:65.496000px;}
._4d{width:67.289760px;}
._33{width:69.236640px;}
._3{width:71.318880px;}
._4c{width:72.358320px;}
._43{width:77.204400px;}
._1c{width:79.958880px;}
._4b{width:81.632160px;}
._4a{width:82.648080px;}
._48{width:84.853680px;}
._49{width:141.495120px;}
._47{width:160.150800px;}
._46{width:161.650800px;}
._5{width:199.620000px;}
._11{width:282.270000px;}
._7{width:755.976000px;}
.fc9{color:rgb(44,44,54);}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs14{font-size:6.000000px;}
.fs12{font-size:12.240000px;}
.fs10{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fsf{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs13{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs11{font-size:100.938894px;}
.y4d{bottom:-246.810000px;}
.y4c{bottom:-212.970000px;}
.y4b{bottom:-179.310000px;}
.y87{bottom:-151.950000px;}
.y4a{bottom:-145.650000px;}
.y86{bottom:-118.260000px;}
.y49{bottom:-111.810000px;}
.y85{bottom:-84.600000px;}
.y48{bottom:-78.150000px;}
.y84{bottom:-50.760000px;}
.y47{bottom:-44.310000px;}
.y89{bottom:-17.922750px;}
.y83{bottom:-17.100000px;}
.y46{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y69{bottom:1.440000px;}
.y279{bottom:1.837500px;}
.y15a{bottom:2.340000px;}
.y1b0{bottom:2.385000px;}
.y127{bottom:2.520000px;}
.y1c9{bottom:3.060000px;}
.y5{bottom:3.780000px;}
.y177{bottom:3.825000px;}
.y17e{bottom:4.320000px;}
.y1b8{bottom:5.040000px;}
.y1c2{bottom:5.220000px;}
.y78{bottom:5.550000px;}
.y166{bottom:5.580000px;}
.y1a7{bottom:5.760000px;}
.y168{bottom:6.480000px;}
.y1ab{bottom:7.020000px;}
.y45{bottom:7.560000px;}
.y169{bottom:7.740000px;}
.y76{bottom:8.280000px;}
.y19a{bottom:8.460000px;}
.y129{bottom:9.360000px;}
.y12f{bottom:9.540000px;}
.y12b{bottom:9.585000px;}
.y16d{bottom:9.900000px;}
.y1a9{bottom:10.800000px;}
.y194{bottom:11.700000px;}
.y8{bottom:12.420000px;}
.y16f{bottom:14.400000px;}
.y125{bottom:16.200000px;}
.y12e{bottom:16.380000px;}
.y135{bottom:16.410000px;}
.y12c{bottom:16.425000px;}
.y82{bottom:16.740000px;}
.y68{bottom:16.920000px;}
.y196{bottom:17.460000px;}
.y192{bottom:19.980000px;}
.y18b{bottom:20.340000px;}
.y164{bottom:20.700000px;}
.y1c4{bottom:20.880000px;}
.y75{bottom:21.420000px;}
.y44{bottom:21.600000px;}
.y9{bottom:21.780000px;}
.y6{bottom:23.220000px;}
.y7{bottom:24.480000px;}
.y190{bottom:27.900000px;}
.y67{bottom:29.340000px;}
.y195{bottom:29.520000px;}
.y126{bottom:30.060000px;}
.y130{bottom:30.240000px;}
.y1c3{bottom:32.970000px;}
.y179{bottom:33.480000px;}
.y74{bottom:34.380000px;}
.yb{bottom:35.100000px;}
.y17f{bottom:35.280000px;}
.y43{bottom:35.460000px;}
.y18f{bottom:39.990000px;}
.y1a1{bottom:40.320000px;}
.y66{bottom:47.160000px;}
.y73{bottom:47.340000px;}
.y8c{bottom:47.520000px;}
.y81{bottom:47.700000px;}
.y42{bottom:49.500000px;}
.y1bb{bottom:53.850000px;}
.y4{bottom:57.420000px;}
.y1ad{bottom:58.140000px;}
.y72{bottom:60.480000px;}
.y80{bottom:60.660000px;}
.y189{bottom:61.200000px;}
.y41{bottom:62.460000px;}
.y88{bottom:63.780000px;}
.y65{bottom:64.980000px;}
.y1ba{bottom:65.910000px;}
.y8b{bottom:66.420000px;}
.y1ac{bottom:70.200000px;}
.y188{bottom:73.260000px;}
.y7f{bottom:73.620000px;}
.y16b{bottom:75.465000px;}
.y1b9{bottom:77.970000px;}
.y64{bottom:82.800000px;}
.y187{bottom:85.320000px;}
.y71{bottom:85.500000px;}
.y7e{bottom:86.760000px;}
.y186{bottom:97.410000px;}
.y70{bottom:98.460000px;}
.y7d{bottom:99.720000px;}
.y278{bottom:100.260000px;}
.y63{bottom:100.620000px;}
.y239{bottom:101.160000px;}
.ybe{bottom:103.320000px;}
.y20e{bottom:104.220000px;}
.y19f{bottom:104.400000px;}
.y157{bottom:104.580000px;}
.y1db{bottom:105.300000px;}
.yd2{bottom:106.200000px;}
.y1fa{bottom:107.280000px;}
.y6f{bottom:111.600000px;}
.y7c{bottom:112.905000px;}
.y62{bottom:114.840000px;}
.yfa{bottom:115.200000px;}
.y19e{bottom:116.505000px;}
.y11b{bottom:116.640000px;}
.y277{bottom:120.060000px;}
.y254{bottom:120.600000px;}
.y238{bottom:120.960000px;}
.y3f{bottom:121.500000px;}
.ybd{bottom:123.120000px;}
.y1ca{bottom:123.840000px;}
.y20d{bottom:124.020000px;}
.y156{bottom:124.380000px;}
.y6e{bottom:124.560000px;}
.y1da{bottom:125.100000px;}
.y7b{bottom:125.865000px;}
.yd1{bottom:126.000000px;}
.y1f9{bottom:127.080000px;}
.y61{bottom:127.125000px;}
.y14d{bottom:128.520000px;}
.y19d{bottom:128.565000px;}
.yf9{bottom:135.000000px;}
.y11a{bottom:136.440000px;}
.y6d{bottom:137.520000px;}
.y7a{bottom:138.105000px;}
.y276{bottom:140.040000px;}
.y15b{bottom:140.220000px;}
.y19c{bottom:140.625000px;}
.y237{bottom:140.760000px;}
.y3e{bottom:141.480000px;}
.y253{bottom:141.660000px;}
.ybc{bottom:142.920000px;}
.y20c{bottom:144.000000px;}
.y155{bottom:144.360000px;}
.y1d9{bottom:144.900000px;}
.y60{bottom:145.125000px;}
.yd0{bottom:145.980000px;}
.y1f8{bottom:146.880000px;}
.y14c{bottom:148.320000px;}
.y6c{bottom:150.660000px;}
.y162{bottom:151.920000px;}
.y1c8{bottom:152.280000px;}
.yf8{bottom:154.800000px;}
.y119{bottom:156.240000px;}
.y275{bottom:159.840000px;}
.y236{bottom:160.740000px;}
.y3d{bottom:161.280000px;}
.ybb{bottom:162.750000px;}
.y5f{bottom:162.945000px;}
.y20b{bottom:163.830000px;}
.y161{bottom:164.025000px;}
.y154{bottom:164.190000px;}
.y1d8{bottom:164.730000px;}
.y1c7{bottom:165.090000px;}
.ycf{bottom:165.810000px;}
.y1f7{bottom:166.710000px;}
.y6b{bottom:167.760000px;}
.y14b{bottom:168.150000px;}
.yf7{bottom:174.630000px;}
.y160{bottom:176.085000px;}
.y118{bottom:176.250000px;}
.y1c6{bottom:177.150000px;}
.y274{bottom:179.670000px;}
.y235{bottom:180.570000px;}
.y5e{bottom:180.765000px;}
.y3c{bottom:181.110000px;}
.yba{bottom:182.730000px;}
.y20a{bottom:183.630000px;}
.y153{bottom:183.990000px;}
.y1d7{bottom:184.710000px;}
.yce{bottom:185.610000px;}
.y252{bottom:185.970000px;}
.y1f6{bottom:186.690000px;}
.y14a{bottom:187.950000px;}
.y15f{bottom:188.145000px;}
.y1c5{bottom:189.210000px;}
.yf6{bottom:194.610000px;}
.y117{bottom:196.050000px;}
.y5d{bottom:198.585000px;}
.y273{bottom:199.470000px;}
.y15e{bottom:200.205000px;}
.y234{bottom:200.370000px;}
.y3b{bottom:200.910000px;}
.y1bc{bottom:201.270000px;}
.yb9{bottom:202.530000px;}
.y209{bottom:203.430000px;}
.y152{bottom:203.790000px;}
.y1d6{bottom:204.510000px;}
.ycd{bottom:205.410000px;}
.y251{bottom:205.950000px;}
.y1f5{bottom:206.490000px;}
.y149{bottom:207.750000px;}
.yf5{bottom:214.410000px;}
.y116{bottom:215.850000px;}
.y1c1{bottom:216.210000px;}
.y5c{bottom:216.405000px;}
.y272{bottom:219.270000px;}
.y233{bottom:220.170000px;}
.y3a{bottom:220.710000px;}
.yb8{bottom:222.330000px;}
.y208{bottom:223.230000px;}
.y151{bottom:223.590000px;}
.y1d5{bottom:224.310000px;}
.ycc{bottom:225.210000px;}
.y250{bottom:225.750000px;}
.y1f4{bottom:226.290000px;}
.y148{bottom:227.730000px;}
.y1c0{bottom:229.710000px;}
.yf4{bottom:234.210000px;}
.y5b{bottom:234.405000px;}
.y115{bottom:235.650000px;}
.y271{bottom:239.250000px;}
.y232{bottom:239.970000px;}
.y39{bottom:241.950000px;}
.yb7{bottom:242.130000px;}
.y1bf{bottom:243.210000px;}
.y150{bottom:243.570000px;}
.y1d4{bottom:244.110000px;}
.ycb{bottom:245.190000px;}
.y24f{bottom:245.550000px;}
.y1f3{bottom:246.090000px;}
.y147{bottom:248.790000px;}
.y5a{bottom:249.885000px;}
.yf3{bottom:254.010000px;}
.y1be{bottom:255.270000px;}
.y114{bottom:255.450000px;}
.y270{bottom:259.050000px;}
.y38{bottom:259.230000px;}
.y231{bottom:259.950000px;}
.yb6{bottom:261.930000px;}
.y59{bottom:262.125000px;}
.y207{bottom:263.010000px;}
.y14f{bottom:263.370000px;}
.y1d3{bottom:263.910000px;}
.yca{bottom:264.990000px;}
.y24e{bottom:265.350000px;}
.y1f2{bottom:265.890000px;}
.y1bd{bottom:267.330000px;}
.y37{bottom:267.690000px;}
.y4e{bottom:270.210000px;}
.y146{bottom:272.550000px;}
.yf2{bottom:273.810000px;}
.y113{bottom:275.430000px;}
.y26f{bottom:278.850000px;}
.y19b{bottom:279.390000px;}
.y230{bottom:279.750000px;}
.y58{bottom:279.945000px;}
.yb5{bottom:281.910000px;}
.y79{bottom:282.810000px;}
.y15c{bottom:282.855000px;}
.y14e{bottom:283.170000px;}
.y1d2{bottom:283.890000px;}
.y1f1{bottom:285.870000px;}
.yc9{bottom:286.050000px;}
.y24d{bottom:286.410000px;}
.y36{bottom:287.850000px;}
.y145{bottom:291.630000px;}
.yf1{bottom:293.790000px;}
.y1b7{bottom:294.150000px;}
.y112{bottom:295.230000px;}
.y57{bottom:297.765000px;}
.y26e{bottom:298.650000px;}
.y22f{bottom:299.550000px;}
.y35{bottom:300.810000px;}
.yb4{bottom:301.710000px;}
.y206{bottom:302.610000px;}
.y144{bottom:302.970000px;}
.y1d1{bottom:303.690000px;}
.yc8{bottom:305.670000px;}
.y1b6{bottom:306.210000px;}
.y24c{bottom:309.090000px;}
.yf0{bottom:313.590000px;}
.y111{bottom:315.030000px;}
.y56{bottom:315.585000px;}
.y34{bottom:316.110000px;}
.y1b5{bottom:318.270000px;}
.yc7{bottom:318.450000px;}
.y22e{bottom:319.350000px;}
.yb3{bottom:321.510000px;}
.y205{bottom:322.410000px;}
.y143{bottom:322.770000px;}
.y1d0{bottom:324.750000px;}
.y1f0{bottom:325.470000px;}
.y24b{bottom:328.890000px;}
.y1b4{bottom:330.330000px;}
.yef{bottom:333.390000px;}
.y55{bottom:333.585000px;}
.y33{bottom:334.110000px;}
.y110{bottom:334.830000px;}
.yc6{bottom:338.430000px;}
.y22d{bottom:339.150000px;}
.yb2{bottom:341.310000px;}
.y204{bottom:342.390000px;}
.y1b3{bottom:342.570000px;}
.y32{bottom:342.750000px;}
.y1ef{bottom:345.270000px;}
.y1cf{bottom:348.510000px;}
.y24a{bottom:348.690000px;}
.y54{bottom:351.405000px;}
.yee{bottom:353.190000px;}
.y10f{bottom:354.630000px;}
.yc5{bottom:358.230000px;}
.y22c{bottom:358.950000px;}
.yb1{bottom:361.110000px;}
.y203{bottom:362.190000px;}
.y142{bottom:362.550000px;}
.y1ee{bottom:365.070000px;}
.y53{bottom:365.655000px;}
.y31{bottom:365.970000px;}
.y1b2{bottom:366.690000px;}
.y1ce{bottom:368.130000px;}
.y249{bottom:369.750000px;}
.yed{bottom:372.990000px;}
.y10e{bottom:374.610000px;}
.y52{bottom:377.895000px;}
.yc4{bottom:378.030000px;}
.y1b1{bottom:378.750000px;}
.y22b{bottom:378.930000px;}
.yb0{bottom:381.090000px;}
.y202{bottom:381.990000px;}
.y141{bottom:382.350000px;}
.y1ed{bottom:385.050000px;}
.y30{bottom:389.190000px;}
.y1af{bottom:390.810000px;}
.yec{bottom:393.015000px;}
.y10d{bottom:394.455000px;}
.y51{bottom:395.715000px;}
.yc3{bottom:397.875000px;}
.y22a{bottom:398.775000px;}
.yaf{bottom:400.935000px;}
.y201{bottom:401.835000px;}
.y140{bottom:402.195000px;}
.y1ae{bottom:402.915000px;}
.y1ec{bottom:404.895000px;}
.y248{bottom:410.295000px;}
.y2f{bottom:412.635000px;}
.yeb{bottom:412.815000px;}
.y50{bottom:413.535000px;}
.y10c{bottom:414.255000px;}
.y1a8{bottom:414.975000px;}
.yc2{bottom:417.675000px;}
.y229{bottom:418.575000px;}
.yae{bottom:420.735000px;}
.y200{bottom:421.635000px;}
.y13f{bottom:421.995000px;}
.y1eb{bottom:424.695000px;}
.y247{bottom:430.275000px;}
.y4f{bottom:431.355000px;}
.y1aa{bottom:431.715000px;}
.yea{bottom:432.615000px;}
.y10b{bottom:434.055000px;}
.yc1{bottom:437.655000px;}
.y228{bottom:438.375000px;}
.yad{bottom:440.535000px;}
.y1ff{bottom:441.615000px;}
.y13e{bottom:441.975000px;}
.y1a0{bottom:443.775000px;}
.y1ea{bottom:444.495000px;}
.y246{bottom:450.075000px;}
.ye9{bottom:452.415000px;}
.y6a{bottom:453.495000px;}
.y10a{bottom:453.855000px;}
.y26d{bottom:457.455000px;}
.y227{bottom:458.175000px;}
.yc0{bottom:458.715000px;}
.y1a6{bottom:459.255000px;}
.yac{bottom:460.335000px;}
.y1fe{bottom:461.415000px;}
.y13d{bottom:461.775000px;}
.y1e9{bottom:464.295000px;}
.y2e{bottom:467.715000px;}
.y245{bottom:469.875000px;}
.y1a5{bottom:471.315000px;}
.ye8{bottom:472.215000px;}
.y109{bottom:473.835000px;}
.y26c{bottom:477.255000px;}
.y226{bottom:478.155000px;}
.ybf{bottom:479.415000px;}
.yab{bottom:480.315000px;}
.y1fd{bottom:481.215000px;}
.y13c{bottom:481.575000px;}
.y2d{bottom:483.375000px;}
.y1e8{bottom:484.275000px;}
.y244{bottom:489.675000px;}
.ye7{bottom:492.195000px;}
.y108{bottom:493.635000px;}
.y1a4{bottom:495.615000px;}
.y26b{bottom:497.055000px;}
.y225{bottom:497.955000px;}
.y2c{bottom:498.855000px;}
.yaa{bottom:500.115000px;}
.y1fc{bottom:501.015000px;}
.y13b{bottom:501.375000px;}
.y1e7{bottom:504.075000px;}
.y1a3{bottom:507.675000px;}
.y243{bottom:509.475000px;}
.ye6{bottom:511.995000px;}
.y107{bottom:513.435000px;}
.y2b{bottom:514.335000px;}
.y26a{bottom:516.855000px;}
.y224{bottom:517.755000px;}
.y1fb{bottom:519.015000px;}
.y1a2{bottom:519.735000px;}
.ya9{bottom:519.915000px;}
.y13a{bottom:521.175000px;}
.y1e6{bottom:523.875000px;}
.y242{bottom:529.455000px;}
.y2a{bottom:529.815000px;}
.ye5{bottom:531.795000px;}
.y106{bottom:533.055000px;}
.y269{bottom:536.655000px;}
.y223{bottom:537.555000px;}
.ya8{bottom:539.715000px;}
.y139{bottom:539.895000px;}
.y1e5{bottom:543.675000px;}
.y29{bottom:545.475000px;}
.y199{bottom:549.975000px;}
.y241{bottom:550.515000px;}
.ye4{bottom:551.595000px;}
.y105{bottom:552.675000px;}
.y138{bottom:553.575000px;}
.y268{bottom:556.635000px;}
.y222{bottom:557.355000px;}
.ya7{bottom:559.515000px;}
.y28{bottom:560.955000px;}
.y198{bottom:562.035000px;}
.y1e4{bottom:563.475000px;}
.y104{bottom:565.455000px;}
.ye3{bottom:571.395000px;}
.y137{bottom:571.575000px;}
.y197{bottom:574.095000px;}
.y27{bottom:576.435000px;}
.y221{bottom:577.335000px;}
.ya6{bottom:579.495000px;}
.y1e3{bottom:583.455000px;}
.y136{bottom:583.635000px;}
.y103{bottom:585.435000px;}
.y18e{bottom:586.155000px;}
.y240{bottom:591.015000px;}
.ye2{bottom:591.375000px;}
.y26{bottom:591.915000px;}
.y267{bottom:596.235000px;}
.y220{bottom:597.135000px;}
.ya5{bottom:599.295000px;}
.y1e2{bottom:603.255000px;}
.y102{bottom:605.235000px;}
.y25{bottom:607.575000px;}
.y23f{bottom:610.815000px;}
.ye1{bottom:611.175000px;}
.y266{bottom:616.035000px;}
.y21f{bottom:616.935000px;}
.ya4{bottom:619.095000px;}
.y193{bottom:619.635000px;}
.y24{bottom:623.085000px;}
.y101{bottom:625.065000px;}
.y23e{bottom:630.645000px;}
.ye0{bottom:631.005000px;}
.y191{bottom:631.905000px;}
.y23{bottom:633.705000px;}
.y265{bottom:635.865000px;}
.y21e{bottom:636.765000px;}
.y134{bottom:638.745000px;}
.ya3{bottom:638.925000px;}
.y1e1{bottom:642.885000px;}
.y40{bottom:643.425000px;}
.y100{bottom:644.865000px;}
.y22{bottom:648.645000px;}
.y23d{bottom:650.625000px;}
.ydf{bottom:650.805000px;}
.y264{bottom:655.845000px;}
.y21d{bottom:656.565000px;}
.ya2{bottom:658.725000px;}
.y18a{bottom:661.605000px;}
.y1e0{bottom:662.685000px;}
.yff{bottom:664.665000px;}
.y21{bottom:666.465000px;}
.y23c{bottom:670.425000px;}
.yde{bottom:670.605000px;}
.y18d{bottom:673.665000px;}
.y263{bottom:675.645000px;}
.y21c{bottom:676.545000px;}
.ya1{bottom:678.705000px;}
.y20{bottom:679.425000px;}
.y1df{bottom:682.665000px;}
.yfe{bottom:684.645000px;}
.y18c{bottom:685.725000px;}
.y23b{bottom:691.485000px;}
.ydd{bottom:691.845000px;}
.y1f{bottom:692.385000px;}
.y133{bottom:694.005000px;}
.y262{bottom:695.445000px;}
.y21b{bottom:696.345000px;}
.y15d{bottom:697.785000px;}
.ya0{bottom:698.505000px;}
.y1de{bottom:702.465000px;}
.yfd{bottom:704.445000px;}
.y1e{bottom:706.245000px;}
.ydc{bottom:711.465000px;}
.y185{bottom:715.245000px;}
.y21a{bottom:716.145000px;}
.y9f{bottom:718.305000px;}
.y1d{bottom:721.185000px;}
.y1dd{bottom:723.525000px;}
.ydb{bottom:724.245000px;}
.y184{bottom:727.305000px;}
.y1c{bottom:732.345000px;}
.y261{bottom:735.045000px;}
.y132{bottom:735.405000px;}
.y219{bottom:735.945000px;}
.y9e{bottom:738.105000px;}
.y183{bottom:739.365000px;}
.y1dc{bottom:743.685000px;}
.yda{bottom:744.045000px;}
.y182{bottom:751.605000px;}
.y260{bottom:755.025000px;}
.y218{bottom:755.745000px;}
.y1b{bottom:756.645000px;}
.y9d{bottom:757.905000px;}
.y131{bottom:762.945000px;}
.y181{bottom:763.665000px;}
.yd9{bottom:763.845000px;}
.y25f{bottom:774.825000px;}
.y180{bottom:775.725000px;}
.y9c{bottom:777.885000px;}
.y1a{bottom:781.305000px;}
.yd8{bottom:783.825000px;}
.y178{bottom:787.785000px;}
.y25e{bottom:794.625000px;}
.y217{bottom:795.525000px;}
.y19{bottom:797.145000px;}
.y9b{bottom:797.685000px;}
.y17d{bottom:801.825000px;}
.yd7{bottom:803.625000px;}
.y12d{bottom:804.345000px;}
.y18{bottom:812.985000px;}
.y17c{bottom:813.885000px;}
.y25d{bottom:814.425000px;}
.y216{bottom:815.325000px;}
.y9a{bottom:817.485000px;}
.y1cd{bottom:818.745000px;}
.yd6{bottom:823.425000px;}
.yfc{bottom:824.685000px;}
.y17b{bottom:825.945000px;}
.y17{bottom:828.825000px;}
.y25c{bottom:834.225000px;}
.y215{bottom:835.125000px;}
.y99{bottom:837.285000px;}
.y17a{bottom:838.005000px;}
.y16{bottom:839.445000px;}
.y1cc{bottom:842.505000px;}
.yfb{bottom:844.305000px;}
.yd5{bottom:844.485000px;}
.y12a{bottom:845.745000px;}
.y16a{bottom:850.065000px;}
.y15{bottom:853.710000px;}
.y25b{bottom:854.250000px;}
.y214{bottom:854.970000px;}
.y98{bottom:857.130000px;}
.y1cb{bottom:862.710000px;}
.y176{bottom:863.610000px;}
.yd4{bottom:864.150000px;}
.y128{bottom:873.510000px;}
.y25a{bottom:874.050000px;}
.y213{bottom:874.950000px;}
.y97{bottom:877.110000px;}
.y14{bottom:878.190000px;}
.y175{bottom:890.610000px;}
.y259{bottom:893.850000px;}
.y212{bottom:894.750000px;}
.y96{bottom:896.910000px;}
.y13{bottom:902.490000px;}
.y124{bottom:903.390000px;}
.y174{bottom:904.110000px;}
.y258{bottom:913.650000px;}
.y211{bottom:914.550000px;}
.y23a{bottom:915.810000px;}
.y173{bottom:916.170000px;}
.y95{bottom:916.710000px;}
.y12{bottom:923.730000px;}
.y172{bottom:928.410000px;}
.y257{bottom:933.450000px;}
.y210{bottom:934.350000px;}
.y94{bottom:936.510000px;}
.y171{bottom:940.470000px;}
.y11{bottom:947.310000px;}
.y123{bottom:949.830000px;}
.y170{bottom:952.530000px;}
.y256{bottom:953.430000px;}
.y20f{bottom:955.590000px;}
.y93{bottom:956.310000px;}
.y122{bottom:963.510000px;}
.y16e{bottom:964.590000px;}
.y255{bottom:971.430000px;}
.y121{bottom:972.150000px;}
.y92{bottom:976.290000px;}
.y10{bottom:978.990000px;}
.y16c{bottom:988.710000px;}
.y120{bottom:992.130000px;}
.y91{bottom:996.090000px;}
.y163{bottom:1008.330000px;}
.y11f{bottom:1011.930000px;}
.y90{bottom:1015.890000px;}
.yf{bottom:1024.890000px;}
.y167{bottom:1025.790000px;}
.y11e{bottom:1031.730000px;}
.y8f{bottom:1035.690000px;}
.ye{bottom:1039.110000px;}
.y165{bottom:1041.990000px;}
.y77{bottom:1049.580000px;}
.y11d{bottom:1051.530000px;}
.yd{bottom:1054.590000px;}
.y8e{bottom:1055.490000px;}
.y159{bottom:1059.630000px;}
.yc{bottom:1070.070000px;}
.y11c{bottom:1072.590000px;}
.y8d{bottom:1075.290000px;}
.y158{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.ya{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.yd3{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y8a{bottom:1122.660000px;}
.h1f{height:4.064063px;}
.h9{height:4.165313px;}
.h61{height:6.257812px;}
.h2e{height:8.851289px;}
.h38{height:12.060000px;}
.h56{height:12.096000px;}
.h43{height:12.240000px;}
.h4c{height:12.276000px;}
.h5c{height:12.816000px;}
.h5{height:13.500000px;}
.h44{height:13.536000px;}
.h46{height:14.040000px;}
.h57{height:14.760000px;}
.h5a{height:14.940000px;}
.h3d{height:15.300000px;}
.h52{height:15.480000px;}
.h3e{height:16.200000px;}
.h54{height:16.740000px;}
.h1d{height:17.181914px;}
.h36{height:17.216719px;}
.h3f{height:17.460000px;}
.h4f{height:18.180000px;}
.h41{height:19.620000px;}
.h23{height:21.336328px;}
.h4d{height:21.420000px;}
.h12{height:21.867891px;}
.h2c{height:21.912188px;}
.h25{height:22.320000px;}
.h42{height:24.120000px;}
.h1b{height:25.400391px;}
.h5d{height:26.085938px;}
.h1a{height:26.144116px;}
.h30{height:27.540000px;}
.h34{height:27.576000px;}
.h33{height:27.720000px;}
.h31{height:27.756000px;}
.h53{height:28.800000px;}
.h35{height:28.995469px;}
.h39{height:29.464453px;}
.h4b{height:29.700000px;}
.h8{height:30.198516px;}
.h15{height:30.963516px;}
.h17{height:32.801836px;}
.h21{height:32.868281px;}
.h11{height:32.942109px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h27{height:34.419375px;}
.h19{height:34.884492px;}
.hd{height:35.120039px;}
.h49{height:36.180000px;}
.h3{height:36.967148px;}
.h1c{height:39.049805px;}
.hc{height:39.313477px;}
.h2f{height:41.220000px;}
.h32{height:41.400000px;}
.hf{height:42.164648px;}
.h6{height:43.215117px;}
.h37{height:43.302656px;}
.h5e{height:43.737568px;}
.h18{height:45.992812px;}
.h5f{height:47.901094px;}
.hb{height:48.224531px;}
.h3c{height:48.960000px;}
.h2a{height:49.255313px;}
.h14{height:50.800781px;}
.h60{height:52.066406px;}
.h2b{height:52.171875px;}
.h28{height:52.998047px;}
.h10{height:53.958516px;}
.h4e{height:54.360000px;}
.h16{height:55.291992px;}
.h2{height:59.436914px;}
.h5b{height:61.056000px;}
.h45{height:62.280000px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h13{height:67.824844px;}
.ha{height:68.400000px;}
.h2d{height:69.543349px;}
.h20{height:72.900000px;}
.h29{height:75.093750px;}
.h4a{height:75.456000px;}
.h59{height:78.120000px;}
.h51{height:88.020000px;}
.h47{height:90.000000px;}
.h55{height:135.576000px;}
.h58{height:139.176000px;}
.h26{height:149.436000px;}
.h40{height:158.250000px;}
.h48{height:165.990000px;}
.h24{height:175.890000px;}
.h50{height:252.390000px;}
.h3b{height:359.490000px;}
.h22{height:443.955000px;}
.h3a{height:917.070000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wc{width:33.840000px;}
.we{width:36.216000px;}
.wf{width:54.900000px;}
.w4{width:82.080000px;}
.wd{width:85.680000px;}
.w16{width:89.316000px;}
.w10{width:91.656000px;}
.w14{width:98.856000px;}
.w12{width:99.576000px;}
.w13{width:100.800000px;}
.w6{width:101.160000px;}
.w15{width:106.200000px;}
.w11{width:110.520000px;}
.w17{width:135.036000px;}
.w7{width:154.470000px;}
.w9{width:182.550000px;}
.wb{width:187.230000px;}
.w18{width:390.135000px;}
.w8{width:532.905000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:4.252500px;}
.x8{left:8.100000px;}
.x41{left:9.180000px;}
.x18{left:10.800000px;}
.x34{left:12.285000px;}
.x37{left:13.314000px;}
.x30{left:14.580000px;}
.x3e{left:15.660000px;}
.x2e{left:17.100000px;}
.x29{left:18.360000px;}
.x36{left:19.434000px;}
.x1d{left:21.255000px;}
.x25{left:23.394000px;}
.x32{left:25.380000px;}
.x2c{left:26.820000px;}
.x2a{left:28.080000px;}
.x28{left:30.780000px;}
.x2d{left:31.860000px;}
.x10{left:33.659987px;}
.x3f{left:36.000000px;}
.x35{left:39.960000px;}
.x38{left:43.020000px;}
.x3d{left:44.685000px;}
.xa{left:50.580000px;}
.x40{left:53.640000px;}
.x3c{left:56.694000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x1a{left:80.460000px;}
.x5{left:87.654000px;}
.x17{left:93.456000px;}
.x1c{left:94.896000px;}
.x4{left:108.036000px;}
.x23{left:112.716000px;}
.xb{left:116.135987px;}
.x24{left:146.556000px;}
.x3b{left:167.625000px;}
.xd{left:173.729987px;}
.x7{left:190.110000px;}
.x14{left:204.149987px;}
.x11{left:215.129987px;}
.x44{left:222.689987px;}
.x45{left:227.009987px;}
.x26{left:232.230000px;}
.x1{left:239.969987px;}
.x12{left:246.314987px;}
.x13{left:269.354987px;}
.xe{left:272.414987px;}
.x19{left:302.655000px;}
.x39{left:303.915000px;}
.x1b{left:310.395000px;}
.x27{left:323.355000px;}
.xf{left:328.034987px;}
.xc{left:351.794987px;}
.x3{left:366.374987px;}
.x2{left:401.654987px;}
.x2b{left:415.005000px;}
.x3a{left:438.945000px;}
.x21{left:468.644987px;}
.x15{left:489.164987px;}
.x16{left:490.784987px;}
.x2f{left:525.525000px;}
.x22{left:610.889987px;}
.x1e{left:620.253000px;}
.x31{left:625.110000px;}
.x42{left:692.069987px;}
.x43{left:699.629987px;}
.x33{left:725.910000px;}
.x20{left:799.199987px;}
.x1f{left:812.879987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-11.974372pt;}
.ls11{letter-spacing:-0.554667pt;}
.ls17{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.158933pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.086933pt;}
.ls13{letter-spacing:0.087040pt;}
.ls14{letter-spacing:0.094720pt;}
.lsd{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.136320pt;}
.ls9{letter-spacing:0.158933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.168653pt;}
.lse{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:9.760000pt;}
.ls1{letter-spacing:43.040000pt;}
.ls10{letter-spacing:49.440000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws14{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.760000pt;}
.ws9{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.200533pt;}
.ws11{word-spacing:-9.121067pt;}
.wsb{word-spacing:-9.078933pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
.ws5{word-spacing:54.080000pt;}
._12{margin-left:-2553.472000pt;}
._13{margin-left:-2525.541547pt;}
._36{margin-left:-159.919360pt;}
._38{margin-left:-147.998720pt;}
._39{margin-left:-109.878400pt;}
._35{margin-left:-93.198080pt;}
._37{margin-left:-65.440000pt;}
._6{margin-left:-53.600000pt;}
._3a{margin-left:-43.200000pt;}
._9{margin-left:-3.134080pt;}
._8{margin-left:-2.231040pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._10{width:1.970133pt;}
._2{width:2.962347pt;}
._b{width:4.722773pt;}
._2c{width:5.832320pt;}
._d{width:6.743680pt;}
._c{width:7.861760pt;}
._f{width:9.176747pt;}
._e{width:10.128000pt;}
._1b{width:11.671253pt;}
._17{width:14.231253pt;}
._15{width:15.293653pt;}
._16{width:16.302933pt;}
._23{width:17.428267pt;}
._34{width:18.384427pt;}
._18{width:19.277653pt;}
._19{width:20.451200pt;}
._2d{width:21.349333pt;}
._a{width:22.411733pt;}
._32{width:23.329493pt;}
._2e{width:24.328960pt;}
._1f{width:25.285120pt;}
._31{width:26.183253pt;}
._1e{width:27.144320pt;}
._20{width:28.254933pt;}
._1d{width:29.157973pt;}
._1a{width:30.225280pt;}
._25{width:31.282773pt;}
._26{width:32.326400pt;}
._2f{width:33.295573pt;}
._44{width:34.210133pt;}
._2a{width:35.213653pt;}
._2b{width:36.121600pt;}
._27{width:37.019733pt;}
._29{width:38.063360pt;}
._28{width:39.308800pt;}
._42{width:40.303360pt;}
._3e{width:42.071040pt;}
._3d{width:43.399040pt;}
._24{width:44.394667pt;}
._14{width:45.572053pt;}
._3b{width:47.208533pt;}
._21{width:48.653013pt;}
._22{width:49.565867pt;}
._3c{width:50.522240pt;}
._30{width:51.685760pt;}
._3f{width:52.651520pt;}
._41{width:53.893120pt;}
._40{width:55.297920pt;}
._45{width:56.785280pt;}
._4{width:58.218667pt;}
._4d{width:59.813120pt;}
._33{width:61.543680pt;}
._3{width:63.394560pt;}
._4c{width:64.318507pt;}
._43{width:68.626133pt;}
._1c{width:71.074560pt;}
._4b{width:72.561920pt;}
._4a{width:73.464960pt;}
._48{width:75.425493pt;}
._49{width:125.773440pt;}
._47{width:142.356267pt;}
._46{width:143.689600pt;}
._5{width:177.440000pt;}
._11{width:250.906667pt;}
._7{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs14{font-size:5.333333pt;}
.fs12{font-size:10.880000pt;}
.fs10{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs13{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs11{font-size:89.723461pt;}
.y4d{bottom:-219.386667pt;}
.y4c{bottom:-189.306667pt;}
.y4b{bottom:-159.386667pt;}
.y87{bottom:-135.066667pt;}
.y4a{bottom:-129.466667pt;}
.y86{bottom:-105.120000pt;}
.y49{bottom:-99.386667pt;}
.y85{bottom:-75.200000pt;}
.y48{bottom:-69.466667pt;}
.y84{bottom:-45.120000pt;}
.y47{bottom:-39.386667pt;}
.y89{bottom:-15.931333pt;}
.y83{bottom:-15.200000pt;}
.y46{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:1.280000pt;}
.y279{bottom:1.633333pt;}
.y15a{bottom:2.080000pt;}
.y1b0{bottom:2.120000pt;}
.y127{bottom:2.240000pt;}
.y1c9{bottom:2.720000pt;}
.y5{bottom:3.360000pt;}
.y177{bottom:3.400000pt;}
.y17e{bottom:3.840000pt;}
.y1b8{bottom:4.480000pt;}
.y1c2{bottom:4.640000pt;}
.y78{bottom:4.933333pt;}
.y166{bottom:4.960000pt;}
.y1a7{bottom:5.120000pt;}
.y168{bottom:5.760000pt;}
.y1ab{bottom:6.240000pt;}
.y45{bottom:6.720000pt;}
.y169{bottom:6.880000pt;}
.y76{bottom:7.360000pt;}
.y19a{bottom:7.520000pt;}
.y129{bottom:8.320000pt;}
.y12f{bottom:8.480000pt;}
.y12b{bottom:8.520000pt;}
.y16d{bottom:8.800000pt;}
.y1a9{bottom:9.600000pt;}
.y194{bottom:10.400000pt;}
.y8{bottom:11.040000pt;}
.y16f{bottom:12.800000pt;}
.y125{bottom:14.400000pt;}
.y12e{bottom:14.560000pt;}
.y135{bottom:14.586667pt;}
.y12c{bottom:14.600000pt;}
.y82{bottom:14.880000pt;}
.y68{bottom:15.040000pt;}
.y196{bottom:15.520000pt;}
.y192{bottom:17.760000pt;}
.y18b{bottom:18.080000pt;}
.y164{bottom:18.400000pt;}
.y1c4{bottom:18.560000pt;}
.y75{bottom:19.040000pt;}
.y44{bottom:19.200000pt;}
.y9{bottom:19.360000pt;}
.y6{bottom:20.640000pt;}
.y7{bottom:21.760000pt;}
.y190{bottom:24.800000pt;}
.y67{bottom:26.080000pt;}
.y195{bottom:26.240000pt;}
.y126{bottom:26.720000pt;}
.y130{bottom:26.880000pt;}
.y1c3{bottom:29.306667pt;}
.y179{bottom:29.760000pt;}
.y74{bottom:30.560000pt;}
.yb{bottom:31.200000pt;}
.y17f{bottom:31.360000pt;}
.y43{bottom:31.520000pt;}
.y18f{bottom:35.546667pt;}
.y1a1{bottom:35.840000pt;}
.y66{bottom:41.920000pt;}
.y73{bottom:42.080000pt;}
.y8c{bottom:42.240000pt;}
.y81{bottom:42.400000pt;}
.y42{bottom:44.000000pt;}
.y1bb{bottom:47.866667pt;}
.y4{bottom:51.040000pt;}
.y1ad{bottom:51.680000pt;}
.y72{bottom:53.760000pt;}
.y80{bottom:53.920000pt;}
.y189{bottom:54.400000pt;}
.y41{bottom:55.520000pt;}
.y88{bottom:56.693333pt;}
.y65{bottom:57.760000pt;}
.y1ba{bottom:58.586667pt;}
.y8b{bottom:59.040000pt;}
.y1ac{bottom:62.400000pt;}
.y188{bottom:65.120000pt;}
.y7f{bottom:65.440000pt;}
.y16b{bottom:67.080000pt;}
.y1b9{bottom:69.306667pt;}
.y64{bottom:73.600000pt;}
.y187{bottom:75.840000pt;}
.y71{bottom:76.000000pt;}
.y7e{bottom:77.120000pt;}
.y186{bottom:86.586667pt;}
.y70{bottom:87.520000pt;}
.y7d{bottom:88.640000pt;}
.y278{bottom:89.120000pt;}
.y63{bottom:89.440000pt;}
.y239{bottom:89.920000pt;}
.ybe{bottom:91.840000pt;}
.y20e{bottom:92.640000pt;}
.y19f{bottom:92.800000pt;}
.y157{bottom:92.960000pt;}
.y1db{bottom:93.600000pt;}
.yd2{bottom:94.400000pt;}
.y1fa{bottom:95.360000pt;}
.y6f{bottom:99.200000pt;}
.y7c{bottom:100.360000pt;}
.y62{bottom:102.080000pt;}
.yfa{bottom:102.400000pt;}
.y19e{bottom:103.560000pt;}
.y11b{bottom:103.680000pt;}
.y277{bottom:106.720000pt;}
.y254{bottom:107.200000pt;}
.y238{bottom:107.520000pt;}
.y3f{bottom:108.000000pt;}
.ybd{bottom:109.440000pt;}
.y1ca{bottom:110.080000pt;}
.y20d{bottom:110.240000pt;}
.y156{bottom:110.560000pt;}
.y6e{bottom:110.720000pt;}
.y1da{bottom:111.200000pt;}
.y7b{bottom:111.880000pt;}
.yd1{bottom:112.000000pt;}
.y1f9{bottom:112.960000pt;}
.y61{bottom:113.000000pt;}
.y14d{bottom:114.240000pt;}
.y19d{bottom:114.280000pt;}
.yf9{bottom:120.000000pt;}
.y11a{bottom:121.280000pt;}
.y6d{bottom:122.240000pt;}
.y7a{bottom:122.760000pt;}
.y276{bottom:124.480000pt;}
.y15b{bottom:124.640000pt;}
.y19c{bottom:125.000000pt;}
.y237{bottom:125.120000pt;}
.y3e{bottom:125.760000pt;}
.y253{bottom:125.920000pt;}
.ybc{bottom:127.040000pt;}
.y20c{bottom:128.000000pt;}
.y155{bottom:128.320000pt;}
.y1d9{bottom:128.800000pt;}
.y60{bottom:129.000000pt;}
.yd0{bottom:129.760000pt;}
.y1f8{bottom:130.560000pt;}
.y14c{bottom:131.840000pt;}
.y6c{bottom:133.920000pt;}
.y162{bottom:135.040000pt;}
.y1c8{bottom:135.360000pt;}
.yf8{bottom:137.600000pt;}
.y119{bottom:138.880000pt;}
.y275{bottom:142.080000pt;}
.y236{bottom:142.880000pt;}
.y3d{bottom:143.360000pt;}
.ybb{bottom:144.666667pt;}
.y5f{bottom:144.840000pt;}
.y20b{bottom:145.626667pt;}
.y161{bottom:145.800000pt;}
.y154{bottom:145.946667pt;}
.y1d8{bottom:146.426667pt;}
.y1c7{bottom:146.746667pt;}
.ycf{bottom:147.386667pt;}
.y1f7{bottom:148.186667pt;}
.y6b{bottom:149.120000pt;}
.y14b{bottom:149.466667pt;}
.yf7{bottom:155.226667pt;}
.y160{bottom:156.520000pt;}
.y118{bottom:156.666667pt;}
.y1c6{bottom:157.466667pt;}
.y274{bottom:159.706667pt;}
.y235{bottom:160.506667pt;}
.y5e{bottom:160.680000pt;}
.y3c{bottom:160.986667pt;}
.yba{bottom:162.426667pt;}
.y20a{bottom:163.226667pt;}
.y153{bottom:163.546667pt;}
.y1d7{bottom:164.186667pt;}
.yce{bottom:164.986667pt;}
.y252{bottom:165.306667pt;}
.y1f6{bottom:165.946667pt;}
.y14a{bottom:167.066667pt;}
.y15f{bottom:167.240000pt;}
.y1c5{bottom:168.186667pt;}
.yf6{bottom:172.986667pt;}
.y117{bottom:174.266667pt;}
.y5d{bottom:176.520000pt;}
.y273{bottom:177.306667pt;}
.y15e{bottom:177.960000pt;}
.y234{bottom:178.106667pt;}
.y3b{bottom:178.586667pt;}
.y1bc{bottom:178.906667pt;}
.yb9{bottom:180.026667pt;}
.y209{bottom:180.826667pt;}
.y152{bottom:181.146667pt;}
.y1d6{bottom:181.786667pt;}
.ycd{bottom:182.586667pt;}
.y251{bottom:183.066667pt;}
.y1f5{bottom:183.546667pt;}
.y149{bottom:184.666667pt;}
.yf5{bottom:190.586667pt;}
.y116{bottom:191.866667pt;}
.y1c1{bottom:192.186667pt;}
.y5c{bottom:192.360000pt;}
.y272{bottom:194.906667pt;}
.y233{bottom:195.706667pt;}
.y3a{bottom:196.186667pt;}
.yb8{bottom:197.626667pt;}
.y208{bottom:198.426667pt;}
.y151{bottom:198.746667pt;}
.y1d5{bottom:199.386667pt;}
.ycc{bottom:200.186667pt;}
.y250{bottom:200.666667pt;}
.y1f4{bottom:201.146667pt;}
.y148{bottom:202.426667pt;}
.y1c0{bottom:204.186667pt;}
.yf4{bottom:208.186667pt;}
.y5b{bottom:208.360000pt;}
.y115{bottom:209.466667pt;}
.y271{bottom:212.666667pt;}
.y232{bottom:213.306667pt;}
.y39{bottom:215.066667pt;}
.yb7{bottom:215.226667pt;}
.y1bf{bottom:216.186667pt;}
.y150{bottom:216.506667pt;}
.y1d4{bottom:216.986667pt;}
.ycb{bottom:217.946667pt;}
.y24f{bottom:218.266667pt;}
.y1f3{bottom:218.746667pt;}
.y147{bottom:221.146667pt;}
.y5a{bottom:222.120000pt;}
.yf3{bottom:225.786667pt;}
.y1be{bottom:226.906667pt;}
.y114{bottom:227.066667pt;}
.y270{bottom:230.266667pt;}
.y38{bottom:230.426667pt;}
.y231{bottom:231.066667pt;}
.yb6{bottom:232.826667pt;}
.y59{bottom:233.000000pt;}
.y207{bottom:233.786667pt;}
.y14f{bottom:234.106667pt;}
.y1d3{bottom:234.586667pt;}
.yca{bottom:235.546667pt;}
.y24e{bottom:235.866667pt;}
.y1f2{bottom:236.346667pt;}
.y1bd{bottom:237.626667pt;}
.y37{bottom:237.946667pt;}
.y4e{bottom:240.186667pt;}
.y146{bottom:242.266667pt;}
.yf2{bottom:243.386667pt;}
.y113{bottom:244.826667pt;}
.y26f{bottom:247.866667pt;}
.y19b{bottom:248.346667pt;}
.y230{bottom:248.666667pt;}
.y58{bottom:248.840000pt;}
.yb5{bottom:250.586667pt;}
.y79{bottom:251.386667pt;}
.y15c{bottom:251.426667pt;}
.y14e{bottom:251.706667pt;}
.y1d2{bottom:252.346667pt;}
.y1f1{bottom:254.106667pt;}
.yc9{bottom:254.266667pt;}
.y24d{bottom:254.586667pt;}
.y36{bottom:255.866667pt;}
.y145{bottom:259.226667pt;}
.yf1{bottom:261.146667pt;}
.y1b7{bottom:261.466667pt;}
.y112{bottom:262.426667pt;}
.y57{bottom:264.680000pt;}
.y26e{bottom:265.466667pt;}
.y22f{bottom:266.266667pt;}
.y35{bottom:267.386667pt;}
.yb4{bottom:268.186667pt;}
.y206{bottom:268.986667pt;}
.y144{bottom:269.306667pt;}
.y1d1{bottom:269.946667pt;}
.yc8{bottom:271.706667pt;}
.y1b6{bottom:272.186667pt;}
.y24c{bottom:274.746667pt;}
.yf0{bottom:278.746667pt;}
.y111{bottom:280.026667pt;}
.y56{bottom:280.520000pt;}
.y34{bottom:280.986667pt;}
.y1b5{bottom:282.906667pt;}
.yc7{bottom:283.066667pt;}
.y22e{bottom:283.866667pt;}
.yb3{bottom:285.786667pt;}
.y205{bottom:286.586667pt;}
.y143{bottom:286.906667pt;}
.y1d0{bottom:288.666667pt;}
.y1f0{bottom:289.306667pt;}
.y24b{bottom:292.346667pt;}
.y1b4{bottom:293.626667pt;}
.yef{bottom:296.346667pt;}
.y55{bottom:296.520000pt;}
.y33{bottom:296.986667pt;}
.y110{bottom:297.626667pt;}
.yc6{bottom:300.826667pt;}
.y22d{bottom:301.466667pt;}
.yb2{bottom:303.386667pt;}
.y204{bottom:304.346667pt;}
.y1b3{bottom:304.506667pt;}
.y32{bottom:304.666667pt;}
.y1ef{bottom:306.906667pt;}
.y1cf{bottom:309.786667pt;}
.y24a{bottom:309.946667pt;}
.y54{bottom:312.360000pt;}
.yee{bottom:313.946667pt;}
.y10f{bottom:315.226667pt;}
.yc5{bottom:318.426667pt;}
.y22c{bottom:319.066667pt;}
.yb1{bottom:320.986667pt;}
.y203{bottom:321.946667pt;}
.y142{bottom:322.266667pt;}
.y1ee{bottom:324.506667pt;}
.y53{bottom:325.026667pt;}
.y31{bottom:325.306667pt;}
.y1b2{bottom:325.946667pt;}
.y1ce{bottom:327.226667pt;}
.y249{bottom:328.666667pt;}
.yed{bottom:331.546667pt;}
.y10e{bottom:332.986667pt;}
.y52{bottom:335.906667pt;}
.yc4{bottom:336.026667pt;}
.y1b1{bottom:336.666667pt;}
.y22b{bottom:336.826667pt;}
.yb0{bottom:338.746667pt;}
.y202{bottom:339.546667pt;}
.y141{bottom:339.866667pt;}
.y1ed{bottom:342.266667pt;}
.y30{bottom:345.946667pt;}
.y1af{bottom:347.386667pt;}
.yec{bottom:349.346667pt;}
.y10d{bottom:350.626667pt;}
.y51{bottom:351.746667pt;}
.yc3{bottom:353.666667pt;}
.y22a{bottom:354.466667pt;}
.yaf{bottom:356.386667pt;}
.y201{bottom:357.186667pt;}
.y140{bottom:357.506667pt;}
.y1ae{bottom:358.146667pt;}
.y1ec{bottom:359.906667pt;}
.y248{bottom:364.706667pt;}
.y2f{bottom:366.786667pt;}
.yeb{bottom:366.946667pt;}
.y50{bottom:367.586667pt;}
.y10c{bottom:368.226667pt;}
.y1a8{bottom:368.866667pt;}
.yc2{bottom:371.266667pt;}
.y229{bottom:372.066667pt;}
.yae{bottom:373.986667pt;}
.y200{bottom:374.786667pt;}
.y13f{bottom:375.106667pt;}
.y1eb{bottom:377.506667pt;}
.y247{bottom:382.466667pt;}
.y4f{bottom:383.426667pt;}
.y1aa{bottom:383.746667pt;}
.yea{bottom:384.546667pt;}
.y10b{bottom:385.826667pt;}
.yc1{bottom:389.026667pt;}
.y228{bottom:389.666667pt;}
.yad{bottom:391.586667pt;}
.y1ff{bottom:392.546667pt;}
.y13e{bottom:392.866667pt;}
.y1a0{bottom:394.466667pt;}
.y1ea{bottom:395.106667pt;}
.y246{bottom:400.066667pt;}
.ye9{bottom:402.146667pt;}
.y6a{bottom:403.106667pt;}
.y10a{bottom:403.426667pt;}
.y26d{bottom:406.626667pt;}
.y227{bottom:407.266667pt;}
.yc0{bottom:407.746667pt;}
.y1a6{bottom:408.226667pt;}
.yac{bottom:409.186667pt;}
.y1fe{bottom:410.146667pt;}
.y13d{bottom:410.466667pt;}
.y1e9{bottom:412.706667pt;}
.y2e{bottom:415.746667pt;}
.y245{bottom:417.666667pt;}
.y1a5{bottom:418.946667pt;}
.ye8{bottom:419.746667pt;}
.y109{bottom:421.186667pt;}
.y26c{bottom:424.226667pt;}
.y226{bottom:425.026667pt;}
.ybf{bottom:426.146667pt;}
.yab{bottom:426.946667pt;}
.y1fd{bottom:427.746667pt;}
.y13c{bottom:428.066667pt;}
.y2d{bottom:429.666667pt;}
.y1e8{bottom:430.466667pt;}
.y244{bottom:435.266667pt;}
.ye7{bottom:437.506667pt;}
.y108{bottom:438.786667pt;}
.y1a4{bottom:440.546667pt;}
.y26b{bottom:441.826667pt;}
.y225{bottom:442.626667pt;}
.y2c{bottom:443.426667pt;}
.yaa{bottom:444.546667pt;}
.y1fc{bottom:445.346667pt;}
.y13b{bottom:445.666667pt;}
.y1e7{bottom:448.066667pt;}
.y1a3{bottom:451.266667pt;}
.y243{bottom:452.866667pt;}
.ye6{bottom:455.106667pt;}
.y107{bottom:456.386667pt;}
.y2b{bottom:457.186667pt;}
.y26a{bottom:459.426667pt;}
.y224{bottom:460.226667pt;}
.y1fb{bottom:461.346667pt;}
.y1a2{bottom:461.986667pt;}
.ya9{bottom:462.146667pt;}
.y13a{bottom:463.266667pt;}
.y1e6{bottom:465.666667pt;}
.y242{bottom:470.626667pt;}
.y2a{bottom:470.946667pt;}
.ye5{bottom:472.706667pt;}
.y106{bottom:473.826667pt;}
.y269{bottom:477.026667pt;}
.y223{bottom:477.826667pt;}
.ya8{bottom:479.746667pt;}
.y139{bottom:479.906667pt;}
.y1e5{bottom:483.266667pt;}
.y29{bottom:484.866667pt;}
.y199{bottom:488.866667pt;}
.y241{bottom:489.346667pt;}
.ye4{bottom:490.306667pt;}
.y105{bottom:491.266667pt;}
.y138{bottom:492.066667pt;}
.y268{bottom:494.786667pt;}
.y222{bottom:495.426667pt;}
.ya7{bottom:497.346667pt;}
.y28{bottom:498.626667pt;}
.y198{bottom:499.586667pt;}
.y1e4{bottom:500.866667pt;}
.y104{bottom:502.626667pt;}
.ye3{bottom:507.906667pt;}
.y137{bottom:508.066667pt;}
.y197{bottom:510.306667pt;}
.y27{bottom:512.386667pt;}
.y221{bottom:513.186667pt;}
.ya6{bottom:515.106667pt;}
.y1e3{bottom:518.626667pt;}
.y136{bottom:518.786667pt;}
.y103{bottom:520.386667pt;}
.y18e{bottom:521.026667pt;}
.y240{bottom:525.346667pt;}
.ye2{bottom:525.666667pt;}
.y26{bottom:526.146667pt;}
.y267{bottom:529.986667pt;}
.y220{bottom:530.786667pt;}
.ya5{bottom:532.706667pt;}
.y1e2{bottom:536.226667pt;}
.y102{bottom:537.986667pt;}
.y25{bottom:540.066667pt;}
.y23f{bottom:542.946667pt;}
.ye1{bottom:543.266667pt;}
.y266{bottom:547.586667pt;}
.y21f{bottom:548.386667pt;}
.ya4{bottom:550.306667pt;}
.y193{bottom:550.786667pt;}
.y24{bottom:553.853333pt;}
.y101{bottom:555.613333pt;}
.y23e{bottom:560.573333pt;}
.ye0{bottom:560.893333pt;}
.y191{bottom:561.693333pt;}
.y23{bottom:563.293333pt;}
.y265{bottom:565.213333pt;}
.y21e{bottom:566.013333pt;}
.y134{bottom:567.773333pt;}
.ya3{bottom:567.933333pt;}
.y1e1{bottom:571.453333pt;}
.y40{bottom:571.933333pt;}
.y100{bottom:573.213333pt;}
.y22{bottom:576.573333pt;}
.y23d{bottom:578.333333pt;}
.ydf{bottom:578.493333pt;}
.y264{bottom:582.973333pt;}
.y21d{bottom:583.613333pt;}
.ya2{bottom:585.533333pt;}
.y18a{bottom:588.093333pt;}
.y1e0{bottom:589.053333pt;}
.yff{bottom:590.813333pt;}
.y21{bottom:592.413333pt;}
.y23c{bottom:595.933333pt;}
.yde{bottom:596.093333pt;}
.y18d{bottom:598.813333pt;}
.y263{bottom:600.573333pt;}
.y21c{bottom:601.373333pt;}
.ya1{bottom:603.293333pt;}
.y20{bottom:603.933333pt;}
.y1df{bottom:606.813333pt;}
.yfe{bottom:608.573333pt;}
.y18c{bottom:609.533333pt;}
.y23b{bottom:614.653333pt;}
.ydd{bottom:614.973333pt;}
.y1f{bottom:615.453333pt;}
.y133{bottom:616.893333pt;}
.y262{bottom:618.173333pt;}
.y21b{bottom:618.973333pt;}
.y15d{bottom:620.253333pt;}
.ya0{bottom:620.893333pt;}
.y1de{bottom:624.413333pt;}
.yfd{bottom:626.173333pt;}
.y1e{bottom:627.773333pt;}
.ydc{bottom:632.413333pt;}
.y185{bottom:635.773333pt;}
.y21a{bottom:636.573333pt;}
.y9f{bottom:638.493333pt;}
.y1d{bottom:641.053333pt;}
.y1dd{bottom:643.133333pt;}
.ydb{bottom:643.773333pt;}
.y184{bottom:646.493333pt;}
.y1c{bottom:650.973333pt;}
.y261{bottom:653.373333pt;}
.y132{bottom:653.693333pt;}
.y219{bottom:654.173333pt;}
.y9e{bottom:656.093333pt;}
.y183{bottom:657.213333pt;}
.y1dc{bottom:661.053333pt;}
.yda{bottom:661.373333pt;}
.y182{bottom:668.093333pt;}
.y260{bottom:671.133333pt;}
.y218{bottom:671.773333pt;}
.y1b{bottom:672.573333pt;}
.y9d{bottom:673.693333pt;}
.y131{bottom:678.173333pt;}
.y181{bottom:678.813333pt;}
.yd9{bottom:678.973333pt;}
.y25f{bottom:688.733333pt;}
.y180{bottom:689.533333pt;}
.y9c{bottom:691.453333pt;}
.y1a{bottom:694.493333pt;}
.yd8{bottom:696.733333pt;}
.y178{bottom:700.253333pt;}
.y25e{bottom:706.333333pt;}
.y217{bottom:707.133333pt;}
.y19{bottom:708.573333pt;}
.y9b{bottom:709.053333pt;}
.y17d{bottom:712.733333pt;}
.yd7{bottom:714.333333pt;}
.y12d{bottom:714.973333pt;}
.y18{bottom:722.653333pt;}
.y17c{bottom:723.453333pt;}
.y25d{bottom:723.933333pt;}
.y216{bottom:724.733333pt;}
.y9a{bottom:726.653333pt;}
.y1cd{bottom:727.773333pt;}
.yd6{bottom:731.933333pt;}
.yfc{bottom:733.053333pt;}
.y17b{bottom:734.173333pt;}
.y17{bottom:736.733333pt;}
.y25c{bottom:741.533333pt;}
.y215{bottom:742.333333pt;}
.y99{bottom:744.253333pt;}
.y17a{bottom:744.893333pt;}
.y16{bottom:746.173333pt;}
.y1cc{bottom:748.893333pt;}
.yfb{bottom:750.493333pt;}
.yd5{bottom:750.653333pt;}
.y12a{bottom:751.773333pt;}
.y16a{bottom:755.613333pt;}
.y15{bottom:758.853333pt;}
.y25b{bottom:759.333333pt;}
.y214{bottom:759.973333pt;}
.y98{bottom:761.893333pt;}
.y1cb{bottom:766.853333pt;}
.y176{bottom:767.653333pt;}
.yd4{bottom:768.133333pt;}
.y128{bottom:776.453333pt;}
.y25a{bottom:776.933333pt;}
.y213{bottom:777.733333pt;}
.y97{bottom:779.653333pt;}
.y14{bottom:780.613333pt;}
.y175{bottom:791.653333pt;}
.y259{bottom:794.533333pt;}
.y212{bottom:795.333333pt;}
.y96{bottom:797.253333pt;}
.y13{bottom:802.213333pt;}
.y124{bottom:803.013333pt;}
.y174{bottom:803.653333pt;}
.y258{bottom:812.133333pt;}
.y211{bottom:812.933333pt;}
.y23a{bottom:814.053333pt;}
.y173{bottom:814.373333pt;}
.y95{bottom:814.853333pt;}
.y12{bottom:821.093333pt;}
.y172{bottom:825.253333pt;}
.y257{bottom:829.733333pt;}
.y210{bottom:830.533333pt;}
.y94{bottom:832.453333pt;}
.y171{bottom:835.973333pt;}
.y11{bottom:842.053333pt;}
.y123{bottom:844.293333pt;}
.y170{bottom:846.693333pt;}
.y256{bottom:847.493333pt;}
.y20f{bottom:849.413333pt;}
.y93{bottom:850.053333pt;}
.y122{bottom:856.453333pt;}
.y16e{bottom:857.413333pt;}
.y255{bottom:863.493333pt;}
.y121{bottom:864.133333pt;}
.y92{bottom:867.813333pt;}
.y10{bottom:870.213333pt;}
.y16c{bottom:878.853333pt;}
.y120{bottom:881.893333pt;}
.y91{bottom:885.413333pt;}
.y163{bottom:896.293333pt;}
.y11f{bottom:899.493333pt;}
.y90{bottom:903.013333pt;}
.yf{bottom:911.013333pt;}
.y167{bottom:911.813333pt;}
.y11e{bottom:917.093333pt;}
.y8f{bottom:920.613333pt;}
.ye{bottom:923.653333pt;}
.y165{bottom:926.213333pt;}
.y77{bottom:932.960000pt;}
.y11d{bottom:934.693333pt;}
.yd{bottom:937.413333pt;}
.y8e{bottom:938.213333pt;}
.y159{bottom:941.893333pt;}
.yc{bottom:951.173333pt;}
.y11c{bottom:953.413333pt;}
.y8d{bottom:955.813333pt;}
.y158{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.ya{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.yd3{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y8a{bottom:997.920000pt;}
.h1f{height:3.612500pt;}
.h9{height:3.702500pt;}
.h61{height:5.562500pt;}
.h2e{height:7.867812pt;}
.h38{height:10.720000pt;}
.h56{height:10.752000pt;}
.h43{height:10.880000pt;}
.h4c{height:10.912000pt;}
.h5c{height:11.392000pt;}
.h5{height:12.000000pt;}
.h44{height:12.032000pt;}
.h46{height:12.480000pt;}
.h57{height:13.120000pt;}
.h5a{height:13.280000pt;}
.h3d{height:13.600000pt;}
.h52{height:13.760000pt;}
.h3e{height:14.400000pt;}
.h54{height:14.880000pt;}
.h1d{height:15.272812pt;}
.h36{height:15.303750pt;}
.h3f{height:15.520000pt;}
.h4f{height:16.160000pt;}
.h41{height:17.440000pt;}
.h23{height:18.965625pt;}
.h4d{height:19.040000pt;}
.h12{height:19.438125pt;}
.h2c{height:19.477500pt;}
.h25{height:19.840000pt;}
.h42{height:21.440000pt;}
.h1b{height:22.578125pt;}
.h5d{height:23.187500pt;}
.h1a{height:23.239214pt;}
.h30{height:24.480000pt;}
.h34{height:24.512000pt;}
.h33{height:24.640000pt;}
.h31{height:24.672000pt;}
.h53{height:25.600000pt;}
.h35{height:25.773750pt;}
.h39{height:26.190625pt;}
.h4b{height:26.400000pt;}
.h8{height:26.843125pt;}
.h15{height:27.523125pt;}
.h17{height:29.157187pt;}
.h21{height:29.216250pt;}
.h11{height:29.281875pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h27{height:30.595000pt;}
.h19{height:31.008437pt;}
.hd{height:31.217812pt;}
.h49{height:32.160000pt;}
.h3{height:32.859687pt;}
.h1c{height:34.710938pt;}
.hc{height:34.945312pt;}
.h2f{height:36.640000pt;}
.h32{height:36.800000pt;}
.hf{height:37.479688pt;}
.h6{height:38.413438pt;}
.h37{height:38.491250pt;}
.h5e{height:38.877839pt;}
.h18{height:40.882500pt;}
.h5f{height:42.578750pt;}
.hb{height:42.866250pt;}
.h3c{height:43.520000pt;}
.h2a{height:43.782500pt;}
.h14{height:45.156250pt;}
.h60{height:46.281250pt;}
.h2b{height:46.375000pt;}
.h28{height:47.109375pt;}
.h10{height:47.963125pt;}
.h4e{height:48.320000pt;}
.h16{height:49.148438pt;}
.h2{height:52.832812pt;}
.h5b{height:54.272000pt;}
.h45{height:55.360000pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h13{height:60.288750pt;}
.ha{height:60.800000pt;}
.h2d{height:61.816310pt;}
.h20{height:64.800000pt;}
.h29{height:66.750000pt;}
.h4a{height:67.072000pt;}
.h59{height:69.440000pt;}
.h51{height:78.240000pt;}
.h47{height:80.000000pt;}
.h55{height:120.512000pt;}
.h58{height:123.712000pt;}
.h26{height:132.832000pt;}
.h40{height:140.666667pt;}
.h48{height:147.546667pt;}
.h24{height:156.346667pt;}
.h50{height:224.346667pt;}
.h3b{height:319.546667pt;}
.h22{height:394.626667pt;}
.h3a{height:815.173333pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wc{width:30.080000pt;}
.we{width:32.192000pt;}
.wf{width:48.800000pt;}
.w4{width:72.960000pt;}
.wd{width:76.160000pt;}
.w16{width:79.392000pt;}
.w10{width:81.472000pt;}
.w14{width:87.872000pt;}
.w12{width:88.512000pt;}
.w13{width:89.600000pt;}
.w6{width:89.920000pt;}
.w15{width:94.400000pt;}
.w11{width:98.240000pt;}
.w17{width:120.032000pt;}
.w7{width:137.306667pt;}
.w9{width:162.266667pt;}
.wb{width:166.426667pt;}
.w18{width:346.786667pt;}
.w8{width:473.693333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:3.780000pt;}
.x8{left:7.200000pt;}
.x41{left:8.160000pt;}
.x18{left:9.600000pt;}
.x34{left:10.920000pt;}
.x37{left:11.834667pt;}
.x30{left:12.960000pt;}
.x3e{left:13.920000pt;}
.x2e{left:15.200000pt;}
.x29{left:16.320000pt;}
.x36{left:17.274667pt;}
.x1d{left:18.893333pt;}
.x25{left:20.794667pt;}
.x32{left:22.560000pt;}
.x2c{left:23.840000pt;}
.x2a{left:24.960000pt;}
.x28{left:27.360000pt;}
.x2d{left:28.320000pt;}
.x10{left:29.919988pt;}
.x3f{left:32.000000pt;}
.x35{left:35.520000pt;}
.x38{left:38.240000pt;}
.x3d{left:39.720000pt;}
.xa{left:44.960000pt;}
.x40{left:47.680000pt;}
.x3c{left:50.394667pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x1a{left:71.520000pt;}
.x5{left:77.914667pt;}
.x17{left:83.072000pt;}
.x1c{left:84.352000pt;}
.x4{left:96.032000pt;}
.x23{left:100.192000pt;}
.xb{left:103.231988pt;}
.x24{left:130.272000pt;}
.x3b{left:149.000000pt;}
.xd{left:154.426655pt;}
.x7{left:168.986667pt;}
.x14{left:181.466655pt;}
.x11{left:191.226655pt;}
.x44{left:197.946655pt;}
.x45{left:201.786655pt;}
.x26{left:206.426667pt;}
.x1{left:213.306655pt;}
.x12{left:218.946655pt;}
.x13{left:239.426655pt;}
.xe{left:242.146655pt;}
.x19{left:269.026667pt;}
.x39{left:270.146667pt;}
.x1b{left:275.906667pt;}
.x27{left:287.426667pt;}
.xf{left:291.586655pt;}
.xc{left:312.706655pt;}
.x3{left:325.666655pt;}
.x2{left:357.026655pt;}
.x2b{left:368.893333pt;}
.x3a{left:390.173333pt;}
.x21{left:416.573322pt;}
.x15{left:434.813322pt;}
.x16{left:436.253322pt;}
.x2f{left:467.133333pt;}
.x22{left:543.013322pt;}
.x1e{left:551.336000pt;}
.x31{left:555.653333pt;}
.x42{left:615.173322pt;}
.x43{left:621.893322pt;}
.x33{left:645.253333pt;}
.x20{left:710.399988pt;}
.x1f{left:722.559988pt;}
}




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