
    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_190128864d892b374dde9620.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_10aed2c8ca139cefd728a2be.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_2b94a2678be757125d5241b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4a04fb3786a7fc2d325df99d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_ac41e91009357756dbeee140.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_5199fdfa5ee3077b9a7807b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_4d7afd0b7cd40e4685e4130a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_d510fc93feb2f3bf1d95a479.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4f56099658d2e65e7626f6aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_02fc67d43fce157fdef36c99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_136df7b476f143aebec3a34b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-59.040000px;}
.v11{vertical-align:-22.320000px;}
.v4{vertical-align:-20.880000px;}
.v10{vertical-align:-18.720000px;}
.v12{vertical-align:-17.280000px;}
.v7{vertical-align:-12.240000px;}
.v8{vertical-align:-9.360000px;}
.ve{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v6{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v14{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.vb{vertical-align:30.216000px;}
.v13{vertical-align:33.120000px;}
.v9{vertical-align:36.720000px;}
.v15{vertical-align:41.040000px;}
.va{vertical-align:47.496000px;}
.vf{vertical-align:55.416000px;}
.vc{vertical-align:65.496000px;}
.vd{vertical-align:67.656000px;}
.ls41{letter-spacing:-1.260000px;}
.ls40{letter-spacing:-0.990000px;}
.ls3f{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.460200px;}
.ls44{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.277200px;}
.ls43{letter-spacing:-0.269400px;}
.ls1f{letter-spacing:-0.258000px;}
.ls34{letter-spacing:-0.112200px;}
.ls39{letter-spacing:-0.108000px;}
.ls21{letter-spacing:-0.053280px;}
.ls22{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.119520px;}
.ls27{letter-spacing:0.126720px;}
.ls36{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.226080px;}
.ls1d{letter-spacing:0.259800px;}
.ls3c{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.334800px;}
.ls2{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.399600px;}
.ls3a{letter-spacing:0.414000px;}
.ls1e{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.669600px;}
.ls14{letter-spacing:0.676080px;}
.ls3b{letter-spacing:0.696000px;}
.ls2f{letter-spacing:0.711360px;}
.ls3{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.900000px;}
.ls3e{letter-spacing:0.946080px;}
.ls15{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.389600px;}
.ls1b{letter-spacing:1.620000px;}
.ls33{letter-spacing:2.190240px;}
.ls2b{letter-spacing:2.460960px;}
.ls0{letter-spacing:2.520000px;}
.ls2e{letter-spacing:2.604960px;}
.ls2d{letter-spacing:3.180960px;}
.lse{letter-spacing:3.342240px;}
.ls26{letter-spacing:3.780000px;}
.ls12{letter-spacing:4.062240px;}
.lsd{letter-spacing:4.174560px;}
.ls25{letter-spacing:4.500000px;}
.ls42{letter-spacing:6.660000px;}
.ls31{letter-spacing:12.959280px;}
.ls2c{letter-spacing:13.359600px;}
.lsa{letter-spacing:14.079600px;}
.ls32{letter-spacing:15.420960px;}
.lsc{letter-spacing:16.140960px;}
.ls19{letter-spacing:16.559280px;}
.ls30{letter-spacing:16.959600px;}
.ls18{letter-spacing:17.229600px;}
.ls29{letter-spacing:17.255280px;}
.ls11{letter-spacing:17.742240px;}
.ls10{letter-spacing:19.902240px;}
.ls28{letter-spacing:20.622240px;}
.lsb{letter-spacing:21.342240px;}
.ls13{letter-spacing:38.340000px;}
.ls1c{letter-spacing:41.169600px;}
.ls4{letter-spacing:66.960000px;}
.ls1{letter-spacing:72.360000px;}
.ls16{letter-spacing:138.959280px;}
.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:-59.760000px;}
.ws1c{word-spacing:-59.647800px;}
.ws18{word-spacing:-59.482800px;}
.ws2a{word-spacing:-54.000000px;}
.wsf{word-spacing:-49.690800px;}
.ws10{word-spacing:-46.800720px;}
.ws1d{word-spacing:-46.620720px;}
.ws1e{word-spacing:-46.104720px;}
.ws13{word-spacing:-46.080720px;}
.ws15{word-spacing:-45.524160px;}
.ws12{word-spacing:-43.200720px;}
.ws11{word-spacing:-42.600240px;}
.wsd{word-spacing:-42.480720px;}
.ws19{word-spacing:-41.760000px;}
.ws29{word-spacing:-38.898000px;}
.ws2{word-spacing:-36.907200px;}
.ws1b{word-spacing:-36.000000px;}
.ws1a{word-spacing:-34.001280px;}
.ws24{word-spacing:-25.457760px;}
.ws20{word-spacing:-24.737760px;}
.ws25{word-spacing:-24.017760px;}
.ws21{word-spacing:-23.837760px;}
.ws14{word-spacing:-23.389200px;}
.wsc{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.552000px;}
.ws9{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws22{word-spacing:-15.067200px;}
.ws2b{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.886720px;}
.ws1f{word-spacing:-14.479800px;}
.ws1{word-spacing:-13.860000px;}
.ws28{word-spacing:-13.500000px;}
.ws2c{word-spacing:-13.392000px;}
.ws26{word-spacing:-12.906000px;}
.ws5{word-spacing:-12.420000px;}
.ws2d{word-spacing:-12.060000px;}
.ws2e{word-spacing:-11.790600px;}
.ws3{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.440000px;}
.ws16{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.711360px;}
.ws27{word-spacing:-9.000000px;}
.ws4{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._30{margin-left:-12.537360px;}
._2f{margin-left:-9.223200px;}
._2e{margin-left:-5.864400px;}
._2d{margin-left:-3.814560px;}
._1d{margin-left:-2.056320px;}
._0{margin-left:-1.013040px;}
._3{width:1.003680px;}
._1{width:2.315520px;}
._2{width:3.386640px;}
._a{width:4.512720px;}
._e{width:5.739840px;}
._b{width:6.788880px;}
._c{width:7.855920px;}
._f{width:9.108000px;}
._10{width:10.400400px;}
._19{width:11.426160px;}
._22{width:12.741120px;}
._8{width:14.557680px;}
._9{width:15.822000px;}
._d{width:17.417280px;}
._23{width:18.800160px;}
._1b{width:20.076480px;}
._1a{width:21.155040px;}
._24{width:22.586400px;}
._18{width:23.963760px;}
._14{width:25.398000px;}
._27{width:26.881200px;}
._1e{width:27.920160px;}
._12{width:29.354400px;}
._13{width:30.776400px;}
._16{width:31.847760px;}
._15{width:33.197040px;}
._1c{width:34.197840px;}
._17{width:35.198640px;}
._3c{width:36.274320px;}
._26{width:37.290240px;}
._25{width:39.262320px;}
._1f{width:40.397760px;}
._29{width:41.664960px;}
._21{width:43.266240px;}
._20{width:44.282160px;}
._31{width:46.314000px;}
._33{width:47.852400px;}
._28{width:48.883680px;}
._39{width:51.214320px;}
._3b{width:52.230240px;}
._11{width:56.951280px;}
._3a{width:58.206240px;}
._4e{width:59.471280px;}
._38{width:61.552800px;}
._2c{width:65.496960px;}
._6{width:66.771840px;}
._7{width:68.113440px;}
._3d{width:70.092720px;}
._3e{width:71.351040px;}
._2a{width:78.120000px;}
._2b{width:80.138160px;}
._49{width:86.783760px;}
._48{width:95.292720px;}
._47{width:96.462000px;}
._4d{width:102.923280px;}
._4c{width:104.421600px;}
._40{width:110.759040px;}
._45{width:122.714640px;}
._36{width:128.946000px;}
._37{width:130.170000px;}
._42{width:132.515280px;}
._41{width:133.624800px;}
._4f{width:156.240720px;}
._50{width:157.594320px;}
._44{width:169.225920px;}
._34{width:171.228000px;}
._3f{width:224.828640px;}
._4{width:291.900000px;}
._46{width:293.250960px;}
._4a{width:295.277040px;}
._4b{width:296.889120px;}
._32{width:380.189280px;}
._43{width:1064.174400px;}
._5{width:1209.960000px;}
._35{width:1628.736000px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(3,50,255);}
.fc7{color:rgb(13,13,13);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:12.240000px;}
.fsc{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fse{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsf{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:131.760000px;}
.fs8{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1c0{bottom:0.180000px;}
.y13e{bottom:2.685000px;}
.y4f{bottom:4.140000px;}
.y8{bottom:4.320000px;}
.y114{bottom:4.485000px;}
.y112{bottom:4.500000px;}
.y1af{bottom:4.680000px;}
.y1b1{bottom:5.040000px;}
.y136{bottom:5.205000px;}
.y12b{bottom:5.400000px;}
.y132{bottom:5.565000px;}
.y12d{bottom:5.580000px;}
.y130{bottom:5.610000px;}
.y177{bottom:5.625000px;}
.y134{bottom:5.745000px;}
.y170{bottom:5.760000px;}
.y11d{bottom:6.120000px;}
.y123{bottom:6.480000px;}
.y11f{bottom:6.660000px;}
.y13a{bottom:7.005000px;}
.y14c{bottom:7.020000px;}
.y1be{bottom:7.200000px;}
.y138{bottom:7.365000px;}
.y157{bottom:7.545000px;}
.y14e{bottom:7.560000px;}
.y150{bottom:7.740000px;}
.y184{bottom:7.920000px;}
.y149{bottom:8.280000px;}
.y186{bottom:8.460000px;}
.y1bc{bottom:9.000000px;}
.y18e{bottom:9.345000px;}
.y1ba{bottom:9.390000px;}
.y1bf{bottom:9.540000px;}
.y16d{bottom:10.080000px;}
.y1c2{bottom:10.260000px;}
.y1a5{bottom:11.160000px;}
.y18c{bottom:11.505000px;}
.y182{bottom:11.880000px;}
.y13d{bottom:12.045000px;}
.y13f{bottom:14.205000px;}
.y4e{bottom:14.400000px;}
.y51{bottom:22.680000px;}
.y7{bottom:30.780000px;}
.y2{bottom:37.080000px;}
.y1{bottom:49.680000px;}
.y6{bottom:66.270000px;}
.y19f{bottom:75.060000px;}
.yae{bottom:78.480000px;}
.y19e{bottom:79.020000px;}
.y10f{bottom:79.920000px;}
.yff{bottom:80.460000px;}
.y82{bottom:80.640000px;}
.y19d{bottom:82.980000px;}
.y4{bottom:83.325000px;}
.yd0{bottom:84.960000px;}
.y20c{bottom:86.760000px;}
.y19c{bottom:86.940000px;}
.y248{bottom:87.300000px;}
.y165{bottom:88.740000px;}
.y146{bottom:89.640000px;}
.y1d5{bottom:91.080000px;}
.y1da{bottom:91.260000px;}
.y111{bottom:93.060000px;}
.y19a{bottom:95.760000px;}
.yad{bottom:98.640000px;}
.y10e{bottom:99.720000px;}
.y81{bottom:100.440000px;}
.y20b{bottom:102.780000px;}
.y247{bottom:103.140000px;}
.ycf{bottom:105.120000px;}
.y4c{bottom:106.740000px;}
.y164{bottom:108.540000px;}
.y145{bottom:109.440000px;}
.y1d4{bottom:110.880000px;}
.y42{bottom:112.680000px;}
.y199{bottom:115.560000px;}
.yac{bottom:118.440000px;}
.y20a{bottom:118.620000px;}
.y246{bottom:119.160000px;}
.y10d{bottom:119.520000px;}
.y80{bottom:120.420000px;}
.yfe{bottom:120.600000px;}
.yce{bottom:124.920000px;}
.y1d9{bottom:125.640000px;}
.y4b{bottom:126.540000px;}
.y163{bottom:128.520000px;}
.y144{bottom:129.420000px;}
.y1d3{bottom:130.860000px;}
.y41{bottom:132.480000px;}
.y209{bottom:134.460000px;}
.y245{bottom:135.000000px;}
.y198{bottom:135.360000px;}
.yfd{bottom:137.160000px;}
.yab{bottom:138.240000px;}
.y10c{bottom:139.500000px;}
.y7f{bottom:140.220000px;}
.y1d8{bottom:142.596000px;}
.ycd{bottom:143.676000px;}
.y4a{bottom:146.376000px;}
.y162{bottom:148.356000px;}
.yfc{bottom:148.716000px;}
.y143{bottom:148.896000px;}
.y147{bottom:149.256000px;}
.y208{bottom:150.330000px;}
.y1d2{bottom:150.690000px;}
.y244{bottom:150.870000px;}
.ycc{bottom:151.230000px;}
.y40{bottom:152.310000px;}
.y197{bottom:155.190000px;}
.yaa{bottom:158.250000px;}
.y10b{bottom:159.330000px;}
.y1d7{bottom:159.870000px;}
.y7e{bottom:160.050000px;}
.y266{bottom:160.590000px;}
.y49{bottom:166.170000px;}
.y243{bottom:166.710000px;}
.y161{bottom:168.150000px;}
.yfb{bottom:168.690000px;}
.y142{bottom:169.950000px;}
.y1d1{bottom:170.490000px;}
.y3f{bottom:172.110000px;}
.y196{bottom:175.170000px;}
.ycb{bottom:176.250000px;}
.y265{bottom:176.430000px;}
.ya9{bottom:178.050000px;}
.y10a{bottom:179.130000px;}
.y1d6{bottom:179.490000px;}
.y7d{bottom:179.850000px;}
.y207{bottom:182.010000px;}
.y242{bottom:182.550000px;}
.y48{bottom:186.150000px;}
.y167{bottom:187.590000px;}
.y160{bottom:187.950000px;}
.yfa{bottom:188.490000px;}
.y1d0{bottom:190.290000px;}
.y141{bottom:191.550000px;}
.y3e{bottom:192.090000px;}
.y264{bottom:192.450000px;}
.y195{bottom:194.970000px;}
.yca{bottom:196.050000px;}
.ya8{bottom:197.850000px;}
.y206{bottom:198.030000px;}
.y241{bottom:198.390000px;}
.y109{bottom:198.930000px;}
.y7c{bottom:199.650000px;}
.y140{bottom:203.265000px;}
.y47{bottom:205.950000px;}
.y166{bottom:207.390000px;}
.y15f{bottom:207.750000px;}
.yf9{bottom:208.290000px;}
.y1cf{bottom:210.090000px;}
.y3d{bottom:211.890000px;}
.y205{bottom:213.870000px;}
.y240{bottom:214.410000px;}
.y194{bottom:214.770000px;}
.yc9{bottom:215.850000px;}
.ya7{bottom:217.650000px;}
.y108{bottom:218.730000px;}
.y7b{bottom:219.630000px;}
.y13c{bottom:221.985000px;}
.y263{bottom:224.130000px;}
.y3{bottom:224.865000px;}
.y46{bottom:225.750000px;}
.y15e{bottom:227.730000px;}
.yf8{bottom:228.090000px;}
.y204{bottom:229.710000px;}
.y1ce{bottom:230.070000px;}
.y23f{bottom:230.250000px;}
.y3c{bottom:231.690000px;}
.y193{bottom:234.570000px;}
.yc8{bottom:235.650000px;}
.ya6{bottom:237.450000px;}
.y107{bottom:238.710000px;}
.y7a{bottom:239.430000px;}
.y262{bottom:239.970000px;}
.y45{bottom:245.550000px;}
.y23e{bottom:246.090000px;}
.y15d{bottom:247.530000px;}
.yf7{bottom:247.890000px;}
.y1cd{bottom:249.870000px;}
.y3b{bottom:251.490000px;}
.y192{bottom:254.370000px;}
.yc7{bottom:255.450000px;}
.y261{bottom:255.810000px;}
.ya5{bottom:257.430000px;}
.y13b{bottom:257.805000px;}
.y106{bottom:258.510000px;}
.y79{bottom:259.230000px;}
.y203{bottom:261.390000px;}
.y23d{bottom:261.930000px;}
.y44{bottom:265.350000px;}
.y15c{bottom:267.330000px;}
.yf6{bottom:267.870000px;}
.y1cc{bottom:269.670000px;}
.y3a{bottom:271.290000px;}
.y260{bottom:271.650000px;}
.y191{bottom:273.990000px;}
.y19b{bottom:274.350000px;}
.yc6{bottom:275.430000px;}
.y139{bottom:276.525000px;}
.ya4{bottom:277.230000px;}
.y23c{bottom:277.770000px;}
.y105{bottom:278.310000px;}
.y78{bottom:279.030000px;}
.y43{bottom:285.330000px;}
.y15b{bottom:287.130000px;}
.yf5{bottom:287.670000px;}
.y39{bottom:289.470000px;}
.y202{bottom:293.070000px;}
.y23b{bottom:293.610000px;}
.yc5{bottom:295.230000px;}
.ya3{bottom:297.030000px;}
.y190{bottom:297.390000px;}
.y137{bottom:297.945000px;}
.y104{bottom:298.110000px;}
.y77{bottom:298.830000px;}
.y38{bottom:302.250000px;}
.y25f{bottom:303.510000px;}
.y15a{bottom:306.930000px;}
.yf4{bottom:307.470000px;}
.y201{bottom:309.090000px;}
.y1cb{bottom:309.270000px;}
.y23a{bottom:309.630000px;}
.yc4{bottom:315.030000px;}
.ya2{bottom:316.830000px;}
.y113{bottom:316.845000px;}
.y103{bottom:317.910000px;}
.y76{bottom:318.810000px;}
.y135{bottom:319.905000px;}
.y25e{bottom:322.230000px;}
.y18f{bottom:324.570000px;}
.y37{bottom:324.750000px;}
.y200{bottom:324.930000px;}
.y239{bottom:325.470000px;}
.y159{bottom:326.910000px;}
.yf3{bottom:327.270000px;}
.y1ca{bottom:329.250000px;}
.yc3{bottom:334.830000px;}
.y18d{bottom:336.285000px;}
.y36{bottom:336.450000px;}
.ya1{bottom:336.630000px;}
.y102{bottom:338.250000px;}
.y133{bottom:338.445000px;}
.y75{bottom:338.610000px;}
.y1ff{bottom:340.770000px;}
.y238{bottom:341.310000px;}
.y25d{bottom:343.650000px;}
.y158{bottom:345.450000px;}
.yf2{bottom:347.070000px;}
.y35{bottom:347.970000px;}
.y1c9{bottom:349.050000px;}
.yc2{bottom:354.630000px;}
.y131{bottom:356.445000px;}
.ya0{bottom:356.610000px;}
.y237{bottom:357.150000px;}
.y156{bottom:357.165000px;}
.y74{bottom:358.410000px;}
.y18b{bottom:363.285000px;}
.y34{bottom:363.450000px;}
.yf1{bottom:367.050000px;}
.y25c{bottom:368.310000px;}
.y1c8{bottom:368.850000px;}
.y1fe{bottom:372.450000px;}
.y236{bottom:372.990000px;}
.y12f{bottom:374.265000px;}
.yc1{bottom:374.610000px;}
.y9f{bottom:376.455000px;}
.y73{bottom:378.255000px;}
.y33{bottom:378.975000px;}
.y155{bottom:380.055000px;}
.yf0{bottom:386.895000px;}
.y1fd{bottom:388.335000px;}
.y1c7{bottom:388.695000px;}
.y235{bottom:388.875000px;}
.y12e{bottom:392.115000px;}
.y25b{bottom:393.015000px;}
.y32{bottom:394.455000px;}
.y9e{bottom:396.255000px;}
.y72{bottom:398.055000px;}
.y154{bottom:402.735000px;}
.y1fc{bottom:404.355000px;}
.y234{bottom:404.715000px;}
.yef{bottom:406.695000px;}
.y1c6{bottom:408.495000px;}
.y12c{bottom:409.935000px;}
.y31{bottom:410.115000px;}
.yc0{bottom:414.255000px;}
.y9d{bottom:416.055000px;}
.y87{bottom:417.675000px;}
.y71{bottom:418.035000px;}
.y18a{bottom:418.935000px;}
.y1fb{bottom:420.195000px;}
.y233{bottom:420.735000px;}
.y30{bottom:425.595000px;}
.y153{bottom:425.955000px;}
.yee{bottom:426.495000px;}
.y1c5{bottom:428.115000px;}
.y12a{bottom:428.475000px;}
.ybf{bottom:434.055000px;}
.y9c{bottom:435.855000px;}
.y1fa{bottom:436.035000px;}
.y232{bottom:436.575000px;}
.y86{bottom:437.475000px;}
.y70{bottom:437.835000px;}
.y2f{bottom:441.075000px;}
.y25a{bottom:442.155000px;}
.y189{bottom:443.235000px;}
.yed{bottom:446.295000px;}
.y152{bottom:448.815000px;}
.y1c4{bottom:450.435000px;}
.y231{bottom:452.415000px;}
.y1f9{bottom:453.135000px;}
.y129{bottom:453.315000px;}
.ybe{bottom:453.855000px;}
.y9b{bottom:455.835000px;}
.y2e{bottom:456.555000px;}
.y6f{bottom:457.635000px;}
.yec{bottom:466.275000px;}
.y259{bottom:466.815000px;}
.y188{bottom:467.715000px;}
.y230{bottom:468.255000px;}
.y151{bottom:471.495000px;}
.y2d{bottom:472.215000px;}
.y1f8{bottom:472.575000px;}
.ybd{bottom:473.835000px;}
.y128{bottom:474.015000px;}
.y1c3{bottom:474.735000px;}
.y9a{bottom:475.635000px;}
.y6e{bottom:477.435000px;}
.y22f{bottom:484.095000px;}
.yeb{bottom:486.075000px;}
.y1c1{bottom:486.435000px;}
.y2c{bottom:487.695000px;}
.y258{bottom:491.475000px;}
.y187{bottom:492.195000px;}
.ybc{bottom:493.635000px;}
.y14f{bottom:494.715000px;}
.y1f7{bottom:495.075000px;}
.y99{bottom:495.435000px;}
.y127{bottom:495.615000px;}
.y85{bottom:496.875000px;}
.y6d{bottom:497.235000px;}
.y22e{bottom:499.935000px;}
.y2b{bottom:503.175000px;}
.yea{bottom:505.875000px;}
.y126{bottom:507.495000px;}
.ybb{bottom:513.435000px;}
.y98{bottom:515.235000px;}
.y22d{bottom:515.955000px;}
.y257{bottom:516.135000px;}
.y185{bottom:516.675000px;}
.y84{bottom:516.855000px;}
.y6c{bottom:517.215000px;}
.y14d{bottom:517.575000px;}
.y1f6{bottom:518.115000px;}
.y2a{bottom:518.655000px;}
.ye9{bottom:525.675000px;}
.y125{bottom:529.635000px;}
.y22c{bottom:531.795000px;}
.yba{bottom:533.235000px;}
.y29{bottom:534.315000px;}
.y97{bottom:535.035000px;}
.y1f5{bottom:535.395000px;}
.y83{bottom:536.655000px;}
.y6b{bottom:537.015000px;}
.y14b{bottom:540.435000px;}
.y256{bottom:540.795000px;}
.y183{bottom:541.155000px;}
.ye8{bottom:545.475000px;}
.y22b{bottom:547.635000px;}
.y28{bottom:549.795000px;}
.y1bd{bottom:550.155000px;}
.y124{bottom:551.775000px;}
.y1f4{bottom:552.675000px;}
.yb9{bottom:553.035000px;}
.y96{bottom:555.015000px;}
.y6a{bottom:556.815000px;}
.y14a{bottom:562.215000px;}
.y22a{bottom:563.475000px;}
.y27{bottom:565.275000px;}
.ye7{bottom:565.455000px;}
.y1f3{bottom:569.955000px;}
.yb8{bottom:573.195000px;}
.y122{bottom:574.095000px;}
.y1bb{bottom:574.275000px;}
.y95{bottom:574.815000px;}
.y69{bottom:576.615000px;}
.y229{bottom:579.315000px;}
.y26{bottom:580.755000px;}
.y148{bottom:584.715000px;}
.ye6{bottom:585.255000px;}
.y1f2{bottom:586.875000px;}
.y255{bottom:590.115000px;}
.yb7{bottom:593.175000px;}
.y94{bottom:594.615000px;}
.y228{bottom:595.155000px;}
.y121{bottom:596.235000px;}
.y25{bottom:596.415000px;}
.y1b9{bottom:601.995000px;}
.y181{bottom:604.515000px;}
.ye5{bottom:605.055000px;}
.y227{bottom:611.205000px;}
.y24{bottom:611.925000px;}
.yb6{bottom:613.185000px;}
.y93{bottom:614.445000px;}
.y254{bottom:614.805000px;}
.y68{bottom:616.425000px;}
.y120{bottom:618.405000px;}
.y1f1{bottom:621.645000px;}
.ye4{bottom:624.885000px;}
.y180{bottom:625.065000px;}
.y226{bottom:627.045000px;}
.y23{bottom:627.405000px;}
.y168{bottom:627.585000px;}
.y110{bottom:628.125000px;}
.y1b8{bottom:630.645000px;}
.yb5{bottom:632.085000px;}
.y92{bottom:634.245000px;}
.yb4{bottom:635.145000px;}
.y67{bottom:636.225000px;}
.y1f0{bottom:638.565000px;}
.y253{bottom:639.465000px;}
.y11e{bottom:639.645000px;}
.ye3{bottom:642.165000px;}
.y22{bottom:642.885000px;}
.ye2{bottom:645.225000px;}
.y1b7{bottom:651.885000px;}
.y91{bottom:654.225000px;}
.yb3{bottom:655.305000px;}
.y66{bottom:656.025000px;}
.y1ef{bottom:656.205000px;}
.y21{bottom:658.545000px;}
.y225{bottom:658.725000px;}
.y17f{bottom:659.805000px;}
.y11c{bottom:662.685000px;}
.y252{bottom:664.125000px;}
.ye1{bottom:665.385000px;}
.y1b6{bottom:670.965000px;}
.y1ee{bottom:673.485000px;}
.y90{bottom:673.665000px;}
.y20{bottom:674.025000px;}
.y224{bottom:674.565000px;}
.yb2{bottom:675.105000px;}
.y65{bottom:675.825000px;}
.y17e{bottom:677.625000px;}
.ye0{bottom:685.185000px;}
.y251{bottom:688.605000px;}
.y1f{bottom:689.505000px;}
.y1b5{bottom:690.045000px;}
.y223{bottom:690.405000px;}
.y1ed{bottom:690.765000px;}
.y11b{bottom:691.665000px;}
.y8f{bottom:693.465000px;}
.yb1{bottom:695.445000px;}
.y64{bottom:695.625000px;}
.yde{bottom:703.185000px;}
.ydd{bottom:706.245000px;}
.y1ec{bottom:707.865000px;}
.y1b4{bottom:709.125000px;}
.y8e{bottom:712.365000px;}
.y11a{bottom:712.545000px;}
.y250{bottom:713.265000px;}
.y1e{bottom:713.805000px;}
.ydf{bottom:713.985000px;}
.y63{bottom:715.605000px;}
.y222{bottom:722.265000px;}
.y1eb{bottom:725.145000px;}
.y1b3{bottom:728.205000px;}
.y8d{bottom:728.925000px;}
.ydc{bottom:729.825000px;}
.y17d{bottom:731.985000px;}
.y119{bottom:735.045000px;}
.y62{bottom:735.405000px;}
.y1d{bottom:737.565000px;}
.y24f{bottom:737.925000px;}
.y221{bottom:738.105000px;}
.y1ea{bottom:742.425000px;}
.y8c{bottom:746.925000px;}
.y1b2{bottom:747.285000px;}
.ydb{bottom:749.625000px;}
.y17c{bottom:749.805000px;}
.y220{bottom:753.945000px;}
.y1c{bottom:754.665000px;}
.y61{bottom:755.205000px;}
.y1e9{bottom:759.705000px;}
.y8b{bottom:761.685000px;}
.y24e{bottom:762.585000px;}
.y1b{bottom:764.205000px;}
.y1b0{bottom:766.185000px;}
.y17b{bottom:769.065000px;}
.yda{bottom:769.425000px;}
.y21f{bottom:769.785000px;}
.y101{bottom:774.645000px;}
.y60{bottom:775.005000px;}
.y1a{bottom:776.625000px;}
.y1e8{bottom:776.985000px;}
.y1ae{bottom:785.265000px;}
.y21e{bottom:785.625000px;}
.y17a{bottom:786.885000px;}
.y24d{bottom:787.245000px;}
.yd9{bottom:789.225000px;}
.y19{bottom:792.105000px;}
.y1e7{bottom:794.265000px;}
.y100{bottom:794.445000px;}
.y5f{bottom:794.805000px;}
.y21d{bottom:801.465000px;}
.y1ad{bottom:804.345000px;}
.y179{bottom:804.885000px;}
.y18{bottom:807.945000px;}
.yd8{bottom:809.025000px;}
.y1e6{bottom:811.005000px;}
.y24c{bottom:811.905000px;}
.y118{bottom:814.425000px;}
.y5e{bottom:814.785000px;}
.y21c{bottom:817.485000px;}
.y178{bottom:823.425000px;}
.y17{bottom:823.785000px;}
.y1e5{bottom:828.285000px;}
.yd7{bottom:829.005000px;}
.y1ac{bottom:831.885000px;}
.y21b{bottom:833.325000px;}
.y117{bottom:834.225000px;}
.y16{bottom:834.405000px;}
.y5d{bottom:834.585000px;}
.y24b{bottom:836.565000px;}
.y176{bottom:841.245000px;}
.y1e4{bottom:845.970000px;}
.yd6{bottom:848.850000px;}
.y21a{bottom:849.210000px;}
.y1ab{bottom:852.090000px;}
.y116{bottom:854.070000px;}
.y5c{bottom:854.430000px;}
.y15{bottom:855.510000px;}
.y175{bottom:859.110000px;}
.y24a{bottom:859.830000px;}
.y1e3{bottom:863.250000px;}
.y219{bottom:865.050000px;}
.y14{bottom:865.770000px;}
.yd5{bottom:868.650000px;}
.y1aa{bottom:872.250000px;}
.y115{bottom:873.870000px;}
.y5b{bottom:874.230000px;}
.y174{bottom:877.830000px;}
.y249{bottom:878.190000px;}
.y1e2{bottom:880.530000px;}
.y218{bottom:880.890000px;}
.y13{bottom:881.430000px;}
.y1a9{bottom:883.950000px;}
.yd4{bottom:888.450000px;}
.y5a{bottom:894.030000px;}
.y173{bottom:895.650000px;}
.y217{bottom:896.730000px;}
.y1e1{bottom:897.810000px;}
.y12{bottom:903.570000px;}
.yd2{bottom:906.990000px;}
.y1a8{bottom:907.350000px;}
.yd1{bottom:910.050000px;}
.y216{bottom:912.750000px;}
.y172{bottom:913.470000px;}
.y59{bottom:914.010000px;}
.y1e0{bottom:914.910000px;}
.yd3{bottom:918.150000px;}
.y11{bottom:924.990000px;}
.y215{bottom:928.590000px;}
.y1a7{bottom:930.750000px;}
.y171{bottom:932.010000px;}
.y1df{bottom:932.190000px;}
.y58{bottom:933.810000px;}
.y214{bottom:944.430000px;}
.y1de{bottom:949.470000px;}
.y16f{bottom:949.830000px;}
.y57{bottom:953.610000px;}
.y1a6{bottom:954.150000px;}
.y213{bottom:960.270000px;}
.y10{bottom:962.970000px;}
.y1dd{bottom:966.750000px;}
.y16e{bottom:967.830000px;}
.y56{bottom:973.410000px;}
.y212{bottom:976.110000px;}
.y1a4{bottom:977.550000px;}
.y1dc{bottom:984.030000px;}
.y16c{bottom:986.370000px;}
.y211{bottom:991.950000px;}
.y55{bottom:993.210000px;}
.yf{bottom:998.070000px;}
.y1a3{bottom:1000.950000px;}
.y210{bottom:1007.970000px;}
.ye{bottom:1012.470000px;}
.y8a{bottom:1012.830000px;}
.y54{bottom:1013.190000px;}
.y16b{bottom:1018.410000px;}
.y4d{bottom:1020.930000px;}
.y5{bottom:1021.290000px;}
.y20f{bottom:1023.810000px;}
.y1a2{bottom:1023.990000px;}
.yd{bottom:1026.150000px;}
.yb0{bottom:1032.630000px;}
.y53{bottom:1032.990000px;}
.y16a{bottom:1035.690000px;}
.y20e{bottom:1039.650000px;}
.yc{bottom:1041.810000px;}
.y1a1{bottom:1048.830000px;}
.yaf{bottom:1052.430000px;}
.y1db{bottom:1052.610000px;}
.y52{bottom:1052.790000px;}
.y169{bottom:1052.970000px;}
.y20d{bottom:1055.490000px;}
.yb{bottom:1057.830000px;}
.y1a0{bottom:1063.770000px;}
.ya{bottom:1081.080000px;}
.y89{bottom:1086.480000px;}
.y9{bottom:1106.640000px;}
.y50{bottom:1113.660000px;}
.y88{bottom:1122.660000px;}
.h49{height:12.335625px;}
.h33{height:17.805000px;}
.h42{height:17.820000px;}
.h34{height:17.841000px;}
.h41{height:17.842500px;}
.h32{height:17.985000px;}
.h28{height:18.000000px;}
.h2a{height:18.165000px;}
.h29{height:18.178500px;}
.h4d{height:18.180000px;}
.h4f{height:18.900000px;}
.h4e{height:19.080000px;}
.h4c{height:20.520000px;}
.h36{height:20.685000px;}
.h1a{height:21.225000px;}
.h2e{height:21.240000px;}
.h3b{height:21.765000px;}
.h30{height:22.125000px;}
.h2c{height:22.140000px;}
.h2f{height:22.170000px;}
.h31{height:22.305000px;}
.h2d{height:22.320000px;}
.h3d{height:22.665000px;}
.h3c{height:22.845000px;}
.h3e{height:22.881000px;}
.h44{height:23.205000px;}
.h11{height:23.319141px;}
.h4a{height:23.385000px;}
.h46{height:24.285000px;}
.h45{height:24.465000px;}
.h3a{height:24.645000px;}
.h48{height:26.265000px;}
.h51{height:26.985000px;}
.h40{height:27.525000px;}
.h50{height:27.750000px;}
.h53{height:29.325000px;}
.h10{height:29.664141px;}
.h12{height:29.678906px;}
.h47{height:30.441000px;}
.h43{height:32.205000px;}
.h52{height:32.565000px;}
.h56{height:34.884492px;}
.h37{height:35.085000px;}
.h25{height:35.194219px;}
.h17{height:35.332031px;}
.h15{height:39.049805px;}
.hf{height:40.964766px;}
.h19{height:40.985156px;}
.h18{height:42.086250px;}
.h1f{height:43.215117px;}
.ha{height:47.321367px;}
.h1{height:47.344922px;}
.hb{height:48.616875px;}
.h1d{height:50.364141px;}
.h27{height:52.524141px;}
.h14{height:52.998047px;}
.h16{height:54.421875px;}
.h57{height:55.503491px;}
.h4{height:56.084062px;}
.h9{height:58.651172px;}
.h35{height:59.092031px;}
.h1b{height:59.439023px;}
.hd{height:60.226875px;}
.h55{height:61.423863px;}
.h24{height:62.604141px;}
.h26{height:64.764141px;}
.he{height:65.518594px;}
.h1c{height:65.884219px;}
.h20{height:66.543750px;}
.h4b{height:66.757500px;}
.h58{height:67.824844px;}
.h21{height:70.474219px;}
.h1e{height:70.891172px;}
.h7{height:71.324297px;}
.h2b{height:72.562500px;}
.h54{height:84.898125px;}
.h38{height:86.549766px;}
.h23{height:88.867172px;}
.h39{height:90.438047px;}
.h3f{height:96.508125px;}
.h8{height:97.523438px;}
.h3{height:98.805000px;}
.h22{height:102.850219px;}
.h13{height:105.996094px;}
.h5{height:106.050000px;}
.h2{height:108.843750px;}
.hc{height:132.789375px;}
.h6{height:142.038984px;}
.h0{height:1188.000000px;}
.w5{width:49.845000px;}
.w4{width:52.020000px;}
.w3{width:57.600000px;}
.w15{width:82.821000px;}
.w2{width:82.965000px;}
.w29{width:87.321000px;}
.w27{width:90.576000px;}
.w9{width:92.901000px;}
.wa{width:95.745000px;}
.w8{width:97.005000px;}
.w24{width:97.581000px;}
.w16{width:101.145000px;}
.w18{width:104.565000px;}
.w1c{width:105.861000px;}
.w23{width:106.905000px;}
.w7{width:107.316000px;}
.w22{width:108.756000px;}
.w2c{width:108.885000px;}
.w2b{width:108.936000px;}
.wd{width:109.785000px;}
.w2a{width:110.325000px;}
.w25{width:110.865000px;}
.w13{width:111.996000px;}
.we{width:112.881000px;}
.wc{width:114.336000px;}
.w14{width:118.605000px;}
.wf{width:121.665000px;}
.w1d{width:126.525000px;}
.w1a{width:127.080000px;}
.w28{width:127.245000px;}
.w1f{width:137.736000px;}
.w1e{width:148.140000px;}
.w1b{width:158.790000px;}
.w19{width:246.313500px;}
.w17{width:249.915000px;}
.wb{width:303.733500px;}
.w21{width:337.573500px;}
.w12{width:348.733500px;}
.w26{width:349.273500px;}
.w6{width:369.973500px;}
.w2e{width:415.515000px;}
.w11{width:458.715000px;}
.w1{width:760.635000px;}
.w10{width:762.435000px;}
.w20{width:764.595000px;}
.w2d{width:764.775000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:8.098500px;}
.x3{left:10.798500px;}
.x18{left:14.400000px;}
.x4b{left:20.520000px;}
.x54{left:23.385000px;}
.x39{left:25.920000px;}
.x2e{left:27.525000px;}
.x2c{left:29.700000px;}
.x38{left:31.680000px;}
.x32{left:33.105000px;}
.x30{left:34.365000px;}
.x33{left:36.165000px;}
.x34{left:37.800000px;}
.x36{left:39.585000px;}
.x47{left:40.860000px;}
.x37{left:41.940000px;}
.x35{left:43.560000px;}
.x3f{left:45.360000px;}
.x49{left:50.580000px;}
.x3d{left:52.005000px;}
.x59{left:55.080000px;}
.x40{left:56.505000px;}
.x48{left:59.205000px;}
.x41{left:60.840000px;}
.x1{left:81.000000px;}
.x2{left:82.081500px;}
.xd{left:85.860000px;}
.xa{left:102.636000px;}
.x1b{left:108.036000px;}
.x11{left:110.016000px;}
.x22{left:114.516000px;}
.xc{left:122.976000px;}
.x28{left:131.436000px;}
.x23{left:149.256000px;}
.x5b{left:158.250000px;}
.x15{left:162.030000px;}
.x24{left:172.830000px;}
.xb{left:174.090000px;}
.x5a{left:189.210000px;}
.xe{left:192.450000px;}
.x25{left:196.230000px;}
.x13{left:199.830000px;}
.x42{left:214.050000px;}
.x26{left:219.810000px;}
.x27{left:243.390000px;}
.xf{left:252.750000px;}
.x12{left:279.570000px;}
.x10{left:304.275000px;}
.x4c{left:327.315000px;}
.x5{left:336.135000px;}
.x1d{left:347.835000px;}
.x7{left:349.455000px;}
.x4{left:369.795000px;}
.x3a{left:384.735000px;}
.x29{left:392.475000px;}
.x8{left:394.275000px;}
.x19{left:418.035000px;}
.x14{left:422.895000px;}
.x6{left:423.975000px;}
.x43{left:429.735000px;}
.x1e{left:436.575000px;}
.x1a{left:451.155000px;}
.x4d{left:454.395000px;}
.x9{left:462.495000px;}
.x50{left:475.455000px;}
.x16{left:488.955000px;}
.x3b{left:499.080000px;}
.x1c{left:515.985000px;}
.x55{left:520.860000px;}
.x1f{left:522.465000px;}
.x51{left:527.340000px;}
.x20{left:530.745000px;}
.x58{left:539.220000px;}
.x44{left:541.740000px;}
.x2d{left:558.300000px;}
.x3c{left:608.880000px;}
.x4e{left:613.200000px;}
.x21{left:627.585000px;}
.x52{left:634.260000px;}
.x56{left:648.120000px;}
.x2f{left:655.320000px;}
.x45{left:660.360000px;}
.x4f{left:719.070000px;}
.x3e{left:721.770000px;}
.x53{left:731.850000px;}
.x57{left:735.450000px;}
.x4a{left:738.870000px;}
.x46{left:743.190000px;}
.x31{left:748.230000px;}
.x17{left:761.730000px;}
.x2a{left:805.830000px;}
@media print{
.v1{vertical-align:-52.480000pt;}
.v11{vertical-align:-19.840000pt;}
.v4{vertical-align:-18.560000pt;}
.v10{vertical-align:-16.640000pt;}
.v12{vertical-align:-15.360000pt;}
.v7{vertical-align:-10.880000pt;}
.v8{vertical-align:-8.320000pt;}
.ve{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v6{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v14{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.vb{vertical-align:26.858667pt;}
.v13{vertical-align:29.440000pt;}
.v9{vertical-align:32.640000pt;}
.v15{vertical-align:36.480000pt;}
.va{vertical-align:42.218667pt;}
.vf{vertical-align:49.258667pt;}
.vc{vertical-align:58.218667pt;}
.vd{vertical-align:60.138667pt;}
.ls41{letter-spacing:-1.120000pt;}
.ls40{letter-spacing:-0.880000pt;}
.ls3f{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.409067pt;}
.ls44{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.246400pt;}
.ls43{letter-spacing:-0.239467pt;}
.ls1f{letter-spacing:-0.229333pt;}
.ls34{letter-spacing:-0.099733pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls21{letter-spacing:-0.047360pt;}
.ls22{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.106240pt;}
.ls27{letter-spacing:0.112640pt;}
.ls36{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.200960pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls3c{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.297600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.355200pt;}
.ls3a{letter-spacing:0.368000pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.595200pt;}
.ls14{letter-spacing:0.600960pt;}
.ls3b{letter-spacing:0.618667pt;}
.ls2f{letter-spacing:0.632320pt;}
.ls3{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls3e{letter-spacing:0.840960pt;}
.ls15{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.235200pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls33{letter-spacing:1.946880pt;}
.ls2b{letter-spacing:2.187520pt;}
.ls0{letter-spacing:2.240000pt;}
.ls2e{letter-spacing:2.315520pt;}
.ls2d{letter-spacing:2.827520pt;}
.lse{letter-spacing:2.970880pt;}
.ls26{letter-spacing:3.360000pt;}
.ls12{letter-spacing:3.610880pt;}
.lsd{letter-spacing:3.710720pt;}
.ls25{letter-spacing:4.000000pt;}
.ls42{letter-spacing:5.920000pt;}
.ls31{letter-spacing:11.519360pt;}
.ls2c{letter-spacing:11.875200pt;}
.lsa{letter-spacing:12.515200pt;}
.ls32{letter-spacing:13.707520pt;}
.lsc{letter-spacing:14.347520pt;}
.ls19{letter-spacing:14.719360pt;}
.ls30{letter-spacing:15.075200pt;}
.ls18{letter-spacing:15.315200pt;}
.ls29{letter-spacing:15.338027pt;}
.ls11{letter-spacing:15.770880pt;}
.ls10{letter-spacing:17.690880pt;}
.ls28{letter-spacing:18.330880pt;}
.lsb{letter-spacing:18.970880pt;}
.ls13{letter-spacing:34.080000pt;}
.ls1c{letter-spacing:36.595200pt;}
.ls4{letter-spacing:59.520000pt;}
.ls1{letter-spacing:64.320000pt;}
.ls16{letter-spacing:123.519360pt;}
.wse{word-spacing:-53.120000pt;}
.ws1c{word-spacing:-53.020267pt;}
.ws18{word-spacing:-52.873600pt;}
.ws2a{word-spacing:-48.000000pt;}
.wsf{word-spacing:-44.169600pt;}
.ws10{word-spacing:-41.600640pt;}
.ws1d{word-spacing:-41.440640pt;}
.ws1e{word-spacing:-40.981973pt;}
.ws13{word-spacing:-40.960640pt;}
.ws15{word-spacing:-40.465920pt;}
.ws12{word-spacing:-38.400640pt;}
.ws11{word-spacing:-37.866880pt;}
.wsd{word-spacing:-37.760640pt;}
.ws19{word-spacing:-37.120000pt;}
.ws29{word-spacing:-34.576000pt;}
.ws2{word-spacing:-32.806400pt;}
.ws1b{word-spacing:-32.000000pt;}
.ws1a{word-spacing:-30.223360pt;}
.ws24{word-spacing:-22.629120pt;}
.ws20{word-spacing:-21.989120pt;}
.ws25{word-spacing:-21.349120pt;}
.ws21{word-spacing:-21.189120pt;}
.ws14{word-spacing:-20.790400pt;}
.wsc{word-spacing:-14.240000pt;}
.wsb{word-spacing:-13.824000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws22{word-spacing:-13.393067pt;}
.ws2b{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws23{word-spacing:-13.232640pt;}
.ws1f{word-spacing:-12.870933pt;}
.ws1{word-spacing:-12.320000pt;}
.ws28{word-spacing:-12.000000pt;}
.ws2c{word-spacing:-11.904000pt;}
.ws26{word-spacing:-11.472000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws2d{word-spacing:-10.720000pt;}
.ws2e{word-spacing:-10.480533pt;}
.ws3{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws16{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.632320pt;}
.ws27{word-spacing:-8.000000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._30{margin-left:-11.144320pt;}
._2f{margin-left:-8.198400pt;}
._2e{margin-left:-5.212800pt;}
._2d{margin-left:-3.390720pt;}
._1d{margin-left:-1.827840pt;}
._0{margin-left:-0.900480pt;}
._3{width:0.892160pt;}
._1{width:2.058240pt;}
._2{width:3.010347pt;}
._a{width:4.011307pt;}
._e{width:5.102080pt;}
._b{width:6.034560pt;}
._c{width:6.983040pt;}
._f{width:8.096000pt;}
._10{width:9.244800pt;}
._19{width:10.156587pt;}
._22{width:11.325440pt;}
._8{width:12.940160pt;}
._9{width:14.064000pt;}
._d{width:15.482027pt;}
._23{width:16.711253pt;}
._1b{width:17.845760pt;}
._1a{width:18.804480pt;}
._24{width:20.076800pt;}
._18{width:21.301120pt;}
._14{width:22.576000pt;}
._27{width:23.894400pt;}
._1e{width:24.817920pt;}
._12{width:26.092800pt;}
._13{width:27.356800pt;}
._16{width:28.309120pt;}
._15{width:29.508480pt;}
._1c{width:30.398080pt;}
._17{width:31.287680pt;}
._3c{width:32.243840pt;}
._26{width:33.146880pt;}
._25{width:34.899840pt;}
._1f{width:35.909120pt;}
._29{width:37.035520pt;}
._21{width:38.458880pt;}
._20{width:39.361920pt;}
._31{width:41.168000pt;}
._33{width:42.535467pt;}
._28{width:43.452160pt;}
._39{width:45.523840pt;}
._3b{width:46.426880pt;}
._11{width:50.623360pt;}
._3a{width:51.738880pt;}
._4e{width:52.863360pt;}
._38{width:54.713600pt;}
._2c{width:58.219520pt;}
._6{width:59.352747pt;}
._7{width:60.545280pt;}
._3d{width:62.304640pt;}
._3e{width:63.423147pt;}
._2a{width:69.440000pt;}
._2b{width:71.233920pt;}
._49{width:77.141120pt;}
._48{width:84.704640pt;}
._47{width:85.744000pt;}
._4d{width:91.487360pt;}
._4c{width:92.819200pt;}
._40{width:98.452480pt;}
._45{width:109.079680pt;}
._36{width:114.618667pt;}
._37{width:115.706667pt;}
._42{width:117.791360pt;}
._41{width:118.777600pt;}
._4f{width:138.880640pt;}
._50{width:140.083840pt;}
._44{width:150.423040pt;}
._34{width:152.202667pt;}
._3f{width:199.847680pt;}
._4{width:259.466667pt;}
._46{width:260.667520pt;}
._4a{width:262.468480pt;}
._4b{width:263.901440pt;}
._32{width:337.946027pt;}
._43{width:945.932800pt;}
._5{width:1075.520000pt;}
._35{width:1447.765333pt;}
.fs10{font-size:10.880000pt;}
.fsc{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fse{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsf{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:117.120000pt;}
.fs8{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1c0{bottom:0.160000pt;}
.y13e{bottom:2.386667pt;}
.y4f{bottom:3.680000pt;}
.y8{bottom:3.840000pt;}
.y114{bottom:3.986667pt;}
.y112{bottom:4.000000pt;}
.y1af{bottom:4.160000pt;}
.y1b1{bottom:4.480000pt;}
.y136{bottom:4.626667pt;}
.y12b{bottom:4.800000pt;}
.y132{bottom:4.946667pt;}
.y12d{bottom:4.960000pt;}
.y130{bottom:4.986667pt;}
.y177{bottom:5.000000pt;}
.y134{bottom:5.106667pt;}
.y170{bottom:5.120000pt;}
.y11d{bottom:5.440000pt;}
.y123{bottom:5.760000pt;}
.y11f{bottom:5.920000pt;}
.y13a{bottom:6.226667pt;}
.y14c{bottom:6.240000pt;}
.y1be{bottom:6.400000pt;}
.y138{bottom:6.546667pt;}
.y157{bottom:6.706667pt;}
.y14e{bottom:6.720000pt;}
.y150{bottom:6.880000pt;}
.y184{bottom:7.040000pt;}
.y149{bottom:7.360000pt;}
.y186{bottom:7.520000pt;}
.y1bc{bottom:8.000000pt;}
.y18e{bottom:8.306667pt;}
.y1ba{bottom:8.346667pt;}
.y1bf{bottom:8.480000pt;}
.y16d{bottom:8.960000pt;}
.y1c2{bottom:9.120000pt;}
.y1a5{bottom:9.920000pt;}
.y18c{bottom:10.226667pt;}
.y182{bottom:10.560000pt;}
.y13d{bottom:10.706667pt;}
.y13f{bottom:12.626667pt;}
.y4e{bottom:12.800000pt;}
.y51{bottom:20.160000pt;}
.y7{bottom:27.360000pt;}
.y2{bottom:32.960000pt;}
.y1{bottom:44.160000pt;}
.y6{bottom:58.906667pt;}
.y19f{bottom:66.720000pt;}
.yae{bottom:69.760000pt;}
.y19e{bottom:70.240000pt;}
.y10f{bottom:71.040000pt;}
.yff{bottom:71.520000pt;}
.y82{bottom:71.680000pt;}
.y19d{bottom:73.760000pt;}
.y4{bottom:74.066667pt;}
.yd0{bottom:75.520000pt;}
.y20c{bottom:77.120000pt;}
.y19c{bottom:77.280000pt;}
.y248{bottom:77.600000pt;}
.y165{bottom:78.880000pt;}
.y146{bottom:79.680000pt;}
.y1d5{bottom:80.960000pt;}
.y1da{bottom:81.120000pt;}
.y111{bottom:82.720000pt;}
.y19a{bottom:85.120000pt;}
.yad{bottom:87.680000pt;}
.y10e{bottom:88.640000pt;}
.y81{bottom:89.280000pt;}
.y20b{bottom:91.360000pt;}
.y247{bottom:91.680000pt;}
.ycf{bottom:93.440000pt;}
.y4c{bottom:94.880000pt;}
.y164{bottom:96.480000pt;}
.y145{bottom:97.280000pt;}
.y1d4{bottom:98.560000pt;}
.y42{bottom:100.160000pt;}
.y199{bottom:102.720000pt;}
.yac{bottom:105.280000pt;}
.y20a{bottom:105.440000pt;}
.y246{bottom:105.920000pt;}
.y10d{bottom:106.240000pt;}
.y80{bottom:107.040000pt;}
.yfe{bottom:107.200000pt;}
.yce{bottom:111.040000pt;}
.y1d9{bottom:111.680000pt;}
.y4b{bottom:112.480000pt;}
.y163{bottom:114.240000pt;}
.y144{bottom:115.040000pt;}
.y1d3{bottom:116.320000pt;}
.y41{bottom:117.760000pt;}
.y209{bottom:119.520000pt;}
.y245{bottom:120.000000pt;}
.y198{bottom:120.320000pt;}
.yfd{bottom:121.920000pt;}
.yab{bottom:122.880000pt;}
.y10c{bottom:124.000000pt;}
.y7f{bottom:124.640000pt;}
.y1d8{bottom:126.752000pt;}
.ycd{bottom:127.712000pt;}
.y4a{bottom:130.112000pt;}
.y162{bottom:131.872000pt;}
.yfc{bottom:132.192000pt;}
.y143{bottom:132.352000pt;}
.y147{bottom:132.672000pt;}
.y208{bottom:133.626667pt;}
.y1d2{bottom:133.946667pt;}
.y244{bottom:134.106667pt;}
.ycc{bottom:134.426667pt;}
.y40{bottom:135.386667pt;}
.y197{bottom:137.946667pt;}
.yaa{bottom:140.666667pt;}
.y10b{bottom:141.626667pt;}
.y1d7{bottom:142.106667pt;}
.y7e{bottom:142.266667pt;}
.y266{bottom:142.746667pt;}
.y49{bottom:147.706667pt;}
.y243{bottom:148.186667pt;}
.y161{bottom:149.466667pt;}
.yfb{bottom:149.946667pt;}
.y142{bottom:151.066667pt;}
.y1d1{bottom:151.546667pt;}
.y3f{bottom:152.986667pt;}
.y196{bottom:155.706667pt;}
.ycb{bottom:156.666667pt;}
.y265{bottom:156.826667pt;}
.ya9{bottom:158.266667pt;}
.y10a{bottom:159.226667pt;}
.y1d6{bottom:159.546667pt;}
.y7d{bottom:159.866667pt;}
.y207{bottom:161.786667pt;}
.y242{bottom:162.266667pt;}
.y48{bottom:165.466667pt;}
.y167{bottom:166.746667pt;}
.y160{bottom:167.066667pt;}
.yfa{bottom:167.546667pt;}
.y1d0{bottom:169.146667pt;}
.y141{bottom:170.266667pt;}
.y3e{bottom:170.746667pt;}
.y264{bottom:171.066667pt;}
.y195{bottom:173.306667pt;}
.yca{bottom:174.266667pt;}
.ya8{bottom:175.866667pt;}
.y206{bottom:176.026667pt;}
.y241{bottom:176.346667pt;}
.y109{bottom:176.826667pt;}
.y7c{bottom:177.466667pt;}
.y140{bottom:180.680000pt;}
.y47{bottom:183.066667pt;}
.y166{bottom:184.346667pt;}
.y15f{bottom:184.666667pt;}
.yf9{bottom:185.146667pt;}
.y1cf{bottom:186.746667pt;}
.y3d{bottom:188.346667pt;}
.y205{bottom:190.106667pt;}
.y240{bottom:190.586667pt;}
.y194{bottom:190.906667pt;}
.yc9{bottom:191.866667pt;}
.ya7{bottom:193.466667pt;}
.y108{bottom:194.426667pt;}
.y7b{bottom:195.226667pt;}
.y13c{bottom:197.320000pt;}
.y263{bottom:199.226667pt;}
.y3{bottom:199.880000pt;}
.y46{bottom:200.666667pt;}
.y15e{bottom:202.426667pt;}
.yf8{bottom:202.746667pt;}
.y204{bottom:204.186667pt;}
.y1ce{bottom:204.506667pt;}
.y23f{bottom:204.666667pt;}
.y3c{bottom:205.946667pt;}
.y193{bottom:208.506667pt;}
.yc8{bottom:209.466667pt;}
.ya6{bottom:211.066667pt;}
.y107{bottom:212.186667pt;}
.y7a{bottom:212.826667pt;}
.y262{bottom:213.306667pt;}
.y45{bottom:218.266667pt;}
.y23e{bottom:218.746667pt;}
.y15d{bottom:220.026667pt;}
.yf7{bottom:220.346667pt;}
.y1cd{bottom:222.106667pt;}
.y3b{bottom:223.546667pt;}
.y192{bottom:226.106667pt;}
.yc7{bottom:227.066667pt;}
.y261{bottom:227.386667pt;}
.ya5{bottom:228.826667pt;}
.y13b{bottom:229.160000pt;}
.y106{bottom:229.786667pt;}
.y79{bottom:230.426667pt;}
.y203{bottom:232.346667pt;}
.y23d{bottom:232.826667pt;}
.y44{bottom:235.866667pt;}
.y15c{bottom:237.626667pt;}
.yf6{bottom:238.106667pt;}
.y1cc{bottom:239.706667pt;}
.y3a{bottom:241.146667pt;}
.y260{bottom:241.466667pt;}
.y191{bottom:243.546667pt;}
.y19b{bottom:243.866667pt;}
.yc6{bottom:244.826667pt;}
.y139{bottom:245.800000pt;}
.ya4{bottom:246.426667pt;}
.y23c{bottom:246.906667pt;}
.y105{bottom:247.386667pt;}
.y78{bottom:248.026667pt;}
.y43{bottom:253.626667pt;}
.y15b{bottom:255.226667pt;}
.yf5{bottom:255.706667pt;}
.y39{bottom:257.306667pt;}
.y202{bottom:260.506667pt;}
.y23b{bottom:260.986667pt;}
.yc5{bottom:262.426667pt;}
.ya3{bottom:264.026667pt;}
.y190{bottom:264.346667pt;}
.y137{bottom:264.840000pt;}
.y104{bottom:264.986667pt;}
.y77{bottom:265.626667pt;}
.y38{bottom:268.666667pt;}
.y25f{bottom:269.786667pt;}
.y15a{bottom:272.826667pt;}
.yf4{bottom:273.306667pt;}
.y201{bottom:274.746667pt;}
.y1cb{bottom:274.906667pt;}
.y23a{bottom:275.226667pt;}
.yc4{bottom:280.026667pt;}
.ya2{bottom:281.626667pt;}
.y113{bottom:281.640000pt;}
.y103{bottom:282.586667pt;}
.y76{bottom:283.386667pt;}
.y135{bottom:284.360000pt;}
.y25e{bottom:286.426667pt;}
.y18f{bottom:288.506667pt;}
.y37{bottom:288.666667pt;}
.y200{bottom:288.826667pt;}
.y239{bottom:289.306667pt;}
.y159{bottom:290.586667pt;}
.yf3{bottom:290.906667pt;}
.y1ca{bottom:292.666667pt;}
.yc3{bottom:297.626667pt;}
.y18d{bottom:298.920000pt;}
.y36{bottom:299.066667pt;}
.ya1{bottom:299.226667pt;}
.y102{bottom:300.666667pt;}
.y133{bottom:300.840000pt;}
.y75{bottom:300.986667pt;}
.y1ff{bottom:302.906667pt;}
.y238{bottom:303.386667pt;}
.y25d{bottom:305.466667pt;}
.y158{bottom:307.066667pt;}
.yf2{bottom:308.506667pt;}
.y35{bottom:309.306667pt;}
.y1c9{bottom:310.266667pt;}
.yc2{bottom:315.226667pt;}
.y131{bottom:316.840000pt;}
.ya0{bottom:316.986667pt;}
.y237{bottom:317.466667pt;}
.y156{bottom:317.480000pt;}
.y74{bottom:318.586667pt;}
.y18b{bottom:322.920000pt;}
.y34{bottom:323.066667pt;}
.yf1{bottom:326.266667pt;}
.y25c{bottom:327.386667pt;}
.y1c8{bottom:327.866667pt;}
.y1fe{bottom:331.066667pt;}
.y236{bottom:331.546667pt;}
.y12f{bottom:332.680000pt;}
.yc1{bottom:332.986667pt;}
.y9f{bottom:334.626667pt;}
.y73{bottom:336.226667pt;}
.y33{bottom:336.866667pt;}
.y155{bottom:337.826667pt;}
.yf0{bottom:343.906667pt;}
.y1fd{bottom:345.186667pt;}
.y1c7{bottom:345.506667pt;}
.y235{bottom:345.666667pt;}
.y12e{bottom:348.546667pt;}
.y25b{bottom:349.346667pt;}
.y32{bottom:350.626667pt;}
.y9e{bottom:352.226667pt;}
.y72{bottom:353.826667pt;}
.y154{bottom:357.986667pt;}
.y1fc{bottom:359.426667pt;}
.y234{bottom:359.746667pt;}
.yef{bottom:361.506667pt;}
.y1c6{bottom:363.106667pt;}
.y12c{bottom:364.386667pt;}
.y31{bottom:364.546667pt;}
.yc0{bottom:368.226667pt;}
.y9d{bottom:369.826667pt;}
.y87{bottom:371.266667pt;}
.y71{bottom:371.586667pt;}
.y18a{bottom:372.386667pt;}
.y1fb{bottom:373.506667pt;}
.y233{bottom:373.986667pt;}
.y30{bottom:378.306667pt;}
.y153{bottom:378.626667pt;}
.yee{bottom:379.106667pt;}
.y1c5{bottom:380.546667pt;}
.y12a{bottom:380.866667pt;}
.ybf{bottom:385.826667pt;}
.y9c{bottom:387.426667pt;}
.y1fa{bottom:387.586667pt;}
.y232{bottom:388.066667pt;}
.y86{bottom:388.866667pt;}
.y70{bottom:389.186667pt;}
.y2f{bottom:392.066667pt;}
.y25a{bottom:393.026667pt;}
.y189{bottom:393.986667pt;}
.yed{bottom:396.706667pt;}
.y152{bottom:398.946667pt;}
.y1c4{bottom:400.386667pt;}
.y231{bottom:402.146667pt;}
.y1f9{bottom:402.786667pt;}
.y129{bottom:402.946667pt;}
.ybe{bottom:403.426667pt;}
.y9b{bottom:405.186667pt;}
.y2e{bottom:405.826667pt;}
.y6f{bottom:406.786667pt;}
.yec{bottom:414.466667pt;}
.y259{bottom:414.946667pt;}
.y188{bottom:415.746667pt;}
.y230{bottom:416.226667pt;}
.y151{bottom:419.106667pt;}
.y2d{bottom:419.746667pt;}
.y1f8{bottom:420.066667pt;}
.ybd{bottom:421.186667pt;}
.y128{bottom:421.346667pt;}
.y1c3{bottom:421.986667pt;}
.y9a{bottom:422.786667pt;}
.y6e{bottom:424.386667pt;}
.y22f{bottom:430.306667pt;}
.yeb{bottom:432.066667pt;}
.y1c1{bottom:432.386667pt;}
.y2c{bottom:433.506667pt;}
.y258{bottom:436.866667pt;}
.y187{bottom:437.506667pt;}
.ybc{bottom:438.786667pt;}
.y14f{bottom:439.746667pt;}
.y1f7{bottom:440.066667pt;}
.y99{bottom:440.386667pt;}
.y127{bottom:440.546667pt;}
.y85{bottom:441.666667pt;}
.y6d{bottom:441.986667pt;}
.y22e{bottom:444.386667pt;}
.y2b{bottom:447.266667pt;}
.yea{bottom:449.666667pt;}
.y126{bottom:451.106667pt;}
.ybb{bottom:456.386667pt;}
.y98{bottom:457.986667pt;}
.y22d{bottom:458.626667pt;}
.y257{bottom:458.786667pt;}
.y185{bottom:459.266667pt;}
.y84{bottom:459.426667pt;}
.y6c{bottom:459.746667pt;}
.y14d{bottom:460.066667pt;}
.y1f6{bottom:460.546667pt;}
.y2a{bottom:461.026667pt;}
.ye9{bottom:467.266667pt;}
.y125{bottom:470.786667pt;}
.y22c{bottom:472.706667pt;}
.yba{bottom:473.986667pt;}
.y29{bottom:474.946667pt;}
.y97{bottom:475.586667pt;}
.y1f5{bottom:475.906667pt;}
.y83{bottom:477.026667pt;}
.y6b{bottom:477.346667pt;}
.y14b{bottom:480.386667pt;}
.y256{bottom:480.706667pt;}
.y183{bottom:481.026667pt;}
.ye8{bottom:484.866667pt;}
.y22b{bottom:486.786667pt;}
.y28{bottom:488.706667pt;}
.y1bd{bottom:489.026667pt;}
.y124{bottom:490.466667pt;}
.y1f4{bottom:491.266667pt;}
.yb9{bottom:491.586667pt;}
.y96{bottom:493.346667pt;}
.y6a{bottom:494.946667pt;}
.y14a{bottom:499.746667pt;}
.y22a{bottom:500.866667pt;}
.y27{bottom:502.466667pt;}
.ye7{bottom:502.626667pt;}
.y1f3{bottom:506.626667pt;}
.yb8{bottom:509.506667pt;}
.y122{bottom:510.306667pt;}
.y1bb{bottom:510.466667pt;}
.y95{bottom:510.946667pt;}
.y69{bottom:512.546667pt;}
.y229{bottom:514.946667pt;}
.y26{bottom:516.226667pt;}
.y148{bottom:519.746667pt;}
.ye6{bottom:520.226667pt;}
.y1f2{bottom:521.666667pt;}
.y255{bottom:524.546667pt;}
.yb7{bottom:527.266667pt;}
.y94{bottom:528.546667pt;}
.y228{bottom:529.026667pt;}
.y121{bottom:529.986667pt;}
.y25{bottom:530.146667pt;}
.y1b9{bottom:535.106667pt;}
.y181{bottom:537.346667pt;}
.ye5{bottom:537.826667pt;}
.y227{bottom:543.293333pt;}
.y24{bottom:543.933333pt;}
.yb6{bottom:545.053333pt;}
.y93{bottom:546.173333pt;}
.y254{bottom:546.493333pt;}
.y68{bottom:547.933333pt;}
.y120{bottom:549.693333pt;}
.y1f1{bottom:552.573333pt;}
.ye4{bottom:555.453333pt;}
.y180{bottom:555.613333pt;}
.y226{bottom:557.373333pt;}
.y23{bottom:557.693333pt;}
.y168{bottom:557.853333pt;}
.y110{bottom:558.333333pt;}
.y1b8{bottom:560.573333pt;}
.yb5{bottom:561.853333pt;}
.y92{bottom:563.773333pt;}
.yb4{bottom:564.573333pt;}
.y67{bottom:565.533333pt;}
.y1f0{bottom:567.613333pt;}
.y253{bottom:568.413333pt;}
.y11e{bottom:568.573333pt;}
.ye3{bottom:570.813333pt;}
.y22{bottom:571.453333pt;}
.ye2{bottom:573.533333pt;}
.y1b7{bottom:579.453333pt;}
.y91{bottom:581.533333pt;}
.yb3{bottom:582.493333pt;}
.y66{bottom:583.133333pt;}
.y1ef{bottom:583.293333pt;}
.y21{bottom:585.373333pt;}
.y225{bottom:585.533333pt;}
.y17f{bottom:586.493333pt;}
.y11c{bottom:589.053333pt;}
.y252{bottom:590.333333pt;}
.ye1{bottom:591.453333pt;}
.y1b6{bottom:596.413333pt;}
.y1ee{bottom:598.653333pt;}
.y90{bottom:598.813333pt;}
.y20{bottom:599.133333pt;}
.y224{bottom:599.613333pt;}
.yb2{bottom:600.093333pt;}
.y65{bottom:600.733333pt;}
.y17e{bottom:602.333333pt;}
.ye0{bottom:609.053333pt;}
.y251{bottom:612.093333pt;}
.y1f{bottom:612.893333pt;}
.y1b5{bottom:613.373333pt;}
.y223{bottom:613.693333pt;}
.y1ed{bottom:614.013333pt;}
.y11b{bottom:614.813333pt;}
.y8f{bottom:616.413333pt;}
.yb1{bottom:618.173333pt;}
.y64{bottom:618.333333pt;}
.yde{bottom:625.053333pt;}
.ydd{bottom:627.773333pt;}
.y1ec{bottom:629.213333pt;}
.y1b4{bottom:630.333333pt;}
.y8e{bottom:633.213333pt;}
.y11a{bottom:633.373333pt;}
.y250{bottom:634.013333pt;}
.y1e{bottom:634.493333pt;}
.ydf{bottom:634.653333pt;}
.y63{bottom:636.093333pt;}
.y222{bottom:642.013333pt;}
.y1eb{bottom:644.573333pt;}
.y1b3{bottom:647.293333pt;}
.y8d{bottom:647.933333pt;}
.ydc{bottom:648.733333pt;}
.y17d{bottom:650.653333pt;}
.y119{bottom:653.373333pt;}
.y62{bottom:653.693333pt;}
.y1d{bottom:655.613333pt;}
.y24f{bottom:655.933333pt;}
.y221{bottom:656.093333pt;}
.y1ea{bottom:659.933333pt;}
.y8c{bottom:663.933333pt;}
.y1b2{bottom:664.253333pt;}
.ydb{bottom:666.333333pt;}
.y17c{bottom:666.493333pt;}
.y220{bottom:670.173333pt;}
.y1c{bottom:670.813333pt;}
.y61{bottom:671.293333pt;}
.y1e9{bottom:675.293333pt;}
.y8b{bottom:677.053333pt;}
.y24e{bottom:677.853333pt;}
.y1b{bottom:679.293333pt;}
.y1b0{bottom:681.053333pt;}
.y17b{bottom:683.613333pt;}
.yda{bottom:683.933333pt;}
.y21f{bottom:684.253333pt;}
.y101{bottom:688.573333pt;}
.y60{bottom:688.893333pt;}
.y1a{bottom:690.333333pt;}
.y1e8{bottom:690.653333pt;}
.y1ae{bottom:698.013333pt;}
.y21e{bottom:698.333333pt;}
.y17a{bottom:699.453333pt;}
.y24d{bottom:699.773333pt;}
.yd9{bottom:701.533333pt;}
.y19{bottom:704.093333pt;}
.y1e7{bottom:706.013333pt;}
.y100{bottom:706.173333pt;}
.y5f{bottom:706.493333pt;}
.y21d{bottom:712.413333pt;}
.y1ad{bottom:714.973333pt;}
.y179{bottom:715.453333pt;}
.y18{bottom:718.173333pt;}
.yd8{bottom:719.133333pt;}
.y1e6{bottom:720.893333pt;}
.y24c{bottom:721.693333pt;}
.y118{bottom:723.933333pt;}
.y5e{bottom:724.253333pt;}
.y21c{bottom:726.653333pt;}
.y178{bottom:731.933333pt;}
.y17{bottom:732.253333pt;}
.y1e5{bottom:736.253333pt;}
.yd7{bottom:736.893333pt;}
.y1ac{bottom:739.453333pt;}
.y21b{bottom:740.733333pt;}
.y117{bottom:741.533333pt;}
.y16{bottom:741.693333pt;}
.y5d{bottom:741.853333pt;}
.y24b{bottom:743.613333pt;}
.y176{bottom:747.773333pt;}
.y1e4{bottom:751.973333pt;}
.yd6{bottom:754.533333pt;}
.y21a{bottom:754.853333pt;}
.y1ab{bottom:757.413333pt;}
.y116{bottom:759.173333pt;}
.y5c{bottom:759.493333pt;}
.y15{bottom:760.453333pt;}
.y175{bottom:763.653333pt;}
.y24a{bottom:764.293333pt;}
.y1e3{bottom:767.333333pt;}
.y219{bottom:768.933333pt;}
.y14{bottom:769.573333pt;}
.yd5{bottom:772.133333pt;}
.y1aa{bottom:775.333333pt;}
.y115{bottom:776.773333pt;}
.y5b{bottom:777.093333pt;}
.y174{bottom:780.293333pt;}
.y249{bottom:780.613333pt;}
.y1e2{bottom:782.693333pt;}
.y218{bottom:783.013333pt;}
.y13{bottom:783.493333pt;}
.y1a9{bottom:785.733333pt;}
.yd4{bottom:789.733333pt;}
.y5a{bottom:794.693333pt;}
.y173{bottom:796.133333pt;}
.y217{bottom:797.093333pt;}
.y1e1{bottom:798.053333pt;}
.y12{bottom:803.173333pt;}
.yd2{bottom:806.213333pt;}
.y1a8{bottom:806.533333pt;}
.yd1{bottom:808.933333pt;}
.y216{bottom:811.333333pt;}
.y172{bottom:811.973333pt;}
.y59{bottom:812.453333pt;}
.y1e0{bottom:813.253333pt;}
.yd3{bottom:816.133333pt;}
.y11{bottom:822.213333pt;}
.y215{bottom:825.413333pt;}
.y1a7{bottom:827.333333pt;}
.y171{bottom:828.453333pt;}
.y1df{bottom:828.613333pt;}
.y58{bottom:830.053333pt;}
.y214{bottom:839.493333pt;}
.y1de{bottom:843.973333pt;}
.y16f{bottom:844.293333pt;}
.y57{bottom:847.653333pt;}
.y1a6{bottom:848.133333pt;}
.y213{bottom:853.573333pt;}
.y10{bottom:855.973333pt;}
.y1dd{bottom:859.333333pt;}
.y16e{bottom:860.293333pt;}
.y56{bottom:865.253333pt;}
.y212{bottom:867.653333pt;}
.y1a4{bottom:868.933333pt;}
.y1dc{bottom:874.693333pt;}
.y16c{bottom:876.773333pt;}
.y211{bottom:881.733333pt;}
.y55{bottom:882.853333pt;}
.yf{bottom:887.173333pt;}
.y1a3{bottom:889.733333pt;}
.y210{bottom:895.973333pt;}
.ye{bottom:899.973333pt;}
.y8a{bottom:900.293333pt;}
.y54{bottom:900.613333pt;}
.y16b{bottom:905.253333pt;}
.y4d{bottom:907.493333pt;}
.y5{bottom:907.813333pt;}
.y20f{bottom:910.053333pt;}
.y1a2{bottom:910.213333pt;}
.yd{bottom:912.133333pt;}
.yb0{bottom:917.893333pt;}
.y53{bottom:918.213333pt;}
.y16a{bottom:920.613333pt;}
.y20e{bottom:924.133333pt;}
.yc{bottom:926.053333pt;}
.y1a1{bottom:932.293333pt;}
.yaf{bottom:935.493333pt;}
.y1db{bottom:935.653333pt;}
.y52{bottom:935.813333pt;}
.y169{bottom:935.973333pt;}
.y20d{bottom:938.213333pt;}
.yb{bottom:940.293333pt;}
.y1a0{bottom:945.573333pt;}
.ya{bottom:960.960000pt;}
.y89{bottom:965.760000pt;}
.y9{bottom:983.680000pt;}
.y50{bottom:989.920000pt;}
.y88{bottom:997.920000pt;}
.h49{height:10.965000pt;}
.h33{height:15.826667pt;}
.h42{height:15.840000pt;}
.h34{height:15.858667pt;}
.h41{height:15.860000pt;}
.h32{height:15.986667pt;}
.h28{height:16.000000pt;}
.h2a{height:16.146667pt;}
.h29{height:16.158667pt;}
.h4d{height:16.160000pt;}
.h4f{height:16.800000pt;}
.h4e{height:16.960000pt;}
.h4c{height:18.240000pt;}
.h36{height:18.386667pt;}
.h1a{height:18.866667pt;}
.h2e{height:18.880000pt;}
.h3b{height:19.346667pt;}
.h30{height:19.666667pt;}
.h2c{height:19.680000pt;}
.h2f{height:19.706667pt;}
.h31{height:19.826667pt;}
.h2d{height:19.840000pt;}
.h3d{height:20.146667pt;}
.h3c{height:20.306667pt;}
.h3e{height:20.338667pt;}
.h44{height:20.626667pt;}
.h11{height:20.728125pt;}
.h4a{height:20.786667pt;}
.h46{height:21.586667pt;}
.h45{height:21.746667pt;}
.h3a{height:21.906667pt;}
.h48{height:23.346667pt;}
.h51{height:23.986667pt;}
.h40{height:24.466667pt;}
.h50{height:24.666667pt;}
.h53{height:26.066667pt;}
.h10{height:26.368125pt;}
.h12{height:26.381250pt;}
.h47{height:27.058667pt;}
.h43{height:28.626667pt;}
.h52{height:28.946667pt;}
.h56{height:31.008437pt;}
.h37{height:31.186667pt;}
.h25{height:31.283750pt;}
.h17{height:31.406250pt;}
.h15{height:34.710938pt;}
.hf{height:36.413125pt;}
.h19{height:36.431250pt;}
.h18{height:37.410000pt;}
.h1f{height:38.413438pt;}
.ha{height:42.063437pt;}
.h1{height:42.084375pt;}
.hb{height:43.215000pt;}
.h1d{height:44.768125pt;}
.h27{height:46.688125pt;}
.h14{height:47.109375pt;}
.h16{height:48.375000pt;}
.h57{height:49.336436pt;}
.h4{height:49.852500pt;}
.h9{height:52.134375pt;}
.h35{height:52.526250pt;}
.h1b{height:52.834688pt;}
.hd{height:53.535000pt;}
.h55{height:54.598989pt;}
.h24{height:55.648125pt;}
.h26{height:57.568125pt;}
.he{height:58.238750pt;}
.h1c{height:58.563750pt;}
.h20{height:59.150000pt;}
.h4b{height:59.340000pt;}
.h58{height:60.288750pt;}
.h21{height:62.643750pt;}
.h1e{height:63.014375pt;}
.h7{height:63.399375pt;}
.h2b{height:64.500000pt;}
.h54{height:75.465000pt;}
.h38{height:76.933125pt;}
.h23{height:78.993042pt;}
.h39{height:80.389375pt;}
.h3f{height:85.785000pt;}
.h8{height:86.687500pt;}
.h3{height:87.826667pt;}
.h22{height:91.422417pt;}
.h13{height:94.218750pt;}
.h5{height:94.266667pt;}
.h2{height:96.750000pt;}
.hc{height:118.035000pt;}
.h6{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w5{width:44.306667pt;}
.w4{width:46.240000pt;}
.w3{width:51.200000pt;}
.w15{width:73.618667pt;}
.w2{width:73.746667pt;}
.w29{width:77.618667pt;}
.w27{width:80.512000pt;}
.w9{width:82.578667pt;}
.wa{width:85.106667pt;}
.w8{width:86.226667pt;}
.w24{width:86.738667pt;}
.w16{width:89.906667pt;}
.w18{width:92.946667pt;}
.w1c{width:94.098667pt;}
.w23{width:95.026667pt;}
.w7{width:95.392000pt;}
.w22{width:96.672000pt;}
.w2c{width:96.786667pt;}
.w2b{width:96.832000pt;}
.wd{width:97.586667pt;}
.w2a{width:98.066667pt;}
.w25{width:98.546667pt;}
.w13{width:99.552000pt;}
.we{width:100.338667pt;}
.wc{width:101.632000pt;}
.w14{width:105.426667pt;}
.wf{width:108.146667pt;}
.w1d{width:112.466667pt;}
.w1a{width:112.960000pt;}
.w28{width:113.106667pt;}
.w1f{width:122.432000pt;}
.w1e{width:131.680000pt;}
.w1b{width:141.146667pt;}
.w19{width:218.945333pt;}
.w17{width:222.146667pt;}
.wb{width:269.985333pt;}
.w21{width:300.065333pt;}
.w12{width:309.985333pt;}
.w26{width:310.465333pt;}
.w6{width:328.865333pt;}
.w2e{width:369.346667pt;}
.w11{width:407.746667pt;}
.w1{width:676.120000pt;}
.w10{width:677.720000pt;}
.w20{width:679.640000pt;}
.w2d{width:679.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:7.198667pt;}
.x3{left:9.598667pt;}
.x18{left:12.800000pt;}
.x4b{left:18.240000pt;}
.x54{left:20.786667pt;}
.x39{left:23.040000pt;}
.x2e{left:24.466667pt;}
.x2c{left:26.400000pt;}
.x38{left:28.160000pt;}
.x32{left:29.426667pt;}
.x30{left:30.546667pt;}
.x33{left:32.146667pt;}
.x34{left:33.600000pt;}
.x36{left:35.186667pt;}
.x47{left:36.320000pt;}
.x37{left:37.280000pt;}
.x35{left:38.720000pt;}
.x3f{left:40.320000pt;}
.x49{left:44.960000pt;}
.x3d{left:46.226667pt;}
.x59{left:48.960000pt;}
.x40{left:50.226667pt;}
.x48{left:52.626667pt;}
.x41{left:54.080000pt;}
.x1{left:72.000000pt;}
.x2{left:72.961333pt;}
.xd{left:76.320000pt;}
.xa{left:91.232000pt;}
.x1b{left:96.032000pt;}
.x11{left:97.792000pt;}
.x22{left:101.792000pt;}
.xc{left:109.312000pt;}
.x28{left:116.832000pt;}
.x23{left:132.672000pt;}
.x5b{left:140.666667pt;}
.x15{left:144.026667pt;}
.x24{left:153.626667pt;}
.xb{left:154.746667pt;}
.x5a{left:168.186667pt;}
.xe{left:171.066667pt;}
.x25{left:174.426667pt;}
.x13{left:177.626667pt;}
.x42{left:190.266667pt;}
.x26{left:195.386667pt;}
.x27{left:216.346667pt;}
.xf{left:224.666667pt;}
.x12{left:248.506667pt;}
.x10{left:270.466667pt;}
.x4c{left:290.946667pt;}
.x5{left:298.786667pt;}
.x1d{left:309.186667pt;}
.x7{left:310.626667pt;}
.x4{left:328.706667pt;}
.x3a{left:341.986667pt;}
.x29{left:348.866667pt;}
.x8{left:350.466667pt;}
.x19{left:371.586667pt;}
.x14{left:375.906667pt;}
.x6{left:376.866667pt;}
.x43{left:381.986667pt;}
.x1e{left:388.066667pt;}
.x1a{left:401.026667pt;}
.x4d{left:403.906667pt;}
.x9{left:411.106667pt;}
.x50{left:422.626667pt;}
.x16{left:434.626667pt;}
.x3b{left:443.626667pt;}
.x1c{left:458.653333pt;}
.x55{left:462.986667pt;}
.x1f{left:464.413333pt;}
.x51{left:468.746667pt;}
.x20{left:471.773333pt;}
.x58{left:479.306667pt;}
.x44{left:481.546667pt;}
.x2d{left:496.266667pt;}
.x3c{left:541.226667pt;}
.x4e{left:545.066667pt;}
.x21{left:557.853333pt;}
.x52{left:563.786667pt;}
.x56{left:576.106667pt;}
.x2f{left:582.506667pt;}
.x45{left:586.986667pt;}
.x4f{left:639.173333pt;}
.x3e{left:641.573333pt;}
.x53{left:650.533333pt;}
.x57{left:653.733333pt;}
.x4a{left:656.773333pt;}
.x46{left:660.613333pt;}
.x31{left:665.093333pt;}
.x17{left:677.093333pt;}
.x2a{left:716.293333pt;}
}




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