
    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_212ce801c5897642d847642d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_946b46142af18c23cd9552c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b79c0d8ceb0753759cfb9c20.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_bf7e40852a62e98a8960775d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_17fa3462e4856316a580b9bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_537047baaebf784ba1267c62.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.695312;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_7f4cd6f03c188d5190313e28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_73433a610db1a82a81540343.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.057617;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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);}
.v6{vertical-align:-12.240000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v7{vertical-align:28.080000px;}
.v2{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.v3{vertical-align:40.320000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.567600px;}
.ls15{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.152400px;}
.ls16{letter-spacing:-0.036720px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.080400px;}
.lsb{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.148800px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.ls20{letter-spacing:2.476800px;}
.ls17{letter-spacing:3.196800px;}
.lse{letter-spacing:5.760000px;}
.ls21{letter-spacing:7.557840px;}
.ls10{letter-spacing:7.677840px;}
.ls18{letter-spacing:8.277840px;}
.ls13{letter-spacing:10.635840px;}
.ls14{letter-spacing:16.865280px;}
.ls22{letter-spacing:20.386560px;}
.ls11{letter-spacing:20.410560px;}
.ls23{letter-spacing:28.205040px;}
.ls19{letter-spacing:28.229040px;}
.ls1e{letter-spacing:34.841280px;}
.ls1c{letter-spacing:37.745280px;}
.lsd{letter-spacing:39.881280px;}
.lsf{letter-spacing:39.905280px;}
.ls12{letter-spacing:685.620000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws1{word-spacing:-19.431360px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.992400px;}
.ws4{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.761600px;}
.ws8{word-spacing:-10.576080px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:1.437120px;}
._23{margin-left:-5.497920px;}
._1c{margin-left:-4.438080px;}
._a{margin-left:-3.406320px;}
._6{margin-left:-2.330640px;}
._0{margin-left:-1.258560px;}
._2{width:1.374480px;}
._4{width:2.928240px;}
._5{width:4.063680px;}
._8{width:5.677200px;}
._9{width:6.902160px;}
._7{width:8.485920px;}
._d{width:10.039680px;}
._e{width:11.081280px;}
._16{width:12.189600px;}
._13{width:13.446000px;}
._17{width:15.379920px;}
._10{width:17.748720px;}
._f{width:18.764640px;}
._1a{width:20.136960px;}
._c{width:21.155040px;}
._b{width:22.410000px;}
._1b{width:23.580000px;}
._15{width:25.333920px;}
._11{width:26.354160px;}
._12{width:27.433440px;}
._26{width:29.344320px;}
._18{width:30.801600px;}
._19{width:31.861440px;}
._29{width:33.451200px;}
._28{width:34.516800px;}
._2d{width:36.034560px;}
._2c{width:37.226880px;}
._2a{width:42.989760px;}
._2b{width:44.049600px;}
._33{width:45.386640px;}
._30{width:48.240000px;}
._2f{width:49.373280px;}
._1d{width:51.173280px;}
._27{width:53.455680px;}
._21{width:56.189280px;}
._22{width:57.287280px;}
._32{width:58.603680px;}
._31{width:71.274240px;}
._2e{width:75.049920px;}
._25{width:80.009280px;}
._24{width:81.144000px;}
._1f{width:145.440000px;}
._20{width:199.440000px;}
._14{width:201.821520px;}
._1e{width:685.620000px;}
._1{width:1035.693120px;}
._3{width:1649.796000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:3.600000px;}
.y125{bottom:3.774000px;}
.yac{bottom:3.780000px;}
.ye7{bottom:3.810000px;}
.y1c3{bottom:3.825000px;}
.y19f{bottom:7.200000px;}
.y2{bottom:7.380000px;}
.y297{bottom:8.280000px;}
.yec{bottom:9.540000px;}
.y262{bottom:18.360000px;}
.ye2{bottom:22.500000px;}
.y1ef{bottom:22.545000px;}
.y14b{bottom:22.674000px;}
.y13a{bottom:22.680000px;}
.y14d{bottom:22.710000px;}
.y1c2{bottom:22.725000px;}
.y29e{bottom:23.400000px;}
.y148{bottom:41.580000px;}
.y1f4{bottom:41.610000px;}
.y17b{bottom:41.760000px;}
.ye0{bottom:42.300000px;}
.y269{bottom:42.474000px;}
.y138{bottom:42.480000px;}
.y6{bottom:45.900000px;}
.y17a{bottom:60.660000px;}
.y79{bottom:63.900000px;}
.y41{bottom:64.080000px;}
.y78{bottom:82.296000px;}
.y5{bottom:84.096000px;}
.y77{bottom:100.296000px;}
.y4{bottom:102.276000px;}
.y268{bottom:110.016000px;}
.y75{bottom:113.076000px;}
.y18e{bottom:113.796000px;}
.ye5{bottom:115.056000px;}
.y76{bottom:120.276000px;}
.y2c0{bottom:121.716000px;}
.y21b{bottom:127.116000px;}
.y26a{bottom:129.816000px;}
.y14a{bottom:130.356000px;}
.y74{bottom:132.156000px;}
.y18d{bottom:133.416000px;}
.ye4{bottom:134.856000px;}
.y40{bottom:140.256000px;}
.y2bf{bottom:140.616000px;}
.y170{bottom:143.316000px;}
.y21a{bottom:146.016000px;}
.y124{bottom:147.816000px;}
.y73{bottom:151.050000px;}
.y240{bottom:151.410000px;}
.y1be{bottom:154.110000px;}
.ye3{bottom:154.470000px;}
.y294{bottom:156.450000px;}
.y18c{bottom:156.810000px;}
.y3f{bottom:157.530000px;}
.y2be{bottom:159.690000px;}
.y16f{bottom:163.110000px;}
.y219{bottom:165.090000px;}
.y149{bottom:169.050000px;}
.y72{bottom:170.130000px;}
.y123{bottom:171.210000px;}
.y267{bottom:172.110000px;}
.yaf{bottom:172.650000px;}
.y1bd{bottom:173.190000px;}
.ydf{bottom:174.270000px;}
.y3e{bottom:174.810000px;}
.y293{bottom:175.530000px;}
.y18b{bottom:175.890000px;}
.y2bd{bottom:178.590000px;}
.yae{bottom:180.930000px;}
.y218{bottom:181.110000px;}
.y16e{bottom:182.730000px;}
.y1f2{bottom:188.130000px;}
.y71{bottom:189.030000px;}
.y122{bottom:190.290000px;}
.y23f{bottom:190.830000px;}
.y266{bottom:191.190000px;}
.y3d{bottom:192.090000px;}
.ye1{bottom:194.070000px;}
.y292{bottom:194.430000px;}
.y18a{bottom:194.790000px;}
.y2bc{bottom:197.670000px;}
.yad{bottom:202.350000px;}
.y217{bottom:204.330000px;}
.y147{bottom:207.750000px;}
.y70{bottom:207.930000px;}
.y121{bottom:209.190000px;}
.y3c{bottom:209.370000px;}
.y291{bottom:209.730000px;}
.y265{bottom:210.090000px;}
.y1bc{bottom:210.990000px;}
.y189{bottom:213.870000px;}
.y23e{bottom:214.230000px;}
.y2bb{bottom:216.570000px;}
.y290{bottom:218.010000px;}
.y16d{bottom:221.430000px;}
.yab{bottom:221.970000px;}
.y3b{bottom:226.470000px;}
.y1d2{bottom:226.830000px;}
.y6f{bottom:227.010000px;}
.y216{bottom:227.550000px;}
.y120{bottom:228.270000px;}
.y264{bottom:228.990000px;}
.y1bb{bottom:230.070000px;}
.y188{bottom:232.770000px;}
.y23d{bottom:233.310000px;}
.y2ba{bottom:235.470000px;}
.yde{bottom:236.370000px;}
.y28f{bottom:237.810000px;}
.y16c{bottom:241.230000px;}
.yaa{bottom:241.770000px;}
.y3a{bottom:243.750000px;}
.y6e{bottom:245.910000px;}
.y1ba{bottom:246.090000px;}
.y1d1{bottom:246.450000px;}
.y1f1{bottom:246.630000px;}
.y11f{bottom:247.170000px;}
.y215{bottom:247.350000px;}
.y263{bottom:248.070000px;}
.y28e{bottom:249.150000px;}
.y187{bottom:251.670000px;}
.y23c{bottom:252.210000px;}
.y2b9{bottom:254.550000px;}
.ydd{bottom:255.270000px;}
.y39{bottom:261.030000px;}
.ya9{bottom:261.570000px;}
.y11e{bottom:262.470000px;}
.y6d{bottom:264.990000px;}
.y146{bottom:265.530000px;}
.y1b9{bottom:265.890000px;}
.y214{bottom:266.970000px;}
.y11d{bottom:270.750000px;}
.y23b{bottom:271.110000px;}
.y2b8{bottom:273.450000px;}
.ydc{bottom:274.350000px;}
.y38{bottom:278.310000px;}
.y16b{bottom:279.930000px;}
.ya7{bottom:281.190000px;}
.y6c{bottom:283.890000px;}
.y1d0{bottom:285.150000px;}
.y1f0{bottom:285.330000px;}
.y1b8{bottom:285.510000px;}
.y186{bottom:286.050000px;}
.y23a{bottom:286.410000px;}
.y213{bottom:286.770000px;}
.y28d{bottom:289.650000px;}
.y11c{bottom:290.730000px;}
.y2b7{bottom:292.530000px;}
.ydb{bottom:293.250000px;}
.y185{bottom:294.330000px;}
.y239{bottom:294.690000px;}
.y37{bottom:295.590000px;}
.y11a{bottom:299.010000px;}
.y11b{bottom:302.070000px;}
.y6b{bottom:302.790000px;}
.y145{bottom:304.230000px;}
.ya6{bottom:304.590000px;}
.y1b7{bottom:305.310000px;}
.y28c{bottom:305.670000px;}
.y212{bottom:306.570000px;}
.y2b6{bottom:311.430000px;}
.yda{bottom:312.330000px;}
.y36{bottom:312.870000px;}
.y184{bottom:314.130000px;}
.y238{bottom:314.490000px;}
.y16a{bottom:318.630000px;}
.y6a{bottom:321.870000px;}
.y183{bottom:322.410000px;}
.y236{bottom:322.770000px;}
.ya5{bottom:323.490000px;}
.y119{bottom:323.670000px;}
.y1ee{bottom:324.030000px;}
.y237{bottom:325.830000px;}
.y211{bottom:326.190000px;}
.y1b6{bottom:328.710000px;}
.y35{bottom:329.970000px;}
.y2b5{bottom:330.330000px;}
.yd9{bottom:331.230000px;}
.y261{bottom:336.495000px;}
.y168{bottom:338.295000px;}
.y69{bottom:340.815000px;}
.ya4{bottom:342.615000px;}
.y118{bottom:342.795000px;}
.y144{bottom:342.975000px;}
.y182{bottom:345.855000px;}
.y210{bottom:346.035000px;}
.y34{bottom:347.295000px;}
.y235{bottom:347.475000px;}
.y1b5{bottom:347.655000px;}
.y2b4{bottom:349.455000px;}
.yd8{bottom:350.175000px;}
.y28b{bottom:350.895000px;}
.y260{bottom:356.295000px;}
.y169{bottom:358.095000px;}
.y117{bottom:358.275000px;}
.y68{bottom:359.895000px;}
.ya3{bottom:361.515000px;}
.y143{bottom:362.595000px;}
.y1ed{bottom:362.775000px;}
.y33{bottom:364.575000px;}
.y181{bottom:364.755000px;}
.y20f{bottom:365.655000px;}
.y234{bottom:366.375000px;}
.y116{bottom:366.555000px;}
.y1b4{bottom:366.735000px;}
.y2b3{bottom:368.355000px;}
.yd7{bottom:369.255000px;}
.y28a{bottom:370.695000px;}
.y25f{bottom:375.915000px;}
.y67{bottom:378.795000px;}
.ya2{bottom:380.595000px;}
.y180{bottom:380.775000px;}
.y32{bottom:381.855000px;}
.y233{bottom:382.395000px;}
.y1b3{bottom:385.635000px;}
.y2b2{bottom:387.435000px;}
.yd6{bottom:388.155000px;}
.y115{bottom:388.515000px;}
.y20e{bottom:389.055000px;}
.y289{bottom:390.495000px;}
.y114{bottom:396.795000px;}
.y66{bottom:397.875000px;}
.y31{bottom:399.135000px;}
.y25e{bottom:399.315000px;}
.ya1{bottom:399.495000px;}
.y167{bottom:400.395000px;}
.y17f{bottom:400.575000px;}
.y142{bottom:401.295000px;}
.y1b2{bottom:404.535000px;}
.y2b1{bottom:406.335000px;}
.yd5{bottom:407.235000px;}
.y232{bottom:407.955000px;}
.y20d{bottom:408.135000px;}
.y288{bottom:410.115000px;}
.y30{bottom:416.415000px;}
.y65{bottom:416.775000px;}
.y25d{bottom:418.395000px;}
.ya0{bottom:418.575000px;}
.y166{bottom:419.475000px;}
.y17e{bottom:420.375000px;}
.y113{bottom:420.735000px;}
.y1b1{bottom:423.615000px;}
.y2b0{bottom:425.235000px;}
.yd4{bottom:426.135000px;}
.y20c{bottom:427.035000px;}
.y231{bottom:427.755000px;}
.y287{bottom:429.915000px;}
.y2f{bottom:433.515000px;}
.y64{bottom:435.675000px;}
.y112{bottom:436.215000px;}
.y25c{bottom:437.295000px;}
.y9f{bottom:437.475000px;}
.y165{bottom:438.375000px;}
.y141{bottom:439.995000px;}
.y1b0{bottom:442.515000px;}
.y2af{bottom:444.315000px;}
.y111{bottom:444.495000px;}
.yd3{bottom:445.035000px;}
.y20b{bottom:445.935000px;}
.y230{bottom:447.375000px;}
.y286{bottom:449.535000px;}
.y2e{bottom:450.795000px;}
.y63{bottom:454.755000px;}
.y25b{bottom:456.195000px;}
.y9e{bottom:456.375000px;}
.y164{bottom:457.455000px;}
.y1af{bottom:458.535000px;}
.y17d{bottom:458.895000px;}
.y1ec{bottom:459.075000px;}
.y140{bottom:459.795000px;}
.y2ae{bottom:463.215000px;}
.yd2{bottom:464.115000px;}
.y20a{bottom:465.015000px;}
.y110{bottom:466.635000px;}
.y22f{bottom:467.175000px;}
.y2d{bottom:468.075000px;}
.y284{bottom:469.335000px;}
.y62{bottom:473.655000px;}
.y10f{bottom:474.915000px;}
.y25a{bottom:475.275000px;}
.y9d{bottom:475.455000px;}
.y163{bottom:476.355000px;}
.y1cf{bottom:478.695000px;}
.y13f{bottom:479.415000px;}
.yd1{bottom:480.135000px;}
.y1ae{bottom:481.935000px;}
.y2ad{bottom:482.295000px;}
.y209{bottom:483.915000px;}
.y2c{bottom:485.355000px;}
.y22e{bottom:486.795000px;}
.y285{bottom:488.955000px;}
.y61{bottom:492.735000px;}
.y259{bottom:494.175000px;}
.y9c{bottom:494.355000px;}
.y162{bottom:495.255000px;}
.y17c{bottom:497.595000px;}
.y1eb{bottom:497.775000px;}
.y10e{bottom:498.855000px;}
.yd0{bottom:499.935000px;}
.y2ac{bottom:501.195000px;}
.y2b{bottom:502.635000px;}
.y208{bottom:502.995000px;}
.y1ad{bottom:505.155000px;}
.y22d{bottom:506.595000px;}
.y60{bottom:511.635000px;}
.y258{bottom:513.255000px;}
.y9b{bottom:513.435000px;}
.y10d{bottom:514.335000px;}
.y1ce{bottom:517.395000px;}
.y1ea{bottom:517.575000px;}
.y13e{bottom:518.115000px;}
.ycf{bottom:519.555000px;}
.y2a{bottom:519.735000px;}
.y2ab{bottom:520.095000px;}
.y207{bottom:521.895000px;}
.y10c{bottom:522.615000px;}
.y1ac{bottom:524.775000px;}
.y22c{bottom:526.395000px;}
.y161{bottom:529.635000px;}
.y5f{bottom:530.535000px;}
.y283{bottom:531.435000px;}
.y257{bottom:532.155000px;}
.y9a{bottom:532.335000px;}
.y179{bottom:536.295000px;}
.y29{bottom:537.015000px;}
.y13d{bottom:537.915000px;}
.y2aa{bottom:539.175000px;}
.yce{bottom:539.355000px;}
.y1ab{bottom:544.575000px;}
.y10b{bottom:544.935000px;}
.y22a{bottom:546.015000px;}
.y5e{bottom:549.615000px;}
.y282{bottom:550.335000px;}
.y256{bottom:551.055000px;}
.y99{bottom:551.235000px;}
.y10a{bottom:553.215000px;}
.y28{bottom:554.295000px;}
.y1cd{bottom:556.095000px;}
.y1e9{bottom:556.275000px;}
.y160{bottom:557.715000px;}
.y2a9{bottom:558.075000px;}
.ycd{bottom:558.975000px;}
.y1aa{bottom:564.195000px;}
.y22b{bottom:565.815000px;}
.y15f{bottom:565.995000px;}
.y255{bottom:566.355000px;}
.y5d{bottom:568.515000px;}
.y281{bottom:569.415000px;}
.y98{bottom:570.315000px;}
.y27{bottom:571.575000px;}
.y254{bottom:574.635000px;}
.y13c{bottom:576.615000px;}
.y109{bottom:577.155000px;}
.y206{bottom:577.335000px;}
.ycc{bottom:578.775000px;}
.y1a9{bottom:583.995000px;}
.y5c{bottom:587.595000px;}
.y280{bottom:588.315000px;}
.y26{bottom:588.855000px;}
.y97{bottom:589.215000px;}
.y15e{bottom:589.395000px;}
.y108{bottom:592.635000px;}
.y253{bottom:594.615000px;}
.y1cc{bottom:594.795000px;}
.y2a8{bottom:596.055000px;}
.y205{bottom:597.135000px;}
.y107{bottom:600.915000px;}
.ycb{bottom:602.175000px;}
.y251{bottom:602.895000px;}
.y1a8{bottom:603.825000px;}
.y252{bottom:605.985000px;}
.y25{bottom:606.165000px;}
.y5b{bottom:606.525000px;}
.y27f{bottom:607.245000px;}
.y229{bottom:608.145000px;}
.y96{bottom:608.325000px;}
.y178{bottom:613.005000px;}
.y1e8{bottom:614.625000px;}
.y2a7{bottom:614.985000px;}
.y13b{bottom:615.345000px;}
.y204{bottom:620.565000px;}
.yca{bottom:621.105000px;}
.y106{bottom:623.085000px;}
.y24{bottom:623.265000px;}
.y1a7{bottom:623.445000px;}
.y5a{bottom:625.425000px;}
.y27e{bottom:626.325000px;}
.y95{bottom:627.225000px;}
.y250{bottom:627.585000px;}
.y105{bottom:631.365000px;}
.y177{bottom:632.805000px;}
.y1cb{bottom:633.525000px;}
.y2a6{bottom:634.065000px;}
.y1e7{bottom:634.425000px;}
.y137{bottom:634.965000px;}
.y203{bottom:639.465000px;}
.yc9{bottom:640.185000px;}
.y23{bottom:640.545000px;}
.y1a6{bottom:643.245000px;}
.y59{bottom:644.505000px;}
.y27d{bottom:645.225000px;}
.y94{bottom:646.125000px;}
.y15d{bottom:646.305000px;}
.y24f{bottom:646.665000px;}
.y2a5{bottom:652.965000px;}
.y1ca{bottom:653.325000px;}
.y139{bottom:654.765000px;}
.y104{bottom:655.305000px;}
.y22{bottom:657.825000px;}
.y202{bottom:658.545000px;}
.yc8{bottom:659.085000px;}
.y27c{bottom:661.245000px;}
.y24e{bottom:662.685000px;}
.y58{bottom:663.405000px;}
.y228{bottom:665.025000px;}
.y93{bottom:665.205000px;}
.y1a5{bottom:666.645000px;}
.y103{bottom:670.785000px;}
.y176{bottom:671.505000px;}
.y2a4{bottom:672.045000px;}
.y1e6{bottom:673.125000px;}
.y21{bottom:675.105000px;}
.y201{bottom:677.445000px;}
.yc7{bottom:677.985000px;}
.y102{bottom:679.065000px;}
.y27b{bottom:681.045000px;}
.y57{bottom:682.485000px;}
.y92{bottom:684.105000px;}
.y15c{bottom:684.285000px;}
.y1a4{bottom:685.545000px;}
.y24d{bottom:688.245000px;}
.y2a3{bottom:690.945000px;}
.y1c9{bottom:692.025000px;}
.y20{bottom:692.385000px;}
.y1e5{bottom:692.745000px;}
.y200{bottom:696.525000px;}
.yc6{bottom:697.065000px;}
.y15b{bottom:699.765000px;}
.y27a{bottom:700.845000px;}
.y101{bottom:701.025000px;}
.y56{bottom:701.385000px;}
.y227{bottom:703.005000px;}
.y91{bottom:703.185000px;}
.y1a3{bottom:704.625000px;}
.y24c{bottom:707.865000px;}
.y15a{bottom:708.045000px;}
.y100{bottom:709.305000px;}
.y1f{bottom:709.665000px;}
.y2a2{bottom:710.025000px;}
.y1ff{bottom:715.425000px;}
.yc5{bottom:715.965000px;}
.y136{bottom:716.145000px;}
.y55{bottom:720.285000px;}
.y279{bottom:720.465000px;}
.y90{bottom:722.085000px;}
.y1a2{bottom:723.525000px;}
.y1e{bottom:726.765000px;}
.y24b{bottom:727.665000px;}
.y2a1{bottom:728.925000px;}
.y175{bottom:729.105000px;}
.y1c8{bottom:730.725000px;}
.y159{bottom:731.265000px;}
.y1e4{bottom:731.445000px;}
.yff{bottom:733.425000px;}
.y1fe{bottom:734.325000px;}
.yc4{bottom:735.045000px;}
.y54{bottom:739.365000px;}
.y278{bottom:740.265000px;}
.y8f{bottom:740.985000px;}
.y1a1{bottom:742.425000px;}
.y1d{bottom:744.045000px;}
.y2a0{bottom:744.945000px;}
.y158{bottom:747.285000px;}
.yfe{bottom:748.905000px;}
.y1fd{bottom:749.805000px;}
.y1c7{bottom:750.345000px;}
.yc3{bottom:750.525000px;}
.y135{bottom:754.125000px;}
.yfd{bottom:757.185000px;}
.y1fc{bottom:758.085000px;}
.y53{bottom:758.265000px;}
.y1a0{bottom:758.445000px;}
.yc2{bottom:758.805000px;}
.y226{bottom:759.885000px;}
.y8e{bottom:760.065000px;}
.y1c{bottom:761.325000px;}
.y157{bottom:767.085000px;}
.y1c6{bottom:770.145000px;}
.y134{bottom:773.025000px;}
.y52{bottom:777.345000px;}
.y1fb{bottom:777.885000px;}
.y1b{bottom:778.605000px;}
.y8d{bottom:778.965000px;}
.yfc{bottom:779.145000px;}
.y277{bottom:779.685000px;}
.y19e{bottom:781.845000px;}
.yc1{bottom:782.025000px;}
.y29d{bottom:783.645000px;}
.y1fa{bottom:786.165000px;}
.y156{bottom:786.885000px;}
.yfb{bottom:787.425000px;}
.y174{bottom:787.605000px;}
.y1e2{bottom:789.945000px;}
.y133{bottom:791.925000px;}
.y225{bottom:794.985000px;}
.y1a{bottom:795.885000px;}
.y51{bottom:796.245000px;}
.y8c{bottom:798.045000px;}
.y276{bottom:799.305000px;}
.yc0{bottom:801.105000px;}
.y29f{bottom:803.445000px;}
.y19d{bottom:805.065000px;}
.y155{bottom:806.505000px;}
.y1c5{bottom:808.845000px;}
.y1f9{bottom:809.385000px;}
.y1e3{bottom:809.565000px;}
.y132{bottom:811.005000px;}
.yfa{bottom:811.365000px;}
.y19{bottom:812.985000px;}
.y224{bottom:814.785000px;}
.y50{bottom:815.145000px;}
.y8b{bottom:816.945000px;}
.ybf{bottom:820.005000px;}
.y275{bottom:822.705000px;}
.y19c{bottom:824.685000px;}
.y249{bottom:826.305000px;}
.yf9{bottom:827.025000px;}
.y1c4{bottom:828.465000px;}
.y131{bottom:829.905000px;}
.y18{bottom:830.265000px;}
.y4f{bottom:834.225000px;}
.y223{bottom:834.405000px;}
.yf8{bottom:835.305000px;}
.y8a{bottom:835.845000px;}
.ybe{bottom:838.905000px;}
.y274{bottom:841.785000px;}
.y29c{bottom:842.145000px;}
.y19b{bottom:844.485000px;}
.y154{bottom:845.205000px;}
.y24a{bottom:845.925000px;}
.y17{bottom:847.545000px;}
.y130{bottom:848.985000px;}
.y1e1{bottom:852.045000px;}
.y4e{bottom:853.125000px;}
.y222{bottom:854.205000px;}
.y89{bottom:854.925000px;}
.ybd{bottom:855.105000px;}
.yf7{bottom:857.265000px;}
.y273{bottom:860.685000px;}
.y19a{bottom:864.285000px;}
.y16{bottom:864.825000px;}
.yf6{bottom:865.545000px;}
.y1c1{bottom:867.165000px;}
.y12f{bottom:867.885000px;}
.y1e0{bottom:870.990000px;}
.y4d{bottom:872.250000px;}
.y88{bottom:873.870000px;}
.ybc{bottom:874.770000px;}
.y221{bottom:877.650000px;}
.y272{bottom:879.810000px;}
.y15{bottom:882.510000px;}
.y153{bottom:883.950000px;}
.y29b{bottom:884.490000px;}
.y12e{bottom:886.830000px;}
.yf5{bottom:888.270000px;}
.y248{bottom:888.450000px;}
.y1df{bottom:890.070000px;}
.y4c{bottom:891.150000px;}
.y87{bottom:892.950000px;}
.ybb{bottom:894.570000px;}
.y271{bottom:895.110000px;}
.yf4{bottom:896.550000px;}
.y14{bottom:901.050000px;}
.y270{bottom:903.390000px;}
.y199{bottom:903.750000px;}
.y12d{bottom:905.910000px;}
.y247{bottom:907.350000px;}
.y1de{bottom:908.970000px;}
.y4b{bottom:910.230000px;}
.y86{bottom:911.850000px;}
.yba{bottom:914.190000px;}
.y220{bottom:915.450000px;}
.y13{bottom:918.330000px;}
.yf3{bottom:920.490000px;}
.y29a{bottom:922.470000px;}
.y173{bottom:922.650000px;}
.y198{bottom:923.370000px;}
.y12c{bottom:924.810000px;}
.y1bf{bottom:925.710000px;}
.y246{bottom:926.430000px;}
.y1dd{bottom:927.870000px;}
.y4a{bottom:929.130000px;}
.y85{bottom:930.930000px;}
.y26e{bottom:931.650000px;}
.yb9{bottom:933.990000px;}
.y21f{bottom:934.530000px;}
.y26f{bottom:934.710000px;}
.y12{bottom:935.610000px;}
.yf2{bottom:939.570000px;}
.y299{bottom:941.370000px;}
.y152{bottom:941.730000px;}
.y1f8{bottom:942.450000px;}
.y197{bottom:943.170000px;}
.y12b{bottom:943.890000px;}
.y1c0{bottom:945.330000px;}
.y1dc{bottom:946.950000px;}
.y49{bottom:948.030000px;}
.y84{bottom:949.830000px;}
.y21e{bottom:950.550000px;}
.y11{bottom:953.250000px;}
.yb8{bottom:953.790000px;}
.y26d{bottom:956.310000px;}
.yf1{bottom:958.470000px;}
.y298{bottom:960.450000px;}
.y151{bottom:961.350000px;}
.y1db{bottom:962.250000px;}
.y12a{bottom:962.790000px;}
.y245{bottom:964.230000px;}
.y196{bottom:966.570000px;}
.y48{bottom:967.110000px;}
.y83{bottom:968.730000px;}
.y1da{bottom:970.530000px;}
.y10{bottom:972.150000px;}
.y21d{bottom:973.770000px;}
.y26c{bottom:975.210000px;}
.y296{bottom:976.470000px;}
.yb7{bottom:977.190000px;}
.yf0{bottom:977.550000px;}
.y172{bottom:980.250000px;}
.y1f7{bottom:981.150000px;}
.y129{bottom:981.690000px;}
.y244{bottom:983.310000px;}
.y195{bottom:985.470000px;}
.y47{bottom:986.010000px;}
.y82{bottom:987.810000px;}
.y1d9{bottom:990.330000px;}
.y26b{bottom:991.230000px;}
.yf{bottom:991.590000px;}
.yb6{bottom:996.090000px;}
.yef{bottom:996.450000px;}
.y21c{bottom:996.990000px;}
.y1d8{bottom:998.610000px;}
.y150{bottom:1000.050000px;}
.y128{bottom:1000.770000px;}
.y243{bottom:1002.210000px;}
.y194{bottom:1004.550000px;}
.y46{bottom:1005.090000px;}
.y81{bottom:1006.710000px;}
.ye{bottom:1014.090000px;}
.yb5{bottom:1014.990000px;}
.yee{bottom:1015.350000px;}
.y127{bottom:1016.790000px;}
.y171{bottom:1018.950000px;}
.y295{bottom:1020.570000px;}
.y242{bottom:1021.290000px;}
.y1d7{bottom:1022.010000px;}
.y193{bottom:1023.450000px;}
.y45{bottom:1023.990000px;}
.y80{bottom:1025.790000px;}
.yb4{bottom:1034.070000px;}
.yed{bottom:1034.430000px;}
.yd{bottom:1036.590000px;}
.y1f6{bottom:1038.750000px;}
.y241{bottom:1040.190000px;}
.y1d6{bottom:1040.910000px;}
.y192{bottom:1042.350000px;}
.y44{bottom:1042.890000px;}
.y7f{bottom:1044.690000px;}
.yeb{bottom:1050.450000px;}
.yb3{bottom:1052.970000px;}
.y126{bottom:1056.210000px;}
.y1d5{bottom:1056.930000px;}
.yc{bottom:1057.290000px;}
.y14f{bottom:1057.650000px;}
.y1f5{bottom:1058.550000px;}
.y43{bottom:1060.710000px;}
.y191{bottom:1061.430000px;}
.y7e{bottom:1063.590000px;}
.yb{bottom:1071.870000px;}
.yb2{bottom:1072.410000px;}
.y42{bottom:1074.570000px;}
.yea{bottom:1076.010000px;}
.y1d4{bottom:1076.730000px;}
.y14e{bottom:1077.450000px;}
.y190{bottom:1080.330000px;}
.y7d{bottom:1082.670000px;}
.yb1{bottom:1087.710000px;}
.ya{bottom:1089.150000px;}
.ye9{bottom:1095.630000px;}
.yb0{bottom:1095.990000px;}
.y1d3{bottom:1096.350000px;}
.y1f3{bottom:1097.250000px;}
.y18f{bottom:1099.410000px;}
.y7c{bottom:1101.570000px;}
.y9{bottom:1106.430000px;}
.ye8{bottom:1115.430000px;}
.y14c{bottom:1116.150000px;}
.y7b{bottom:1120.650000px;}
.y8{bottom:1123.530000px;}
.ye6{bottom:1135.050000px;}
.y7a{bottom:1139.580000px;}
.y7{bottom:1140.840000px;}
.y3{bottom:1167.120000px;}
.y1{bottom:1182.780000px;}
.h12{height:18.900000px;}
.h18{height:18.936000px;}
.h13{height:19.080000px;}
.h1c{height:19.116000px;}
.h29{height:22.500000px;}
.h2e{height:23.580000px;}
.h1d{height:24.840000px;}
.h2{height:26.100000px;}
.h2d{height:33.660000px;}
.h7{height:34.036523px;}
.h1b{height:37.800000px;}
.h26{height:37.836000px;}
.h23{height:37.980000px;}
.h24{height:38.016000px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h10{height:44.860781px;}
.hd{height:45.024258px;}
.ha{height:46.251562px;}
.hb{height:46.736719px;}
.h11{height:48.224531px;}
.he{height:49.255313px;}
.h19{height:49.906406px;}
.h3{height:50.068125px;}
.h25{height:50.715000px;}
.hf{height:54.596250px;}
.h9{height:54.864844px;}
.h20{height:55.825312px;}
.h27{height:56.880000px;}
.h2a{height:56.916000px;}
.h1a{height:57.600000px;}
.h2c{height:57.636000px;}
.h22{height:57.780000px;}
.h2b{height:57.816000px;}
.h8{height:58.585781px;}
.h17{height:58.705312px;}
.h4{height:65.884219px;}
.h21{height:68.735391px;}
.h28{height:75.996000px;}
.h15{height:79.371563px;}
.h14{height:79.535391px;}
.h1f{height:79.655391px;}
.h1e{height:79.715391px;}
.h16{height:80.975391px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:30.060000px;}
.w13{width:32.940000px;}
.w3c{width:33.120000px;}
.wf{width:34.200000px;}
.w3a{width:34.236000px;}
.w14{width:36.360000px;}
.w3d{width:36.396000px;}
.wa{width:37.440000px;}
.w22{width:37.620000px;}
.w2d{width:37.800000px;}
.w31{width:38.340000px;}
.w3b{width:38.520000px;}
.w10{width:38.700000px;}
.w1d{width:39.420000px;}
.w11{width:39.780000px;}
.w12{width:39.816000px;}
.w25{width:46.440000px;}
.w2a{width:46.620000px;}
.w2{width:61.200000px;}
.w39{width:73.440000px;}
.wd{width:73.620000px;}
.w47{width:83.340000px;}
.w45{width:83.556000px;}
.w46{width:83.700000px;}
.w48{width:84.636000px;}
.w30{width:93.096000px;}
.w7{width:93.420000px;}
.we{width:94.536000px;}
.w1b{width:99.720000px;}
.w20{width:102.600000px;}
.w21{width:107.676000px;}
.w1c{width:108.576000px;}
.w3e{width:113.940000px;}
.w42{width:118.980000px;}
.w43{width:122.436000px;}
.w37{width:129.060000px;}
.wb{width:129.096000px;}
.w33{width:140.616000px;}
.w27{width:140.976000px;}
.w2b{width:141.156000px;}
.w28{width:154.470000px;}
.w44{width:167.970000px;}
.w35{width:168.870000px;}
.w26{width:181.470000px;}
.w24{width:186.690000px;}
.w6{width:188.310000px;}
.w2f{width:193.530000px;}
.w41{width:197.130000px;}
.w17{width:197.490000px;}
.w18{width:197.850000px;}
.w1a{width:209.010000px;}
.w9{width:209.370000px;}
.w1f{width:210.990000px;}
.w34{width:228.990000px;}
.w8{width:235.515000px;}
.w3f{width:240.735000px;}
.w49{width:242.310000px;}
.wc{width:256.170000px;}
.w38{width:256.215000px;}
.w5{width:289.155000px;}
.w1e{width:315.255000px;}
.w23{width:341.175000px;}
.w19{width:343.515000px;}
.w32{width:353.055000px;}
.w40{width:355.935000px;}
.w2e{width:367.095000px;}
.w36{width:370.335000px;}
.w29{width:370.515000px;}
.w2c{width:370.695000px;}
.w16{width:424.335000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x45{left:10.800000px;}
.x42{left:12.240000px;}
.x2{left:13.860000px;}
.x3e{left:15.120000px;}
.x7f{left:18.720000px;}
.x3a{left:21.060000px;}
.x93{left:22.140000px;}
.x74{left:24.300000px;}
.x47{left:28.440000px;}
.x3c{left:30.825000px;}
.x95{left:33.480000px;}
.x4c{left:34.965000px;}
.x1d{left:36.540000px;}
.x49{left:37.800000px;}
.x48{left:39.105000px;}
.x4a{left:40.500000px;}
.x21{left:42.480000px;}
.x37{left:44.640000px;}
.x8a{left:46.794000px;}
.x7c{left:48.240000px;}
.x46{left:49.320000px;}
.x2e{left:51.525000px;}
.x8c{left:52.734000px;}
.x7b{left:54.720000px;}
.x7a{left:59.220000px;}
.x8d{left:60.345000px;}
.x5b{left:61.785000px;}
.x23{left:65.880000px;}
.x8e{left:67.185000px;}
.x96{left:75.630000px;}
.x2f{left:77.040000px;}
.x18{left:78.480000px;}
.x27{left:79.740000px;}
.x26{left:82.620000px;}
.x1f{left:85.365000px;}
.x30{left:87.525000px;}
.x25{left:88.920000px;}
.x19{left:90.000000px;}
.x31{left:91.665000px;}
.x22{left:94.365000px;}
.x32{left:95.805000px;}
.x24{left:98.505000px;}
.x28{left:102.645000px;}
.x1{left:108.036000px;}
.x75{left:111.275987px;}
.x7d{left:113.795987px;}
.x87{left:115.595987px;}
.x7e{left:117.585000px;}
.x16{left:118.845000px;}
.x7{left:120.095987px;}
.x6{left:121.175987px;}
.x34{left:125.315987px;}
.x10{left:128.375987px;}
.x55{left:129.995987px;}
.x12{left:135.035987px;}
.x77{left:136.475987px;}
.xa{left:137.555987px;}
.x78{left:140.075987px;}
.x76{left:141.515987px;}
.x81{left:147.096000px;}
.x89{left:148.896000px;}
.xe{left:150.509987px;}
.x80{left:153.225000px;}
.x11{left:155.369987px;}
.x13{left:162.029987px;}
.x65{left:163.110000px;}
.x3{left:169.230000px;}
.x6e{left:174.090000px;}
.xc{left:175.709987px;}
.x6a{left:183.630000px;}
.x36{left:187.950000px;}
.x5c{left:189.029987px;}
.x15{left:192.630000px;}
.x4b{left:194.799000px;}
.x66{left:201.450000px;}
.x61{left:203.250000px;}
.x58{left:204.689987px;}
.x60{left:205.949987px;}
.x68{left:209.730000px;}
.x6d{left:215.309987px;}
.x5d{left:219.449987px;}
.x5f{left:223.049987px;}
.x5e{left:227.729987px;}
.x64{left:231.689987px;}
.x4d{left:240.149987px;}
.x4e{left:245.189987px;}
.x67{left:247.529987px;}
.x52{left:249.329987px;}
.x8{left:252.029987px;}
.x50{left:253.469987px;}
.x1e{left:256.890000px;}
.x4f{left:260.309987px;}
.x9{left:261.749987px;}
.x53{left:262.829987px;}
.x8f{left:263.909987px;}
.x51{left:270.029987px;}
.x82{left:276.870000px;}
.x2d{left:279.434987px;}
.x14{left:287.174987px;}
.x54{left:293.294987px;}
.x79{left:304.095000px;}
.x84{left:311.835000px;}
.x38{left:317.775000px;}
.x88{left:339.014987px;}
.x56{left:347.835000px;}
.x85{left:351.075000px;}
.x3d{left:352.695000px;}
.x29{left:354.674987px;}
.x1c{left:357.374987px;}
.xb{left:386.534987px;}
.x35{left:390.494987px;}
.x3f{left:392.115000px;}
.x90{left:399.315000px;}
.x1a{left:407.414987px;}
.x6b{left:413.175000px;}
.x2a{left:416.054987px;}
.x33{left:417.854987px;}
.xd{left:420.734987px;}
.x40{left:432.615000px;}
.x5{left:446.474987px;}
.x2b{left:454.754987px;}
.x1b{left:466.484987px;}
.x41{left:473.145000px;}
.x17{left:482.505000px;}
.x92{left:483.585000px;}
.x20{left:493.305000px;}
.x86{left:503.025000px;}
.x8b{left:505.185000px;}
.x43{left:506.805000px;}
.x6f{left:515.985000px;}
.x62{left:519.225000px;}
.x59{left:520.305000px;}
.x72{left:528.405000px;}
.x69{left:533.805000px;}
.x70{left:541.905000px;}
.x44{left:543.885000px;}
.x57{left:546.045000px;}
.x6c{left:555.045000px;}
.x91{left:568.185000px;}
.x39{left:574.665000px;}
.x83{left:608.145000px;}
.x5a{left:620.745000px;}
.x63{left:622.545000px;}
.x73{left:628.845000px;}
.x71{left:642.345000px;}
.x3b{left:649.005000px;}
.x94{left:652.425000px;}
.x2c{left:692.969987px;}
.xf{left:785.129987px;}
@media print{
.v6{vertical-align:-10.880000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v7{vertical-align:24.960000pt;}
.v2{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.v3{vertical-align:35.840000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.504533pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.135467pt;}
.ls16{letter-spacing:-0.032640pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.071467pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.132267pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls20{letter-spacing:2.201600pt;}
.ls17{letter-spacing:2.841600pt;}
.lse{letter-spacing:5.120000pt;}
.ls21{letter-spacing:6.718080pt;}
.ls10{letter-spacing:6.824747pt;}
.ls18{letter-spacing:7.358080pt;}
.ls13{letter-spacing:9.454080pt;}
.ls14{letter-spacing:14.991360pt;}
.ls22{letter-spacing:18.121387pt;}
.ls11{letter-spacing:18.142720pt;}
.ls23{letter-spacing:25.071147pt;}
.ls19{letter-spacing:25.092480pt;}
.ls1e{letter-spacing:30.970027pt;}
.ls1c{letter-spacing:33.551360pt;}
.lsd{letter-spacing:35.450027pt;}
.lsf{letter-spacing:35.471360pt;}
.ls12{letter-spacing:609.440000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.272320pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.215467pt;}
.ws4{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.565867pt;}
.ws8{word-spacing:-9.400960pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:1.277440pt;}
._23{margin-left:-4.887040pt;}
._1c{margin-left:-3.944960pt;}
._a{margin-left:-3.027840pt;}
._6{margin-left:-2.071680pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.221760pt;}
._4{width:2.602880pt;}
._5{width:3.612160pt;}
._8{width:5.046400pt;}
._9{width:6.135253pt;}
._7{width:7.543040pt;}
._d{width:8.924160pt;}
._e{width:9.850027pt;}
._16{width:10.835200pt;}
._13{width:11.952000pt;}
._17{width:13.671040pt;}
._10{width:15.776640pt;}
._f{width:16.679680pt;}
._1a{width:17.899520pt;}
._c{width:18.804480pt;}
._b{width:19.920000pt;}
._1b{width:20.960000pt;}
._15{width:22.519040pt;}
._11{width:23.425920pt;}
._12{width:24.385280pt;}
._26{width:26.083840pt;}
._18{width:27.379200pt;}
._19{width:28.321280pt;}
._29{width:29.734400pt;}
._28{width:30.681600pt;}
._2d{width:32.030720pt;}
._2c{width:33.090560pt;}
._2a{width:38.213120pt;}
._2b{width:39.155200pt;}
._33{width:40.343680pt;}
._30{width:42.880000pt;}
._2f{width:43.887360pt;}
._1d{width:45.487360pt;}
._27{width:47.516160pt;}
._21{width:49.946027pt;}
._22{width:50.922027pt;}
._32{width:52.092160pt;}
._31{width:63.354880pt;}
._2e{width:66.711040pt;}
._25{width:71.119360pt;}
._24{width:72.128000pt;}
._1f{width:129.280000pt;}
._20{width:177.280000pt;}
._14{width:179.396907pt;}
._1e{width:609.440000pt;}
._1{width:920.616107pt;}
._3{width:1466.485333pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:3.200000pt;}
.y125{bottom:3.354667pt;}
.yac{bottom:3.360000pt;}
.ye7{bottom:3.386667pt;}
.y1c3{bottom:3.400000pt;}
.y19f{bottom:6.400000pt;}
.y2{bottom:6.560000pt;}
.y297{bottom:7.360000pt;}
.yec{bottom:8.480000pt;}
.y262{bottom:16.320000pt;}
.ye2{bottom:20.000000pt;}
.y1ef{bottom:20.040000pt;}
.y14b{bottom:20.154667pt;}
.y13a{bottom:20.160000pt;}
.y14d{bottom:20.186667pt;}
.y1c2{bottom:20.200000pt;}
.y29e{bottom:20.800000pt;}
.y148{bottom:36.960000pt;}
.y1f4{bottom:36.986667pt;}
.y17b{bottom:37.120000pt;}
.ye0{bottom:37.600000pt;}
.y269{bottom:37.754667pt;}
.y138{bottom:37.760000pt;}
.y6{bottom:40.800000pt;}
.y17a{bottom:53.920000pt;}
.y79{bottom:56.800000pt;}
.y41{bottom:56.960000pt;}
.y78{bottom:73.152000pt;}
.y5{bottom:74.752000pt;}
.y77{bottom:89.152000pt;}
.y4{bottom:90.912000pt;}
.y268{bottom:97.792000pt;}
.y75{bottom:100.512000pt;}
.y18e{bottom:101.152000pt;}
.ye5{bottom:102.272000pt;}
.y76{bottom:106.912000pt;}
.y2c0{bottom:108.192000pt;}
.y21b{bottom:112.992000pt;}
.y26a{bottom:115.392000pt;}
.y14a{bottom:115.872000pt;}
.y74{bottom:117.472000pt;}
.y18d{bottom:118.592000pt;}
.ye4{bottom:119.872000pt;}
.y40{bottom:124.672000pt;}
.y2bf{bottom:124.992000pt;}
.y170{bottom:127.392000pt;}
.y21a{bottom:129.792000pt;}
.y124{bottom:131.392000pt;}
.y73{bottom:134.266667pt;}
.y240{bottom:134.586667pt;}
.y1be{bottom:136.986667pt;}
.ye3{bottom:137.306667pt;}
.y294{bottom:139.066667pt;}
.y18c{bottom:139.386667pt;}
.y3f{bottom:140.026667pt;}
.y2be{bottom:141.946667pt;}
.y16f{bottom:144.986667pt;}
.y219{bottom:146.746667pt;}
.y149{bottom:150.266667pt;}
.y72{bottom:151.226667pt;}
.y123{bottom:152.186667pt;}
.y267{bottom:152.986667pt;}
.yaf{bottom:153.466667pt;}
.y1bd{bottom:153.946667pt;}
.ydf{bottom:154.906667pt;}
.y3e{bottom:155.386667pt;}
.y293{bottom:156.026667pt;}
.y18b{bottom:156.346667pt;}
.y2bd{bottom:158.746667pt;}
.yae{bottom:160.826667pt;}
.y218{bottom:160.986667pt;}
.y16e{bottom:162.426667pt;}
.y1f2{bottom:167.226667pt;}
.y71{bottom:168.026667pt;}
.y122{bottom:169.146667pt;}
.y23f{bottom:169.626667pt;}
.y266{bottom:169.946667pt;}
.y3d{bottom:170.746667pt;}
.ye1{bottom:172.506667pt;}
.y292{bottom:172.826667pt;}
.y18a{bottom:173.146667pt;}
.y2bc{bottom:175.706667pt;}
.yad{bottom:179.866667pt;}
.y217{bottom:181.626667pt;}
.y147{bottom:184.666667pt;}
.y70{bottom:184.826667pt;}
.y121{bottom:185.946667pt;}
.y3c{bottom:186.106667pt;}
.y291{bottom:186.426667pt;}
.y265{bottom:186.746667pt;}
.y1bc{bottom:187.546667pt;}
.y189{bottom:190.106667pt;}
.y23e{bottom:190.426667pt;}
.y2bb{bottom:192.506667pt;}
.y290{bottom:193.786667pt;}
.y16d{bottom:196.826667pt;}
.yab{bottom:197.306667pt;}
.y3b{bottom:201.306667pt;}
.y1d2{bottom:201.626667pt;}
.y6f{bottom:201.786667pt;}
.y216{bottom:202.266667pt;}
.y120{bottom:202.906667pt;}
.y264{bottom:203.546667pt;}
.y1bb{bottom:204.506667pt;}
.y188{bottom:206.906667pt;}
.y23d{bottom:207.386667pt;}
.y2ba{bottom:209.306667pt;}
.yde{bottom:210.106667pt;}
.y28f{bottom:211.386667pt;}
.y16c{bottom:214.426667pt;}
.yaa{bottom:214.906667pt;}
.y3a{bottom:216.666667pt;}
.y6e{bottom:218.586667pt;}
.y1ba{bottom:218.746667pt;}
.y1d1{bottom:219.066667pt;}
.y1f1{bottom:219.226667pt;}
.y11f{bottom:219.706667pt;}
.y215{bottom:219.866667pt;}
.y263{bottom:220.506667pt;}
.y28e{bottom:221.466667pt;}
.y187{bottom:223.706667pt;}
.y23c{bottom:224.186667pt;}
.y2b9{bottom:226.266667pt;}
.ydd{bottom:226.906667pt;}
.y39{bottom:232.026667pt;}
.ya9{bottom:232.506667pt;}
.y11e{bottom:233.306667pt;}
.y6d{bottom:235.546667pt;}
.y146{bottom:236.026667pt;}
.y1b9{bottom:236.346667pt;}
.y214{bottom:237.306667pt;}
.y11d{bottom:240.666667pt;}
.y23b{bottom:240.986667pt;}
.y2b8{bottom:243.066667pt;}
.ydc{bottom:243.866667pt;}
.y38{bottom:247.386667pt;}
.y16b{bottom:248.826667pt;}
.ya7{bottom:249.946667pt;}
.y6c{bottom:252.346667pt;}
.y1d0{bottom:253.466667pt;}
.y1f0{bottom:253.626667pt;}
.y1b8{bottom:253.786667pt;}
.y186{bottom:254.266667pt;}
.y23a{bottom:254.586667pt;}
.y213{bottom:254.906667pt;}
.y28d{bottom:257.466667pt;}
.y11c{bottom:258.426667pt;}
.y2b7{bottom:260.026667pt;}
.ydb{bottom:260.666667pt;}
.y185{bottom:261.626667pt;}
.y239{bottom:261.946667pt;}
.y37{bottom:262.746667pt;}
.y11a{bottom:265.786667pt;}
.y11b{bottom:268.506667pt;}
.y6b{bottom:269.146667pt;}
.y145{bottom:270.426667pt;}
.ya6{bottom:270.746667pt;}
.y1b7{bottom:271.386667pt;}
.y28c{bottom:271.706667pt;}
.y212{bottom:272.506667pt;}
.y2b6{bottom:276.826667pt;}
.yda{bottom:277.626667pt;}
.y36{bottom:278.106667pt;}
.y184{bottom:279.226667pt;}
.y238{bottom:279.546667pt;}
.y16a{bottom:283.226667pt;}
.y6a{bottom:286.106667pt;}
.y183{bottom:286.586667pt;}
.y236{bottom:286.906667pt;}
.ya5{bottom:287.546667pt;}
.y119{bottom:287.706667pt;}
.y1ee{bottom:288.026667pt;}
.y237{bottom:289.626667pt;}
.y211{bottom:289.946667pt;}
.y1b6{bottom:292.186667pt;}
.y35{bottom:293.306667pt;}
.y2b5{bottom:293.626667pt;}
.yd9{bottom:294.426667pt;}
.y261{bottom:299.106667pt;}
.y168{bottom:300.706667pt;}
.y69{bottom:302.946667pt;}
.ya4{bottom:304.546667pt;}
.y118{bottom:304.706667pt;}
.y144{bottom:304.866667pt;}
.y182{bottom:307.426667pt;}
.y210{bottom:307.586667pt;}
.y34{bottom:308.706667pt;}
.y235{bottom:308.866667pt;}
.y1b5{bottom:309.026667pt;}
.y2b4{bottom:310.626667pt;}
.yd8{bottom:311.266667pt;}
.y28b{bottom:311.906667pt;}
.y260{bottom:316.706667pt;}
.y169{bottom:318.306667pt;}
.y117{bottom:318.466667pt;}
.y68{bottom:319.906667pt;}
.ya3{bottom:321.346667pt;}
.y143{bottom:322.306667pt;}
.y1ed{bottom:322.466667pt;}
.y33{bottom:324.066667pt;}
.y181{bottom:324.226667pt;}
.y20f{bottom:325.026667pt;}
.y234{bottom:325.666667pt;}
.y116{bottom:325.826667pt;}
.y1b4{bottom:325.986667pt;}
.y2b3{bottom:327.426667pt;}
.yd7{bottom:328.226667pt;}
.y28a{bottom:329.506667pt;}
.y25f{bottom:334.146667pt;}
.y67{bottom:336.706667pt;}
.ya2{bottom:338.306667pt;}
.y180{bottom:338.466667pt;}
.y32{bottom:339.426667pt;}
.y233{bottom:339.906667pt;}
.y1b3{bottom:342.786667pt;}
.y2b2{bottom:344.386667pt;}
.yd6{bottom:345.026667pt;}
.y115{bottom:345.346667pt;}
.y20e{bottom:345.826667pt;}
.y289{bottom:347.106667pt;}
.y114{bottom:352.706667pt;}
.y66{bottom:353.666667pt;}
.y31{bottom:354.786667pt;}
.y25e{bottom:354.946667pt;}
.ya1{bottom:355.106667pt;}
.y167{bottom:355.906667pt;}
.y17f{bottom:356.066667pt;}
.y142{bottom:356.706667pt;}
.y1b2{bottom:359.586667pt;}
.y2b1{bottom:361.186667pt;}
.yd5{bottom:361.986667pt;}
.y232{bottom:362.626667pt;}
.y20d{bottom:362.786667pt;}
.y288{bottom:364.546667pt;}
.y30{bottom:370.146667pt;}
.y65{bottom:370.466667pt;}
.y25d{bottom:371.906667pt;}
.ya0{bottom:372.066667pt;}
.y166{bottom:372.866667pt;}
.y17e{bottom:373.666667pt;}
.y113{bottom:373.986667pt;}
.y1b1{bottom:376.546667pt;}
.y2b0{bottom:377.986667pt;}
.yd4{bottom:378.786667pt;}
.y20c{bottom:379.586667pt;}
.y231{bottom:380.226667pt;}
.y287{bottom:382.146667pt;}
.y2f{bottom:385.346667pt;}
.y64{bottom:387.266667pt;}
.y112{bottom:387.746667pt;}
.y25c{bottom:388.706667pt;}
.y9f{bottom:388.866667pt;}
.y165{bottom:389.666667pt;}
.y141{bottom:391.106667pt;}
.y1b0{bottom:393.346667pt;}
.y2af{bottom:394.946667pt;}
.y111{bottom:395.106667pt;}
.yd3{bottom:395.586667pt;}
.y20b{bottom:396.386667pt;}
.y230{bottom:397.666667pt;}
.y286{bottom:399.586667pt;}
.y2e{bottom:400.706667pt;}
.y63{bottom:404.226667pt;}
.y25b{bottom:405.506667pt;}
.y9e{bottom:405.666667pt;}
.y164{bottom:406.626667pt;}
.y1af{bottom:407.586667pt;}
.y17d{bottom:407.906667pt;}
.y1ec{bottom:408.066667pt;}
.y140{bottom:408.706667pt;}
.y2ae{bottom:411.746667pt;}
.yd2{bottom:412.546667pt;}
.y20a{bottom:413.346667pt;}
.y110{bottom:414.786667pt;}
.y22f{bottom:415.266667pt;}
.y2d{bottom:416.066667pt;}
.y284{bottom:417.186667pt;}
.y62{bottom:421.026667pt;}
.y10f{bottom:422.146667pt;}
.y25a{bottom:422.466667pt;}
.y9d{bottom:422.626667pt;}
.y163{bottom:423.426667pt;}
.y1cf{bottom:425.506667pt;}
.y13f{bottom:426.146667pt;}
.yd1{bottom:426.786667pt;}
.y1ae{bottom:428.386667pt;}
.y2ad{bottom:428.706667pt;}
.y209{bottom:430.146667pt;}
.y2c{bottom:431.426667pt;}
.y22e{bottom:432.706667pt;}
.y285{bottom:434.626667pt;}
.y61{bottom:437.986667pt;}
.y259{bottom:439.266667pt;}
.y9c{bottom:439.426667pt;}
.y162{bottom:440.226667pt;}
.y17c{bottom:442.306667pt;}
.y1eb{bottom:442.466667pt;}
.y10e{bottom:443.426667pt;}
.yd0{bottom:444.386667pt;}
.y2ac{bottom:445.506667pt;}
.y2b{bottom:446.786667pt;}
.y208{bottom:447.106667pt;}
.y1ad{bottom:449.026667pt;}
.y22d{bottom:450.306667pt;}
.y60{bottom:454.786667pt;}
.y258{bottom:456.226667pt;}
.y9b{bottom:456.386667pt;}
.y10d{bottom:457.186667pt;}
.y1ce{bottom:459.906667pt;}
.y1ea{bottom:460.066667pt;}
.y13e{bottom:460.546667pt;}
.ycf{bottom:461.826667pt;}
.y2a{bottom:461.986667pt;}
.y2ab{bottom:462.306667pt;}
.y207{bottom:463.906667pt;}
.y10c{bottom:464.546667pt;}
.y1ac{bottom:466.466667pt;}
.y22c{bottom:467.906667pt;}
.y161{bottom:470.786667pt;}
.y5f{bottom:471.586667pt;}
.y283{bottom:472.386667pt;}
.y257{bottom:473.026667pt;}
.y9a{bottom:473.186667pt;}
.y179{bottom:476.706667pt;}
.y29{bottom:477.346667pt;}
.y13d{bottom:478.146667pt;}
.y2aa{bottom:479.266667pt;}
.yce{bottom:479.426667pt;}
.y1ab{bottom:484.066667pt;}
.y10b{bottom:484.386667pt;}
.y22a{bottom:485.346667pt;}
.y5e{bottom:488.546667pt;}
.y282{bottom:489.186667pt;}
.y256{bottom:489.826667pt;}
.y99{bottom:489.986667pt;}
.y10a{bottom:491.746667pt;}
.y28{bottom:492.706667pt;}
.y1cd{bottom:494.306667pt;}
.y1e9{bottom:494.466667pt;}
.y160{bottom:495.746667pt;}
.y2a9{bottom:496.066667pt;}
.ycd{bottom:496.866667pt;}
.y1aa{bottom:501.506667pt;}
.y22b{bottom:502.946667pt;}
.y15f{bottom:503.106667pt;}
.y255{bottom:503.426667pt;}
.y5d{bottom:505.346667pt;}
.y281{bottom:506.146667pt;}
.y98{bottom:506.946667pt;}
.y27{bottom:508.066667pt;}
.y254{bottom:510.786667pt;}
.y13c{bottom:512.546667pt;}
.y109{bottom:513.026667pt;}
.y206{bottom:513.186667pt;}
.ycc{bottom:514.466667pt;}
.y1a9{bottom:519.106667pt;}
.y5c{bottom:522.306667pt;}
.y280{bottom:522.946667pt;}
.y26{bottom:523.426667pt;}
.y97{bottom:523.746667pt;}
.y15e{bottom:523.906667pt;}
.y108{bottom:526.786667pt;}
.y253{bottom:528.546667pt;}
.y1cc{bottom:528.706667pt;}
.y2a8{bottom:529.826667pt;}
.y205{bottom:530.786667pt;}
.y107{bottom:534.146667pt;}
.ycb{bottom:535.266667pt;}
.y251{bottom:535.906667pt;}
.y1a8{bottom:536.733333pt;}
.y252{bottom:538.653333pt;}
.y25{bottom:538.813333pt;}
.y5b{bottom:539.133333pt;}
.y27f{bottom:539.773333pt;}
.y229{bottom:540.573333pt;}
.y96{bottom:540.733333pt;}
.y178{bottom:544.893333pt;}
.y1e8{bottom:546.333333pt;}
.y2a7{bottom:546.653333pt;}
.y13b{bottom:546.973333pt;}
.y204{bottom:551.613333pt;}
.yca{bottom:552.093333pt;}
.y106{bottom:553.853333pt;}
.y24{bottom:554.013333pt;}
.y1a7{bottom:554.173333pt;}
.y5a{bottom:555.933333pt;}
.y27e{bottom:556.733333pt;}
.y95{bottom:557.533333pt;}
.y250{bottom:557.853333pt;}
.y105{bottom:561.213333pt;}
.y177{bottom:562.493333pt;}
.y1cb{bottom:563.133333pt;}
.y2a6{bottom:563.613333pt;}
.y1e7{bottom:563.933333pt;}
.y137{bottom:564.413333pt;}
.y203{bottom:568.413333pt;}
.yc9{bottom:569.053333pt;}
.y23{bottom:569.373333pt;}
.y1a6{bottom:571.773333pt;}
.y59{bottom:572.893333pt;}
.y27d{bottom:573.533333pt;}
.y94{bottom:574.333333pt;}
.y15d{bottom:574.493333pt;}
.y24f{bottom:574.813333pt;}
.y2a5{bottom:580.413333pt;}
.y1ca{bottom:580.733333pt;}
.y139{bottom:582.013333pt;}
.y104{bottom:582.493333pt;}
.y22{bottom:584.733333pt;}
.y202{bottom:585.373333pt;}
.yc8{bottom:585.853333pt;}
.y27c{bottom:587.773333pt;}
.y24e{bottom:589.053333pt;}
.y58{bottom:589.693333pt;}
.y228{bottom:591.133333pt;}
.y93{bottom:591.293333pt;}
.y1a5{bottom:592.573333pt;}
.y103{bottom:596.253333pt;}
.y176{bottom:596.893333pt;}
.y2a4{bottom:597.373333pt;}
.y1e6{bottom:598.333333pt;}
.y21{bottom:600.093333pt;}
.y201{bottom:602.173333pt;}
.yc7{bottom:602.653333pt;}
.y102{bottom:603.613333pt;}
.y27b{bottom:605.373333pt;}
.y57{bottom:606.653333pt;}
.y92{bottom:608.093333pt;}
.y15c{bottom:608.253333pt;}
.y1a4{bottom:609.373333pt;}
.y24d{bottom:611.773333pt;}
.y2a3{bottom:614.173333pt;}
.y1c9{bottom:615.133333pt;}
.y20{bottom:615.453333pt;}
.y1e5{bottom:615.773333pt;}
.y200{bottom:619.133333pt;}
.yc6{bottom:619.613333pt;}
.y15b{bottom:622.013333pt;}
.y27a{bottom:622.973333pt;}
.y101{bottom:623.133333pt;}
.y56{bottom:623.453333pt;}
.y227{bottom:624.893333pt;}
.y91{bottom:625.053333pt;}
.y1a3{bottom:626.333333pt;}
.y24c{bottom:629.213333pt;}
.y15a{bottom:629.373333pt;}
.y100{bottom:630.493333pt;}
.y1f{bottom:630.813333pt;}
.y2a2{bottom:631.133333pt;}
.y1ff{bottom:635.933333pt;}
.yc5{bottom:636.413333pt;}
.y136{bottom:636.573333pt;}
.y55{bottom:640.253333pt;}
.y279{bottom:640.413333pt;}
.y90{bottom:641.853333pt;}
.y1a2{bottom:643.133333pt;}
.y1e{bottom:646.013333pt;}
.y24b{bottom:646.813333pt;}
.y2a1{bottom:647.933333pt;}
.y175{bottom:648.093333pt;}
.y1c8{bottom:649.533333pt;}
.y159{bottom:650.013333pt;}
.y1e4{bottom:650.173333pt;}
.yff{bottom:651.933333pt;}
.y1fe{bottom:652.733333pt;}
.yc4{bottom:653.373333pt;}
.y54{bottom:657.213333pt;}
.y278{bottom:658.013333pt;}
.y8f{bottom:658.653333pt;}
.y1a1{bottom:659.933333pt;}
.y1d{bottom:661.373333pt;}
.y2a0{bottom:662.173333pt;}
.y158{bottom:664.253333pt;}
.yfe{bottom:665.693333pt;}
.y1fd{bottom:666.493333pt;}
.y1c7{bottom:666.973333pt;}
.yc3{bottom:667.133333pt;}
.y135{bottom:670.333333pt;}
.yfd{bottom:673.053333pt;}
.y1fc{bottom:673.853333pt;}
.y53{bottom:674.013333pt;}
.y1a0{bottom:674.173333pt;}
.yc2{bottom:674.493333pt;}
.y226{bottom:675.453333pt;}
.y8e{bottom:675.613333pt;}
.y1c{bottom:676.733333pt;}
.y157{bottom:681.853333pt;}
.y1c6{bottom:684.573333pt;}
.y134{bottom:687.133333pt;}
.y52{bottom:690.973333pt;}
.y1fb{bottom:691.453333pt;}
.y1b{bottom:692.093333pt;}
.y8d{bottom:692.413333pt;}
.yfc{bottom:692.573333pt;}
.y277{bottom:693.053333pt;}
.y19e{bottom:694.973333pt;}
.yc1{bottom:695.133333pt;}
.y29d{bottom:696.573333pt;}
.y1fa{bottom:698.813333pt;}
.y156{bottom:699.453333pt;}
.yfb{bottom:699.933333pt;}
.y174{bottom:700.093333pt;}
.y1e2{bottom:702.173333pt;}
.y133{bottom:703.933333pt;}
.y225{bottom:706.653333pt;}
.y1a{bottom:707.453333pt;}
.y51{bottom:707.773333pt;}
.y8c{bottom:709.373333pt;}
.y276{bottom:710.493333pt;}
.yc0{bottom:712.093333pt;}
.y29f{bottom:714.173333pt;}
.y19d{bottom:715.613333pt;}
.y155{bottom:716.893333pt;}
.y1c5{bottom:718.973333pt;}
.y1f9{bottom:719.453333pt;}
.y1e3{bottom:719.613333pt;}
.y132{bottom:720.893333pt;}
.yfa{bottom:721.213333pt;}
.y19{bottom:722.653333pt;}
.y224{bottom:724.253333pt;}
.y50{bottom:724.573333pt;}
.y8b{bottom:726.173333pt;}
.ybf{bottom:728.893333pt;}
.y275{bottom:731.293333pt;}
.y19c{bottom:733.053333pt;}
.y249{bottom:734.493333pt;}
.yf9{bottom:735.133333pt;}
.y1c4{bottom:736.413333pt;}
.y131{bottom:737.693333pt;}
.y18{bottom:738.013333pt;}
.y4f{bottom:741.533333pt;}
.y223{bottom:741.693333pt;}
.yf8{bottom:742.493333pt;}
.y8a{bottom:742.973333pt;}
.ybe{bottom:745.693333pt;}
.y274{bottom:748.253333pt;}
.y29c{bottom:748.573333pt;}
.y19b{bottom:750.653333pt;}
.y154{bottom:751.293333pt;}
.y24a{bottom:751.933333pt;}
.y17{bottom:753.373333pt;}
.y130{bottom:754.653333pt;}
.y1e1{bottom:757.373333pt;}
.y4e{bottom:758.333333pt;}
.y222{bottom:759.293333pt;}
.y89{bottom:759.933333pt;}
.ybd{bottom:760.093333pt;}
.yf7{bottom:762.013333pt;}
.y273{bottom:765.053333pt;}
.y19a{bottom:768.253333pt;}
.y16{bottom:768.733333pt;}
.yf6{bottom:769.373333pt;}
.y1c1{bottom:770.813333pt;}
.y12f{bottom:771.453333pt;}
.y1e0{bottom:774.213333pt;}
.y4d{bottom:775.333333pt;}
.y88{bottom:776.773333pt;}
.ybc{bottom:777.573333pt;}
.y221{bottom:780.133333pt;}
.y272{bottom:782.053333pt;}
.y15{bottom:784.453333pt;}
.y153{bottom:785.733333pt;}
.y29b{bottom:786.213333pt;}
.y12e{bottom:788.293333pt;}
.yf5{bottom:789.573333pt;}
.y248{bottom:789.733333pt;}
.y1df{bottom:791.173333pt;}
.y4c{bottom:792.133333pt;}
.y87{bottom:793.733333pt;}
.ybb{bottom:795.173333pt;}
.y271{bottom:795.653333pt;}
.yf4{bottom:796.933333pt;}
.y14{bottom:800.933333pt;}
.y270{bottom:803.013333pt;}
.y199{bottom:803.333333pt;}
.y12d{bottom:805.253333pt;}
.y247{bottom:806.533333pt;}
.y1de{bottom:807.973333pt;}
.y4b{bottom:809.093333pt;}
.y86{bottom:810.533333pt;}
.yba{bottom:812.613333pt;}
.y220{bottom:813.733333pt;}
.y13{bottom:816.293333pt;}
.yf3{bottom:818.213333pt;}
.y29a{bottom:819.973333pt;}
.y173{bottom:820.133333pt;}
.y198{bottom:820.773333pt;}
.y12c{bottom:822.053333pt;}
.y1bf{bottom:822.853333pt;}
.y246{bottom:823.493333pt;}
.y1dd{bottom:824.773333pt;}
.y4a{bottom:825.893333pt;}
.y85{bottom:827.493333pt;}
.y26e{bottom:828.133333pt;}
.yb9{bottom:830.213333pt;}
.y21f{bottom:830.693333pt;}
.y26f{bottom:830.853333pt;}
.y12{bottom:831.653333pt;}
.yf2{bottom:835.173333pt;}
.y299{bottom:836.773333pt;}
.y152{bottom:837.093333pt;}
.y1f8{bottom:837.733333pt;}
.y197{bottom:838.373333pt;}
.y12b{bottom:839.013333pt;}
.y1c0{bottom:840.293333pt;}
.y1dc{bottom:841.733333pt;}
.y49{bottom:842.693333pt;}
.y84{bottom:844.293333pt;}
.y21e{bottom:844.933333pt;}
.y11{bottom:847.333333pt;}
.yb8{bottom:847.813333pt;}
.y26d{bottom:850.053333pt;}
.yf1{bottom:851.973333pt;}
.y298{bottom:853.733333pt;}
.y151{bottom:854.533333pt;}
.y1db{bottom:855.333333pt;}
.y12a{bottom:855.813333pt;}
.y245{bottom:857.093333pt;}
.y196{bottom:859.173333pt;}
.y48{bottom:859.653333pt;}
.y83{bottom:861.093333pt;}
.y1da{bottom:862.693333pt;}
.y10{bottom:864.133333pt;}
.y21d{bottom:865.573333pt;}
.y26c{bottom:866.853333pt;}
.y296{bottom:867.973333pt;}
.yb7{bottom:868.613333pt;}
.yf0{bottom:868.933333pt;}
.y172{bottom:871.333333pt;}
.y1f7{bottom:872.133333pt;}
.y129{bottom:872.613333pt;}
.y244{bottom:874.053333pt;}
.y195{bottom:875.973333pt;}
.y47{bottom:876.453333pt;}
.y82{bottom:878.053333pt;}
.y1d9{bottom:880.293333pt;}
.y26b{bottom:881.093333pt;}
.yf{bottom:881.413333pt;}
.yb6{bottom:885.413333pt;}
.yef{bottom:885.733333pt;}
.y21c{bottom:886.213333pt;}
.y1d8{bottom:887.653333pt;}
.y150{bottom:888.933333pt;}
.y128{bottom:889.573333pt;}
.y243{bottom:890.853333pt;}
.y194{bottom:892.933333pt;}
.y46{bottom:893.413333pt;}
.y81{bottom:894.853333pt;}
.ye{bottom:901.413333pt;}
.yb5{bottom:902.213333pt;}
.yee{bottom:902.533333pt;}
.y127{bottom:903.813333pt;}
.y171{bottom:905.733333pt;}
.y295{bottom:907.173333pt;}
.y242{bottom:907.813333pt;}
.y1d7{bottom:908.453333pt;}
.y193{bottom:909.733333pt;}
.y45{bottom:910.213333pt;}
.y80{bottom:911.813333pt;}
.yb4{bottom:919.173333pt;}
.yed{bottom:919.493333pt;}
.yd{bottom:921.413333pt;}
.y1f6{bottom:923.333333pt;}
.y241{bottom:924.613333pt;}
.y1d6{bottom:925.253333pt;}
.y192{bottom:926.533333pt;}
.y44{bottom:927.013333pt;}
.y7f{bottom:928.613333pt;}
.yeb{bottom:933.733333pt;}
.yb3{bottom:935.973333pt;}
.y126{bottom:938.853333pt;}
.y1d5{bottom:939.493333pt;}
.yc{bottom:939.813333pt;}
.y14f{bottom:940.133333pt;}
.y1f5{bottom:940.933333pt;}
.y43{bottom:942.853333pt;}
.y191{bottom:943.493333pt;}
.y7e{bottom:945.413333pt;}
.yb{bottom:952.773333pt;}
.yb2{bottom:953.253333pt;}
.y42{bottom:955.173333pt;}
.yea{bottom:956.453333pt;}
.y1d4{bottom:957.093333pt;}
.y14e{bottom:957.733333pt;}
.y190{bottom:960.293333pt;}
.y7d{bottom:962.373333pt;}
.yb1{bottom:966.853333pt;}
.ya{bottom:968.133333pt;}
.ye9{bottom:973.893333pt;}
.yb0{bottom:974.213333pt;}
.y1d3{bottom:974.533333pt;}
.y1f3{bottom:975.333333pt;}
.y18f{bottom:977.253333pt;}
.y7c{bottom:979.173333pt;}
.y9{bottom:983.493333pt;}
.ye8{bottom:991.493333pt;}
.y14c{bottom:992.133333pt;}
.y7b{bottom:996.133333pt;}
.y8{bottom:998.693333pt;}
.ye6{bottom:1008.933333pt;}
.y7a{bottom:1012.960000pt;}
.y7{bottom:1014.080000pt;}
.y3{bottom:1037.440000pt;}
.y1{bottom:1051.360000pt;}
.h12{height:16.800000pt;}
.h18{height:16.832000pt;}
.h13{height:16.960000pt;}
.h1c{height:16.992000pt;}
.h29{height:20.000000pt;}
.h2e{height:20.960000pt;}
.h1d{height:22.080000pt;}
.h2{height:23.200000pt;}
.h2d{height:29.920000pt;}
.h7{height:30.254687pt;}
.h1b{height:33.600000pt;}
.h26{height:33.632000pt;}
.h23{height:33.760000pt;}
.h24{height:33.792000pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h10{height:39.876250pt;}
.hd{height:40.021563pt;}
.ha{height:41.112500pt;}
.hb{height:41.543750pt;}
.h11{height:42.866250pt;}
.he{height:43.782500pt;}
.h19{height:44.361250pt;}
.h3{height:44.505000pt;}
.h25{height:45.080000pt;}
.hf{height:48.530000pt;}
.h9{height:48.768750pt;}
.h20{height:49.622500pt;}
.h27{height:50.560000pt;}
.h2a{height:50.592000pt;}
.h1a{height:51.200000pt;}
.h2c{height:51.232000pt;}
.h22{height:51.360000pt;}
.h2b{height:51.392000pt;}
.h8{height:52.076250pt;}
.h17{height:52.182500pt;}
.h4{height:58.563750pt;}
.h21{height:61.098125pt;}
.h28{height:67.552000pt;}
.h15{height:70.552500pt;}
.h14{height:70.698125pt;}
.h1f{height:70.804792pt;}
.h1e{height:70.858125pt;}
.h16{height:71.978125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:26.720000pt;}
.w13{width:29.280000pt;}
.w3c{width:29.440000pt;}
.wf{width:30.400000pt;}
.w3a{width:30.432000pt;}
.w14{width:32.320000pt;}
.w3d{width:32.352000pt;}
.wa{width:33.280000pt;}
.w22{width:33.440000pt;}
.w2d{width:33.600000pt;}
.w31{width:34.080000pt;}
.w3b{width:34.240000pt;}
.w10{width:34.400000pt;}
.w1d{width:35.040000pt;}
.w11{width:35.360000pt;}
.w12{width:35.392000pt;}
.w25{width:41.280000pt;}
.w2a{width:41.440000pt;}
.w2{width:54.400000pt;}
.w39{width:65.280000pt;}
.wd{width:65.440000pt;}
.w47{width:74.080000pt;}
.w45{width:74.272000pt;}
.w46{width:74.400000pt;}
.w48{width:75.232000pt;}
.w30{width:82.752000pt;}
.w7{width:83.040000pt;}
.we{width:84.032000pt;}
.w1b{width:88.640000pt;}
.w20{width:91.200000pt;}
.w21{width:95.712000pt;}
.w1c{width:96.512000pt;}
.w3e{width:101.280000pt;}
.w42{width:105.760000pt;}
.w43{width:108.832000pt;}
.w37{width:114.720000pt;}
.wb{width:114.752000pt;}
.w33{width:124.992000pt;}
.w27{width:125.312000pt;}
.w2b{width:125.472000pt;}
.w28{width:137.306667pt;}
.w44{width:149.306667pt;}
.w35{width:150.106667pt;}
.w26{width:161.306667pt;}
.w24{width:165.946667pt;}
.w6{width:167.386667pt;}
.w2f{width:172.026667pt;}
.w41{width:175.226667pt;}
.w17{width:175.546667pt;}
.w18{width:175.866667pt;}
.w1a{width:185.786667pt;}
.w9{width:186.106667pt;}
.w1f{width:187.546667pt;}
.w34{width:203.546667pt;}
.w8{width:209.346667pt;}
.w3f{width:213.986667pt;}
.w49{width:215.386667pt;}
.wc{width:227.706667pt;}
.w38{width:227.746667pt;}
.w5{width:257.026667pt;}
.w1e{width:280.226667pt;}
.w23{width:303.266667pt;}
.w19{width:305.346667pt;}
.w32{width:313.826667pt;}
.w40{width:316.386667pt;}
.w2e{width:326.306667pt;}
.w36{width:329.186667pt;}
.w29{width:329.346667pt;}
.w2c{width:329.506667pt;}
.w16{width:377.186667pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x45{left:9.600000pt;}
.x42{left:10.880000pt;}
.x2{left:12.320000pt;}
.x3e{left:13.440000pt;}
.x7f{left:16.640000pt;}
.x3a{left:18.720000pt;}
.x93{left:19.680000pt;}
.x74{left:21.600000pt;}
.x47{left:25.280000pt;}
.x3c{left:27.400000pt;}
.x95{left:29.760000pt;}
.x4c{left:31.080000pt;}
.x1d{left:32.480000pt;}
.x49{left:33.600000pt;}
.x48{left:34.760000pt;}
.x4a{left:36.000000pt;}
.x21{left:37.760000pt;}
.x37{left:39.680000pt;}
.x8a{left:41.594667pt;}
.x7c{left:42.880000pt;}
.x46{left:43.840000pt;}
.x2e{left:45.800000pt;}
.x8c{left:46.874667pt;}
.x7b{left:48.640000pt;}
.x7a{left:52.640000pt;}
.x8d{left:53.640000pt;}
.x5b{left:54.920000pt;}
.x23{left:58.560000pt;}
.x8e{left:59.720000pt;}
.x96{left:67.226667pt;}
.x2f{left:68.480000pt;}
.x18{left:69.760000pt;}
.x27{left:70.880000pt;}
.x26{left:73.440000pt;}
.x1f{left:75.880000pt;}
.x30{left:77.800000pt;}
.x25{left:79.040000pt;}
.x19{left:80.000000pt;}
.x31{left:81.480000pt;}
.x22{left:83.880000pt;}
.x32{left:85.160000pt;}
.x24{left:87.560000pt;}
.x28{left:91.240000pt;}
.x1{left:96.032000pt;}
.x75{left:98.911988pt;}
.x7d{left:101.151988pt;}
.x87{left:102.751988pt;}
.x7e{left:104.520000pt;}
.x16{left:105.640000pt;}
.x7{left:106.751988pt;}
.x6{left:107.711988pt;}
.x34{left:111.391988pt;}
.x10{left:114.111988pt;}
.x55{left:115.551988pt;}
.x12{left:120.031988pt;}
.x77{left:121.311988pt;}
.xa{left:122.271988pt;}
.x78{left:124.511988pt;}
.x76{left:125.791988pt;}
.x81{left:130.752000pt;}
.x89{left:132.352000pt;}
.xe{left:133.786655pt;}
.x80{left:136.200000pt;}
.x11{left:138.106655pt;}
.x13{left:144.026655pt;}
.x65{left:144.986667pt;}
.x3{left:150.426667pt;}
.x6e{left:154.746667pt;}
.xc{left:156.186655pt;}
.x6a{left:163.226667pt;}
.x36{left:167.066667pt;}
.x5c{left:168.026655pt;}
.x15{left:171.226667pt;}
.x4b{left:173.154667pt;}
.x66{left:179.066667pt;}
.x61{left:180.666667pt;}
.x58{left:181.946655pt;}
.x60{left:183.066655pt;}
.x68{left:186.426667pt;}
.x6d{left:191.386655pt;}
.x5d{left:195.066655pt;}
.x5f{left:198.266655pt;}
.x5e{left:202.426655pt;}
.x64{left:205.946655pt;}
.x4d{left:213.466655pt;}
.x4e{left:217.946655pt;}
.x67{left:220.026655pt;}
.x52{left:221.626655pt;}
.x8{left:224.026655pt;}
.x50{left:225.306655pt;}
.x1e{left:228.346667pt;}
.x4f{left:231.386655pt;}
.x9{left:232.666655pt;}
.x53{left:233.626655pt;}
.x8f{left:234.586655pt;}
.x51{left:240.026655pt;}
.x82{left:246.106667pt;}
.x2d{left:248.386655pt;}
.x14{left:255.266655pt;}
.x54{left:260.706655pt;}
.x79{left:270.306667pt;}
.x84{left:277.186667pt;}
.x38{left:282.466667pt;}
.x88{left:301.346655pt;}
.x56{left:309.186667pt;}
.x85{left:312.066667pt;}
.x3d{left:313.506667pt;}
.x29{left:315.266655pt;}
.x1c{left:317.666655pt;}
.xb{left:343.586655pt;}
.x35{left:347.106655pt;}
.x3f{left:348.546667pt;}
.x90{left:354.946667pt;}
.x1a{left:362.146655pt;}
.x6b{left:367.266667pt;}
.x2a{left:369.826655pt;}
.x33{left:371.426655pt;}
.xd{left:373.986655pt;}
.x40{left:384.546667pt;}
.x5{left:396.866655pt;}
.x2b{left:404.226655pt;}
.x1b{left:414.653322pt;}
.x41{left:420.573333pt;}
.x17{left:428.893333pt;}
.x92{left:429.853333pt;}
.x20{left:438.493333pt;}
.x86{left:447.133333pt;}
.x8b{left:449.053333pt;}
.x43{left:450.493333pt;}
.x6f{left:458.653333pt;}
.x62{left:461.533333pt;}
.x59{left:462.493333pt;}
.x72{left:469.693333pt;}
.x69{left:474.493333pt;}
.x70{left:481.693333pt;}
.x44{left:483.453333pt;}
.x57{left:485.373333pt;}
.x6c{left:493.373333pt;}
.x91{left:505.053333pt;}
.x39{left:510.813333pt;}
.x83{left:540.573333pt;}
.x5a{left:551.773333pt;}
.x63{left:553.373333pt;}
.x73{left:558.973333pt;}
.x71{left:570.973333pt;}
.x3b{left:576.893333pt;}
.x94{left:579.933333pt;}
.x2c{left:615.973322pt;}
.xf{left:697.893322pt;}
}




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