
    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_289da9c518b850b858e83b6b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_db5d9e05db6b4e7d635965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_014e85c56556294279cf5f3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3dccaee5bbbe08c85085fbdb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8a704617d3207f5f2a0793f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_9b73f0fe8828b43341dd7512.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.989258;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);}
.ve{vertical-align:-89.280000px;}
.vd{vertical-align:-36.000000px;}
.v17{vertical-align:-28.800000px;}
.v2{vertical-align:-27.360000px;}
.v11{vertical-align:-25.920000px;}
.v14{vertical-align:-24.480000px;}
.v16{vertical-align:-18.000000px;}
.v13{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.v7{vertical-align:-5.760000px;}
.v12{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.880000px;}
.v8{vertical-align:5.760000px;}
.vb{vertical-align:14.400000px;}
.v15{vertical-align:18.720000px;}
.v18{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v9{vertical-align:33.120000px;}
.v10{vertical-align:46.080000px;}
.v4{vertical-align:48.240000px;}
.v5{vertical-align:54.720000px;}
.va{vertical-align:102.960000px;}
.v6{vertical-align:135.360000px;}
.vc{vertical-align:154.080000px;}
.ls29{letter-spacing:-1.656000px;}
.ls28{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.672000px;}
.lsa{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.432000px;}
.ls2e{letter-spacing:-0.413400px;}
.ls26{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.045360px;}
.ls2{letter-spacing:-0.028080px;}
.ls1{letter-spacing:-0.009360px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.012960px;}
.ls2c{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.341280px;}
.ls15{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.414720px;}
.ls2a{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.864000px;}
.ls1e{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.440000px;}
.ls25{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.801520px;}
.ls4{letter-spacing:4.140000px;}
.ls1b{letter-spacing:7.200000px;}
.ls10{letter-spacing:8.681520px;}
.lsf{letter-spacing:9.072000px;}
.ls16{letter-spacing:11.232000px;}
.ls23{letter-spacing:11.952000px;}
.ls21{letter-spacing:19.481520px;}
.ls17{letter-spacing:19.897920px;}
.ls19{letter-spacing:20.081520px;}
.ls1d{letter-spacing:24.819120px;}
.ls22{letter-spacing:27.272880px;}
.ls1f{letter-spacing:27.992880px;}
.lse{letter-spacing:28.001520px;}
.ls1a{letter-spacing:33.152880px;}
.ls30{letter-spacing:33.984000px;}
.ls18{letter-spacing:75.240000px;}
.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;}
}
.ws0{word-spacing:-21.050640px;}
.ws2{word-spacing:-21.031920px;}
.ws1b{word-spacing:-19.440000px;}
.ws12{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.568000px;}
.ws18{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.344000px;}
.ws11{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.552000px;}
.ws16{word-spacing:-15.480000px;}
.ws21{word-spacing:-15.300000px;}
.ws20{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.886720px;}
.ws1c{word-spacing:-14.526600px;}
.ws5{word-spacing:-12.329400px;}
.ws13{word-spacing:-12.060000px;}
.ws7{word-spacing:-12.014640px;}
.wsb{word-spacing:-11.836200px;}
.ws6{word-spacing:-11.609400px;}
.wsc{word-spacing:-11.388000px;}
.ws1f{word-spacing:-9.732960px;}
.ws1d{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:6.552000px;}
.ws17{word-spacing:6.840000px;}
.ws14{word-spacing:19.656000px;}
._15{margin-left:-6.840000px;}
._17{margin-left:-5.328000px;}
._c{margin-left:-4.313760px;}
._4{margin-left:-3.096000px;}
._1d{margin-left:-2.095920px;}
._1{margin-left:-1.095120px;}
._0{width:1.053360px;}
._10{width:2.232000px;}
._6{width:3.255120px;}
._5{width:4.584000px;}
._b{width:6.000240px;}
._a{width:7.987440px;}
._2{width:9.013680px;}
._7{width:10.656000px;}
._9{width:12.576240px;}
._8{width:13.699440px;}
._3{width:15.331680px;}
._13{width:16.684320px;}
._11{width:19.032000px;}
._d{width:20.079120px;}
._12{width:22.119120px;}
._e{width:23.328000px;}
._f{width:24.408000px;}
._1e{width:25.495920px;}
._19{width:26.727120px;}
._18{width:28.080000px;}
._1a{width:32.559120px;}
._14{width:43.704000px;}
._1b{width:45.185760px;}
._16{width:191.316000px;}
._1c{width:843.496080px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,46,103);}
.fc1{color:rgb(22,54,93);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fsa{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y26{bottom:-11.349000px;}
.y0{bottom:0.000000px;}
.y278{bottom:4.140000px;}
.y26e{bottom:4.500000px;}
.y25d{bottom:5.925000px;}
.y24e{bottom:5.940000px;}
.y261{bottom:6.105000px;}
.y258{bottom:6.120000px;}
.y265{bottom:6.150000px;}
.y255{bottom:6.285000px;}
.y25b{bottom:6.300000px;}
.y263{bottom:6.465000px;}
.y259{bottom:6.480000px;}
.y266{bottom:6.510000px;}
.y262{bottom:7.185000px;}
.y142{bottom:7.365000px;}
.y131{bottom:7.380000px;}
.y135{bottom:7.410000px;}
.y144{bottom:7.545000px;}
.y12f{bottom:7.560000px;}
.y1c4{bottom:7.575000px;}
.y25{bottom:8.631000px;}
.y109{bottom:11.160000px;}
.y70{bottom:13.485000px;}
.y63{bottom:13.500000px;}
.y26c{bottom:14.760000px;}
.y252{bottom:14.925000px;}
.y21{bottom:15.675000px;}
.y6c{bottom:16.365000px;}
.y74{bottom:16.380000px;}
.y6b{bottom:16.545000px;}
.y73{bottom:16.560000px;}
.y1bf{bottom:16.740000px;}
.y1f{bottom:17.295000px;}
.y1cd{bottom:19.245000px;}
.y1c6{bottom:19.260000px;}
.y1ca{bottom:19.290000px;}
.y1c1{bottom:19.440000px;}
.y2d{bottom:22.005000px;}
.y51{bottom:22.320000px;}
.y4a{bottom:22.500000px;}
.y53{bottom:22.545000px;}
.y5f{bottom:23.580000px;}
.y5b{bottom:23.940000px;}
.y250{bottom:24.645000px;}
.y256{bottom:25.005000px;}
.y26d{bottom:25.200000px;}
.y4d{bottom:29.520000px;}
.y43{bottom:29.715000px;}
.y1ce{bottom:31.125000px;}
.y1c7{bottom:31.140000px;}
.y1cb{bottom:31.170000px;}
.y1c2{bottom:31.320000px;}
.y254{bottom:31.350000px;}
.y24{bottom:32.745000px;}
.y251{bottom:33.510000px;}
.y71{bottom:34.005000px;}
.y77{bottom:34.020000px;}
.y6f{bottom:34.185000px;}
.y62{bottom:34.200000px;}
.y83{bottom:34.230000px;}
.y7c{bottom:34.245000px;}
.y253{bottom:45.930000px;}
.y58{bottom:47.520000px;}
.y59{bottom:50.220000px;}
.y8a{bottom:54.705000px;}
.y64{bottom:54.720000px;}
.y89{bottom:54.885000px;}
.y61{bottom:54.900000px;}
.y82{bottom:54.930000px;}
.y7b{bottom:54.945000px;}
.y23{bottom:56.865000px;}
.y30{bottom:59.976000px;}
.y2c{bottom:63.045000px;}
.y1e{bottom:64.095000px;}
.y24a{bottom:74.916000px;}
.y67{bottom:75.420000px;}
.y84{bottom:75.450000px;}
.y7d{bottom:75.465000px;}
.y66{bottom:75.600000px;}
.y42{bottom:75.615000px;}
.y81{bottom:75.630000px;}
.y7a{bottom:75.645000px;}
.y2f{bottom:96.876000px;}
.y2b{bottom:98.865000px;}
.y249{bottom:111.816000px;}
.y1ad{bottom:115.776000px;}
.y12d{bottom:116.856000px;}
.y180{bottom:117.036000px;}
.y162{bottom:117.576000px;}
.y41{bottom:121.695000px;}
.y198{bottom:121.896000px;}
.y8c{bottom:122.256000px;}
.y16e{bottom:123.876000px;}
.y1aa{bottom:125.856000px;}
.y189{bottom:128.736000px;}
.y1d2{bottom:130.176000px;}
.y1ac{bottom:133.236000px;}
.y2a{bottom:134.505000px;}
.y22{bottom:135.585000px;}
.y14a{bottom:135.756000px;}
.ycc{bottom:138.276000px;}
.y6e{bottom:138.825000px;}
.y197{bottom:139.356000px;}
.y21d{bottom:140.256000px;}
.y12c{bottom:143.676000px;}
.y17f{bottom:144.036000px;}
.y161{bottom:144.576000px;}
.y9f{bottom:146.196000px;}
.y2a2{bottom:147.456000px;}
.y16d{bottom:150.690000px;}
.ye1{bottom:152.130000px;}
.y1a9{bottom:152.670000px;}
.y1f4{bottom:152.850000px;}
.y108{bottom:155.370000px;}
.y188{bottom:155.550000px;}
.y23a{bottom:155.910000px;}
.y196{bottom:156.630000px;}
.y149{bottom:158.070000px;}
.yb2{bottom:161.310000px;}
.y21c{bottom:162.930000px;}
.y8b{bottom:165.090000px;}
.yf6{bottom:166.170000px;}
.y3f{bottom:167.760000px;}
.y1d1{bottom:168.150000px;}
.y29{bottom:170.145000px;}
.y160{bottom:171.390000px;}
.y1ab{bottom:171.930000px;}
.y205{bottom:176.970000px;}
.y16c{bottom:177.690000px;}
.y239{bottom:178.590000px;}
.ye0{bottom:178.950000px;}
.y1a8{bottom:179.670000px;}
.y1f3{bottom:179.850000px;}
.y148{bottom:180.570000px;}
.y9e{bottom:180.750000px;}
.y107{bottom:182.190000px;}
.y187{bottom:182.550000px;}
.y88{bottom:184.545000px;}
.y195{bottom:185.250000px;}
.y1d0{bottom:185.610000px;}
.y17e{bottom:185.970000px;}
.y1c{bottom:186.510000px;}
.y12b{bottom:187.050000px;}
.y146{bottom:187.245000px;}
.y6d{bottom:189.225000px;}
.y47{bottom:190.650000px;}
.yf5{bottom:191.910000px;}
.ycb{bottom:192.090000px;}
.y15f{bottom:198.210000px;}
.y2a1{bottom:198.570000px;}
.yb1{bottom:198.750000px;}
.y147{bottom:199.830000px;}
.y21b{bottom:200.730000px;}
.y1cf{bottom:202.890000px;}
.y204{bottom:203.970000px;}
.y16b{bottom:204.510000px;}
.ydf{bottom:205.950000px;}
.y28{bottom:205.965000px;}
.y1a7{bottom:206.490000px;}
.y1f2{bottom:206.670000px;}
.y145{bottom:211.725000px;}
.y17d{bottom:212.790000px;}
.y238{bottom:216.390000px;}
.y1cc{bottom:217.125000px;}
.y186{bottom:217.470000px;}
.yca{bottom:218.910000px;}
.y6a{bottom:221.985000px;}
.y1b{bottom:222.150000px;}
.y2a0{bottom:222.690000px;}
.y21a{bottom:223.410000px;}
.y106{bottom:224.130000px;}
.y15e{bottom:225.210000px;}
.y46{bottom:229.890000px;}
.y203{bottom:230.790000px;}
.yde{bottom:232.770000px;}
.y12a{bottom:233.490000px;}
.y1f1{bottom:233.670000px;}
.y185{bottom:234.930000px;}
.yf4{bottom:235.650000px;}
.y143{bottom:236.205000px;}
.y237{bottom:239.250000px;}
.y17c{bottom:239.790000px;}
.y219{bottom:246.270000px;}
.y16a{bottom:246.450000px;}
.y105{bottom:251.130000px;}
.y15d{bottom:252.030000px;}
.y87{bottom:255.645000px;}
.y202{bottom:257.790000px;}
.y1a{bottom:257.970000px;}
.ydd{bottom:259.590000px;}
.y1a6{bottom:260.310000px;}
.y1f0{bottom:260.490000px;}
.yc9{bottom:260.850000px;}
.y141{bottom:260.865000px;}
.yf3{bottom:262.650000px;}
.y29f{bottom:264.450000px;}
.y1c9{bottom:265.545000px;}
.y17b{bottom:266.610000px;}
.y45{bottom:268.950000px;}
.y69{bottom:276.915000px;}
.y104{bottom:277.995000px;}
.y15c{bottom:279.075000px;}
.y129{bottom:279.975000px;}
.y184{bottom:280.695000px;}
.y169{bottom:281.415000px;}
.y201{bottom:284.655000px;}
.y218{bottom:284.835000px;}
.y140{bottom:285.375000px;}
.ydc{bottom:286.635000px;}
.y1a5{bottom:287.355000px;}
.yc8{bottom:287.895000px;}
.y29e{bottom:288.255000px;}
.yf2{bottom:289.515000px;}
.y19{bottom:293.655000px;}
.y20{bottom:295.980000px;}
.y168{bottom:298.875000px;}
.y236{bottom:299.775000px;}
.y1ef{bottom:302.475000px;}
.y103{bottom:304.995000px;}
.y15b{bottom:305.895000px;}
.y44{bottom:308.955000px;}
.y13f{bottom:310.035000px;}
.y200{bottom:311.655000px;}
.ydb{bottom:313.455000px;}
.y1c8{bottom:313.815000px;}
.y1a4{bottom:314.175000px;}
.yc7{bottom:314.715000px;}
.y29d{bottom:315.615000px;}
.y68{bottom:315.795000px;}
.y167{bottom:316.155000px;}
.yf1{bottom:316.515000px;}
.y17a{bottom:320.475000px;}
.y269{bottom:320.655000px;}
.y235{bottom:322.455000px;}
.y128{bottom:324.795000px;}
.y217{bottom:326.415000px;}
.y18{bottom:329.295000px;}
.y1ee{bottom:329.475000px;}
.y40{bottom:330.720000px;}
.y3e{bottom:330.735000px;}
.y65{bottom:332.535000px;}
.y15a{bottom:332.895000px;}
.y13e{bottom:334.515000px;}
.y29c{bottom:339.735000px;}
.yda{bottom:340.455000px;}
.y1a3{bottom:341.175000px;}
.yc6{bottom:341.715000px;}
.yf0{bottom:343.335000px;}
.y268{bottom:344.055000px;}
.y100{bottom:346.395000px;}
.y86{bottom:347.475000px;}
.y127{bottom:351.795000px;}
.y1ff{bottom:353.595000px;}
.y1ed{bottom:356.295000px;}
.yff{bottom:358.455000px;}
.y13d{bottom:359.175000px;}
.y159{bottom:359.715000px;}
.y234{bottom:360.255000px;}
.y1c5{bottom:362.235000px;}
.y179{bottom:362.415000px;}
.y17{bottom:365.115000px;}
.yd9{bottom:367.275000px;}
.y1a2{bottom:367.995000px;}
.yc5{bottom:368.535000px;}
.y29b{bottom:369.975000px;}
.yef{bottom:370.335000px;}
.y216{bottom:371.235000px;}
.y101{bottom:372.135000px;}
.y126{bottom:378.615000px;}
.y1fe{bottom:380.415000px;}
.y102{bottom:380.775000px;}
.y1ec{bottom:383.115000px;}
.y13c{bottom:383.655000px;}
.y158{bottom:386.715000px;}
.y178{bottom:389.235000px;}
.y267{bottom:390.495000px;}
.yd8{bottom:394.275000px;}
.y1a1{bottom:394.995000px;}
.yc4{bottom:395.355000px;}
.y215{bottom:398.235000px;}
.y29a{bottom:399.855000px;}
.y16{bottom:400.755000px;}
.y125{bottom:405.615000px;}
.y247{bottom:405.795000px;}
.y1fd{bottom:407.415000px;}
.y13b{bottom:408.135000px;}
.y1d{bottom:408.300000px;}
.y1eb{bottom:410.115000px;}
.y1c3{bottom:410.460000px;}
.y1c0{bottom:410.475000px;}
.yee{bottom:412.275000px;}
.y157{bottom:413.535000px;}
.y264{bottom:413.715000px;}
.y177{bottom:416.235000px;}
.y299{bottom:420.555000px;}
.yfe{bottom:420.735000px;}
.y233{bottom:420.915000px;}
.y1a0{bottom:421.815000px;}
.yc3{bottom:422.355000px;}
.y60{bottom:424.335000px;}
.y214{bottom:425.055000px;}
.yd7{bottom:429.195000px;}
.y124{bottom:432.435000px;}
.y13a{bottom:432.795000px;}
.y1fc{bottom:434.235000px;}
.y15{bottom:436.395000px;}
.y1ea{bottom:436.935000px;}
.y260{bottom:436.980000px;}
.yed{bottom:439.095000px;}
.y85{bottom:439.275000px;}
.y176{bottom:443.055000px;}
.y232{bottom:443.595000px;}
.yd6{bottom:446.655000px;}
.y298{bottom:447.375000px;}
.yfd{bottom:447.735000px;}
.y19f{bottom:448.815000px;}
.yc2{bottom:449.175000px;}
.y213{bottom:452.055000px;}
.y156{bottom:455.475000px;}
.y139{bottom:457.275000px;}
.y1be{bottom:458.895000px;}
.y123{bottom:459.435000px;}
.y25f{bottom:460.185000px;}
.y1fb{bottom:461.235000px;}
.y1e9{bottom:463.935000px;}
.yec{bottom:466.095000px;}
.y246{bottom:466.455000px;}
.y297{bottom:468.075000px;}
.y175{bottom:470.055000px;}
.y14{bottom:472.215000px;}
.yfc{bottom:474.555000px;}
.y19e{bottom:475.635000px;}
.yc1{bottom:476.175000px;}
.y212{bottom:478.875000px;}
.yd5{bottom:481.395000px;}
.y138{bottom:481.935000px;}
.y155{bottom:482.475000px;}
.y25e{bottom:483.585000px;}
.y194{bottom:483.735000px;}
.y122{bottom:486.255000px;}
.y1fa{bottom:488.055000px;}
.y296{bottom:488.775000px;}
.y245{bottom:489.135000px;}
.yeb{bottom:492.915000px;}
.y5e{bottom:495.435000px;}
.y1bd{bottom:502.095000px;}
.y19d{bottom:502.635000px;}
.yc0{bottom:502.995000px;}
.y231{bottom:504.075000px;}
.y1e8{bottom:505.875000px;}
.yfb{bottom:506.235000px;}
.y137{bottom:506.415000px;}
.y25c{bottom:506.820000px;}
.y13{bottom:507.855000px;}
.y154{bottom:509.295000px;}
.y295{bottom:509.475000px;}
.y174{bottom:509.835000px;}
.y193{bottom:510.735000px;}
.y244{bottom:511.995000px;}
.y121{bottom:513.255000px;}
.yfa{bottom:518.295000px;}
.yea{bottom:519.915000px;}
.ybf{bottom:529.995000px;}
.y25a{bottom:530.025000px;}
.y294{bottom:530.175000px;}
.y136{bottom:530.895000px;}
.y80{bottom:531.075000px;}
.y1e7{bottom:532.695000px;}
.y27{bottom:536.280000px;}
.y153{bottom:536.295000px;}
.y192{bottom:537.555000px;}
.y120{bottom:540.075000px;}
.y230{bottom:541.875000px;}
.y19c{bottom:542.235000px;}
.y12{bottom:543.495000px;}
.y3d{bottom:544.575000px;}
.ye9{bottom:546.735000px;}
.y211{bottom:547.815000px;}
.y243{bottom:549.615000px;}
.y293{bottom:550.875000px;}
.y1bc{bottom:552.135000px;}
.y173{bottom:552.495000px;}
.y257{bottom:553.245000px;}
.y134{bottom:555.555000px;}
.ybe{bottom:556.845000px;}
.y5d{bottom:557.565000px;}
.y152{bottom:563.145000px;}
.y191{bottom:564.585000px;}
.y22f{bottom:564.765000px;}
.y11f{bottom:567.105000px;}
.yf9{bottom:571.965000px;}
.y242{bottom:572.505000px;}
.ye8{bottom:573.765000px;}
.y1e6{bottom:574.665000px;}
.y24f{bottom:576.480000px;}
.y292{bottom:578.085000px;}
.y1bb{bottom:578.985000px;}
.y11{bottom:579.165000px;}
.y133{bottom:580.065000px;}
.y19b{bottom:580.425000px;}
.y1f9{bottom:583.845000px;}
.y22e{bottom:587.445000px;}
.y151{bottom:590.145000px;}
.y172{bottom:590.505000px;}
.y3c{bottom:590.685000px;}
.y190{bottom:591.405000px;}
.y5c{bottom:596.265000px;}
.y19a{bottom:597.705000px;}
.ybd{bottom:598.785000px;}
.ye7{bottom:600.585000px;}
.y1e5{bottom:601.665000px;}
.y132{bottom:604.725000px;}
.y1ba{bottom:605.985000px;}
.y171{bottom:607.965000px;}
.y291{bottom:608.325000px;}
.y11e{bottom:609.045000px;}
.y241{bottom:610.305000px;}
.y1f8{bottom:610.665000px;}
.y5a{bottom:613.005000px;}
.y10{bottom:614.985000px;}
.y150{bottom:616.965000px;}
.y18f{bottom:618.405000px;}
.y183{bottom:619.485000px;}
.y9d{bottom:620.925000px;}
.y3b{bottom:621.645000px;}
.y7f{bottom:622.905000px;}
.y170{bottom:625.245000px;}
.ybc{bottom:625.785000px;}
.ye6{bottom:627.405000px;}
.y1e4{bottom:628.485000px;}
.y130{bottom:629.205000px;}
.y1b9{bottom:632.805000px;}
.y240{bottom:632.985000px;}
.y11d{bottom:635.865000px;}
.y24d{bottom:636.810000px;}
.y1f7{bottom:637.665000px;}
.y290{bottom:638.025000px;}
.yf8{bottom:640.725000px;}
.y14f{bottom:643.965000px;}
.y199{bottom:646.665000px;}
.y9c{bottom:647.745000px;}
.y22d{bottom:648.105000px;}
.yf{bottom:650.625000px;}
.y57{bottom:651.885000px;}
.ybb{bottom:652.605000px;}
.y12e{bottom:653.685000px;}
.ye5{bottom:654.405000px;}
.y1e3{bottom:655.485000px;}
.y18e{bottom:656.565000px;}
.y28f{bottom:658.725000px;}
.y1b8{bottom:659.805000px;}
.y16f{bottom:659.985000px;}
.y11c{bottom:662.865000px;}
.y3a{bottom:667.725000px;}
.y210{bottom:670.425000px;}
.y14e{bottom:670.785000px;}
.y182{bottom:671.865000px;}
.y9b{bottom:674.745000px;}
.yba{bottom:679.605000px;}
.ye4{bottom:681.225000px;}
.y1e2{bottom:682.305000px;}
.y28e{bottom:685.545000px;}
.y22c{bottom:685.725000px;}
.ye{bottom:686.265000px;}
.y1b7{bottom:686.625000px;}
.y181{bottom:689.145000px;}
.y11b{bottom:689.685000px;}
.y18d{bottom:690.045000px;}
.y23f{bottom:693.465000px;}
.yb0{bottom:694.545000px;}
.y20f{bottom:697.425000px;}
.y14d{bottom:697.785000px;}
.y9a{bottom:701.565000px;}
.y28d{bottom:706.245000px;}
.yb9{bottom:706.425000px;}
.y18c{bottom:707.505000px;}
.y22b{bottom:708.585000px;}
.y1e1{bottom:709.305000px;}
.y39{bottom:713.805000px;}
.y7e{bottom:714.705000px;}
.y24c{bottom:715.650000px;}
.ye3{bottom:716.325000px;}
.y11a{bottom:716.685000px;}
.y56{bottom:718.485000px;}
.yaf{bottom:721.545000px;}
.yd{bottom:722.085000px;}
.y166{bottom:723.345000px;}
.y20e{bottom:724.245000px;}
.y18b{bottom:724.785000px;}
.y1b6{bottom:724.965000px;}
.y28c{bottom:726.945000px;}
.y99{bottom:728.565000px;}
.y22a{bottom:731.265000px;}
.y14c{bottom:732.705000px;}
.yb8{bottom:733.425000px;}
.y1e0{bottom:736.125000px;}
.y38{bottom:744.765000px;}
.y165{bottom:745.845000px;}
.y24b{bottom:746.070000px;}
.y28b{bottom:747.645000px;}
.yae{bottom:748.365000px;}
.ye2{bottom:750.705000px;}
.y20d{bottom:751.065000px;}
.y98{bottom:755.385000px;}
.y55{bottom:757.185000px;}
.yc{bottom:757.725000px;}
.y119{bottom:758.445000px;}
.y1f6{bottom:760.245000px;}
.y14b{bottom:761.325000px;}
.y1df{bottom:762.945000px;}
.y18a{bottom:763.485000px;}
.y164{bottom:768.345000px;}
.y229{bottom:769.065000px;}
.y28a{bottom:774.465000px;}
.yad{bottom:775.185000px;}
.y1b5{bottom:775.905000px;}
.y20c{bottom:778.065000px;}
.yd4{bottom:779.685000px;}
.y97{bottom:782.385000px;}
.y37{bottom:784.905000px;}
.y118{bottom:785.445000px;}
.y1f5{bottom:787.245000px;}
.y1de{bottom:789.945000px;}
.y1b4{bottom:790.140000px;}
.y228{bottom:791.925000px;}
.yb{bottom:793.365000px;}
.y289{bottom:795.165000px;}
.y54{bottom:796.065000px;}
.yb7{bottom:802.185000px;}
.y163{bottom:802.905000px;}
.y27c{bottom:806.145000px;}
.y79{bottom:806.505000px;}
.y23e{bottom:806.865000px;}
.y1b3{bottom:814.605000px;}
.y288{bottom:815.865000px;}
.y1dd{bottom:816.765000px;}
.yac{bottom:817.125000px;}
.y20b{bottom:820.005000px;}
.y27b{bottom:820.545000px;}
.y96{bottom:822.165000px;}
.y116{bottom:823.425000px;}
.y248{bottom:824.940000px;}
.y36{bottom:827.745000px;}
.yb6{bottom:829.005000px;}
.ya{bottom:829.185000px;}
.y227{bottom:829.545000px;}
.yd3{bottom:833.505000px;}
.y52{bottom:834.765000px;}
.y115{bottom:835.485000px;}
.y287{bottom:836.565000px;}
.y1b2{bottom:839.310000px;}
.y27a{bottom:842.010000px;}
.y117{bottom:842.370000px;}
.y1dc{bottom:843.810000px;}
.yab{bottom:844.170000px;}
.y20a{bottom:846.870000px;}
.y226{bottom:852.450000px;}
.yb5{bottom:856.050000px;}
.y279{bottom:863.430000px;}
.y1b1{bottom:863.790000px;}
.y9{bottom:864.870000px;}
.y95{bottom:867.030000px;}
.y35{bottom:870.450000px;}
.y1db{bottom:870.630000px;}
.yaa{bottom:870.990000px;}
.y50{bottom:873.690000px;}
.y209{bottom:873.870000px;}
.y225{bottom:875.130000px;}
.yd2{bottom:876.750000px;}
.yb4{bottom:882.870000px;}
.y286{bottom:884.130000px;}
.y277{bottom:884.850000px;}
.y1b0{bottom:888.450000px;}
.y114{bottom:889.350000px;}
.y23d{bottom:890.250000px;}
.y2ab{bottom:895.470000px;}
.ya9{bottom:897.990000px;}
.y34{bottom:898.170000px;}
.y78{bottom:898.350000px;}
.y8{bottom:900.510000px;}
.y285{bottom:904.830000px;}
.y94{bottom:908.970000px;}
.yb3{bottom:909.870000px;}
.y276{bottom:910.050000px;}
.y4f{bottom:912.390000px;}
.y1da{bottom:912.570000px;}
.y1af{bottom:912.930000px;}
.y208{bottom:915.810000px;}
.y113{bottom:916.170000px;}
.yd1{bottom:921.750000px;}
.ya8{bottom:924.810000px;}
.y275{bottom:927.330000px;}
.y284{bottom:931.470000px;}
.y2aa{bottom:934.350000px;}
.y224{bottom:935.790000px;}
.y93{bottom:935.970000px;}
.y7{bottom:936.330000px;}
.yf7{bottom:936.690000px;}
.y1ae{bottom:937.590000px;}
.y1d9{bottom:939.570000px;}
.y33{bottom:939.750000px;}
.y207{bottom:942.630000px;}
.y112{bottom:943.170000px;}
.y274{bottom:944.610000px;}
.y23c{bottom:950.730000px;}
.y4e{bottom:951.270000px;}
.ya7{bottom:951.810000px;}
.y283{bottom:952.170000px;}
.y2a9{bottom:958.110000px;}
.y223{bottom:958.470000px;}
.y273{bottom:958.830000px;}
.y92{bottom:962.790000px;}
.yd0{bottom:963.690000px;}
.y1d8{bottom:966.390000px;}
.y206{bottom:969.630000px;}
.y111{bottom:969.990000px;}
.y6{bottom:971.970000px;}
.y282{bottom:972.870000px;}
.y23b{bottom:973.590000px;}
.ya6{bottom:978.630000px;}
.y32{bottom:979.890000px;}
.y272{bottom:980.250000px;}
.y2a8{bottom:981.870000px;}
.y91{bottom:989.790000px;}
.y4c{bottom:990.150000px;}
.ycf{bottom:990.510000px;}
.y1d7{bottom:993.390000px;}
.y281{bottom:993.570000px;}
.y222{bottom:996.270000px;}
.y110{bottom:996.990000px;}
.y271{bottom:1001.670000px;}
.ya5{bottom:1005.630000px;}
.y2a7{bottom:1005.810000px;}
.y5{bottom:1007.610000px;}
.y280{bottom:1014.270000px;}
.y90{bottom:1016.610000px;}
.y31{bottom:1016.970000px;}
.yce{bottom:1017.510000px;}
.y221{bottom:1019.130000px;}
.y1d6{bottom:1020.210000px;}
.y270{bottom:1023.090000px;}
.y10f{bottom:1023.810000px;}
.y2a6{bottom:1029.570000px;}
.ya4{bottom:1032.450000px;}
.y4b{bottom:1036.050000px;}
.y76{bottom:1040.550000px;}
.y27f{bottom:1041.090000px;}
.y4{bottom:1043.430000px;}
.y8f{bottom:1043.610000px;}
.ycd{bottom:1044.330000px;}
.y26f{bottom:1044.690000px;}
.y1d5{bottom:1047.210000px;}
.y2a5{bottom:1053.330000px;}
.y220{bottom:1056.750000px;}
.ya3{bottom:1059.450000px;}
.y27e{bottom:1061.790000px;}
.y10e{bottom:1065.750000px;}
.y26b{bottom:1066.110000px;}
.y8e{bottom:1070.430000px;}
.y1d4{bottom:1074.030000px;}
.y2a4{bottom:1074.390000px;}
.y49{bottom:1074.930000px;}
.y3{bottom:1077.990000px;}
.y21f{bottom:1079.610000px;}
.ya2{bottom:1086.270000px;}
.y27d{bottom:1088.970000px;}
.y75{bottom:1090.950000px;}
.y10d{bottom:1092.570000px;}
.y8d{bottom:1097.430000px;}
.y1d3{bottom:1101.030000px;}
.y2{bottom:1110.210000px;}
.y26a{bottom:1112.910000px;}
.ya1{bottom:1113.270000px;}
.y2a3{bottom:1116.330000px;}
.y21e{bottom:1117.410000px;}
.y72{bottom:1123.740000px;}
.y10a{bottom:1134.540000px;}
.y48{bottom:1137.060000px;}
.ya0{bottom:1140.120000px;}
.y10c{bottom:1141.380000px;}
.y10b{bottom:1141.740000px;}
.y1{bottom:1142.460000px;}
.y2e{bottom:1194.840000px;}
.h50{height:20.685000px;}
.h51{height:20.722500px;}
.h46{height:22.485000px;}
.h4d{height:22.500000px;}
.h4e{height:22.530000px;}
.h38{height:23.745000px;}
.h35{height:23.760000px;}
.h39{height:23.781000px;}
.h36{height:23.790000px;}
.h37{height:23.925000px;}
.h34{height:23.940000px;}
.h3c{height:23.962500px;}
.h2f{height:24.840000px;}
.h1b{height:32.745000px;}
.h1d{height:32.760000px;}
.h1e{height:32.790000px;}
.h6{height:34.740000px;}
.h4c{height:38.158594px;}
.h11{height:38.685000px;}
.h13{height:38.700000px;}
.hf{height:38.865000px;}
.h14{height:38.880000px;}
.h12{height:38.902500px;}
.h17{height:39.945000px;}
.h4f{height:41.385000px;}
.h3b{height:41.745000px;}
.h3e{height:42.465000px;}
.h10{height:45.885000px;}
.h42{height:47.505000px;}
.h43{height:47.541000px;}
.h3f{height:47.685000px;}
.h40{height:47.695500px;}
.h41{height:47.700000px;}
.h1f{height:50.385000px;}
.h1c{height:50.391000px;}
.h3d{height:53.573906px;}
.h27{height:58.651172px;}
.h4b{height:59.038594px;}
.h48{height:59.601000px;}
.h49{height:59.602500px;}
.h26{height:59.614102px;}
.h47{height:60.226875px;}
.h2{height:61.423863px;}
.h4a{height:64.411172px;}
.h19{height:64.546875px;}
.h9{height:65.010937px;}
.h2e{height:65.447578px;}
.h31{height:66.259687px;}
.h15{height:66.600000px;}
.h3{height:70.664062px;}
.h18{height:71.085000px;}
.h20{height:71.824219px;}
.h16{height:72.562500px;}
.h52{height:74.004654px;}
.h3a{height:74.680922px;}
.h23{height:74.704922px;}
.h8{height:75.960000px;}
.h7{height:82.676953px;}
.h32{height:84.167578px;}
.he{height:84.898125px;}
.h4{height:86.400000px;}
.h1a{height:91.785000px;}
.h22{height:91.800000px;}
.h25{height:91.821000px;}
.h21{height:91.822500px;}
.h24{height:91.830000px;}
.h28{height:92.179688px;}
.hd{height:93.983203px;}
.h5{height:96.508125px;}
.hb{height:105.996094px;}
.h30{height:111.527578px;}
.h2c{height:140.419688px;}
.h2b{height:146.899688px;}
.h33{height:147.079688px;}
.hc{height:184.140000px;}
.h29{height:195.139688px;}
.h2a{height:200.807578px;}
.h2d{height:219.527578px;}
.ha{height:230.445000px;}
.h44{height:892.980000px;}
.h45{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w42{width:56.865000px;}
.w43{width:59.205000px;}
.w35{width:59.211000px;}
.w3b{width:59.215500px;}
.w36{width:59.220000px;}
.w3a{width:62.100000px;}
.wd{width:63.345000px;}
.wf{width:64.965000px;}
.wb{width:65.145000px;}
.w3f{width:66.405000px;}
.w3e{width:77.025000px;}
.w23{width:80.451000px;}
.w2d{width:83.515500px;}
.w28{width:83.520000px;}
.w41{width:83.685000px;}
.w39{width:83.721000px;}
.w50{width:86.925000px;}
.w4c{width:86.931000px;}
.w34{width:86.976000px;}
.w46{width:87.291000px;}
.w30{width:87.336000px;}
.w4a{width:87.645000px;}
.w4e{width:91.620000px;}
.w4d{width:91.641000px;}
.w4f{width:91.656000px;}
.w4b{width:92.001000px;}
.w48{width:92.340000px;}
.w47{width:92.361000px;}
.w49{width:92.376000px;}
.w2b{width:92.505000px;}
.w2c{width:92.541000px;}
.w21{width:96.465000px;}
.w1d{width:96.471000px;}
.w1f{width:96.480000px;}
.w1e{width:96.501000px;}
.w20{width:96.516000px;}
.w22{width:96.681000px;}
.w29{width:105.480000px;}
.w27{width:105.501000px;}
.w2a{width:105.516000px;}
.w15{width:113.601000px;}
.w18{width:116.136000px;}
.w17{width:116.301000px;}
.w13{width:116.856000px;}
.w12{width:117.021000px;}
.w19{width:125.625000px;}
.w14{width:125.985000px;}
.w44{width:126.345000px;}
.w37{width:126.351000px;}
.w38{width:126.360000px;}
.w45{width:126.381000px;}
.w40{width:126.382500px;}
.w3c{width:126.396000px;}
.w3d{width:126.405000px;}
.w16{width:158.751000px;}
.w11{width:159.111000px;}
.w1a{width:169.731000px;}
.w26{width:185.775000px;}
.w24{width:189.735000px;}
.w1b{width:191.370000px;}
.w1c{width:201.795000px;}
.w54{width:211.521000px;}
.w55{width:211.530000px;}
.w56{width:211.695000px;}
.w25{width:211.710000px;}
.w51{width:211.881000px;}
.w53{width:212.055000px;}
.w52{width:212.430000px;}
.w3{width:294.720000px;}
.w2{width:294.915000px;}
.w6{width:318.795000px;}
.w7{width:318.810000px;}
.w8{width:319.020000px;}
.w9{width:319.035000px;}
.w10{width:327.315000px;}
.w33{width:328.515000px;}
.w32{width:331.410000px;}
.w31{width:334.095000px;}
.w5{width:336.810000px;}
.w4{width:366.195000px;}
.we{width:572.130000px;}
.wa{width:572.670000px;}
.wc{width:573.750000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2e{width:1262.880000px;}
.w2f{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:6.120000px;}
.x13{left:8.091000px;}
.x82{left:9.525000px;}
.x8{left:10.800000px;}
.x66{left:12.231000px;}
.x5{left:14.580000px;}
.x3e{left:15.831000px;}
.x63{left:17.091000px;}
.x35{left:18.720000px;}
.x5d{left:20.151000px;}
.x68{left:21.231000px;}
.x7c{left:22.320000px;}
.x33{left:24.330000px;}
.x65{left:25.740000px;}
.x45{left:27.345000px;}
.x77{left:28.425000px;}
.x37{left:29.505000px;}
.x3b{left:32.025000px;}
.x39{left:33.330000px;}
.x19{left:35.100000px;}
.x43{left:36.345000px;}
.x3a{left:37.800000px;}
.x3d{left:40.665000px;}
.x7d{left:41.745000px;}
.x3c{left:43.185000px;}
.x42{left:44.640000px;}
.x44{left:46.080000px;}
.x57{left:48.225000px;}
.x67{left:49.665000px;}
.x41{left:56.910000px;}
.x3f{left:58.170000px;}
.x60{left:60.645000px;}
.x6{left:61.770000px;}
.x40{left:63.345000px;}
.x56{left:66.765000px;}
.x87{left:68.025000px;}
.x2b{left:71.130000px;}
.x86{left:75.405000px;}
.x89{left:76.485000px;}
.x52{left:84.585000px;}
.x88{left:89.820000px;}
.x51{left:106.605000px;}
.x5e{left:111.645000px;}
.x2{left:127.656000px;}
.x10{left:154.470000px;}
.x71{left:158.790000px;}
.x6f{left:160.200000px;}
.x6d{left:163.065000px;}
.xb{left:168.465000px;}
.x4b{left:180.750000px;}
.x12{left:191.010000px;}
.x5f{left:192.825000px;}
.x6c{left:194.445000px;}
.x58{left:203.805000px;}
.x7e{left:215.685000px;}
.x48{left:224.850000px;}
.x72{left:254.745000px;}
.x11{left:259.410000px;}
.x53{left:276.345000px;}
.x14{left:281.910000px;}
.x32{left:287.145000px;}
.x64{left:299.055000px;}
.x59{left:301.035000px;}
.x20{left:305.175000px;}
.x7f{left:308.055000px;}
.x1d{left:315.255000px;}
.x2c{left:333.435000px;}
.xf{left:336.855000px;}
.x1b{left:339.015000px;}
.x84{left:340.275000px;}
.x25{left:341.355000px;}
.x21{left:342.435000px;}
.x22{left:343.695000px;}
.xc{left:362.235000px;}
.x30{left:372.855000px;}
.x3{left:375.195000px;}
.x73{left:382.005000px;}
.x61{left:383.295000px;}
.x26{left:385.635000px;}
.x23{left:388.875000px;}
.x54{left:393.375000px;}
.x15{left:397.155000px;}
.x5a{left:398.235000px;}
.x80{left:400.395000px;}
.x27{left:403.095000px;}
.x34{left:404.175000px;}
.x31{left:408.315000px;}
.x24{left:424.515000px;}
.x2d{left:429.195000px;}
.x28{left:430.455000px;}
.x9{left:438.015000px;}
.x16{left:442.335000px;}
.xd{left:446.475000px;}
.x29{left:448.635000px;}
.x7{left:455.475000px;}
.x4{left:460.695000px;}
.x74{left:466.455000px;}
.x2e{left:475.095000px;}
.x2a{left:490.215000px;}
.x81{left:492.735000px;}
.x5b{left:495.435000px;}
.x2f{left:497.265000px;}
.xa{left:500.700000px;}
.x36{left:521.040000px;}
.x6e{left:529.275000px;}
.x69{left:547.095000px;}
.x85{left:552.720000px;}
.x55{left:584.760000px;}
.x75{left:589.215000px;}
.x5c{left:592.680000px;}
.x62{left:595.740000px;}
.x6a{left:623.235000px;}
.x6b{left:631.515000px;}
.x38{left:650.280000px;}
.x1a{left:665.925000px;}
.x83{left:672.780000px;}
.x1f{left:673.845000px;}
.x47{left:689.685000px;}
.x4e{left:698.910000px;}
.x17{left:700.350000px;}
.x18{left:701.430000px;}
.xe{left:709.710000px;}
.x76{left:716.520000px;}
.x4d{left:722.490000px;}
.x4f{left:752.010000px;}
.x49{left:754.170000px;}
.x4c{left:761.550000px;}
.x4a{left:762.630000px;}
.x1e{left:775.770000px;}
.x50{left:777.930000px;}
.x46{left:785.130000px;}
.x1c{left:786.930000px;}
.x78{left:794.280000px;}
.x70{left:861.420000px;}
.x79{left:921.345000px;}
.x7a{left:1048.650000px;}
.x7b{left:1133.070000px;}
@media print{
.ve{vertical-align:-79.360000pt;}
.vd{vertical-align:-32.000000pt;}
.v17{vertical-align:-25.600000pt;}
.v2{vertical-align:-24.320000pt;}
.v11{vertical-align:-23.040000pt;}
.v14{vertical-align:-21.760000pt;}
.v16{vertical-align:-16.000000pt;}
.v13{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.v7{vertical-align:-5.120000pt;}
.v12{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.560000pt;}
.v8{vertical-align:5.120000pt;}
.vb{vertical-align:12.800000pt;}
.v15{vertical-align:16.640000pt;}
.v18{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v9{vertical-align:29.440000pt;}
.v10{vertical-align:40.960000pt;}
.v4{vertical-align:42.880000pt;}
.v5{vertical-align:48.640000pt;}
.va{vertical-align:91.520000pt;}
.v6{vertical-align:120.320000pt;}
.vc{vertical-align:136.960000pt;}
.ls29{letter-spacing:-1.472000pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.597333pt;}
.lsa{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls2e{letter-spacing:-0.367467pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.040320pt;}
.ls2{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:-0.008320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.011520pt;}
.ls2c{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.303360pt;}
.ls15{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.368640pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.490240pt;}
.ls4{letter-spacing:3.680000pt;}
.ls1b{letter-spacing:6.400000pt;}
.ls10{letter-spacing:7.716907pt;}
.lsf{letter-spacing:8.064000pt;}
.ls16{letter-spacing:9.984000pt;}
.ls23{letter-spacing:10.624000pt;}
.ls21{letter-spacing:17.316907pt;}
.ls17{letter-spacing:17.687040pt;}
.ls19{letter-spacing:17.850240pt;}
.ls1d{letter-spacing:22.061440pt;}
.ls22{letter-spacing:24.242560pt;}
.ls1f{letter-spacing:24.882560pt;}
.lse{letter-spacing:24.890240pt;}
.ls1a{letter-spacing:29.469227pt;}
.ls30{letter-spacing:30.208000pt;}
.ls18{letter-spacing:66.880000pt;}
.ws0{word-spacing:-18.711680pt;}
.ws2{word-spacing:-18.695040pt;}
.ws1b{word-spacing:-17.280000pt;}
.ws12{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.616000pt;}
.ws18{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.528000pt;}
.ws11{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.824000pt;}
.ws16{word-spacing:-13.760000pt;}
.ws21{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.232640pt;}
.ws1c{word-spacing:-12.912533pt;}
.ws5{word-spacing:-10.959467pt;}
.ws13{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.679680pt;}
.wsb{word-spacing:-10.521067pt;}
.ws6{word-spacing:-10.319467pt;}
.wsc{word-spacing:-10.122667pt;}
.ws1f{word-spacing:-8.651520pt;}
.ws1d{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:5.824000pt;}
.ws17{word-spacing:6.080000pt;}
.ws14{word-spacing:17.472000pt;}
._15{margin-left:-6.080000pt;}
._17{margin-left:-4.736000pt;}
._c{margin-left:-3.834453pt;}
._4{margin-left:-2.752000pt;}
._1d{margin-left:-1.863040pt;}
._1{margin-left:-0.973440pt;}
._0{width:0.936320pt;}
._10{width:1.984000pt;}
._6{width:2.893440pt;}
._5{width:4.074667pt;}
._b{width:5.333547pt;}
._a{width:7.099947pt;}
._2{width:8.012160pt;}
._7{width:9.472000pt;}
._9{width:11.178880pt;}
._8{width:12.177280pt;}
._3{width:13.628160pt;}
._13{width:14.830507pt;}
._11{width:16.917333pt;}
._d{width:17.848107pt;}
._12{width:19.661440pt;}
._e{width:20.736000pt;}
._f{width:21.696000pt;}
._1e{width:22.663040pt;}
._19{width:23.757440pt;}
._18{width:24.960000pt;}
._1a{width:28.941440pt;}
._14{width:38.848000pt;}
._1b{width:40.165120pt;}
._16{width:170.058667pt;}
._1c{width:749.774293pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fsa{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y26{bottom:-10.088000pt;}
.y0{bottom:0.000000pt;}
.y278{bottom:3.680000pt;}
.y26e{bottom:4.000000pt;}
.y25d{bottom:5.266667pt;}
.y24e{bottom:5.280000pt;}
.y261{bottom:5.426667pt;}
.y258{bottom:5.440000pt;}
.y265{bottom:5.466667pt;}
.y255{bottom:5.586667pt;}
.y25b{bottom:5.600000pt;}
.y263{bottom:5.746667pt;}
.y259{bottom:5.760000pt;}
.y266{bottom:5.786667pt;}
.y262{bottom:6.386667pt;}
.y142{bottom:6.546667pt;}
.y131{bottom:6.560000pt;}
.y135{bottom:6.586667pt;}
.y144{bottom:6.706667pt;}
.y12f{bottom:6.720000pt;}
.y1c4{bottom:6.733333pt;}
.y25{bottom:7.672000pt;}
.y109{bottom:9.920000pt;}
.y70{bottom:11.986667pt;}
.y63{bottom:12.000000pt;}
.y26c{bottom:13.120000pt;}
.y252{bottom:13.266667pt;}
.y21{bottom:13.933333pt;}
.y6c{bottom:14.546667pt;}
.y74{bottom:14.560000pt;}
.y6b{bottom:14.706667pt;}
.y73{bottom:14.720000pt;}
.y1bf{bottom:14.880000pt;}
.y1f{bottom:15.373333pt;}
.y1cd{bottom:17.106667pt;}
.y1c6{bottom:17.120000pt;}
.y1ca{bottom:17.146667pt;}
.y1c1{bottom:17.280000pt;}
.y2d{bottom:19.560000pt;}
.y51{bottom:19.840000pt;}
.y4a{bottom:20.000000pt;}
.y53{bottom:20.040000pt;}
.y5f{bottom:20.960000pt;}
.y5b{bottom:21.280000pt;}
.y250{bottom:21.906667pt;}
.y256{bottom:22.226667pt;}
.y26d{bottom:22.400000pt;}
.y4d{bottom:26.240000pt;}
.y43{bottom:26.413333pt;}
.y1ce{bottom:27.666667pt;}
.y1c7{bottom:27.680000pt;}
.y1cb{bottom:27.706667pt;}
.y1c2{bottom:27.840000pt;}
.y254{bottom:27.866667pt;}
.y24{bottom:29.106667pt;}
.y251{bottom:29.786667pt;}
.y71{bottom:30.226667pt;}
.y77{bottom:30.240000pt;}
.y6f{bottom:30.386667pt;}
.y62{bottom:30.400000pt;}
.y83{bottom:30.426667pt;}
.y7c{bottom:30.440000pt;}
.y253{bottom:40.826667pt;}
.y58{bottom:42.240000pt;}
.y59{bottom:44.640000pt;}
.y8a{bottom:48.626667pt;}
.y64{bottom:48.640000pt;}
.y89{bottom:48.786667pt;}
.y61{bottom:48.800000pt;}
.y82{bottom:48.826667pt;}
.y7b{bottom:48.840000pt;}
.y23{bottom:50.546667pt;}
.y30{bottom:53.312000pt;}
.y2c{bottom:56.040000pt;}
.y1e{bottom:56.973333pt;}
.y24a{bottom:66.592000pt;}
.y67{bottom:67.040000pt;}
.y84{bottom:67.066667pt;}
.y7d{bottom:67.080000pt;}
.y66{bottom:67.200000pt;}
.y42{bottom:67.213333pt;}
.y81{bottom:67.226667pt;}
.y7a{bottom:67.240000pt;}
.y2f{bottom:86.112000pt;}
.y2b{bottom:87.880000pt;}
.y249{bottom:99.392000pt;}
.y1ad{bottom:102.912000pt;}
.y12d{bottom:103.872000pt;}
.y180{bottom:104.032000pt;}
.y162{bottom:104.512000pt;}
.y41{bottom:108.173333pt;}
.y198{bottom:108.352000pt;}
.y8c{bottom:108.672000pt;}
.y16e{bottom:110.112000pt;}
.y1aa{bottom:111.872000pt;}
.y189{bottom:114.432000pt;}
.y1d2{bottom:115.712000pt;}
.y1ac{bottom:118.432000pt;}
.y2a{bottom:119.560000pt;}
.y22{bottom:120.520000pt;}
.y14a{bottom:120.672000pt;}
.ycc{bottom:122.912000pt;}
.y6e{bottom:123.400000pt;}
.y197{bottom:123.872000pt;}
.y21d{bottom:124.672000pt;}
.y12c{bottom:127.712000pt;}
.y17f{bottom:128.032000pt;}
.y161{bottom:128.512000pt;}
.y9f{bottom:129.952000pt;}
.y2a2{bottom:131.072000pt;}
.y16d{bottom:133.946667pt;}
.ye1{bottom:135.226667pt;}
.y1a9{bottom:135.706667pt;}
.y1f4{bottom:135.866667pt;}
.y108{bottom:138.106667pt;}
.y188{bottom:138.266667pt;}
.y23a{bottom:138.586667pt;}
.y196{bottom:139.226667pt;}
.y149{bottom:140.506667pt;}
.yb2{bottom:143.386667pt;}
.y21c{bottom:144.826667pt;}
.y8b{bottom:146.746667pt;}
.yf6{bottom:147.706667pt;}
.y3f{bottom:149.120000pt;}
.y1d1{bottom:149.466667pt;}
.y29{bottom:151.240000pt;}
.y160{bottom:152.346667pt;}
.y1ab{bottom:152.826667pt;}
.y205{bottom:157.306667pt;}
.y16c{bottom:157.946667pt;}
.y239{bottom:158.746667pt;}
.ye0{bottom:159.066667pt;}
.y1a8{bottom:159.706667pt;}
.y1f3{bottom:159.866667pt;}
.y148{bottom:160.506667pt;}
.y9e{bottom:160.666667pt;}
.y107{bottom:161.946667pt;}
.y187{bottom:162.266667pt;}
.y88{bottom:164.040000pt;}
.y195{bottom:164.666667pt;}
.y1d0{bottom:164.986667pt;}
.y17e{bottom:165.306667pt;}
.y1c{bottom:165.786667pt;}
.y12b{bottom:166.266667pt;}
.y146{bottom:166.440000pt;}
.y6d{bottom:168.200000pt;}
.y47{bottom:169.466667pt;}
.yf5{bottom:170.586667pt;}
.ycb{bottom:170.746667pt;}
.y15f{bottom:176.186667pt;}
.y2a1{bottom:176.506667pt;}
.yb1{bottom:176.666667pt;}
.y147{bottom:177.626667pt;}
.y21b{bottom:178.426667pt;}
.y1cf{bottom:180.346667pt;}
.y204{bottom:181.306667pt;}
.y16b{bottom:181.786667pt;}
.ydf{bottom:183.066667pt;}
.y28{bottom:183.080000pt;}
.y1a7{bottom:183.546667pt;}
.y1f2{bottom:183.706667pt;}
.y145{bottom:188.200000pt;}
.y17d{bottom:189.146667pt;}
.y238{bottom:192.346667pt;}
.y1cc{bottom:193.000000pt;}
.y186{bottom:193.306667pt;}
.yca{bottom:194.586667pt;}
.y6a{bottom:197.320000pt;}
.y1b{bottom:197.466667pt;}
.y2a0{bottom:197.946667pt;}
.y21a{bottom:198.586667pt;}
.y106{bottom:199.226667pt;}
.y15e{bottom:200.186667pt;}
.y46{bottom:204.346667pt;}
.y203{bottom:205.146667pt;}
.yde{bottom:206.906667pt;}
.y12a{bottom:207.546667pt;}
.y1f1{bottom:207.706667pt;}
.y185{bottom:208.826667pt;}
.yf4{bottom:209.466667pt;}
.y143{bottom:209.960000pt;}
.y237{bottom:212.666667pt;}
.y17c{bottom:213.146667pt;}
.y219{bottom:218.906667pt;}
.y16a{bottom:219.066667pt;}
.y105{bottom:223.226667pt;}
.y15d{bottom:224.026667pt;}
.y87{bottom:227.240000pt;}
.y202{bottom:229.146667pt;}
.y1a{bottom:229.306667pt;}
.ydd{bottom:230.746667pt;}
.y1a6{bottom:231.386667pt;}
.y1f0{bottom:231.546667pt;}
.yc9{bottom:231.866667pt;}
.y141{bottom:231.880000pt;}
.yf3{bottom:233.466667pt;}
.y29f{bottom:235.066667pt;}
.y1c9{bottom:236.040000pt;}
.y17b{bottom:236.986667pt;}
.y45{bottom:239.066667pt;}
.y69{bottom:246.146667pt;}
.y104{bottom:247.106667pt;}
.y15c{bottom:248.066667pt;}
.y129{bottom:248.866667pt;}
.y184{bottom:249.506667pt;}
.y169{bottom:250.146667pt;}
.y201{bottom:253.026667pt;}
.y218{bottom:253.186667pt;}
.y140{bottom:253.666667pt;}
.ydc{bottom:254.786667pt;}
.y1a5{bottom:255.426667pt;}
.yc8{bottom:255.906667pt;}
.y29e{bottom:256.226667pt;}
.yf2{bottom:257.346667pt;}
.y19{bottom:261.026667pt;}
.y20{bottom:263.093333pt;}
.y168{bottom:265.666667pt;}
.y236{bottom:266.466667pt;}
.y1ef{bottom:268.866667pt;}
.y103{bottom:271.106667pt;}
.y15b{bottom:271.906667pt;}
.y44{bottom:274.626667pt;}
.y13f{bottom:275.586667pt;}
.y200{bottom:277.026667pt;}
.ydb{bottom:278.626667pt;}
.y1c8{bottom:278.946667pt;}
.y1a4{bottom:279.266667pt;}
.yc7{bottom:279.746667pt;}
.y29d{bottom:280.546667pt;}
.y68{bottom:280.706667pt;}
.y167{bottom:281.026667pt;}
.yf1{bottom:281.346667pt;}
.y17a{bottom:284.866667pt;}
.y269{bottom:285.026667pt;}
.y235{bottom:286.626667pt;}
.y128{bottom:288.706667pt;}
.y217{bottom:290.146667pt;}
.y18{bottom:292.706667pt;}
.y1ee{bottom:292.866667pt;}
.y40{bottom:293.973333pt;}
.y3e{bottom:293.986667pt;}
.y65{bottom:295.586667pt;}
.y15a{bottom:295.906667pt;}
.y13e{bottom:297.346667pt;}
.y29c{bottom:301.986667pt;}
.yda{bottom:302.626667pt;}
.y1a3{bottom:303.266667pt;}
.yc6{bottom:303.746667pt;}
.yf0{bottom:305.186667pt;}
.y268{bottom:305.826667pt;}
.y100{bottom:307.906667pt;}
.y86{bottom:308.866667pt;}
.y127{bottom:312.706667pt;}
.y1ff{bottom:314.306667pt;}
.y1ed{bottom:316.706667pt;}
.yff{bottom:318.626667pt;}
.y13d{bottom:319.266667pt;}
.y159{bottom:319.746667pt;}
.y234{bottom:320.226667pt;}
.y1c5{bottom:321.986667pt;}
.y179{bottom:322.146667pt;}
.y17{bottom:324.546667pt;}
.yd9{bottom:326.466667pt;}
.y1a2{bottom:327.106667pt;}
.yc5{bottom:327.586667pt;}
.y29b{bottom:328.866667pt;}
.yef{bottom:329.186667pt;}
.y216{bottom:329.986667pt;}
.y101{bottom:330.786667pt;}
.y126{bottom:336.546667pt;}
.y1fe{bottom:338.146667pt;}
.y102{bottom:338.466667pt;}
.y1ec{bottom:340.546667pt;}
.y13c{bottom:341.026667pt;}
.y158{bottom:343.746667pt;}
.y178{bottom:345.986667pt;}
.y267{bottom:347.106667pt;}
.yd8{bottom:350.466667pt;}
.y1a1{bottom:351.106667pt;}
.yc4{bottom:351.426667pt;}
.y215{bottom:353.986667pt;}
.y29a{bottom:355.426667pt;}
.y16{bottom:356.226667pt;}
.y125{bottom:360.546667pt;}
.y247{bottom:360.706667pt;}
.y1fd{bottom:362.146667pt;}
.y13b{bottom:362.786667pt;}
.y1d{bottom:362.933333pt;}
.y1eb{bottom:364.546667pt;}
.y1c3{bottom:364.853333pt;}
.y1c0{bottom:364.866667pt;}
.yee{bottom:366.466667pt;}
.y157{bottom:367.586667pt;}
.y264{bottom:367.746667pt;}
.y177{bottom:369.986667pt;}
.y299{bottom:373.826667pt;}
.yfe{bottom:373.986667pt;}
.y233{bottom:374.146667pt;}
.y1a0{bottom:374.946667pt;}
.yc3{bottom:375.426667pt;}
.y60{bottom:377.186667pt;}
.y214{bottom:377.826667pt;}
.yd7{bottom:381.506667pt;}
.y124{bottom:384.386667pt;}
.y13a{bottom:384.706667pt;}
.y1fc{bottom:385.986667pt;}
.y15{bottom:387.906667pt;}
.y1ea{bottom:388.386667pt;}
.y260{bottom:388.426667pt;}
.yed{bottom:390.306667pt;}
.y85{bottom:390.466667pt;}
.y176{bottom:393.826667pt;}
.y232{bottom:394.306667pt;}
.yd6{bottom:397.026667pt;}
.y298{bottom:397.666667pt;}
.yfd{bottom:397.986667pt;}
.y19f{bottom:398.946667pt;}
.yc2{bottom:399.266667pt;}
.y213{bottom:401.826667pt;}
.y156{bottom:404.866667pt;}
.y139{bottom:406.466667pt;}
.y1be{bottom:407.906667pt;}
.y123{bottom:408.386667pt;}
.y25f{bottom:409.053333pt;}
.y1fb{bottom:409.986667pt;}
.y1e9{bottom:412.386667pt;}
.yec{bottom:414.306667pt;}
.y246{bottom:414.626667pt;}
.y297{bottom:416.066667pt;}
.y175{bottom:417.826667pt;}
.y14{bottom:419.746667pt;}
.yfc{bottom:421.826667pt;}
.y19e{bottom:422.786667pt;}
.yc1{bottom:423.266667pt;}
.y212{bottom:425.666667pt;}
.yd5{bottom:427.906667pt;}
.y138{bottom:428.386667pt;}
.y155{bottom:428.866667pt;}
.y25e{bottom:429.853333pt;}
.y194{bottom:429.986667pt;}
.y122{bottom:432.226667pt;}
.y1fa{bottom:433.826667pt;}
.y296{bottom:434.466667pt;}
.y245{bottom:434.786667pt;}
.yeb{bottom:438.146667pt;}
.y5e{bottom:440.386667pt;}
.y1bd{bottom:446.306667pt;}
.y19d{bottom:446.786667pt;}
.yc0{bottom:447.106667pt;}
.y231{bottom:448.066667pt;}
.y1e8{bottom:449.666667pt;}
.yfb{bottom:449.986667pt;}
.y137{bottom:450.146667pt;}
.y25c{bottom:450.506667pt;}
.y13{bottom:451.426667pt;}
.y154{bottom:452.706667pt;}
.y295{bottom:452.866667pt;}
.y174{bottom:453.186667pt;}
.y193{bottom:453.986667pt;}
.y244{bottom:455.106667pt;}
.y121{bottom:456.226667pt;}
.yfa{bottom:460.706667pt;}
.yea{bottom:462.146667pt;}
.ybf{bottom:471.106667pt;}
.y25a{bottom:471.133333pt;}
.y294{bottom:471.266667pt;}
.y136{bottom:471.906667pt;}
.y80{bottom:472.066667pt;}
.y1e7{bottom:473.506667pt;}
.y27{bottom:476.693333pt;}
.y153{bottom:476.706667pt;}
.y192{bottom:477.826667pt;}
.y120{bottom:480.066667pt;}
.y230{bottom:481.666667pt;}
.y19c{bottom:481.986667pt;}
.y12{bottom:483.106667pt;}
.y3d{bottom:484.066667pt;}
.ye9{bottom:485.986667pt;}
.y211{bottom:486.946667pt;}
.y243{bottom:488.546667pt;}
.y293{bottom:489.666667pt;}
.y1bc{bottom:490.786667pt;}
.y173{bottom:491.106667pt;}
.y257{bottom:491.773333pt;}
.y134{bottom:493.826667pt;}
.ybe{bottom:494.973333pt;}
.y5d{bottom:495.613333pt;}
.y152{bottom:500.573333pt;}
.y191{bottom:501.853333pt;}
.y22f{bottom:502.013333pt;}
.y11f{bottom:504.093333pt;}
.yf9{bottom:508.413333pt;}
.y242{bottom:508.893333pt;}
.ye8{bottom:510.013333pt;}
.y1e6{bottom:510.813333pt;}
.y24f{bottom:512.426667pt;}
.y292{bottom:513.853333pt;}
.y1bb{bottom:514.653333pt;}
.y11{bottom:514.813333pt;}
.y133{bottom:515.613333pt;}
.y19b{bottom:515.933333pt;}
.y1f9{bottom:518.973333pt;}
.y22e{bottom:522.173333pt;}
.y151{bottom:524.573333pt;}
.y172{bottom:524.893333pt;}
.y3c{bottom:525.053333pt;}
.y190{bottom:525.693333pt;}
.y5c{bottom:530.013333pt;}
.y19a{bottom:531.293333pt;}
.ybd{bottom:532.253333pt;}
.ye7{bottom:533.853333pt;}
.y1e5{bottom:534.813333pt;}
.y132{bottom:537.533333pt;}
.y1ba{bottom:538.653333pt;}
.y171{bottom:540.413333pt;}
.y291{bottom:540.733333pt;}
.y11e{bottom:541.373333pt;}
.y241{bottom:542.493333pt;}
.y1f8{bottom:542.813333pt;}
.y5a{bottom:544.893333pt;}
.y10{bottom:546.653333pt;}
.y150{bottom:548.413333pt;}
.y18f{bottom:549.693333pt;}
.y183{bottom:550.653333pt;}
.y9d{bottom:551.933333pt;}
.y3b{bottom:552.573333pt;}
.y7f{bottom:553.693333pt;}
.y170{bottom:555.773333pt;}
.ybc{bottom:556.253333pt;}
.ye6{bottom:557.693333pt;}
.y1e4{bottom:558.653333pt;}
.y130{bottom:559.293333pt;}
.y1b9{bottom:562.493333pt;}
.y240{bottom:562.653333pt;}
.y11d{bottom:565.213333pt;}
.y24d{bottom:566.053333pt;}
.y1f7{bottom:566.813333pt;}
.y290{bottom:567.133333pt;}
.yf8{bottom:569.533333pt;}
.y14f{bottom:572.413333pt;}
.y199{bottom:574.813333pt;}
.y9c{bottom:575.773333pt;}
.y22d{bottom:576.093333pt;}
.yf{bottom:578.333333pt;}
.y57{bottom:579.453333pt;}
.ybb{bottom:580.093333pt;}
.y12e{bottom:581.053333pt;}
.ye5{bottom:581.693333pt;}
.y1e3{bottom:582.653333pt;}
.y18e{bottom:583.613333pt;}
.y28f{bottom:585.533333pt;}
.y1b8{bottom:586.493333pt;}
.y16f{bottom:586.653333pt;}
.y11c{bottom:589.213333pt;}
.y3a{bottom:593.533333pt;}
.y210{bottom:595.933333pt;}
.y14e{bottom:596.253333pt;}
.y182{bottom:597.213333pt;}
.y9b{bottom:599.773333pt;}
.yba{bottom:604.093333pt;}
.ye4{bottom:605.533333pt;}
.y1e2{bottom:606.493333pt;}
.y28e{bottom:609.373333pt;}
.y22c{bottom:609.533333pt;}
.ye{bottom:610.013333pt;}
.y1b7{bottom:610.333333pt;}
.y181{bottom:612.573333pt;}
.y11b{bottom:613.053333pt;}
.y18d{bottom:613.373333pt;}
.y23f{bottom:616.413333pt;}
.yb0{bottom:617.373333pt;}
.y20f{bottom:619.933333pt;}
.y14d{bottom:620.253333pt;}
.y9a{bottom:623.613333pt;}
.y28d{bottom:627.773333pt;}
.yb9{bottom:627.933333pt;}
.y18c{bottom:628.893333pt;}
.y22b{bottom:629.853333pt;}
.y1e1{bottom:630.493333pt;}
.y39{bottom:634.493333pt;}
.y7e{bottom:635.293333pt;}
.y24c{bottom:636.133333pt;}
.ye3{bottom:636.733333pt;}
.y11a{bottom:637.053333pt;}
.y56{bottom:638.653333pt;}
.yaf{bottom:641.373333pt;}
.yd{bottom:641.853333pt;}
.y166{bottom:642.973333pt;}
.y20e{bottom:643.773333pt;}
.y18b{bottom:644.253333pt;}
.y1b6{bottom:644.413333pt;}
.y28c{bottom:646.173333pt;}
.y99{bottom:647.613333pt;}
.y22a{bottom:650.013333pt;}
.y14c{bottom:651.293333pt;}
.yb8{bottom:651.933333pt;}
.y1e0{bottom:654.333333pt;}
.y38{bottom:662.013333pt;}
.y165{bottom:662.973333pt;}
.y24b{bottom:663.173333pt;}
.y28b{bottom:664.573333pt;}
.yae{bottom:665.213333pt;}
.ye2{bottom:667.293333pt;}
.y20d{bottom:667.613333pt;}
.y98{bottom:671.453333pt;}
.y55{bottom:673.053333pt;}
.yc{bottom:673.533333pt;}
.y119{bottom:674.173333pt;}
.y1f6{bottom:675.773333pt;}
.y14b{bottom:676.733333pt;}
.y1df{bottom:678.173333pt;}
.y18a{bottom:678.653333pt;}
.y164{bottom:682.973333pt;}
.y229{bottom:683.613333pt;}
.y28a{bottom:688.413333pt;}
.yad{bottom:689.053333pt;}
.y1b5{bottom:689.693333pt;}
.y20c{bottom:691.613333pt;}
.yd4{bottom:693.053333pt;}
.y97{bottom:695.453333pt;}
.y37{bottom:697.693333pt;}
.y118{bottom:698.173333pt;}
.y1f5{bottom:699.773333pt;}
.y1de{bottom:702.173333pt;}
.y1b4{bottom:702.346667pt;}
.y228{bottom:703.933333pt;}
.yb{bottom:705.213333pt;}
.y289{bottom:706.813333pt;}
.y54{bottom:707.613333pt;}
.yb7{bottom:713.053333pt;}
.y163{bottom:713.693333pt;}
.y27c{bottom:716.573333pt;}
.y79{bottom:716.893333pt;}
.y23e{bottom:717.213333pt;}
.y1b3{bottom:724.093333pt;}
.y288{bottom:725.213333pt;}
.y1dd{bottom:726.013333pt;}
.yac{bottom:726.333333pt;}
.y20b{bottom:728.893333pt;}
.y27b{bottom:729.373333pt;}
.y96{bottom:730.813333pt;}
.y116{bottom:731.933333pt;}
.y248{bottom:733.280000pt;}
.y36{bottom:735.773333pt;}
.yb6{bottom:736.893333pt;}
.ya{bottom:737.053333pt;}
.y227{bottom:737.373333pt;}
.yd3{bottom:740.893333pt;}
.y52{bottom:742.013333pt;}
.y115{bottom:742.653333pt;}
.y287{bottom:743.613333pt;}
.y1b2{bottom:746.053333pt;}
.y27a{bottom:748.453333pt;}
.y117{bottom:748.773333pt;}
.y1dc{bottom:750.053333pt;}
.yab{bottom:750.373333pt;}
.y20a{bottom:752.773333pt;}
.y226{bottom:757.733333pt;}
.yb5{bottom:760.933333pt;}
.y279{bottom:767.493333pt;}
.y1b1{bottom:767.813333pt;}
.y9{bottom:768.773333pt;}
.y95{bottom:770.693333pt;}
.y35{bottom:773.733333pt;}
.y1db{bottom:773.893333pt;}
.yaa{bottom:774.213333pt;}
.y50{bottom:776.613333pt;}
.y209{bottom:776.773333pt;}
.y225{bottom:777.893333pt;}
.yd2{bottom:779.333333pt;}
.yb4{bottom:784.773333pt;}
.y286{bottom:785.893333pt;}
.y277{bottom:786.533333pt;}
.y1b0{bottom:789.733333pt;}
.y114{bottom:790.533333pt;}
.y23d{bottom:791.333333pt;}
.y2ab{bottom:795.973333pt;}
.ya9{bottom:798.213333pt;}
.y34{bottom:798.373333pt;}
.y78{bottom:798.533333pt;}
.y8{bottom:800.453333pt;}
.y285{bottom:804.293333pt;}
.y94{bottom:807.973333pt;}
.yb3{bottom:808.773333pt;}
.y276{bottom:808.933333pt;}
.y4f{bottom:811.013333pt;}
.y1da{bottom:811.173333pt;}
.y1af{bottom:811.493333pt;}
.y208{bottom:814.053333pt;}
.y113{bottom:814.373333pt;}
.yd1{bottom:819.333333pt;}
.ya8{bottom:822.053333pt;}
.y275{bottom:824.293333pt;}
.y284{bottom:827.973333pt;}
.y2aa{bottom:830.533333pt;}
.y224{bottom:831.813333pt;}
.y93{bottom:831.973333pt;}
.y7{bottom:832.293333pt;}
.yf7{bottom:832.613333pt;}
.y1ae{bottom:833.413333pt;}
.y1d9{bottom:835.173333pt;}
.y33{bottom:835.333333pt;}
.y207{bottom:837.893333pt;}
.y112{bottom:838.373333pt;}
.y274{bottom:839.653333pt;}
.y23c{bottom:845.093333pt;}
.y4e{bottom:845.573333pt;}
.ya7{bottom:846.053333pt;}
.y283{bottom:846.373333pt;}
.y2a9{bottom:851.653333pt;}
.y223{bottom:851.973333pt;}
.y273{bottom:852.293333pt;}
.y92{bottom:855.813333pt;}
.yd0{bottom:856.613333pt;}
.y1d8{bottom:859.013333pt;}
.y206{bottom:861.893333pt;}
.y111{bottom:862.213333pt;}
.y6{bottom:863.973333pt;}
.y282{bottom:864.773333pt;}
.y23b{bottom:865.413333pt;}
.ya6{bottom:869.893333pt;}
.y32{bottom:871.013333pt;}
.y272{bottom:871.333333pt;}
.y2a8{bottom:872.773333pt;}
.y91{bottom:879.813333pt;}
.y4c{bottom:880.133333pt;}
.ycf{bottom:880.453333pt;}
.y1d7{bottom:883.013333pt;}
.y281{bottom:883.173333pt;}
.y222{bottom:885.573333pt;}
.y110{bottom:886.213333pt;}
.y271{bottom:890.373333pt;}
.ya5{bottom:893.893333pt;}
.y2a7{bottom:894.053333pt;}
.y5{bottom:895.653333pt;}
.y280{bottom:901.573333pt;}
.y90{bottom:903.653333pt;}
.y31{bottom:903.973333pt;}
.yce{bottom:904.453333pt;}
.y221{bottom:905.893333pt;}
.y1d6{bottom:906.853333pt;}
.y270{bottom:909.413333pt;}
.y10f{bottom:910.053333pt;}
.y2a6{bottom:915.173333pt;}
.ya4{bottom:917.733333pt;}
.y4b{bottom:920.933333pt;}
.y76{bottom:924.933333pt;}
.y27f{bottom:925.413333pt;}
.y4{bottom:927.493333pt;}
.y8f{bottom:927.653333pt;}
.ycd{bottom:928.293333pt;}
.y26f{bottom:928.613333pt;}
.y1d5{bottom:930.853333pt;}
.y2a5{bottom:936.293333pt;}
.y220{bottom:939.333333pt;}
.ya3{bottom:941.733333pt;}
.y27e{bottom:943.813333pt;}
.y10e{bottom:947.333333pt;}
.y26b{bottom:947.653333pt;}
.y8e{bottom:951.493333pt;}
.y1d4{bottom:954.693333pt;}
.y2a4{bottom:955.013333pt;}
.y49{bottom:955.493333pt;}
.y3{bottom:958.213333pt;}
.y21f{bottom:959.653333pt;}
.ya2{bottom:965.573333pt;}
.y27d{bottom:967.973333pt;}
.y75{bottom:969.733333pt;}
.y10d{bottom:971.173333pt;}
.y8d{bottom:975.493333pt;}
.y1d3{bottom:978.693333pt;}
.y2{bottom:986.853333pt;}
.y26a{bottom:989.253333pt;}
.ya1{bottom:989.573333pt;}
.y2a3{bottom:992.293333pt;}
.y21e{bottom:993.253333pt;}
.y72{bottom:998.880000pt;}
.y10a{bottom:1008.480000pt;}
.y48{bottom:1010.720000pt;}
.ya0{bottom:1013.440000pt;}
.y10c{bottom:1014.560000pt;}
.y10b{bottom:1014.880000pt;}
.y1{bottom:1015.520000pt;}
.y2e{bottom:1062.080000pt;}
.h50{height:18.386667pt;}
.h51{height:18.420000pt;}
.h46{height:19.986667pt;}
.h4d{height:20.000000pt;}
.h4e{height:20.026667pt;}
.h38{height:21.106667pt;}
.h35{height:21.120000pt;}
.h39{height:21.138667pt;}
.h36{height:21.146667pt;}
.h37{height:21.266667pt;}
.h34{height:21.280000pt;}
.h3c{height:21.300000pt;}
.h2f{height:22.080000pt;}
.h1b{height:29.106667pt;}
.h1d{height:29.120000pt;}
.h1e{height:29.146667pt;}
.h6{height:30.880000pt;}
.h4c{height:33.918750pt;}
.h11{height:34.386667pt;}
.h13{height:34.400000pt;}
.hf{height:34.546667pt;}
.h14{height:34.560000pt;}
.h12{height:34.580000pt;}
.h17{height:35.506667pt;}
.h4f{height:36.786667pt;}
.h3b{height:37.106667pt;}
.h3e{height:37.746667pt;}
.h10{height:40.786667pt;}
.h42{height:42.226667pt;}
.h43{height:42.258667pt;}
.h3f{height:42.386667pt;}
.h40{height:42.396000pt;}
.h41{height:42.400000pt;}
.h1f{height:44.786667pt;}
.h1c{height:44.792000pt;}
.h3d{height:47.621250pt;}
.h27{height:52.134375pt;}
.h4b{height:52.478750pt;}
.h48{height:52.978667pt;}
.h49{height:52.980000pt;}
.h26{height:52.990313pt;}
.h47{height:53.535000pt;}
.h2{height:54.598989pt;}
.h4a{height:57.254375pt;}
.h19{height:57.375000pt;}
.h9{height:57.787500pt;}
.h2e{height:58.175625pt;}
.h31{height:58.897500pt;}
.h15{height:59.200000pt;}
.h3{height:62.812500pt;}
.h18{height:63.186667pt;}
.h20{height:63.843750pt;}
.h16{height:64.500000pt;}
.h52{height:65.781915pt;}
.h3a{height:66.383042pt;}
.h23{height:66.404375pt;}
.h8{height:67.520000pt;}
.h7{height:73.490625pt;}
.h32{height:74.815625pt;}
.he{height:75.465000pt;}
.h4{height:76.800000pt;}
.h1a{height:81.586667pt;}
.h22{height:81.600000pt;}
.h25{height:81.618667pt;}
.h21{height:81.620000pt;}
.h24{height:81.626667pt;}
.h28{height:81.937500pt;}
.hd{height:83.540625pt;}
.h5{height:85.785000pt;}
.hb{height:94.218750pt;}
.h30{height:99.135625pt;}
.h2c{height:124.817500pt;}
.h2b{height:130.577500pt;}
.h33{height:130.737500pt;}
.hc{height:163.680000pt;}
.h29{height:173.457500pt;}
.h2a{height:178.495625pt;}
.h2d{height:195.135625pt;}
.ha{height:204.840000pt;}
.h44{height:793.760000pt;}
.h45{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w42{width:50.546667pt;}
.w43{width:52.626667pt;}
.w35{width:52.632000pt;}
.w3b{width:52.636000pt;}
.w36{width:52.640000pt;}
.w3a{width:55.200000pt;}
.wd{width:56.306667pt;}
.wf{width:57.746667pt;}
.wb{width:57.906667pt;}
.w3f{width:59.026667pt;}
.w3e{width:68.466667pt;}
.w23{width:71.512000pt;}
.w2d{width:74.236000pt;}
.w28{width:74.240000pt;}
.w41{width:74.386667pt;}
.w39{width:74.418667pt;}
.w50{width:77.266667pt;}
.w4c{width:77.272000pt;}
.w34{width:77.312000pt;}
.w46{width:77.592000pt;}
.w30{width:77.632000pt;}
.w4a{width:77.906667pt;}
.w4e{width:81.440000pt;}
.w4d{width:81.458667pt;}
.w4f{width:81.472000pt;}
.w4b{width:81.778667pt;}
.w48{width:82.080000pt;}
.w47{width:82.098667pt;}
.w49{width:82.112000pt;}
.w2b{width:82.226667pt;}
.w2c{width:82.258667pt;}
.w21{width:85.746667pt;}
.w1d{width:85.752000pt;}
.w1f{width:85.760000pt;}
.w1e{width:85.778667pt;}
.w20{width:85.792000pt;}
.w22{width:85.938667pt;}
.w29{width:93.760000pt;}
.w27{width:93.778667pt;}
.w2a{width:93.792000pt;}
.w15{width:100.978667pt;}
.w18{width:103.232000pt;}
.w17{width:103.378667pt;}
.w13{width:103.872000pt;}
.w12{width:104.018667pt;}
.w19{width:111.666667pt;}
.w14{width:111.986667pt;}
.w44{width:112.306667pt;}
.w37{width:112.312000pt;}
.w38{width:112.320000pt;}
.w45{width:112.338667pt;}
.w40{width:112.340000pt;}
.w3c{width:112.352000pt;}
.w3d{width:112.360000pt;}
.w16{width:141.112000pt;}
.w11{width:141.432000pt;}
.w1a{width:150.872000pt;}
.w26{width:165.133333pt;}
.w24{width:168.653333pt;}
.w1b{width:170.106667pt;}
.w1c{width:179.373333pt;}
.w54{width:188.018667pt;}
.w55{width:188.026667pt;}
.w56{width:188.173333pt;}
.w25{width:188.186667pt;}
.w51{width:188.338667pt;}
.w53{width:188.493333pt;}
.w52{width:188.826667pt;}
.w3{width:261.973333pt;}
.w2{width:262.146667pt;}
.w6{width:283.373333pt;}
.w7{width:283.386667pt;}
.w8{width:283.573333pt;}
.w9{width:283.586667pt;}
.w10{width:290.946667pt;}
.w33{width:292.013333pt;}
.w32{width:294.586667pt;}
.w31{width:296.973333pt;}
.w5{width:299.386667pt;}
.w4{width:325.506667pt;}
.we{width:508.560000pt;}
.wa{width:509.040000pt;}
.wc{width:510.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2e{width:1122.560000pt;}
.w2f{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:5.440000pt;}
.x13{left:7.192000pt;}
.x82{left:8.466667pt;}
.x8{left:9.600000pt;}
.x66{left:10.872000pt;}
.x5{left:12.960000pt;}
.x3e{left:14.072000pt;}
.x63{left:15.192000pt;}
.x35{left:16.640000pt;}
.x5d{left:17.912000pt;}
.x68{left:18.872000pt;}
.x7c{left:19.840000pt;}
.x33{left:21.626667pt;}
.x65{left:22.880000pt;}
.x45{left:24.306667pt;}
.x77{left:25.266667pt;}
.x37{left:26.226667pt;}
.x3b{left:28.466667pt;}
.x39{left:29.626667pt;}
.x19{left:31.200000pt;}
.x43{left:32.306667pt;}
.x3a{left:33.600000pt;}
.x3d{left:36.146667pt;}
.x7d{left:37.106667pt;}
.x3c{left:38.386667pt;}
.x42{left:39.680000pt;}
.x44{left:40.960000pt;}
.x57{left:42.866667pt;}
.x67{left:44.146667pt;}
.x41{left:50.586667pt;}
.x3f{left:51.706667pt;}
.x60{left:53.906667pt;}
.x6{left:54.906667pt;}
.x40{left:56.306667pt;}
.x56{left:59.346667pt;}
.x87{left:60.466667pt;}
.x2b{left:63.226667pt;}
.x86{left:67.026667pt;}
.x89{left:67.986667pt;}
.x52{left:75.186667pt;}
.x88{left:79.840000pt;}
.x51{left:94.760000pt;}
.x5e{left:99.240000pt;}
.x2{left:113.472000pt;}
.x10{left:137.306667pt;}
.x71{left:141.146667pt;}
.x6f{left:142.400000pt;}
.x6d{left:144.946667pt;}
.xb{left:149.746667pt;}
.x4b{left:160.666667pt;}
.x12{left:169.786667pt;}
.x5f{left:171.400000pt;}
.x6c{left:172.840000pt;}
.x58{left:181.160000pt;}
.x7e{left:191.720000pt;}
.x48{left:199.866667pt;}
.x72{left:226.440000pt;}
.x11{left:230.586667pt;}
.x53{left:245.640000pt;}
.x14{left:250.586667pt;}
.x32{left:255.240000pt;}
.x64{left:265.826667pt;}
.x59{left:267.586667pt;}
.x20{left:271.266667pt;}
.x7f{left:273.826667pt;}
.x1d{left:280.226667pt;}
.x2c{left:296.386667pt;}
.xf{left:299.426667pt;}
.x1b{left:301.346667pt;}
.x84{left:302.466667pt;}
.x25{left:303.426667pt;}
.x21{left:304.386667pt;}
.x22{left:305.506667pt;}
.xc{left:321.986667pt;}
.x30{left:331.426667pt;}
.x3{left:333.506667pt;}
.x73{left:339.560000pt;}
.x61{left:340.706667pt;}
.x26{left:342.786667pt;}
.x23{left:345.666667pt;}
.x54{left:349.666667pt;}
.x15{left:353.026667pt;}
.x5a{left:353.986667pt;}
.x80{left:355.906667pt;}
.x27{left:358.306667pt;}
.x34{left:359.266667pt;}
.x31{left:362.946667pt;}
.x24{left:377.346667pt;}
.x2d{left:381.506667pt;}
.x28{left:382.626667pt;}
.x9{left:389.346667pt;}
.x16{left:393.186667pt;}
.xd{left:396.866667pt;}
.x29{left:398.786667pt;}
.x7{left:404.866667pt;}
.x4{left:409.506667pt;}
.x74{left:414.626667pt;}
.x2e{left:422.306667pt;}
.x2a{left:435.746667pt;}
.x81{left:437.986667pt;}
.x5b{left:440.386667pt;}
.x2f{left:442.013333pt;}
.xa{left:445.066667pt;}
.x36{left:463.146667pt;}
.x6e{left:470.466667pt;}
.x69{left:486.306667pt;}
.x85{left:491.306667pt;}
.x55{left:519.786667pt;}
.x75{left:523.746667pt;}
.x5c{left:526.826667pt;}
.x62{left:529.546667pt;}
.x6a{left:553.986667pt;}
.x6b{left:561.346667pt;}
.x38{left:578.026667pt;}
.x1a{left:591.933333pt;}
.x83{left:598.026667pt;}
.x1f{left:598.973333pt;}
.x47{left:613.053333pt;}
.x4e{left:621.253333pt;}
.x17{left:622.533333pt;}
.x18{left:623.493333pt;}
.xe{left:630.853333pt;}
.x76{left:636.906667pt;}
.x4d{left:642.213333pt;}
.x4f{left:668.453333pt;}
.x49{left:670.373333pt;}
.x4c{left:676.933333pt;}
.x4a{left:677.893333pt;}
.x1e{left:689.573333pt;}
.x50{left:691.493333pt;}
.x46{left:697.893333pt;}
.x1c{left:699.493333pt;}
.x78{left:706.026667pt;}
.x70{left:765.706667pt;}
.x79{left:818.973333pt;}
.x7a{left:932.133333pt;}
.x7b{left:1007.173333pt;}
}




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