
    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_2e8203e2efa278056c5f0e05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_27672a0a1134d10646710b74.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c245571d5da1327287145ab7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_99134376f84345b9a154f785.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_740e4d244c350396c0812483.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ad76b0148a0a4a8d12f9246c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_e9797d3df1d53e28824348c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf6a7be6ea93ae166d1b2da2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_4175bee7ad2de37b35f35437.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_bf94434d6496adb1a875a1ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fd2febc27c08588e8d1481b7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7be2217351f847e0c3188058.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.142578;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_7f80deadaf105b7afb01a95c.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_032e14743f3e80d81fc1e6a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.435059;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.139094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139094,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-74.880000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.900000px;}
.v9{vertical-align:20.580000px;}
.v6{vertical-align:21.675187px;}
.v2{vertical-align:23.760000px;}
.v7{vertical-align:48.230879px;}
.v4{vertical-align:54.833916px;}
.v5{vertical-align:81.389609px;}
.ls6{letter-spacing:-2.700000px;}
.ls16{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.306000px;}
.ls4{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.070560px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.214560px;}
.ls5{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.720000px;}
.lse{letter-spacing:0.781168px;}
.lsa{letter-spacing:1.065960px;}
.lsb{letter-spacing:2.642363px;}
.lsf{letter-spacing:3.804498px;}
.lsc{letter-spacing:3.987086px;}
.lsd{letter-spacing:11.812977px;}
.ls1a{letter-spacing:13.860000px;}
.ls1b{letter-spacing:25.308000px;}
.ls8{letter-spacing:43.866720px;}
.ls19{letter-spacing:52.668000px;}
.ls0{letter-spacing:140.580000px;}
.ls10{letter-spacing:166.909848px;}
.ls13{letter-spacing:384.816000px;}
.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;}
}
.ws8{word-spacing:-56.017726px;}
.ws11{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.ws4{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.672000px;}
.wse{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.186000px;}
.ws3{word-spacing:-9.000000px;}
.ws7{word-spacing:-4.008474px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:62.790000px;}
.wsb{word-spacing:63.912000px;}
.wsd{word-spacing:107.472000px;}
.wsc{word-spacing:109.740000px;}
._21{margin-left:-5.076000px;}
._8{margin-left:-3.451680px;}
._9{margin-left:-2.382000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.887440px;}
._d{width:3.942000px;}
._c{width:5.130000px;}
._12{width:6.912000px;}
._6{width:8.863680px;}
._5{width:10.210320px;}
._f{width:12.096000px;}
._e{width:14.580000px;}
._11{width:16.200000px;}
._10{width:17.644320px;}
._1d{width:18.661680px;}
._b{width:20.196000px;}
._a{width:21.874320px;}
._1c{width:22.896000px;}
._1f{width:24.030000px;}
._1e{width:25.056000px;}
._15{width:26.406000px;}
._19{width:28.341360px;}
._18{width:29.646000px;}
._16{width:31.644000px;}
._13{width:33.273360px;}
._14{width:34.553520px;}
._20{width:35.748000px;}
._1b{width:37.579680px;}
._1a{width:38.610000px;}
._28{width:39.739680px;}
._26{width:41.364000px;}
._2f{width:43.524000px;}
._2e{width:44.568000px;}
._27{width:45.684000px;}
._17{width:47.250000px;}
._2d{width:48.438000px;}
._2a{width:50.328000px;}
._29{width:53.248320px;}
._36{width:54.810000px;}
._2c{width:56.160000px;}
._2b{width:57.348000px;}
._34{width:59.264400px;}
._30{width:61.020000px;}
._31{width:62.188320px;}
._7{width:64.746000px;}
._38{width:68.418000px;}
._37{width:69.498000px;}
._39{width:71.112000px;}
._33{width:79.434000px;}
._32{width:80.784000px;}
._25{width:136.794000px;}
._24{width:184.062000px;}
._23{width:223.290000px;}
._4{width:247.463040px;}
._22{width:275.280000px;}
._35{width:301.374000px;}
._3{width:1431.888000px;}
.fcc{color:rgb(38,74,96);}
.fc8{color:rgb(79,129,189);}
.fc7{color:rgb(31,73,125);}
.fc6{color:transparent;}
.fc5{color:rgb(0,31,95);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fcb{color:rgb(1,2,5);}
.fca{color:rgb(64,64,64);}
.fc9{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:51.101765px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:66.384000px;}
.fs9{font-size:71.915686px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.y0{bottom:0.000000px;}
.y1a3{bottom:5.220000px;}
.y2b{bottom:5.580000px;}
.y2e{bottom:5.760000px;}
.y1a9{bottom:10.080000px;}
.yb4{bottom:15.467099px;}
.y164{bottom:16.560000px;}
.y169{bottom:16.725000px;}
.y168{bottom:16.770000px;}
.y16f{bottom:16.905000px;}
.y17d{bottom:16.920000px;}
.y17a{bottom:17.640000px;}
.y174{bottom:17.805000px;}
.y148{bottom:18.105000px;}
.y170{bottom:18.525000px;}
.y17b{bottom:18.540000px;}
.y138{bottom:22.680000px;}
.y144{bottom:22.710000px;}
.y2a{bottom:23.580000px;}
.yb3{bottom:27.524819px;}
.y2d{bottom:41.400000px;}
.y136{bottom:45.105000px;}
.y142{bottom:45.150000px;}
.y166{bottom:46.650000px;}
.y16d{bottom:48.405000px;}
.y178{bottom:49.140000px;}
.y172{bottom:49.305000px;}
.y176{bottom:50.025000px;}
.y29{bottom:50.400000px;}
.y53{bottom:58.500000px;}
.y12f{bottom:62.640000px;}
.y13b{bottom:62.715000px;}
.y129{bottom:67.830000px;}
.y28{bottom:68.220000px;}
.y52{bottom:76.860000px;}
.y4{bottom:77.220000px;}
.y27{bottom:86.040000px;}
.y220{bottom:93.780000px;}
.y130{bottom:97.125000px;}
.y24d{bottom:99.720000px;}
.y128{bottom:99.750000px;}
.y80{bottom:100.260000px;}
.y43{bottom:100.800000px;}
.y12d{bottom:101.055000px;}
.yb1{bottom:102.240000px;}
.y26{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.y13c{bottom:105.660000px;}
.y1e9{bottom:107.100000px;}
.y21f{bottom:111.600000px;}
.y24c{bottom:117.540000px;}
.y17c{bottom:117.900000px;}
.y7f{bottom:118.080000px;}
.y42{bottom:118.620000px;}
.yb0{bottom:120.240000px;}
.y291{bottom:120.960000px;}
.y25{bottom:121.710000px;}
.y203{bottom:122.040000px;}
.y1e8{bottom:124.920000px;}
.y21e{bottom:129.420000px;}
.y131{bottom:131.655000px;}
.y7e{bottom:135.900000px;}
.y41{bottom:136.440000px;}
.y137{bottom:137.985000px;}
.y290{bottom:138.780000px;}
.y24{bottom:139.710000px;}
.y202{bottom:139.860000px;}
.y146{bottom:141.225000px;}
.y24b{bottom:145.260000px;}
.y4f{bottom:145.440000px;}
.yaf{bottom:146.700000px;}
.y21d{bottom:147.240000px;}
.y16a{bottom:147.780000px;}
.y13d{bottom:148.650000px;}
.y1e7{bottom:151.740000px;}
.y127{bottom:152.820000px;}
.y40{bottom:154.260000px;}
.y28f{bottom:156.600000px;}
.y1a{bottom:157.170000px;}
.y201{bottom:157.680000px;}
.y7d{bottom:162.540000px;}
.y4e{bottom:163.260000px;}
.y143{bottom:163.440000px;}
.y21c{bottom:165.060000px;}
.y132{bottom:166.140000px;}
.y23{bottom:166.530000px;}
.y1e6{bottom:169.560000px;}
.y3f{bottom:172.080000px;}
.y24a{bottom:172.980000px;}
.yae{bottom:173.880000px;}
.y28e{bottom:174.420000px;}
.y200{bottom:175.500000px;}
.y179{bottom:179.280000px;}
.y4d{bottom:181.080000px;}
.y21b{bottom:183.060000px;}
.y19{bottom:183.990000px;}
.y22{bottom:184.350000px;}
.y1e5{bottom:187.380000px;}
.y7c{bottom:189.720000px;}
.y3e{bottom:190.080000px;}
.y249{bottom:190.980000px;}
.y13e{bottom:191.595000px;}
.yad{bottom:191.700000px;}
.y145{bottom:191.880000px;}
.y28d{bottom:192.240000px;}
.y1ff{bottom:193.320000px;}
.y4c{bottom:199.080000px;}
.y133{bottom:200.625000px;}
.y21a{bottom:200.880000px;}
.y21{bottom:202.170000px;}
.y1e4{bottom:205.380000px;}
.y7b{bottom:207.570000px;}
.yac{bottom:209.550000px;}
.y126{bottom:209.805000px;}
.y175{bottom:209.925000px;}
.y28c{bottom:210.270000px;}
.y18{bottom:210.990000px;}
.y1fe{bottom:211.350000px;}
.y3d{bottom:216.930000px;}
.y248{bottom:218.370000px;}
.y219{bottom:218.730000px;}
.y20{bottom:219.990000px;}
.y1e3{bottom:223.230000px;}
.yab{bottom:227.550000px;}
.y28b{bottom:228.090000px;}
.y1fd{bottom:229.170000px;}
.y7a{bottom:234.390000px;}
.y13f{bottom:234.570000px;}
.y3c{bottom:234.750000px;}
.y134{bottom:235.110000px;}
.y16b{bottom:235.830000px;}
.y247{bottom:236.190000px;}
.y218{bottom:236.550000px;}
.y17{bottom:237.450000px;}
.y1f{bottom:237.990000px;}
.y1e2{bottom:241.050000px;}
.y177{bottom:241.425000px;}
.y1c6{bottom:241.950000px;}
.yaa{bottom:245.370000px;}
.y28a{bottom:245.910000px;}
.y1fc{bottom:246.990000px;}
.y3b{bottom:252.570000px;}
.y217{bottom:254.370000px;}
.y12e{bottom:254.550000px;}
.y1e{bottom:255.810000px;}
.y1e1{bottom:258.870000px;}
.y11f{bottom:259.050000px;}
.y12b{bottom:259.380000px;}
.y79{bottom:262.110000px;}
.ya9{bottom:263.190000px;}
.y246{bottom:263.370000px;}
.y289{bottom:263.730000px;}
.y16{bottom:264.630000px;}
.y1b8{bottom:264.810000px;}
.y135{bottom:269.610000px;}
.y3a{bottom:270.390000px;}
.y216{bottom:272.190000px;}
.y171{bottom:272.925000px;}
.y105{bottom:273.090000px;}
.y1c5{bottom:273.630000px;}
.y1e0{bottom:276.690000px;}
.y140{bottom:277.530000px;}
.ya8{bottom:281.010000px;}
.y245{bottom:281.190000px;}
.y288{bottom:281.550000px;}
.y11e{bottom:282.090000px;}
.y1d{bottom:282.630000px;}
.y39{bottom:288.210000px;}
.y78{bottom:289.830000px;}
.y215{bottom:290.190000px;}
.y104{bottom:290.910000px;}
.y15{bottom:291.450000px;}
.y12a{bottom:292.755000px;}
.y139{bottom:297.255000px;}
.y287{bottom:299.550000px;}
.y11d{bottom:300.090000px;}
.y1c{bottom:300.450000px;}
.y1fb{bottom:300.630000px;}
.y1df{bottom:303.510000px;}
.y173{bottom:304.425000px;}
.y38{bottom:306.210000px;}
.ya7{bottom:307.470000px;}
.y214{bottom:308.010000px;}
.y103{bottom:308.730000px;}
.y244{bottom:308.910000px;}
.y1c4{bottom:309.270000px;}
.y286{bottom:317.370000px;}
.y77{bottom:317.550000px;}
.y11c{bottom:317.910000px;}
.y14{bottom:318.270000px;}
.y141{bottom:320.505000px;}
.y1de{bottom:321.510000px;}
.y37{bottom:324.030000px;}
.y102{bottom:326.550000px;}
.y243{bottom:326.730000px;}
.y1c3{bottom:327.270000px;}
.y1fa{bottom:327.450000px;}
.yb2{bottom:330.020778px;}
.y4b{bottom:333.030000px;}
.ya6{bottom:334.650000px;}
.y213{bottom:334.830000px;}
.y270{bottom:335.190000px;}
.y16c{bottom:335.205000px;}
.y11b{bottom:335.730000px;}
.y13{bottom:336.090000px;}
.y1b7{bottom:336.270000px;}
.y1dd{bottom:339.330000px;}
.y36{bottom:341.850000px;}
.y101{bottom:344.370000px;}
.y1c2{bottom:345.090000px;}
.y1f9{bottom:345.270000px;}
.y4a{bottom:350.850000px;}
.ya5{bottom:352.650000px;}
.y26f{bottom:353.010000px;}
.y11a{bottom:353.550000px;}
.y1b6{bottom:354.090000px;}
.y12{bottom:354.135000px;}
.y242{bottom:354.630000px;}
.y1dc{bottom:357.150000px;}
.y35{bottom:359.670000px;}
.y100{bottom:362.190000px;}
.y1c1{bottom:362.910000px;}
.y1f8{bottom:363.090000px;}
.y285{bottom:364.530000px;}
.y16e{bottom:366.705000px;}
.y49{bottom:368.670000px;}
.y212{bottom:370.470000px;}
.y26e{bottom:370.830000px;}
.y119{bottom:371.370000px;}
.y1b5{bottom:371.910000px;}
.y1b{bottom:371.955000px;}
.y241{bottom:372.450000px;}
.y1db{bottom:374.970000px;}
.y34{bottom:377.490000px;}
.yff{bottom:380.190000px;}
.ya4{bottom:380.370000px;}
.y11{bottom:380.595000px;}
.y1c0{bottom:380.730000px;}
.y1f7{bottom:380.910000px;}
.y284{bottom:382.350000px;}
.y48{bottom:386.490000px;}
.y211{bottom:388.470000px;}
.y26d{bottom:388.650000px;}
.y118{bottom:389.190000px;}
.y1b4{bottom:389.730000px;}
.y1da{bottom:392.790000px;}
.y33{bottom:395.490000px;}
.y165{bottom:396.585000px;}
.yfe{bottom:398.010000px;}
.ya3{bottom:398.190000px;}
.y10{bottom:398.415000px;}
.y1f6{bottom:398.730000px;}
.y240{bottom:399.810000px;}
.y283{bottom:400.350000px;}
.y76{bottom:403.050000px;}
.y47{bottom:404.490000px;}
.y210{bottom:406.290000px;}
.y26c{bottom:406.650000px;}
.y117{bottom:407.190000px;}
.y1b3{bottom:407.550000px;}
.y1d9{bottom:410.790000px;}
.y124{bottom:412.230000px;}
.y32{bottom:413.310000px;}
.y1f5{bottom:416.730000px;}
.y23f{bottom:417.630000px;}
.y282{bottom:418.170000px;}
.y75{bottom:420.870000px;}
.y46{bottom:422.310000px;}
.y20f{bottom:424.110000px;}
.yfd{bottom:424.470000px;}
.y116{bottom:425.010000px;}
.y1b2{bottom:425.550000px;}
.ya2{bottom:425.910000px;}
.y167{bottom:426.465000px;}
.y1d8{bottom:428.610000px;}
.y31{bottom:431.130000px;}
.y1f4{bottom:434.550000px;}
.y281{bottom:435.990000px;}
.y123{bottom:439.050000px;}
.y45{bottom:440.130000px;}
.y20e{bottom:441.975000px;}
.y26b{bottom:442.335000px;}
.y1bf{bottom:443.415000px;}
.ya1{bottom:443.775000px;}
.y23e{bottom:444.495000px;}
.y74{bottom:447.375000px;}
.y30{bottom:448.995000px;}
.y115{bottom:451.515000px;}
.yfc{bottom:451.695000px;}
.y1b1{bottom:452.415000px;}
.y280{bottom:453.855000px;}
.y1d7{bottom:455.475000px;}
.y163{bottom:456.195000px;}
.y44{bottom:457.995000px;}
.y20d{bottom:459.795000px;}
.y26a{bottom:460.155000px;}
.y1be{bottom:461.235000px;}
.y122{bottom:463.755000px;}
.y12c{bottom:465.480000px;}
.y114{bottom:469.335000px;}
.yfb{bottom:469.515000px;}
.y1b0{bottom:470.235000px;}
.ya0{bottom:471.495000px;}
.y23d{bottom:471.675000px;}
.y1d6{bottom:473.295000px;}
.y73{bottom:474.555000px;}
.y2f{bottom:477.255000px;}
.y20c{bottom:477.615000px;}
.y269{bottom:477.975000px;}
.y1bd{bottom:479.055000px;}
.yfa{bottom:487.515000px;}
.y1af{bottom:488.055000px;}
.y9f{bottom:489.315000px;}
.y23c{bottom:489.675000px;}
.y1d5{bottom:491.115000px;}
.y268{bottom:495.975000px;}
.y113{bottom:496.515000px;}
.y1bc{bottom:496.875000px;}
.y162{bottom:499.575000px;}
.y72{bottom:502.275000px;}
.y2c{bottom:503.715000px;}
.y20b{bottom:504.615000px;}
.yf9{bottom:505.335000px;}
.y1ae{bottom:505.875000px;}
.y23b{bottom:507.495000px;}
.y1d4{bottom:508.935000px;}
.y267{bottom:513.795000px;}
.y112{bottom:514.515000px;}
.y1bb{bottom:514.695000px;}
.y9e{bottom:517.035000px;}
.y159{bottom:520.095000px;}
.y20a{bottom:522.435000px;}
.yf8{bottom:523.155000px;}
.y1ad{bottom:523.695000px;}
.y1f3{bottom:523.875000px;}
.y23a{bottom:525.315000px;}
.y1d3{bottom:526.935000px;}
.y71{bottom:529.995000px;}
.yeb{bottom:530.715000px;}
.y266{bottom:531.615000px;}
.y111{bottom:532.335000px;}
.y1ba{bottom:532.695000px;}
.y158{bottom:538.095000px;}
.y209{bottom:540.255000px;}
.yf7{bottom:540.975000px;}
.y1ac{bottom:541.695000px;}
.y239{bottom:543.135000px;}
.y9d{bottom:543.675000px;}
.y1d2{bottom:544.755000px;}
.y265{bottom:549.435000px;}
.y110{bottom:550.155000px;}
.y1b9{bottom:550.515000px;}
.ycc{bottom:551.955000px;}
.y1f2{bottom:552.135000px;}
.y157{bottom:555.915000px;}
.y70{bottom:557.355000px;}
.y208{bottom:558.075000px;}
.yf6{bottom:558.795000px;}
.y1ab{bottom:559.515000px;}
.y238{bottom:560.955000px;}
.y1d1{bottom:562.575000px;}
.yf{bottom:567.075000px;}
.y264{bottom:567.255000px;}
.y10f{bottom:567.975000px;}
.ycb{bottom:569.775000px;}
.y9c{bottom:570.855000px;}
.y156{bottom:573.735000px;}
.y207{bottom:575.895000px;}
.yf5{bottom:576.615000px;}
.y161{bottom:576.795000px;}
.y27f{bottom:578.775000px;}
.y1d0{bottom:580.395000px;}
.y6f{bottom:584.535000px;}
.y1f1{bottom:584.895000px;}
.y263{bottom:585.075000px;}
.y10e{bottom:585.795000px;}
.y1aa{bottom:585.975000px;}
.yca{bottom:587.775000px;}
.y9b{bottom:588.675000px;}
.y155{bottom:591.555000px;}
.yea{bottom:593.895000px;}
.yf4{bottom:594.615000px;}
.y27e{bottom:596.775000px;}
.y262{bottom:603.075000px;}
.y10d{bottom:603.615000px;}
.yc9{bottom:605.595000px;}
.y237{bottom:605.775000px;}
.y9a{bottom:606.495000px;}
.y1cf{bottom:607.215000px;}
.y1a8{bottom:607.575000px;}
.ye9{bottom:611.715000px;}
.y6e{bottom:612.255000px;}
.yf3{bottom:612.435000px;}
.y27d{bottom:614.595000px;}
.y1f0{bottom:616.215000px;}
.y154{bottom:618.375000px;}
.y10c{bottom:621.615000px;}
.y236{bottom:623.595000px;}
.y99{bottom:624.315000px;}
.y1ce{bottom:625.215000px;}
.ye8{bottom:629.535000px;}
.yf2{bottom:630.255000px;}
.yc8{bottom:632.415000px;}
.y1ef{bottom:634.215000px;}
.y153{bottom:636.375000px;}
.y10b{bottom:639.435000px;}
.y1a7{bottom:639.615000px;}
.y6d{bottom:640.155000px;}
.y235{bottom:641.415000px;}
.y98{bottom:642.315000px;}
.y1cd{bottom:643.035000px;}
.ye7{bottom:647.355000px;}
.y160{bottom:648.075000px;}
.yc7{bottom:650.235000px;}
.y1ee{bottom:652.035000px;}
.y152{bottom:654.195000px;}
.y2a2{bottom:656.535000px;}
.yf1{bottom:656.715000px;}
.y10a{bottom:657.255000px;}
.y6c{bottom:657.975000px;}
.y234{bottom:659.235000px;}
.y97{bottom:660.135000px;}
.y1cc{bottom:660.855000px;}
.ye6{bottom:665.175000px;}
.y15f{bottom:666.075000px;}
.y1a6{bottom:667.335000px;}
.yc6{bottom:668.055000px;}
.y1ed{bottom:669.855000px;}
.y151{bottom:672.015000px;}
.y2a1{bottom:674.355000px;}
.y261{bottom:674.535000px;}
.y109{bottom:675.075000px;}
.y233{bottom:677.085000px;}
.y1cb{bottom:678.705000px;}
.ye5{bottom:683.025000px;}
.yf0{bottom:683.565000px;}
.y6b{bottom:685.365000px;}
.yc5{bottom:686.085000px;}
.y96{bottom:686.625000px;}
.y1ec{bottom:687.705000px;}
.y150{bottom:689.865000px;}
.y2a0{bottom:692.205000px;}
.y15e{bottom:692.925000px;}
.y1a5{bottom:694.905000px;}
.y232{bottom:695.085000px;}
.y1ca{bottom:696.525000px;}
.ye4{bottom:701.025000px;}
.y108{bottom:701.565000px;}
.y260{bottom:702.285000px;}
.yc4{bottom:703.905000px;}
.y1eb{bottom:705.525000px;}
.y14f{bottom:707.685000px;}
.y29f{bottom:710.025000px;}
.yef{bottom:710.565000px;}
.y15d{bottom:710.745000px;}
.y6a{bottom:712.545000px;}
.y231{bottom:712.905000px;}
.y95{bottom:713.805000px;}
.y1c9{bottom:714.345000px;}
.ye3{bottom:718.845000px;}
.y25f{bottom:720.105000px;}
.yc3{bottom:721.725000px;}
.y1a4{bottom:722.445000px;}
.y1ea{bottom:723.345000px;}
.y14e{bottom:725.505000px;}
.y29e{bottom:728.025000px;}
.y15c{bottom:728.565000px;}
.y107{bottom:728.925000px;}
.y69{bottom:730.365000px;}
.y230{bottom:730.725000px;}
.y94{bottom:731.625000px;}
.ye2{bottom:736.665000px;}
.yee{bottom:737.385000px;}
.yc2{bottom:739.545000px;}
.y1c8{bottom:740.985000px;}
.y14d{bottom:743.505000px;}
.y29d{bottom:745.845000px;}
.y15b{bottom:746.385000px;}
.y106{bottom:746.745000px;}
.y25e{bottom:747.825000px;}
.y68{bottom:748.185000px;}
.y93{bottom:749.445000px;}
.ye1{bottom:754.485000px;}
.yc1{bottom:757.365000px;}
.y22f{bottom:757.545000px;}
.y14c{bottom:761.325000px;}
.y206{bottom:763.485000px;}
.y29c{bottom:763.665000px;}
.yed{bottom:764.205000px;}
.y1c7{bottom:765.645000px;}
.y25d{bottom:765.825000px;}
.y67{bottom:766.185000px;}
.y1a2{bottom:770.145000px;}
.yc0{bottom:775.185000px;}
.y22e{bottom:775.365000px;}
.y92{bottom:776.085000px;}
.y14b{bottom:779.325000px;}
.ye0{bottom:781.305000px;}
.y29b{bottom:781.485000px;}
.y15a{bottom:782.205000px;}
.yec{bottom:788.325000px;}
.y147{bottom:791.460000px;}
.y66{bottom:792.645000px;}
.ybf{bottom:793.185000px;}
.ydf{bottom:799.305000px;}
.y14a{bottom:799.665000px;}
.y190{bottom:802.545000px;}
.y91{bottom:803.265000px;}
.y121{bottom:808.845000px;}
.ybe{bottom:811.005000px;}
.y22d{bottom:811.185000px;}
.yde{bottom:817.125000px;}
.y29a{bottom:817.305000px;}
.y65{bottom:819.825000px;}
.y18f{bottom:820.365000px;}
.y1a1{bottom:820.545000px;}
.y90{bottom:821.085000px;}
.y149{bottom:824.325000px;}
.ybd{bottom:828.825000px;}
.y22c{bottom:829.005000px;}
.y13a{bottom:830.160000px;}
.y120{bottom:833.505000px;}
.ydd{bottom:834.945000px;}
.y299{bottom:835.125000px;}
.y125{bottom:835.740000px;}
.y64{bottom:837.645000px;}
.y25c{bottom:838.185000px;}
.y1a0{bottom:838.365000px;}
.y8f{bottom:838.905000px;}
.y27c{bottom:846.645000px;}
.y22b{bottom:846.825000px;}
.y18e{bottom:847.185000px;}
.ydc{bottom:852.765000px;}
.y298{bottom:852.945000px;}
.y63{bottom:855.465000px;}
.ybc{bottom:855.645000px;}
.y25b{bottom:856.005000px;}
.y19f{bottom:856.185000px;}
.y8e{bottom:856.725000px;}
.y22a{bottom:864.645000px;}
.y18d{bottom:865.005000px;}
.ydb{bottom:870.585000px;}
.y297{bottom:870.765000px;}
.y62{bottom:873.465000px;}
.y25a{bottom:873.825000px;}
.y19e{bottom:874.005000px;}
.y8d{bottom:874.545000px;}
.y27b{bottom:874.905000px;}
.y229{bottom:882.465000px;}
.y18c{bottom:883.005000px;}
.yda{bottom:888.405000px;}
.y296{bottom:888.585000px;}
.y61{bottom:891.285000px;}
.ybb{bottom:891.465000px;}
.y259{bottom:891.645000px;}
.y19d{bottom:892.005000px;}
.y8c{bottom:892.545000px;}
.y228{bottom:900.465000px;}
.y18b{bottom:900.825000px;}
.yd9{bottom:906.405000px;}
.yba{bottom:909.285000px;}
.y19c{bottom:909.825000px;}
.y60{bottom:917.790000px;}
.y227{bottom:918.330000px;}
.y18a{bottom:918.690000px;}
.y8b{bottom:919.050000px;}
.y258{bottom:919.590000px;}
.yd8{bottom:924.270000px;}
.y295{bottom:924.450000px;}
.yb9{bottom:927.150000px;}
.y19b{bottom:927.690000px;}
.y27a{bottom:932.910000px;}
.y226{bottom:936.150000px;}
.y189{bottom:936.510000px;}
.y257{bottom:937.410000px;}
.yd7{bottom:942.090000px;}
.y294{bottom:942.270000px;}
.y5f{bottom:944.970000px;}
.y19a{bottom:945.510000px;}
.y8a{bottom:946.230000px;}
.y188{bottom:954.330000px;}
.y279{bottom:959.730000px;}
.yd6{bottom:959.910000px;}
.y293{bottom:960.090000px;}
.y5e{bottom:962.790000px;}
.y199{bottom:963.330000px;}
.y225{bottom:964.410000px;}
.y256{bottom:965.130000px;}
.y205{bottom:968.910000px;}
.y187{bottom:972.330000px;}
.y89{bottom:973.950000px;}
.y278{bottom:977.550000px;}
.yd5{bottom:977.730000px;}
.y292{bottom:977.910000px;}
.y5d{bottom:980.610000px;}
.y204{bottom:986.730000px;}
.y198{bottom:990.330000px;}
.y255{bottom:992.490000px;}
.y277{bottom:995.370000px;}
.y224{bottom:995.730000px;}
.y5c{bottom:998.610000px;}
.y186{bottom:999.150000px;}
.ye{bottom:999.330000px;}
.y88{bottom:1001.670000px;}
.yd4{bottom:1004.550000px;}
.yb8{bottom:1007.250000px;}
.y197{bottom:1008.150000px;}
.y276{bottom:1013.190000px;}
.y223{bottom:1013.550000px;}
.y5b{bottom:1016.430000px;}
.y185{bottom:1016.970000px;}
.y254{bottom:1019.670000px;}
.yd3{bottom:1022.550000px;}
.y196{bottom:1025.970000px;}
.yd{bottom:1026.150000px;}
.y87{bottom:1029.390000px;}
.y275{bottom:1031.190000px;}
.y222{bottom:1031.550000px;}
.y184{bottom:1034.790000px;}
.yb7{bottom:1035.870000px;}
.y253{bottom:1037.490000px;}
.yd2{bottom:1040.370000px;}
.y5a{bottom:1042.890000px;}
.y195{bottom:1043.790000px;}
.yc{bottom:1046.850000px;}
.y86{bottom:1047.210000px;}
.y274{bottom:1049.010000px;}
.y221{bottom:1049.370000px;}
.y183{bottom:1052.610000px;}
.yd1{bottom:1058.190000px;}
.y194{bottom:1061.610000px;}
.y252{bottom:1065.210000px;}
.y273{bottom:1066.830000px;}
.yb6{bottom:1067.190000px;}
.y182{bottom:1070.430000px;}
.y59{bottom:1071.510000px;}
.y85{bottom:1075.110000px;}
.yd0{bottom:1076.010000px;}
.yb{bottom:1076.730000px;}
.y193{bottom:1079.430000px;}
.y251{bottom:1083.210000px;}
.y272{bottom:1084.650000px;}
.yb5{bottom:1085.010000px;}
.y181{bottom:1088.430000px;}
.y84{bottom:1092.930000px;}
.ycf{bottom:1093.830000px;}
.y192{bottom:1097.430000px;}
.y271{bottom:1102.470000px;}
.y58{bottom:1102.830000px;}
.ya{bottom:1104.450000px;}
.y180{bottom:1106.250000px;}
.y250{bottom:1110.930000px;}
.yce{bottom:1111.830000px;}
.y5{bottom:1112.940000px;}
.y191{bottom:1115.250000px;}
.y83{bottom:1120.290000px;}
.y57{bottom:1120.830000px;}
.ycd{bottom:1129.650000px;}
.y9{bottom:1132.350000px;}
.y17f{bottom:1132.710000px;}
.y24f{bottom:1138.290000px;}
.y56{bottom:1138.650000px;}
.y82{bottom:1147.140000px;}
.y17e{bottom:1155.060000px;}
.y24e{bottom:1156.140000px;}
.y55{bottom:1156.500000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y81{bottom:1173.960000px;}
.y54{bottom:1174.320000px;}
.y2{bottom:1181.520000px;}
.y51{bottom:1187.640000px;}
.y7{bottom:1191.240000px;}
.y50{bottom:1195.200000px;}
.y1{bottom:1196.820000px;}
.hf{height:15.169922px;}
.h36{height:26.805000px;}
.h32{height:26.820000px;}
.h35{height:26.850000px;}
.h26{height:28.965000px;}
.h25{height:29.001000px;}
.h23{height:29.145000px;}
.h30{height:29.158500px;}
.h2e{height:29.916000px;}
.h2b{height:30.045000px;}
.h20{height:30.420000px;}
.h29{height:30.765000px;}
.h2f{height:30.778500px;}
.h31{height:30.780000px;}
.h37{height:31.305000px;}
.ha{height:35.332031px;}
.h16{height:36.281250px;}
.h38{height:38.100586px;}
.h39{height:39.049805px;}
.h15{height:40.948242px;}
.h33{height:46.800000px;}
.h10{height:47.344922px;}
.h6{height:48.256875px;}
.h7{height:48.361781px;}
.h3a{height:52.971680px;}
.h4{height:52.998047px;}
.h1a{height:53.709961px;}
.hc{height:54.421875px;}
.h18{height:55.291992px;}
.h3b{height:55.503491px;}
.h3c{height:56.214844px;}
.h12{height:58.494295px;}
.h2{height:58.651172px;}
.h24{height:58.881000px;}
.h34{height:59.092031px;}
.h1d{height:59.439023px;}
.h9{height:60.041250px;}
.h21{height:60.226875px;}
.h28{height:60.645000px;}
.h2d{height:61.416000px;}
.h11{height:61.423863px;}
.h2a{height:61.545000px;}
.h2c{height:62.265000px;}
.hd{height:62.625000px;}
.h22{height:65.010937px;}
.h3{height:65.884219px;}
.he{height:72.562500px;}
.h1c{height:81.189961px;}
.h1e{height:83.930766px;}
.h8{height:84.898125px;}
.h19{height:86.255508px;}
.h14{height:119.760299px;}
.h13{height:124.456819px;}
.h5{height:149.940000px;}
.h27{height:248.070000px;}
.h17{height:324.000000px;}
.h1b{height:329.220000px;}
.h1f{height:340.920000px;}
.hb{height:420.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w11{width:52.725000px;}
.wc{width:73.965000px;}
.wd{width:74.016000px;}
.w10{width:95.029500px;}
.we{width:98.481000px;}
.wf{width:98.625000px;}
.w17{width:115.905000px;}
.w16{width:115.956000px;}
.w12{width:116.481000px;}
.w13{width:148.489500px;}
.w18{width:167.415000px;}
.w3{width:210.133500px;}
.w15{width:229.339500px;}
.wa{width:265.699500px;}
.w7{width:340.920000px;}
.wb{width:347.475000px;}
.w6{width:389.256044px;}
.w4{width:536.505000px;}
.w8{width:542.700000px;}
.w14{width:631.710000px;}
.w9{width:688.590000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:4.489500px;}
.xf{left:7.740000px;}
.x3{left:12.090000px;}
.x3d{left:13.305000px;}
.x3b{left:16.380000px;}
.xd{left:18.394500px;}
.x3a{left:22.680000px;}
.x47{left:31.320000px;}
.x2d{left:33.045000px;}
.x44{left:38.160000px;}
.x2b{left:41.610000px;}
.x42{left:44.820000px;}
.x2a{left:48.450000px;}
.x45{left:51.660000px;}
.x1{left:54.000000px;}
.x13{left:55.440000px;}
.x7{left:63.360000px;}
.x48{left:65.880000px;}
.x4d{left:67.170000px;}
.x43{left:69.285000px;}
.xc{left:72.901500px;}
.x46{left:76.125000px;}
.x4f{left:77.220000px;}
.x41{left:79.365000px;}
.x16{left:81.000000px;}
.x6{left:82.080000px;}
.x24{left:89.172000px;}
.x31{left:91.695000px;}
.x10{left:95.256000px;}
.x25{left:100.950000px;}
.x36{left:102.286500px;}
.x50{left:104.745000px;}
.x17{left:108.036000px;}
.x2c{left:110.700000px;}
.x32{left:119.595000px;}
.x28{left:124.230000px;}
.x9{left:127.656000px;}
.x26{left:130.755000px;}
.x51{left:139.350000px;}
.x1a{left:155.377968px;}
.x37{left:160.363500px;}
.x2f{left:167.250000px;}
.x27{left:174.240000px;}
.x21{left:187.740000px;}
.x40{left:198.045000px;}
.x1b{left:201.399862px;}
.x35{left:223.410000px;}
.x52{left:236.190000px;}
.x22{left:239.940000px;}
.xa{left:247.170000px;}
.x23{left:251.355000px;}
.x2e{left:263.625000px;}
.x49{left:265.708500px;}
.x33{left:275.910000px;}
.xe{left:283.755000px;}
.x1d{left:285.195000px;}
.x20{left:287.535000px;}
.xb{left:354.315000px;}
.x4a{left:361.155000px;}
.x38{left:368.715000px;}
.x8{left:373.035000px;}
.x1e{left:398.235000px;}
.x30{left:435.420000px;}
.x15{left:438.195000px;}
.x3c{left:443.460000px;}
.x29{left:459.615000px;}
.x11{left:473.505000px;}
.x4b{left:478.020000px;}
.x18{left:500.505000px;}
.x12{left:514.725000px;}
.x3e{left:518.160000px;}
.x19{left:527.505000px;}
.x4c{left:594.660000px;}
.x3f{left:617.550000px;}
.x14{left:687.570000px;}
.x39{left:716.910000px;}
.x1f{left:718.890000px;}
.x1c{left:753.630000px;}
.x34{left:797.580000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.133333pt;}
.v9{vertical-align:18.293333pt;}
.v6{vertical-align:19.266833pt;}
.v2{vertical-align:21.120000pt;}
.v7{vertical-align:42.871893pt;}
.v4{vertical-align:48.741259pt;}
.v5{vertical-align:72.346319pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.272000pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.062720pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.190720pt;}
.ls5{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.694372pt;}
.lsa{letter-spacing:0.947520pt;}
.lsb{letter-spacing:2.348767pt;}
.lsf{letter-spacing:3.381776pt;}
.lsc{letter-spacing:3.544076pt;}
.lsd{letter-spacing:10.500424pt;}
.ls1a{letter-spacing:12.320000pt;}
.ls1b{letter-spacing:22.496000pt;}
.ls8{letter-spacing:38.992640pt;}
.ls19{letter-spacing:46.816000pt;}
.ls0{letter-spacing:124.960000pt;}
.ls10{letter-spacing:148.364309pt;}
.ls13{letter-spacing:342.058667pt;}
.ws8{word-spacing:-49.793534pt;}
.ws11{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws4{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.160000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.264000pt;}
.wse{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.832000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws7{word-spacing:-3.563088pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:55.813333pt;}
.wsb{word-spacing:56.810667pt;}
.wsd{word-spacing:95.530667pt;}
.wsc{word-spacing:97.546667pt;}
._21{margin-left:-4.512000pt;}
._8{margin-left:-3.068160pt;}
._9{margin-left:-2.117333pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.566613pt;}
._d{width:3.504000pt;}
._c{width:4.560000pt;}
._12{width:6.144000pt;}
._6{width:7.878827pt;}
._5{width:9.075840pt;}
._f{width:10.752000pt;}
._e{width:12.960000pt;}
._11{width:14.400000pt;}
._10{width:15.683840pt;}
._1d{width:16.588160pt;}
._b{width:17.952000pt;}
._a{width:19.443840pt;}
._1c{width:20.352000pt;}
._1f{width:21.360000pt;}
._1e{width:22.272000pt;}
._15{width:23.472000pt;}
._19{width:25.192320pt;}
._18{width:26.352000pt;}
._16{width:28.128000pt;}
._13{width:29.576320pt;}
._14{width:30.714240pt;}
._20{width:31.776000pt;}
._1b{width:33.404160pt;}
._1a{width:34.320000pt;}
._28{width:35.324160pt;}
._26{width:36.768000pt;}
._2f{width:38.688000pt;}
._2e{width:39.616000pt;}
._27{width:40.608000pt;}
._17{width:42.000000pt;}
._2d{width:43.056000pt;}
._2a{width:44.736000pt;}
._29{width:47.331840pt;}
._36{width:48.720000pt;}
._2c{width:49.920000pt;}
._2b{width:50.976000pt;}
._34{width:52.679467pt;}
._30{width:54.240000pt;}
._31{width:55.278507pt;}
._7{width:57.552000pt;}
._38{width:60.816000pt;}
._37{width:61.776000pt;}
._39{width:63.210667pt;}
._33{width:70.608000pt;}
._32{width:71.808000pt;}
._25{width:121.594667pt;}
._24{width:163.610667pt;}
._23{width:198.480000pt;}
._4{width:219.967147pt;}
._22{width:244.693333pt;}
._35{width:267.888000pt;}
._3{width:1272.789333pt;}
.fs7{font-size:16.000000pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:45.423791pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:59.008000pt;}
.fs9{font-size:63.925054pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.y0{bottom:0.000000pt;}
.y1a3{bottom:4.640000pt;}
.y2b{bottom:4.960000pt;}
.y2e{bottom:5.120000pt;}
.y1a9{bottom:8.960000pt;}
.yb4{bottom:13.748533pt;}
.y164{bottom:14.720000pt;}
.y169{bottom:14.866667pt;}
.y168{bottom:14.906667pt;}
.y16f{bottom:15.026667pt;}
.y17d{bottom:15.040000pt;}
.y17a{bottom:15.680000pt;}
.y174{bottom:15.826667pt;}
.y148{bottom:16.093333pt;}
.y170{bottom:16.466667pt;}
.y17b{bottom:16.480000pt;}
.y138{bottom:20.160000pt;}
.y144{bottom:20.186667pt;}
.y2a{bottom:20.960000pt;}
.yb3{bottom:24.466506pt;}
.y2d{bottom:36.800000pt;}
.y136{bottom:40.093333pt;}
.y142{bottom:40.133333pt;}
.y166{bottom:41.466667pt;}
.y16d{bottom:43.026667pt;}
.y178{bottom:43.680000pt;}
.y172{bottom:43.826667pt;}
.y176{bottom:44.466667pt;}
.y29{bottom:44.800000pt;}
.y53{bottom:52.000000pt;}
.y12f{bottom:55.680000pt;}
.y13b{bottom:55.746667pt;}
.y129{bottom:60.293333pt;}
.y28{bottom:60.640000pt;}
.y52{bottom:68.320000pt;}
.y4{bottom:68.640000pt;}
.y27{bottom:76.480000pt;}
.y220{bottom:83.360000pt;}
.y130{bottom:86.333333pt;}
.y24d{bottom:88.640000pt;}
.y128{bottom:88.666667pt;}
.y80{bottom:89.120000pt;}
.y43{bottom:89.600000pt;}
.y12d{bottom:89.826667pt;}
.yb1{bottom:90.880000pt;}
.y26{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.y13c{bottom:93.920000pt;}
.y1e9{bottom:95.200000pt;}
.y21f{bottom:99.200000pt;}
.y24c{bottom:104.480000pt;}
.y17c{bottom:104.800000pt;}
.y7f{bottom:104.960000pt;}
.y42{bottom:105.440000pt;}
.yb0{bottom:106.880000pt;}
.y291{bottom:107.520000pt;}
.y25{bottom:108.186667pt;}
.y203{bottom:108.480000pt;}
.y1e8{bottom:111.040000pt;}
.y21e{bottom:115.040000pt;}
.y131{bottom:117.026667pt;}
.y7e{bottom:120.800000pt;}
.y41{bottom:121.280000pt;}
.y137{bottom:122.653333pt;}
.y290{bottom:123.360000pt;}
.y24{bottom:124.186667pt;}
.y202{bottom:124.320000pt;}
.y146{bottom:125.533333pt;}
.y24b{bottom:129.120000pt;}
.y4f{bottom:129.280000pt;}
.yaf{bottom:130.400000pt;}
.y21d{bottom:130.880000pt;}
.y16a{bottom:131.360000pt;}
.y13d{bottom:132.133333pt;}
.y1e7{bottom:134.880000pt;}
.y127{bottom:135.840000pt;}
.y40{bottom:137.120000pt;}
.y28f{bottom:139.200000pt;}
.y1a{bottom:139.706667pt;}
.y201{bottom:140.160000pt;}
.y7d{bottom:144.480000pt;}
.y4e{bottom:145.120000pt;}
.y143{bottom:145.280000pt;}
.y21c{bottom:146.720000pt;}
.y132{bottom:147.680000pt;}
.y23{bottom:148.026667pt;}
.y1e6{bottom:150.720000pt;}
.y3f{bottom:152.960000pt;}
.y24a{bottom:153.760000pt;}
.yae{bottom:154.560000pt;}
.y28e{bottom:155.040000pt;}
.y200{bottom:156.000000pt;}
.y179{bottom:159.360000pt;}
.y4d{bottom:160.960000pt;}
.y21b{bottom:162.720000pt;}
.y19{bottom:163.546667pt;}
.y22{bottom:163.866667pt;}
.y1e5{bottom:166.560000pt;}
.y7c{bottom:168.640000pt;}
.y3e{bottom:168.960000pt;}
.y249{bottom:169.760000pt;}
.y13e{bottom:170.306667pt;}
.yad{bottom:170.400000pt;}
.y145{bottom:170.560000pt;}
.y28d{bottom:170.880000pt;}
.y1ff{bottom:171.840000pt;}
.y4c{bottom:176.960000pt;}
.y133{bottom:178.333333pt;}
.y21a{bottom:178.560000pt;}
.y21{bottom:179.706667pt;}
.y1e4{bottom:182.560000pt;}
.y7b{bottom:184.506667pt;}
.yac{bottom:186.266667pt;}
.y126{bottom:186.493333pt;}
.y175{bottom:186.600000pt;}
.y28c{bottom:186.906667pt;}
.y18{bottom:187.546667pt;}
.y1fe{bottom:187.866667pt;}
.y3d{bottom:192.826667pt;}
.y248{bottom:194.106667pt;}
.y219{bottom:194.426667pt;}
.y20{bottom:195.546667pt;}
.y1e3{bottom:198.426667pt;}
.yab{bottom:202.266667pt;}
.y28b{bottom:202.746667pt;}
.y1fd{bottom:203.706667pt;}
.y7a{bottom:208.346667pt;}
.y13f{bottom:208.506667pt;}
.y3c{bottom:208.666667pt;}
.y134{bottom:208.986667pt;}
.y16b{bottom:209.626667pt;}
.y247{bottom:209.946667pt;}
.y218{bottom:210.266667pt;}
.y17{bottom:211.066667pt;}
.y1f{bottom:211.546667pt;}
.y1e2{bottom:214.266667pt;}
.y177{bottom:214.600000pt;}
.y1c6{bottom:215.066667pt;}
.yaa{bottom:218.106667pt;}
.y28a{bottom:218.586667pt;}
.y1fc{bottom:219.546667pt;}
.y3b{bottom:224.506667pt;}
.y217{bottom:226.106667pt;}
.y12e{bottom:226.266667pt;}
.y1e{bottom:227.386667pt;}
.y1e1{bottom:230.106667pt;}
.y11f{bottom:230.266667pt;}
.y12b{bottom:230.560000pt;}
.y79{bottom:232.986667pt;}
.ya9{bottom:233.946667pt;}
.y246{bottom:234.106667pt;}
.y289{bottom:234.426667pt;}
.y16{bottom:235.226667pt;}
.y1b8{bottom:235.386667pt;}
.y135{bottom:239.653333pt;}
.y3a{bottom:240.346667pt;}
.y216{bottom:241.946667pt;}
.y171{bottom:242.600000pt;}
.y105{bottom:242.746667pt;}
.y1c5{bottom:243.226667pt;}
.y1e0{bottom:245.946667pt;}
.y140{bottom:246.693333pt;}
.ya8{bottom:249.786667pt;}
.y245{bottom:249.946667pt;}
.y288{bottom:250.266667pt;}
.y11e{bottom:250.746667pt;}
.y1d{bottom:251.226667pt;}
.y39{bottom:256.186667pt;}
.y78{bottom:257.626667pt;}
.y215{bottom:257.946667pt;}
.y104{bottom:258.586667pt;}
.y15{bottom:259.066667pt;}
.y12a{bottom:260.226667pt;}
.y139{bottom:264.226667pt;}
.y287{bottom:266.266667pt;}
.y11d{bottom:266.746667pt;}
.y1c{bottom:267.066667pt;}
.y1fb{bottom:267.226667pt;}
.y1df{bottom:269.786667pt;}
.y173{bottom:270.600000pt;}
.y38{bottom:272.186667pt;}
.ya7{bottom:273.306667pt;}
.y214{bottom:273.786667pt;}
.y103{bottom:274.426667pt;}
.y244{bottom:274.586667pt;}
.y1c4{bottom:274.906667pt;}
.y286{bottom:282.106667pt;}
.y77{bottom:282.266667pt;}
.y11c{bottom:282.586667pt;}
.y14{bottom:282.906667pt;}
.y141{bottom:284.893333pt;}
.y1de{bottom:285.786667pt;}
.y37{bottom:288.026667pt;}
.y102{bottom:290.266667pt;}
.y243{bottom:290.426667pt;}
.y1c3{bottom:290.906667pt;}
.y1fa{bottom:291.066667pt;}
.yb2{bottom:293.351803pt;}
.y4b{bottom:296.026667pt;}
.ya6{bottom:297.466667pt;}
.y213{bottom:297.626667pt;}
.y270{bottom:297.946667pt;}
.y16c{bottom:297.960000pt;}
.y11b{bottom:298.426667pt;}
.y13{bottom:298.746667pt;}
.y1b7{bottom:298.906667pt;}
.y1dd{bottom:301.626667pt;}
.y36{bottom:303.866667pt;}
.y101{bottom:306.106667pt;}
.y1c2{bottom:306.746667pt;}
.y1f9{bottom:306.906667pt;}
.y4a{bottom:311.866667pt;}
.ya5{bottom:313.466667pt;}
.y26f{bottom:313.786667pt;}
.y11a{bottom:314.266667pt;}
.y1b6{bottom:314.746667pt;}
.y12{bottom:314.786667pt;}
.y242{bottom:315.226667pt;}
.y1dc{bottom:317.466667pt;}
.y35{bottom:319.706667pt;}
.y100{bottom:321.946667pt;}
.y1c1{bottom:322.586667pt;}
.y1f8{bottom:322.746667pt;}
.y285{bottom:324.026667pt;}
.y16e{bottom:325.960000pt;}
.y49{bottom:327.706667pt;}
.y212{bottom:329.306667pt;}
.y26e{bottom:329.626667pt;}
.y119{bottom:330.106667pt;}
.y1b5{bottom:330.586667pt;}
.y1b{bottom:330.626667pt;}
.y241{bottom:331.066667pt;}
.y1db{bottom:333.306667pt;}
.y34{bottom:335.546667pt;}
.yff{bottom:337.946667pt;}
.ya4{bottom:338.106667pt;}
.y11{bottom:338.306667pt;}
.y1c0{bottom:338.426667pt;}
.y1f7{bottom:338.586667pt;}
.y284{bottom:339.866667pt;}
.y48{bottom:343.546667pt;}
.y211{bottom:345.306667pt;}
.y26d{bottom:345.466667pt;}
.y118{bottom:345.946667pt;}
.y1b4{bottom:346.426667pt;}
.y1da{bottom:349.146667pt;}
.y33{bottom:351.546667pt;}
.y165{bottom:352.520000pt;}
.yfe{bottom:353.786667pt;}
.ya3{bottom:353.946667pt;}
.y10{bottom:354.146667pt;}
.y1f6{bottom:354.426667pt;}
.y240{bottom:355.386667pt;}
.y283{bottom:355.866667pt;}
.y76{bottom:358.266667pt;}
.y47{bottom:359.546667pt;}
.y210{bottom:361.146667pt;}
.y26c{bottom:361.466667pt;}
.y117{bottom:361.946667pt;}
.y1b3{bottom:362.266667pt;}
.y1d9{bottom:365.146667pt;}
.y124{bottom:366.426667pt;}
.y32{bottom:367.386667pt;}
.y1f5{bottom:370.426667pt;}
.y23f{bottom:371.226667pt;}
.y282{bottom:371.706667pt;}
.y75{bottom:374.106667pt;}
.y46{bottom:375.386667pt;}
.y20f{bottom:376.986667pt;}
.yfd{bottom:377.306667pt;}
.y116{bottom:377.786667pt;}
.y1b2{bottom:378.266667pt;}
.ya2{bottom:378.586667pt;}
.y167{bottom:379.080000pt;}
.y1d8{bottom:380.986667pt;}
.y31{bottom:383.226667pt;}
.y1f4{bottom:386.266667pt;}
.y281{bottom:387.546667pt;}
.y123{bottom:390.266667pt;}
.y45{bottom:391.226667pt;}
.y20e{bottom:392.866667pt;}
.y26b{bottom:393.186667pt;}
.y1bf{bottom:394.146667pt;}
.ya1{bottom:394.466667pt;}
.y23e{bottom:395.106667pt;}
.y74{bottom:397.666667pt;}
.y30{bottom:399.106667pt;}
.y115{bottom:401.346667pt;}
.yfc{bottom:401.506667pt;}
.y1b1{bottom:402.146667pt;}
.y280{bottom:403.426667pt;}
.y1d7{bottom:404.866667pt;}
.y163{bottom:405.506667pt;}
.y44{bottom:407.106667pt;}
.y20d{bottom:408.706667pt;}
.y26a{bottom:409.026667pt;}
.y1be{bottom:409.986667pt;}
.y122{bottom:412.226667pt;}
.y12c{bottom:413.760000pt;}
.y114{bottom:417.186667pt;}
.yfb{bottom:417.346667pt;}
.y1b0{bottom:417.986667pt;}
.ya0{bottom:419.106667pt;}
.y23d{bottom:419.266667pt;}
.y1d6{bottom:420.706667pt;}
.y73{bottom:421.826667pt;}
.y2f{bottom:424.226667pt;}
.y20c{bottom:424.546667pt;}
.y269{bottom:424.866667pt;}
.y1bd{bottom:425.826667pt;}
.yfa{bottom:433.346667pt;}
.y1af{bottom:433.826667pt;}
.y9f{bottom:434.946667pt;}
.y23c{bottom:435.266667pt;}
.y1d5{bottom:436.546667pt;}
.y268{bottom:440.866667pt;}
.y113{bottom:441.346667pt;}
.y1bc{bottom:441.666667pt;}
.y162{bottom:444.066667pt;}
.y72{bottom:446.466667pt;}
.y2c{bottom:447.746667pt;}
.y20b{bottom:448.546667pt;}
.yf9{bottom:449.186667pt;}
.y1ae{bottom:449.666667pt;}
.y23b{bottom:451.106667pt;}
.y1d4{bottom:452.386667pt;}
.y267{bottom:456.706667pt;}
.y112{bottom:457.346667pt;}
.y1bb{bottom:457.506667pt;}
.y9e{bottom:459.586667pt;}
.y159{bottom:462.306667pt;}
.y20a{bottom:464.386667pt;}
.yf8{bottom:465.026667pt;}
.y1ad{bottom:465.506667pt;}
.y1f3{bottom:465.666667pt;}
.y23a{bottom:466.946667pt;}
.y1d3{bottom:468.386667pt;}
.y71{bottom:471.106667pt;}
.yeb{bottom:471.746667pt;}
.y266{bottom:472.546667pt;}
.y111{bottom:473.186667pt;}
.y1ba{bottom:473.506667pt;}
.y158{bottom:478.306667pt;}
.y209{bottom:480.226667pt;}
.yf7{bottom:480.866667pt;}
.y1ac{bottom:481.506667pt;}
.y239{bottom:482.786667pt;}
.y9d{bottom:483.266667pt;}
.y1d2{bottom:484.226667pt;}
.y265{bottom:488.386667pt;}
.y110{bottom:489.026667pt;}
.y1b9{bottom:489.346667pt;}
.ycc{bottom:490.626667pt;}
.y1f2{bottom:490.786667pt;}
.y157{bottom:494.146667pt;}
.y70{bottom:495.426667pt;}
.y208{bottom:496.066667pt;}
.yf6{bottom:496.706667pt;}
.y1ab{bottom:497.346667pt;}
.y238{bottom:498.626667pt;}
.y1d1{bottom:500.066667pt;}
.yf{bottom:504.066667pt;}
.y264{bottom:504.226667pt;}
.y10f{bottom:504.866667pt;}
.ycb{bottom:506.466667pt;}
.y9c{bottom:507.426667pt;}
.y156{bottom:509.986667pt;}
.y207{bottom:511.906667pt;}
.yf5{bottom:512.546667pt;}
.y161{bottom:512.706667pt;}
.y27f{bottom:514.466667pt;}
.y1d0{bottom:515.906667pt;}
.y6f{bottom:519.586667pt;}
.y1f1{bottom:519.906667pt;}
.y263{bottom:520.066667pt;}
.y10e{bottom:520.706667pt;}
.y1aa{bottom:520.866667pt;}
.yca{bottom:522.466667pt;}
.y9b{bottom:523.266667pt;}
.y155{bottom:525.826667pt;}
.yea{bottom:527.906667pt;}
.yf4{bottom:528.546667pt;}
.y27e{bottom:530.466667pt;}
.y262{bottom:536.066667pt;}
.y10d{bottom:536.546667pt;}
.yc9{bottom:538.306667pt;}
.y237{bottom:538.466667pt;}
.y9a{bottom:539.106667pt;}
.y1cf{bottom:539.746667pt;}
.y1a8{bottom:540.066667pt;}
.ye9{bottom:543.746667pt;}
.y6e{bottom:544.226667pt;}
.yf3{bottom:544.386667pt;}
.y27d{bottom:546.306667pt;}
.y1f0{bottom:547.746667pt;}
.y154{bottom:549.666667pt;}
.y10c{bottom:552.546667pt;}
.y236{bottom:554.306667pt;}
.y99{bottom:554.946667pt;}
.y1ce{bottom:555.746667pt;}
.ye8{bottom:559.586667pt;}
.yf2{bottom:560.226667pt;}
.yc8{bottom:562.146667pt;}
.y1ef{bottom:563.746667pt;}
.y153{bottom:565.666667pt;}
.y10b{bottom:568.386667pt;}
.y1a7{bottom:568.546667pt;}
.y6d{bottom:569.026667pt;}
.y235{bottom:570.146667pt;}
.y98{bottom:570.946667pt;}
.y1cd{bottom:571.586667pt;}
.ye7{bottom:575.426667pt;}
.y160{bottom:576.066667pt;}
.yc7{bottom:577.986667pt;}
.y1ee{bottom:579.586667pt;}
.y152{bottom:581.506667pt;}
.y2a2{bottom:583.586667pt;}
.yf1{bottom:583.746667pt;}
.y10a{bottom:584.226667pt;}
.y6c{bottom:584.866667pt;}
.y234{bottom:585.986667pt;}
.y97{bottom:586.786667pt;}
.y1cc{bottom:587.426667pt;}
.ye6{bottom:591.266667pt;}
.y15f{bottom:592.066667pt;}
.y1a6{bottom:593.186667pt;}
.yc6{bottom:593.826667pt;}
.y1ed{bottom:595.426667pt;}
.y151{bottom:597.346667pt;}
.y2a1{bottom:599.426667pt;}
.y261{bottom:599.586667pt;}
.y109{bottom:600.066667pt;}
.y233{bottom:601.853333pt;}
.y1cb{bottom:603.293333pt;}
.ye5{bottom:607.133333pt;}
.yf0{bottom:607.613333pt;}
.y6b{bottom:609.213333pt;}
.yc5{bottom:609.853333pt;}
.y96{bottom:610.333333pt;}
.y1ec{bottom:611.293333pt;}
.y150{bottom:613.213333pt;}
.y2a0{bottom:615.293333pt;}
.y15e{bottom:615.933333pt;}
.y1a5{bottom:617.693333pt;}
.y232{bottom:617.853333pt;}
.y1ca{bottom:619.133333pt;}
.ye4{bottom:623.133333pt;}
.y108{bottom:623.613333pt;}
.y260{bottom:624.253333pt;}
.yc4{bottom:625.693333pt;}
.y1eb{bottom:627.133333pt;}
.y14f{bottom:629.053333pt;}
.y29f{bottom:631.133333pt;}
.yef{bottom:631.613333pt;}
.y15d{bottom:631.773333pt;}
.y6a{bottom:633.373333pt;}
.y231{bottom:633.693333pt;}
.y95{bottom:634.493333pt;}
.y1c9{bottom:634.973333pt;}
.ye3{bottom:638.973333pt;}
.y25f{bottom:640.093333pt;}
.yc3{bottom:641.533333pt;}
.y1a4{bottom:642.173333pt;}
.y1ea{bottom:642.973333pt;}
.y14e{bottom:644.893333pt;}
.y29e{bottom:647.133333pt;}
.y15c{bottom:647.613333pt;}
.y107{bottom:647.933333pt;}
.y69{bottom:649.213333pt;}
.y230{bottom:649.533333pt;}
.y94{bottom:650.333333pt;}
.ye2{bottom:654.813333pt;}
.yee{bottom:655.453333pt;}
.yc2{bottom:657.373333pt;}
.y1c8{bottom:658.653333pt;}
.y14d{bottom:660.893333pt;}
.y29d{bottom:662.973333pt;}
.y15b{bottom:663.453333pt;}
.y106{bottom:663.773333pt;}
.y25e{bottom:664.733333pt;}
.y68{bottom:665.053333pt;}
.y93{bottom:666.173333pt;}
.ye1{bottom:670.653333pt;}
.yc1{bottom:673.213333pt;}
.y22f{bottom:673.373333pt;}
.y14c{bottom:676.733333pt;}
.y206{bottom:678.653333pt;}
.y29c{bottom:678.813333pt;}
.yed{bottom:679.293333pt;}
.y1c7{bottom:680.573333pt;}
.y25d{bottom:680.733333pt;}
.y67{bottom:681.053333pt;}
.y1a2{bottom:684.573333pt;}
.yc0{bottom:689.053333pt;}
.y22e{bottom:689.213333pt;}
.y92{bottom:689.853333pt;}
.y14b{bottom:692.733333pt;}
.ye0{bottom:694.493333pt;}
.y29b{bottom:694.653333pt;}
.y15a{bottom:695.293333pt;}
.yec{bottom:700.733333pt;}
.y147{bottom:703.520000pt;}
.y66{bottom:704.573333pt;}
.ybf{bottom:705.053333pt;}
.ydf{bottom:710.493333pt;}
.y14a{bottom:710.813333pt;}
.y190{bottom:713.373333pt;}
.y91{bottom:714.013333pt;}
.y121{bottom:718.973333pt;}
.ybe{bottom:720.893333pt;}
.y22d{bottom:721.053333pt;}
.yde{bottom:726.333333pt;}
.y29a{bottom:726.493333pt;}
.y65{bottom:728.733333pt;}
.y18f{bottom:729.213333pt;}
.y1a1{bottom:729.373333pt;}
.y90{bottom:729.853333pt;}
.y149{bottom:732.733333pt;}
.ybd{bottom:736.733333pt;}
.y22c{bottom:736.893333pt;}
.y13a{bottom:737.920000pt;}
.y120{bottom:740.893333pt;}
.ydd{bottom:742.173333pt;}
.y299{bottom:742.333333pt;}
.y125{bottom:742.880000pt;}
.y64{bottom:744.573333pt;}
.y25c{bottom:745.053333pt;}
.y1a0{bottom:745.213333pt;}
.y8f{bottom:745.693333pt;}
.y27c{bottom:752.573333pt;}
.y22b{bottom:752.733333pt;}
.y18e{bottom:753.053333pt;}
.ydc{bottom:758.013333pt;}
.y298{bottom:758.173333pt;}
.y63{bottom:760.413333pt;}
.ybc{bottom:760.573333pt;}
.y25b{bottom:760.893333pt;}
.y19f{bottom:761.053333pt;}
.y8e{bottom:761.533333pt;}
.y22a{bottom:768.573333pt;}
.y18d{bottom:768.893333pt;}
.ydb{bottom:773.853333pt;}
.y297{bottom:774.013333pt;}
.y62{bottom:776.413333pt;}
.y25a{bottom:776.733333pt;}
.y19e{bottom:776.893333pt;}
.y8d{bottom:777.373333pt;}
.y27b{bottom:777.693333pt;}
.y229{bottom:784.413333pt;}
.y18c{bottom:784.893333pt;}
.yda{bottom:789.693333pt;}
.y296{bottom:789.853333pt;}
.y61{bottom:792.253333pt;}
.ybb{bottom:792.413333pt;}
.y259{bottom:792.573333pt;}
.y19d{bottom:792.893333pt;}
.y8c{bottom:793.373333pt;}
.y228{bottom:800.413333pt;}
.y18b{bottom:800.733333pt;}
.yd9{bottom:805.693333pt;}
.yba{bottom:808.253333pt;}
.y19c{bottom:808.733333pt;}
.y60{bottom:815.813333pt;}
.y227{bottom:816.293333pt;}
.y18a{bottom:816.613333pt;}
.y8b{bottom:816.933333pt;}
.y258{bottom:817.413333pt;}
.yd8{bottom:821.573333pt;}
.y295{bottom:821.733333pt;}
.yb9{bottom:824.133333pt;}
.y19b{bottom:824.613333pt;}
.y27a{bottom:829.253333pt;}
.y226{bottom:832.133333pt;}
.y189{bottom:832.453333pt;}
.y257{bottom:833.253333pt;}
.yd7{bottom:837.413333pt;}
.y294{bottom:837.573333pt;}
.y5f{bottom:839.973333pt;}
.y19a{bottom:840.453333pt;}
.y8a{bottom:841.093333pt;}
.y188{bottom:848.293333pt;}
.y279{bottom:853.093333pt;}
.yd6{bottom:853.253333pt;}
.y293{bottom:853.413333pt;}
.y5e{bottom:855.813333pt;}
.y199{bottom:856.293333pt;}
.y225{bottom:857.253333pt;}
.y256{bottom:857.893333pt;}
.y205{bottom:861.253333pt;}
.y187{bottom:864.293333pt;}
.y89{bottom:865.733333pt;}
.y278{bottom:868.933333pt;}
.yd5{bottom:869.093333pt;}
.y292{bottom:869.253333pt;}
.y5d{bottom:871.653333pt;}
.y204{bottom:877.093333pt;}
.y198{bottom:880.293333pt;}
.y255{bottom:882.213333pt;}
.y277{bottom:884.773333pt;}
.y224{bottom:885.093333pt;}
.y5c{bottom:887.653333pt;}
.y186{bottom:888.133333pt;}
.ye{bottom:888.293333pt;}
.y88{bottom:890.373333pt;}
.yd4{bottom:892.933333pt;}
.yb8{bottom:895.333333pt;}
.y197{bottom:896.133333pt;}
.y276{bottom:900.613333pt;}
.y223{bottom:900.933333pt;}
.y5b{bottom:903.493333pt;}
.y185{bottom:903.973333pt;}
.y254{bottom:906.373333pt;}
.yd3{bottom:908.933333pt;}
.y196{bottom:911.973333pt;}
.yd{bottom:912.133333pt;}
.y87{bottom:915.013333pt;}
.y275{bottom:916.613333pt;}
.y222{bottom:916.933333pt;}
.y184{bottom:919.813333pt;}
.yb7{bottom:920.773333pt;}
.y253{bottom:922.213333pt;}
.yd2{bottom:924.773333pt;}
.y5a{bottom:927.013333pt;}
.y195{bottom:927.813333pt;}
.yc{bottom:930.533333pt;}
.y86{bottom:930.853333pt;}
.y274{bottom:932.453333pt;}
.y221{bottom:932.773333pt;}
.y183{bottom:935.653333pt;}
.yd1{bottom:940.613333pt;}
.y194{bottom:943.653333pt;}
.y252{bottom:946.853333pt;}
.y273{bottom:948.293333pt;}
.yb6{bottom:948.613333pt;}
.y182{bottom:951.493333pt;}
.y59{bottom:952.453333pt;}
.y85{bottom:955.653333pt;}
.yd0{bottom:956.453333pt;}
.yb{bottom:957.093333pt;}
.y193{bottom:959.493333pt;}
.y251{bottom:962.853333pt;}
.y272{bottom:964.133333pt;}
.yb5{bottom:964.453333pt;}
.y181{bottom:967.493333pt;}
.y84{bottom:971.493333pt;}
.ycf{bottom:972.293333pt;}
.y192{bottom:975.493333pt;}
.y271{bottom:979.973333pt;}
.y58{bottom:980.293333pt;}
.ya{bottom:981.733333pt;}
.y180{bottom:983.333333pt;}
.y250{bottom:987.493333pt;}
.yce{bottom:988.293333pt;}
.y5{bottom:989.280000pt;}
.y191{bottom:991.333333pt;}
.y83{bottom:995.813333pt;}
.y57{bottom:996.293333pt;}
.ycd{bottom:1004.133333pt;}
.y9{bottom:1006.533333pt;}
.y17f{bottom:1006.853333pt;}
.y24f{bottom:1011.813333pt;}
.y56{bottom:1012.133333pt;}
.y82{bottom:1019.680000pt;}
.y17e{bottom:1026.720000pt;}
.y24e{bottom:1027.680000pt;}
.y55{bottom:1028.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y81{bottom:1043.520000pt;}
.y54{bottom:1043.840000pt;}
.y2{bottom:1050.240000pt;}
.y51{bottom:1055.680000pt;}
.y7{bottom:1058.880000pt;}
.y50{bottom:1062.400000pt;}
.y1{bottom:1063.840000pt;}
.hf{height:13.484375pt;}
.h36{height:23.826667pt;}
.h32{height:23.840000pt;}
.h35{height:23.866667pt;}
.h26{height:25.746667pt;}
.h25{height:25.778667pt;}
.h23{height:25.906667pt;}
.h30{height:25.918667pt;}
.h2e{height:26.592000pt;}
.h2b{height:26.706667pt;}
.h20{height:27.040000pt;}
.h29{height:27.346667pt;}
.h2f{height:27.358667pt;}
.h31{height:27.360000pt;}
.h37{height:27.826667pt;}
.ha{height:31.406250pt;}
.h16{height:32.250000pt;}
.h38{height:33.867188pt;}
.h39{height:34.710938pt;}
.h15{height:36.398438pt;}
.h33{height:41.600000pt;}
.h10{height:42.084375pt;}
.h6{height:42.895000pt;}
.h7{height:42.988250pt;}
.h3a{height:47.085938pt;}
.h4{height:47.109375pt;}
.h1a{height:47.742188pt;}
.hc{height:48.375000pt;}
.h18{height:49.148438pt;}
.h3b{height:49.336436pt;}
.h3c{height:49.968750pt;}
.h12{height:51.994929pt;}
.h2{height:52.134375pt;}
.h24{height:52.338667pt;}
.h34{height:52.526250pt;}
.h1d{height:52.834688pt;}
.h9{height:53.370000pt;}
.h21{height:53.535000pt;}
.h28{height:53.906667pt;}
.h2d{height:54.592000pt;}
.h11{height:54.598989pt;}
.h2a{height:54.706667pt;}
.h2c{height:55.346667pt;}
.hd{height:55.666667pt;}
.h22{height:57.787500pt;}
.h3{height:58.563750pt;}
.he{height:64.500000pt;}
.h1c{height:72.168854pt;}
.h1e{height:74.605125pt;}
.h8{height:75.465000pt;}
.h19{height:76.671562pt;}
.h14{height:106.453599pt;}
.h13{height:110.628283pt;}
.h5{height:133.280000pt;}
.h27{height:220.506667pt;}
.h17{height:288.000000pt;}
.h1b{height:292.640000pt;}
.h1f{height:303.040000pt;}
.hb{height:373.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w11{width:46.866667pt;}
.wc{width:65.746667pt;}
.wd{width:65.792000pt;}
.w10{width:84.470667pt;}
.we{width:87.538667pt;}
.wf{width:87.666667pt;}
.w17{width:103.026667pt;}
.w16{width:103.072000pt;}
.w12{width:103.538667pt;}
.w13{width:131.990667pt;}
.w18{width:148.813333pt;}
.w3{width:186.785333pt;}
.w15{width:203.857333pt;}
.wa{width:236.177333pt;}
.w7{width:303.040000pt;}
.wb{width:308.866667pt;}
.w6{width:346.005372pt;}
.w4{width:476.893333pt;}
.w8{width:482.400000pt;}
.w14{width:561.520000pt;}
.w9{width:612.080000pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:3.990667pt;}
.xf{left:6.880000pt;}
.x3{left:10.746667pt;}
.x3d{left:11.826667pt;}
.x3b{left:14.560000pt;}
.xd{left:16.350667pt;}
.x3a{left:20.160000pt;}
.x47{left:27.840000pt;}
.x2d{left:29.373333pt;}
.x44{left:33.920000pt;}
.x2b{left:36.986667pt;}
.x42{left:39.840000pt;}
.x2a{left:43.066667pt;}
.x45{left:45.920000pt;}
.x1{left:48.000000pt;}
.x13{left:49.280000pt;}
.x7{left:56.320000pt;}
.x48{left:58.560000pt;}
.x4d{left:59.706667pt;}
.x43{left:61.586667pt;}
.xc{left:64.801333pt;}
.x46{left:67.666667pt;}
.x4f{left:68.640000pt;}
.x41{left:70.546667pt;}
.x16{left:72.000000pt;}
.x6{left:72.960000pt;}
.x24{left:79.264000pt;}
.x31{left:81.506667pt;}
.x10{left:84.672000pt;}
.x25{left:89.733333pt;}
.x36{left:90.921333pt;}
.x50{left:93.106667pt;}
.x17{left:96.032000pt;}
.x2c{left:98.400000pt;}
.x32{left:106.306667pt;}
.x28{left:110.426667pt;}
.x9{left:113.472000pt;}
.x26{left:116.226667pt;}
.x51{left:123.866667pt;}
.x1a{left:138.113749pt;}
.x37{left:142.545333pt;}
.x2f{left:148.666667pt;}
.x27{left:154.880000pt;}
.x21{left:166.880000pt;}
.x40{left:176.040000pt;}
.x1b{left:179.022100pt;}
.x35{left:198.586667pt;}
.x52{left:209.946667pt;}
.x22{left:213.280000pt;}
.xa{left:219.706667pt;}
.x23{left:223.426667pt;}
.x2e{left:234.333333pt;}
.x49{left:236.185333pt;}
.x33{left:245.253333pt;}
.xe{left:252.226667pt;}
.x1d{left:253.506667pt;}
.x20{left:255.586667pt;}
.xb{left:314.946667pt;}
.x4a{left:321.026667pt;}
.x38{left:327.746667pt;}
.x8{left:331.586667pt;}
.x1e{left:353.986667pt;}
.x30{left:387.040000pt;}
.x15{left:389.506667pt;}
.x3c{left:394.186667pt;}
.x29{left:408.546667pt;}
.x11{left:420.893333pt;}
.x4b{left:424.906667pt;}
.x18{left:444.893333pt;}
.x12{left:457.533333pt;}
.x3e{left:460.586667pt;}
.x19{left:468.893333pt;}
.x4c{left:528.586667pt;}
.x3f{left:548.933333pt;}
.x14{left:611.173333pt;}
.x39{left:637.253333pt;}
.x1f{left:639.013333pt;}
.x1c{left:669.893333pt;}
.x34{left:708.960000pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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