
    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_ba19b15db5ba1ae7d080d126.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_3be9dfb41ab0b97ae9575bb3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_750496bda8b9e71354ffc614.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_033de6a2d898db2f9771b6ef.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c751733099c98415e5ae666b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_8a696d993f1125d57c7973bd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8caf71fc62829ee1f87f9f68.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b5e826f14ae62f09c625bad8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-81.000000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-6.540000px;}
.ls22{letter-spacing:-5.268000px;}
.ls17{letter-spacing:-5.010000px;}
.lsa{letter-spacing:-4.500000px;}
.ls12{letter-spacing:-3.024000px;}
.ls1d{letter-spacing:-2.484000px;}
.ls6{letter-spacing:-2.250000px;}
.ls29{letter-spacing:-2.016000px;}
.lsc{letter-spacing:-1.476000px;}
.ls23{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.468000px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.468000px;}
.ls26{letter-spacing:1.014000px;}
.lsf{letter-spacing:1.086000px;}
.ls15{letter-spacing:1.125000px;}
.ls5{letter-spacing:1.128000px;}
.ls21{letter-spacing:1.185000px;}
.ls8{letter-spacing:1.308000px;}
.ls2a{letter-spacing:1.878000px;}
.ls28{letter-spacing:2.016000px;}
.lse{letter-spacing:2.175000px;}
.ls1f{letter-spacing:2.178000px;}
.ls0{letter-spacing:2.250000px;}
.ls25{letter-spacing:3.024000px;}
.lsb{letter-spacing:4.032000px;}
.ls10{letter-spacing:4.500000px;}
.ls20{letter-spacing:8.970000px;}
.ls9{letter-spacing:10.125000px;}
.ls14{letter-spacing:10.245000px;}
.ls11{letter-spacing:18.180000px;}
.ls7{letter-spacing:22.500000px;}
.ls16{letter-spacing:22.620000px;}
.ls1e{letter-spacing:33.954000px;}
.ls1a{letter-spacing:33.984000px;}
.ls1b{letter-spacing:34.134000px;}
.ls1c{letter-spacing:198.120000px;}
.ls18{letter-spacing:198.300000px;}
.ls1{letter-spacing:847.020000px;}
.lsd{letter-spacing:847.080000px;}
.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;}
}
.ws14{word-spacing:-23.290500px;}
.ws4{word-spacing:-22.720500px;}
.ws11{word-spacing:-22.426500px;}
.ws10{word-spacing:-21.024000px;}
.ws12{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.125000px;}
.wsd{word-spacing:-18.468000px;}
.ws2{word-spacing:-18.003000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.532000px;}
.wsf{word-spacing:-16.992000px;}
.ws6{word-spacing:-16.875000px;}
.ws8{word-spacing:-16.524000px;}
.ws13{word-spacing:-15.984000px;}
.wse{word-spacing:-15.516000px;}
.wsb{word-spacing:-14.976000px;}
.ws3{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-11.460000px;}
.wsc{word-spacing:-9.615000px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-13.053450px;}
._23{margin-left:-11.984250px;}
._21{margin-left:-8.929200px;}
._12{margin-left:-7.128900px;}
._9{margin-left:-6.056250px;}
._10{margin-left:-4.825350px;}
._7{margin-left:-3.786000px;}
._6{margin-left:-2.366250px;}
._2{margin-left:-1.135800px;}
._c{width:1.069650px;}
._5{width:2.082300px;}
._3{width:3.218100px;}
._4{width:4.853250px;}
._e{width:6.586950px;}
._8{width:7.666650px;}
._b{width:8.707800px;}
._13{width:9.791250px;}
._1b{width:11.020200px;}
._a{width:12.872400px;}
._11{width:14.157300px;}
._29{width:15.230100px;}
._24{width:16.914750px;}
._27{width:19.070250px;}
._1f{width:20.100450px;}
._d{width:21.478500px;}
._19{width:23.418150px;}
._1a{width:25.213800px;}
._17{width:26.974950px;}
._1e{width:28.171800px;}
._1c{width:29.827800px;}
._16{width:31.689600px;}
._25{width:33.556650px;}
._28{width:35.200800px;}
._18{width:36.703650px;}
._31{width:38.039250px;}
._14{width:39.891150px;}
._26{width:41.079000px;}
._1d{width:42.452400px;}
._15{width:44.781900px;}
._2b{width:45.894900px;}
._2a{width:49.578150px;}
._37{width:50.583000px;}
._2e{width:53.710650px;}
._2c{width:55.005750px;}
._33{width:57.790950px;}
._2f{width:58.883550px;}
._35{width:63.026550px;}
._30{width:64.042350px;}
._34{width:71.864400px;}
._2d{width:135.300000px;}
._32{width:157.627050px;}
._36{width:180.254400px;}
._1{width:198.120000px;}
._f{width:350.569500px;}
._38{width:847.020000px;}
._20{width:856.409850px;}
._0{width:2149.020000px;}
.fc4{color:rgb(255,0,0);}
.fc8{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc9{color:rgb(255,255,255);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(123,123,123);}
.fc5{color:rgb(82,82,82);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.500000px;}
.fs7{font-size:49.500000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:58.500000px;}
.fsb{font-size:63.000000px;}
.fs2{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:76.500000px;}
.fs5{font-size:85.650000px;}
.fs1{font-size:94.650000px;}
.fs4{font-size:108.150000px;}
.fs3{font-size:121.650000px;}
.y0{bottom:0.000000px;}
.y2d4{bottom:4.440000px;}
.y2c3{bottom:4.470000px;}
.y2cd{bottom:4.485000px;}
.y2bf{bottom:4.500000px;}
.y2b9{bottom:4.530000px;}
.y2bd{bottom:5.580000px;}
.y2c9{bottom:5.595000px;}
.y2cf{bottom:5.640000px;}
.y2b4{bottom:6.705000px;}
.y2c8{bottom:7.845000px;}
.y2b3{bottom:8.955000px;}
.yea{bottom:10.080000px;}
.ye6{bottom:10.110000px;}
.yee{bottom:10.125000px;}
.ye3{bottom:10.140000px;}
.yd3{bottom:10.155000px;}
.y23a{bottom:12.330000px;}
.y26e{bottom:12.346500px;}
.y250{bottom:12.375000px;}
.y247{bottom:12.384000px;}
.y242{bottom:12.405000px;}
.y24b{bottom:12.420000px;}
.y23f{bottom:13.425000px;}
.yd0{bottom:13.440000px;}
.y23b{bottom:13.455000px;}
.yf5{bottom:13.470000px;}
.y26f{bottom:13.471500px;}
.yda{bottom:13.485000px;}
.y251{bottom:13.500000px;}
.yd7{bottom:13.509000px;}
.yf1{bottom:13.515000px;}
.y128{bottom:13.545000px;}
.y12e{bottom:13.575000px;}
.y240{bottom:14.550000px;}
.yeb{bottom:14.580000px;}
.y123{bottom:14.595000px;}
.y223{bottom:14.596500px;}
.ye7{bottom:14.610000px;}
.yed{bottom:14.625000px;}
.yd4{bottom:14.655000px;}
.ydf{bottom:14.670000px;}
.y26c{bottom:14.685000px;}
.y226{bottom:15.705000px;}
.y22c{bottom:15.735000px;}
.y22e{bottom:15.795000px;}
.y22d{bottom:16.860000px;}
.y22f{bottom:16.920000px;}
.ydb{bottom:22.485000px;}
.yf2{bottom:22.500000px;}
.ye1{bottom:23.670000px;}
.y2db{bottom:24.735000px;}
.y2c6{bottom:24.795000px;}
.y2bc{bottom:25.830000px;}
.y2df{bottom:25.845000px;}
.y2d3{bottom:25.860000px;}
.y2be{bottom:25.875000px;}
.y2c2{bottom:25.890000px;}
.y2b8{bottom:25.905000px;}
.y2cc{bottom:25.920000px;}
.ydc{bottom:27.015000px;}
.yf4{bottom:28.095000px;}
.yd6{bottom:28.134000px;}
.ye0{bottom:28.170000px;}
.ye9{bottom:29.235000px;}
.ye5{bottom:29.280000px;}
.yd2{bottom:29.295000px;}
.yce{bottom:40.470000px;}
.ycf{bottom:41.595000px;}
.y24d{bottom:41.610000px;}
.yf0{bottom:41.625000px;}
.y221{bottom:41.634000px;}
.yd9{bottom:41.640000px;}
.y22a{bottom:41.655000px;}
.y26b{bottom:41.670000px;}
.y127{bottom:41.700000px;}
.y24a{bottom:42.735000px;}
.y222{bottom:42.759000px;}
.y122{bottom:42.765000px;}
.y11d{bottom:42.780000px;}
.yde{bottom:42.795000px;}
.y137{bottom:42.810000px;}
.y21f{bottom:42.840000px;}
.y12d{bottom:42.855000px;}
.y2de{bottom:46.095000px;}
.y2bb{bottom:46.110000px;}
.y2c1{bottom:46.140000px;}
.y2c5{bottom:46.155000px;}
.y2cb{bottom:46.170000px;}
.y2b7{bottom:46.185000px;}
.y2d1{bottom:47.295000px;}
.y2d8{bottom:53.985000px;}
.y3{bottom:57.412500px;}
.y2e0{bottom:66.435000px;}
.y2c4{bottom:66.450000px;}
.y2b6{bottom:67.560000px;}
.y125{bottom:69.780000px;}
.y263{bottom:70.860000px;}
.y249{bottom:70.890000px;}
.y11c{bottom:70.905000px;}
.y25f{bottom:70.914000px;}
.y121{bottom:70.920000px;}
.y236{bottom:70.929000px;}
.y133{bottom:70.935000px;}
.y136{bottom:70.965000px;}
.y12c{bottom:71.025000px;}
.y2d7{bottom:74.265000px;}
.y2{bottom:78.825000px;}
.y228{bottom:97.935000px;}
.y12a{bottom:97.965000px;}
.y134{bottom:97.995000px;}
.y25b{bottom:99.015000px;}
.y23d{bottom:99.045000px;}
.y25d{bottom:99.054000px;}
.y11b{bottom:99.060000px;}
.y235{bottom:99.084000px;}
.y132{bottom:99.090000px;}
.y229{bottom:99.105000px;}
.y245{bottom:99.120000px;}
.y21e{bottom:99.135000px;}
.y262{bottom:100.155000px;}
.y120{bottom:100.170000px;}
.y25e{bottom:100.179000px;}
.yc1{bottom:110.362500px;}
.yb3{bottom:112.612500px;}
.y10f{bottom:114.862500px;}
.y25c{bottom:114.891000px;}
.y293{bottom:115.987500px;}
.y275{bottom:117.112500px;}
.y26d{bottom:117.141000px;}
.y171{bottom:118.237500px;}
.y220{bottom:118.266000px;}
.y2a2{bottom:119.362500px;}
.y20e{bottom:120.487500px;}
.y1f2{bottom:123.862500px;}
.y172{bottom:124.987500px;}
.y233{bottom:126.084000px;}
.y188{bottom:126.112500px;}
.y21b{bottom:126.120000px;}
.y25a{bottom:127.170000px;}
.y11f{bottom:127.215000px;}
.y11a{bottom:127.230000px;}
.y1ae{bottom:127.237500px;}
.y21c{bottom:127.245000px;}
.y234{bottom:127.254000px;}
.y261{bottom:128.310000px;}
.y243{bottom:128.355000px;}
.yc0{bottom:128.362500px;}
.yd5{bottom:128.391000px;}
.y10e{bottom:129.487500px;}
.y232{bottom:129.516000px;}
.yb2{bottom:131.737500px;}
.ybf{bottom:132.862500px;}
.y273{bottom:133.987500px;}
.y48{bottom:135.112500px;}
.y1c2{bottom:136.237500px;}
.y246{bottom:136.266000px;}
.y115{bottom:140.775000px;}
.y216{bottom:144.150000px;}
.ybe{bottom:146.400000px;}
.y1e6{bottom:147.525000px;}
.y17{bottom:148.650000px;}
.y170{bottom:149.775000px;}
.yb1{bottom:150.900000px;}
.yfc{bottom:153.150000px;}
.y258{bottom:154.215000px;}
.y259{bottom:155.340000px;}
.y238{bottom:155.355000px;}
.y1f1{bottom:155.400000px;}
.y119{bottom:156.480000px;}
.y131{bottom:156.495000px;}
.yb0{bottom:156.525000px;}
.y1ad{bottom:158.775000px;}
.y205{bottom:161.025000px;}
.y135{bottom:162.135000px;}
.y90{bottom:162.150000px;}
.y1fb{bottom:163.275000px;}
.yc7{bottom:165.525000px;}
.y244{bottom:166.635000px;}
.y187{bottom:166.650000px;}
.y1c1{bottom:167.775000px;}
.yaf{bottom:168.900000px;}
.y1df{bottom:171.150000px;}
.yd1{bottom:172.275000px;}
.y47{bottom:173.400000px;}
.y215{bottom:175.650000px;}
.y18c{bottom:176.775000px;}
.y21d{bottom:177.885000px;}
.y21a{bottom:177.930000px;}
.y299{bottom:179.055000px;}
.y13d{bottom:180.180000px;}
.y16f{bottom:181.305000px;}
.y153{bottom:182.430000px;}
.yfb{bottom:183.555000px;}
.y118{bottom:184.635000px;}
.y130{bottom:184.665000px;}
.y79{bottom:184.680000px;}
.y1f0{bottom:185.805000px;}
.y1e5{bottom:191.430000px;}
.y8f{bottom:192.570000px;}
.y16{bottom:193.695000px;}
.y1fa{bottom:194.820000px;}
.yc6{bottom:195.945000px;}
.y2d5{bottom:197.070000px;}
.y1c0{bottom:198.195000px;}
.y1d2{bottom:199.320000px;}
.y1ac{bottom:201.570000px;}
.y292{bottom:202.695000px;}
.y2a1{bottom:204.945000px;}
.y10d{bottom:207.195000px;}
.y18b{bottom:208.320000px;}
.y28a{bottom:210.570000px;}
.y117{bottom:211.665000px;}
.y46{bottom:211.695000px;}
.y20d{bottom:212.820000px;}
.y1de{bottom:213.945000px;}
.y78{bottom:215.070000px;}
.ycd{bottom:217.410000px;}
.y186{bottom:218.475000px;}
.y19f{bottom:221.850000px;}
.y204{bottom:222.975000px;}
.y8e{bottom:224.100000px;}
.y152{bottom:225.225000px;}
.y214{bottom:226.350000px;}
.yc5{bottom:227.475000px;}
.y1ef{bottom:229.725000px;}
.y1d1{bottom:230.850000px;}
.y257{bottom:232.035000px;}
.y1ab{bottom:233.100000px;}
.y1e4{bottom:234.225000px;}
.y10c{bottom:237.600000px;}
.y26a{bottom:237.660000px;}
.y161{bottom:238.725000px;}
.y2a7{bottom:240.975000px;}
.y15{bottom:242.100000px;}
.ybd{bottom:243.225000px;}
.y185{bottom:244.350000px;}
.yfa{bottom:245.475000px;}
.y77{bottom:246.600000px;}
.yae{bottom:247.725000px;}
.y2d2{bottom:247.785000px;}
.y2a0{bottom:248.850000px;}
.y184{bottom:249.975000px;}
.y45{bottom:251.100000px;}
.y8d{bottom:254.475000px;}
.y151{bottom:256.770000px;}
.yc4{bottom:257.880000px;}
.y1d0{bottom:261.255000px;}
.y1aa{bottom:263.520000px;}
.y183{bottom:264.630000px;}
.y1e3{bottom:265.755000px;}
.y1bf{bottom:266.895000px;}
.y213{bottom:269.130000px;}
.y217{bottom:270.270000px;}
.y1ee{bottom:272.505000px;}
.ybc{bottom:273.645000px;}
.y2a6{bottom:274.755000px;}
.y20c{bottom:275.880000px;}
.y76{bottom:277.020000px;}
.y12f{bottom:277.035000px;}
.yad{bottom:279.255000px;}
.y10b{bottom:280.395000px;}
.y2f{bottom:281.505000px;}
.y160{bottom:282.630000px;}
.y8c{bottom:286.005000px;}
.y14{bottom:287.145000px;}
.y27e{bottom:288.255000px;}
.y44{bottom:289.380000px;}
.y2d0{bottom:289.410000px;}
.y1cf{bottom:292.755000px;}
.y19e{bottom:295.005000px;}
.y274{bottom:296.175000px;}
.y289{bottom:297.300000px;}
.y16e{bottom:298.425000px;}
.y150{bottom:299.550000px;}
.ycc{bottom:301.800000px;}
.y1be{bottom:302.925000px;}
.ybb{bottom:305.175000px;}
.y2e{bottom:306.300000px;}
.y75{bottom:308.550000px;}
.yac{bottom:309.675000px;}
.y29f{bottom:310.800000px;}
.y10a{bottom:311.925000px;}
.y18a{bottom:313.050000px;}
.y203{bottom:316.425000px;}
.y8b{bottom:317.550000px;}
.y27d{bottom:318.675000px;}
.y182{bottom:319.800000px;}
.y96{bottom:320.925000px;}
.y269{bottom:322.050000px;}
.y15f{bottom:325.425000px;}
.y19d{bottom:326.550000px;}
.y43{bottom:327.675000px;}
.y16d{bottom:328.800000px;}
.y14f{bottom:331.050000px;}
.ycb{bottom:332.175000px;}
.y13{bottom:333.300000px;}
.y1ed{bottom:334.425000px;}
.y13c{bottom:335.550000px;}
.y1a9{bottom:337.845000px;}
.yf9{bottom:338.955000px;}
.y74{bottom:340.080000px;}
.yab{bottom:341.220000px;}
.y1dd{bottom:343.455000px;}
.y189{bottom:344.595000px;}
.y8a{bottom:347.970000px;}
.y181{bottom:350.205000px;}
.y2d{bottom:351.345000px;}
.y2ce{bottom:352.455000px;}
.y109{bottom:354.720000px;}
.y15e{bottom:356.955000px;}
.y19c{bottom:358.095000px;}
.y16c{bottom:360.330000px;}
.y14e{bottom:361.470000px;}
.y219{bottom:362.580000px;}
.y95{bottom:363.705000px;}
.y42{bottom:365.955000px;}
.y1ce{bottom:367.080000px;}
.y20b{bottom:368.220000px;}
.yf8{bottom:370.455000px;}
.yaa{bottom:372.705000px;}
.y1dc{bottom:373.830000px;}
.yca{bottom:374.970000px;}
.y12{bottom:378.375000px;}
.yba{bottom:379.500000px;}
.y1a8{bottom:380.625000px;}
.y180{bottom:381.750000px;}
.y73{bottom:382.875000px;}
.y1f9{bottom:386.250000px;}
.y15d{bottom:387.375000px;}
.y19b{bottom:388.500000px;}
.y298{bottom:389.625000px;}
.y89{bottom:390.750000px;}
.y14d{bottom:393.000000px;}
.y2c{bottom:394.125000px;}
.y1ec{bottom:396.375000px;}
.y108{bottom:398.625000px;}
.y20a{bottom:399.750000px;}
.y2e4{bottom:402.000000px;}
.ya9{bottom:403.125000px;}
.y41{bottom:404.250000px;}
.y1db{bottom:405.375000px;}
.yc9{bottom:406.500000px;}
.yb9{bottom:409.875000px;}
.y1a7{bottom:412.125000px;}
.yf7{bottom:413.250000px;}
.y72{bottom:414.375000px;}
.y29e{bottom:415.545000px;}
.y1f8{bottom:416.655000px;}
.y291{bottom:417.795000px;}
.y15c{bottom:418.920000px;}
.y19a{bottom:420.030000px;}
.y11{bottom:421.170000px;}
.y88{bottom:422.280000px;}
.y14c{bottom:424.545000px;}
.y2b{bottom:425.655000px;}
.y288{bottom:426.780000px;}
.y268{bottom:427.920000px;}
.y107{bottom:429.030000px;}
.y1bd{bottom:431.295000px;}
.y256{bottom:432.405000px;}
.y1da{bottom:435.780000px;}
.yc8{bottom:438.045000px;}
.y1eb{bottom:440.280000px;}
.y40{bottom:441.420000px;}
.y1a6{bottom:442.530000px;}
.y17f{bottom:443.655000px;}
.y71{bottom:444.795000px;}
.ya8{bottom:445.905000px;}
.y27c{bottom:447.030000px;}
.y1f7{bottom:448.170000px;}
.y15b{bottom:449.280000px;}
.y199{bottom:450.405000px;}
.y297{bottom:451.545000px;}
.y87{bottom:453.780000px;}
.y14b{bottom:454.950000px;}
.y2a{bottom:456.075000px;}
.yc3{bottom:457.200000px;}
.y267{bottom:458.325000px;}
.y106{bottom:460.575000px;}
.y209{bottom:461.700000px;}
.y10{bottom:462.825000px;}
.y1d9{bottom:467.325000px;}
.y94{bottom:468.450000px;}
.y287{bottom:469.575000px;}
.y2e3{bottom:470.700000px;}
.y13b{bottom:471.825000px;}
.yf6{bottom:475.200000px;}
.y114{bottom:476.325000px;}
.ya7{bottom:477.450000px;}
.y2ca{bottom:478.575000px;}
.y3f{bottom:479.700000px;}
.y15a{bottom:480.825000px;}
.y198{bottom:481.950000px;}
.y1ea{bottom:483.075000px;}
.yb8{bottom:484.200000px;}
.y29{bottom:487.575000px;}
.y266{bottom:489.825000px;}
.y1cd{bottom:490.950000px;}
.y208{bottom:493.200000px;}
.y14a{bottom:497.745000px;}
.y1d8{bottom:498.870000px;}
.y93{bottom:499.980000px;}
.yf{bottom:503.355000px;}
.y290{bottom:504.495000px;}
.y12b{bottom:505.545000px;}
.y129{bottom:505.605000px;}
.y1bc{bottom:505.620000px;}
.y113{bottom:506.730000px;}
.ya6{bottom:508.995000px;}
.y1f6{bottom:510.105000px;}
.y212{bottom:512.370000px;}
.y197{bottom:513.480000px;}
.yb7{bottom:515.745000px;}
.y3e{bottom:517.995000px;}
.y70{bottom:519.120000px;}
.y265{bottom:521.370000px;}
.y1cc{bottom:522.495000px;}
.y159{bottom:523.605000px;}
.y1e9{bottom:525.870000px;}
.y149{bottom:529.245000px;}
.y28{bottom:530.355000px;}
.y27b{bottom:532.620000px;}
.y202{bottom:533.730000px;}
.y105{bottom:534.900000px;}
.y207{bottom:536.025000px;}
.y1bb{bottom:537.150000px;}
.y2e2{bottom:539.400000px;}
.y2a5{bottom:540.525000px;}
.y1f5{bottom:541.650000px;}
.y2c7{bottom:541.680000px;}
.y211{bottom:542.775000px;}
.y196{bottom:543.900000px;}
.ye{bottom:545.025000px;}
.y16b{bottom:546.150000px;}
.y28f{bottom:547.275000px;}
.yb6{bottom:549.525000px;}
.y6f{bottom:550.650000px;}
.ya5{bottom:551.775000px;}
.y272{bottom:552.900000px;}
.y1cb{bottom:554.025000px;}
.y158{bottom:555.150000px;}
.y3d{bottom:556.275000px;}
.y1e8{bottom:557.400000px;}
.y148{bottom:560.775000px;}
.y27{bottom:561.900000px;}
.y29d{bottom:564.150000px;}
.y104{bottom:565.275000px;}
.y1ba{bottom:567.525000px;}
.y255{bottom:568.650000px;}
.y2a4{bottom:570.900000px;}
.y1f4{bottom:572.025000px;}
.y2e1{bottom:573.150000px;}
.y210{bottom:574.320000px;}
.y206{bottom:575.445000px;}
.y27a{bottom:576.570000px;}
.y6e{bottom:581.070000px;}
.ya4{bottom:582.195000px;}
.y17e{bottom:583.320000px;}
.y1ca{bottom:584.445000px;}
.y157{bottom:585.570000px;}
.y195{bottom:586.695000px;}
.yd{bottom:587.820000px;}
.y16a{bottom:590.070000px;}
.y1d7{bottom:591.195000px;}
.y26{bottom:592.320000px;}
.yc2{bottom:593.445000px;}
.y1a5{bottom:594.570000px;}
.y3c{bottom:595.695000px;}
.y103{bottom:596.820000px;}
.y1b9{bottom:599.070000px;}
.y1e7{bottom:600.195000px;}
.y2a3{bottom:602.445000px;}
.y147{bottom:603.570000px;}
.y86{bottom:604.695000px;}
.y296{bottom:606.945000px;}
.y61{bottom:608.070000px;}
.y1af{bottom:610.320000px;}
.y6d{bottom:612.570000px;}
.y54{bottom:613.725000px;}
.y17d{bottom:614.850000px;}
.y1c9{bottom:615.975000px;}
.y156{bottom:617.100000px;}
.y194{bottom:618.225000px;}
.y279{bottom:619.350000px;}
.y126{bottom:620.430000px;}
.y124{bottom:620.475000px;}
.y1d6{bottom:622.725000px;}
.y25{bottom:623.850000px;}
.y1a4{bottom:626.100000px;}
.y201{bottom:627.225000px;}
.y1b8{bottom:630.600000px;}
.yc{bottom:631.725000px;}
.y271{bottom:632.850000px;}
.y3b{bottom:633.975000px;}
.y1f3{bottom:635.100000px;}
.y85{bottom:636.225000px;}
.y295{bottom:638.475000px;}
.y102{bottom:639.600000px;}
.y286{bottom:641.850000px;}
.y6c{bottom:642.975000px;}
.y241{bottom:644.100000px;}
.ya3{bottom:645.225000px;}
.y1c8{bottom:646.350000px;}
.y155{bottom:648.600000px;}
.y193{bottom:649.725000px;}
.y169{bottom:651.975000px;}
.y53{bottom:653.130000px;}
.y1d5{bottom:654.270000px;}
.y24{bottom:655.380000px;}
.y1a3{bottom:656.505000px;}
.y17c{bottom:657.645000px;}
.y200{bottom:658.755000px;}
.y278{bottom:662.130000px;}
.y3a{bottom:664.395000px;}
.y146{bottom:665.505000px;}
.y92{bottom:666.630000px;}
.y294{bottom:668.880000px;}
.y101{bottom:671.145000px;}
.y23e{bottom:672.330000px;}
.y254{bottom:673.380000px;}
.y2dd{bottom:673.455000px;}
.yb{bottom:674.520000px;}
.ya2{bottom:675.630000px;}
.y264{bottom:676.755000px;}
.y1c7{bottom:677.895000px;}
.y84{bottom:679.005000px;}
.y231{bottom:682.380000px;}
.y168{bottom:683.505000px;}
.yf3{bottom:683.580000px;}
.y285{bottom:684.645000px;}
.y23{bottom:685.755000px;}
.y6b{bottom:686.880000px;}
.y1a2{bottom:688.020000px;}
.y52{bottom:691.395000px;}
.y192{bottom:692.550000px;}
.y29c{bottom:693.675000px;}
.y60{bottom:695.925000px;}
.y145{bottom:697.050000px;}
.y91{bottom:698.175000px;}
.y17b{bottom:700.425000px;}
.y100{bottom:701.550000px;}
.y23c{bottom:701.580000px;}
.y39{bottom:703.800000px;}
.y253{bottom:704.925000px;}
.y11e{bottom:706.080000px;}
.ya1{bottom:707.175000px;}
.y218{bottom:708.300000px;}
.y83{bottom:710.550000px;}
.y167{bottom:713.925000px;}
.y284{bottom:716.175000px;}
.y22{bottom:717.300000px;}
.y1a1{bottom:719.550000px;}
.y2c0{bottom:719.580000px;}
.y1c6{bottom:720.675000px;}
.y1ff{bottom:721.800000px;}
.y191{bottom:722.925000px;}
.ya{bottom:725.175000px;}
.y5f{bottom:726.300000px;}
.yef{bottom:727.455000px;}
.y51{bottom:729.675000px;}
.y17a{bottom:731.925000px;}
.yff{bottom:733.080000px;}
.y252{bottom:735.345000px;}
.y277{bottom:736.455000px;}
.y2dc{bottom:736.470000px;}
.ya0{bottom:737.595000px;}
.y144{bottom:739.830000px;}
.y82{bottom:740.970000px;}
.y38{bottom:742.095000px;}
.y230{bottom:744.345000px;}
.y283{bottom:746.580000px;}
.y112{bottom:748.845000px;}
.y1a0{bottom:749.955000px;}
.y6a{bottom:752.220000px;}
.y1fe{bottom:753.330000px;}
.y190{bottom:754.470000px;}
.y166{bottom:756.720000px;}
.y5e{bottom:757.845000px;}
.y21{bottom:760.095000px;}
.y28e{bottom:762.345000px;}
.yfe{bottom:763.470000px;}
.y50{bottom:767.970000px;}
.y143{bottom:770.205000px;}
.y81{bottom:772.500000px;}
.y2ab{bottom:773.625000px;}
.y1d4{bottom:774.750000px;}
.y282{bottom:778.125000px;}
.y111{bottom:779.250000px;}
.y37{bottom:780.375000px;}
.y9f{bottom:781.500000px;}
.y69{bottom:782.625000px;}
.y9{bottom:783.750000px;}
.yec{bottom:784.875000px;}
.y18f{bottom:786.000000px;}
.y24f{bottom:787.125000px;}
.y165{bottom:788.250000px;}
.y2af{bottom:789.375000px;}
.y20{bottom:791.625000px;}
.y179{bottom:793.875000px;}
.y13a{bottom:795.000000px;}
.y2aa{bottom:796.125000px;}
.y1b7{bottom:799.500000px;}
.y5d{bottom:800.625000px;}
.y142{bottom:801.750000px;}
.y80{bottom:804.000000px;}
.y28d{bottom:805.125000px;}
.y4f{bottom:807.375000px;}
.y1d3{bottom:808.500000px;}
.yb5{bottom:809.625000px;}
.y276{bottom:810.750000px;}
.y9e{bottom:811.920000px;}
.y1c5{bottom:814.170000px;}
.y1fd{bottom:815.295000px;}
.y18e{bottom:816.420000px;}
.y24e{bottom:816.465000px;}
.y239{bottom:818.715000px;}
.y36{bottom:819.795000px;}
.y281{bottom:820.920000px;}
.y1f{bottom:822.045000px;}
.y2ae{bottom:823.170000px;}
.y2ba{bottom:824.340000px;}
.y68{bottom:826.545000px;}
.y1b6{bottom:829.920000px;}
.ye8{bottom:829.965000px;}
.y5c{bottom:832.170000px;}
.y141{bottom:833.295000px;}
.y7f{bottom:834.420000px;}
.y178{bottom:836.670000px;}
.yfd{bottom:837.795000px;}
.y22b{bottom:837.840000px;}
.y8{bottom:841.170000px;}
.y9d{bottom:843.420000px;}
.y4e{bottom:845.670000px;}
.y24c{bottom:845.715000px;}
.y1fc{bottom:846.795000px;}
.y1c4{bottom:847.920000px;}
.y28c{bottom:849.045000px;}
.y237{bottom:849.090000px;}
.y164{bottom:850.170000px;}
.y18d{bottom:851.325000px;}
.y116{bottom:851.340000px;}
.y1e{bottom:853.575000px;}
.y139{bottom:856.950000px;}
.y35{bottom:858.075000px;}
.y1b5{bottom:861.450000px;}
.y2da{bottom:862.590000px;}
.y5b{bottom:863.700000px;}
.y7e{bottom:865.950000px;}
.y177{bottom:868.200000px;}
.y67{bottom:869.325000px;}
.y227{bottom:871.590000px;}
.y29b{bottom:872.700000px;}
.y9c{bottom:873.825000px;}
.ye4{bottom:874.965000px;}
.y1e2{bottom:877.200000px;}
.y4d{bottom:881.700000px;}
.y1c3{bottom:882.825000px;}
.y1d{bottom:883.950000px;}
.y110{bottom:885.075000px;}
.y2b5{bottom:887.340000px;}
.y138{bottom:888.450000px;}
.y28b{bottom:891.870000px;}
.y1b4{bottom:892.995000px;}
.y5a{bottom:894.120000px;}
.y140{bottom:895.245000px;}
.y34{bottom:896.370000px;}
.y66{bottom:899.745000px;}
.y2a9{bottom:900.870000px;}
.y7{bottom:903.120000px;}
.y2d9{bottom:904.230000px;}
.y29a{bottom:904.245000px;}
.y9b{bottom:905.370000px;}
.y280{bottom:907.620000px;}
.y1e1{bottom:908.745000px;}
.y163{bottom:915.495000px;}
.y4c{bottom:917.745000px;}
.y1c{bottom:918.870000px;}
.ye2{bottom:919.980000px;}
.y1b3{bottom:923.370000px;}
.y59{bottom:925.620000px;}
.y2ad{bottom:926.745000px;}
.y7d{bottom:927.870000px;}
.y176{bottom:930.120000px;}
.y65{bottom:931.275000px;}
.y270{bottom:933.525000px;}
.y33{bottom:934.650000px;}
.y9a{bottom:936.900000px;}
.y1e0{bottom:940.275000px;}
.y162{bottom:947.025000px;}
.y27f{bottom:950.400000px;}
.y1b{bottom:952.650000px;}
.y4b{bottom:953.775000px;}
.y58{bottom:956.025000px;}
.y13f{bottom:957.150000px;}
.y7c{bottom:959.400000px;}
.y2ac{bottom:960.525000px;}
.y6{bottom:961.650000px;}
.y64{bottom:962.775000px;}
.ydd{bottom:963.900000px;}
.y1b2{bottom:966.150000px;}
.y99{bottom:967.275000px;}
.y2a8{bottom:969.525000px;}
.y154{bottom:970.695000px;}
.y2b2{bottom:970.740000px;}
.y32{bottom:974.070000px;}
.y20f{bottom:977.445000px;}
.y57{bottom:987.570000px;}
.y225{bottom:987.615000px;}
.y4a{bottom:988.695000px;}
.y2d6{bottom:988.740000px;}
.y7b{bottom:989.820000px;}
.y260{bottom:989.865000px;}
.y13e{bottom:992.070000px;}
.y248{bottom:992.115000px;}
.y63{bottom:993.195000px;}
.y1a{bottom:995.445000px;}
.y1b1{bottom:997.695000px;}
.y98{bottom:998.820000px;}
.yb4{bottom:1002.195000px;}
.y31{bottom:1007.820000px;}
.y2b1{bottom:1014.600000px;}
.y5{bottom:1015.725000px;}
.y224{bottom:1020.240000px;}
.y56{bottom:1021.350000px;}
.yd8{bottom:1022.490000px;}
.y49{bottom:1025.850000px;}
.y62{bottom:1028.100000px;}
.y19{bottom:1029.225000px;}
.y7a{bottom:1032.600000px;}
.y174{bottom:1035.975000px;}
.y1b0{bottom:1037.100000px;}
.y175{bottom:1041.600000px;}
.y55{bottom:1056.255000px;}
.y30{bottom:1061.880000px;}
.y2b0{bottom:1063.005000px;}
.y4{bottom:1064.130000px;}
.y173{bottom:1065.255000px;}
.y97{bottom:1069.755000px;}
.y1{bottom:1118.175000px;}
.y18{bottom:1120.425000px;}
.h55{height:23.595000px;}
.h4f{height:24.705000px;}
.h4e{height:28.065000px;}
.h39{height:28.080000px;}
.h4d{height:28.116000px;}
.h46{height:28.117500px;}
.h41{height:28.125000px;}
.h3e{height:28.162500px;}
.h3d{height:29.212500px;}
.h4a{height:29.235000px;}
.h49{height:29.287500px;}
.h32{height:30.367500px;}
.h35{height:31.477500px;}
.h36{height:31.537500px;}
.he{height:39.748535px;}
.h5d{height:40.500000px;}
.h5b{height:40.537500px;}
.h59{height:41.602500px;}
.h5c{height:41.610000px;}
.h52{height:41.662500px;}
.h1d{height:42.712500px;}
.h17{height:42.750000px;}
.h1b{height:43.852500px;}
.h16{height:43.860000px;}
.h1a{height:43.875000px;}
.h1c{height:43.912500px;}
.h10{height:48.557373px;}
.h1e{height:48.581543px;}
.hd{height:49.886719px;}
.h12{height:56.227500px;}
.h13{height:56.232000px;}
.h15{height:56.250000px;}
.h31{height:57.375000px;}
.h9{height:57.385986px;}
.h4b{height:57.412500px;}
.h11{height:57.414551px;}
.h18{height:57.450000px;}
.h4c{height:57.516000px;}
.h29{height:60.512695px;}
.h51{height:61.852500px;}
.h5e{height:61.860000px;}
.h53{height:61.875000px;}
.h57{height:61.912500px;}
.h56{height:61.950000px;}
.h58{height:63.000000px;}
.h2b{height:64.546875px;}
.h14{height:66.214600px;}
.hb{height:66.247559px;}
.h7{height:68.027344px;}
.h2d{height:69.379363px;}
.hf{height:70.628906px;}
.h1{height:70.664062px;}
.h6{height:72.562500px;}
.h2c{height:74.004654px;}
.h2a{height:77.097656px;}
.h54{height:82.200000px;}
.h50{height:83.347500px;}
.ha{height:84.060791px;}
.h42{height:85.500000px;}
.h23{height:85.575000px;}
.h24{height:85.641000px;}
.h8{height:86.319141px;}
.h5a{height:90.000000px;}
.h19{height:92.893799px;}
.h2{height:95.389453px;}
.h5{height:106.090503px;}
.h4{height:108.994922px;}
.h43{height:113.625000px;}
.h26{height:113.700000px;}
.h25{height:113.706000px;}
.h34{height:113.719500px;}
.h33{height:113.722500px;}
.h28{height:113.737500px;}
.h27{height:113.766000px;}
.h3a{height:114.832500px;}
.h3b{height:114.834000px;}
.h3c{height:114.891000px;}
.h3{height:122.600391px;}
.h2f{height:141.843000px;}
.h2e{height:141.846000px;}
.h37{height:141.871500px;}
.h30{height:141.891000px;}
.h20{height:142.957500px;}
.h21{height:142.959000px;}
.h3f{height:143.001000px;}
.h40{height:143.005500px;}
.h22{height:143.016000px;}
.h44{height:169.965000px;}
.h45{height:170.010000px;}
.h48{height:171.090000px;}
.h47{height:171.105000px;}
.h38{height:171.135000px;}
.h1f{height:227.385000px;}
.hc{height:1187.864910px;}
.h0{height:1188.000000px;}
.w7{width:76.581000px;}
.w6{width:93.375000px;}
.w5{width:94.582500px;}
.w3{width:113.737500px;}
.w4{width:113.766000px;}
.w8{width:119.362500px;}
.wb{width:146.382000px;}
.we{width:147.507000px;}
.w10{width:174.501000px;}
.w13{width:174.510000px;}
.w14{width:174.600000px;}
.w11{width:175.725000px;}
.w12{width:175.785000px;}
.w2{width:337.905000px;}
.wc{width:551.925000px;}
.wd{width:551.955000px;}
.wf{width:553.050000px;}
.w9{width:580.065000px;}
.wa{width:580.080000px;}
.w1{width:917.859375px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x33{left:6.765000px;}
.x1d{left:7.875000px;}
.x4e{left:9.000000px;}
.x4b{left:10.125000px;}
.x55{left:11.250000px;}
.x48{left:12.375000px;}
.x57{left:13.500000px;}
.x27{left:14.670000px;}
.x4f{left:15.750000px;}
.x22{left:16.890000px;}
.x61{left:18.000000px;}
.x5e{left:20.250000px;}
.x53{left:21.375000px;}
.x54{left:22.500000px;}
.x25{left:23.610000px;}
.x1f{left:27.000000px;}
.x60{left:28.125000px;}
.x49{left:31.537500px;}
.x23{left:33.765000px;}
.x52{left:34.912500px;}
.x47{left:36.037500px;}
.x5d{left:38.287500px;}
.x4c{left:40.537500px;}
.x58{left:42.780000px;}
.x51{left:45.030000px;}
.x20{left:46.155000px;}
.x62{left:47.280000px;}
.x50{left:48.405000px;}
.x29{left:51.825000px;}
.x5f{left:52.905000px;}
.x2d{left:54.075000px;}
.x4d{left:56.280000px;}
.x4a{left:57.405000px;}
.x28{left:60.795000px;}
.x2c{left:63.015000px;}
.x59{left:64.200000px;}
.x56{left:69.825000px;}
.x2a{left:70.935000px;}
.x2b{left:73.200000px;}
.x1{left:108.150000px;}
.x31{left:109.275000px;}
.x1a{left:113.775000px;}
.x3e{left:114.900000px;}
.x40{left:121.650000px;}
.x14{left:126.150000px;}
.x44{left:128.400000px;}
.x3d{left:135.150000px;}
.x5a{left:137.400000px;}
.x5c{left:138.480000px;}
.x15{left:140.812500px;}
.x3f{left:141.937500px;}
.x41{left:148.687500px;}
.x34{left:150.930000px;}
.x43{left:155.430000px;}
.x37{left:156.555000px;}
.x13{left:162.180000px;}
.x4{left:173.475000px;}
.x1b{left:183.459375px;}
.xd{left:185.850000px;}
.x42{left:189.225000px;}
.x1c{left:190.350000px;}
.xc{left:193.725000px;}
.x8{left:207.270000px;}
.xb{left:209.520000px;}
.x45{left:216.255000px;}
.x32{left:229.785000px;}
.xa{left:237.675000px;}
.x17{left:257.784375px;}
.x18{left:264.720000px;}
.x5{left:270.330000px;}
.x46{left:283.845000px;}
.x7{left:292.875000px;}
.x3a{left:307.359375px;}
.x3b{left:314.250000px;}
.x19{left:324.405000px;}
.x9{left:325.545000px;}
.xf{left:348.030000px;}
.x11{left:353.700000px;}
.x3{left:385.245000px;}
.x10{left:398.745000px;}
.xe{left:403.230000px;}
.x35{left:433.509375px;}
.x36{left:440.400000px;}
.x1e{left:446.070000px;}
.x6{left:459.570000px;}
.x3c{left:469.695000px;}
.x21{left:559.830000px;}
.x12{left:595.845000px;}
.x2f{left:630.639375px;}
.x5b{left:635.340000px;}
.x30{left:637.530000px;}
.x38{left:645.279375px;}
.x39{left:652.170000px;}
.x24{left:654.465000px;}
.x26{left:747.900000px;}
.x2e{left:792.975000px;}
.x16{left:801.975000px;}
.x2{left:810.975000px;}
@media print{
.v1{vertical-align:-72.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-5.813333pt;}
.ls22{letter-spacing:-4.682667pt;}
.ls17{letter-spacing:-4.453333pt;}
.lsa{letter-spacing:-4.000000pt;}
.ls12{letter-spacing:-2.688000pt;}
.ls1d{letter-spacing:-2.208000pt;}
.ls6{letter-spacing:-2.000000pt;}
.ls29{letter-spacing:-1.792000pt;}
.lsc{letter-spacing:-1.312000pt;}
.ls23{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.416000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.416000pt;}
.ls26{letter-spacing:0.901333pt;}
.lsf{letter-spacing:0.965333pt;}
.ls15{letter-spacing:1.000000pt;}
.ls5{letter-spacing:1.002667pt;}
.ls21{letter-spacing:1.053333pt;}
.ls8{letter-spacing:1.162667pt;}
.ls2a{letter-spacing:1.669333pt;}
.ls28{letter-spacing:1.792000pt;}
.lse{letter-spacing:1.933333pt;}
.ls1f{letter-spacing:1.936000pt;}
.ls0{letter-spacing:2.000000pt;}
.ls25{letter-spacing:2.688000pt;}
.lsb{letter-spacing:3.584000pt;}
.ls10{letter-spacing:4.000000pt;}
.ls20{letter-spacing:7.973333pt;}
.ls9{letter-spacing:9.000000pt;}
.ls14{letter-spacing:9.106667pt;}
.ls11{letter-spacing:16.160000pt;}
.ls7{letter-spacing:20.000000pt;}
.ls16{letter-spacing:20.106667pt;}
.ls1e{letter-spacing:30.181333pt;}
.ls1a{letter-spacing:30.208000pt;}
.ls1b{letter-spacing:30.341333pt;}
.ls1c{letter-spacing:176.106667pt;}
.ls18{letter-spacing:176.266667pt;}
.ls1{letter-spacing:752.906667pt;}
.lsd{letter-spacing:752.960000pt;}
.ws14{word-spacing:-20.702667pt;}
.ws4{word-spacing:-20.196000pt;}
.ws11{word-spacing:-19.934667pt;}
.ws10{word-spacing:-18.688000pt;}
.ws12{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.000000pt;}
.wsd{word-spacing:-16.416000pt;}
.ws2{word-spacing:-16.002667pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.584000pt;}
.wsf{word-spacing:-15.104000pt;}
.ws6{word-spacing:-15.000000pt;}
.ws8{word-spacing:-14.688000pt;}
.ws13{word-spacing:-14.208000pt;}
.wse{word-spacing:-13.792000pt;}
.wsb{word-spacing:-13.312000pt;}
.ws3{word-spacing:-13.000000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-10.186667pt;}
.wsc{word-spacing:-8.546667pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-11.603067pt;}
._23{margin-left:-10.652667pt;}
._21{margin-left:-7.937067pt;}
._12{margin-left:-6.336800pt;}
._9{margin-left:-5.383333pt;}
._10{margin-left:-4.289200pt;}
._7{margin-left:-3.365333pt;}
._6{margin-left:-2.103333pt;}
._2{margin-left:-1.009600pt;}
._c{width:0.950800pt;}
._5{width:1.850933pt;}
._3{width:2.860533pt;}
._4{width:4.314000pt;}
._e{width:5.855067pt;}
._8{width:6.814800pt;}
._b{width:7.740267pt;}
._13{width:8.703333pt;}
._1b{width:9.795733pt;}
._a{width:11.442133pt;}
._11{width:12.584267pt;}
._29{width:13.537867pt;}
._24{width:15.035333pt;}
._27{width:16.951333pt;}
._1f{width:17.867067pt;}
._d{width:19.092000pt;}
._19{width:20.816133pt;}
._1a{width:22.412267pt;}
._17{width:23.977733pt;}
._1e{width:25.041600pt;}
._1c{width:26.513600pt;}
._16{width:28.168533pt;}
._25{width:29.828133pt;}
._28{width:31.289600pt;}
._18{width:32.625467pt;}
._31{width:33.812667pt;}
._14{width:35.458800pt;}
._26{width:36.514667pt;}
._1d{width:37.735467pt;}
._15{width:39.806133pt;}
._2b{width:40.795467pt;}
._2a{width:44.069467pt;}
._37{width:44.962667pt;}
._2e{width:47.742800pt;}
._2c{width:48.894000pt;}
._33{width:51.369733pt;}
._2f{width:52.340933pt;}
._35{width:56.023600pt;}
._30{width:56.926533pt;}
._34{width:63.879467pt;}
._2d{width:120.266667pt;}
._32{width:140.112933pt;}
._36{width:160.226133pt;}
._1{width:176.106667pt;}
._f{width:311.617333pt;}
._38{width:752.906667pt;}
._20{width:761.253200pt;}
._0{width:1910.240000pt;}
.fs8{font-size:36.000000pt;}
.fs7{font-size:44.000000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:52.000000pt;}
.fsb{font-size:56.000000pt;}
.fs2{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:68.000000pt;}
.fs5{font-size:76.133333pt;}
.fs1{font-size:84.133333pt;}
.fs4{font-size:96.133333pt;}
.fs3{font-size:108.133333pt;}
.y0{bottom:0.000000pt;}
.y2d4{bottom:3.946667pt;}
.y2c3{bottom:3.973333pt;}
.y2cd{bottom:3.986667pt;}
.y2bf{bottom:4.000000pt;}
.y2b9{bottom:4.026667pt;}
.y2bd{bottom:4.960000pt;}
.y2c9{bottom:4.973333pt;}
.y2cf{bottom:5.013333pt;}
.y2b4{bottom:5.960000pt;}
.y2c8{bottom:6.973333pt;}
.y2b3{bottom:7.960000pt;}
.yea{bottom:8.960000pt;}
.ye6{bottom:8.986667pt;}
.yee{bottom:9.000000pt;}
.ye3{bottom:9.013333pt;}
.yd3{bottom:9.026667pt;}
.y23a{bottom:10.960000pt;}
.y26e{bottom:10.974667pt;}
.y250{bottom:11.000000pt;}
.y247{bottom:11.008000pt;}
.y242{bottom:11.026667pt;}
.y24b{bottom:11.040000pt;}
.y23f{bottom:11.933333pt;}
.yd0{bottom:11.946667pt;}
.y23b{bottom:11.960000pt;}
.yf5{bottom:11.973333pt;}
.y26f{bottom:11.974667pt;}
.yda{bottom:11.986667pt;}
.y251{bottom:12.000000pt;}
.yd7{bottom:12.008000pt;}
.yf1{bottom:12.013333pt;}
.y128{bottom:12.040000pt;}
.y12e{bottom:12.066667pt;}
.y240{bottom:12.933333pt;}
.yeb{bottom:12.960000pt;}
.y123{bottom:12.973333pt;}
.y223{bottom:12.974667pt;}
.ye7{bottom:12.986667pt;}
.yed{bottom:13.000000pt;}
.yd4{bottom:13.026667pt;}
.ydf{bottom:13.040000pt;}
.y26c{bottom:13.053333pt;}
.y226{bottom:13.960000pt;}
.y22c{bottom:13.986667pt;}
.y22e{bottom:14.040000pt;}
.y22d{bottom:14.986667pt;}
.y22f{bottom:15.040000pt;}
.ydb{bottom:19.986667pt;}
.yf2{bottom:20.000000pt;}
.ye1{bottom:21.040000pt;}
.y2db{bottom:21.986667pt;}
.y2c6{bottom:22.040000pt;}
.y2bc{bottom:22.960000pt;}
.y2df{bottom:22.973333pt;}
.y2d3{bottom:22.986667pt;}
.y2be{bottom:23.000000pt;}
.y2c2{bottom:23.013333pt;}
.y2b8{bottom:23.026667pt;}
.y2cc{bottom:23.040000pt;}
.ydc{bottom:24.013333pt;}
.yf4{bottom:24.973333pt;}
.yd6{bottom:25.008000pt;}
.ye0{bottom:25.040000pt;}
.ye9{bottom:25.986667pt;}
.ye5{bottom:26.026667pt;}
.yd2{bottom:26.040000pt;}
.yce{bottom:35.973333pt;}
.ycf{bottom:36.973333pt;}
.y24d{bottom:36.986667pt;}
.yf0{bottom:37.000000pt;}
.y221{bottom:37.008000pt;}
.yd9{bottom:37.013333pt;}
.y22a{bottom:37.026667pt;}
.y26b{bottom:37.040000pt;}
.y127{bottom:37.066667pt;}
.y24a{bottom:37.986667pt;}
.y222{bottom:38.008000pt;}
.y122{bottom:38.013333pt;}
.y11d{bottom:38.026667pt;}
.yde{bottom:38.040000pt;}
.y137{bottom:38.053333pt;}
.y21f{bottom:38.080000pt;}
.y12d{bottom:38.093333pt;}
.y2de{bottom:40.973333pt;}
.y2bb{bottom:40.986667pt;}
.y2c1{bottom:41.013333pt;}
.y2c5{bottom:41.026667pt;}
.y2cb{bottom:41.040000pt;}
.y2b7{bottom:41.053333pt;}
.y2d1{bottom:42.040000pt;}
.y2d8{bottom:47.986667pt;}
.y3{bottom:51.033333pt;}
.y2e0{bottom:59.053333pt;}
.y2c4{bottom:59.066667pt;}
.y2b6{bottom:60.053333pt;}
.y125{bottom:62.026667pt;}
.y263{bottom:62.986667pt;}
.y249{bottom:63.013333pt;}
.y11c{bottom:63.026667pt;}
.y25f{bottom:63.034667pt;}
.y121{bottom:63.040000pt;}
.y236{bottom:63.048000pt;}
.y133{bottom:63.053333pt;}
.y136{bottom:63.080000pt;}
.y12c{bottom:63.133333pt;}
.y2d7{bottom:66.013333pt;}
.y2{bottom:70.066667pt;}
.y228{bottom:87.053333pt;}
.y12a{bottom:87.080000pt;}
.y134{bottom:87.106667pt;}
.y25b{bottom:88.013333pt;}
.y23d{bottom:88.040000pt;}
.y25d{bottom:88.048000pt;}
.y11b{bottom:88.053333pt;}
.y235{bottom:88.074667pt;}
.y132{bottom:88.080000pt;}
.y229{bottom:88.093333pt;}
.y245{bottom:88.106667pt;}
.y21e{bottom:88.120000pt;}
.y262{bottom:89.026667pt;}
.y120{bottom:89.040000pt;}
.y25e{bottom:89.048000pt;}
.yc1{bottom:98.100000pt;}
.yb3{bottom:100.100000pt;}
.y10f{bottom:102.100000pt;}
.y25c{bottom:102.125333pt;}
.y293{bottom:103.100000pt;}
.y275{bottom:104.100000pt;}
.y26d{bottom:104.125333pt;}
.y171{bottom:105.100000pt;}
.y220{bottom:105.125333pt;}
.y2a2{bottom:106.100000pt;}
.y20e{bottom:107.100000pt;}
.y1f2{bottom:110.100000pt;}
.y172{bottom:111.100000pt;}
.y233{bottom:112.074667pt;}
.y188{bottom:112.100000pt;}
.y21b{bottom:112.106667pt;}
.y25a{bottom:113.040000pt;}
.y11f{bottom:113.080000pt;}
.y11a{bottom:113.093333pt;}
.y1ae{bottom:113.100000pt;}
.y21c{bottom:113.106667pt;}
.y234{bottom:113.114667pt;}
.y261{bottom:114.053333pt;}
.y243{bottom:114.093333pt;}
.yc0{bottom:114.100000pt;}
.yd5{bottom:114.125333pt;}
.y10e{bottom:115.100000pt;}
.y232{bottom:115.125333pt;}
.yb2{bottom:117.100000pt;}
.ybf{bottom:118.100000pt;}
.y273{bottom:119.100000pt;}
.y48{bottom:120.100000pt;}
.y1c2{bottom:121.100000pt;}
.y246{bottom:121.125333pt;}
.y115{bottom:125.133333pt;}
.y216{bottom:128.133333pt;}
.ybe{bottom:130.133333pt;}
.y1e6{bottom:131.133333pt;}
.y17{bottom:132.133333pt;}
.y170{bottom:133.133333pt;}
.yb1{bottom:134.133333pt;}
.yfc{bottom:136.133333pt;}
.y258{bottom:137.080000pt;}
.y259{bottom:138.080000pt;}
.y238{bottom:138.093333pt;}
.y1f1{bottom:138.133333pt;}
.y119{bottom:139.093333pt;}
.y131{bottom:139.106667pt;}
.yb0{bottom:139.133333pt;}
.y1ad{bottom:141.133333pt;}
.y205{bottom:143.133333pt;}
.y135{bottom:144.120000pt;}
.y90{bottom:144.133333pt;}
.y1fb{bottom:145.133333pt;}
.yc7{bottom:147.133333pt;}
.y244{bottom:148.120000pt;}
.y187{bottom:148.133333pt;}
.y1c1{bottom:149.133333pt;}
.yaf{bottom:150.133333pt;}
.y1df{bottom:152.133333pt;}
.yd1{bottom:153.133333pt;}
.y47{bottom:154.133333pt;}
.y215{bottom:156.133333pt;}
.y18c{bottom:157.133333pt;}
.y21d{bottom:158.120000pt;}
.y21a{bottom:158.160000pt;}
.y299{bottom:159.160000pt;}
.y13d{bottom:160.160000pt;}
.y16f{bottom:161.160000pt;}
.y153{bottom:162.160000pt;}
.yfb{bottom:163.160000pt;}
.y118{bottom:164.120000pt;}
.y130{bottom:164.146667pt;}
.y79{bottom:164.160000pt;}
.y1f0{bottom:165.160000pt;}
.y1e5{bottom:170.160000pt;}
.y8f{bottom:171.173333pt;}
.y16{bottom:172.173333pt;}
.y1fa{bottom:173.173333pt;}
.yc6{bottom:174.173333pt;}
.y2d5{bottom:175.173333pt;}
.y1c0{bottom:176.173333pt;}
.y1d2{bottom:177.173333pt;}
.y1ac{bottom:179.173333pt;}
.y292{bottom:180.173333pt;}
.y2a1{bottom:182.173333pt;}
.y10d{bottom:184.173333pt;}
.y18b{bottom:185.173333pt;}
.y28a{bottom:187.173333pt;}
.y117{bottom:188.146667pt;}
.y46{bottom:188.173333pt;}
.y20d{bottom:189.173333pt;}
.y1de{bottom:190.173333pt;}
.y78{bottom:191.173333pt;}
.ycd{bottom:193.253333pt;}
.y186{bottom:194.200000pt;}
.y19f{bottom:197.200000pt;}
.y204{bottom:198.200000pt;}
.y8e{bottom:199.200000pt;}
.y152{bottom:200.200000pt;}
.y214{bottom:201.200000pt;}
.yc5{bottom:202.200000pt;}
.y1ef{bottom:204.200000pt;}
.y1d1{bottom:205.200000pt;}
.y257{bottom:206.253333pt;}
.y1ab{bottom:207.200000pt;}
.y1e4{bottom:208.200000pt;}
.y10c{bottom:211.200000pt;}
.y26a{bottom:211.253333pt;}
.y161{bottom:212.200000pt;}
.y2a7{bottom:214.200000pt;}
.y15{bottom:215.200000pt;}
.ybd{bottom:216.200000pt;}
.y185{bottom:217.200000pt;}
.yfa{bottom:218.200000pt;}
.y77{bottom:219.200000pt;}
.yae{bottom:220.200000pt;}
.y2d2{bottom:220.253333pt;}
.y2a0{bottom:221.200000pt;}
.y184{bottom:222.200000pt;}
.y45{bottom:223.200000pt;}
.y8d{bottom:226.200000pt;}
.y151{bottom:228.240000pt;}
.yc4{bottom:229.226667pt;}
.y1d0{bottom:232.226667pt;}
.y1aa{bottom:234.240000pt;}
.y183{bottom:235.226667pt;}
.y1e3{bottom:236.226667pt;}
.y1bf{bottom:237.240000pt;}
.y213{bottom:239.226667pt;}
.y217{bottom:240.240000pt;}
.y1ee{bottom:242.226667pt;}
.ybc{bottom:243.240000pt;}
.y2a6{bottom:244.226667pt;}
.y20c{bottom:245.226667pt;}
.y76{bottom:246.240000pt;}
.y12f{bottom:246.253333pt;}
.yad{bottom:248.226667pt;}
.y10b{bottom:249.240000pt;}
.y2f{bottom:250.226667pt;}
.y160{bottom:251.226667pt;}
.y8c{bottom:254.226667pt;}
.y14{bottom:255.240000pt;}
.y27e{bottom:256.226667pt;}
.y44{bottom:257.226667pt;}
.y2d0{bottom:257.253333pt;}
.y1cf{bottom:260.226667pt;}
.y19e{bottom:262.226667pt;}
.y274{bottom:263.266667pt;}
.y289{bottom:264.266667pt;}
.y16e{bottom:265.266667pt;}
.y150{bottom:266.266667pt;}
.ycc{bottom:268.266667pt;}
.y1be{bottom:269.266667pt;}
.ybb{bottom:271.266667pt;}
.y2e{bottom:272.266667pt;}
.y75{bottom:274.266667pt;}
.yac{bottom:275.266667pt;}
.y29f{bottom:276.266667pt;}
.y10a{bottom:277.266667pt;}
.y18a{bottom:278.266667pt;}
.y203{bottom:281.266667pt;}
.y8b{bottom:282.266667pt;}
.y27d{bottom:283.266667pt;}
.y182{bottom:284.266667pt;}
.y96{bottom:285.266667pt;}
.y269{bottom:286.266667pt;}
.y15f{bottom:289.266667pt;}
.y19d{bottom:290.266667pt;}
.y43{bottom:291.266667pt;}
.y16d{bottom:292.266667pt;}
.y14f{bottom:294.266667pt;}
.ycb{bottom:295.266667pt;}
.y13{bottom:296.266667pt;}
.y1ed{bottom:297.266667pt;}
.y13c{bottom:298.266667pt;}
.y1a9{bottom:300.306667pt;}
.yf9{bottom:301.293333pt;}
.y74{bottom:302.293333pt;}
.yab{bottom:303.306667pt;}
.y1dd{bottom:305.293333pt;}
.y189{bottom:306.306667pt;}
.y8a{bottom:309.306667pt;}
.y181{bottom:311.293333pt;}
.y2d{bottom:312.306667pt;}
.y2ce{bottom:313.293333pt;}
.y109{bottom:315.306667pt;}
.y15e{bottom:317.293333pt;}
.y19c{bottom:318.306667pt;}
.y16c{bottom:320.293333pt;}
.y14e{bottom:321.306667pt;}
.y219{bottom:322.293333pt;}
.y95{bottom:323.293333pt;}
.y42{bottom:325.293333pt;}
.y1ce{bottom:326.293333pt;}
.y20b{bottom:327.306667pt;}
.yf8{bottom:329.293333pt;}
.yaa{bottom:331.293333pt;}
.y1dc{bottom:332.293333pt;}
.yca{bottom:333.306667pt;}
.y12{bottom:336.333333pt;}
.yba{bottom:337.333333pt;}
.y1a8{bottom:338.333333pt;}
.y180{bottom:339.333333pt;}
.y73{bottom:340.333333pt;}
.y1f9{bottom:343.333333pt;}
.y15d{bottom:344.333333pt;}
.y19b{bottom:345.333333pt;}
.y298{bottom:346.333333pt;}
.y89{bottom:347.333333pt;}
.y14d{bottom:349.333333pt;}
.y2c{bottom:350.333333pt;}
.y1ec{bottom:352.333333pt;}
.y108{bottom:354.333333pt;}
.y20a{bottom:355.333333pt;}
.y2e4{bottom:357.333333pt;}
.ya9{bottom:358.333333pt;}
.y41{bottom:359.333333pt;}
.y1db{bottom:360.333333pt;}
.yc9{bottom:361.333333pt;}
.yb9{bottom:364.333333pt;}
.y1a7{bottom:366.333333pt;}
.yf7{bottom:367.333333pt;}
.y72{bottom:368.333333pt;}
.y29e{bottom:369.373333pt;}
.y1f8{bottom:370.360000pt;}
.y291{bottom:371.373333pt;}
.y15c{bottom:372.373333pt;}
.y19a{bottom:373.360000pt;}
.y11{bottom:374.373333pt;}
.y88{bottom:375.360000pt;}
.y14c{bottom:377.373333pt;}
.y2b{bottom:378.360000pt;}
.y288{bottom:379.360000pt;}
.y268{bottom:380.373333pt;}
.y107{bottom:381.360000pt;}
.y1bd{bottom:383.373333pt;}
.y256{bottom:384.360000pt;}
.y1da{bottom:387.360000pt;}
.yc8{bottom:389.373333pt;}
.y1eb{bottom:391.360000pt;}
.y40{bottom:392.373333pt;}
.y1a6{bottom:393.360000pt;}
.y17f{bottom:394.360000pt;}
.y71{bottom:395.373333pt;}
.ya8{bottom:396.360000pt;}
.y27c{bottom:397.360000pt;}
.y1f7{bottom:398.373333pt;}
.y15b{bottom:399.360000pt;}
.y199{bottom:400.360000pt;}
.y297{bottom:401.373333pt;}
.y87{bottom:403.360000pt;}
.y14b{bottom:404.400000pt;}
.y2a{bottom:405.400000pt;}
.yc3{bottom:406.400000pt;}
.y267{bottom:407.400000pt;}
.y106{bottom:409.400000pt;}
.y209{bottom:410.400000pt;}
.y10{bottom:411.400000pt;}
.y1d9{bottom:415.400000pt;}
.y94{bottom:416.400000pt;}
.y287{bottom:417.400000pt;}
.y2e3{bottom:418.400000pt;}
.y13b{bottom:419.400000pt;}
.yf6{bottom:422.400000pt;}
.y114{bottom:423.400000pt;}
.ya7{bottom:424.400000pt;}
.y2ca{bottom:425.400000pt;}
.y3f{bottom:426.400000pt;}
.y15a{bottom:427.400000pt;}
.y198{bottom:428.400000pt;}
.y1ea{bottom:429.400000pt;}
.yb8{bottom:430.400000pt;}
.y29{bottom:433.400000pt;}
.y266{bottom:435.400000pt;}
.y1cd{bottom:436.400000pt;}
.y208{bottom:438.400000pt;}
.y14a{bottom:442.440000pt;}
.y1d8{bottom:443.440000pt;}
.y93{bottom:444.426667pt;}
.yf{bottom:447.426667pt;}
.y290{bottom:448.440000pt;}
.y12b{bottom:449.373333pt;}
.y129{bottom:449.426667pt;}
.y1bc{bottom:449.440000pt;}
.y113{bottom:450.426667pt;}
.ya6{bottom:452.440000pt;}
.y1f6{bottom:453.426667pt;}
.y212{bottom:455.440000pt;}
.y197{bottom:456.426667pt;}
.yb7{bottom:458.440000pt;}
.y3e{bottom:460.440000pt;}
.y70{bottom:461.440000pt;}
.y265{bottom:463.440000pt;}
.y1cc{bottom:464.440000pt;}
.y159{bottom:465.426667pt;}
.y1e9{bottom:467.440000pt;}
.y149{bottom:470.440000pt;}
.y28{bottom:471.426667pt;}
.y27b{bottom:473.440000pt;}
.y202{bottom:474.426667pt;}
.y105{bottom:475.466667pt;}
.y207{bottom:476.466667pt;}
.y1bb{bottom:477.466667pt;}
.y2e2{bottom:479.466667pt;}
.y2a5{bottom:480.466667pt;}
.y1f5{bottom:481.466667pt;}
.y2c7{bottom:481.493333pt;}
.y211{bottom:482.466667pt;}
.y196{bottom:483.466667pt;}
.ye{bottom:484.466667pt;}
.y16b{bottom:485.466667pt;}
.y28f{bottom:486.466667pt;}
.yb6{bottom:488.466667pt;}
.y6f{bottom:489.466667pt;}
.ya5{bottom:490.466667pt;}
.y272{bottom:491.466667pt;}
.y1cb{bottom:492.466667pt;}
.y158{bottom:493.466667pt;}
.y3d{bottom:494.466667pt;}
.y1e8{bottom:495.466667pt;}
.y148{bottom:498.466667pt;}
.y27{bottom:499.466667pt;}
.y29d{bottom:501.466667pt;}
.y104{bottom:502.466667pt;}
.y1ba{bottom:504.466667pt;}
.y255{bottom:505.466667pt;}
.y2a4{bottom:507.466667pt;}
.y1f4{bottom:508.466667pt;}
.y2e1{bottom:509.466667pt;}
.y210{bottom:510.506667pt;}
.y206{bottom:511.506667pt;}
.y27a{bottom:512.506667pt;}
.y6e{bottom:516.506667pt;}
.ya4{bottom:517.506667pt;}
.y17e{bottom:518.506667pt;}
.y1ca{bottom:519.506667pt;}
.y157{bottom:520.506667pt;}
.y195{bottom:521.506667pt;}
.yd{bottom:522.506667pt;}
.y16a{bottom:524.506667pt;}
.y1d7{bottom:525.506667pt;}
.y26{bottom:526.506667pt;}
.yc2{bottom:527.506667pt;}
.y1a5{bottom:528.506667pt;}
.y3c{bottom:529.506667pt;}
.y103{bottom:530.506667pt;}
.y1b9{bottom:532.506667pt;}
.y1e7{bottom:533.506667pt;}
.y2a3{bottom:535.506667pt;}
.y147{bottom:536.506667pt;}
.y86{bottom:537.506667pt;}
.y296{bottom:539.506667pt;}
.y61{bottom:540.506667pt;}
.y1af{bottom:542.506667pt;}
.y6d{bottom:544.506667pt;}
.y54{bottom:545.533333pt;}
.y17d{bottom:546.533333pt;}
.y1c9{bottom:547.533333pt;}
.y156{bottom:548.533333pt;}
.y194{bottom:549.533333pt;}
.y279{bottom:550.533333pt;}
.y126{bottom:551.493333pt;}
.y124{bottom:551.533333pt;}
.y1d6{bottom:553.533333pt;}
.y25{bottom:554.533333pt;}
.y1a4{bottom:556.533333pt;}
.y201{bottom:557.533333pt;}
.y1b8{bottom:560.533333pt;}
.yc{bottom:561.533333pt;}
.y271{bottom:562.533333pt;}
.y3b{bottom:563.533333pt;}
.y1f3{bottom:564.533333pt;}
.y85{bottom:565.533333pt;}
.y295{bottom:567.533333pt;}
.y102{bottom:568.533333pt;}
.y286{bottom:570.533333pt;}
.y6c{bottom:571.533333pt;}
.y241{bottom:572.533333pt;}
.ya3{bottom:573.533333pt;}
.y1c8{bottom:574.533333pt;}
.y155{bottom:576.533333pt;}
.y193{bottom:577.533333pt;}
.y169{bottom:579.533333pt;}
.y53{bottom:580.560000pt;}
.y1d5{bottom:581.573333pt;}
.y24{bottom:582.560000pt;}
.y1a3{bottom:583.560000pt;}
.y17c{bottom:584.573333pt;}
.y200{bottom:585.560000pt;}
.y278{bottom:588.560000pt;}
.y3a{bottom:590.573333pt;}
.y146{bottom:591.560000pt;}
.y92{bottom:592.560000pt;}
.y294{bottom:594.560000pt;}
.y101{bottom:596.573333pt;}
.y23e{bottom:597.626667pt;}
.y254{bottom:598.560000pt;}
.y2dd{bottom:598.626667pt;}
.yb{bottom:599.573333pt;}
.ya2{bottom:600.560000pt;}
.y264{bottom:601.560000pt;}
.y1c7{bottom:602.573333pt;}
.y84{bottom:603.560000pt;}
.y231{bottom:606.560000pt;}
.y168{bottom:607.560000pt;}
.yf3{bottom:607.626667pt;}
.y285{bottom:608.573333pt;}
.y23{bottom:609.560000pt;}
.y6b{bottom:610.560000pt;}
.y1a2{bottom:611.573333pt;}
.y52{bottom:614.573333pt;}
.y192{bottom:615.600000pt;}
.y29c{bottom:616.600000pt;}
.y60{bottom:618.600000pt;}
.y145{bottom:619.600000pt;}
.y91{bottom:620.600000pt;}
.y17b{bottom:622.600000pt;}
.y100{bottom:623.600000pt;}
.y23c{bottom:623.626667pt;}
.y39{bottom:625.600000pt;}
.y253{bottom:626.600000pt;}
.y11e{bottom:627.626667pt;}
.ya1{bottom:628.600000pt;}
.y218{bottom:629.600000pt;}
.y83{bottom:631.600000pt;}
.y167{bottom:634.600000pt;}
.y284{bottom:636.600000pt;}
.y22{bottom:637.600000pt;}
.y1a1{bottom:639.600000pt;}
.y2c0{bottom:639.626667pt;}
.y1c6{bottom:640.600000pt;}
.y1ff{bottom:641.600000pt;}
.y191{bottom:642.600000pt;}
.ya{bottom:644.600000pt;}
.y5f{bottom:645.600000pt;}
.yef{bottom:646.626667pt;}
.y51{bottom:648.600000pt;}
.y17a{bottom:650.600000pt;}
.yff{bottom:651.626667pt;}
.y252{bottom:653.640000pt;}
.y277{bottom:654.626667pt;}
.y2dc{bottom:654.640000pt;}
.ya0{bottom:655.640000pt;}
.y144{bottom:657.626667pt;}
.y82{bottom:658.640000pt;}
.y38{bottom:659.640000pt;}
.y230{bottom:661.640000pt;}
.y283{bottom:663.626667pt;}
.y112{bottom:665.640000pt;}
.y1a0{bottom:666.626667pt;}
.y6a{bottom:668.640000pt;}
.y1fe{bottom:669.626667pt;}
.y190{bottom:670.640000pt;}
.y166{bottom:672.640000pt;}
.y5e{bottom:673.640000pt;}
.y21{bottom:675.640000pt;}
.y28e{bottom:677.640000pt;}
.yfe{bottom:678.640000pt;}
.y50{bottom:682.640000pt;}
.y143{bottom:684.626667pt;}
.y81{bottom:686.666667pt;}
.y2ab{bottom:687.666667pt;}
.y1d4{bottom:688.666667pt;}
.y282{bottom:691.666667pt;}
.y111{bottom:692.666667pt;}
.y37{bottom:693.666667pt;}
.y9f{bottom:694.666667pt;}
.y69{bottom:695.666667pt;}
.y9{bottom:696.666667pt;}
.yec{bottom:697.666667pt;}
.y18f{bottom:698.666667pt;}
.y24f{bottom:699.666667pt;}
.y165{bottom:700.666667pt;}
.y2af{bottom:701.666667pt;}
.y20{bottom:703.666667pt;}
.y179{bottom:705.666667pt;}
.y13a{bottom:706.666667pt;}
.y2aa{bottom:707.666667pt;}
.y1b7{bottom:710.666667pt;}
.y5d{bottom:711.666667pt;}
.y142{bottom:712.666667pt;}
.y80{bottom:714.666667pt;}
.y28d{bottom:715.666667pt;}
.y4f{bottom:717.666667pt;}
.y1d3{bottom:718.666667pt;}
.yb5{bottom:719.666667pt;}
.y276{bottom:720.666667pt;}
.y9e{bottom:721.706667pt;}
.y1c5{bottom:723.706667pt;}
.y1fd{bottom:724.706667pt;}
.y18e{bottom:725.706667pt;}
.y24e{bottom:725.746667pt;}
.y239{bottom:727.746667pt;}
.y36{bottom:728.706667pt;}
.y281{bottom:729.706667pt;}
.y1f{bottom:730.706667pt;}
.y2ae{bottom:731.706667pt;}
.y2ba{bottom:732.746667pt;}
.y68{bottom:734.706667pt;}
.y1b6{bottom:737.706667pt;}
.ye8{bottom:737.746667pt;}
.y5c{bottom:739.706667pt;}
.y141{bottom:740.706667pt;}
.y7f{bottom:741.706667pt;}
.y178{bottom:743.706667pt;}
.yfd{bottom:744.706667pt;}
.y22b{bottom:744.746667pt;}
.y8{bottom:747.706667pt;}
.y9d{bottom:749.706667pt;}
.y4e{bottom:751.706667pt;}
.y24c{bottom:751.746667pt;}
.y1fc{bottom:752.706667pt;}
.y1c4{bottom:753.706667pt;}
.y28c{bottom:754.706667pt;}
.y237{bottom:754.746667pt;}
.y164{bottom:755.706667pt;}
.y18d{bottom:756.733333pt;}
.y116{bottom:756.746667pt;}
.y1e{bottom:758.733333pt;}
.y139{bottom:761.733333pt;}
.y35{bottom:762.733333pt;}
.y1b5{bottom:765.733333pt;}
.y2da{bottom:766.746667pt;}
.y5b{bottom:767.733333pt;}
.y7e{bottom:769.733333pt;}
.y177{bottom:771.733333pt;}
.y67{bottom:772.733333pt;}
.y227{bottom:774.746667pt;}
.y29b{bottom:775.733333pt;}
.y9c{bottom:776.733333pt;}
.ye4{bottom:777.746667pt;}
.y1e2{bottom:779.733333pt;}
.y4d{bottom:783.733333pt;}
.y1c3{bottom:784.733333pt;}
.y1d{bottom:785.733333pt;}
.y110{bottom:786.733333pt;}
.y2b5{bottom:788.746667pt;}
.y138{bottom:789.733333pt;}
.y28b{bottom:792.773333pt;}
.y1b4{bottom:793.773333pt;}
.y5a{bottom:794.773333pt;}
.y140{bottom:795.773333pt;}
.y34{bottom:796.773333pt;}
.y66{bottom:799.773333pt;}
.y2a9{bottom:800.773333pt;}
.y7{bottom:802.773333pt;}
.y2d9{bottom:803.760000pt;}
.y29a{bottom:803.773333pt;}
.y9b{bottom:804.773333pt;}
.y280{bottom:806.773333pt;}
.y1e1{bottom:807.773333pt;}
.y163{bottom:813.773333pt;}
.y4c{bottom:815.773333pt;}
.y1c{bottom:816.773333pt;}
.ye2{bottom:817.760000pt;}
.y1b3{bottom:820.773333pt;}
.y59{bottom:822.773333pt;}
.y2ad{bottom:823.773333pt;}
.y7d{bottom:824.773333pt;}
.y176{bottom:826.773333pt;}
.y65{bottom:827.800000pt;}
.y270{bottom:829.800000pt;}
.y33{bottom:830.800000pt;}
.y9a{bottom:832.800000pt;}
.y1e0{bottom:835.800000pt;}
.y162{bottom:841.800000pt;}
.y27f{bottom:844.800000pt;}
.y1b{bottom:846.800000pt;}
.y4b{bottom:847.800000pt;}
.y58{bottom:849.800000pt;}
.y13f{bottom:850.800000pt;}
.y7c{bottom:852.800000pt;}
.y2ac{bottom:853.800000pt;}
.y6{bottom:854.800000pt;}
.y64{bottom:855.800000pt;}
.ydd{bottom:856.800000pt;}
.y1b2{bottom:858.800000pt;}
.y99{bottom:859.800000pt;}
.y2a8{bottom:861.800000pt;}
.y154{bottom:862.840000pt;}
.y2b2{bottom:862.880000pt;}
.y32{bottom:865.840000pt;}
.y20f{bottom:868.840000pt;}
.y57{bottom:877.840000pt;}
.y225{bottom:877.880000pt;}
.y4a{bottom:878.840000pt;}
.y2d6{bottom:878.880000pt;}
.y7b{bottom:879.840000pt;}
.y260{bottom:879.880000pt;}
.y13e{bottom:881.840000pt;}
.y248{bottom:881.880000pt;}
.y63{bottom:882.840000pt;}
.y1a{bottom:884.840000pt;}
.y1b1{bottom:886.840000pt;}
.y98{bottom:887.840000pt;}
.yb4{bottom:890.840000pt;}
.y31{bottom:895.840000pt;}
.y2b1{bottom:901.866667pt;}
.y5{bottom:902.866667pt;}
.y224{bottom:906.880000pt;}
.y56{bottom:907.866667pt;}
.yd8{bottom:908.880000pt;}
.y49{bottom:911.866667pt;}
.y62{bottom:913.866667pt;}
.y19{bottom:914.866667pt;}
.y7a{bottom:917.866667pt;}
.y174{bottom:920.866667pt;}
.y1b0{bottom:921.866667pt;}
.y175{bottom:925.866667pt;}
.y55{bottom:938.893333pt;}
.y30{bottom:943.893333pt;}
.y2b0{bottom:944.893333pt;}
.y4{bottom:945.893333pt;}
.y173{bottom:946.893333pt;}
.y97{bottom:950.893333pt;}
.y1{bottom:993.933333pt;}
.y18{bottom:995.933333pt;}
.h55{height:20.973333pt;}
.h4f{height:21.960000pt;}
.h4e{height:24.946667pt;}
.h39{height:24.960000pt;}
.h4d{height:24.992000pt;}
.h46{height:24.993333pt;}
.h41{height:25.000000pt;}
.h3e{height:25.033333pt;}
.h3d{height:25.966667pt;}
.h4a{height:25.986667pt;}
.h49{height:26.033333pt;}
.h32{height:26.993333pt;}
.h35{height:27.980000pt;}
.h36{height:28.033333pt;}
.he{height:35.332031pt;}
.h5d{height:36.000000pt;}
.h5b{height:36.033333pt;}
.h59{height:36.980000pt;}
.h5c{height:36.986667pt;}
.h52{height:37.033333pt;}
.h1d{height:37.966667pt;}
.h17{height:38.000000pt;}
.h1b{height:38.980000pt;}
.h16{height:38.986667pt;}
.h1a{height:39.000000pt;}
.h1c{height:39.033333pt;}
.h10{height:43.162109pt;}
.h1e{height:43.183594pt;}
.hd{height:44.343750pt;}
.h12{height:49.980000pt;}
.h13{height:49.984000pt;}
.h15{height:50.000000pt;}
.h31{height:51.000000pt;}
.h9{height:51.009766pt;}
.h4b{height:51.033333pt;}
.h11{height:51.035156pt;}
.h18{height:51.066667pt;}
.h4c{height:51.125333pt;}
.h29{height:53.789062pt;}
.h51{height:54.980000pt;}
.h5e{height:54.986667pt;}
.h53{height:55.000000pt;}
.h57{height:55.033333pt;}
.h56{height:55.066667pt;}
.h58{height:56.000000pt;}
.h2b{height:57.375000pt;}
.h14{height:58.857422pt;}
.hb{height:58.886719pt;}
.h7{height:60.468750pt;}
.h2d{height:61.670545pt;}
.hf{height:62.781250pt;}
.h1{height:62.812500pt;}
.h6{height:64.500000pt;}
.h2c{height:65.781915pt;}
.h2a{height:68.531250pt;}
.h54{height:73.066667pt;}
.h50{height:74.086667pt;}
.ha{height:74.720703pt;}
.h42{height:76.000000pt;}
.h23{height:76.066667pt;}
.h24{height:76.125333pt;}
.h8{height:76.728125pt;}
.h5a{height:80.000000pt;}
.h19{height:82.572266pt;}
.h2{height:84.790625pt;}
.h5{height:94.302669pt;}
.h4{height:96.884375pt;}
.h43{height:101.000000pt;}
.h26{height:101.066667pt;}
.h25{height:101.072000pt;}
.h34{height:101.084000pt;}
.h33{height:101.086667pt;}
.h28{height:101.100000pt;}
.h27{height:101.125333pt;}
.h3a{height:102.073333pt;}
.h3b{height:102.074667pt;}
.h3c{height:102.125333pt;}
.h3{height:108.978125pt;}
.h2f{height:126.082667pt;}
.h2e{height:126.085333pt;}
.h37{height:126.108000pt;}
.h30{height:126.125333pt;}
.h20{height:127.073333pt;}
.h21{height:127.074667pt;}
.h3f{height:127.112000pt;}
.h40{height:127.116000pt;}
.h22{height:127.125333pt;}
.h44{height:151.080000pt;}
.h45{height:151.120000pt;}
.h48{height:152.080000pt;}
.h47{height:152.093333pt;}
.h38{height:152.120000pt;}
.h1f{height:202.120000pt;}
.hc{height:1055.879920pt;}
.h0{height:1056.000000pt;}
.w7{width:68.072000pt;}
.w6{width:83.000000pt;}
.w5{width:84.073333pt;}
.w3{width:101.100000pt;}
.w4{width:101.125333pt;}
.w8{width:106.100000pt;}
.wb{width:130.117333pt;}
.we{width:131.117333pt;}
.w10{width:155.112000pt;}
.w13{width:155.120000pt;}
.w14{width:155.200000pt;}
.w11{width:156.200000pt;}
.w12{width:156.253333pt;}
.w2{width:300.360000pt;}
.wc{width:490.600000pt;}
.wd{width:490.626667pt;}
.wf{width:491.600000pt;}
.w9{width:515.613333pt;}
.wa{width:515.626667pt;}
.w1{width:815.875000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x33{left:6.013333pt;}
.x1d{left:7.000000pt;}
.x4e{left:8.000000pt;}
.x4b{left:9.000000pt;}
.x55{left:10.000000pt;}
.x48{left:11.000000pt;}
.x57{left:12.000000pt;}
.x27{left:13.040000pt;}
.x4f{left:14.000000pt;}
.x22{left:15.013333pt;}
.x61{left:16.000000pt;}
.x5e{left:18.000000pt;}
.x53{left:19.000000pt;}
.x54{left:20.000000pt;}
.x25{left:20.986667pt;}
.x1f{left:24.000000pt;}
.x60{left:25.000000pt;}
.x49{left:28.033333pt;}
.x23{left:30.013333pt;}
.x52{left:31.033333pt;}
.x47{left:32.033333pt;}
.x5d{left:34.033333pt;}
.x4c{left:36.033333pt;}
.x58{left:38.026667pt;}
.x51{left:40.026667pt;}
.x20{left:41.026667pt;}
.x62{left:42.026667pt;}
.x50{left:43.026667pt;}
.x29{left:46.066667pt;}
.x5f{left:47.026667pt;}
.x2d{left:48.066667pt;}
.x4d{left:50.026667pt;}
.x4a{left:51.026667pt;}
.x28{left:54.040000pt;}
.x2c{left:56.013333pt;}
.x59{left:57.066667pt;}
.x56{left:62.066667pt;}
.x2a{left:63.053333pt;}
.x2b{left:65.066667pt;}
.x1{left:96.133333pt;}
.x31{left:97.133333pt;}
.x1a{left:101.133333pt;}
.x3e{left:102.133333pt;}
.x40{left:108.133333pt;}
.x14{left:112.133333pt;}
.x44{left:114.133333pt;}
.x3d{left:120.133333pt;}
.x5a{left:122.133333pt;}
.x5c{left:123.093333pt;}
.x15{left:125.166667pt;}
.x3f{left:126.166667pt;}
.x41{left:132.166667pt;}
.x34{left:134.160000pt;}
.x43{left:138.160000pt;}
.x37{left:139.160000pt;}
.x13{left:144.160000pt;}
.x4{left:154.200000pt;}
.x1b{left:163.075000pt;}
.xd{left:165.200000pt;}
.x42{left:168.200000pt;}
.x1c{left:169.200000pt;}
.xc{left:172.200000pt;}
.x8{left:184.240000pt;}
.xb{left:186.240000pt;}
.x45{left:192.226667pt;}
.x32{left:204.253333pt;}
.xa{left:211.266667pt;}
.x17{left:229.141667pt;}
.x18{left:235.306667pt;}
.x5{left:240.293333pt;}
.x46{left:252.306667pt;}
.x7{left:260.333333pt;}
.x3a{left:273.208333pt;}
.x3b{left:279.333333pt;}
.x19{left:288.360000pt;}
.x9{left:289.373333pt;}
.xf{left:309.360000pt;}
.x11{left:314.400000pt;}
.x3{left:342.440000pt;}
.x10{left:354.440000pt;}
.xe{left:358.426667pt;}
.x35{left:385.341667pt;}
.x36{left:391.466667pt;}
.x1e{left:396.506667pt;}
.x6{left:408.506667pt;}
.x3c{left:417.506667pt;}
.x21{left:497.626667pt;}
.x12{left:529.640000pt;}
.x2f{left:560.568333pt;}
.x5b{left:564.746667pt;}
.x30{left:566.693333pt;}
.x38{left:573.581667pt;}
.x39{left:579.706667pt;}
.x24{left:581.746667pt;}
.x26{left:664.800000pt;}
.x2e{left:704.866667pt;}
.x16{left:712.866667pt;}
.x2{left:720.866667pt;}
}




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