
    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_39e50b7091813ccd862d54e6.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_e5e60b93eabb8052cf1085bf.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_08f393502f31a2cedb0d78c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_40dab0670ff5a66e4cff6a48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_5e1d00b91808002780363802.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_baffe5dad72beabd580b1ca8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d388c83fc8a6bfbcb47f5d8.woff2')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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_6ef9b4ba01841c6a72cc61a7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_5b8a2ff8ca2d1c1b978a0cc8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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:-89.280000px;}
.v2{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.245520px;}
.ls12{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.468000px;}
.ls7{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.864000px;}
.ls9{letter-spacing:1.440000px;}
.ls10{letter-spacing:3.240000px;}
.ls3{letter-spacing:8.640000px;}
.ls2{letter-spacing:18.720000px;}
.lsd{letter-spacing:44.784000px;}
.ls4{letter-spacing:54.419520px;}
.lsc{letter-spacing:64.224000px;}
.ls13{letter-spacing:71.226720px;}
.ls18{letter-spacing:74.826720px;}
.ls1a{letter-spacing:75.006720px;}
.ls14{letter-spacing:78.749280px;}
.ls19{letter-spacing:81.629280px;}
.ls1b{letter-spacing:81.809280px;}
.ls6{letter-spacing:104.616000px;}
.lse{letter-spacing:198.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws7{word-spacing:-27.000000px;}
.wsa{word-spacing:-26.784000px;}
.ws0{word-spacing:-21.060000px;}
.wsc{word-spacing:-20.304000px;}
.wsb{word-spacing:-19.944000px;}
.ws10{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.272000px;}
.wsd{word-spacing:-14.940000px;}
.wse{word-spacing:-12.060000px;}
.wsf{word-spacing:-10.998720px;}
.ws9{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._4a{margin-left:-17.579520px;}
._15{margin-left:-16.020000px;}
._14{margin-left:-14.604000px;}
._12{margin-left:-12.444000px;}
._17{margin-left:-10.464000px;}
._11{margin-left:-7.956000px;}
._13{margin-left:-6.468000px;}
._16{margin-left:-4.560000px;}
._49{margin-left:-3.287760px;}
._10{margin-left:-2.109120px;}
._1{margin-left:-1.010880px;}
._0{width:1.730640px;}
._7{width:3.402240px;}
._d{width:4.896000px;}
._1a{width:6.101760px;}
._18{width:7.992000px;}
._19{width:9.144000px;}
._6{width:10.517760px;}
._5{width:11.736000px;}
._1d{width:12.744000px;}
._8{width:13.749120px;}
._4{width:15.122880px;}
._1e{width:16.212240px;}
._f{width:17.288640px;}
._e{width:18.864000px;}
._c{width:20.160000px;}
._21{width:21.240000px;}
._23{width:22.501200px;}
._1f{width:24.336000px;}
._20{width:25.704240px;}
._22{width:26.707920px;}
._28{width:27.894720px;}
._29{width:29.376000px;}
._42{width:30.573360px;}
._2c{width:31.788000px;}
._31{width:32.927760px;}
._25{width:33.984000px;}
._a{width:35.138880px;}
._9{width:36.432000px;}
._b{width:38.535600px;}
._24{width:40.824000px;}
._1b{width:47.808000px;}
._1c{width:48.888000px;}
._2d{width:50.751360px;}
._26{width:54.650880px;}
._27{width:55.695840px;}
._36{width:56.850000px;}
._33{width:57.915600px;}
._2a{width:59.040000px;}
._2b{width:60.192000px;}
._38{width:61.488000px;}
._37{width:67.752000px;}
._44{width:68.760000px;}
._3b{width:74.952000px;}
._3a{width:77.834880px;}
._32{width:91.494960px;}
._45{width:92.952000px;}
._46{width:94.182720px;}
._47{width:104.544000px;}
._48{width:105.858480px;}
._2e{width:116.845920px;}
._30{width:120.657840px;}
._3f{width:145.944000px;}
._43{width:147.240000px;}
._34{width:153.072000px;}
._35{width:154.440000px;}
._3e{width:157.896000px;}
._2f{width:167.806080px;}
._41{width:235.944000px;}
._40{width:237.060000px;}
._3c{width:244.296000px;}
._39{width:291.456000px;}
._3d{width:498.888000px;}
._2{width:845.292240px;}
._3{width:1667.472000px;}
.fc8{color:rgb(51,51,153);}
.fc7{color:rgb(0,0,128);}
.fc5{color:rgb(37,71,139);}
.fc4{color:rgb(52,83,147);}
.fc2{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1ef{bottom:5.040000px;}
.y1bd{bottom:5.220000px;}
.y22b{bottom:6.480000px;}
.y229{bottom:6.660000px;}
.y1e5{bottom:7.200000px;}
.y1bb{bottom:7.380000px;}
.y1c0{bottom:12.060000px;}
.y209{bottom:12.780000px;}
.y20e{bottom:12.960000px;}
.y1c7{bottom:16.560000px;}
.y260{bottom:18.540000px;}
.y263{bottom:18.720000px;}
.y22e{bottom:19.980000px;}
.y230{bottom:20.160000px;}
.y242{bottom:21.960000px;}
.y1d4{bottom:22.500000px;}
.y1d6{bottom:22.680000px;}
.y228{bottom:22.860000px;}
.y1d1{bottom:25.740000px;}
.y213{bottom:25.785000px;}
.y1e0{bottom:25.920000px;}
.y1bf{bottom:28.260000px;}
.y1c9{bottom:28.440000px;}
.y20c{bottom:28.620000px;}
.y25d{bottom:28.665000px;}
.y21b{bottom:28.800000px;}
.y208{bottom:29.160000px;}
.y25f{bottom:34.920000px;}
.y1c6{bottom:35.280000px;}
.y22d{bottom:36.360000px;}
.y1c5{bottom:38.160000px;}
.y1d3{bottom:38.880000px;}
.y241{bottom:40.500000px;}
.y252{bottom:41.220000px;}
.y1f7{bottom:44.100000px;}
.y255{bottom:44.130000px;}
.y212{bottom:44.145000px;}
.y1d0{bottom:44.280000px;}
.y24d{bottom:44.325000px;}
.y20b{bottom:44.820000px;}
.y25c{bottom:45.045000px;}
.y24a{bottom:46.980000px;}
.y211{bottom:47.025000px;}
.y1df{bottom:47.160000px;}
.y203{bottom:47.205000px;}
.y25a{bottom:47.340000px;}
.y206{bottom:50.040000px;}
.y202{bottom:50.085000px;}
.y1dd{bottom:50.220000px;}
.y1c4{bottom:54.405000px;}
.y240{bottom:58.860000px;}
.y251{bottom:59.580000px;}
.y1f6{bottom:62.460000px;}
.y254{bottom:62.490000px;}
.y226{bottom:62.505000px;}
.y1cf{bottom:62.640000px;}
.y249{bottom:63.360000px;}
.y210{bottom:63.405000px;}
.y23b{bottom:65.340000px;}
.y1d2{bottom:65.520000px;}
.y1de{bottom:65.700000px;}
.y205{bottom:66.420000px;}
.y201{bottom:66.465000px;}
.y1dc{bottom:68.580000px;}
.y18{bottom:70.560000px;}
.y23f{bottom:77.220000px;}
.y23e{bottom:80.100000px;}
.y1fd{bottom:80.820000px;}
.y225{bottom:80.865000px;}
.y221{bottom:81.000000px;}
.y1ce{bottom:81.720000px;}
.y23a{bottom:81.750000px;}
.y234{bottom:81.900000px;}
.y224{bottom:83.745000px;}
.y1f5{bottom:83.880000px;}
.y1ec{bottom:84.060000px;}
.y21a{bottom:86.940000px;}
.y1db{bottom:87.165000px;}
.y23d{bottom:96.480000px;}
.y250{bottom:99.360000px;}
.y223{bottom:100.125000px;}
.y220{bottom:100.260000px;}
.y1f4{bottom:102.240000px;}
.y1fe{bottom:102.420000px;}
.y17{bottom:104.976000px;}
.y219{bottom:105.300000px;}
.y1eb{bottom:105.480000px;}
.y1da{bottom:105.525000px;}
.y1d9{bottom:108.405000px;}
.y1f3{bottom:120.780000px;}
.y1fc{bottom:120.810000px;}
.y218{bottom:123.660000px;}
.y1ea{bottom:123.840000px;}
.y1d8{bottom:124.605000px;}
.y1e9{bottom:126.720000px;}
.y27c{bottom:127.116000px;}
.y2b0{bottom:128.196000px;}
.y156{bottom:129.096000px;}
.yb6{bottom:129.816000px;}
.y171{bottom:130.716000px;}
.y1e3{bottom:132.696000px;}
.y149{bottom:132.876000px;}
.y138{bottom:133.056000px;}
.y11e{bottom:134.496000px;}
.y1f2{bottom:139.140000px;}
.y24f{bottom:140.040000px;}
.ye4{bottom:141.516000px;}
.y1a5{bottom:141.876000px;}
.y1f1{bottom:142.020000px;}
.y217{bottom:142.200000px;}
.y1fb{bottom:142.230000px;}
.y1b3{bottom:142.596000px;}
.y1e8{bottom:143.100000px;}
.y216{bottom:145.080000px;}
.y1fa{bottom:145.110000px;}
.ycb{bottom:147.996000px;}
.y295{bottom:148.536000px;}
.y8c{bottom:149.076000px;}
.y264{bottom:149.436000px;}
.y155{bottom:151.410000px;}
.yb5{bottom:152.130000px;}
.y170{bottom:153.210000px;}
.y148{bottom:155.190000px;}
.y137{bottom:155.370000px;}
.y21d{bottom:156.630000px;}
.y11d{bottom:156.810000px;}
.y1f0{bottom:158.400000px;}
.y215{bottom:161.280000px;}
.y1f9{bottom:161.310000px;}
.y2af{bottom:162.570000px;}
.ye3{bottom:163.830000px;}
.y1a4{bottom:164.190000px;}
.y1b2{bottom:164.910000px;}
.yff{bottom:168.870000px;}
.yca{bottom:170.310000px;}
.y247{bottom:170.490000px;}
.y294{bottom:170.850000px;}
.y8b{bottom:171.390000px;}
.y262{bottom:173.010000px;}
.y154{bottom:173.910000px;}
.y1e2{bottom:176.250000px;}
.y147{bottom:177.510000px;}
.y136{bottom:177.690000px;}
.y11c{bottom:179.310000px;}
.y27b{bottom:183.810000px;}
.ye2{bottom:186.150000px;}
.yb4{bottom:186.510000px;}
.y1b1{bottom:187.230000px;}
.y16f{bottom:187.410000px;}
.yfe{bottom:191.190000px;}
.y293{bottom:193.170000px;}
.y8a{bottom:193.710000px;}
.y153{bottom:196.230000px;}
.y2ae{bottom:196.950000px;}
.y1a3{bottom:198.570000px;}
.y146{bottom:199.830000px;}
.y135{bottom:200.010000px;}
.y21c{bottom:200.370000px;}
.y11b{bottom:201.630000px;}
.yc9{bottom:204.510000px;}
.ye1{bottom:208.470000px;}
.yb3{bottom:208.830000px;}
.y1b0{bottom:209.550000px;}
.y16e{bottom:210.630000px;}
.y246{bottom:214.050000px;}
.y292{bottom:215.670000px;}
.y89{bottom:216.030000px;}
.y27a{bottom:218.010000px;}
.y152{bottom:218.550000px;}
.y1e1{bottom:219.810000px;}
.y145{bottom:222.150000px;}
.y134{bottom:222.510000px;}
.y11a{bottom:223.950000px;}
.yfd{bottom:225.570000px;}
.y261{bottom:226.470000px;}
.ye0{bottom:230.790000px;}
.yb2{bottom:231.150000px;}
.y2ad{bottom:231.330000px;}
.y50{bottom:231.690000px;}
.y1af{bottom:232.590000px;}
.yc8{bottom:237.270000px;}
.y245{bottom:237.810000px;}
.y88{bottom:238.350000px;}
.y279{bottom:240.330000px;}
.y151{bottom:240.870000px;}
.y204{bottom:243.390000px;}
.y144{bottom:244.650000px;}
.y133{bottom:244.830000px;}
.y119{bottom:246.270000px;}
.y16d{bottom:247.890000px;}
.yfc{bottom:248.790000px;}
.y291{bottom:249.870000px;}
.ydf{bottom:253.110000px;}
.yb1{bottom:253.470000px;}
.y1a2{bottom:257.610000px;}
.y87{bottom:260.670000px;}
.y1ae{bottom:261.750000px;}
.y278{bottom:262.830000px;}
.y150{bottom:263.190000px;}
.yc7{bottom:263.550000px;}
.y22a{bottom:265.170000px;}
.y2ac{bottom:265.530000px;}
.y4f{bottom:265.890000px;}
.y143{bottom:266.970000px;}
.y132{bottom:267.150000px;}
.y118{bottom:268.590000px;}
.y290{bottom:272.190000px;}
.y19f{bottom:273.990000px;}
.yde{bottom:275.610000px;}
.yb0{bottom:275.790000px;}
.y1d7{bottom:277.770000px;}
.y25e{bottom:279.750000px;}
.y15{bottom:280.650000px;}
.y35{bottom:281.730000px;}
.y16c{bottom:282.270000px;}
.y14f{bottom:285.510000px;}
.yfb{bottom:285.870000px;}
.y142{bottom:289.290000px;}
.y131{bottom:289.470000px;}
.y117{bottom:290.910000px;}
.y28f{bottom:294.510000px;}
.y86{bottom:295.050000px;}
.y277{bottom:297.030000px;}
.ydd{bottom:297.930000px;}
.yaf{bottom:298.110000px;}
.y1ad{bottom:299.010000px;}
.y2ab{bottom:299.910000px;}
.y4e{bottom:300.270000px;}
.y244{bottom:301.170000px;}
.y16b{bottom:304.590000px;}
.y227{bottom:306.390000px;}
.y14e{bottom:307.830000px;}
.y19e{bottom:308.370000px;}
.y141{bottom:311.610000px;}
.y130{bottom:311.790000px;}
.y116{bottom:313.230000px;}
.y17c{bottom:313.590000px;}
.y14{bottom:314.850000px;}
.y34{bottom:316.110000px;}
.y85{bottom:317.370000px;}
.y276{bottom:319.350000px;}
.ydc{bottom:320.250000px;}
.yae{bottom:321.870000px;}
.y16a{bottom:326.910000px;}
.y200{bottom:328.170000px;}
.y28e{bottom:328.890000px;}
.y14d{bottom:330.150000px;}
.y19d{bottom:330.690000px;}
.y25b{bottom:333.030000px;}
.y1ac{bottom:333.390000px;}
.y140{bottom:333.930000px;}
.y12f{bottom:334.110000px;}
.y2aa{bottom:334.290000px;}
.y4d{bottom:334.650000px;}
.y115{bottom:335.550000px;}
.y84{bottom:339.690000px;}
.y275{bottom:341.850000px;}
.yfa{bottom:342.570000px;}
.yad{bottom:344.190000px;}
.y222{bottom:347.790000px;}
.y17b{bottom:347.970000px;}
.y13{bottom:349.230000px;}
.y28d{bottom:351.210000px;}
.y33{bottom:351.390000px;}
.y14c{bottom:352.470000px;}
.y19c{bottom:353.010000px;}
.ydb{bottom:354.630000px;}
.y13f{bottom:356.250000px;}
.y12e{bottom:356.430000px;}
.y114{bottom:357.870000px;}
.y194{bottom:358.815000px;}
.y83{bottom:362.055000px;}
.y274{bottom:364.215000px;}
.y243{bottom:364.575000px;}
.yf9{bottom:364.935000px;}
.y1ab{bottom:366.015000px;}
.y18e{bottom:366.195000px;}
.yac{bottom:366.555000px;}
.y2a9{bottom:368.715000px;}
.y4c{bottom:369.075000px;}
.y17a{bottom:370.335000px;}
.y169{bottom:371.595000px;}
.y28c{bottom:373.575000px;}
.y32{bottom:375.195000px;}
.y19b{bottom:375.375000px;}
.yda{bottom:376.995000px;}
.y13e{bottom:378.615000px;}
.y12d{bottom:378.795000px;}
.y12{bottom:383.655000px;}
.y82{bottom:384.375000px;}
.y14b{bottom:386.895000px;}
.yf8{bottom:387.255000px;}
.yab{bottom:389.055000px;}
.y193{bottom:391.395000px;}
.y1aa{bottom:392.475000px;}
.y179{bottom:392.655000px;}
.y168{bottom:393.915000px;}
.y259{bottom:396.435000px;}
.y19a{bottom:397.695000px;}
.y273{bottom:398.415000px;}
.y31{bottom:398.955000px;}
.yd9{bottom:399.315000px;}
.y18d{bottom:400.575000px;}
.y13d{bottom:400.935000px;}
.y12c{bottom:401.115000px;}
.y113{bottom:402.555000px;}
.y2a8{bottom:402.915000px;}
.y4b{bottom:403.275000px;}
.y81{bottom:406.695000px;}
.y28b{bottom:407.955000px;}
.y14a{bottom:410.115000px;}
.yaa{bottom:411.375000px;}
.y1ff{bottom:412.995000px;}
.y178{bottom:414.975000px;}
.y167{bottom:416.235000px;}
.y192{bottom:417.855000px;}
.y11{bottom:418.035000px;}
.y272{bottom:420.735000px;}
.y1d5{bottom:420.915000px;}
.yd8{bottom:421.635000px;}
.y30{bottom:422.715000px;}
.y18c{bottom:422.895000px;}
.y13c{bottom:423.255000px;}
.y12b{bottom:423.435000px;}
.y112{bottom:425.055000px;}
.y23c{bottom:427.935000px;}
.y80{bottom:429.015000px;}
.y28a{bottom:430.275000px;}
.y199{bottom:432.075000px;}
.ya9{bottom:433.695000px;}
.y177{bottom:437.295000px;}
.y4a{bottom:437.655000px;}
.y166{bottom:438.555000px;}
.y271{bottom:443.235000px;}
.yd7{bottom:443.955000px;}
.y18b{bottom:445.215000px;}
.y13b{bottom:445.575000px;}
.y12a{bottom:445.935000px;}
.y2f{bottom:446.295000px;}
.y111{bottom:447.375000px;}
.y7f{bottom:451.515000px;}
.y10{bottom:452.235000px;}
.ya8{bottom:456.015000px;}
.y165{bottom:460.875000px;}
.y289{bottom:464.655000px;}
.y198{bottom:464.835000px;}
.y270{bottom:465.555000px;}
.yd6{bottom:466.275000px;}
.y18a{bottom:467.535000px;}
.y13a{bottom:468.075000px;}
.y129{bottom:468.255000px;}
.y110{bottom:469.695000px;}
.y2e{bottom:470.055000px;}
.y176{bottom:471.675000px;}
.y49{bottom:472.035000px;}
.y7e{bottom:473.835000px;}
.ya7{bottom:478.335000px;}
.y258{bottom:479.775000px;}
.yf{bottom:486.615000px;}
.y288{bottom:486.975000px;}
.yd5{bottom:488.595000px;}
.y189{bottom:489.855000px;}
.y139{bottom:490.395000px;}
.y128{bottom:490.575000px;}
.y197{bottom:491.295000px;}
.y10f{bottom:492.015000px;}
.y2d{bottom:493.815000px;}
.y164{bottom:495.255000px;}
.y7d{bottom:496.155000px;}
.y26f{bottom:499.755000px;}
.y175{bottom:504.435000px;}
.y257{bottom:504.975000px;}
.y2a7{bottom:506.055000px;}
.y48{bottom:506.415000px;}
.y287{bottom:509.295000px;}
.yd4{bottom:510.915000px;}
.y188{bottom:512.175000px;}
.ya6{bottom:512.715000px;}
.y127{bottom:512.895000px;}
.y1f8{bottom:513.255000px;}
.y10e{bottom:514.335000px;}
.yc6{bottom:517.575000px;}
.y7c{bottom:518.475000px;}
.ye{bottom:520.995000px;}
.y26e{bottom:522.255000px;}
.yf7{bottom:522.975000px;}
.y2c{bottom:528.555000px;}
.y174{bottom:530.895000px;}
.yd3{bottom:533.235000px;}
.y187{bottom:534.495000px;}
.ya5{bottom:535.035000px;}
.y126{bottom:535.215000px;}
.y1cd{bottom:535.575000px;}
.y10d{bottom:536.655000px;}
.y163{bottom:539.895000px;}
.y2a6{bottom:540.435000px;}
.y47{bottom:540.615000px;}
.y7b{bottom:540.795000px;}
.y239{bottom:542.775000px;}
.y286{bottom:543.675000px;}
.y26d{bottom:544.575000px;}
.yf6{bottom:545.295000px;}
.y1b8{bottom:546.915000px;}
.yc5{bottom:551.955000px;}
.yd2{bottom:555.555000px;}
.y256{bottom:556.275000px;}
.y186{bottom:556.815000px;}
.ya4{bottom:557.355000px;}
.y125{bottom:557.535000px;}
.yd{bottom:557.895000px;}
.y10c{bottom:558.975000px;}
.y162{bottom:562.215000px;}
.y7a{bottom:563.115000px;}
.y2b{bottom:563.835000px;}
.y285{bottom:565.995000px;}
.y26c{bottom:566.895000px;}
.yf5{bottom:567.615000px;}
.y1b7{bottom:569.415000px;}
.yc4{bottom:574.275000px;}
.y2a5{bottom:574.635000px;}
.y46{bottom:574.995000px;}
.yd1{bottom:577.875000px;}
.y185{bottom:579.315000px;}
.ya3{bottom:579.675000px;}
.y124{bottom:579.855000px;}
.y253{bottom:580.035000px;}
.y10b{bottom:581.295000px;}
.y21f{bottom:583.455000px;}
.y161{bottom:584.535000px;}
.y79{bottom:585.435000px;}
.y2a{bottom:587.595000px;}
.y284{bottom:588.315000px;}
.y26b{bottom:589.215000px;}
.yf4{bottom:589.935000px;}
.y1b6{bottom:591.735000px;}
.yc3{bottom:596.595000px;}
.y2a4{bottom:596.955000px;}
.yd0{bottom:600.375000px;}
.yc{bottom:601.635000px;}
.ya2{bottom:601.995000px;}
.y10a{bottom:603.615000px;}
.y160{bottom:607.035000px;}
.y78{bottom:607.755000px;}
.y21e{bottom:608.655000px;}
.y45{bottom:609.375000px;}
.y283{bottom:610.635000px;}
.y29{bottom:611.175000px;}
.y26a{bottom:611.535000px;}
.yf3{bottom:612.435000px;}
.y184{bottom:613.515000px;}
.y1b5{bottom:614.055000px;}
.yc2{bottom:618.915000px;}
.ya1{bottom:624.345000px;}
.y123{bottom:624.525000px;}
.y109{bottom:625.965000px;}
.y15f{bottom:629.385000px;}
.y2a3{bottom:631.365000px;}
.y1a1{bottom:632.085000px;}
.y1cc{bottom:634.245000px;}
.ycf{bottom:634.605000px;}
.yf2{bottom:634.785000px;}
.y28{bottom:634.965000px;}
.y183{bottom:635.865000px;}
.y1b4{bottom:636.405000px;}
.y44{bottom:639.285000px;}
.yc1{bottom:641.265000px;}
.yb{bottom:641.445000px;}
.y77{bottom:642.165000px;}
.y238{bottom:642.885000px;}
.y282{bottom:645.045000px;}
.y269{bottom:645.945000px;}
.ya0{bottom:646.665000px;}
.y122{bottom:646.845000px;}
.y108{bottom:648.465000px;}
.y64{bottom:656.205000px;}
.y182{bottom:658.365000px;}
.y27{bottom:658.725000px;}
.y1cb{bottom:659.445000px;}
.y2be{bottom:660.525000px;}
.yc0{bottom:663.585000px;}
.y76{bottom:664.485000px;}
.y1a0{bottom:664.845000px;}
.y2a2{bottom:665.745000px;}
.yce{bottom:667.365000px;}
.y268{bottom:668.265000px;}
.y43{bottom:668.985000px;}
.y121{bottom:669.165000px;}
.y107{bottom:670.785000px;}
.y24e{bottom:680.145000px;}
.y181{bottom:680.685000px;}
.y214{bottom:682.125000px;}
.y237{bottom:682.665000px;}
.y2bd{bottom:682.845000px;}
.ya{bottom:684.465000px;}
.ybf{bottom:686.085000px;}
.y75{bottom:686.805000px;}
.y281{bottom:689.685000px;}
.y63{bottom:690.585000px;}
.y9f{bottom:691.305000px;}
.y120{bottom:691.665000px;}
.y106{bottom:693.105000px;}
.y26{bottom:693.465000px;}
.ycd{bottom:693.825000px;}
.y42{bottom:698.865000px;}
.y2a1{bottom:700.125000px;}
.y2bc{bottom:705.165000px;}
.y236{bottom:707.865000px;}
.ybe{bottom:708.405000px;}
.y74{bottom:709.125000px;}
.y62{bottom:712.905000px;}
.y9e{bottom:713.805000px;}
.y180{bottom:714.885000px;}
.y105{bottom:715.425000px;}
.y9{bottom:718.845000px;}
.y1b9{bottom:722.265000px;}
.y2a0{bottom:722.445000px;}
.y280{bottom:724.065000px;}
.y2bb{bottom:727.485000px;}
.y25{bottom:727.665000px;}
.y41{bottom:728.745000px;}
.ybd{bottom:730.725000px;}
.y73{bottom:731.445000px;}
.y61{bottom:735.225000px;}
.yf1{bottom:736.125000px;}
.y191{bottom:737.385000px;}
.y104{bottom:737.745000px;}
.y17f{bottom:738.105000px;}
.y1ca{bottom:739.725000px;}
.y29f{bottom:744.765000px;}
.y27f{bottom:746.385000px;}
.y9d{bottom:748.005000px;}
.y2ba{bottom:749.985000px;}
.y8{bottom:753.045000px;}
.y72{bottom:753.765000px;}
.y60{bottom:757.545000px;}
.yf0{bottom:758.445000px;}
.y40{bottom:758.625000px;}
.y235{bottom:759.165000px;}
.y11f{bottom:760.065000px;}
.y24{bottom:762.045000px;}
.y29e{bottom:767.085000px;}
.y27e{bottom:768.705000px;}
.y190{bottom:770.145000px;}
.y9c{bottom:770.325000px;}
.y2b9{bottom:772.305000px;}
.ybc{bottom:775.365000px;}
.y1a9{bottom:775.905000px;}
.y71{bottom:776.265000px;}
.y5f{bottom:779.865000px;}
.yef{bottom:780.765000px;}
.y103{bottom:782.385000px;}
.y233{bottom:782.745000px;}
.y1c8{bottom:786.525000px;}
.y3f{bottom:788.325000px;}
.y7{bottom:789.225000px;}
.y27d{bottom:791.025000px;}
.y267{bottom:791.925000px;}
.y9b{bottom:792.645000px;}
.y2b8{bottom:794.625000px;}
.y23{bottom:796.425000px;}
.y18f{bottom:796.605000px;}
.y15e{bottom:797.685000px;}
.y70{bottom:798.585000px;}
.y29d{bottom:801.465000px;}
.y5e{bottom:802.185000px;}
.yee{bottom:803.085000px;}
.y102{bottom:804.705000px;}
.y17e{bottom:808.125000px;}
.ybb{bottom:809.745000px;}
.y1a8{bottom:810.105000px;}
.y266{bottom:814.245000px;}
.y9a{bottom:815.145000px;}
.y2b7{bottom:816.945000px;}
.y3e{bottom:818.205000px;}
.y15d{bottom:820.005000px;}
.y6f{bottom:820.905000px;}
.y196{bottom:821.805000px;}
.y29c{bottom:823.785000px;}
.y5d{bottom:824.505000px;}
.yed{bottom:825.405000px;}
.y101{bottom:827.025000px;}
.y22{bottom:830.805000px;}
.y6{bottom:831.165000px;}
.yba{bottom:832.785000px;}
.y1c3{bottom:833.325000px;}
.y17d{bottom:834.585000px;}
.y265{bottom:836.565000px;}
.y99{bottom:837.465000px;}
.y24c{bottom:838.545000px;}
.y2b6{bottom:839.265000px;}
.y15c{bottom:842.325000px;}
.y1a7{bottom:842.865000px;}
.y29b{bottom:846.105000px;}
.yec{bottom:847.725000px;}
.y3d{bottom:848.085000px;}
.y195{bottom:848.265000px;}
.y100{bottom:849.345000px;}
.y6e{bottom:855.105000px;}
.y5c{bottom:858.885000px;}
.y173{bottom:859.785000px;}
.y2b5{bottom:861.585000px;}
.y20f{bottom:861.945000px;}
.y21{bottom:865.005000px;}
.y1ee{bottom:868.425000px;}
.y1a6{bottom:869.325000px;}
.yb9{bottom:870.045000px;}
.y98{bottom:871.665000px;}
.y5{bottom:871.845000px;}
.y15b{bottom:876.705000px;}
.y6d{bottom:877.605000px;}
.y3c{bottom:877.965000px;}
.y5b{bottom:881.250000px;}
.y172{bottom:882.150000px;}
.y232{bottom:883.050000px;}
.y2b4{bottom:883.950000px;}
.yeb{bottom:892.410000px;}
.y1ed{bottom:893.670000px;}
.y97{bottom:894.210000px;}
.y15a{bottom:899.070000px;}
.y20{bottom:899.430000px;}
.y6c{bottom:899.970000px;}
.y29a{bottom:902.850000px;}
.y5a{bottom:903.570000px;}
.yb8{bottom:904.470000px;}
.y1c2{bottom:906.270000px;}
.y3b{bottom:907.890000px;}
.y4{bottom:909.150000px;}
.yea{bottom:914.730000px;}
.y96{bottom:916.530000px;}
.y24b{bottom:920.310000px;}
.y159{bottom:921.390000px;}
.y6b{bottom:922.290000px;}
.y299{bottom:925.170000px;}
.y59{bottom:925.890000px;}
.yb7{bottom:926.790000px;}
.y2b3{bottom:928.590000px;}
.y1f{bottom:933.810000px;}
.y3a{bottom:937.590000px;}
.y231{bottom:937.950000px;}
.y95{bottom:938.850000px;}
.y1e7{bottom:939.390000px;}
.y3{bottom:943.350000px;}
.y20d{bottom:943.710000px;}
.y6a{bottom:944.610000px;}
.y298{bottom:947.490000px;}
.ye9{bottom:949.110000px;}
.y1c1{bottom:953.070000px;}
.y158{bottom:955.770000px;}
.y58{bottom:960.270000px;}
.y94{bottom:961.170000px;}
.y2b2{bottom:962.970000px;}
.y69{bottom:966.930000px;}
.y39{bottom:967.470000px;}
.y1e{bottom:968.190000px;}
.ye8{bottom:971.430000px;}
.y2{bottom:977.730000px;}
.y157{bottom:978.990000px;}
.y297{bottom:981.870000px;}
.y57{bottom:982.590000px;}
.y93{bottom:983.490000px;}
.y2b1{bottom:988.170000px;}
.y68{bottom:989.250000px;}
.y20a{bottom:991.410000px;}
.y22f{bottom:992.670000px;}
.ycc{bottom:993.750000px;}
.y38{bottom:997.350000px;}
.y1be{bottom:999.870000px;}
.y1d{bottom:1002.570000px;}
.y296{bottom:1004.190000px;}
.y56{bottom:1004.910000px;}
.y92{bottom:1005.810000px;}
.y67{bottom:1011.570000px;}
.y1{bottom:1012.110000px;}
.ye7{bottom:1016.070000px;}
.y248{bottom:1020.570000px;}
.y55{bottom:1027.230000px;}
.y91{bottom:1028.130000px;}
.y37{bottom:1031.730000px;}
.y1c{bottom:1036.770000px;}
.ye6{bottom:1038.570000px;}
.y1bc{bottom:1045.050000px;}
.y66{bottom:1045.950000px;}
.y22c{bottom:1047.570000px;}
.y54{bottom:1049.730000px;}
.y90{bottom:1050.450000px;}
.y207{bottom:1054.770000px;}
.y36{bottom:1056.750000px;}
.ye5{bottom:1060.890000px;}
.y65{bottom:1069.170000px;}
.y1ba{bottom:1070.250000px;}
.y1b{bottom:1071.150000px;}
.y53{bottom:1072.050000px;}
.y8f{bottom:1072.770000px;}
.y8e{bottom:1095.090000px;}
.y1e6{bottom:1100.850000px;}
.y1a{bottom:1105.530000px;}
.y52{bottom:1106.250000px;}
.y8d{bottom:1117.410000px;}
.y1e4{bottom:1126.050000px;}
.y51{bottom:1131.450000px;}
.y19{bottom:1139.910000px;}
.y16{bottom:1193.040000px;}
.h2b{height:23.580000px;}
.h1f{height:23.616000px;}
.h11{height:23.760000px;}
.h1e{height:29.700000px;}
.h1c{height:29.736000px;}
.he{height:29.880000px;}
.h14{height:34.531172px;}
.h2e{height:39.780000px;}
.h13{height:45.180000px;}
.h17{height:45.360000px;}
.h26{height:46.080000px;}
.h28{height:47.344922px;}
.hf{height:49.583118px;}
.h37{height:51.840000px;}
.hc{height:52.998047px;}
.h2f{height:53.280000px;}
.h19{height:55.800000px;}
.h16{height:58.651172px;}
.h21{height:61.423863px;}
.h27{height:61.740000px;}
.h32{height:61.776000px;}
.h36{height:61.956000px;}
.hb{height:64.546875px;}
.h38{height:70.628906px;}
.h2{height:70.664062px;}
.h15{height:71.316000px;}
.h7{height:71.613281px;}
.h3{height:72.562500px;}
.hd{height:74.004654px;}
.h12{height:75.093750px;}
.h33{height:80.280000px;}
.h29{height:80.316000px;}
.ha{height:82.635820px;}
.h4{height:82.676953px;}
.h25{height:83.340000px;}
.h24{height:83.376000px;}
.h5{height:93.983203px;}
.h1b{height:95.245664px;}
.h23{height:98.640000px;}
.h18{height:98.676000px;}
.h34{height:98.820000px;}
.h30{height:98.856000px;}
.h10{height:99.874688px;}
.h6{height:105.996094px;}
.h8{height:108.843750px;}
.h9{height:112.640625px;}
.h31{height:113.400000px;}
.h2d{height:117.036000px;}
.h2c{height:117.180000px;}
.h1a{height:141.516000px;}
.h35{height:156.960000px;}
.h1d{height:160.020000px;}
.h20{height:175.320000px;}
.h2a{height:178.200000px;}
.h22{height:178.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4b{width:75.600000px;}
.w4c{width:75.780000px;}
.w4a{width:75.996000px;}
.w47{width:76.716000px;}
.w26{width:81.900000px;}
.w29{width:82.080000px;}
.w25{width:82.296000px;}
.w2b{width:82.620000px;}
.w22{width:83.016000px;}
.w24{width:83.340000px;}
.w20{width:87.480000px;}
.w19{width:88.200000px;}
.w1b{width:90.540000px;}
.w1d{width:90.576000px;}
.w1a{width:90.936000px;}
.w17{width:91.656000px;}
.w10{width:93.060000px;}
.w12{width:93.096000px;}
.wf{width:93.276000px;}
.w15{width:93.420000px;}
.wc{width:93.996000px;}
.we{width:94.140000px;}
.w14{width:94.356000px;}
.w1f{width:94.716000px;}
.w54{width:98.820000px;}
.w55{width:99.036000px;}
.w57{width:99.180000px;}
.w53{width:99.216000px;}
.w51{width:99.936000px;}
.w52{width:100.080000px;}
.w7{width:104.076000px;}
.w8{width:104.220000px;}
.w9{width:104.256000px;}
.wa{width:104.400000px;}
.w6{width:104.436000px;}
.w30{width:104.616000px;}
.w32{width:104.796000px;}
.w31{width:104.940000px;}
.w2f{width:104.976000px;}
.w5{width:105.120000px;}
.w3{width:105.156000px;}
.w2e{width:105.660000px;}
.w2c{width:105.876000px;}
.w42{width:106.776000px;}
.w43{width:106.920000px;}
.w41{width:107.136000px;}
.w39{width:107.280000px;}
.w38{width:107.316000px;}
.w3a{width:107.460000px;}
.w44{width:107.496000px;}
.w45{width:107.640000px;}
.w37{width:107.676000px;}
.w3c{width:107.820000px;}
.w3e{width:107.856000px;}
.w3b{width:108.036000px;}
.w40{width:108.360000px;}
.w34{width:108.396000px;}
.w36{width:108.540000px;}
.w2a{width:123.876000px;}
.w28{width:128.376000px;}
.w1c{width:135.396000px;}
.w13{width:137.160000px;}
.w11{width:139.716000px;}
.w1e{width:142.200000px;}
.w4e{width:146.376000px;}
.w4f{width:147.600000px;}
.w49{width:148.320000px;}
.w4d{width:153.930000px;}
.w56{width:157.320000px;}
.w27{width:161.850000px;}
.w21{width:183.630000px;}
.w3d{width:217.290000px;}
.w16{width:422.355000px;}
.w33{width:423.975000px;}
.w50{width:450.795000px;}
.w4{width:528.405000px;}
.w2d{width:531.465000px;}
.w48{width:534.885000px;}
.w3f{width:542.625000px;}
.w35{width:545.145000px;}
.w18{width:560.985000px;}
.wd{width:564.585000px;}
.w23{width:585.645000px;}
.wb{width:632.805000px;}
.w46{width:650.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:22.536000px;}
.x61{left:24.300000px;}
.x46{left:25.596000px;}
.x36{left:27.360000px;}
.x41{left:28.980000px;}
.x3b{left:30.096000px;}
.x2e{left:31.176000px;}
.x32{left:32.940000px;}
.x68{left:34.056000px;}
.x35{left:35.145000px;}
.x22{left:36.756000px;}
.x25{left:38.520000px;}
.x28{left:39.960000px;}
.x56{left:41.985000px;}
.x49{left:50.400000px;}
.x3d{left:51.525000px;}
.x30{left:53.685000px;}
.x40{left:56.880000px;}
.x64{left:59.040000px;}
.x63{left:61.020000px;}
.x62{left:62.820000px;}
.x48{left:64.845000px;}
.x65{left:66.060000px;}
.x57{left:67.140000px;}
.x29{left:71.280000px;}
.x4c{left:76.140000px;}
.x37{left:77.220000px;}
.x1d{left:78.300000px;}
.x45{left:80.460000px;}
.x3a{left:85.320000px;}
.x2d{left:91.440000px;}
.x67{left:97.200000px;}
.x21{left:102.420000px;}
.x52{left:105.660000px;}
.x1{left:127.655987px;}
.xe{left:144.215987px;}
.x5d{left:145.440000px;}
.x42{left:153.570000px;}
.xf{left:154.649987px;}
.x2a{left:165.270000px;}
.x69{left:166.890000px;}
.x38{left:168.870000px;}
.x50{left:173.910000px;}
.x58{left:174.990000px;}
.x11{left:181.649987px;}
.x1e{left:183.450000px;}
.x1f{left:187.065000px;}
.x2b{left:189.045000px;}
.x5b{left:194.979000px;}
.x4d{left:203.625000px;}
.x12{left:208.649987px;}
.x59{left:212.085000px;}
.x39{left:214.605000px;}
.x5f{left:221.070000px;}
.x43{left:234.405000px;}
.x13{left:235.649987px;}
.x47{left:237.630000px;}
.x7{left:252.209987px;}
.x3{left:259.409987px;}
.x2f{left:260.490000px;}
.x3c{left:261.570000px;}
.x6a{left:267.330000px;}
.x8{left:276.194987px;}
.x2{left:278.174987px;}
.x53{left:283.575000px;}
.x4f{left:288.795000px;}
.x23{left:289.875000px;}
.x60{left:298.515000px;}
.x15{left:305.354987px;}
.x16{left:326.774987px;}
.xa{left:329.474987px;}
.x9{left:336.494987px;}
.x6b{left:367.815000px;}
.x4{left:373.214987px;}
.x5{left:375.194987px;}
.x1a{left:379.694987px;}
.x54{left:392.475000px;}
.x24{left:395.535000px;}
.x3e{left:398.415000px;}
.x31{left:401.655000px;}
.x18{left:406.694987px;}
.x6{left:446.474987px;}
.x6c{left:468.285000px;}
.x19{left:475.304987px;}
.x1b{left:486.464987px;}
.x3f{left:490.605000px;}
.x33{left:496.185000px;}
.x26{left:501.225000px;}
.x4a{left:531.105000px;}
.xc{left:537.584987px;}
.x27{left:606.885000px;}
.x55{left:610.305000px;}
.x4b{left:614.625000px;}
.x6d{left:627.045000px;}
.x34{left:634.785000px;}
.x1c{left:636.224987px;}
.x5c{left:678.210000px;}
.x20{left:711.870000px;}
.x4e{left:713.490000px;}
.x5a{left:717.630000px;}
.x51{left:719.070000px;}
.x66{left:726.990000px;}
.x2c{left:729.870000px;}
.x44{left:739.230000px;}
.x14{left:747.509987px;}
.x10{left:754.349987px;}
.xd{left:756.509987px;}
.xb{left:765.509987px;}
.x17{left:802.769987px;}
@media print{
.v1{vertical-align:-79.360000pt;}
.v2{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.218240pt;}
.ls12{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.416000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls10{letter-spacing:2.880000pt;}
.ls3{letter-spacing:7.680000pt;}
.ls2{letter-spacing:16.640000pt;}
.lsd{letter-spacing:39.808000pt;}
.ls4{letter-spacing:48.372907pt;}
.lsc{letter-spacing:57.088000pt;}
.ls13{letter-spacing:63.312640pt;}
.ls18{letter-spacing:66.512640pt;}
.ls1a{letter-spacing:66.672640pt;}
.ls14{letter-spacing:69.999360pt;}
.ls19{letter-spacing:72.559360pt;}
.ls1b{letter-spacing:72.719360pt;}
.ls6{letter-spacing:92.992000pt;}
.lse{letter-spacing:176.000000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws7{word-spacing:-24.000000pt;}
.wsa{word-spacing:-23.808000pt;}
.ws0{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.728000pt;}
.ws10{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.464000pt;}
.wsd{word-spacing:-13.280000pt;}
.wse{word-spacing:-10.720000pt;}
.wsf{word-spacing:-9.776640pt;}
.ws9{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._4a{margin-left:-15.626240pt;}
._15{margin-left:-14.240000pt;}
._14{margin-left:-12.981333pt;}
._12{margin-left:-11.061333pt;}
._17{margin-left:-9.301333pt;}
._11{margin-left:-7.072000pt;}
._13{margin-left:-5.749333pt;}
._16{margin-left:-4.053333pt;}
._49{margin-left:-2.922453pt;}
._10{margin-left:-1.874773pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.538347pt;}
._7{width:3.024213pt;}
._d{width:4.352000pt;}
._1a{width:5.423787pt;}
._18{width:7.104000pt;}
._19{width:8.128000pt;}
._6{width:9.349120pt;}
._5{width:10.432000pt;}
._1d{width:11.328000pt;}
._8{width:12.221440pt;}
._4{width:13.442560pt;}
._1e{width:14.410880pt;}
._f{width:15.367680pt;}
._e{width:16.768000pt;}
._c{width:17.920000pt;}
._21{width:18.880000pt;}
._23{width:20.001067pt;}
._1f{width:21.632000pt;}
._20{width:22.848213pt;}
._22{width:23.740373pt;}
._28{width:24.795307pt;}
._29{width:26.112000pt;}
._42{width:27.176320pt;}
._2c{width:28.256000pt;}
._31{width:29.269120pt;}
._25{width:30.208000pt;}
._a{width:31.234560pt;}
._9{width:32.384000pt;}
._b{width:34.253867pt;}
._24{width:36.288000pt;}
._1b{width:42.496000pt;}
._1c{width:43.456000pt;}
._2d{width:45.112320pt;}
._26{width:48.578560pt;}
._27{width:49.507413pt;}
._36{width:50.533333pt;}
._33{width:51.480533pt;}
._2a{width:52.480000pt;}
._2b{width:53.504000pt;}
._38{width:54.656000pt;}
._37{width:60.224000pt;}
._44{width:61.120000pt;}
._3b{width:66.624000pt;}
._3a{width:69.186560pt;}
._32{width:81.328853pt;}
._45{width:82.624000pt;}
._46{width:83.717973pt;}
._47{width:92.928000pt;}
._48{width:94.096427pt;}
._2e{width:103.863040pt;}
._30{width:107.251413pt;}
._3f{width:129.728000pt;}
._43{width:130.880000pt;}
._34{width:136.064000pt;}
._35{width:137.280000pt;}
._3e{width:140.352000pt;}
._2f{width:149.160960pt;}
._41{width:209.728000pt;}
._40{width:210.720000pt;}
._3c{width:217.152000pt;}
._39{width:259.072000pt;}
._3d{width:443.456000pt;}
._2{width:751.370880pt;}
._3{width:1482.197333pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1ef{bottom:4.480000pt;}
.y1bd{bottom:4.640000pt;}
.y22b{bottom:5.760000pt;}
.y229{bottom:5.920000pt;}
.y1e5{bottom:6.400000pt;}
.y1bb{bottom:6.560000pt;}
.y1c0{bottom:10.720000pt;}
.y209{bottom:11.360000pt;}
.y20e{bottom:11.520000pt;}
.y1c7{bottom:14.720000pt;}
.y260{bottom:16.480000pt;}
.y263{bottom:16.640000pt;}
.y22e{bottom:17.760000pt;}
.y230{bottom:17.920000pt;}
.y242{bottom:19.520000pt;}
.y1d4{bottom:20.000000pt;}
.y1d6{bottom:20.160000pt;}
.y228{bottom:20.320000pt;}
.y1d1{bottom:22.880000pt;}
.y213{bottom:22.920000pt;}
.y1e0{bottom:23.040000pt;}
.y1bf{bottom:25.120000pt;}
.y1c9{bottom:25.280000pt;}
.y20c{bottom:25.440000pt;}
.y25d{bottom:25.480000pt;}
.y21b{bottom:25.600000pt;}
.y208{bottom:25.920000pt;}
.y25f{bottom:31.040000pt;}
.y1c6{bottom:31.360000pt;}
.y22d{bottom:32.320000pt;}
.y1c5{bottom:33.920000pt;}
.y1d3{bottom:34.560000pt;}
.y241{bottom:36.000000pt;}
.y252{bottom:36.640000pt;}
.y1f7{bottom:39.200000pt;}
.y255{bottom:39.226667pt;}
.y212{bottom:39.240000pt;}
.y1d0{bottom:39.360000pt;}
.y24d{bottom:39.400000pt;}
.y20b{bottom:39.840000pt;}
.y25c{bottom:40.040000pt;}
.y24a{bottom:41.760000pt;}
.y211{bottom:41.800000pt;}
.y1df{bottom:41.920000pt;}
.y203{bottom:41.960000pt;}
.y25a{bottom:42.080000pt;}
.y206{bottom:44.480000pt;}
.y202{bottom:44.520000pt;}
.y1dd{bottom:44.640000pt;}
.y1c4{bottom:48.360000pt;}
.y240{bottom:52.320000pt;}
.y251{bottom:52.960000pt;}
.y1f6{bottom:55.520000pt;}
.y254{bottom:55.546667pt;}
.y226{bottom:55.560000pt;}
.y1cf{bottom:55.680000pt;}
.y249{bottom:56.320000pt;}
.y210{bottom:56.360000pt;}
.y23b{bottom:58.080000pt;}
.y1d2{bottom:58.240000pt;}
.y1de{bottom:58.400000pt;}
.y205{bottom:59.040000pt;}
.y201{bottom:59.080000pt;}
.y1dc{bottom:60.960000pt;}
.y18{bottom:62.720000pt;}
.y23f{bottom:68.640000pt;}
.y23e{bottom:71.200000pt;}
.y1fd{bottom:71.840000pt;}
.y225{bottom:71.880000pt;}
.y221{bottom:72.000000pt;}
.y1ce{bottom:72.640000pt;}
.y23a{bottom:72.666667pt;}
.y234{bottom:72.800000pt;}
.y224{bottom:74.440000pt;}
.y1f5{bottom:74.560000pt;}
.y1ec{bottom:74.720000pt;}
.y21a{bottom:77.280000pt;}
.y1db{bottom:77.480000pt;}
.y23d{bottom:85.760000pt;}
.y250{bottom:88.320000pt;}
.y223{bottom:89.000000pt;}
.y220{bottom:89.120000pt;}
.y1f4{bottom:90.880000pt;}
.y1fe{bottom:91.040000pt;}
.y17{bottom:93.312000pt;}
.y219{bottom:93.600000pt;}
.y1eb{bottom:93.760000pt;}
.y1da{bottom:93.800000pt;}
.y1d9{bottom:96.360000pt;}
.y1f3{bottom:107.360000pt;}
.y1fc{bottom:107.386667pt;}
.y218{bottom:109.920000pt;}
.y1ea{bottom:110.080000pt;}
.y1d8{bottom:110.760000pt;}
.y1e9{bottom:112.640000pt;}
.y27c{bottom:112.992000pt;}
.y2b0{bottom:113.952000pt;}
.y156{bottom:114.752000pt;}
.yb6{bottom:115.392000pt;}
.y171{bottom:116.192000pt;}
.y1e3{bottom:117.952000pt;}
.y149{bottom:118.112000pt;}
.y138{bottom:118.272000pt;}
.y11e{bottom:119.552000pt;}
.y1f2{bottom:123.680000pt;}
.y24f{bottom:124.480000pt;}
.ye4{bottom:125.792000pt;}
.y1a5{bottom:126.112000pt;}
.y1f1{bottom:126.240000pt;}
.y217{bottom:126.400000pt;}
.y1fb{bottom:126.426667pt;}
.y1b3{bottom:126.752000pt;}
.y1e8{bottom:127.200000pt;}
.y216{bottom:128.960000pt;}
.y1fa{bottom:128.986667pt;}
.ycb{bottom:131.552000pt;}
.y295{bottom:132.032000pt;}
.y8c{bottom:132.512000pt;}
.y264{bottom:132.832000pt;}
.y155{bottom:134.586667pt;}
.yb5{bottom:135.226667pt;}
.y170{bottom:136.186667pt;}
.y148{bottom:137.946667pt;}
.y137{bottom:138.106667pt;}
.y21d{bottom:139.226667pt;}
.y11d{bottom:139.386667pt;}
.y1f0{bottom:140.800000pt;}
.y215{bottom:143.360000pt;}
.y1f9{bottom:143.386667pt;}
.y2af{bottom:144.506667pt;}
.ye3{bottom:145.626667pt;}
.y1a4{bottom:145.946667pt;}
.y1b2{bottom:146.586667pt;}
.yff{bottom:150.106667pt;}
.yca{bottom:151.386667pt;}
.y247{bottom:151.546667pt;}
.y294{bottom:151.866667pt;}
.y8b{bottom:152.346667pt;}
.y262{bottom:153.786667pt;}
.y154{bottom:154.586667pt;}
.y1e2{bottom:156.666667pt;}
.y147{bottom:157.786667pt;}
.y136{bottom:157.946667pt;}
.y11c{bottom:159.386667pt;}
.y27b{bottom:163.386667pt;}
.ye2{bottom:165.466667pt;}
.yb4{bottom:165.786667pt;}
.y1b1{bottom:166.426667pt;}
.y16f{bottom:166.586667pt;}
.yfe{bottom:169.946667pt;}
.y293{bottom:171.706667pt;}
.y8a{bottom:172.186667pt;}
.y153{bottom:174.426667pt;}
.y2ae{bottom:175.066667pt;}
.y1a3{bottom:176.506667pt;}
.y146{bottom:177.626667pt;}
.y135{bottom:177.786667pt;}
.y21c{bottom:178.106667pt;}
.y11b{bottom:179.226667pt;}
.yc9{bottom:181.786667pt;}
.ye1{bottom:185.306667pt;}
.yb3{bottom:185.626667pt;}
.y1b0{bottom:186.266667pt;}
.y16e{bottom:187.226667pt;}
.y246{bottom:190.266667pt;}
.y292{bottom:191.706667pt;}
.y89{bottom:192.026667pt;}
.y27a{bottom:193.786667pt;}
.y152{bottom:194.266667pt;}
.y1e1{bottom:195.386667pt;}
.y145{bottom:197.466667pt;}
.y134{bottom:197.786667pt;}
.y11a{bottom:199.066667pt;}
.yfd{bottom:200.506667pt;}
.y261{bottom:201.306667pt;}
.ye0{bottom:205.146667pt;}
.yb2{bottom:205.466667pt;}
.y2ad{bottom:205.626667pt;}
.y50{bottom:205.946667pt;}
.y1af{bottom:206.746667pt;}
.yc8{bottom:210.906667pt;}
.y245{bottom:211.386667pt;}
.y88{bottom:211.866667pt;}
.y279{bottom:213.626667pt;}
.y151{bottom:214.106667pt;}
.y204{bottom:216.346667pt;}
.y144{bottom:217.466667pt;}
.y133{bottom:217.626667pt;}
.y119{bottom:218.906667pt;}
.y16d{bottom:220.346667pt;}
.yfc{bottom:221.146667pt;}
.y291{bottom:222.106667pt;}
.ydf{bottom:224.986667pt;}
.yb1{bottom:225.306667pt;}
.y1a2{bottom:228.986667pt;}
.y87{bottom:231.706667pt;}
.y1ae{bottom:232.666667pt;}
.y278{bottom:233.626667pt;}
.y150{bottom:233.946667pt;}
.yc7{bottom:234.266667pt;}
.y22a{bottom:235.706667pt;}
.y2ac{bottom:236.026667pt;}
.y4f{bottom:236.346667pt;}
.y143{bottom:237.306667pt;}
.y132{bottom:237.466667pt;}
.y118{bottom:238.746667pt;}
.y290{bottom:241.946667pt;}
.y19f{bottom:243.546667pt;}
.yde{bottom:244.986667pt;}
.yb0{bottom:245.146667pt;}
.y1d7{bottom:246.906667pt;}
.y25e{bottom:248.666667pt;}
.y15{bottom:249.466667pt;}
.y35{bottom:250.426667pt;}
.y16c{bottom:250.906667pt;}
.y14f{bottom:253.786667pt;}
.yfb{bottom:254.106667pt;}
.y142{bottom:257.146667pt;}
.y131{bottom:257.306667pt;}
.y117{bottom:258.586667pt;}
.y28f{bottom:261.786667pt;}
.y86{bottom:262.266667pt;}
.y277{bottom:264.026667pt;}
.ydd{bottom:264.826667pt;}
.yaf{bottom:264.986667pt;}
.y1ad{bottom:265.786667pt;}
.y2ab{bottom:266.586667pt;}
.y4e{bottom:266.906667pt;}
.y244{bottom:267.706667pt;}
.y16b{bottom:270.746667pt;}
.y227{bottom:272.346667pt;}
.y14e{bottom:273.626667pt;}
.y19e{bottom:274.106667pt;}
.y141{bottom:276.986667pt;}
.y130{bottom:277.146667pt;}
.y116{bottom:278.426667pt;}
.y17c{bottom:278.746667pt;}
.y14{bottom:279.866667pt;}
.y34{bottom:280.986667pt;}
.y85{bottom:282.106667pt;}
.y276{bottom:283.866667pt;}
.ydc{bottom:284.666667pt;}
.yae{bottom:286.106667pt;}
.y16a{bottom:290.586667pt;}
.y200{bottom:291.706667pt;}
.y28e{bottom:292.346667pt;}
.y14d{bottom:293.466667pt;}
.y19d{bottom:293.946667pt;}
.y25b{bottom:296.026667pt;}
.y1ac{bottom:296.346667pt;}
.y140{bottom:296.826667pt;}
.y12f{bottom:296.986667pt;}
.y2aa{bottom:297.146667pt;}
.y4d{bottom:297.466667pt;}
.y115{bottom:298.266667pt;}
.y84{bottom:301.946667pt;}
.y275{bottom:303.866667pt;}
.yfa{bottom:304.506667pt;}
.yad{bottom:305.946667pt;}
.y222{bottom:309.146667pt;}
.y17b{bottom:309.306667pt;}
.y13{bottom:310.426667pt;}
.y28d{bottom:312.186667pt;}
.y33{bottom:312.346667pt;}
.y14c{bottom:313.306667pt;}
.y19c{bottom:313.786667pt;}
.ydb{bottom:315.226667pt;}
.y13f{bottom:316.666667pt;}
.y12e{bottom:316.826667pt;}
.y114{bottom:318.106667pt;}
.y194{bottom:318.946667pt;}
.y83{bottom:321.826667pt;}
.y274{bottom:323.746667pt;}
.y243{bottom:324.066667pt;}
.yf9{bottom:324.386667pt;}
.y1ab{bottom:325.346667pt;}
.y18e{bottom:325.506667pt;}
.yac{bottom:325.826667pt;}
.y2a9{bottom:327.746667pt;}
.y4c{bottom:328.066667pt;}
.y17a{bottom:329.186667pt;}
.y169{bottom:330.306667pt;}
.y28c{bottom:332.066667pt;}
.y32{bottom:333.506667pt;}
.y19b{bottom:333.666667pt;}
.yda{bottom:335.106667pt;}
.y13e{bottom:336.546667pt;}
.y12d{bottom:336.706667pt;}
.y12{bottom:341.026667pt;}
.y82{bottom:341.666667pt;}
.y14b{bottom:343.906667pt;}
.yf8{bottom:344.226667pt;}
.yab{bottom:345.826667pt;}
.y193{bottom:347.906667pt;}
.y1aa{bottom:348.866667pt;}
.y179{bottom:349.026667pt;}
.y168{bottom:350.146667pt;}
.y259{bottom:352.386667pt;}
.y19a{bottom:353.506667pt;}
.y273{bottom:354.146667pt;}
.y31{bottom:354.626667pt;}
.yd9{bottom:354.946667pt;}
.y18d{bottom:356.066667pt;}
.y13d{bottom:356.386667pt;}
.y12c{bottom:356.546667pt;}
.y113{bottom:357.826667pt;}
.y2a8{bottom:358.146667pt;}
.y4b{bottom:358.466667pt;}
.y81{bottom:361.506667pt;}
.y28b{bottom:362.626667pt;}
.y14a{bottom:364.546667pt;}
.yaa{bottom:365.666667pt;}
.y1ff{bottom:367.106667pt;}
.y178{bottom:368.866667pt;}
.y167{bottom:369.986667pt;}
.y192{bottom:371.426667pt;}
.y11{bottom:371.586667pt;}
.y272{bottom:373.986667pt;}
.y1d5{bottom:374.146667pt;}
.yd8{bottom:374.786667pt;}
.y30{bottom:375.746667pt;}
.y18c{bottom:375.906667pt;}
.y13c{bottom:376.226667pt;}
.y12b{bottom:376.386667pt;}
.y112{bottom:377.826667pt;}
.y23c{bottom:380.386667pt;}
.y80{bottom:381.346667pt;}
.y28a{bottom:382.466667pt;}
.y199{bottom:384.066667pt;}
.ya9{bottom:385.506667pt;}
.y177{bottom:388.706667pt;}
.y4a{bottom:389.026667pt;}
.y166{bottom:389.826667pt;}
.y271{bottom:393.986667pt;}
.yd7{bottom:394.626667pt;}
.y18b{bottom:395.746667pt;}
.y13b{bottom:396.066667pt;}
.y12a{bottom:396.386667pt;}
.y2f{bottom:396.706667pt;}
.y111{bottom:397.666667pt;}
.y7f{bottom:401.346667pt;}
.y10{bottom:401.986667pt;}
.ya8{bottom:405.346667pt;}
.y165{bottom:409.666667pt;}
.y289{bottom:413.026667pt;}
.y198{bottom:413.186667pt;}
.y270{bottom:413.826667pt;}
.yd6{bottom:414.466667pt;}
.y18a{bottom:415.586667pt;}
.y13a{bottom:416.066667pt;}
.y129{bottom:416.226667pt;}
.y110{bottom:417.506667pt;}
.y2e{bottom:417.826667pt;}
.y176{bottom:419.266667pt;}
.y49{bottom:419.586667pt;}
.y7e{bottom:421.186667pt;}
.ya7{bottom:425.186667pt;}
.y258{bottom:426.466667pt;}
.yf{bottom:432.546667pt;}
.y288{bottom:432.866667pt;}
.yd5{bottom:434.306667pt;}
.y189{bottom:435.426667pt;}
.y139{bottom:435.906667pt;}
.y128{bottom:436.066667pt;}
.y197{bottom:436.706667pt;}
.y10f{bottom:437.346667pt;}
.y2d{bottom:438.946667pt;}
.y164{bottom:440.226667pt;}
.y7d{bottom:441.026667pt;}
.y26f{bottom:444.226667pt;}
.y175{bottom:448.386667pt;}
.y257{bottom:448.866667pt;}
.y2a7{bottom:449.826667pt;}
.y48{bottom:450.146667pt;}
.y287{bottom:452.706667pt;}
.yd4{bottom:454.146667pt;}
.y188{bottom:455.266667pt;}
.ya6{bottom:455.746667pt;}
.y127{bottom:455.906667pt;}
.y1f8{bottom:456.226667pt;}
.y10e{bottom:457.186667pt;}
.yc6{bottom:460.066667pt;}
.y7c{bottom:460.866667pt;}
.ye{bottom:463.106667pt;}
.y26e{bottom:464.226667pt;}
.yf7{bottom:464.866667pt;}
.y2c{bottom:469.826667pt;}
.y174{bottom:471.906667pt;}
.yd3{bottom:473.986667pt;}
.y187{bottom:475.106667pt;}
.ya5{bottom:475.586667pt;}
.y126{bottom:475.746667pt;}
.y1cd{bottom:476.066667pt;}
.y10d{bottom:477.026667pt;}
.y163{bottom:479.906667pt;}
.y2a6{bottom:480.386667pt;}
.y47{bottom:480.546667pt;}
.y7b{bottom:480.706667pt;}
.y239{bottom:482.466667pt;}
.y286{bottom:483.266667pt;}
.y26d{bottom:484.066667pt;}
.yf6{bottom:484.706667pt;}
.y1b8{bottom:486.146667pt;}
.yc5{bottom:490.626667pt;}
.yd2{bottom:493.826667pt;}
.y256{bottom:494.466667pt;}
.y186{bottom:494.946667pt;}
.ya4{bottom:495.426667pt;}
.y125{bottom:495.586667pt;}
.yd{bottom:495.906667pt;}
.y10c{bottom:496.866667pt;}
.y162{bottom:499.746667pt;}
.y7a{bottom:500.546667pt;}
.y2b{bottom:501.186667pt;}
.y285{bottom:503.106667pt;}
.y26c{bottom:503.906667pt;}
.yf5{bottom:504.546667pt;}
.y1b7{bottom:506.146667pt;}
.yc4{bottom:510.466667pt;}
.y2a5{bottom:510.786667pt;}
.y46{bottom:511.106667pt;}
.yd1{bottom:513.666667pt;}
.y185{bottom:514.946667pt;}
.ya3{bottom:515.266667pt;}
.y124{bottom:515.426667pt;}
.y253{bottom:515.586667pt;}
.y10b{bottom:516.706667pt;}
.y21f{bottom:518.626667pt;}
.y161{bottom:519.586667pt;}
.y79{bottom:520.386667pt;}
.y2a{bottom:522.306667pt;}
.y284{bottom:522.946667pt;}
.y26b{bottom:523.746667pt;}
.yf4{bottom:524.386667pt;}
.y1b6{bottom:525.986667pt;}
.yc3{bottom:530.306667pt;}
.y2a4{bottom:530.626667pt;}
.yd0{bottom:533.666667pt;}
.yc{bottom:534.786667pt;}
.ya2{bottom:535.106667pt;}
.y10a{bottom:536.546667pt;}
.y160{bottom:539.586667pt;}
.y78{bottom:540.226667pt;}
.y21e{bottom:541.026667pt;}
.y45{bottom:541.666667pt;}
.y283{bottom:542.786667pt;}
.y29{bottom:543.266667pt;}
.y26a{bottom:543.586667pt;}
.yf3{bottom:544.386667pt;}
.y184{bottom:545.346667pt;}
.y1b5{bottom:545.826667pt;}
.yc2{bottom:550.146667pt;}
.ya1{bottom:554.973333pt;}
.y123{bottom:555.133333pt;}
.y109{bottom:556.413333pt;}
.y15f{bottom:559.453333pt;}
.y2a3{bottom:561.213333pt;}
.y1a1{bottom:561.853333pt;}
.y1cc{bottom:563.773333pt;}
.ycf{bottom:564.093333pt;}
.yf2{bottom:564.253333pt;}
.y28{bottom:564.413333pt;}
.y183{bottom:565.213333pt;}
.y1b4{bottom:565.693333pt;}
.y44{bottom:568.253333pt;}
.yc1{bottom:570.013333pt;}
.yb{bottom:570.173333pt;}
.y77{bottom:570.813333pt;}
.y238{bottom:571.453333pt;}
.y282{bottom:573.373333pt;}
.y269{bottom:574.173333pt;}
.ya0{bottom:574.813333pt;}
.y122{bottom:574.973333pt;}
.y108{bottom:576.413333pt;}
.y64{bottom:583.293333pt;}
.y182{bottom:585.213333pt;}
.y27{bottom:585.533333pt;}
.y1cb{bottom:586.173333pt;}
.y2be{bottom:587.133333pt;}
.yc0{bottom:589.853333pt;}
.y76{bottom:590.653333pt;}
.y1a0{bottom:590.973333pt;}
.y2a2{bottom:591.773333pt;}
.yce{bottom:593.213333pt;}
.y268{bottom:594.013333pt;}
.y43{bottom:594.653333pt;}
.y121{bottom:594.813333pt;}
.y107{bottom:596.253333pt;}
.y24e{bottom:604.573333pt;}
.y181{bottom:605.053333pt;}
.y214{bottom:606.333333pt;}
.y237{bottom:606.813333pt;}
.y2bd{bottom:606.973333pt;}
.ya{bottom:608.413333pt;}
.ybf{bottom:609.853333pt;}
.y75{bottom:610.493333pt;}
.y281{bottom:613.053333pt;}
.y63{bottom:613.853333pt;}
.y9f{bottom:614.493333pt;}
.y120{bottom:614.813333pt;}
.y106{bottom:616.093333pt;}
.y26{bottom:616.413333pt;}
.ycd{bottom:616.733333pt;}
.y42{bottom:621.213333pt;}
.y2a1{bottom:622.333333pt;}
.y2bc{bottom:626.813333pt;}
.y236{bottom:629.213333pt;}
.ybe{bottom:629.693333pt;}
.y74{bottom:630.333333pt;}
.y62{bottom:633.693333pt;}
.y9e{bottom:634.493333pt;}
.y180{bottom:635.453333pt;}
.y105{bottom:635.933333pt;}
.y9{bottom:638.973333pt;}
.y1b9{bottom:642.013333pt;}
.y2a0{bottom:642.173333pt;}
.y280{bottom:643.613333pt;}
.y2bb{bottom:646.653333pt;}
.y25{bottom:646.813333pt;}
.y41{bottom:647.773333pt;}
.ybd{bottom:649.533333pt;}
.y73{bottom:650.173333pt;}
.y61{bottom:653.533333pt;}
.yf1{bottom:654.333333pt;}
.y191{bottom:655.453333pt;}
.y104{bottom:655.773333pt;}
.y17f{bottom:656.093333pt;}
.y1ca{bottom:657.533333pt;}
.y29f{bottom:662.013333pt;}
.y27f{bottom:663.453333pt;}
.y9d{bottom:664.893333pt;}
.y2ba{bottom:666.653333pt;}
.y8{bottom:669.373333pt;}
.y72{bottom:670.013333pt;}
.y60{bottom:673.373333pt;}
.yf0{bottom:674.173333pt;}
.y40{bottom:674.333333pt;}
.y235{bottom:674.813333pt;}
.y11f{bottom:675.613333pt;}
.y24{bottom:677.373333pt;}
.y29e{bottom:681.853333pt;}
.y27e{bottom:683.293333pt;}
.y190{bottom:684.573333pt;}
.y9c{bottom:684.733333pt;}
.y2b9{bottom:686.493333pt;}
.ybc{bottom:689.213333pt;}
.y1a9{bottom:689.693333pt;}
.y71{bottom:690.013333pt;}
.y5f{bottom:693.213333pt;}
.yef{bottom:694.013333pt;}
.y103{bottom:695.453333pt;}
.y233{bottom:695.773333pt;}
.y1c8{bottom:699.133333pt;}
.y3f{bottom:700.733333pt;}
.y7{bottom:701.533333pt;}
.y27d{bottom:703.133333pt;}
.y267{bottom:703.933333pt;}
.y9b{bottom:704.573333pt;}
.y2b8{bottom:706.333333pt;}
.y23{bottom:707.933333pt;}
.y18f{bottom:708.093333pt;}
.y15e{bottom:709.053333pt;}
.y70{bottom:709.853333pt;}
.y29d{bottom:712.413333pt;}
.y5e{bottom:713.053333pt;}
.yee{bottom:713.853333pt;}
.y102{bottom:715.293333pt;}
.y17e{bottom:718.333333pt;}
.ybb{bottom:719.773333pt;}
.y1a8{bottom:720.093333pt;}
.y266{bottom:723.773333pt;}
.y9a{bottom:724.573333pt;}
.y2b7{bottom:726.173333pt;}
.y3e{bottom:727.293333pt;}
.y15d{bottom:728.893333pt;}
.y6f{bottom:729.693333pt;}
.y196{bottom:730.493333pt;}
.y29c{bottom:732.253333pt;}
.y5d{bottom:732.893333pt;}
.yed{bottom:733.693333pt;}
.y101{bottom:735.133333pt;}
.y22{bottom:738.493333pt;}
.y6{bottom:738.813333pt;}
.yba{bottom:740.253333pt;}
.y1c3{bottom:740.733333pt;}
.y17d{bottom:741.853333pt;}
.y265{bottom:743.613333pt;}
.y99{bottom:744.413333pt;}
.y24c{bottom:745.373333pt;}
.y2b6{bottom:746.013333pt;}
.y15c{bottom:748.733333pt;}
.y1a7{bottom:749.213333pt;}
.y29b{bottom:752.093333pt;}
.yec{bottom:753.533333pt;}
.y3d{bottom:753.853333pt;}
.y195{bottom:754.013333pt;}
.y100{bottom:754.973333pt;}
.y6e{bottom:760.093333pt;}
.y5c{bottom:763.453333pt;}
.y173{bottom:764.253333pt;}
.y2b5{bottom:765.853333pt;}
.y20f{bottom:766.173333pt;}
.y21{bottom:768.893333pt;}
.y1ee{bottom:771.933333pt;}
.y1a6{bottom:772.733333pt;}
.yb9{bottom:773.373333pt;}
.y98{bottom:774.813333pt;}
.y5{bottom:774.973333pt;}
.y15b{bottom:779.293333pt;}
.y6d{bottom:780.093333pt;}
.y3c{bottom:780.413333pt;}
.y5b{bottom:783.333333pt;}
.y172{bottom:784.133333pt;}
.y232{bottom:784.933333pt;}
.y2b4{bottom:785.733333pt;}
.yeb{bottom:793.253333pt;}
.y1ed{bottom:794.373333pt;}
.y97{bottom:794.853333pt;}
.y15a{bottom:799.173333pt;}
.y20{bottom:799.493333pt;}
.y6c{bottom:799.973333pt;}
.y29a{bottom:802.533333pt;}
.y5a{bottom:803.173333pt;}
.yb8{bottom:803.973333pt;}
.y1c2{bottom:805.573333pt;}
.y3b{bottom:807.013333pt;}
.y4{bottom:808.133333pt;}
.yea{bottom:813.093333pt;}
.y96{bottom:814.693333pt;}
.y24b{bottom:818.053333pt;}
.y159{bottom:819.013333pt;}
.y6b{bottom:819.813333pt;}
.y299{bottom:822.373333pt;}
.y59{bottom:823.013333pt;}
.yb7{bottom:823.813333pt;}
.y2b3{bottom:825.413333pt;}
.y1f{bottom:830.053333pt;}
.y3a{bottom:833.413333pt;}
.y231{bottom:833.733333pt;}
.y95{bottom:834.533333pt;}
.y1e7{bottom:835.013333pt;}
.y3{bottom:838.533333pt;}
.y20d{bottom:838.853333pt;}
.y6a{bottom:839.653333pt;}
.y298{bottom:842.213333pt;}
.ye9{bottom:843.653333pt;}
.y1c1{bottom:847.173333pt;}
.y158{bottom:849.573333pt;}
.y58{bottom:853.573333pt;}
.y94{bottom:854.373333pt;}
.y2b2{bottom:855.973333pt;}
.y69{bottom:859.493333pt;}
.y39{bottom:859.973333pt;}
.y1e{bottom:860.613333pt;}
.ye8{bottom:863.493333pt;}
.y2{bottom:869.093333pt;}
.y157{bottom:870.213333pt;}
.y297{bottom:872.773333pt;}
.y57{bottom:873.413333pt;}
.y93{bottom:874.213333pt;}
.y2b1{bottom:878.373333pt;}
.y68{bottom:879.333333pt;}
.y20a{bottom:881.253333pt;}
.y22f{bottom:882.373333pt;}
.ycc{bottom:883.333333pt;}
.y38{bottom:886.533333pt;}
.y1be{bottom:888.773333pt;}
.y1d{bottom:891.173333pt;}
.y296{bottom:892.613333pt;}
.y56{bottom:893.253333pt;}
.y92{bottom:894.053333pt;}
.y67{bottom:899.173333pt;}
.y1{bottom:899.653333pt;}
.ye7{bottom:903.173333pt;}
.y248{bottom:907.173333pt;}
.y55{bottom:913.093333pt;}
.y91{bottom:913.893333pt;}
.y37{bottom:917.093333pt;}
.y1c{bottom:921.573333pt;}
.ye6{bottom:923.173333pt;}
.y1bc{bottom:928.933333pt;}
.y66{bottom:929.733333pt;}
.y22c{bottom:931.173333pt;}
.y54{bottom:933.093333pt;}
.y90{bottom:933.733333pt;}
.y207{bottom:937.573333pt;}
.y36{bottom:939.333333pt;}
.ye5{bottom:943.013333pt;}
.y65{bottom:950.373333pt;}
.y1ba{bottom:951.333333pt;}
.y1b{bottom:952.133333pt;}
.y53{bottom:952.933333pt;}
.y8f{bottom:953.573333pt;}
.y8e{bottom:973.413333pt;}
.y1e6{bottom:978.533333pt;}
.y1a{bottom:982.693333pt;}
.y52{bottom:983.333333pt;}
.y8d{bottom:993.253333pt;}
.y1e4{bottom:1000.933333pt;}
.y51{bottom:1005.733333pt;}
.y19{bottom:1013.253333pt;}
.y16{bottom:1060.480000pt;}
.h2b{height:20.960000pt;}
.h1f{height:20.992000pt;}
.h11{height:21.120000pt;}
.h1e{height:26.400000pt;}
.h1c{height:26.432000pt;}
.he{height:26.560000pt;}
.h14{height:30.694375pt;}
.h2e{height:35.360000pt;}
.h13{height:40.160000pt;}
.h17{height:40.320000pt;}
.h26{height:40.960000pt;}
.h28{height:42.084375pt;}
.hf{height:44.073883pt;}
.h37{height:46.080000pt;}
.hc{height:47.109375pt;}
.h2f{height:47.360000pt;}
.h19{height:49.600000pt;}
.h16{height:52.134375pt;}
.h21{height:54.598989pt;}
.h27{height:54.880000pt;}
.h32{height:54.912000pt;}
.h36{height:55.072000pt;}
.hb{height:57.375000pt;}
.h38{height:62.781250pt;}
.h2{height:62.812500pt;}
.h15{height:63.392000pt;}
.h7{height:63.656250pt;}
.h3{height:64.500000pt;}
.hd{height:65.781915pt;}
.h12{height:66.750000pt;}
.h33{height:71.360000pt;}
.h29{height:71.392000pt;}
.ha{height:73.454062pt;}
.h4{height:73.490625pt;}
.h25{height:74.080000pt;}
.h24{height:74.112000pt;}
.h5{height:83.540625pt;}
.h1b{height:84.662813pt;}
.h23{height:87.680000pt;}
.h18{height:87.712000pt;}
.h34{height:87.840000pt;}
.h30{height:87.872000pt;}
.h10{height:88.777500pt;}
.h6{height:94.218750pt;}
.h8{height:96.750000pt;}
.h9{height:100.125000pt;}
.h31{height:100.800000pt;}
.h2d{height:104.032000pt;}
.h2c{height:104.160000pt;}
.h1a{height:125.792000pt;}
.h35{height:139.520000pt;}
.h1d{height:142.240000pt;}
.h20{height:155.840000pt;}
.h2a{height:158.400000pt;}
.h22{height:158.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4b{width:67.200000pt;}
.w4c{width:67.360000pt;}
.w4a{width:67.552000pt;}
.w47{width:68.192000pt;}
.w26{width:72.800000pt;}
.w29{width:72.960000pt;}
.w25{width:73.152000pt;}
.w2b{width:73.440000pt;}
.w22{width:73.792000pt;}
.w24{width:74.080000pt;}
.w20{width:77.760000pt;}
.w19{width:78.400000pt;}
.w1b{width:80.480000pt;}
.w1d{width:80.512000pt;}
.w1a{width:80.832000pt;}
.w17{width:81.472000pt;}
.w10{width:82.720000pt;}
.w12{width:82.752000pt;}
.wf{width:82.912000pt;}
.w15{width:83.040000pt;}
.wc{width:83.552000pt;}
.we{width:83.680000pt;}
.w14{width:83.872000pt;}
.w1f{width:84.192000pt;}
.w54{width:87.840000pt;}
.w55{width:88.032000pt;}
.w57{width:88.160000pt;}
.w53{width:88.192000pt;}
.w51{width:88.832000pt;}
.w52{width:88.960000pt;}
.w7{width:92.512000pt;}
.w8{width:92.640000pt;}
.w9{width:92.672000pt;}
.wa{width:92.800000pt;}
.w6{width:92.832000pt;}
.w30{width:92.992000pt;}
.w32{width:93.152000pt;}
.w31{width:93.280000pt;}
.w2f{width:93.312000pt;}
.w5{width:93.440000pt;}
.w3{width:93.472000pt;}
.w2e{width:93.920000pt;}
.w2c{width:94.112000pt;}
.w42{width:94.912000pt;}
.w43{width:95.040000pt;}
.w41{width:95.232000pt;}
.w39{width:95.360000pt;}
.w38{width:95.392000pt;}
.w3a{width:95.520000pt;}
.w44{width:95.552000pt;}
.w45{width:95.680000pt;}
.w37{width:95.712000pt;}
.w3c{width:95.840000pt;}
.w3e{width:95.872000pt;}
.w3b{width:96.032000pt;}
.w40{width:96.320000pt;}
.w34{width:96.352000pt;}
.w36{width:96.480000pt;}
.w2a{width:110.112000pt;}
.w28{width:114.112000pt;}
.w1c{width:120.352000pt;}
.w13{width:121.920000pt;}
.w11{width:124.192000pt;}
.w1e{width:126.400000pt;}
.w4e{width:130.112000pt;}
.w4f{width:131.200000pt;}
.w49{width:131.840000pt;}
.w4d{width:136.826667pt;}
.w56{width:139.840000pt;}
.w27{width:143.866667pt;}
.w21{width:163.226667pt;}
.w3d{width:193.146667pt;}
.w16{width:375.426667pt;}
.w33{width:376.866667pt;}
.w50{width:400.706667pt;}
.w4{width:469.693333pt;}
.w2d{width:472.413333pt;}
.w48{width:475.453333pt;}
.w3f{width:482.333333pt;}
.w35{width:484.573333pt;}
.w18{width:498.653333pt;}
.wd{width:501.853333pt;}
.w23{width:520.573333pt;}
.wb{width:562.493333pt;}
.w46{width:577.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:20.032000pt;}
.x61{left:21.600000pt;}
.x46{left:22.752000pt;}
.x36{left:24.320000pt;}
.x41{left:25.760000pt;}
.x3b{left:26.752000pt;}
.x2e{left:27.712000pt;}
.x32{left:29.280000pt;}
.x68{left:30.272000pt;}
.x35{left:31.240000pt;}
.x22{left:32.672000pt;}
.x25{left:34.240000pt;}
.x28{left:35.520000pt;}
.x56{left:37.320000pt;}
.x49{left:44.800000pt;}
.x3d{left:45.800000pt;}
.x30{left:47.720000pt;}
.x40{left:50.560000pt;}
.x64{left:52.480000pt;}
.x63{left:54.240000pt;}
.x62{left:55.840000pt;}
.x48{left:57.640000pt;}
.x65{left:58.720000pt;}
.x57{left:59.680000pt;}
.x29{left:63.360000pt;}
.x4c{left:67.680000pt;}
.x37{left:68.640000pt;}
.x1d{left:69.600000pt;}
.x45{left:71.520000pt;}
.x3a{left:75.840000pt;}
.x2d{left:81.280000pt;}
.x67{left:86.400000pt;}
.x21{left:91.040000pt;}
.x52{left:93.920000pt;}
.x1{left:113.471988pt;}
.xe{left:128.191988pt;}
.x5d{left:129.280000pt;}
.x42{left:136.506667pt;}
.xf{left:137.466655pt;}
.x2a{left:146.906667pt;}
.x69{left:148.346667pt;}
.x38{left:150.106667pt;}
.x50{left:154.586667pt;}
.x58{left:155.546667pt;}
.x11{left:161.466655pt;}
.x1e{left:163.066667pt;}
.x1f{left:166.280000pt;}
.x2b{left:168.040000pt;}
.x5b{left:173.314667pt;}
.x4d{left:181.000000pt;}
.x12{left:185.466655pt;}
.x59{left:188.520000pt;}
.x39{left:190.760000pt;}
.x5f{left:196.506667pt;}
.x43{left:208.360000pt;}
.x13{left:209.466655pt;}
.x47{left:211.226667pt;}
.x7{left:224.186655pt;}
.x3{left:230.586655pt;}
.x2f{left:231.546667pt;}
.x3c{left:232.506667pt;}
.x6a{left:237.626667pt;}
.x8{left:245.506655pt;}
.x2{left:247.266655pt;}
.x53{left:252.066667pt;}
.x4f{left:256.706667pt;}
.x23{left:257.666667pt;}
.x60{left:265.346667pt;}
.x15{left:271.426655pt;}
.x16{left:290.466655pt;}
.xa{left:292.866655pt;}
.x9{left:299.106655pt;}
.x6b{left:326.946667pt;}
.x4{left:331.746655pt;}
.x5{left:333.506655pt;}
.x1a{left:337.506655pt;}
.x54{left:348.866667pt;}
.x24{left:351.586667pt;}
.x3e{left:354.146667pt;}
.x31{left:357.026667pt;}
.x18{left:361.506655pt;}
.x6{left:396.866655pt;}
.x6c{left:416.253333pt;}
.x19{left:422.493322pt;}
.x1b{left:432.413322pt;}
.x3f{left:436.093333pt;}
.x33{left:441.053333pt;}
.x26{left:445.533333pt;}
.x4a{left:472.093333pt;}
.xc{left:477.853322pt;}
.x27{left:539.453333pt;}
.x55{left:542.493333pt;}
.x4b{left:546.333333pt;}
.x6d{left:557.373333pt;}
.x34{left:564.253333pt;}
.x1c{left:565.533322pt;}
.x5c{left:602.853333pt;}
.x20{left:632.773333pt;}
.x4e{left:634.213333pt;}
.x5a{left:637.893333pt;}
.x51{left:639.173333pt;}
.x66{left:646.213333pt;}
.x2c{left:648.773333pt;}
.x44{left:657.093333pt;}
.x14{left:664.453322pt;}
.x10{left:670.533322pt;}
.xd{left:672.453322pt;}
.xb{left:680.453322pt;}
.x17{left:713.573322pt;}
}




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