
    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_c9c298da4fb4e6d3b3dc31cd.woff')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_c2cf452baa3bafe233d13abc.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_edb40ff9e27acd66573be0b8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1c0db0e6318206ac443f12b0.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a4ad17db14f9d124ed818bdf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.877441;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_a4dccd3ae3002aabb200d42b.woff')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_c9793c313ead3f865f0e3c02.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.737793;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_5ea1094a88384ed75f209c04.woff')format("woff");}.ffb{font-family:ffb;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b774889ff8673d728bba08fb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa61bb2fd9d1b761848f9fc8.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9c6fda0903c8a0fd86701744.woff')format("woff");}.fff{font-family:fff;line-height:0.851074;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_0ad338fddcbd911b22ae952d.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-78.480000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.269400px;}
.lsa{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.017280px;}
.ls1f{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.270720px;}
.ls21{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.900000px;}
.ls1a{letter-spacing:2.880000px;}
.ls1c{letter-spacing:7.200000px;}
.ls18{letter-spacing:10.080000px;}
.ls1b{letter-spacing:14.400000px;}
.ls17{letter-spacing:15.480000px;}
.ls19{letter-spacing:15.840000px;}
.ls12{letter-spacing:16.740000px;}
.ls1{letter-spacing:38.340000px;}
.ls2{letter-spacing:47.700000px;}
.ls0{letter-spacing:72.000000px;}
.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;}
}
.wse{word-spacing:-48.240000px;}
.ws10{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws15{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws13{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.526600px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.241200px;}
.ws4{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.340000px;}
.ws12{word-spacing:-11.160000px;}
.ws1{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.440000px;}
.ws11{word-spacing:-9.737280px;}
.ws7{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-59.580000px;}
._24{margin-left:-4.356720px;}
._18{margin-left:-2.970000px;}
._2{margin-left:-1.656000px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._a{width:4.362480px;}
._9{width:5.497920px;}
._e{width:6.991920px;}
._14{width:8.306640px;}
._15{width:9.596880px;}
._17{width:10.638000px;}
._c{width:11.925360px;}
._b{width:12.982320px;}
._1a{width:15.174000px;}
._16{width:16.740000px;}
._19{width:17.766000px;}
._11{width:19.541520px;}
._12{width:20.998080px;}
._1b{width:22.051440px;}
._13{width:23.425920px;}
._f{width:24.501600px;}
._d{width:26.055360px;}
._2c{width:27.549360px;}
._1f{width:28.625040px;}
._8{width:30.178800px;}
._1d{width:31.764240px;}
._26{width:32.882400px;}
._10{width:34.003440px;}
._27{width:35.497440px;}
._23{width:37.603440px;}
._21{width:38.724480px;}
._22{width:40.162320px;}
._2b{width:42.104880px;}
._25{width:43.923600px;}
._30{width:44.999280px;}
._31{width:46.106640px;}
._2d{width:47.389680px;}
._2e{width:48.823920px;}
._2f{width:50.050800px;}
._20{width:51.214320px;}
._3f{width:52.708320px;}
._28{width:55.517040px;}
._29{width:56.564640px;}
._4a{width:59.760000px;}
._49{width:61.134480px;}
._2a{width:62.953920px;}
._37{width:64.107120px;}
._4{width:65.496000px;}
._43{width:70.277760px;}
._3{width:71.569920px;}
._45{width:72.901680px;}
._3b{width:73.982880px;}
._38{width:75.656160px;}
._39{width:77.181840px;}
._3d{width:78.225840px;}
._33{width:82.767600px;}
._32{width:84.261600px;}
._46{width:87.221520px;}
._3e{width:103.623840px;}
._35{width:105.177600px;}
._42{width:107.578080px;}
._36{width:108.883920px;}
._41{width:109.929120px;}
._40{width:120.416400px;}
._3c{width:128.244960px;}
._34{width:133.578000px;}
._44{width:134.596800px;}
._3a{width:142.049520px;}
._47{width:147.547440px;}
._5{width:199.620000px;}
._48{width:201.222000px;}
._1c{width:285.870000px;}
._1e{width:297.066960px;}
._7{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fsf{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs10{font-size:75.893905px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y44{bottom:-247.710000px;}
.y43{bottom:-213.870000px;}
.y42{bottom:-180.210000px;}
.y41{bottom:-146.550000px;}
.y7b{bottom:-130.350000px;}
.y40{bottom:-112.710000px;}
.y7a{bottom:-96.690000px;}
.y3f{bottom:-79.020000px;}
.y79{bottom:-62.805000px;}
.y3e{bottom:-45.180000px;}
.y78{bottom:-29.145000px;}
.y6e{bottom:-28.650000px;}
.y47{bottom:-27.180000px;}
.y7d{bottom:-17.922750px;}
.y3d{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y2f2{bottom:1.837500px;}
.y1c4{bottom:2.325000px;}
.y1b8{bottom:2.340000px;}
.y154{bottom:2.700000px;}
.y105{bottom:2.865000px;}
.y167{bottom:2.880000px;}
.y66{bottom:3.045000px;}
.y12d{bottom:3.060000px;}
.y20c{bottom:3.090000px;}
.y127{bottom:3.225000px;}
.y131{bottom:3.240000px;}
.y11f{bottom:3.945000px;}
.y2{bottom:3.960000px;}
.y126{bottom:4.125000px;}
.y130{bottom:4.140000px;}
.y187{bottom:4.155000px;}
.yd3{bottom:4.680000px;}
.y77{bottom:4.695000px;}
.y16a{bottom:4.845000px;}
.y13c{bottom:4.860000px;}
.y46{bottom:5.040000px;}
.y1f4{bottom:5.250000px;}
.y6d{bottom:5.580000px;}
.y11d{bottom:5.745000px;}
.y1e5{bottom:5.940000px;}
.y138{bottom:6.120000px;}
.y3c{bottom:6.840000px;}
.y1d8{bottom:7.200000px;}
.y1f9{bottom:7.380000px;}
.y19d{bottom:8.460000px;}
.y199{bottom:8.640000px;}
.y159{bottom:8.820000px;}
.y122{bottom:8.985000px;}
.y12e{bottom:9.000000px;}
.y1c8{bottom:9.345000px;}
.y136{bottom:9.360000px;}
.y1b4{bottom:9.540000px;}
.y152{bottom:9.720000px;}
.y1a5{bottom:9.885000px;}
.y1ab{bottom:9.900000px;}
.y20a{bottom:9.930000px;}
.y135{bottom:10.260000px;}
.y194{bottom:10.980000px;}
.y188{bottom:11.160000px;}
.y1f2{bottom:12.090000px;}
.ye3{bottom:12.240000px;}
.y193{bottom:12.420000px;}
.y11b{bottom:12.585000px;}
.y5{bottom:12.600000px;}
.y16b{bottom:12.765000px;}
.yd4{bottom:12.780000px;}
.y1e3{bottom:12.825000px;}
.yee{bottom:12.960000px;}
.y1ed{bottom:13.140000px;}
.yf9{bottom:13.305000px;}
.y190{bottom:13.320000px;}
.y18e{bottom:13.500000px;}
.y1d7{bottom:14.040000px;}
.y1c7{bottom:14.385000px;}
.y1b7{bottom:14.400000px;}
.y1c3{bottom:14.430000px;}
.y1be{bottom:14.580000px;}
.y1b9{bottom:15.480000px;}
.y1c5{bottom:15.510000px;}
.y18d{bottom:15.840000px;}
.y129{bottom:16.005000px;}
.y192{bottom:16.200000px;}
.y198{bottom:16.380000px;}
.y14c{bottom:16.560000px;}
.y104{bottom:16.725000px;}
.y12c{bottom:16.740000px;}
.y20b{bottom:16.770000px;}
.y121{bottom:16.905000px;}
.y15a{bottom:16.920000px;}
.y157{bottom:17.100000px;}
.y19b{bottom:17.640000px;}
.y19f{bottom:17.820000px;}
.y185{bottom:18.000000px;}
.y196{bottom:18.180000px;}
.y65{bottom:18.525000px;}
.y195{bottom:18.540000px;}
.y1f0{bottom:19.110000px;}
.y197{bottom:19.260000px;}
.y11c{bottom:19.425000px;}
.y19a{bottom:19.620000px;}
.y1e1{bottom:19.665000px;}
.y1b1{bottom:19.980000px;}
.y1a2{bottom:20.145000px;}
.y1ae{bottom:20.160000px;}
.y19e{bottom:20.520000px;}
.y16d{bottom:20.685000px;}
.y3b{bottom:20.700000px;}
.y169{bottom:20.730000px;}
.y172{bottom:20.865000px;}
.y13b{bottom:20.880000px;}
.y18f{bottom:21.240000px;}
.y6{bottom:21.960000px;}
.y1b3{bottom:22.320000px;}
.y18c{bottom:22.500000px;}
.y1a4{bottom:22.665000px;}
.y1aa{bottom:22.680000px;}
.y3{bottom:23.220000px;}
.y151{bottom:23.400000px;}
.y201{bottom:23.565000px;}
.y165{bottom:23.580000px;}
.y1fe{bottom:23.610000px;}
.y204{bottom:23.745000px;}
.y1da{bottom:23.760000px;}
.y4{bottom:24.660000px;}
.y1f6{bottom:24.840000px;}
.y156{bottom:25.020000px;}
.y19c{bottom:25.740000px;}
.y1f1{bottom:25.950000px;}
.ye2{bottom:26.100000px;}
.y1bb{bottom:26.460000px;}
.y1b6{bottom:26.490000px;}
.y1e2{bottom:26.685000px;}
.yed{bottom:26.820000px;}
.y1b2{bottom:27.000000px;}
.yf8{bottom:27.165000px;}
.y1a8{bottom:27.180000px;}
.y1a3{bottom:27.345000px;}
.y1a9{bottom:27.360000px;}
.y191{bottom:29.160000px;}
.y14b{bottom:30.420000px;}
.y103{bottom:30.585000px;}
.y1db{bottom:30.600000px;}
.y1ff{bottom:30.630000px;}
.y6b{bottom:30.960000px;}
.y1f7{bottom:31.680000px;}
.y1b0{bottom:32.040000px;}
.y1f3{bottom:32.790000px;}
.y1e4{bottom:33.525000px;}
.y64{bottom:33.825000px;}
.y1ee{bottom:33.840000px;}
.y1ad{bottom:34.020000px;}
.y1a1{bottom:34.050000px;}
.y3a{bottom:34.740000px;}
.y150{bottom:37.260000px;}
.y1e7{bottom:37.440000px;}
.y206{bottom:37.605000px;}
.y1de{bottom:37.620000px;}
.y76{bottom:38.355000px;}
.ye1{bottom:39.960000px;}
.yec{bottom:40.680000px;}
.yf7{bottom:40.845000px;}
.y1a7{bottom:41.220000px;}
.y18a{bottom:41.580000px;}
.y14a{bottom:44.100000px;}
.y102{bottom:44.265000px;}
.y6a{bottom:44.280000px;}
.y207{bottom:44.445000px;}
.y1dd{bottom:44.460000px;}
.y147{bottom:45.000000px;}
.y63{bottom:46.245000px;}
.y7f{bottom:46.980000px;}
.y39{bottom:47.520000px;}
.yf1{bottom:50.205000px;}
.y14f{bottom:51.120000px;}
.y1e8{bottom:51.300000px;}
.yfc{bottom:51.825000px;}
.ye0{bottom:53.670000px;}
.yeb{bottom:54.360000px;}
.yf6{bottom:54.705000px;}
.ye6{bottom:56.895000px;}
.y1{bottom:57.420000px;}
.y149{bottom:57.960000px;}
.y101{bottom:58.125000px;}
.y1ea{bottom:58.140000px;}
.y208{bottom:58.305000px;}
.y7c{bottom:63.780000px;}
.y62{bottom:64.110000px;}
.yf0{bottom:64.245000px;}
.y14e{bottom:64.800000px;}
.y164{bottom:64.980000px;}
.yfb{bottom:65.865000px;}
.ydf{bottom:67.530000px;}
.yea{bottom:68.220000px;}
.yf5{bottom:68.565000px;}
.y18b{bottom:68.760000px;}
.y75{bottom:69.315000px;}
.y69{bottom:70.380000px;}
.yd8{bottom:70.425000px;}
.ye5{bottom:70.920000px;}
.y148{bottom:71.820000px;}
.y100{bottom:71.985000px;}
.y1e9{bottom:72.000000px;}
.y14d{bottom:78.660000px;}
.yde{bottom:81.390000px;}
.y61{bottom:81.930000px;}
.ye9{bottom:82.080000px;}
.yf4{bottom:82.290000px;}
.y74{bottom:82.455000px;}
.yd6{bottom:84.450000px;}
.y153{bottom:85.500000px;}
.yff{bottom:85.665000px;}
.y160{bottom:85.680000px;}
.y68{bottom:87.300000px;}
.y163{bottom:92.520000px;}
.ydd{bottom:95.070000px;}
.y73{bottom:95.415000px;}
.ye8{bottom:95.760000px;}
.yf3{bottom:96.150000px;}
.y118{bottom:99.360000px;}
.yfe{bottom:99.525000px;}
.y60{bottom:99.930000px;}
.y2cf{bottom:101.520000px;}
.y132{bottom:101.880000px;}
.y20d{bottom:103.320000px;}
.yb1{bottom:103.680000px;}
.y23e{bottom:104.760000px;}
.y2f1{bottom:105.480000px;}
.y162{bottom:106.380000px;}
.y72{bottom:108.375000px;}
.ydc{bottom:108.930000px;}
.ye7{bottom:109.620000px;}
.yf2{bottom:110.010000px;}
.y177{bottom:110.700000px;}
.y15e{bottom:111.060000px;}
.y291{bottom:111.600000px;}
.y15f{bottom:113.220000px;}
.yfd{bottom:113.385000px;}
.y17b{bottom:114.660000px;}
.y2a2{bottom:115.560000px;}
.y26f{bottom:116.460000px;}
.y5f{bottom:117.750000px;}
.y12f{bottom:118.620000px;}
.y117{bottom:119.160000px;}
.y1d4{bottom:119.340000px;}
.y1d5{bottom:119.520000px;}
.y161{bottom:120.060000px;}
.yc1{bottom:120.420000px;}
.y37{bottom:120.780000px;}
.y2ce{bottom:121.320000px;}
.y71{bottom:121.515000px;}
.ydb{bottom:122.610000px;}
.yb0{bottom:123.480000px;}
.y23d{bottom:124.560000px;}
.y2f0{bottom:125.460000px;}
.y15d{bottom:126.900000px;}
.y166{bottom:127.080000px;}
.y26e{bottom:129.420000px;}
.y176{bottom:130.500000px;}
.y5e{bottom:131.070000px;}
.y290{bottom:131.400000px;}
.y70{bottom:133.755000px;}
.y17a{bottom:134.460000px;}
.y12b{bottom:135.360000px;}
.yda{bottom:136.470000px;}
.y116{bottom:138.960000px;}
.y1d3{bottom:139.140000px;}
.y5d{bottom:139.890000px;}
.yc0{bottom:140.400000px;}
.y36{bottom:140.580000px;}
.y2cd{bottom:141.120000px;}
.yaf{bottom:143.280000px;}
.y23c{bottom:144.360000px;}
.y2ef{bottom:145.260000px;}
.y26d{bottom:149.220000px;}
.y175{bottom:150.300000px;}
.yd9{bottom:150.330000px;}
.y107{bottom:151.200000px;}
.y179{bottom:154.260000px;}
.y2a1{bottom:155.160000px;}
.y5c{bottom:157.710000px;}
.y115{bottom:158.760000px;}
.y1d2{bottom:158.940000px;}
.ybf{bottom:160.200000px;}
.y35{bottom:160.560000px;}
.y2cc{bottom:161.100000px;}
.y209{bottom:161.280000px;}
.yae{bottom:163.110000px;}
.y12a{bottom:163.665000px;}
.y23b{bottom:164.370000px;}
.y2ee{bottom:165.090000px;}
.y26c{bottom:169.050000px;}
.y174{bottom:171.030000px;}
.y106{bottom:172.830000px;}
.y178{bottom:174.090000px;}
.y2a0{bottom:174.990000px;}
.y5b{bottom:175.530000px;}
.y114{bottom:178.590000px;}
.y1d1{bottom:178.950000px;}
.ybe{bottom:180.030000px;}
.y34{bottom:180.390000px;}
.y128{bottom:180.405000px;}
.y2cb{bottom:180.930000px;}
.yad{bottom:183.090000px;}
.y23a{bottom:184.170000px;}
.y2ed{bottom:184.890000px;}
.yfa{bottom:187.785000px;}
.y26b{bottom:189.030000px;}
.y205{bottom:189.585000px;}
.y28f{bottom:191.010000px;}
.y5a{bottom:193.350000px;}
.y173{bottom:194.070000px;}
.y29f{bottom:194.970000px;}
.y113{bottom:198.570000px;}
.y1d0{bottom:198.750000px;}
.ybd{bottom:199.830000px;}
.y33{bottom:200.190000px;}
.y2ca{bottom:200.730000px;}
.yac{bottom:202.890000px;}
.y239{bottom:203.970000px;}
.y2ec{bottom:204.690000px;}
.y26a{bottom:208.830000px;}
.y171{bottom:209.925000px;}
.y28e{bottom:210.810000px;}
.y59{bottom:211.350000px;}
.y29e{bottom:214.770000px;}
.y112{bottom:218.370000px;}
.y1cf{bottom:218.550000px;}
.ybc{bottom:219.630000px;}
.y32{bottom:219.990000px;}
.y2c9{bottom:220.530000px;}
.y2eb{bottom:222.510000px;}
.y125{bottom:222.525000px;}
.yab{bottom:222.690000px;}
.y238{bottom:223.770000px;}
.y269{bottom:228.630000px;}
.y58{bottom:229.170000px;}
.y28d{bottom:230.610000px;}
.y29d{bottom:234.570000px;}
.y111{bottom:238.170000px;}
.y1ce{bottom:238.350000px;}
.y124{bottom:239.265000px;}
.ybb{bottom:239.610000px;}
.y31{bottom:239.790000px;}
.y2c8{bottom:240.330000px;}
.yaa{bottom:242.490000px;}
.y170{bottom:242.505000px;}
.y237{bottom:243.570000px;}
.y57{bottom:246.990000px;}
.y268{bottom:248.430000px;}
.y28c{bottom:250.410000px;}
.y29c{bottom:254.370000px;}
.y110{bottom:257.970000px;}
.y1cd{bottom:258.150000px;}
.yba{bottom:259.410000px;}
.y203{bottom:259.425000px;}
.y30{bottom:259.770000px;}
.y2c7{bottom:260.310000px;}
.ya9{bottom:262.290000px;}
.y2ea{bottom:263.370000px;}
.y236{bottom:263.550000px;}
.y56{bottom:264.810000px;}
.y123{bottom:267.705000px;}
.y267{bottom:268.230000px;}
.y28b{bottom:270.210000px;}
.y29b{bottom:274.170000px;}
.y16f{bottom:274.905000px;}
.y2a6{bottom:275.070000px;}
.y10f{bottom:277.770000px;}
.y1cc{bottom:278.130000px;}
.yb9{bottom:279.210000px;}
.y2f{bottom:279.570000px;}
.y2c6{bottom:280.110000px;}
.ya8{bottom:282.270000px;}
.y55{bottom:282.660000px;}
.y2e9{bottom:283.170000px;}
.y235{bottom:283.350000px;}
.y266{bottom:288.210000px;}
.y28a{bottom:290.190000px;}
.y29a{bottom:294.150000px;}
.y2a5{bottom:295.050000px;}
.y120{bottom:295.965000px;}
.y10e{bottom:297.750000px;}
.y1cb{bottom:297.930000px;}
.yb8{bottom:299.010000px;}
.y2e{bottom:299.370000px;}
.y2c5{bottom:299.910000px;}
.y54{bottom:300.660000px;}
.y202{bottom:301.545000px;}
.ya7{bottom:302.070000px;}
.y234{bottom:303.150000px;}
.y2e8{bottom:303.870000px;}
.y16e{bottom:307.485000px;}
.y265{bottom:308.010000px;}
.y289{bottom:309.990000px;}
.yef{bottom:312.705000px;}
.y299{bottom:313.950000px;}
.y53{bottom:313.980000px;}
.y10d{bottom:317.550000px;}
.y1ca{bottom:317.730000px;}
.yb7{bottom:318.810000px;}
.y2c4{bottom:319.710000px;}
.y2d{bottom:320.070000px;}
.ya6{bottom:321.870000px;}
.y52{bottom:322.800000px;}
.y233{bottom:322.950000px;}
.y11e{bottom:324.405000px;}
.y264{bottom:327.810000px;}
.y288{bottom:329.790000px;}
.y200{bottom:329.985000px;}
.y298{bottom:333.750000px;}
.y2c{bottom:337.350000px;}
.y1c9{bottom:337.530000px;}
.yb6{bottom:338.790000px;}
.y2c3{bottom:339.510000px;}
.y16c{bottom:339.885000px;}
.y51{bottom:340.620000px;}
.y11a{bottom:341.145000px;}
.ya5{bottom:341.670000px;}
.y48{bottom:342.585000px;}
.y232{bottom:342.750000px;}
.y2e7{bottom:344.730000px;}
.y2b{bottom:345.810000px;}
.y263{bottom:347.610000px;}
.y287{bottom:349.590000px;}
.y1c6{bottom:353.565000px;}
.y297{bottom:354.450000px;}
.y10c{bottom:357.150000px;}
.y50{bottom:358.440000px;}
.yb5{bottom:358.590000px;}
.y2c2{bottom:359.310000px;}
.ya4{bottom:361.470000px;}
.y231{bottom:362.730000px;}
.y2e6{bottom:364.530000px;}
.y262{bottom:367.410000px;}
.y286{bottom:369.390000px;}
.y2a{bottom:369.750000px;}
.y1fd{bottom:372.105000px;}
.y168{bottom:372.465000px;}
.y296{bottom:374.250000px;}
.y4f{bottom:376.260000px;}
.y10b{bottom:377.850000px;}
.yb4{bottom:378.390000px;}
.y1c2{bottom:378.405000px;}
.y2c1{bottom:379.290000px;}
.ya3{bottom:381.450000px;}
.y119{bottom:382.350000px;}
.y230{bottom:382.530000px;}
.y2e5{bottom:385.410000px;}
.y261{bottom:387.390000px;}
.y285{bottom:389.370000px;}
.y4e{bottom:389.580000px;}
.y29{bottom:393.555000px;}
.y10a{bottom:397.875000px;}
.y4d{bottom:398.400000px;}
.yb3{bottom:399.135000px;}
.ya2{bottom:401.295000px;}
.y22f{bottom:402.375000px;}
.y15c{bottom:404.895000px;}
.y260{bottom:407.235000px;}
.y284{bottom:409.215000px;}
.y109{bottom:410.295000px;}
.y1fc{bottom:414.255000px;}
.y1c1{bottom:415.335000px;}
.y4c{bottom:416.400000px;}
.y28{bottom:417.315000px;}
.y2c0{bottom:418.935000px;}
.yb2{bottom:420.015000px;}
.ya1{bottom:421.095000px;}
.y22e{bottom:422.175000px;}
.y108{bottom:425.595000px;}
.y2e4{bottom:426.315000px;}
.y25f{bottom:427.035000px;}
.y283{bottom:429.915000px;}
.y4b{bottom:434.220000px;}
.ye4{bottom:434.235000px;}
.y2bf{bottom:438.735000px;}
.y1c0{bottom:440.355000px;}
.ya0{bottom:440.895000px;}
.y27{bottom:441.075000px;}
.y22d{bottom:441.975000px;}
.y2e3{bottom:446.115000px;}
.y25e{bottom:446.835000px;}
.y282{bottom:449.715000px;}
.y4a{bottom:452.040000px;}
.y1fb{bottom:456.375000px;}
.y2be{bottom:458.535000px;}
.y9f{bottom:460.695000px;}
.y22c{bottom:461.955000px;}
.y281{bottom:462.675000px;}
.y26{bottom:465.015000px;}
.y2e2{bottom:465.915000px;}
.y25d{bottom:466.635000px;}
.y49{bottom:469.860000px;}
.y6f{bottom:473.100000px;}
.y1bf{bottom:477.255000px;}
.y2bd{bottom:478.515000px;}
.y9e{bottom:480.675000px;}
.y22b{bottom:481.755000px;}
.y280{bottom:482.655000px;}
.y2e1{bottom:485.715000px;}
.y25{bottom:485.895000px;}
.y25c{bottom:486.615000px;}
.y2bc{bottom:498.315000px;}
.y9d{bottom:500.475000px;}
.y22a{bottom:501.555000px;}
.y1bd{bottom:502.095000px;}
.y27f{bottom:502.455000px;}
.y24{bottom:505.695000px;}
.y25b{bottom:506.415000px;}
.y2e0{bottom:506.595000px;}
.y1fa{bottom:512.355000px;}
.y2bb{bottom:518.115000px;}
.y23{bottom:519.375000px;}
.y9c{bottom:520.275000px;}
.y229{bottom:521.355000px;}
.y27e{bottom:522.255000px;}
.y25a{bottom:526.215000px;}
.y1bc{bottom:527.115000px;}
.y22{bottom:528.015000px;}
.y2ba{bottom:537.915000px;}
.y9b{bottom:540.075000px;}
.y1f8{bottom:540.615000px;}
.y228{bottom:541.155000px;}
.y27d{bottom:542.055000px;}
.y259{bottom:546.015000px;}
.y2df{bottom:547.455000px;}
.y15b{bottom:550.695000px;}
.y21{bottom:551.415000px;}
.y2b9{bottom:557.715000px;}
.y9a{bottom:559.875000px;}
.y227{bottom:561.135000px;}
.y27c{bottom:561.855000px;}
.y1ba{bottom:564.015000px;}
.y258{bottom:565.815000px;}
.y2de{bottom:568.155000px;}
.yd7{bottom:569.220000px;}
.yd5{bottom:569.235000px;}
.y20{bottom:574.635000px;}
.y2b8{bottom:577.695000px;}
.y1f5{bottom:577.875000px;}
.y99{bottom:579.855000px;}
.y226{bottom:580.935000px;}
.y27b{bottom:581.835000px;}
.y158{bottom:585.075000px;}
.y257{bottom:585.795000px;}
.y2b7{bottom:597.495000px;}
.y1f{bottom:598.035000px;}
.y98{bottom:599.655000px;}
.y225{bottom:600.735000px;}
.y1b5{bottom:601.095000px;}
.y27a{bottom:601.635000px;}
.y256{bottom:605.595000px;}
.y2dd{bottom:609.015000px;}
.y2b6{bottom:617.295000px;}
.y97{bottom:619.455000px;}
.y224{bottom:620.535000px;}
.y279{bottom:621.435000px;}
.y1ef{bottom:622.335000px;}
.y255{bottom:625.425000px;}
.y155{bottom:625.605000px;}
.y2a4{bottom:626.325000px;}
.y67{bottom:627.225000px;}
.y2dc{bottom:629.025000px;}
.y2b5{bottom:637.125000px;}
.y1af{bottom:638.025000px;}
.y96{bottom:639.285000px;}
.y223{bottom:640.365000px;}
.y278{bottom:641.265000px;}
.y254{bottom:645.225000px;}
.y2a3{bottom:646.125000px;}
.y2db{bottom:648.825000px;}
.y1e{bottom:652.785000px;}
.y2b4{bottom:656.925000px;}
.y95{bottom:659.085000px;}
.y222{bottom:660.345000px;}
.y277{bottom:661.065000px;}
.y253{bottom:665.025000px;}
.y146{bottom:666.825000px;}
.y1d{bottom:668.265000px;}
.y2da{bottom:668.625000px;}
.y1ec{bottom:668.985000px;}
.y2b3{bottom:676.905000px;}
.y94{bottom:679.065000px;}
.y221{bottom:680.145000px;}
.y276{bottom:681.045000px;}
.y1c{bottom:683.925000px;}
.y252{bottom:685.005000px;}
.y2d9{bottom:689.325000px;}
.y2b2{bottom:696.705000px;}
.y1ac{bottom:698.145000px;}
.y93{bottom:698.865000px;}
.y1b{bottom:699.405000px;}
.y220{bottom:699.945000px;}
.y275{bottom:700.845000px;}
.y251{bottom:704.805000px;}
.y1a{bottom:714.885000px;}
.y2b1{bottom:716.505000px;}
.y1eb{bottom:717.585000px;}
.y92{bottom:718.665000px;}
.y21f{bottom:719.745000px;}
.y274{bottom:720.645000px;}
.y250{bottom:724.605000px;}
.y19{bottom:726.045000px;}
.y2d8{bottom:730.185000px;}
.yd2{bottom:732.525000px;}
.y38{bottom:734.685000px;}
.y2b0{bottom:736.305000px;}
.y91{bottom:738.465000px;}
.y21e{bottom:739.545000px;}
.y18{bottom:739.725000px;}
.y273{bottom:740.445000px;}
.y24f{bottom:744.405000px;}
.y2d7{bottom:751.065000px;}
.y17{bottom:752.685000px;}
.y2af{bottom:756.105000px;}
.y90{bottom:758.265000px;}
.y1a6{bottom:758.805000px;}
.y21d{bottom:759.525000px;}
.y1e6{bottom:759.705000px;}
.y272{bottom:760.245000px;}
.y24e{bottom:764.205000px;}
.y16{bottom:765.465000px;}
.y145{bottom:771.225000px;}
.yd1{bottom:772.125000px;}
.y2d6{bottom:774.825000px;}
.y2ae{bottom:776.085000px;}
.y8f{bottom:778.245000px;}
.y15{bottom:778.425000px;}
.y21c{bottom:779.325000px;}
.y271{bottom:781.125000px;}
.y24d{bottom:784.185000px;}
.y144{bottom:789.585000px;}
.y14{bottom:792.285000px;}
.yd0{bottom:795.525000px;}
.y2ad{bottom:795.885000px;}
.y8e{bottom:798.045000px;}
.y21b{bottom:799.125000px;}
.y270{bottom:800.925000px;}
.y24c{bottom:803.985000px;}
.y13{bottom:805.065000px;}
.y143{bottom:805.605000px;}
.ycf{bottom:813.885000px;}
.y2ac{bottom:815.685000px;}
.y8d{bottom:817.845000px;}
.y21a{bottom:818.925000px;}
.y1a0{bottom:819.660000px;}
.y24b{bottom:823.785000px;}
.y142{bottom:824.685000px;}
.y12{bottom:831.885000px;}
.yce{bottom:833.685000px;}
.y2ab{bottom:835.485000px;}
.y8c{bottom:837.645000px;}
.y219{bottom:838.725000px;}
.y11{bottom:843.045000px;}
.y1e0{bottom:843.225000px;}
.y24a{bottom:843.585000px;}
.y141{bottom:843.765000px;}
.ycd{bottom:853.530000px;}
.y2aa{bottom:855.330000px;}
.y8b{bottom:857.490000px;}
.y218{bottom:858.750000px;}
.y140{bottom:862.890000px;}
.y249{bottom:863.430000px;}
.ycc{bottom:873.330000px;}
.y2a9{bottom:875.310000px;}
.y8a{bottom:877.470000px;}
.y217{bottom:878.550000px;}
.y189{bottom:880.350000px;}
.y13f{bottom:881.970000px;}
.y248{bottom:883.410000px;}
.y10{bottom:887.010000px;}
.y1df{bottom:891.150000px;}
.ycb{bottom:893.310000px;}
.y2a8{bottom:895.110000px;}
.y89{bottom:897.270000px;}
.y216{bottom:898.350000px;}
.y13e{bottom:901.230000px;}
.yf{bottom:901.770000px;}
.y247{bottom:903.210000px;}
.y293{bottom:904.110000px;}
.yca{bottom:913.110000px;}
.y2d5{bottom:914.910000px;}
.y2a7{bottom:915.810000px;}
.y88{bottom:917.070000px;}
.y215{bottom:918.150000px;}
.ye{bottom:921.210000px;}
.y246{bottom:923.010000px;}
.y292{bottom:923.910000px;}
.yc9{bottom:932.910000px;}
.y1dc{bottom:933.270000px;}
.y13d{bottom:933.630000px;}
.y2d4{bottom:934.710000px;}
.yd{bottom:936.150000px;}
.y87{bottom:936.870000px;}
.y214{bottom:937.950000px;}
.y245{bottom:942.810000px;}
.yc{bottom:947.670000px;}
.yc8{bottom:952.710000px;}
.y2d3{bottom:954.510000px;}
.y86{bottom:956.670000px;}
.y213{bottom:957.930000px;}
.y186{bottom:959.355000px;}
.y184{bottom:959.370000px;}
.y244{bottom:962.610000px;}
.yb{bottom:965.130000px;}
.y13a{bottom:971.790000px;}
.yc7{bottom:972.510000px;}
.y2d2{bottom:974.490000px;}
.y85{bottom:976.650000px;}
.y212{bottom:978.630000px;}
.y243{bottom:982.590000px;}
.ya{bottom:986.730000px;}
.y1d9{bottom:989.250000px;}
.yc6{bottom:992.490000px;}
.y183{bottom:992.670000px;}
.y2d1{bottom:994.290000px;}
.y84{bottom:996.450000px;}
.y242{bottom:1002.390000px;}
.y295{bottom:1003.290000px;}
.y139{bottom:1004.370000px;}
.y182{bottom:1007.790000px;}
.y9{bottom:1008.690000px;}
.yc5{bottom:1012.290000px;}
.y2d0{bottom:1014.990000px;}
.y83{bottom:1016.250000px;}
.y211{bottom:1022.190000px;}
.y294{bottom:1023.090000px;}
.y137{bottom:1023.450000px;}
.y181{bottom:1024.170000px;}
.yc4{bottom:1032.090000px;}
.y1d6{bottom:1032.990000px;}
.y17d{bottom:1034.790000px;}
.y210{bottom:1035.150000px;}
.y82{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y180{bottom:1041.450000px;}
.y241{bottom:1041.990000px;}
.y134{bottom:1042.530000px;}
.yc3{bottom:1051.890000px;}
.y17c{bottom:1052.070000px;}
.y20f{bottom:1055.130000px;}
.y81{bottom:1055.850000px;}
.y17f{bottom:1058.730000px;}
.y240{bottom:1062.690000px;}
.y7{bottom:1063.230000px;}
.yc2{bottom:1072.590000px;}
.y20e{bottom:1072.770000px;}
.y80{bottom:1075.650000px;}
.y17e{bottom:1075.830000px;}
.y133{bottom:1077.090000px;}
.y23f{bottom:1082.490000px;}
.y6c{bottom:1096.200000px;}
.y7e{bottom:1123.200000px;}
.y45{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h16{height:5.805000px;}
.h68{height:6.257812px;}
.h2{height:13.500000px;}
.h38{height:15.825000px;}
.h3b{height:16.005000px;}
.h3e{height:16.020000px;}
.h1a{height:16.920000px;}
.h40{height:18.345000px;}
.h44{height:18.360000px;}
.h43{height:18.382500px;}
.h22{height:22.140000px;}
.h15{height:23.319141px;}
.h58{height:24.105000px;}
.h57{height:24.285000px;}
.h3f{height:26.805000px;}
.h3a{height:27.525000px;}
.h3d{height:27.576000px;}
.h39{height:27.705000px;}
.h4a{height:27.711000px;}
.h4b{height:27.720000px;}
.hd{height:29.678906px;}
.hf{height:30.963516px;}
.h42{height:31.665000px;}
.h49{height:31.701000px;}
.h41{height:31.845000px;}
.h2a{height:31.860000px;}
.h37{height:33.465000px;}
.h4{height:34.200000px;}
.h62{height:34.884492px;}
.h56{height:36.165000px;}
.h59{height:36.201000px;}
.h55{height:36.210000px;}
.h20{height:36.281250px;}
.h5a{height:36.345000px;}
.h50{height:38.158594px;}
.h51{height:38.158606px;}
.h13{height:39.503370px;}
.h47{height:39.810000px;}
.h46{height:40.500000px;}
.h5{height:40.985156px;}
.h3c{height:41.385000px;}
.h5e{height:41.400000px;}
.h63{height:41.421000px;}
.h21{height:42.086250px;}
.h4e{height:42.086259px;}
.h67{height:43.215117px;}
.h61{height:43.725000px;}
.h27{height:43.737568px;}
.h11{height:44.518359px;}
.hc{height:45.116367px;}
.h18{height:45.714375px;}
.h60{height:45.930000px;}
.h12{height:46.622932px;}
.h5c{height:47.182500px;}
.he{height:47.344922px;}
.h5f{height:47.880000px;}
.h1b{height:48.616875px;}
.h65{height:51.398851px;}
.h14{height:52.998047px;}
.h1c{height:54.421875px;}
.h5b{height:55.245000px;}
.h10{height:55.291992px;}
.h1e{height:55.503491px;}
.h17{height:57.780000px;}
.h26{height:58.621992px;}
.h3{height:58.651172px;}
.h54{height:59.400000px;}
.h53{height:59.940000px;}
.h4f{height:59.961000px;}
.h52{height:60.120000px;}
.h29{height:60.226875px;}
.h36{height:61.423863px;}
.hb{height:65.010937px;}
.h19{height:65.884219px;}
.h64{height:69.105000px;}
.h28{height:70.628906px;}
.h35{height:70.664062px;}
.ha{height:72.562500px;}
.h23{height:74.953125px;}
.h25{height:75.093750px;}
.h4d{height:78.285000px;}
.h66{height:79.006741px;}
.h5d{height:82.800000px;}
.h7{height:87.695156px;}
.h1f{height:95.400000px;}
.h45{height:96.480000px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h4c{height:106.725000px;}
.h31{height:120.801000px;}
.h30{height:120.802500px;}
.h34{height:124.185000px;}
.h32{height:124.191000px;}
.h33{height:124.200000px;}
.h2f{height:134.265000px;}
.h2d{height:134.275500px;}
.h2e{height:134.280000px;}
.h48{height:138.045000px;}
.h24{height:144.720000px;}
.h2b{height:161.130000px;}
.h2c{height:161.145000px;}
.h1d{height:482.115000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w29{width:36.345000px;}
.w34{width:39.591000px;}
.w28{width:40.140000px;}
.w31{width:40.485000px;}
.w2f{width:47.145000px;}
.w2b{width:47.880000px;}
.w2a{width:49.161000px;}
.w33{width:49.350000px;}
.w32{width:53.985000px;}
.w30{width:54.021000px;}
.w2d{width:54.036000px;}
.w2c{width:58.140000px;}
.wb{width:64.791000px;}
.wd{width:64.800000px;}
.w1b{width:66.405000px;}
.w1c{width:67.701000px;}
.w20{width:68.421000px;}
.w1e{width:68.616000px;}
.w21{width:69.105000px;}
.w22{width:69.330000px;}
.w2e{width:74.325000px;}
.w24{width:75.051000px;}
.w25{width:75.060000px;}
.w23{width:77.580000px;}
.w1d{width:80.100000px;}
.w3{width:82.071000px;}
.w36{width:82.080000px;}
.w1f{width:86.925000px;}
.w1a{width:87.111000px;}
.w10{width:101.340000px;}
.wf{width:108.030000px;}
.w18{width:120.045000px;}
.w17{width:120.081000px;}
.w16{width:120.096000px;}
.w14{width:120.951000px;}
.w19{width:122.070000px;}
.w37{width:136.296000px;}
.w15{width:139.341000px;}
.w27{width:143.850000px;}
.w35{width:148.162500px;}
.we{width:152.655000px;}
.w5{width:154.470000px;}
.w39{width:155.910000px;}
.w12{width:162.015000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w38{width:190.995000px;}
.w13{width:216.570000px;}
.w11{width:364.026000px;}
.w26{width:461.610000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.wc{width:650.835000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7d{left:4.252500px;}
.x2{left:8.091000px;}
.x26{left:9.180000px;}
.x11{left:10.791000px;}
.x45{left:12.225000px;}
.x29{left:13.500000px;}
.x6f{left:14.565000px;}
.x3b{left:15.645000px;}
.x35{left:17.445000px;}
.x3f{left:18.720000px;}
.x42{left:20.160000px;}
.x18{left:21.255000px;}
.x48{left:22.320000px;}
.x4c{left:23.760000px;}
.x2a{left:25.560000px;}
.x38{left:27.180000px;}
.x3c{left:28.965000px;}
.x27{left:30.420000px;}
.x3d{left:31.845000px;}
.x5f{left:33.690000px;}
.x39{left:35.280000px;}
.x6e{left:36.900000px;}
.x40{left:38.880000px;}
.x6b{left:40.485000px;}
.x64{left:41.565000px;}
.x54{left:42.690000px;}
.x36{left:45.030000px;}
.x2c{left:46.080000px;}
.x6a{left:47.340000px;}
.x69{left:48.450000px;}
.x2b{left:49.500000px;}
.x67{left:51.645000px;}
.x30{left:52.920000px;}
.x51{left:54.720000px;}
.x43{left:61.590000px;}
.x66{left:64.065000px;}
.x6d{left:66.405000px;}
.x59{left:67.485000px;}
.x6c{left:69.105000px;}
.x68{left:72.705000px;}
.x3{left:73.965000px;}
.x31{left:76.485000px;}
.x14{left:80.505000px;}
.x12{left:81.765000px;}
.x2d{left:87.696000px;}
.x10{left:93.105000px;}
.x17{left:94.905000px;}
.x70{left:102.276000px;}
.x32{left:103.680000px;}
.x1{left:108.045000px;}
.x1e{left:117.756000px;}
.x20{left:121.536000px;}
.x1d{left:128.376000px;}
.xd{left:132.696000px;}
.x60{left:133.785000px;}
.x79{left:136.836000px;}
.x4f{left:144.570000px;}
.x24{left:148.536000px;}
.x33{left:162.030000px;}
.xb{left:169.410000px;}
.x44{left:175.005000px;}
.x4e{left:183.465000px;}
.x21{left:185.985000px;}
.x4{left:190.125000px;}
.x76{left:207.210000px;}
.x34{left:208.845000px;}
.x53{left:219.825000px;}
.x46{left:241.425000px;}
.x55{left:268.995000px;}
.x1a{left:279.795000px;}
.x61{left:281.955000px;}
.xa{left:290.235000px;}
.x22{left:299.400000px;}
.x13{left:303.195000px;}
.xc{left:304.815000px;}
.x47{left:309.315000px;}
.x15{left:314.850000px;}
.x56{left:316.875000px;}
.x8{left:322.455000px;}
.x37{left:348.195000px;}
.x6{left:357.915000px;}
.x1b{left:358.995000px;}
.x1c{left:362.775000px;}
.x62{left:364.035000px;}
.x7a{left:365.475000px;}
.x16{left:371.580000px;}
.x57{left:375.015000px;}
.x49{left:389.415000px;}
.x58{left:429.060000px;}
.x77{left:430.125000px;}
.x7{left:443.085000px;}
.x5{left:446.505000px;}
.x2e{left:451.920000px;}
.x4a{left:458.040000px;}
.x9{left:459.105000px;}
.x3a{left:468.300000px;}
.x71{left:485.025000px;}
.xe{left:489.165000px;}
.xf{left:490.785000px;}
.x63{left:500.340000px;}
.x5a{left:503.400000px;}
.x1f{left:511.125000px;}
.x4b{left:544.980000px;}
.x5b{left:550.560000px;}
.x78{left:566.205000px;}
.x3e{left:588.390000px;}
.x75{left:591.630000px;}
.x5c{left:604.590000px;}
.x7b{left:610.890000px;}
.x2f{left:613.950000px;}
.x19{left:620.253000px;}
.x25{left:643.470000px;}
.x50{left:645.090000px;}
.x72{left:680.910000px;}
.x4d{left:682.530000px;}
.x5d{left:685.590000px;}
.x65{left:691.350000px;}
.x41{left:708.450000px;}
.x7c{left:725.910000px;}
.x73{left:731.490000px;}
.x74{left:737.430000px;}
.x5e{left:739.590000px;}
.x28{left:751.500000px;}
.x23{left:776.340000px;}
.x52{left:788.940000px;}
@media print{
.v3{vertical-align:-69.760000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.239467pt;}
.lsa{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.015360pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.240640pt;}
.ls21{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls18{letter-spacing:8.960000pt;}
.ls1b{letter-spacing:12.800000pt;}
.ls17{letter-spacing:13.760000pt;}
.ls19{letter-spacing:14.080000pt;}
.ls12{letter-spacing:14.880000pt;}
.ls1{letter-spacing:34.080000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls0{letter-spacing:64.000000pt;}
.wse{word-spacing:-42.880000pt;}
.ws10{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws15{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws13{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.912533pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.881067pt;}
.ws4{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.080000pt;}
.ws12{word-spacing:-9.920000pt;}
.ws1{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws11{word-spacing:-8.655360pt;}
.ws7{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-52.960000pt;}
._24{margin-left:-3.872640pt;}
._18{margin-left:-2.640000pt;}
._2{margin-left:-1.472000pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._a{width:3.877760pt;}
._9{width:4.887040pt;}
._e{width:6.215040pt;}
._14{width:7.383680pt;}
._15{width:8.530560pt;}
._17{width:9.456000pt;}
._c{width:10.600320pt;}
._b{width:11.539840pt;}
._1a{width:13.488000pt;}
._16{width:14.880000pt;}
._19{width:15.792000pt;}
._11{width:17.370240pt;}
._12{width:18.664960pt;}
._1b{width:19.601280pt;}
._13{width:20.823040pt;}
._f{width:21.779200pt;}
._d{width:23.160320pt;}
._2c{width:24.488320pt;}
._1f{width:25.444480pt;}
._8{width:26.825600pt;}
._1d{width:28.234880pt;}
._26{width:29.228800pt;}
._10{width:30.225280pt;}
._27{width:31.553280pt;}
._23{width:33.425280pt;}
._21{width:34.421760pt;}
._22{width:35.699840pt;}
._2b{width:37.426560pt;}
._25{width:39.043200pt;}
._30{width:39.999360pt;}
._31{width:40.983680pt;}
._2d{width:42.124160pt;}
._2e{width:43.399040pt;}
._2f{width:44.489600pt;}
._20{width:45.523840pt;}
._3f{width:46.851840pt;}
._28{width:49.348480pt;}
._29{width:50.279680pt;}
._4a{width:53.120000pt;}
._49{width:54.341760pt;}
._2a{width:55.959040pt;}
._37{width:56.984107pt;}
._4{width:58.218667pt;}
._43{width:62.469120pt;}
._3{width:63.617707pt;}
._45{width:64.801493pt;}
._3b{width:65.762560pt;}
._38{width:67.249920pt;}
._39{width:68.606080pt;}
._3d{width:69.534080pt;}
._33{width:73.571200pt;}
._32{width:74.899200pt;}
._46{width:77.530240pt;}
._3e{width:92.110080pt;}
._35{width:93.491200pt;}
._42{width:95.624960pt;}
._36{width:96.785707pt;}
._41{width:97.714773pt;}
._40{width:107.036800pt;}
._3c{width:113.995520pt;}
._34{width:118.736000pt;}
._44{width:119.641600pt;}
._3a{width:126.266240pt;}
._47{width:131.153280pt;}
._5{width:177.440000pt;}
._48{width:178.864000pt;}
._1c{width:254.106667pt;}
._1e{width:264.059520pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fsf{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs10{font-size:67.461249pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y44{bottom:-220.186667pt;}
.y43{bottom:-190.106667pt;}
.y42{bottom:-160.186667pt;}
.y41{bottom:-130.266667pt;}
.y7b{bottom:-115.866667pt;}
.y40{bottom:-100.186667pt;}
.y7a{bottom:-85.946667pt;}
.y3f{bottom:-70.240000pt;}
.y79{bottom:-55.826667pt;}
.y3e{bottom:-40.160000pt;}
.y78{bottom:-25.906667pt;}
.y6e{bottom:-25.466667pt;}
.y47{bottom:-24.160000pt;}
.y7d{bottom:-15.931333pt;}
.y3d{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y2f2{bottom:1.633333pt;}
.y1c4{bottom:2.066667pt;}
.y1b8{bottom:2.080000pt;}
.y154{bottom:2.400000pt;}
.y105{bottom:2.546667pt;}
.y167{bottom:2.560000pt;}
.y66{bottom:2.706667pt;}
.y12d{bottom:2.720000pt;}
.y20c{bottom:2.746667pt;}
.y127{bottom:2.866667pt;}
.y131{bottom:2.880000pt;}
.y11f{bottom:3.506667pt;}
.y2{bottom:3.520000pt;}
.y126{bottom:3.666667pt;}
.y130{bottom:3.680000pt;}
.y187{bottom:3.693333pt;}
.yd3{bottom:4.160000pt;}
.y77{bottom:4.173333pt;}
.y16a{bottom:4.306667pt;}
.y13c{bottom:4.320000pt;}
.y46{bottom:4.480000pt;}
.y1f4{bottom:4.666667pt;}
.y6d{bottom:4.960000pt;}
.y11d{bottom:5.106667pt;}
.y1e5{bottom:5.280000pt;}
.y138{bottom:5.440000pt;}
.y3c{bottom:6.080000pt;}
.y1d8{bottom:6.400000pt;}
.y1f9{bottom:6.560000pt;}
.y19d{bottom:7.520000pt;}
.y199{bottom:7.680000pt;}
.y159{bottom:7.840000pt;}
.y122{bottom:7.986667pt;}
.y12e{bottom:8.000000pt;}
.y1c8{bottom:8.306667pt;}
.y136{bottom:8.320000pt;}
.y1b4{bottom:8.480000pt;}
.y152{bottom:8.640000pt;}
.y1a5{bottom:8.786667pt;}
.y1ab{bottom:8.800000pt;}
.y20a{bottom:8.826667pt;}
.y135{bottom:9.120000pt;}
.y194{bottom:9.760000pt;}
.y188{bottom:9.920000pt;}
.y1f2{bottom:10.746667pt;}
.ye3{bottom:10.880000pt;}
.y193{bottom:11.040000pt;}
.y11b{bottom:11.186667pt;}
.y5{bottom:11.200000pt;}
.y16b{bottom:11.346667pt;}
.yd4{bottom:11.360000pt;}
.y1e3{bottom:11.400000pt;}
.yee{bottom:11.520000pt;}
.y1ed{bottom:11.680000pt;}
.yf9{bottom:11.826667pt;}
.y190{bottom:11.840000pt;}
.y18e{bottom:12.000000pt;}
.y1d7{bottom:12.480000pt;}
.y1c7{bottom:12.786667pt;}
.y1b7{bottom:12.800000pt;}
.y1c3{bottom:12.826667pt;}
.y1be{bottom:12.960000pt;}
.y1b9{bottom:13.760000pt;}
.y1c5{bottom:13.786667pt;}
.y18d{bottom:14.080000pt;}
.y129{bottom:14.226667pt;}
.y192{bottom:14.400000pt;}
.y198{bottom:14.560000pt;}
.y14c{bottom:14.720000pt;}
.y104{bottom:14.866667pt;}
.y12c{bottom:14.880000pt;}
.y20b{bottom:14.906667pt;}
.y121{bottom:15.026667pt;}
.y15a{bottom:15.040000pt;}
.y157{bottom:15.200000pt;}
.y19b{bottom:15.680000pt;}
.y19f{bottom:15.840000pt;}
.y185{bottom:16.000000pt;}
.y196{bottom:16.160000pt;}
.y65{bottom:16.466667pt;}
.y195{bottom:16.480000pt;}
.y1f0{bottom:16.986667pt;}
.y197{bottom:17.120000pt;}
.y11c{bottom:17.266667pt;}
.y19a{bottom:17.440000pt;}
.y1e1{bottom:17.480000pt;}
.y1b1{bottom:17.760000pt;}
.y1a2{bottom:17.906667pt;}
.y1ae{bottom:17.920000pt;}
.y19e{bottom:18.240000pt;}
.y16d{bottom:18.386667pt;}
.y3b{bottom:18.400000pt;}
.y169{bottom:18.426667pt;}
.y172{bottom:18.546667pt;}
.y13b{bottom:18.560000pt;}
.y18f{bottom:18.880000pt;}
.y6{bottom:19.520000pt;}
.y1b3{bottom:19.840000pt;}
.y18c{bottom:20.000000pt;}
.y1a4{bottom:20.146667pt;}
.y1aa{bottom:20.160000pt;}
.y3{bottom:20.640000pt;}
.y151{bottom:20.800000pt;}
.y201{bottom:20.946667pt;}
.y165{bottom:20.960000pt;}
.y1fe{bottom:20.986667pt;}
.y204{bottom:21.106667pt;}
.y1da{bottom:21.120000pt;}
.y4{bottom:21.920000pt;}
.y1f6{bottom:22.080000pt;}
.y156{bottom:22.240000pt;}
.y19c{bottom:22.880000pt;}
.y1f1{bottom:23.066667pt;}
.ye2{bottom:23.200000pt;}
.y1bb{bottom:23.520000pt;}
.y1b6{bottom:23.546667pt;}
.y1e2{bottom:23.720000pt;}
.yed{bottom:23.840000pt;}
.y1b2{bottom:24.000000pt;}
.yf8{bottom:24.146667pt;}
.y1a8{bottom:24.160000pt;}
.y1a3{bottom:24.306667pt;}
.y1a9{bottom:24.320000pt;}
.y191{bottom:25.920000pt;}
.y14b{bottom:27.040000pt;}
.y103{bottom:27.186667pt;}
.y1db{bottom:27.200000pt;}
.y1ff{bottom:27.226667pt;}
.y6b{bottom:27.520000pt;}
.y1f7{bottom:28.160000pt;}
.y1b0{bottom:28.480000pt;}
.y1f3{bottom:29.146667pt;}
.y1e4{bottom:29.800000pt;}
.y64{bottom:30.066667pt;}
.y1ee{bottom:30.080000pt;}
.y1ad{bottom:30.240000pt;}
.y1a1{bottom:30.266667pt;}
.y3a{bottom:30.880000pt;}
.y150{bottom:33.120000pt;}
.y1e7{bottom:33.280000pt;}
.y206{bottom:33.426667pt;}
.y1de{bottom:33.440000pt;}
.y76{bottom:34.093333pt;}
.ye1{bottom:35.520000pt;}
.yec{bottom:36.160000pt;}
.yf7{bottom:36.306667pt;}
.y1a7{bottom:36.640000pt;}
.y18a{bottom:36.960000pt;}
.y14a{bottom:39.200000pt;}
.y102{bottom:39.346667pt;}
.y6a{bottom:39.360000pt;}
.y207{bottom:39.506667pt;}
.y1dd{bottom:39.520000pt;}
.y147{bottom:40.000000pt;}
.y63{bottom:41.106667pt;}
.y7f{bottom:41.760000pt;}
.y39{bottom:42.240000pt;}
.yf1{bottom:44.626667pt;}
.y14f{bottom:45.440000pt;}
.y1e8{bottom:45.600000pt;}
.yfc{bottom:46.066667pt;}
.ye0{bottom:47.706667pt;}
.yeb{bottom:48.320000pt;}
.yf6{bottom:48.626667pt;}
.ye6{bottom:50.573333pt;}
.y1{bottom:51.040000pt;}
.y149{bottom:51.520000pt;}
.y101{bottom:51.666667pt;}
.y1ea{bottom:51.680000pt;}
.y208{bottom:51.826667pt;}
.y7c{bottom:56.693333pt;}
.y62{bottom:56.986667pt;}
.yf0{bottom:57.106667pt;}
.y14e{bottom:57.600000pt;}
.y164{bottom:57.760000pt;}
.yfb{bottom:58.546667pt;}
.ydf{bottom:60.026667pt;}
.yea{bottom:60.640000pt;}
.yf5{bottom:60.946667pt;}
.y18b{bottom:61.120000pt;}
.y75{bottom:61.613333pt;}
.y69{bottom:62.560000pt;}
.yd8{bottom:62.600000pt;}
.ye5{bottom:63.040000pt;}
.y148{bottom:63.840000pt;}
.y100{bottom:63.986667pt;}
.y1e9{bottom:64.000000pt;}
.y14d{bottom:69.920000pt;}
.yde{bottom:72.346667pt;}
.y61{bottom:72.826667pt;}
.ye9{bottom:72.960000pt;}
.yf4{bottom:73.146667pt;}
.y74{bottom:73.293333pt;}
.yd6{bottom:75.066667pt;}
.y153{bottom:76.000000pt;}
.yff{bottom:76.146667pt;}
.y160{bottom:76.160000pt;}
.y68{bottom:77.600000pt;}
.y163{bottom:82.240000pt;}
.ydd{bottom:84.506667pt;}
.y73{bottom:84.813333pt;}
.ye8{bottom:85.120000pt;}
.yf3{bottom:85.466667pt;}
.y118{bottom:88.320000pt;}
.yfe{bottom:88.466667pt;}
.y60{bottom:88.826667pt;}
.y2cf{bottom:90.240000pt;}
.y132{bottom:90.560000pt;}
.y20d{bottom:91.840000pt;}
.yb1{bottom:92.160000pt;}
.y23e{bottom:93.120000pt;}
.y2f1{bottom:93.760000pt;}
.y162{bottom:94.560000pt;}
.y72{bottom:96.333333pt;}
.ydc{bottom:96.826667pt;}
.ye7{bottom:97.440000pt;}
.yf2{bottom:97.786667pt;}
.y177{bottom:98.400000pt;}
.y15e{bottom:98.720000pt;}
.y291{bottom:99.200000pt;}
.y15f{bottom:100.640000pt;}
.yfd{bottom:100.786667pt;}
.y17b{bottom:101.920000pt;}
.y2a2{bottom:102.720000pt;}
.y26f{bottom:103.520000pt;}
.y5f{bottom:104.666667pt;}
.y12f{bottom:105.440000pt;}
.y117{bottom:105.920000pt;}
.y1d4{bottom:106.080000pt;}
.y1d5{bottom:106.240000pt;}
.y161{bottom:106.720000pt;}
.yc1{bottom:107.040000pt;}
.y37{bottom:107.360000pt;}
.y2ce{bottom:107.840000pt;}
.y71{bottom:108.013333pt;}
.ydb{bottom:108.986667pt;}
.yb0{bottom:109.760000pt;}
.y23d{bottom:110.720000pt;}
.y2f0{bottom:111.520000pt;}
.y15d{bottom:112.800000pt;}
.y166{bottom:112.960000pt;}
.y26e{bottom:115.040000pt;}
.y176{bottom:116.000000pt;}
.y5e{bottom:116.506667pt;}
.y290{bottom:116.800000pt;}
.y70{bottom:118.893333pt;}
.y17a{bottom:119.520000pt;}
.y12b{bottom:120.320000pt;}
.yda{bottom:121.306667pt;}
.y116{bottom:123.520000pt;}
.y1d3{bottom:123.680000pt;}
.y5d{bottom:124.346667pt;}
.yc0{bottom:124.800000pt;}
.y36{bottom:124.960000pt;}
.y2cd{bottom:125.440000pt;}
.yaf{bottom:127.360000pt;}
.y23c{bottom:128.320000pt;}
.y2ef{bottom:129.120000pt;}
.y26d{bottom:132.640000pt;}
.y175{bottom:133.600000pt;}
.yd9{bottom:133.626667pt;}
.y107{bottom:134.400000pt;}
.y179{bottom:137.120000pt;}
.y2a1{bottom:137.920000pt;}
.y5c{bottom:140.186667pt;}
.y115{bottom:141.120000pt;}
.y1d2{bottom:141.280000pt;}
.ybf{bottom:142.400000pt;}
.y35{bottom:142.720000pt;}
.y2cc{bottom:143.200000pt;}
.y209{bottom:143.360000pt;}
.yae{bottom:144.986667pt;}
.y12a{bottom:145.480000pt;}
.y23b{bottom:146.106667pt;}
.y2ee{bottom:146.746667pt;}
.y26c{bottom:150.266667pt;}
.y174{bottom:152.026667pt;}
.y106{bottom:153.626667pt;}
.y178{bottom:154.746667pt;}
.y2a0{bottom:155.546667pt;}
.y5b{bottom:156.026667pt;}
.y114{bottom:158.746667pt;}
.y1d1{bottom:159.066667pt;}
.ybe{bottom:160.026667pt;}
.y34{bottom:160.346667pt;}
.y128{bottom:160.360000pt;}
.y2cb{bottom:160.826667pt;}
.yad{bottom:162.746667pt;}
.y23a{bottom:163.706667pt;}
.y2ed{bottom:164.346667pt;}
.yfa{bottom:166.920000pt;}
.y26b{bottom:168.026667pt;}
.y205{bottom:168.520000pt;}
.y28f{bottom:169.786667pt;}
.y5a{bottom:171.866667pt;}
.y173{bottom:172.506667pt;}
.y29f{bottom:173.306667pt;}
.y113{bottom:176.506667pt;}
.y1d0{bottom:176.666667pt;}
.ybd{bottom:177.626667pt;}
.y33{bottom:177.946667pt;}
.y2ca{bottom:178.426667pt;}
.yac{bottom:180.346667pt;}
.y239{bottom:181.306667pt;}
.y2ec{bottom:181.946667pt;}
.y26a{bottom:185.626667pt;}
.y171{bottom:186.600000pt;}
.y28e{bottom:187.386667pt;}
.y59{bottom:187.866667pt;}
.y29e{bottom:190.906667pt;}
.y112{bottom:194.106667pt;}
.y1cf{bottom:194.266667pt;}
.ybc{bottom:195.226667pt;}
.y32{bottom:195.546667pt;}
.y2c9{bottom:196.026667pt;}
.y2eb{bottom:197.786667pt;}
.y125{bottom:197.800000pt;}
.yab{bottom:197.946667pt;}
.y238{bottom:198.906667pt;}
.y269{bottom:203.226667pt;}
.y58{bottom:203.706667pt;}
.y28d{bottom:204.986667pt;}
.y29d{bottom:208.506667pt;}
.y111{bottom:211.706667pt;}
.y1ce{bottom:211.866667pt;}
.y124{bottom:212.680000pt;}
.ybb{bottom:212.986667pt;}
.y31{bottom:213.146667pt;}
.y2c8{bottom:213.626667pt;}
.yaa{bottom:215.546667pt;}
.y170{bottom:215.560000pt;}
.y237{bottom:216.506667pt;}
.y57{bottom:219.546667pt;}
.y268{bottom:220.826667pt;}
.y28c{bottom:222.586667pt;}
.y29c{bottom:226.106667pt;}
.y110{bottom:229.306667pt;}
.y1cd{bottom:229.466667pt;}
.yba{bottom:230.586667pt;}
.y203{bottom:230.600000pt;}
.y30{bottom:230.906667pt;}
.y2c7{bottom:231.386667pt;}
.ya9{bottom:233.146667pt;}
.y2ea{bottom:234.106667pt;}
.y236{bottom:234.266667pt;}
.y56{bottom:235.386667pt;}
.y123{bottom:237.960000pt;}
.y267{bottom:238.426667pt;}
.y28b{bottom:240.186667pt;}
.y29b{bottom:243.706667pt;}
.y16f{bottom:244.360000pt;}
.y2a6{bottom:244.506667pt;}
.y10f{bottom:246.906667pt;}
.y1cc{bottom:247.226667pt;}
.yb9{bottom:248.186667pt;}
.y2f{bottom:248.506667pt;}
.y2c6{bottom:248.986667pt;}
.ya8{bottom:250.906667pt;}
.y55{bottom:251.253333pt;}
.y2e9{bottom:251.706667pt;}
.y235{bottom:251.866667pt;}
.y266{bottom:256.186667pt;}
.y28a{bottom:257.946667pt;}
.y29a{bottom:261.466667pt;}
.y2a5{bottom:262.266667pt;}
.y120{bottom:263.080000pt;}
.y10e{bottom:264.666667pt;}
.y1cb{bottom:264.826667pt;}
.yb8{bottom:265.786667pt;}
.y2e{bottom:266.106667pt;}
.y2c5{bottom:266.586667pt;}
.y54{bottom:267.253333pt;}
.y202{bottom:268.040000pt;}
.ya7{bottom:268.506667pt;}
.y234{bottom:269.466667pt;}
.y2e8{bottom:270.106667pt;}
.y16e{bottom:273.320000pt;}
.y265{bottom:273.786667pt;}
.y289{bottom:275.546667pt;}
.yef{bottom:277.960000pt;}
.y299{bottom:279.066667pt;}
.y53{bottom:279.093333pt;}
.y10d{bottom:282.266667pt;}
.y1ca{bottom:282.426667pt;}
.yb7{bottom:283.386667pt;}
.y2c4{bottom:284.186667pt;}
.y2d{bottom:284.506667pt;}
.ya6{bottom:286.106667pt;}
.y52{bottom:286.933333pt;}
.y233{bottom:287.066667pt;}
.y11e{bottom:288.360000pt;}
.y264{bottom:291.386667pt;}
.y288{bottom:293.146667pt;}
.y200{bottom:293.320000pt;}
.y298{bottom:296.666667pt;}
.y2c{bottom:299.866667pt;}
.y1c9{bottom:300.026667pt;}
.yb6{bottom:301.146667pt;}
.y2c3{bottom:301.786667pt;}
.y16c{bottom:302.120000pt;}
.y51{bottom:302.773333pt;}
.y11a{bottom:303.240000pt;}
.ya5{bottom:303.706667pt;}
.y48{bottom:304.520000pt;}
.y232{bottom:304.666667pt;}
.y2e7{bottom:306.426667pt;}
.y2b{bottom:307.386667pt;}
.y263{bottom:308.986667pt;}
.y287{bottom:310.746667pt;}
.y1c6{bottom:314.280000pt;}
.y297{bottom:315.066667pt;}
.y10c{bottom:317.466667pt;}
.y50{bottom:318.613333pt;}
.yb5{bottom:318.746667pt;}
.y2c2{bottom:319.386667pt;}
.ya4{bottom:321.306667pt;}
.y231{bottom:322.426667pt;}
.y2e6{bottom:324.026667pt;}
.y262{bottom:326.586667pt;}
.y286{bottom:328.346667pt;}
.y2a{bottom:328.666667pt;}
.y1fd{bottom:330.760000pt;}
.y168{bottom:331.080000pt;}
.y296{bottom:332.666667pt;}
.y4f{bottom:334.453333pt;}
.y10b{bottom:335.866667pt;}
.yb4{bottom:336.346667pt;}
.y1c2{bottom:336.360000pt;}
.y2c1{bottom:337.146667pt;}
.ya3{bottom:339.066667pt;}
.y119{bottom:339.866667pt;}
.y230{bottom:340.026667pt;}
.y2e5{bottom:342.586667pt;}
.y261{bottom:344.346667pt;}
.y285{bottom:346.106667pt;}
.y4e{bottom:346.293333pt;}
.y29{bottom:349.826667pt;}
.y10a{bottom:353.666667pt;}
.y4d{bottom:354.133333pt;}
.yb3{bottom:354.786667pt;}
.ya2{bottom:356.706667pt;}
.y22f{bottom:357.666667pt;}
.y15c{bottom:359.906667pt;}
.y260{bottom:361.986667pt;}
.y284{bottom:363.746667pt;}
.y109{bottom:364.706667pt;}
.y1fc{bottom:368.226667pt;}
.y1c1{bottom:369.186667pt;}
.y4c{bottom:370.133333pt;}
.y28{bottom:370.946667pt;}
.y2c0{bottom:372.386667pt;}
.yb2{bottom:373.346667pt;}
.ya1{bottom:374.306667pt;}
.y22e{bottom:375.266667pt;}
.y108{bottom:378.306667pt;}
.y2e4{bottom:378.946667pt;}
.y25f{bottom:379.586667pt;}
.y283{bottom:382.146667pt;}
.y4b{bottom:385.973333pt;}
.ye4{bottom:385.986667pt;}
.y2bf{bottom:389.986667pt;}
.y1c0{bottom:391.426667pt;}
.ya0{bottom:391.906667pt;}
.y27{bottom:392.066667pt;}
.y22d{bottom:392.866667pt;}
.y2e3{bottom:396.546667pt;}
.y25e{bottom:397.186667pt;}
.y282{bottom:399.746667pt;}
.y4a{bottom:401.813333pt;}
.y1fb{bottom:405.666667pt;}
.y2be{bottom:407.586667pt;}
.y9f{bottom:409.506667pt;}
.y22c{bottom:410.626667pt;}
.y281{bottom:411.266667pt;}
.y26{bottom:413.346667pt;}
.y2e2{bottom:414.146667pt;}
.y25d{bottom:414.786667pt;}
.y49{bottom:417.653333pt;}
.y6f{bottom:420.533333pt;}
.y1bf{bottom:424.226667pt;}
.y2bd{bottom:425.346667pt;}
.y9e{bottom:427.266667pt;}
.y22b{bottom:428.226667pt;}
.y280{bottom:429.026667pt;}
.y2e1{bottom:431.746667pt;}
.y25{bottom:431.906667pt;}
.y25c{bottom:432.546667pt;}
.y2bc{bottom:442.946667pt;}
.y9d{bottom:444.866667pt;}
.y22a{bottom:445.826667pt;}
.y1bd{bottom:446.306667pt;}
.y27f{bottom:446.626667pt;}
.y24{bottom:449.506667pt;}
.y25b{bottom:450.146667pt;}
.y2e0{bottom:450.306667pt;}
.y1fa{bottom:455.426667pt;}
.y2bb{bottom:460.546667pt;}
.y23{bottom:461.666667pt;}
.y9c{bottom:462.466667pt;}
.y229{bottom:463.426667pt;}
.y27e{bottom:464.226667pt;}
.y25a{bottom:467.746667pt;}
.y1bc{bottom:468.546667pt;}
.y22{bottom:469.346667pt;}
.y2ba{bottom:478.146667pt;}
.y9b{bottom:480.066667pt;}
.y1f8{bottom:480.546667pt;}
.y228{bottom:481.026667pt;}
.y27d{bottom:481.826667pt;}
.y259{bottom:485.346667pt;}
.y2df{bottom:486.626667pt;}
.y15b{bottom:489.506667pt;}
.y21{bottom:490.146667pt;}
.y2b9{bottom:495.746667pt;}
.y9a{bottom:497.666667pt;}
.y227{bottom:498.786667pt;}
.y27c{bottom:499.426667pt;}
.y1ba{bottom:501.346667pt;}
.y258{bottom:502.946667pt;}
.y2de{bottom:505.026667pt;}
.yd7{bottom:505.973333pt;}
.yd5{bottom:505.986667pt;}
.y20{bottom:510.786667pt;}
.y2b8{bottom:513.506667pt;}
.y1f5{bottom:513.666667pt;}
.y99{bottom:515.426667pt;}
.y226{bottom:516.386667pt;}
.y27b{bottom:517.186667pt;}
.y158{bottom:520.066667pt;}
.y257{bottom:520.706667pt;}
.y2b7{bottom:531.106667pt;}
.y1f{bottom:531.586667pt;}
.y98{bottom:533.026667pt;}
.y225{bottom:533.986667pt;}
.y1b5{bottom:534.306667pt;}
.y27a{bottom:534.786667pt;}
.y256{bottom:538.306667pt;}
.y2dd{bottom:541.346667pt;}
.y2b6{bottom:548.706667pt;}
.y97{bottom:550.626667pt;}
.y224{bottom:551.586667pt;}
.y279{bottom:552.386667pt;}
.y1ef{bottom:553.186667pt;}
.y255{bottom:555.933333pt;}
.y155{bottom:556.093333pt;}
.y2a4{bottom:556.733333pt;}
.y67{bottom:557.533333pt;}
.y2dc{bottom:559.133333pt;}
.y2b5{bottom:566.333333pt;}
.y1af{bottom:567.133333pt;}
.y96{bottom:568.253333pt;}
.y223{bottom:569.213333pt;}
.y278{bottom:570.013333pt;}
.y254{bottom:573.533333pt;}
.y2a3{bottom:574.333333pt;}
.y2db{bottom:576.733333pt;}
.y1e{bottom:580.253333pt;}
.y2b4{bottom:583.933333pt;}
.y95{bottom:585.853333pt;}
.y222{bottom:586.973333pt;}
.y277{bottom:587.613333pt;}
.y253{bottom:591.133333pt;}
.y146{bottom:592.733333pt;}
.y1d{bottom:594.013333pt;}
.y2da{bottom:594.333333pt;}
.y1ec{bottom:594.653333pt;}
.y2b3{bottom:601.693333pt;}
.y94{bottom:603.613333pt;}
.y221{bottom:604.573333pt;}
.y276{bottom:605.373333pt;}
.y1c{bottom:607.933333pt;}
.y252{bottom:608.893333pt;}
.y2d9{bottom:612.733333pt;}
.y2b2{bottom:619.293333pt;}
.y1ac{bottom:620.573333pt;}
.y93{bottom:621.213333pt;}
.y1b{bottom:621.693333pt;}
.y220{bottom:622.173333pt;}
.y275{bottom:622.973333pt;}
.y251{bottom:626.493333pt;}
.y1a{bottom:635.453333pt;}
.y2b1{bottom:636.893333pt;}
.y1eb{bottom:637.853333pt;}
.y92{bottom:638.813333pt;}
.y21f{bottom:639.773333pt;}
.y274{bottom:640.573333pt;}
.y250{bottom:644.093333pt;}
.y19{bottom:645.373333pt;}
.y2d8{bottom:649.053333pt;}
.yd2{bottom:651.133333pt;}
.y38{bottom:653.053333pt;}
.y2b0{bottom:654.493333pt;}
.y91{bottom:656.413333pt;}
.y21e{bottom:657.373333pt;}
.y18{bottom:657.533333pt;}
.y273{bottom:658.173333pt;}
.y24f{bottom:661.693333pt;}
.y2d7{bottom:667.613333pt;}
.y17{bottom:669.053333pt;}
.y2af{bottom:672.093333pt;}
.y90{bottom:674.013333pt;}
.y1a6{bottom:674.493333pt;}
.y21d{bottom:675.133333pt;}
.y1e6{bottom:675.293333pt;}
.y272{bottom:675.773333pt;}
.y24e{bottom:679.293333pt;}
.y16{bottom:680.413333pt;}
.y145{bottom:685.533333pt;}
.yd1{bottom:686.333333pt;}
.y2d6{bottom:688.733333pt;}
.y2ae{bottom:689.853333pt;}
.y8f{bottom:691.773333pt;}
.y15{bottom:691.933333pt;}
.y21c{bottom:692.733333pt;}
.y271{bottom:694.333333pt;}
.y24d{bottom:697.053333pt;}
.y144{bottom:701.853333pt;}
.y14{bottom:704.253333pt;}
.yd0{bottom:707.133333pt;}
.y2ad{bottom:707.453333pt;}
.y8e{bottom:709.373333pt;}
.y21b{bottom:710.333333pt;}
.y270{bottom:711.933333pt;}
.y24c{bottom:714.653333pt;}
.y13{bottom:715.613333pt;}
.y143{bottom:716.093333pt;}
.ycf{bottom:723.453333pt;}
.y2ac{bottom:725.053333pt;}
.y8d{bottom:726.973333pt;}
.y21a{bottom:727.933333pt;}
.y1a0{bottom:728.586667pt;}
.y24b{bottom:732.253333pt;}
.y142{bottom:733.053333pt;}
.y12{bottom:739.453333pt;}
.yce{bottom:741.053333pt;}
.y2ab{bottom:742.653333pt;}
.y8c{bottom:744.573333pt;}
.y219{bottom:745.533333pt;}
.y11{bottom:749.373333pt;}
.y1e0{bottom:749.533333pt;}
.y24a{bottom:749.853333pt;}
.y141{bottom:750.013333pt;}
.ycd{bottom:758.693333pt;}
.y2aa{bottom:760.293333pt;}
.y8b{bottom:762.213333pt;}
.y218{bottom:763.333333pt;}
.y140{bottom:767.013333pt;}
.y249{bottom:767.493333pt;}
.ycc{bottom:776.293333pt;}
.y2a9{bottom:778.053333pt;}
.y8a{bottom:779.973333pt;}
.y217{bottom:780.933333pt;}
.y189{bottom:782.533333pt;}
.y13f{bottom:783.973333pt;}
.y248{bottom:785.253333pt;}
.y10{bottom:788.453333pt;}
.y1df{bottom:792.133333pt;}
.ycb{bottom:794.053333pt;}
.y2a8{bottom:795.653333pt;}
.y89{bottom:797.573333pt;}
.y216{bottom:798.533333pt;}
.y13e{bottom:801.093333pt;}
.yf{bottom:801.573333pt;}
.y247{bottom:802.853333pt;}
.y293{bottom:803.653333pt;}
.yca{bottom:811.653333pt;}
.y2d5{bottom:813.253333pt;}
.y2a7{bottom:814.053333pt;}
.y88{bottom:815.173333pt;}
.y215{bottom:816.133333pt;}
.ye{bottom:818.853333pt;}
.y246{bottom:820.453333pt;}
.y292{bottom:821.253333pt;}
.yc9{bottom:829.253333pt;}
.y1dc{bottom:829.573333pt;}
.y13d{bottom:829.893333pt;}
.y2d4{bottom:830.853333pt;}
.yd{bottom:832.133333pt;}
.y87{bottom:832.773333pt;}
.y214{bottom:833.733333pt;}
.y245{bottom:838.053333pt;}
.yc{bottom:842.373333pt;}
.yc8{bottom:846.853333pt;}
.y2d3{bottom:848.453333pt;}
.y86{bottom:850.373333pt;}
.y213{bottom:851.493333pt;}
.y186{bottom:852.760000pt;}
.y184{bottom:852.773333pt;}
.y244{bottom:855.653333pt;}
.yb{bottom:857.893333pt;}
.y13a{bottom:863.813333pt;}
.yc7{bottom:864.453333pt;}
.y2d2{bottom:866.213333pt;}
.y85{bottom:868.133333pt;}
.y212{bottom:869.893333pt;}
.y243{bottom:873.413333pt;}
.ya{bottom:877.093333pt;}
.y1d9{bottom:879.333333pt;}
.yc6{bottom:882.213333pt;}
.y183{bottom:882.373333pt;}
.y2d1{bottom:883.813333pt;}
.y84{bottom:885.733333pt;}
.y242{bottom:891.013333pt;}
.y295{bottom:891.813333pt;}
.y139{bottom:892.773333pt;}
.y182{bottom:895.813333pt;}
.y9{bottom:896.613333pt;}
.yc5{bottom:899.813333pt;}
.y2d0{bottom:902.213333pt;}
.y83{bottom:903.333333pt;}
.y211{bottom:908.613333pt;}
.y294{bottom:909.413333pt;}
.y137{bottom:909.733333pt;}
.y181{bottom:910.373333pt;}
.yc4{bottom:917.413333pt;}
.y1d6{bottom:918.213333pt;}
.y17d{bottom:919.813333pt;}
.y210{bottom:920.133333pt;}
.y82{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y180{bottom:925.733333pt;}
.y241{bottom:926.213333pt;}
.y134{bottom:926.693333pt;}
.yc3{bottom:935.013333pt;}
.y17c{bottom:935.173333pt;}
.y20f{bottom:937.893333pt;}
.y81{bottom:938.533333pt;}
.y17f{bottom:941.093333pt;}
.y240{bottom:944.613333pt;}
.y7{bottom:945.093333pt;}
.yc2{bottom:953.413333pt;}
.y20e{bottom:953.573333pt;}
.y80{bottom:956.133333pt;}
.y17e{bottom:956.293333pt;}
.y133{bottom:957.413333pt;}
.y23f{bottom:962.213333pt;}
.y6c{bottom:974.400000pt;}
.y7e{bottom:998.400000pt;}
.y45{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h16{height:5.160000pt;}
.h68{height:5.562500pt;}
.h2{height:12.000000pt;}
.h38{height:14.066667pt;}
.h3b{height:14.226667pt;}
.h3e{height:14.240000pt;}
.h1a{height:15.040000pt;}
.h40{height:16.306667pt;}
.h44{height:16.320000pt;}
.h43{height:16.340000pt;}
.h22{height:19.680000pt;}
.h15{height:20.728125pt;}
.h58{height:21.426667pt;}
.h57{height:21.586667pt;}
.h3f{height:23.826667pt;}
.h3a{height:24.466667pt;}
.h3d{height:24.512000pt;}
.h39{height:24.626667pt;}
.h4a{height:24.632000pt;}
.h4b{height:24.640000pt;}
.hd{height:26.381250pt;}
.hf{height:27.523125pt;}
.h42{height:28.146667pt;}
.h49{height:28.178667pt;}
.h41{height:28.306667pt;}
.h2a{height:28.320000pt;}
.h37{height:29.746667pt;}
.h4{height:30.400000pt;}
.h62{height:31.008437pt;}
.h56{height:32.146667pt;}
.h59{height:32.178667pt;}
.h55{height:32.186667pt;}
.h20{height:32.250000pt;}
.h5a{height:32.306667pt;}
.h50{height:33.918750pt;}
.h51{height:33.918761pt;}
.h13{height:35.114107pt;}
.h47{height:35.386667pt;}
.h46{height:36.000000pt;}
.h5{height:36.431250pt;}
.h3c{height:36.786667pt;}
.h5e{height:36.800000pt;}
.h63{height:36.818667pt;}
.h21{height:37.410000pt;}
.h4e{height:37.410008pt;}
.h67{height:38.413438pt;}
.h61{height:38.866667pt;}
.h27{height:38.877839pt;}
.h11{height:39.571875pt;}
.hc{height:40.103437pt;}
.h18{height:40.635000pt;}
.h60{height:40.826667pt;}
.h12{height:41.442606pt;}
.h5c{height:41.940000pt;}
.he{height:42.084375pt;}
.h5f{height:42.560000pt;}
.h1b{height:43.215000pt;}
.h65{height:45.687867pt;}
.h14{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h5b{height:49.106667pt;}
.h10{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h17{height:51.360000pt;}
.h26{height:52.108438pt;}
.h3{height:52.134375pt;}
.h54{height:52.800000pt;}
.h53{height:53.280000pt;}
.h4f{height:53.298667pt;}
.h52{height:53.440000pt;}
.h29{height:53.535000pt;}
.h36{height:54.598989pt;}
.hb{height:57.787500pt;}
.h19{height:58.563750pt;}
.h64{height:61.426667pt;}
.h28{height:62.781250pt;}
.h35{height:62.812500pt;}
.ha{height:64.500000pt;}
.h23{height:66.625000pt;}
.h25{height:66.750000pt;}
.h4d{height:69.586667pt;}
.h66{height:70.228214pt;}
.h5d{height:73.600000pt;}
.h7{height:77.951250pt;}
.h1f{height:84.800000pt;}
.h45{height:85.760000pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h4c{height:94.866667pt;}
.h31{height:107.378667pt;}
.h30{height:107.380000pt;}
.h34{height:110.386667pt;}
.h32{height:110.392000pt;}
.h33{height:110.400000pt;}
.h2f{height:119.346667pt;}
.h2d{height:119.356000pt;}
.h2e{height:119.360000pt;}
.h48{height:122.706667pt;}
.h24{height:128.640000pt;}
.h2b{height:143.226667pt;}
.h2c{height:143.240000pt;}
.h1d{height:428.546667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w29{width:32.306667pt;}
.w34{width:35.192000pt;}
.w28{width:35.680000pt;}
.w31{width:35.986667pt;}
.w2f{width:41.906667pt;}
.w2b{width:42.560000pt;}
.w2a{width:43.698667pt;}
.w33{width:43.866667pt;}
.w32{width:47.986667pt;}
.w30{width:48.018667pt;}
.w2d{width:48.032000pt;}
.w2c{width:51.680000pt;}
.wb{width:57.592000pt;}
.wd{width:57.600000pt;}
.w1b{width:59.026667pt;}
.w1c{width:60.178667pt;}
.w20{width:60.818667pt;}
.w1e{width:60.992000pt;}
.w21{width:61.426667pt;}
.w22{width:61.626667pt;}
.w2e{width:66.066667pt;}
.w24{width:66.712000pt;}
.w25{width:66.720000pt;}
.w23{width:68.960000pt;}
.w1d{width:71.200000pt;}
.w3{width:72.952000pt;}
.w36{width:72.960000pt;}
.w1f{width:77.266667pt;}
.w1a{width:77.432000pt;}
.w10{width:90.080000pt;}
.wf{width:96.026667pt;}
.w18{width:106.706667pt;}
.w17{width:106.738667pt;}
.w16{width:106.752000pt;}
.w14{width:107.512000pt;}
.w19{width:108.506667pt;}
.w37{width:121.152000pt;}
.w15{width:123.858667pt;}
.w27{width:127.866667pt;}
.w35{width:131.700000pt;}
.we{width:135.693333pt;}
.w5{width:137.306667pt;}
.w39{width:138.586667pt;}
.w12{width:144.013333pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w38{width:169.773333pt;}
.w13{width:192.506667pt;}
.w11{width:323.578667pt;}
.w26{width:410.320000pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.wc{width:578.520000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7d{left:3.780000pt;}
.x2{left:7.192000pt;}
.x26{left:8.160000pt;}
.x11{left:9.592000pt;}
.x45{left:10.866667pt;}
.x29{left:12.000000pt;}
.x6f{left:12.946667pt;}
.x3b{left:13.906667pt;}
.x35{left:15.506667pt;}
.x3f{left:16.640000pt;}
.x42{left:17.920000pt;}
.x18{left:18.893333pt;}
.x48{left:19.840000pt;}
.x4c{left:21.120000pt;}
.x2a{left:22.720000pt;}
.x38{left:24.160000pt;}
.x3c{left:25.746667pt;}
.x27{left:27.040000pt;}
.x3d{left:28.306667pt;}
.x5f{left:29.946667pt;}
.x39{left:31.360000pt;}
.x6e{left:32.800000pt;}
.x40{left:34.560000pt;}
.x6b{left:35.986667pt;}
.x64{left:36.946667pt;}
.x54{left:37.946667pt;}
.x36{left:40.026667pt;}
.x2c{left:40.960000pt;}
.x6a{left:42.080000pt;}
.x69{left:43.066667pt;}
.x2b{left:44.000000pt;}
.x67{left:45.906667pt;}
.x30{left:47.040000pt;}
.x51{left:48.640000pt;}
.x43{left:54.746667pt;}
.x66{left:56.946667pt;}
.x6d{left:59.026667pt;}
.x59{left:59.986667pt;}
.x6c{left:61.426667pt;}
.x68{left:64.626667pt;}
.x3{left:65.746667pt;}
.x31{left:67.986667pt;}
.x14{left:71.560000pt;}
.x12{left:72.680000pt;}
.x2d{left:77.952000pt;}
.x10{left:82.760000pt;}
.x17{left:84.360000pt;}
.x70{left:90.912000pt;}
.x32{left:92.160000pt;}
.x1{left:96.040000pt;}
.x1e{left:104.672000pt;}
.x20{left:108.032000pt;}
.x1d{left:114.112000pt;}
.xd{left:117.952000pt;}
.x60{left:118.920000pt;}
.x79{left:121.632000pt;}
.x4f{left:128.506667pt;}
.x24{left:132.032000pt;}
.x33{left:144.026667pt;}
.xb{left:150.586667pt;}
.x44{left:155.560000pt;}
.x4e{left:163.080000pt;}
.x21{left:165.320000pt;}
.x4{left:169.000000pt;}
.x76{left:184.186667pt;}
.x34{left:185.640000pt;}
.x53{left:195.400000pt;}
.x46{left:214.600000pt;}
.x55{left:239.106667pt;}
.x1a{left:248.706667pt;}
.x61{left:250.626667pt;}
.xa{left:257.986667pt;}
.x22{left:266.133333pt;}
.x13{left:269.506667pt;}
.xc{left:270.946667pt;}
.x47{left:274.946667pt;}
.x15{left:279.866667pt;}
.x56{left:281.666667pt;}
.x8{left:286.626667pt;}
.x37{left:309.506667pt;}
.x6{left:318.146667pt;}
.x1b{left:319.106667pt;}
.x1c{left:322.466667pt;}
.x62{left:323.586667pt;}
.x7a{left:324.866667pt;}
.x16{left:330.293333pt;}
.x57{left:333.346667pt;}
.x49{left:346.146667pt;}
.x58{left:381.386667pt;}
.x77{left:382.333333pt;}
.x7{left:393.853333pt;}
.x5{left:396.893333pt;}
.x2e{left:401.706667pt;}
.x4a{left:407.146667pt;}
.x9{left:408.093333pt;}
.x3a{left:416.266667pt;}
.x71{left:431.133333pt;}
.xe{left:434.813333pt;}
.xf{left:436.253333pt;}
.x63{left:444.746667pt;}
.x5a{left:447.466667pt;}
.x1f{left:454.333333pt;}
.x4b{left:484.426667pt;}
.x5b{left:489.386667pt;}
.x78{left:503.293333pt;}
.x3e{left:523.013333pt;}
.x75{left:525.893333pt;}
.x5c{left:537.413333pt;}
.x7b{left:543.013333pt;}
.x2f{left:545.733333pt;}
.x19{left:551.336000pt;}
.x25{left:571.973333pt;}
.x50{left:573.413333pt;}
.x72{left:605.253333pt;}
.x4d{left:606.693333pt;}
.x5d{left:609.413333pt;}
.x65{left:614.533333pt;}
.x41{left:629.733333pt;}
.x7c{left:645.253333pt;}
.x73{left:650.213333pt;}
.x74{left:655.493333pt;}
.x5e{left:657.413333pt;}
.x28{left:668.000000pt;}
.x23{left:690.080000pt;}
.x52{left:701.280000pt;}
}




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