
    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_8cbe76f8439b11d68d8a1c44.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a25a2141e7faffe9204fad0d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_35b5adef630428f077bc0b45.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_34b7b07a956fcd023fb1e19a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_d9c73d6b5efc30863f52121f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f05e5eccfec433570ddf2461.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_068099feec0d8453cb765727.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26f1197fcfd52263e50d7be2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.674072;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_515cea124e79e4a37d85becf.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.ls7{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.120000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.138000px;}
.ls1b{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls13{letter-spacing:2.220000px;}
.ls15{letter-spacing:2.280000px;}
.lsc{letter-spacing:2.340000px;}
.lsa{letter-spacing:2.400000px;}
.lsb{letter-spacing:2.820000px;}
.lsd{letter-spacing:3.000000px;}
.ls12{letter-spacing:15.600000px;}
.ls1a{letter-spacing:15.720000px;}
.ls14{letter-spacing:16.020000px;}
.lse{letter-spacing:16.200000px;}
.ls18{letter-spacing:45.720000px;}
.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;}
}
.ws7{word-spacing:-31.200000px;}
.wsb{word-spacing:-31.020000px;}
.wsa{word-spacing:-30.600000px;}
.ws1{word-spacing:-18.384000px;}
.ws5{word-spacing:-17.400000px;}
.ws6{word-spacing:-17.340000px;}
.wsf{word-spacing:-17.280000px;}
.ws10{word-spacing:-17.220000px;}
.wse{word-spacing:-15.420000px;}
.ws12{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.204000px;}
.ws9{word-spacing:-15.054000px;}
.ws4{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.880000px;}
.ws8{word-spacing:-14.760000px;}
.ws13{word-spacing:-14.580000px;}
.ws3{word-spacing:-12.900000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.420000px;}
.wsc{word-spacing:0.660000px;}
._1b{margin-left:-10.740000px;}
._1a{margin-left:-9.000000px;}
._14{margin-left:-2.280000px;}
._1{margin-left:-1.200000px;}
._0{width:1.056000px;}
._10{width:2.340000px;}
._e{width:3.900000px;}
._11{width:5.880000px;}
._d{width:7.140000px;}
._a{width:8.160000px;}
._9{width:9.240000px;}
._f{width:10.260000px;}
._c{width:11.760000px;}
._b{width:12.840000px;}
._13{width:13.980000px;}
._12{width:16.440000px;}
._1c{width:17.610000px;}
._7{width:19.104000px;}
._6{width:20.232000px;}
._8{width:21.360000px;}
._21{width:22.710000px;}
._22{width:23.880000px;}
._23{width:25.920000px;}
._1d{width:28.980000px;}
._1e{width:30.024000px;}
._16{width:34.380000px;}
._15{width:35.400000px;}
._18{width:38.184000px;}
._2{width:43.800000px;}
._1f{width:51.360000px;}
._20{width:52.860000px;}
._19{width:54.720000px;}
._17{width:58.104000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.y302{bottom:-27.315000px;}
.y1e0{bottom:-13.800000px;}
.y29f{bottom:-10.800000px;}
.y301{bottom:-9.900000px;}
.y33c{bottom:-5.085000px;}
.y12a{bottom:-0.315000px;}
.y2a5{bottom:-0.300000px;}
.y0{bottom:0.000000px;}
.y286{bottom:0.300000px;}
.y156{bottom:0.600000px;}
.y18f{bottom:0.615000px;}
.y126{bottom:1.500000px;}
.y248{bottom:1.800000px;}
.y142{bottom:2.100000px;}
.y11b{bottom:2.400000px;}
.y14e{bottom:2.415000px;}
.y1f0{bottom:3.285000px;}
.y197{bottom:3.300000px;}
.y18b{bottom:3.315000px;}
.y1f5{bottom:3.345000px;}
.y26d{bottom:3.585000px;}
.y115{bottom:3.600000px;}
.y14c{bottom:3.615000px;}
.y28e{bottom:3.885000px;}
.y288{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.ydb{bottom:4.200000px;}
.y25e{bottom:4.485000px;}
.y11d{bottom:4.500000px;}
.y274{bottom:4.530000px;}
.y1fa{bottom:4.800000px;}
.y284{bottom:5.085000px;}
.y144{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.yeb{bottom:5.385000px;}
.y2{bottom:5.400000px;}
.yf1{bottom:5.415000px;}
.y282{bottom:5.685000px;}
.y14a{bottom:5.700000px;}
.y21a{bottom:5.715000px;}
.y1e8{bottom:5.992500px;}
.y172{bottom:6.000000px;}
.ye7{bottom:6.300000px;}
.y33e{bottom:6.315000px;}
.y120{bottom:6.330000px;}
.ydd{bottom:6.600000px;}
.y218{bottom:6.615000px;}
.ye9{bottom:6.900000px;}
.y21e{bottom:6.915000px;}
.y128{bottom:7.185000px;}
.y1c7{bottom:7.200000px;}
.y153{bottom:7.215000px;}
.y21c{bottom:7.500000px;}
.y1c2{bottom:7.515000px;}
.yd9{bottom:7.800000px;}
.y28b{bottom:8.085000px;}
.ye2{bottom:8.100000px;}
.yd5{bottom:8.115000px;}
.y263{bottom:8.400000px;}
.y151{bottom:8.415000px;}
.y12f{bottom:8.700000px;}
.ydf{bottom:9.000000px;}
.yef{bottom:9.015000px;}
.y15b{bottom:9.300000px;}
.y1c4{bottom:9.585000px;}
.y174{bottom:9.600000px;}
.y1aa{bottom:9.900000px;}
.y261{bottom:9.915000px;}
.y1cf{bottom:9.930000px;}
.y1d3{bottom:10.185000px;}
.y1cb{bottom:10.200000px;}
.y1d1{bottom:10.215000px;}
.y26a{bottom:10.500000px;}
.y179{bottom:11.100000px;}
.y124{bottom:11.385000px;}
.y199{bottom:11.400000px;}
.y2ae{bottom:11.685000px;}
.y214{bottom:11.692500px;}
.ya6{bottom:11.700000px;}
.y2e1{bottom:11.707500px;}
.yfb{bottom:11.715000px;}
.y106{bottom:11.730000px;}
.y212{bottom:11.745000px;}
.yfe{bottom:11.985000px;}
.y102{bottom:12.000000px;}
.y19f{bottom:12.015000px;}
.y2df{bottom:12.030000px;}
.y1a3{bottom:12.045000px;}
.y176{bottom:12.300000px;}
.y5{bottom:12.337500px;}
.y15d{bottom:12.600000px;}
.y203{bottom:12.885000px;}
.y122{bottom:13.185000px;}
.y146{bottom:13.200000px;}
.ye5{bottom:13.500000px;}
.y3f{bottom:14.400000px;}
.y2b0{bottom:14.415000px;}
.y1a1{bottom:15.000000px;}
.y1b3{bottom:15.045000px;}
.y2aa{bottom:15.300000px;}
.y224{bottom:16.200000px;}
.ycf{bottom:16.230000px;}
.y2b2{bottom:16.500000px;}
.y13f{bottom:16.830000px;}
.y131{bottom:17.400000px;}
.y1a7{bottom:17.700000px;}
.y1e4{bottom:18.000000px;}
.yb2{bottom:18.300000px;}
.y232{bottom:18.345000px;}
.y2c2{bottom:18.600000px;}
.y2fc{bottom:18.900000px;}
.y29c{bottom:18.930000px;}
.y141{bottom:19.200000px;}
.y2d0{bottom:19.800000px;}
.y1ef{bottom:20.685000px;}
.y114{bottom:20.700000px;}
.y227{bottom:20.715000px;}
.y240{bottom:20.730000px;}
.y18a{bottom:21.000000px;}
.y2ba{bottom:21.285000px;}
.y251{bottom:22.200000px;}
.y19e{bottom:22.215000px;}
.y30b{bottom:22.800000px;}
.y23e{bottom:22.815000px;}
.y110{bottom:23.400000px;}
.y245{bottom:23.700000px;}
.y119{bottom:24.000000px;}
.y20e{bottom:24.600000px;}
.y239{bottom:24.615000px;}
.y1e6{bottom:24.645000px;}
.yad{bottom:25.200000px;}
.y1be{bottom:25.785000px;}
.y15a{bottom:26.400000px;}
.y33a{bottom:26.685000px;}
.y1ab{bottom:27.000000px;}
.y1a9{bottom:27.300000px;}
.y253{bottom:28.545000px;}
.y1db{bottom:29.400000px;}
.y22e{bottom:30.000000px;}
.y217{bottom:32.415000px;}
.yd8{bottom:33.600000px;}
.y3e{bottom:33.900000px;}
.yd4{bottom:34.215000px;}
.y13e{bottom:34.245000px;}
.y167{bottom:34.500000px;}
.y1e3{bottom:35.100000px;}
.y2c1{bottom:35.700000px;}
.y16e{bottom:36.000000px;}
.y2cf{bottom:37.200000px;}
.yb6{bottom:37.492500px;}
.yba{bottom:37.500000px;}
.y1ee{bottom:37.785000px;}
.y226{bottom:37.800000px;}
.yf8{bottom:37.807500px;}
.y2c7{bottom:37.815000px;}
.y170{bottom:37.845000px;}
.y1bf{bottom:38.085000px;}
.y113{bottom:38.100000px;}
.y189{bottom:38.115000px;}
.y2e7{bottom:38.415000px;}
.y2b9{bottom:38.700000px;}
.y250{bottom:39.300000px;}
.y308{bottom:39.330000px;}
.y19d{bottom:39.600000px;}
.y23d{bottom:39.915000px;}
.y10f{bottom:40.800000px;}
.y1ed{bottom:41.085000px;}
.y2be{bottom:41.700000px;}
.y238{bottom:42.000000px;}
.yce{bottom:42.030000px;}
.y187{bottom:42.600000px;}
.y2ff{bottom:42.630000px;}
.y1bd{bottom:42.900000px;}
.y159{bottom:43.800000px;}
.yb1{bottom:44.107500px;}
.yc2{bottom:46.530000px;}
.y4{bottom:46.800000px;}
.y3d{bottom:48.600000px;}
.y20d{bottom:50.400000px;}
.yac{bottom:50.992500px;}
.y1e2{bottom:52.500000px;}
.y2c0{bottom:53.100000px;}
.y2fb{bottom:53.400000px;}
.yc7{bottom:54.930000px;}
.y112{bottom:55.200000px;}
.y2c6{bottom:55.215000px;}
.y2b8{bottom:55.785000px;}
.y307{bottom:56.730000px;}
.y19c{bottom:57.015000px;}
.y1{bottom:57.037500px;}
.y23c{bottom:57.300000px;}
.y10e{bottom:57.900000px;}
.y1ec{bottom:58.500000px;}
.y237{bottom:59.100000px;}
.yd7{bottom:59.430000px;}
.y186{bottom:59.700000px;}
.y2fe{bottom:59.730000px;}
.yd3{bottom:60.000000px;}
.y1bc{bottom:60.285000px;}
.y166{bottom:60.315000px;}
.y158{bottom:60.945000px;}
.y16d{bottom:61.815000px;}
.yb9{bottom:63.300000px;}
.yb5{bottom:63.337500px;}
.y209{bottom:63.600000px;}
.yf7{bottom:63.637500px;}
.y1df{bottom:63.900000px;}
.y3c{bottom:65.700000px;}
.ycd{bottom:67.830000px;}
.yb0{bottom:70.237500px;}
.y2fa{bottom:70.500000px;}
.y29a{bottom:72.300000px;}
.y2c5{bottom:72.315000px;}
.yc1{bottom:72.330000px;}
.y2f6{bottom:72.600000px;}
.y111{bottom:72.630000px;}
.y2b7{bottom:73.200000px;}
.y306{bottom:73.830000px;}
.y41{bottom:74.137500px;}
.y23b{bottom:74.415000px;}
.y10d{bottom:75.345000px;}
.y1eb{bottom:75.630000px;}
.y2bd{bottom:76.200000px;}
.y20c{bottom:76.500000px;}
.y236{bottom:76.515000px;}
.yab{bottom:76.837500px;}
.y185{bottom:77.100000px;}
.y1bb{bottom:77.430000px;}
.yc6{bottom:80.730000px;}
.y1da{bottom:81.300000px;}
.y3{bottom:81.337500px;}
.y3b{bottom:83.100000px;}
.yd2{bottom:85.815000px;}
.y165{bottom:86.115000px;}
.y16c{bottom:87.900000px;}
.yb8{bottom:89.085000px;}
.yb4{bottom:89.137500px;}
.yf6{bottom:89.437500px;}
.y208{bottom:89.445000px;}
.y2f5{bottom:89.700000px;}
.y2c4{bottom:89.715000px;}
.y117{bottom:89.730000px;}
.y1de{bottom:89.745000px;}
.y23a{bottom:91.800000px;}
.y10c{bottom:92.445000px;}
.y235{bottom:93.615000px;}
.y2bc{bottom:93.630000px;}
.ycc{bottom:93.930000px;}
.y184{bottom:94.200000px;}
.y24e{bottom:94.230000px;}
.y1ba{bottom:94.830000px;}
.yaf{bottom:96.037500px;}
.yc0{bottom:98.430000px;}
.y3a{bottom:100.200000px;}
.y20b{bottom:102.345000px;}
.yaa{bottom:102.637500px;}
.y2f9{bottom:105.000000px;}
.yc5{bottom:106.830000px;}
.y207{bottom:106.845000px;}
.y2f4{bottom:107.100000px;}
.y116{bottom:107.130000px;}
.y1d9{bottom:107.145000px;}
.y10b{bottom:109.845000px;}
.y164{bottom:111.915000px;}
.y1b9{bottom:111.930000px;}
.y311{bottom:111.937500px;}
.y16b{bottom:113.715000px;}
.yb3{bottom:115.237500px;}
.y1dd{bottom:115.830000px;}
.y39{bottom:117.645000px;}
.y17d{bottom:118.537500px;}
.y27e{bottom:119.137500px;}
.ya7{bottom:119.437500px;}
.ycb{bottom:119.730000px;}
.y215{bottom:121.537500px;}
.y79{bottom:121.837500px;}
.y2e2{bottom:122.137500px;}
.y2f8{bottom:122.400000px;}
.y2f3{bottom:124.200000px;}
.ybf{bottom:124.230000px;}
.y1d8{bottom:124.545000px;}
.y30{bottom:125.137500px;}
.y13b{bottom:126.337500px;}
.y1ae{bottom:126.637500px;}
.y20a{bottom:128.130000px;}
.ya9{bottom:128.737500px;}
.y1b8{bottom:129.330000px;}
.yc4{bottom:132.630000px;}
.y310{bottom:132.637500px;}
.y17c{bottom:133.237500px;}
.y38{bottom:134.730000px;}
.y27d{bottom:137.137500px;}
.y163{bottom:138.015000px;}
.y78{bottom:138.937500px;}
.y16a{bottom:139.500000px;}
.y2f7{bottom:139.530000px;}
.yf5{bottom:141.337500px;}
.y206{bottom:141.345000px;}
.y1dc{bottom:141.645000px;}
.y1d7{bottom:141.930000px;}
.y2f{bottom:142.537500px;}
.y13a{bottom:143.437500px;}
.yca{bottom:145.530000px;}
.y1e7{bottom:145.537500px;}
.yae{bottom:147.637500px;}
.y213{bottom:148.237500px;}
.y2e0{bottom:148.837500px;}
.ybe{bottom:150.030000px;}
.y252{bottom:150.630000px;}
.y37{bottom:152.145000px;}
.y30f{bottom:153.345000px;}
.ya8{bottom:154.537500px;}
.y17b{bottom:155.430000px;}
.y338{bottom:156.045000px;}
.y1ad{bottom:156.330000px;}
.y77{bottom:156.345000px;}
.y27c{bottom:157.530000px;}
.y298{bottom:158.130000px;}
.yc3{bottom:158.430000px;}
.y2e{bottom:159.645000px;}
.y139{bottom:160.830000px;}
.y162{bottom:163.845000px;}
.y169{bottom:165.345000px;}
.y1e5{bottom:165.630000px;}
.yf4{bottom:167.137500px;}
.y36{bottom:169.245000px;}
.yc9{bottom:171.330000px;}
.y337{bottom:173.430000px;}
.y76{bottom:174.045000px;}
.y211{bottom:174.930000px;}
.y2de{bottom:175.245000px;}
.y27b{bottom:175.530000px;}
.ybd{bottom:175.830000px;}
.y2d{bottom:177.045000px;}
.y138{bottom:177.975000px;}
.y17a{bottom:179.175000px;}
.y1ac{bottom:186.375000px;}
.y35{bottom:186.645000px;}
.y297{bottom:187.275000px;}
.y161{bottom:189.645000px;}
.y336{bottom:190.575000px;}
.y168{bottom:191.445000px;}
.y1e1{bottom:192.975000px;}
.y75{bottom:193.575000px;}
.y2c{bottom:194.175000px;}
.y30e{bottom:194.775000px;}
.y137{bottom:195.375000px;}
.yc8{bottom:197.460000px;}
.y178{bottom:199.875000px;}
.y210{bottom:201.675000px;}
.ybc{bottom:201.960000px;}
.y2dd{bottom:201.975000px;}
.y34{bottom:203.745000px;}
.y74{bottom:207.975000px;}
.y2b{bottom:211.575000px;}
.y136{bottom:212.475000px;}
.y1a8{bottom:212.775000px;}
.y24f{bottom:213.375000px;}
.y160{bottom:215.445000px;}
.y30d{bottom:215.475000px;}
.y296{bottom:216.675000px;}
.y33{bottom:221.145000px;}
.y370{bottom:223.275000px;}
.y177{bottom:225.075000px;}
.y73{bottom:225.675000px;}
.y20f{bottom:228.075000px;}
.y2a{bottom:228.675000px;}
.y27a{bottom:229.575000px;}
.y135{bottom:229.875000px;}
.y30c{bottom:236.175000px;}
.y32{bottom:238.830000px;}
.y36f{bottom:240.675000px;}
.y335{bottom:242.775000px;}
.y295{bottom:245.775000px;}
.y29{bottom:246.075000px;}
.y134{bottom:246.975000px;}
.y175{bottom:247.875000px;}
.y279{bottom:250.575000px;}
.y30a{bottom:253.875000px;}
.y1a6{bottom:254.475000px;}
.y2dc{bottom:255.375000px;}
.y72{bottom:257.775000px;}
.y1d6{bottom:259.275000px;}
.y334{bottom:262.275000px;}
.y28{bottom:263.175000px;}
.y205{bottom:263.475000px;}
.y133{bottom:264.375000px;}
.y24d{bottom:266.475000px;}
.y278{bottom:268.575000px;}
.y173{bottom:274.275000px;}
.y71{bottom:275.175000px;}
.y333{bottom:276.975000px;}
.y132{bottom:278.775000px;}
.y27{bottom:280.575000px;}
.y130{bottom:281.475000px;}
.y2db{bottom:281.775000px;}
.y277{bottom:286.575000px;}
.y1a5{bottom:286.875000px;}
.ya5{bottom:289.575000px;}
.y294{bottom:289.875000px;}
.y309{bottom:290.475000px;}
.y36e{bottom:292.275000px;}
.y70{bottom:292.575000px;}
.y2b5{bottom:293.475000px;}
.y332{bottom:294.075000px;}
.y26{bottom:297.675000px;}
.y171{bottom:297.975000px;}
.y276{bottom:306.675000px;}
.yf3{bottom:307.275000px;}
.y2da{bottom:308.475000px;}
.y6f{bottom:309.675000px;}
.y305{bottom:311.175000px;}
.y331{bottom:311.475000px;}
.y12e{bottom:312.675000px;}
.y1a4{bottom:313.575000px;}
.y25{bottom:315.075000px;}
.y16f{bottom:318.075000px;}
.yf2{bottom:321.675000px;}
.y275{bottom:324.675000px;}
.y36d{bottom:326.775000px;}
.ya4{bottom:327.675000px;}
.y330{bottom:328.575000px;}
.y2b4{bottom:330.675000px;}
.y24{bottom:332.175000px;}
.y2d9{bottom:335.175000px;}
.y6e{bottom:338.775000px;}
.y12d{bottom:340.575000px;}
.y273{bottom:342.675000px;}
.y1a2{bottom:343.275000px;}
.y36c{bottom:344.175000px;}
.ya3{bottom:347.205000px;}
.yf0{bottom:347.505000px;}
.y23{bottom:349.620000px;}
.y6d{bottom:356.220000px;}
.y32f{bottom:357.705000px;}
.y12c{bottom:358.905000px;}
.y36b{bottom:361.320000px;}
.ya2{bottom:361.605000px;}
.y272{bottom:361.620000px;}
.y2b3{bottom:361.905000px;}
.y22{bottom:366.705000px;}
.yee{bottom:367.005000px;}
.y15f{bottom:370.005000px;}
.y6c{bottom:373.620000px;}
.y32e{bottom:375.105000px;}
.y36a{bottom:378.705000px;}
.ya1{bottom:379.320000px;}
.y271{bottom:379.620000px;}
.y21{bottom:384.120000px;}
.y12b{bottom:387.405000px;}
.y24c{bottom:388.920000px;}
.yed{bottom:390.120000px;}
.y6b{bottom:390.705000px;}
.y2b1{bottom:392.820000px;}
.y2d8{bottom:393.705000px;}
.y369{bottom:395.820000px;}
.y1a0{bottom:396.705000px;}
.y270{bottom:397.620000px;}
.ya0{bottom:398.820000px;}
.y20{bottom:401.205000px;}
.y32d{bottom:404.220000px;}
.y129{bottom:407.820000px;}
.y6a{bottom:408.120000px;}
.yec{bottom:410.820000px;}
.y2d7{bottom:413.205000px;}
.y9f{bottom:413.505000px;}
.y304{bottom:418.320000px;}
.y1f{bottom:418.620000px;}
.y127{bottom:421.320000px;}
.y32c{bottom:421.620000px;}
.y24b{bottom:422.505000px;}
.y2af{bottom:423.405000px;}
.y19b{bottom:426.405000px;}
.y2d6{bottom:427.920000px;}
.y1d5{bottom:428.505000px;}
.y368{bottom:430.320000px;}
.y9e{bottom:430.620000px;}
.yea{bottom:431.820000px;}
.y1d4{bottom:432.705000px;}
.y204{bottom:433.620000px;}
.y1e{bottom:435.705000px;}
.y69{bottom:436.920000px;}
.y202{bottom:437.820000px;}
.y32b{bottom:439.005000px;}
.y303{bottom:439.320000px;}
.y125{bottom:442.320000px;}
.y2d5{bottom:445.005000px;}
.y24a{bottom:445.905000px;}
.y367{bottom:447.705000px;}
.y9d{bottom:448.320000px;}
.ye8{bottom:451.320000px;}
.y26f{bottom:451.620000px;}
.y1d{bottom:453.120000px;}
.y2ad{bottom:454.320000px;}
.y68{bottom:454.620000px;}
.y1d2{bottom:457.320000px;}
.y123{bottom:457.620000px;}
.y300{bottom:458.820000px;}
.y2d4{bottom:462.420000px;}
.y366{bottom:464.820000px;}
.y201{bottom:465.405000px;}
.y249{bottom:466.905000px;}
.y9c{bottom:467.820000px;}
.y26e{bottom:469.620000px;}
.y1c{bottom:470.820000px;}
.y67{bottom:471.720000px;}
.ye6{bottom:472.320000px;}
.y2d3{bottom:479.505000px;}
.y2fd{bottom:479.820000px;}
.y1d0{bottom:481.905000px;}
.y365{bottom:482.205000px;}
.y9b{bottom:482.505000px;}
.y121{bottom:482.820000px;}
.y200{bottom:483.705000px;}
.y2ac{bottom:484.905000px;}
.y32a{bottom:485.505000px;}
.y26c{bottom:487.620000px;}
.y66{bottom:489.420000px;}
.y247{bottom:490.620000px;}
.y1b{bottom:491.505000px;}
.ye4{bottom:492.705000px;}
.y2d2{bottom:496.905000px;}
.y364{bottom:499.320000px;}
.y9a{bottom:499.620000px;}
.y1ff{bottom:501.720000px;}
.y329{bottom:502.605000px;}
.y26b{bottom:505.605000px;}
.y246{bottom:506.220000px;}
.y1ce{bottom:506.820000px;}
.y65{bottom:508.905000px;}
.y11f{bottom:509.820000px;}
.y19a{bottom:512.220000px;}
.y2d1{bottom:514.050000px;}
.y198{bottom:515.550000px;}
.y2ab{bottom:516.450000px;}
.y363{bottom:516.750000px;}
.y99{bottom:517.050000px;}
.y1fe{bottom:519.750000px;}
.y328{bottom:520.050000px;}
.ye3{bottom:520.350000px;}
.y64{bottom:523.650000px;}
.y244{bottom:525.750000px;}
.y11e{bottom:529.950000px;}
.y1cd{bottom:531.450000px;}
.y362{bottom:533.850000px;}
.y98{bottom:534.150000px;}
.ye1{bottom:538.650000px;}
.y1fd{bottom:539.850000px;}
.y63{bottom:540.750000px;}
.y2ce{bottom:544.050000px;}
.y2a9{bottom:547.050000px;}
.y269{bottom:548.550000px;}
.y327{bottom:548.850000px;}
.y11c{bottom:549.450000px;}
.y361{bottom:551.250000px;}
.y97{bottom:551.550000px;}
.y1cc{bottom:552.450000px;}
.y2f2{bottom:553.350000px;}
.y62{bottom:558.450000px;}
.y1fc{bottom:560.250000px;}
.ye0{bottom:560.850000px;}
.y196{bottom:561.450000px;}
.y31{bottom:565.050000px;}
.y326{bottom:566.550000px;}
.y11a{bottom:567.750000px;}
.y360{bottom:568.350000px;}
.y96{bottom:569.250000px;}
.y268{bottom:569.550000px;}
.y2a8{bottom:577.950000px;}
.y195{bottom:578.550000px;}
.y61{bottom:579.150000px;}
.yde{bottom:580.350000px;}
.y1fb{bottom:581.850000px;}
.y325{bottom:583.650000px;}
.y118{bottom:583.950000px;}
.y35f{bottom:585.750000px;}
.y95{bottom:588.750000px;}
.y267{bottom:593.250000px;}
.y1ca{bottom:594.150000px;}
.y2cd{bottom:595.050000px;}
.y60{bottom:598.650000px;}
.y1f9{bottom:599.850000px;}
.y15e{bottom:601.050000px;}
.y194{bottom:601.350000px;}
.y35e{bottom:602.850000px;}
.y94{bottom:603.150000px;}
.ydc{bottom:603.450000px;}
.y15c{bottom:604.650000px;}
.y243{bottom:606.750000px;}
.y2a7{bottom:609.750000px;}
.y5f{bottom:613.350000px;}
.y266{bottom:616.950000px;}
.y2cc{bottom:618.450000px;}
.y1f8{bottom:619.350000px;}
.y35d{bottom:620.250000px;}
.y93{bottom:620.550000px;}
.y193{bottom:620.850000px;}
.y10a{bottom:621.750000px;}
.yda{bottom:624.150000px;}
.y1c9{bottom:625.350000px;}
.y2a6{bottom:625.950000px;}
.y242{bottom:626.850000px;}
.y324{bottom:629.850000px;}
.y5e{bottom:630.450000px;}
.y157{bottom:631.050000px;}
.y265{bottom:634.950000px;}
.y35c{bottom:637.350000px;}
.y92{bottom:637.650000px;}
.y2cb{bottom:639.150000px;}
.y1f7{bottom:639.450000px;}
.yd6{bottom:642.450000px;}
.y1c8{bottom:643.350000px;}
.y241{bottom:647.250000px;}
.y323{bottom:647.550000px;}
.y5d{bottom:647.850000px;}
.y2a4{bottom:650.250000px;}
.y264{bottom:652.950000px;}
.y35b{bottom:654.750000px;}
.y91{bottom:655.350000px;}
.y2ca{bottom:659.550000px;}
.y1f6{bottom:659.850000px;}
.y2a3{bottom:663.750000px;}
.y322{bottom:664.650000px;}
.y5c{bottom:664.950000px;}
.y23f{bottom:667.350000px;}
.y1c6{bottom:668.250000px;}
.y262{bottom:670.950000px;}
.y35a{bottom:671.850000px;}
.y90{bottom:674.850000px;}
.y1f4{bottom:678.750000px;}
.y2c9{bottom:681.195000px;}
.y192{bottom:681.780000px;}
.y321{bottom:682.095000px;}
.y5b{bottom:682.380000px;}
.y359{bottom:689.280000px;}
.y8f{bottom:689.595000px;}
.y1c5{bottom:689.880000px;}
.y260{bottom:693.780000px;}
.y1f3{bottom:696.780000px;}
.y5a{bottom:699.495000px;}
.y2a2{bottom:702.195000px;}
.y191{bottom:702.780000px;}
.y155{bottom:705.780000px;}
.y358{bottom:706.380000px;}
.y8e{bottom:706.695000px;}
.y1c3{bottom:709.695000px;}
.y320{bottom:710.895000px;}
.y2f1{bottom:711.480000px;}
.y234{bottom:713.280000px;}
.y1f2{bottom:714.780000px;}
.yd1{bottom:715.980000px;}
.y59{bottom:716.880000px;}
.y154{bottom:720.195000px;}
.y190{bottom:722.880000px;}
.y357{bottom:723.795000px;}
.y8d{bottom:724.395000px;}
.y2a1{bottom:724.695000px;}
.y25f{bottom:724.980000px;}
.y31f{bottom:728.580000px;}
.y2f0{bottom:729.780000px;}
.y1c1{bottom:733.980000px;}
.y58{bottom:733.995000px;}
.y2c8{bottom:735.195000px;}
.y152{bottom:740.280000px;}
.y356{bottom:740.895000px;}
.y18e{bottom:742.380000px;}
.y8c{bottom:743.880000px;}
.y2a0{bottom:744.195000px;}
.y31e{bottom:745.695000px;}
.y1f1{bottom:749.880000px;}
.y25d{bottom:751.095000px;}
.y57{bottom:751.395000px;}
.y2c3{bottom:753.480000px;}
.y1c0{bottom:756.195000px;}
.y18d{bottom:756.780000px;}
.y355{bottom:758.280000px;}
.y8b{bottom:758.595000px;}
.y150{bottom:761.280000px;}
.y31d{bottom:763.095000px;}
.y29e{bottom:765.195000px;}
.y109{bottom:766.095000px;}
.y56{bottom:768.495000px;}
.y25c{bottom:769.980000px;}
.y18c{bottom:774.195000px;}
.y354{bottom:775.380000px;}
.y8a{bottom:775.695000px;}
.y1b7{bottom:776.295000px;}
.y31c{bottom:780.795000px;}
.y2ef{bottom:782.880000px;}
.y14f{bottom:783.480000px;}
.y1ea{bottom:785.295000px;}
.y55{bottom:785.880000px;}
.y108{bottom:791.880000px;}
.y353{bottom:792.795000px;}
.y89{bottom:793.080000px;}
.y25b{bottom:795.795000px;}
.y31b{bottom:800.295000px;}
.y54{bottom:802.980000px;}
.y14d{bottom:803.880000px;}
.y188{bottom:805.080000px;}
.y2ee{bottom:809.580000px;}
.y352{bottom:809.880000px;}
.y88{bottom:810.195000px;}
.y29d{bottom:811.695000px;}
.y31a{bottom:814.695000px;}
.y107{bottom:817.695000px;}
.yd0{bottom:820.080000px;}
.y53{bottom:820.395000px;}
.y351{bottom:827.295000px;}
.y87{bottom:827.880000px;}
.y319{bottom:832.080000px;}
.y29b{bottom:832.695000px;}
.y25a{bottom:833.295000px;}
.y233{bottom:834.195000px;}
.ybb{bottom:834.795000px;}
.y2ed{bottom:836.295000px;}
.y14b{bottom:837.480000px;}
.y52{bottom:837.495000px;}
.y231{bottom:838.380000px;}
.y105{bottom:843.795000px;}
.y350{bottom:844.380000px;}
.y318{bottom:849.225000px;}
.y1a{bottom:852.825000px;}
.y259{bottom:853.125000px;}
.y51{bottom:854.925000px;}
.y86{bottom:855.525000px;}
.y183{bottom:857.025000px;}
.y2bf{bottom:857.625000px;}
.y149{bottom:857.925000px;}
.y34f{bottom:861.825000px;}
.y2ec{bottom:862.725000px;}
.y299{bottom:865.425000px;}
.y317{bottom:866.625000px;}
.y104{bottom:869.625000px;}
.y230{bottom:871.425000px;}
.y50{bottom:872.025000px;}
.y19{bottom:873.225000px;}
.y148{bottom:877.425000px;}
.y34e{bottom:878.925000px;}
.y85{bottom:880.125000px;}
.y316{bottom:883.725000px;}
.y258{bottom:884.325000px;}
.y4f{bottom:888.525000px;}
.y1e9{bottom:890.325000px;}
.y18{bottom:893.025000px;}
.y147{bottom:894.825000px;}
.y103{bottom:895.425000px;}
.y34d{bottom:896.325000px;}
.y22f{bottom:898.125000px;}
.y225{bottom:898.425000px;}
.y315{bottom:901.125000px;}
.y257{bottom:902.025000px;}
.y4e{bottom:903.225000px;}
.y84{bottom:905.025000px;}
.y17{bottom:911.625000px;}
.y34c{bottom:913.425000px;}
.y2eb{bottom:915.225000px;}
.y223{bottom:917.925000px;}
.y256{bottom:919.125000px;}
.y4d{bottom:920.325000px;}
.y101{bottom:921.225000px;}
.y22d{bottom:924.825000px;}
.y2bb{bottom:925.125000px;}
.y145{bottom:929.325000px;}
.y83{bottom:929.625000px;}
.y314{bottom:929.925000px;}
.y34b{bottom:930.825000px;}
.y16{bottom:935.625000px;}
.y1b6{bottom:936.825000px;}
.y4c{bottom:937.725000px;}
.y2ea{bottom:941.925000px;}
.y100{bottom:947.325000px;}
.y313{bottom:947.625000px;}
.y34a{bottom:947.925000px;}
.y222{bottom:948.225000px;}
.y1b5{bottom:952.425000px;}
.y15{bottom:953.025000px;}
.y4b{bottom:954.225000px;}
.y82{bottom:954.525000px;}
.y143{bottom:956.325000px;}
.y221{bottom:963.825000px;}
.y312{bottom:964.725000px;}
.y14{bottom:965.025000px;}
.y349{bottom:965.325000px;}
.y255{bottom:965.625000px;}
.y4a{bottom:968.625000px;}
.y22c{bottom:969.225000px;}
.y182{bottom:972.825000px;}
.y140{bottom:975.225000px;}
.y293{bottom:977.925000px;}
.y81{bottom:979.125000px;}
.y254{bottom:980.925000px;}
.y1b4{bottom:982.425000px;}
.y220{bottom:983.325000px;}
.y49{bottom:986.025000px;}
.y13{bottom:987.525000px;}
.y289{bottom:989.025000px;}
.y181{bottom:993.525000px;}
.y292{bottom:995.025000px;}
.y2e9{bottom:995.325000px;}
.y22b{bottom:995.925000px;}
.yff{bottom:998.925000px;}
.y12{bottom:999.825000px;}
.y342{bottom:1000.125000px;}
.y48{bottom:1003.125000px;}
.y80{bottom:1004.025000px;}
.y21f{bottom:1006.425000px;}
.y13d{bottom:1009.125000px;}
.y287{bottom:1010.325000px;}
.y1b2{bottom:1012.125000px;}
.y291{bottom:1013.025000px;}
.y348{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.y341{bottom:1020.870000px;}
.y2e6{bottom:1021.755000px;}
.y2e8{bottom:1021.770000px;}
.y22a{bottom:1022.655000px;}
.yfd{bottom:1024.770000px;}
.y180{bottom:1025.370000px;}
.y21d{bottom:1025.955000px;}
.y285{bottom:1028.070000px;}
.y7f{bottom:1028.670000px;}
.y290{bottom:1031.070000px;}
.y2b6{bottom:1033.170000px;}
.y347{bottom:1034.370000px;}
.y47{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.y340{bottom:1040.670000px;}
.yd{bottom:1040.955000px;}
.y1b1{bottom:1042.155000px;}
.y283{bottom:1042.170000px;}
.y17f{bottom:1043.070000px;}
.y21b{bottom:1046.955000px;}
.y2e5{bottom:1048.455000px;}
.y229{bottom:1049.370000px;}
.yb7{bottom:1050.870000px;}
.y346{bottom:1051.455000px;}
.y7e{bottom:1053.570000px;}
.y33f{bottom:1054.170000px;}
.y28f{bottom:1054.455000px;}
.y46{bottom:1055.070000px;}
.y281{bottom:1061.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y1b0{bottom:1068.570000px;}
.y345{bottom:1068.870000px;}
.y13c{bottom:1069.170000px;}
.y17e{bottom:1071.870000px;}
.y45{bottom:1072.170000px;}
.y28d{bottom:1073.370000px;}
.y33d{bottom:1074.855000px;}
.y2e4{bottom:1075.155000px;}
.y228{bottom:1075.755000px;}
.yfc{bottom:1076.655000px;}
.y7d{bottom:1078.170000px;}
.y280{bottom:1080.570000px;}
.ya{bottom:1083.570000px;}
.y344{bottom:1085.955000px;}
.y219{bottom:1088.655000px;}
.y44{bottom:1089.570000px;}
.y28c{bottom:1092.255000px;}
.y33b{bottom:1094.955000px;}
.y9{bottom:1097.955000px;}
.y1af{bottom:1098.570000px;}
.y27f{bottom:1100.955000px;}
.y2e3{bottom:1101.870000px;}
.yfa{bottom:1102.455000px;}
.y7c{bottom:1103.070000px;}
.y343{bottom:1103.370000px;}
.y43{bottom:1106.670000px;}
.y216{bottom:1108.455000px;}
.y8{bottom:1115.670000px;}
.y7b{bottom:1120.455000px;}
.y339{bottom:1121.070000px;}
.y42{bottom:1124.070000px;}
.y28a{bottom:1127.670000px;}
.yf9{bottom:1128.255000px;}
.y7{bottom:1133.670000px;}
.y7a{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h3e{height:8.466797px;}
.h9{height:10.757812px;}
.h5{height:12.700195px;}
.h2f{height:13.500000px;}
.h74{height:14.100000px;}
.h3b{height:14.400000px;}
.h2e{height:15.300000px;}
.h63{height:15.600000px;}
.h2a{height:16.200000px;}
.h47{height:17.100000px;}
.h5a{height:17.137500px;}
.h38{height:17.400000px;}
.h72{height:17.437500px;}
.h75{height:17.737500px;}
.h5b{height:18.000000px;}
.h6f{height:18.285000px;}
.h1c{height:18.300000px;}
.h31{height:18.337500px;}
.h5c{height:18.600000px;}
.h36{height:18.900000px;}
.h1f{height:19.500000px;}
.h62{height:19.537500px;}
.h60{height:19.800000px;}
.h3a{height:20.100000px;}
.h2b{height:20.137500px;}
.h22{height:20.400000px;}
.h39{height:20.437500px;}
.h1d{height:20.700000px;}
.h8c{height:20.737500px;}
.ha{height:21.000000px;}
.h51{height:21.037500px;}
.h4f{height:21.300000px;}
.h61{height:21.600000px;}
.h82{height:21.637500px;}
.h20{height:22.200000px;}
.h71{height:22.237500px;}
.h78{height:22.500000px;}
.h76{height:22.785000px;}
.h42{height:22.800000px;}
.h1e{height:23.100000px;}
.h50{height:23.385000px;}
.h83{height:23.400000px;}
.h41{height:23.700000px;}
.h43{height:23.737500px;}
.h54{height:24.000000px;}
.h52{height:24.300000px;}
.h6e{height:24.900000px;}
.h2d{height:25.200000px;}
.h70{height:25.500000px;}
.h25{height:25.785000px;}
.h15{height:25.800000px;}
.h23{height:25.837500px;}
.h86{height:26.085000px;}
.h26{height:26.100000px;}
.h4a{height:26.137500px;}
.h3d{height:26.400000px;}
.h5d{height:26.700000px;}
.h58{height:26.894531px;}
.h2c{height:27.000000px;}
.h57{height:27.337500px;}
.h21{height:27.637500px;}
.h32{height:27.900000px;}
.h30{height:28.500000px;}
.h49{height:29.100000px;}
.h4d{height:29.137500px;}
.h7a{height:29.400000px;}
.h64{height:30.300000px;}
.h53{height:30.600000px;}
.h45{height:30.900000px;}
.h33{height:31.200000px;}
.h7c{height:31.237500px;}
.h7b{height:31.537500px;}
.h4b{height:31.800000px;}
.h66{height:32.437500px;}
.h77{height:32.737500px;}
.h35{height:33.000000px;}
.h7{height:33.867188px;}
.h37{height:34.500000px;}
.hb{height:35.500781px;}
.h3{height:36.000000px;}
.h12{height:36.164062px;}
.h8a{height:36.600000px;}
.h7d{height:37.200000px;}
.h29{height:37.800000px;}
.hc{height:38.100586px;}
.h79{height:38.437500px;}
.h8b{height:40.500000px;}
.h4c{height:41.100000px;}
.h4{height:42.333984px;}
.h6c{height:42.337500px;}
.h14{height:43.031250px;}
.h65{height:43.800000px;}
.h13{height:44.507812px;}
.h16{height:45.205078px;}
.h68{height:45.937500px;}
.h5f{height:46.500000px;}
.h34{height:48.037500px;}
.h8{height:48.410156px;}
.h6d{height:49.107422px;}
.h11{height:49.453125px;}
.h6{height:50.800781px;}
.h84{height:51.000000px;}
.h27{height:51.600000px;}
.h87{height:51.900000px;}
.h40{height:51.937500px;}
.h85{height:52.500000px;}
.h6b{height:53.100000px;}
.he{height:53.789062px;}
.h73{height:54.000000px;}
.h10{height:54.246094px;}
.h69{height:54.600000px;}
.h46{height:60.937500px;}
.hd{height:64.546875px;}
.h1{height:65.645508px;}
.h56{height:66.300000px;}
.h80{height:66.900000px;}
.h48{height:70.800000px;}
.h1b{height:73.537500px;}
.h3c{height:74.737500px;}
.h7e{height:87.000000px;}
.h89{height:87.637500px;}
.h59{height:89.437500px;}
.h2{height:97.200000px;}
.h1a{height:99.900000px;}
.h18{height:103.200000px;}
.h81{height:103.537500px;}
.h67{height:107.400000px;}
.h7f{height:107.437500px;}
.h44{height:108.000000px;}
.h6a{height:108.037500px;}
.h28{height:126.337500px;}
.h4e{height:143.137500px;}
.h88{height:153.345000px;}
.h5e{height:155.145000px;}
.h55{height:155.745000px;}
.h17{height:168.630000px;}
.h24{height:181.245000px;}
.h19{height:216.075000px;}
.h3f{height:229.530000px;}
.hf{height:255.645000px;}
.h0{height:1263.000000px;}
.w4e{width:70.837500px;}
.w4{width:72.300000px;}
.w45{width:75.000000px;}
.w36{width:77.137500px;}
.w3f{width:79.500000px;}
.w46{width:81.337500px;}
.w44{width:81.937500px;}
.w58{width:82.500000px;}
.w37{width:83.400000px;}
.w40{width:84.937500px;}
.w3e{width:85.537500px;}
.we{width:85.837500px;}
.w10{width:88.500000px;}
.w48{width:89.700000px;}
.w38{width:89.737500px;}
.w49{width:90.037500px;}
.w34{width:94.237500px;}
.w19{width:94.537500px;}
.w3a{width:94.837500px;}
.w4d{width:95.137500px;}
.w4b{width:96.337500px;}
.w5c{width:96.637500px;}
.w5b{width:96.937500px;}
.w31{width:97.200000px;}
.w33{width:97.837500px;}
.w8{width:98.137500px;}
.w65{width:98.737500px;}
.w23{width:99.337500px;}
.w4c{width:99.900000px;}
.w68{width:99.937500px;}
.w6b{width:100.237500px;}
.w3b{width:100.537500px;}
.w22{width:101.137500px;}
.w1a{width:101.437500px;}
.w5e{width:102.937500px;}
.w5d{width:103.537500px;}
.w2a{width:103.837500px;}
.w6a{width:104.137500px;}
.w20{width:105.337500px;}
.w2c{width:107.700000px;}
.w3{width:108.000000px;}
.w55{width:108.337500px;}
.w1e{width:109.237500px;}
.w14{width:109.537500px;}
.w28{width:109.837500px;}
.w32{width:110.437500px;}
.w67{width:111.337500px;}
.w41{width:112.537500px;}
.w24{width:115.537500px;}
.w3c{width:116.737500px;}
.w1d{width:117.937500px;}
.w64{width:118.537500px;}
.w2f{width:120.637500px;}
.w1f{width:122.137500px;}
.w2d{width:123.675000px;}
.w29{width:126.337500px;}
.w61{width:127.237500px;}
.w60{width:127.575000px;}
.w43{width:128.137500px;}
.w54{width:128.437500px;}
.w16{width:129.037500px;}
.w15{width:131.437500px;}
.w62{width:132.937500px;}
.wd{width:134.137500px;}
.w1b{width:134.437500px;}
.w27{width:135.337500px;}
.w57{width:135.637500px;}
.w18{width:143.437500px;}
.w13{width:143.737500px;}
.wc{width:145.837500px;}
.wa{width:151.830000px;}
.w25{width:156.030000px;}
.w2e{width:159.330000px;}
.w59{width:162.075000px;}
.w11{width:168.375000px;}
.w9{width:169.530000px;}
.wb{width:173.475000px;}
.w4f{width:181.830000px;}
.w51{width:182.145000px;}
.w50{width:183.075000px;}
.w52{width:184.875000px;}
.w5f{width:209.130000px;}
.w12{width:222.075000px;}
.w2b{width:229.575000px;}
.w6{width:247.875000px;}
.w26{width:258.375000px;}
.w17{width:261.375000px;}
.wf{width:262.275000px;}
.w21{width:263.775000px;}
.w1c{width:289.875000px;}
.w66{width:291.375000px;}
.w69{width:319.275000px;}
.w63{width:322.875000px;}
.w5a{width:330.675000px;}
.w39{width:334.575000px;}
.w30{width:341.820000px;}
.w47{width:347.505000px;}
.w56{width:352.020000px;}
.w42{width:364.620000px;}
.w4a{width:367.320000px;}
.w3d{width:369.120000px;}
.w35{width:385.905000px;}
.w53{width:391.320000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:4.500000px;}
.x69{left:6.000000px;}
.x16{left:8.100000px;}
.x2{left:10.799998px;}
.x50{left:12.900000px;}
.x4f{left:14.400000px;}
.xf{left:16.200000px;}
.x38{left:17.700000px;}
.x11{left:19.800000px;}
.x53{left:21.000000px;}
.x3{left:22.200000px;}
.x2d{left:23.400000px;}
.x28{left:25.200000px;}
.x3a{left:26.400000px;}
.x4{left:27.600000px;}
.x29{left:29.100000px;}
.x46{left:30.300000px;}
.x25{left:31.500000px;}
.x23{left:33.300000px;}
.x2e{left:35.100000px;}
.x24{left:37.185000px;}
.x2b{left:38.985000px;}
.x32{left:40.200000px;}
.xd{left:41.700000px;}
.x45{left:43.830000px;}
.x62{left:45.045000px;}
.x33{left:46.530000px;}
.x39{left:48.300000px;}
.x44{left:50.385000px;}
.x31{left:52.800000px;}
.x27{left:54.645000px;}
.x48{left:56.085000px;}
.x47{left:57.900000px;}
.x2f{left:59.130000px;}
.x30{left:60.930000px;}
.x70{left:62.130000px;}
.x6e{left:63.630000px;}
.x6f{left:65.100000px;}
.x6b{left:66.645000px;}
.x6c{left:68.400000px;}
.x72{left:69.630000px;}
.x73{left:72.630000px;}
.x49{left:74.737500px;}
.x40{left:76.237500px;}
.x3b{left:79.837500px;}
.x1{left:81.037487px;}
.xe{left:84.037500px;}
.x71{left:91.545000px;}
.x89{left:108.037487px;}
.x9{left:153.629987px;}
.x65{left:167.437500px;}
.x63{left:171.637500px;}
.x64{left:174.337500px;}
.x12{left:179.475000px;}
.x17{left:215.475000px;}
.xb{left:241.582500px;}
.x6a{left:262.275000px;}
.x7b{left:293.175000px;}
.x18{left:301.020000px;}
.x1b{left:302.820000px;}
.x41{left:305.820000px;}
.x3c{left:338.220000px;}
.x1e{left:342.720000px;}
.x34{left:344.520000px;}
.x13{left:349.020000px;}
.x22{left:370.320000px;}
.x83{left:372.120000px;}
.x87{left:400.020000px;}
.x7f{left:403.905000px;}
.x54{left:410.520000px;}
.x79{left:411.720000px;}
.x42{left:413.520000px;}
.x4a{left:416.550000px;}
.x7c{left:421.050000px;}
.x5e{left:428.250000px;}
.x76{left:432.750000px;}
.x6{left:446.249987px;}
.x66{left:448.050000px;}
.x58{left:450.150000px;}
.x4e{left:460.650000px;}
.x74{left:472.050000px;}
.x3d{left:473.550000px;}
.x84{left:483.450000px;}
.x1f{left:486.150000px;}
.x26{left:488.250000px;}
.x14{left:500.850000px;}
.x88{left:504.150000px;}
.x55{left:505.350000px;}
.x7a{left:508.650000px;}
.x4b{left:513.750000px;}
.x5f{left:517.950000px;}
.x80{left:522.450000px;}
.x59{left:535.695000px;}
.x43{left:536.895000px;}
.x36{left:544.995000px;}
.x7d{left:548.595000px;}
.x1c{left:556.095000px;}
.x19{left:563.280000px;}
.xc{left:564.495000px;}
.x77{left:568.095000px;}
.x5b{left:573.780000px;}
.x20{left:580.695000px;}
.x3e{left:583.395000px;}
.x10{left:586.079987px;}
.x85{left:594.780000px;}
.x2a{left:597.495000px;}
.x56{left:605.895000px;}
.x81{left:607.995000px;}
.x60{left:612.780000px;}
.x5a{left:614.895000px;}
.x8{left:616.379987px;}
.x51{left:621.495000px;}
.x4c{left:624.495000px;}
.x6d{left:627.495000px;}
.x67{left:644.280000px;}
.x7{left:648.194987px;}
.x78{left:650.595000px;}
.x1a{left:651.780000px;}
.x5c{left:655.425000px;}
.x37{left:660.525000px;}
.x15{left:674.325000px;}
.x7e{left:677.025000px;}
.x21{left:682.125000px;}
.x1d{left:687.525000px;}
.x5{left:697.124987px;}
.x57{left:700.425000px;}
.x75{left:701.625000px;}
.x61{left:702.825000px;}
.x82{left:706.725000px;}
.x3f{left:709.725000px;}
.x52{left:711.225000px;}
.x86{left:712.725000px;}
.x2c{left:719.625000px;}
.x4d{left:722.325000px;}
.x5d{left:730.425000px;}
.x68{left:739.125000px;}
.xa{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.122667pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls13{letter-spacing:1.973333pt;}
.ls15{letter-spacing:2.026667pt;}
.lsc{letter-spacing:2.080000pt;}
.lsa{letter-spacing:2.133333pt;}
.lsb{letter-spacing:2.506667pt;}
.lsd{letter-spacing:2.666667pt;}
.ls12{letter-spacing:13.866667pt;}
.ls1a{letter-spacing:13.973333pt;}
.ls14{letter-spacing:14.240000pt;}
.lse{letter-spacing:14.400000pt;}
.ls18{letter-spacing:40.640000pt;}
.ws7{word-spacing:-27.733333pt;}
.wsb{word-spacing:-27.573333pt;}
.wsa{word-spacing:-27.200000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws5{word-spacing:-15.466667pt;}
.ws6{word-spacing:-15.413333pt;}
.wsf{word-spacing:-15.360000pt;}
.ws10{word-spacing:-15.306667pt;}
.wse{word-spacing:-13.706667pt;}
.ws12{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws9{word-spacing:-13.381333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws11{word-spacing:-13.226667pt;}
.ws8{word-spacing:-13.120000pt;}
.ws13{word-spacing:-12.960000pt;}
.ws3{word-spacing:-11.466667pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.373333pt;}
.wsc{word-spacing:0.586667pt;}
._1b{margin-left:-9.546667pt;}
._1a{margin-left:-8.000000pt;}
._14{margin-left:-2.026667pt;}
._1{margin-left:-1.066667pt;}
._0{width:0.938667pt;}
._10{width:2.080000pt;}
._e{width:3.466667pt;}
._11{width:5.226667pt;}
._d{width:6.346667pt;}
._a{width:7.253333pt;}
._9{width:8.213333pt;}
._f{width:9.120000pt;}
._c{width:10.453333pt;}
._b{width:11.413333pt;}
._13{width:12.426667pt;}
._12{width:14.613333pt;}
._1c{width:15.653333pt;}
._7{width:16.981333pt;}
._6{width:17.984000pt;}
._8{width:18.986667pt;}
._21{width:20.186667pt;}
._22{width:21.226667pt;}
._23{width:23.040000pt;}
._1d{width:25.760000pt;}
._1e{width:26.688000pt;}
._16{width:30.560000pt;}
._15{width:31.466667pt;}
._18{width:33.941333pt;}
._2{width:38.933333pt;}
._1f{width:45.653333pt;}
._20{width:46.986667pt;}
._19{width:48.640000pt;}
._17{width:51.648000pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.y302{bottom:-24.280000pt;}
.y1e0{bottom:-12.266667pt;}
.y29f{bottom:-9.600000pt;}
.y301{bottom:-8.800000pt;}
.y33c{bottom:-4.520000pt;}
.y12a{bottom:-0.280000pt;}
.y2a5{bottom:-0.266667pt;}
.y0{bottom:0.000000pt;}
.y286{bottom:0.266667pt;}
.y156{bottom:0.533333pt;}
.y18f{bottom:0.546667pt;}
.y126{bottom:1.333333pt;}
.y248{bottom:1.600000pt;}
.y142{bottom:1.866667pt;}
.y11b{bottom:2.133333pt;}
.y14e{bottom:2.146667pt;}
.y1f0{bottom:2.920000pt;}
.y197{bottom:2.933333pt;}
.y18b{bottom:2.946667pt;}
.y1f5{bottom:2.973333pt;}
.y26d{bottom:3.186667pt;}
.y115{bottom:3.200000pt;}
.y14c{bottom:3.213333pt;}
.y28e{bottom:3.453333pt;}
.y288{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.ydb{bottom:3.733333pt;}
.y25e{bottom:3.986667pt;}
.y11d{bottom:4.000000pt;}
.y274{bottom:4.026667pt;}
.y1fa{bottom:4.266667pt;}
.y284{bottom:4.520000pt;}
.y144{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.yeb{bottom:4.786667pt;}
.y2{bottom:4.800000pt;}
.yf1{bottom:4.813333pt;}
.y282{bottom:5.053333pt;}
.y14a{bottom:5.066667pt;}
.y21a{bottom:5.080000pt;}
.y1e8{bottom:5.326667pt;}
.y172{bottom:5.333333pt;}
.ye7{bottom:5.600000pt;}
.y33e{bottom:5.613333pt;}
.y120{bottom:5.626667pt;}
.ydd{bottom:5.866667pt;}
.y218{bottom:5.880000pt;}
.ye9{bottom:6.133333pt;}
.y21e{bottom:6.146667pt;}
.y128{bottom:6.386667pt;}
.y1c7{bottom:6.400000pt;}
.y153{bottom:6.413333pt;}
.y21c{bottom:6.666667pt;}
.y1c2{bottom:6.680000pt;}
.yd9{bottom:6.933333pt;}
.y28b{bottom:7.186667pt;}
.ye2{bottom:7.200000pt;}
.yd5{bottom:7.213333pt;}
.y263{bottom:7.466667pt;}
.y151{bottom:7.480000pt;}
.y12f{bottom:7.733333pt;}
.ydf{bottom:8.000000pt;}
.yef{bottom:8.013333pt;}
.y15b{bottom:8.266667pt;}
.y1c4{bottom:8.520000pt;}
.y174{bottom:8.533333pt;}
.y1aa{bottom:8.800000pt;}
.y261{bottom:8.813333pt;}
.y1cf{bottom:8.826667pt;}
.y1d3{bottom:9.053333pt;}
.y1cb{bottom:9.066667pt;}
.y1d1{bottom:9.080000pt;}
.y26a{bottom:9.333333pt;}
.y179{bottom:9.866667pt;}
.y124{bottom:10.120000pt;}
.y199{bottom:10.133333pt;}
.y2ae{bottom:10.386667pt;}
.y214{bottom:10.393333pt;}
.ya6{bottom:10.400000pt;}
.y2e1{bottom:10.406667pt;}
.yfb{bottom:10.413333pt;}
.y106{bottom:10.426667pt;}
.y212{bottom:10.440000pt;}
.yfe{bottom:10.653333pt;}
.y102{bottom:10.666667pt;}
.y19f{bottom:10.680000pt;}
.y2df{bottom:10.693333pt;}
.y1a3{bottom:10.706667pt;}
.y176{bottom:10.933333pt;}
.y5{bottom:10.966667pt;}
.y15d{bottom:11.200000pt;}
.y203{bottom:11.453333pt;}
.y122{bottom:11.720000pt;}
.y146{bottom:11.733333pt;}
.ye5{bottom:12.000000pt;}
.y3f{bottom:12.800000pt;}
.y2b0{bottom:12.813333pt;}
.y1a1{bottom:13.333333pt;}
.y1b3{bottom:13.373333pt;}
.y2aa{bottom:13.600000pt;}
.y224{bottom:14.400000pt;}
.ycf{bottom:14.426667pt;}
.y2b2{bottom:14.666667pt;}
.y13f{bottom:14.960000pt;}
.y131{bottom:15.466667pt;}
.y1a7{bottom:15.733333pt;}
.y1e4{bottom:16.000000pt;}
.yb2{bottom:16.266667pt;}
.y232{bottom:16.306667pt;}
.y2c2{bottom:16.533333pt;}
.y2fc{bottom:16.800000pt;}
.y29c{bottom:16.826667pt;}
.y141{bottom:17.066667pt;}
.y2d0{bottom:17.600000pt;}
.y1ef{bottom:18.386667pt;}
.y114{bottom:18.400000pt;}
.y227{bottom:18.413333pt;}
.y240{bottom:18.426667pt;}
.y18a{bottom:18.666667pt;}
.y2ba{bottom:18.920000pt;}
.y251{bottom:19.733333pt;}
.y19e{bottom:19.746667pt;}
.y30b{bottom:20.266667pt;}
.y23e{bottom:20.280000pt;}
.y110{bottom:20.800000pt;}
.y245{bottom:21.066667pt;}
.y119{bottom:21.333333pt;}
.y20e{bottom:21.866667pt;}
.y239{bottom:21.880000pt;}
.y1e6{bottom:21.906667pt;}
.yad{bottom:22.400000pt;}
.y1be{bottom:22.920000pt;}
.y15a{bottom:23.466667pt;}
.y33a{bottom:23.720000pt;}
.y1ab{bottom:24.000000pt;}
.y1a9{bottom:24.266667pt;}
.y253{bottom:25.373333pt;}
.y1db{bottom:26.133333pt;}
.y22e{bottom:26.666667pt;}
.y217{bottom:28.813333pt;}
.yd8{bottom:29.866667pt;}
.y3e{bottom:30.133333pt;}
.yd4{bottom:30.413333pt;}
.y13e{bottom:30.440000pt;}
.y167{bottom:30.666667pt;}
.y1e3{bottom:31.200000pt;}
.y2c1{bottom:31.733333pt;}
.y16e{bottom:32.000000pt;}
.y2cf{bottom:33.066667pt;}
.yb6{bottom:33.326667pt;}
.yba{bottom:33.333333pt;}
.y1ee{bottom:33.586667pt;}
.y226{bottom:33.600000pt;}
.yf8{bottom:33.606667pt;}
.y2c7{bottom:33.613333pt;}
.y170{bottom:33.640000pt;}
.y1bf{bottom:33.853333pt;}
.y113{bottom:33.866667pt;}
.y189{bottom:33.880000pt;}
.y2e7{bottom:34.146667pt;}
.y2b9{bottom:34.400000pt;}
.y250{bottom:34.933333pt;}
.y308{bottom:34.960000pt;}
.y19d{bottom:35.200000pt;}
.y23d{bottom:35.480000pt;}
.y10f{bottom:36.266667pt;}
.y1ed{bottom:36.520000pt;}
.y2be{bottom:37.066667pt;}
.y238{bottom:37.333333pt;}
.yce{bottom:37.360000pt;}
.y187{bottom:37.866667pt;}
.y2ff{bottom:37.893333pt;}
.y1bd{bottom:38.133333pt;}
.y159{bottom:38.933333pt;}
.yb1{bottom:39.206667pt;}
.yc2{bottom:41.360000pt;}
.y4{bottom:41.600000pt;}
.y3d{bottom:43.200000pt;}
.y20d{bottom:44.800000pt;}
.yac{bottom:45.326667pt;}
.y1e2{bottom:46.666667pt;}
.y2c0{bottom:47.200000pt;}
.y2fb{bottom:47.466667pt;}
.yc7{bottom:48.826667pt;}
.y112{bottom:49.066667pt;}
.y2c6{bottom:49.080000pt;}
.y2b8{bottom:49.586667pt;}
.y307{bottom:50.426667pt;}
.y19c{bottom:50.680000pt;}
.y1{bottom:50.700000pt;}
.y23c{bottom:50.933333pt;}
.y10e{bottom:51.466667pt;}
.y1ec{bottom:52.000000pt;}
.y237{bottom:52.533333pt;}
.yd7{bottom:52.826667pt;}
.y186{bottom:53.066667pt;}
.y2fe{bottom:53.093333pt;}
.yd3{bottom:53.333333pt;}
.y1bc{bottom:53.586667pt;}
.y166{bottom:53.613333pt;}
.y158{bottom:54.173333pt;}
.y16d{bottom:54.946667pt;}
.yb9{bottom:56.266667pt;}
.yb5{bottom:56.300000pt;}
.y209{bottom:56.533333pt;}
.yf7{bottom:56.566667pt;}
.y1df{bottom:56.800000pt;}
.y3c{bottom:58.400000pt;}
.ycd{bottom:60.293333pt;}
.yb0{bottom:62.433333pt;}
.y2fa{bottom:62.666667pt;}
.y29a{bottom:64.266667pt;}
.y2c5{bottom:64.280000pt;}
.yc1{bottom:64.293333pt;}
.y2f6{bottom:64.533333pt;}
.y111{bottom:64.560000pt;}
.y2b7{bottom:65.066667pt;}
.y306{bottom:65.626667pt;}
.y41{bottom:65.900000pt;}
.y23b{bottom:66.146667pt;}
.y10d{bottom:66.973333pt;}
.y1eb{bottom:67.226667pt;}
.y2bd{bottom:67.733333pt;}
.y20c{bottom:68.000000pt;}
.y236{bottom:68.013333pt;}
.yab{bottom:68.300000pt;}
.y185{bottom:68.533333pt;}
.y1bb{bottom:68.826667pt;}
.yc6{bottom:71.760000pt;}
.y1da{bottom:72.266667pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:73.866667pt;}
.yd2{bottom:76.280000pt;}
.y165{bottom:76.546667pt;}
.y16c{bottom:78.133333pt;}
.yb8{bottom:79.186667pt;}
.yb4{bottom:79.233333pt;}
.yf6{bottom:79.500000pt;}
.y208{bottom:79.506667pt;}
.y2f5{bottom:79.733333pt;}
.y2c4{bottom:79.746667pt;}
.y117{bottom:79.760000pt;}
.y1de{bottom:79.773333pt;}
.y23a{bottom:81.600000pt;}
.y10c{bottom:82.173333pt;}
.y235{bottom:83.213333pt;}
.y2bc{bottom:83.226667pt;}
.ycc{bottom:83.493333pt;}
.y184{bottom:83.733333pt;}
.y24e{bottom:83.760000pt;}
.y1ba{bottom:84.293333pt;}
.yaf{bottom:85.366667pt;}
.yc0{bottom:87.493333pt;}
.y3a{bottom:89.066667pt;}
.y20b{bottom:90.973333pt;}
.yaa{bottom:91.233333pt;}
.y2f9{bottom:93.333333pt;}
.yc5{bottom:94.960000pt;}
.y207{bottom:94.973333pt;}
.y2f4{bottom:95.200000pt;}
.y116{bottom:95.226667pt;}
.y1d9{bottom:95.240000pt;}
.y10b{bottom:97.640000pt;}
.y164{bottom:99.480000pt;}
.y1b9{bottom:99.493333pt;}
.y311{bottom:99.500000pt;}
.y16b{bottom:101.080000pt;}
.yb3{bottom:102.433333pt;}
.y1dd{bottom:102.960000pt;}
.y39{bottom:104.573333pt;}
.y17d{bottom:105.366667pt;}
.y27e{bottom:105.900000pt;}
.ya7{bottom:106.166667pt;}
.ycb{bottom:106.426667pt;}
.y215{bottom:108.033333pt;}
.y79{bottom:108.300000pt;}
.y2e2{bottom:108.566667pt;}
.y2f8{bottom:108.800000pt;}
.y2f3{bottom:110.400000pt;}
.ybf{bottom:110.426667pt;}
.y1d8{bottom:110.706667pt;}
.y30{bottom:111.233333pt;}
.y13b{bottom:112.300000pt;}
.y1ae{bottom:112.566667pt;}
.y20a{bottom:113.893333pt;}
.ya9{bottom:114.433333pt;}
.y1b8{bottom:114.960000pt;}
.yc4{bottom:117.893333pt;}
.y310{bottom:117.900000pt;}
.y17c{bottom:118.433333pt;}
.y38{bottom:119.760000pt;}
.y27d{bottom:121.900000pt;}
.y163{bottom:122.680000pt;}
.y78{bottom:123.500000pt;}
.y16a{bottom:124.000000pt;}
.y2f7{bottom:124.026667pt;}
.yf5{bottom:125.633333pt;}
.y206{bottom:125.640000pt;}
.y1dc{bottom:125.906667pt;}
.y1d7{bottom:126.160000pt;}
.y2f{bottom:126.700000pt;}
.y13a{bottom:127.500000pt;}
.yca{bottom:129.360000pt;}
.y1e7{bottom:129.366667pt;}
.yae{bottom:131.233333pt;}
.y213{bottom:131.766667pt;}
.y2e0{bottom:132.300000pt;}
.ybe{bottom:133.360000pt;}
.y252{bottom:133.893333pt;}
.y37{bottom:135.240000pt;}
.y30f{bottom:136.306667pt;}
.ya8{bottom:137.366667pt;}
.y17b{bottom:138.160000pt;}
.y338{bottom:138.706667pt;}
.y1ad{bottom:138.960000pt;}
.y77{bottom:138.973333pt;}
.y27c{bottom:140.026667pt;}
.y298{bottom:140.560000pt;}
.yc3{bottom:140.826667pt;}
.y2e{bottom:141.906667pt;}
.y139{bottom:142.960000pt;}
.y162{bottom:145.640000pt;}
.y169{bottom:146.973333pt;}
.y1e5{bottom:147.226667pt;}
.yf4{bottom:148.566667pt;}
.y36{bottom:150.440000pt;}
.yc9{bottom:152.293333pt;}
.y337{bottom:154.160000pt;}
.y76{bottom:154.706667pt;}
.y211{bottom:155.493333pt;}
.y2de{bottom:155.773333pt;}
.y27b{bottom:156.026667pt;}
.ybd{bottom:156.293333pt;}
.y2d{bottom:157.373333pt;}
.y138{bottom:158.200000pt;}
.y17a{bottom:159.266667pt;}
.y1ac{bottom:165.666667pt;}
.y35{bottom:165.906667pt;}
.y297{bottom:166.466667pt;}
.y161{bottom:168.573333pt;}
.y336{bottom:169.400000pt;}
.y168{bottom:170.173333pt;}
.y1e1{bottom:171.533333pt;}
.y75{bottom:172.066667pt;}
.y2c{bottom:172.600000pt;}
.y30e{bottom:173.133333pt;}
.y137{bottom:173.666667pt;}
.yc8{bottom:175.520000pt;}
.y178{bottom:177.666667pt;}
.y210{bottom:179.266667pt;}
.ybc{bottom:179.520000pt;}
.y2dd{bottom:179.533333pt;}
.y34{bottom:181.106667pt;}
.y74{bottom:184.866667pt;}
.y2b{bottom:188.066667pt;}
.y136{bottom:188.866667pt;}
.y1a8{bottom:189.133333pt;}
.y24f{bottom:189.666667pt;}
.y160{bottom:191.506667pt;}
.y30d{bottom:191.533333pt;}
.y296{bottom:192.600000pt;}
.y33{bottom:196.573333pt;}
.y370{bottom:198.466667pt;}
.y177{bottom:200.066667pt;}
.y73{bottom:200.600000pt;}
.y20f{bottom:202.733333pt;}
.y2a{bottom:203.266667pt;}
.y27a{bottom:204.066667pt;}
.y135{bottom:204.333333pt;}
.y30c{bottom:209.933333pt;}
.y32{bottom:212.293333pt;}
.y36f{bottom:213.933333pt;}
.y335{bottom:215.800000pt;}
.y295{bottom:218.466667pt;}
.y29{bottom:218.733333pt;}
.y134{bottom:219.533333pt;}
.y175{bottom:220.333333pt;}
.y279{bottom:222.733333pt;}
.y30a{bottom:225.666667pt;}
.y1a6{bottom:226.200000pt;}
.y2dc{bottom:227.000000pt;}
.y72{bottom:229.133333pt;}
.y1d6{bottom:230.466667pt;}
.y334{bottom:233.133333pt;}
.y28{bottom:233.933333pt;}
.y205{bottom:234.200000pt;}
.y133{bottom:235.000000pt;}
.y24d{bottom:236.866667pt;}
.y278{bottom:238.733333pt;}
.y173{bottom:243.800000pt;}
.y71{bottom:244.600000pt;}
.y333{bottom:246.200000pt;}
.y132{bottom:247.800000pt;}
.y27{bottom:249.400000pt;}
.y130{bottom:250.200000pt;}
.y2db{bottom:250.466667pt;}
.y277{bottom:254.733333pt;}
.y1a5{bottom:255.000000pt;}
.ya5{bottom:257.400000pt;}
.y294{bottom:257.666667pt;}
.y309{bottom:258.200000pt;}
.y36e{bottom:259.800000pt;}
.y70{bottom:260.066667pt;}
.y2b5{bottom:260.866667pt;}
.y332{bottom:261.400000pt;}
.y26{bottom:264.600000pt;}
.y171{bottom:264.866667pt;}
.y276{bottom:272.600000pt;}
.yf3{bottom:273.133333pt;}
.y2da{bottom:274.200000pt;}
.y6f{bottom:275.266667pt;}
.y305{bottom:276.600000pt;}
.y331{bottom:276.866667pt;}
.y12e{bottom:277.933333pt;}
.y1a4{bottom:278.733333pt;}
.y25{bottom:280.066667pt;}
.y16f{bottom:282.733333pt;}
.yf2{bottom:285.933333pt;}
.y275{bottom:288.600000pt;}
.y36d{bottom:290.466667pt;}
.ya4{bottom:291.266667pt;}
.y330{bottom:292.066667pt;}
.y2b4{bottom:293.933333pt;}
.y24{bottom:295.266667pt;}
.y2d9{bottom:297.933333pt;}
.y6e{bottom:301.133333pt;}
.y12d{bottom:302.733333pt;}
.y273{bottom:304.600000pt;}
.y1a2{bottom:305.133333pt;}
.y36c{bottom:305.933333pt;}
.ya3{bottom:308.626667pt;}
.yf0{bottom:308.893333pt;}
.y23{bottom:310.773333pt;}
.y6d{bottom:316.640000pt;}
.y32f{bottom:317.960000pt;}
.y12c{bottom:319.026667pt;}
.y36b{bottom:321.173333pt;}
.ya2{bottom:321.426667pt;}
.y272{bottom:321.440000pt;}
.y2b3{bottom:321.693333pt;}
.y22{bottom:325.960000pt;}
.yee{bottom:326.226667pt;}
.y15f{bottom:328.893333pt;}
.y6c{bottom:332.106667pt;}
.y32e{bottom:333.426667pt;}
.y36a{bottom:336.626667pt;}
.ya1{bottom:337.173333pt;}
.y271{bottom:337.440000pt;}
.y21{bottom:341.440000pt;}
.y12b{bottom:344.360000pt;}
.y24c{bottom:345.706667pt;}
.yed{bottom:346.773333pt;}
.y6b{bottom:347.293333pt;}
.y2b1{bottom:349.173333pt;}
.y2d8{bottom:349.960000pt;}
.y369{bottom:351.840000pt;}
.y1a0{bottom:352.626667pt;}
.y270{bottom:353.440000pt;}
.ya0{bottom:354.506667pt;}
.y20{bottom:356.626667pt;}
.y32d{bottom:359.306667pt;}
.y129{bottom:362.506667pt;}
.y6a{bottom:362.773333pt;}
.yec{bottom:365.173333pt;}
.y2d7{bottom:367.293333pt;}
.y9f{bottom:367.560000pt;}
.y304{bottom:371.840000pt;}
.y1f{bottom:372.106667pt;}
.y127{bottom:374.506667pt;}
.y32c{bottom:374.773333pt;}
.y24b{bottom:375.560000pt;}
.y2af{bottom:376.360000pt;}
.y19b{bottom:379.026667pt;}
.y2d6{bottom:380.373333pt;}
.y1d5{bottom:380.893333pt;}
.y368{bottom:382.506667pt;}
.y9e{bottom:382.773333pt;}
.yea{bottom:383.840000pt;}
.y1d4{bottom:384.626667pt;}
.y204{bottom:385.440000pt;}
.y1e{bottom:387.293333pt;}
.y69{bottom:388.373333pt;}
.y202{bottom:389.173333pt;}
.y32b{bottom:390.226667pt;}
.y303{bottom:390.506667pt;}
.y125{bottom:393.173333pt;}
.y2d5{bottom:395.560000pt;}
.y24a{bottom:396.360000pt;}
.y367{bottom:397.960000pt;}
.y9d{bottom:398.506667pt;}
.ye8{bottom:401.173333pt;}
.y26f{bottom:401.440000pt;}
.y1d{bottom:402.773333pt;}
.y2ad{bottom:403.840000pt;}
.y68{bottom:404.106667pt;}
.y1d2{bottom:406.506667pt;}
.y123{bottom:406.773333pt;}
.y300{bottom:407.840000pt;}
.y2d4{bottom:411.040000pt;}
.y366{bottom:413.173333pt;}
.y201{bottom:413.693333pt;}
.y249{bottom:415.026667pt;}
.y9c{bottom:415.840000pt;}
.y26e{bottom:417.440000pt;}
.y1c{bottom:418.506667pt;}
.y67{bottom:419.306667pt;}
.ye6{bottom:419.840000pt;}
.y2d3{bottom:426.226667pt;}
.y2fd{bottom:426.506667pt;}
.y1d0{bottom:428.360000pt;}
.y365{bottom:428.626667pt;}
.y9b{bottom:428.893333pt;}
.y121{bottom:429.173333pt;}
.y200{bottom:429.960000pt;}
.y2ac{bottom:431.026667pt;}
.y32a{bottom:431.560000pt;}
.y26c{bottom:433.440000pt;}
.y66{bottom:435.040000pt;}
.y247{bottom:436.106667pt;}
.y1b{bottom:436.893333pt;}
.ye4{bottom:437.960000pt;}
.y2d2{bottom:441.693333pt;}
.y364{bottom:443.840000pt;}
.y9a{bottom:444.106667pt;}
.y1ff{bottom:445.973333pt;}
.y329{bottom:446.760000pt;}
.y26b{bottom:449.426667pt;}
.y246{bottom:449.973333pt;}
.y1ce{bottom:450.506667pt;}
.y65{bottom:452.360000pt;}
.y11f{bottom:453.173333pt;}
.y19a{bottom:455.306667pt;}
.y2d1{bottom:456.933333pt;}
.y198{bottom:458.266667pt;}
.y2ab{bottom:459.066667pt;}
.y363{bottom:459.333333pt;}
.y99{bottom:459.600000pt;}
.y1fe{bottom:462.000000pt;}
.y328{bottom:462.266667pt;}
.ye3{bottom:462.533333pt;}
.y64{bottom:465.466667pt;}
.y244{bottom:467.333333pt;}
.y11e{bottom:471.066667pt;}
.y1cd{bottom:472.400000pt;}
.y362{bottom:474.533333pt;}
.y98{bottom:474.800000pt;}
.ye1{bottom:478.800000pt;}
.y1fd{bottom:479.866667pt;}
.y63{bottom:480.666667pt;}
.y2ce{bottom:483.600000pt;}
.y2a9{bottom:486.266667pt;}
.y269{bottom:487.600000pt;}
.y327{bottom:487.866667pt;}
.y11c{bottom:488.400000pt;}
.y361{bottom:490.000000pt;}
.y97{bottom:490.266667pt;}
.y1cc{bottom:491.066667pt;}
.y2f2{bottom:491.866667pt;}
.y62{bottom:496.400000pt;}
.y1fc{bottom:498.000000pt;}
.ye0{bottom:498.533333pt;}
.y196{bottom:499.066667pt;}
.y31{bottom:502.266667pt;}
.y326{bottom:503.600000pt;}
.y11a{bottom:504.666667pt;}
.y360{bottom:505.200000pt;}
.y96{bottom:506.000000pt;}
.y268{bottom:506.266667pt;}
.y2a8{bottom:513.733333pt;}
.y195{bottom:514.266667pt;}
.y61{bottom:514.800000pt;}
.yde{bottom:515.866667pt;}
.y1fb{bottom:517.200000pt;}
.y325{bottom:518.800000pt;}
.y118{bottom:519.066667pt;}
.y35f{bottom:520.666667pt;}
.y95{bottom:523.333333pt;}
.y267{bottom:527.333333pt;}
.y1ca{bottom:528.133333pt;}
.y2cd{bottom:528.933333pt;}
.y60{bottom:532.133333pt;}
.y1f9{bottom:533.200000pt;}
.y15e{bottom:534.266667pt;}
.y194{bottom:534.533333pt;}
.y35e{bottom:535.866667pt;}
.y94{bottom:536.133333pt;}
.ydc{bottom:536.400000pt;}
.y15c{bottom:537.466667pt;}
.y243{bottom:539.333333pt;}
.y2a7{bottom:542.000000pt;}
.y5f{bottom:545.200000pt;}
.y266{bottom:548.400000pt;}
.y2cc{bottom:549.733333pt;}
.y1f8{bottom:550.533333pt;}
.y35d{bottom:551.333333pt;}
.y93{bottom:551.600000pt;}
.y193{bottom:551.866667pt;}
.y10a{bottom:552.666667pt;}
.yda{bottom:554.800000pt;}
.y1c9{bottom:555.866667pt;}
.y2a6{bottom:556.400000pt;}
.y242{bottom:557.200000pt;}
.y324{bottom:559.866667pt;}
.y5e{bottom:560.400000pt;}
.y157{bottom:560.933333pt;}
.y265{bottom:564.400000pt;}
.y35c{bottom:566.533333pt;}
.y92{bottom:566.800000pt;}
.y2cb{bottom:568.133333pt;}
.y1f7{bottom:568.400000pt;}
.yd6{bottom:571.066667pt;}
.y1c8{bottom:571.866667pt;}
.y241{bottom:575.333333pt;}
.y323{bottom:575.600000pt;}
.y5d{bottom:575.866667pt;}
.y2a4{bottom:578.000000pt;}
.y264{bottom:580.400000pt;}
.y35b{bottom:582.000000pt;}
.y91{bottom:582.533333pt;}
.y2ca{bottom:586.266667pt;}
.y1f6{bottom:586.533333pt;}
.y2a3{bottom:590.000000pt;}
.y322{bottom:590.800000pt;}
.y5c{bottom:591.066667pt;}
.y23f{bottom:593.200000pt;}
.y1c6{bottom:594.000000pt;}
.y262{bottom:596.400000pt;}
.y35a{bottom:597.200000pt;}
.y90{bottom:599.866667pt;}
.y1f4{bottom:603.333333pt;}
.y2c9{bottom:605.506667pt;}
.y192{bottom:606.026667pt;}
.y321{bottom:606.306667pt;}
.y5b{bottom:606.560000pt;}
.y359{bottom:612.693333pt;}
.y8f{bottom:612.973333pt;}
.y1c5{bottom:613.226667pt;}
.y260{bottom:616.693333pt;}
.y1f3{bottom:619.360000pt;}
.y5a{bottom:621.773333pt;}
.y2a2{bottom:624.173333pt;}
.y191{bottom:624.693333pt;}
.y155{bottom:627.360000pt;}
.y358{bottom:627.893333pt;}
.y8e{bottom:628.173333pt;}
.y1c3{bottom:630.840000pt;}
.y320{bottom:631.906667pt;}
.y2f1{bottom:632.426667pt;}
.y234{bottom:634.026667pt;}
.y1f2{bottom:635.360000pt;}
.yd1{bottom:636.426667pt;}
.y59{bottom:637.226667pt;}
.y154{bottom:640.173333pt;}
.y190{bottom:642.560000pt;}
.y357{bottom:643.373333pt;}
.y8d{bottom:643.906667pt;}
.y2a1{bottom:644.173333pt;}
.y25f{bottom:644.426667pt;}
.y31f{bottom:647.626667pt;}
.y2f0{bottom:648.693333pt;}
.y1c1{bottom:652.426667pt;}
.y58{bottom:652.440000pt;}
.y2c8{bottom:653.506667pt;}
.y152{bottom:658.026667pt;}
.y356{bottom:658.573333pt;}
.y18e{bottom:659.893333pt;}
.y8c{bottom:661.226667pt;}
.y2a0{bottom:661.506667pt;}
.y31e{bottom:662.840000pt;}
.y1f1{bottom:666.560000pt;}
.y25d{bottom:667.640000pt;}
.y57{bottom:667.906667pt;}
.y2c3{bottom:669.760000pt;}
.y1c0{bottom:672.173333pt;}
.y18d{bottom:672.693333pt;}
.y355{bottom:674.026667pt;}
.y8b{bottom:674.306667pt;}
.y150{bottom:676.693333pt;}
.y31d{bottom:678.306667pt;}
.y29e{bottom:680.173333pt;}
.y109{bottom:680.973333pt;}
.y56{bottom:683.106667pt;}
.y25c{bottom:684.426667pt;}
.y18c{bottom:688.173333pt;}
.y354{bottom:689.226667pt;}
.y8a{bottom:689.506667pt;}
.y1b7{bottom:690.040000pt;}
.y31c{bottom:694.040000pt;}
.y2ef{bottom:695.893333pt;}
.y14f{bottom:696.426667pt;}
.y1ea{bottom:698.040000pt;}
.y55{bottom:698.560000pt;}
.y108{bottom:703.893333pt;}
.y353{bottom:704.706667pt;}
.y89{bottom:704.960000pt;}
.y25b{bottom:707.373333pt;}
.y31b{bottom:711.373333pt;}
.y54{bottom:713.760000pt;}
.y14d{bottom:714.560000pt;}
.y188{bottom:715.626667pt;}
.y2ee{bottom:719.626667pt;}
.y352{bottom:719.893333pt;}
.y88{bottom:720.173333pt;}
.y29d{bottom:721.506667pt;}
.y31a{bottom:724.173333pt;}
.y107{bottom:726.840000pt;}
.yd0{bottom:728.960000pt;}
.y53{bottom:729.240000pt;}
.y351{bottom:735.373333pt;}
.y87{bottom:735.893333pt;}
.y319{bottom:739.626667pt;}
.y29b{bottom:740.173333pt;}
.y25a{bottom:740.706667pt;}
.y233{bottom:741.506667pt;}
.ybb{bottom:742.040000pt;}
.y2ed{bottom:743.373333pt;}
.y14b{bottom:744.426667pt;}
.y52{bottom:744.440000pt;}
.y231{bottom:745.226667pt;}
.y105{bottom:750.040000pt;}
.y350{bottom:750.560000pt;}
.y318{bottom:754.866667pt;}
.y1a{bottom:758.066667pt;}
.y259{bottom:758.333333pt;}
.y51{bottom:759.933333pt;}
.y86{bottom:760.466667pt;}
.y183{bottom:761.800000pt;}
.y2bf{bottom:762.333333pt;}
.y149{bottom:762.600000pt;}
.y34f{bottom:766.066667pt;}
.y2ec{bottom:766.866667pt;}
.y299{bottom:769.266667pt;}
.y317{bottom:770.333333pt;}
.y104{bottom:773.000000pt;}
.y230{bottom:774.600000pt;}
.y50{bottom:775.133333pt;}
.y19{bottom:776.200000pt;}
.y148{bottom:779.933333pt;}
.y34e{bottom:781.266667pt;}
.y85{bottom:782.333333pt;}
.y316{bottom:785.533333pt;}
.y258{bottom:786.066667pt;}
.y4f{bottom:789.800000pt;}
.y1e9{bottom:791.400000pt;}
.y18{bottom:793.800000pt;}
.y147{bottom:795.400000pt;}
.y103{bottom:795.933333pt;}
.y34d{bottom:796.733333pt;}
.y22f{bottom:798.333333pt;}
.y225{bottom:798.600000pt;}
.y315{bottom:801.000000pt;}
.y257{bottom:801.800000pt;}
.y4e{bottom:802.866667pt;}
.y84{bottom:804.466667pt;}
.y17{bottom:810.333333pt;}
.y34c{bottom:811.933333pt;}
.y2eb{bottom:813.533333pt;}
.y223{bottom:815.933333pt;}
.y256{bottom:817.000000pt;}
.y4d{bottom:818.066667pt;}
.y101{bottom:818.866667pt;}
.y22d{bottom:822.066667pt;}
.y2bb{bottom:822.333333pt;}
.y145{bottom:826.066667pt;}
.y83{bottom:826.333333pt;}
.y314{bottom:826.600000pt;}
.y34b{bottom:827.400000pt;}
.y16{bottom:831.666667pt;}
.y1b6{bottom:832.733333pt;}
.y4c{bottom:833.533333pt;}
.y2ea{bottom:837.266667pt;}
.y100{bottom:842.066667pt;}
.y313{bottom:842.333333pt;}
.y34a{bottom:842.600000pt;}
.y222{bottom:842.866667pt;}
.y1b5{bottom:846.600000pt;}
.y15{bottom:847.133333pt;}
.y4b{bottom:848.200000pt;}
.y82{bottom:848.466667pt;}
.y143{bottom:850.066667pt;}
.y221{bottom:856.733333pt;}
.y312{bottom:857.533333pt;}
.y14{bottom:857.800000pt;}
.y349{bottom:858.066667pt;}
.y255{bottom:858.333333pt;}
.y4a{bottom:861.000000pt;}
.y22c{bottom:861.533333pt;}
.y182{bottom:864.733333pt;}
.y140{bottom:866.866667pt;}
.y293{bottom:869.266667pt;}
.y81{bottom:870.333333pt;}
.y254{bottom:871.933333pt;}
.y1b4{bottom:873.266667pt;}
.y220{bottom:874.066667pt;}
.y49{bottom:876.466667pt;}
.y13{bottom:877.800000pt;}
.y289{bottom:879.133333pt;}
.y181{bottom:883.133333pt;}
.y292{bottom:884.466667pt;}
.y2e9{bottom:884.733333pt;}
.y22b{bottom:885.266667pt;}
.yff{bottom:887.933333pt;}
.y12{bottom:888.733333pt;}
.y342{bottom:889.000000pt;}
.y48{bottom:891.666667pt;}
.y80{bottom:892.466667pt;}
.y21f{bottom:894.600000pt;}
.y13d{bottom:897.000000pt;}
.y287{bottom:898.066667pt;}
.y1b2{bottom:899.666667pt;}
.y291{bottom:900.466667pt;}
.y348{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.y341{bottom:907.440000pt;}
.y2e6{bottom:908.226667pt;}
.y2e8{bottom:908.240000pt;}
.y22a{bottom:909.026667pt;}
.yfd{bottom:910.906667pt;}
.y180{bottom:911.440000pt;}
.y21d{bottom:911.960000pt;}
.y285{bottom:913.840000pt;}
.y7f{bottom:914.373333pt;}
.y290{bottom:916.506667pt;}
.y2b6{bottom:918.373333pt;}
.y347{bottom:919.440000pt;}
.y47{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.y340{bottom:925.040000pt;}
.yd{bottom:925.293333pt;}
.y1b1{bottom:926.360000pt;}
.y283{bottom:926.373333pt;}
.y17f{bottom:927.173333pt;}
.y21b{bottom:930.626667pt;}
.y2e5{bottom:931.960000pt;}
.y229{bottom:932.773333pt;}
.yb7{bottom:934.106667pt;}
.y346{bottom:934.626667pt;}
.y7e{bottom:936.506667pt;}
.y33f{bottom:937.040000pt;}
.y28f{bottom:937.293333pt;}
.y46{bottom:937.840000pt;}
.y281{bottom:943.173333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y1b0{bottom:949.840000pt;}
.y345{bottom:950.106667pt;}
.y13c{bottom:950.373333pt;}
.y17e{bottom:952.773333pt;}
.y45{bottom:953.040000pt;}
.y28d{bottom:954.106667pt;}
.y33d{bottom:955.426667pt;}
.y2e4{bottom:955.693333pt;}
.y228{bottom:956.226667pt;}
.yfc{bottom:957.026667pt;}
.y7d{bottom:958.373333pt;}
.y280{bottom:960.506667pt;}
.ya{bottom:963.173333pt;}
.y344{bottom:965.293333pt;}
.y219{bottom:967.693333pt;}
.y44{bottom:968.506667pt;}
.y28c{bottom:970.893333pt;}
.y33b{bottom:973.293333pt;}
.y9{bottom:975.960000pt;}
.y1af{bottom:976.506667pt;}
.y27f{bottom:978.626667pt;}
.y2e3{bottom:979.440000pt;}
.yfa{bottom:979.960000pt;}
.y7c{bottom:980.506667pt;}
.y343{bottom:980.773333pt;}
.y43{bottom:983.706667pt;}
.y216{bottom:985.293333pt;}
.y8{bottom:991.706667pt;}
.y7b{bottom:995.960000pt;}
.y339{bottom:996.506667pt;}
.y42{bottom:999.173333pt;}
.y28a{bottom:1002.373333pt;}
.yf9{bottom:1002.893333pt;}
.y7{bottom:1007.706667pt;}
.y7a{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h3e{height:7.526042pt;}
.h9{height:9.562500pt;}
.h5{height:11.289062pt;}
.h2f{height:12.000000pt;}
.h74{height:12.533333pt;}
.h3b{height:12.800000pt;}
.h2e{height:13.600000pt;}
.h63{height:13.866667pt;}
.h2a{height:14.400000pt;}
.h47{height:15.200000pt;}
.h5a{height:15.233333pt;}
.h38{height:15.466667pt;}
.h72{height:15.500000pt;}
.h75{height:15.766667pt;}
.h5b{height:16.000000pt;}
.h6f{height:16.253333pt;}
.h1c{height:16.266667pt;}
.h31{height:16.300000pt;}
.h5c{height:16.533333pt;}
.h36{height:16.800000pt;}
.h1f{height:17.333333pt;}
.h62{height:17.366667pt;}
.h60{height:17.600000pt;}
.h3a{height:17.866667pt;}
.h2b{height:17.900000pt;}
.h22{height:18.133333pt;}
.h39{height:18.166667pt;}
.h1d{height:18.400000pt;}
.h8c{height:18.433333pt;}
.ha{height:18.666667pt;}
.h51{height:18.700000pt;}
.h4f{height:18.933333pt;}
.h61{height:19.200000pt;}
.h82{height:19.233333pt;}
.h20{height:19.733333pt;}
.h71{height:19.766667pt;}
.h78{height:20.000000pt;}
.h76{height:20.253333pt;}
.h42{height:20.266667pt;}
.h1e{height:20.533333pt;}
.h50{height:20.786667pt;}
.h83{height:20.800000pt;}
.h41{height:21.066667pt;}
.h43{height:21.100000pt;}
.h54{height:21.333333pt;}
.h52{height:21.600000pt;}
.h6e{height:22.133333pt;}
.h2d{height:22.400000pt;}
.h70{height:22.666667pt;}
.h25{height:22.920000pt;}
.h15{height:22.933333pt;}
.h23{height:22.966667pt;}
.h86{height:23.186667pt;}
.h26{height:23.200000pt;}
.h4a{height:23.233333pt;}
.h3d{height:23.466667pt;}
.h5d{height:23.733333pt;}
.h58{height:23.906250pt;}
.h2c{height:24.000000pt;}
.h57{height:24.300000pt;}
.h21{height:24.566667pt;}
.h32{height:24.800000pt;}
.h30{height:25.333333pt;}
.h49{height:25.866667pt;}
.h4d{height:25.900000pt;}
.h7a{height:26.133333pt;}
.h64{height:26.933333pt;}
.h53{height:27.200000pt;}
.h45{height:27.466667pt;}
.h33{height:27.733333pt;}
.h7c{height:27.766667pt;}
.h7b{height:28.033333pt;}
.h4b{height:28.266667pt;}
.h66{height:28.833333pt;}
.h77{height:29.100000pt;}
.h35{height:29.333333pt;}
.h7{height:30.104167pt;}
.h37{height:30.666667pt;}
.hb{height:31.556250pt;}
.h3{height:32.000000pt;}
.h12{height:32.145833pt;}
.h8a{height:32.533333pt;}
.h7d{height:33.066667pt;}
.h29{height:33.600000pt;}
.hc{height:33.867188pt;}
.h79{height:34.166667pt;}
.h8b{height:36.000000pt;}
.h4c{height:36.533333pt;}
.h4{height:37.630208pt;}
.h6c{height:37.633333pt;}
.h14{height:38.250000pt;}
.h65{height:38.933333pt;}
.h13{height:39.562500pt;}
.h16{height:40.182292pt;}
.h68{height:40.833333pt;}
.h5f{height:41.333333pt;}
.h34{height:42.700000pt;}
.h8{height:43.031250pt;}
.h6d{height:43.651042pt;}
.h11{height:43.958333pt;}
.h6{height:45.156250pt;}
.h84{height:45.333333pt;}
.h27{height:45.866667pt;}
.h87{height:46.133333pt;}
.h40{height:46.166667pt;}
.h85{height:46.666667pt;}
.h6b{height:47.200000pt;}
.he{height:47.812500pt;}
.h73{height:48.000000pt;}
.h10{height:48.218750pt;}
.h69{height:48.533333pt;}
.h46{height:54.166667pt;}
.hd{height:57.375000pt;}
.h1{height:58.351562pt;}
.h56{height:58.933333pt;}
.h80{height:59.466667pt;}
.h48{height:62.933333pt;}
.h1b{height:65.366667pt;}
.h3c{height:66.433333pt;}
.h7e{height:77.333333pt;}
.h89{height:77.900000pt;}
.h59{height:79.500000pt;}
.h2{height:86.400000pt;}
.h1a{height:88.800000pt;}
.h18{height:91.733333pt;}
.h81{height:92.033333pt;}
.h67{height:95.466667pt;}
.h7f{height:95.500000pt;}
.h44{height:96.000000pt;}
.h6a{height:96.033333pt;}
.h28{height:112.300000pt;}
.h4e{height:127.233333pt;}
.h88{height:136.306667pt;}
.h5e{height:137.906667pt;}
.h55{height:138.440000pt;}
.h17{height:149.893333pt;}
.h24{height:161.106667pt;}
.h19{height:192.066667pt;}
.h3f{height:204.026667pt;}
.hf{height:227.240000pt;}
.h0{height:1122.666667pt;}
.w4e{width:62.966667pt;}
.w4{width:64.266667pt;}
.w45{width:66.666667pt;}
.w36{width:68.566667pt;}
.w3f{width:70.666667pt;}
.w46{width:72.300000pt;}
.w44{width:72.833333pt;}
.w58{width:73.333333pt;}
.w37{width:74.133333pt;}
.w40{width:75.500000pt;}
.w3e{width:76.033333pt;}
.we{width:76.300000pt;}
.w10{width:78.666667pt;}
.w48{width:79.733333pt;}
.w38{width:79.766667pt;}
.w49{width:80.033333pt;}
.w34{width:83.766667pt;}
.w19{width:84.033333pt;}
.w3a{width:84.300000pt;}
.w4d{width:84.566667pt;}
.w4b{width:85.633333pt;}
.w5c{width:85.900000pt;}
.w5b{width:86.166667pt;}
.w31{width:86.400000pt;}
.w33{width:86.966667pt;}
.w8{width:87.233333pt;}
.w65{width:87.766667pt;}
.w23{width:88.300000pt;}
.w4c{width:88.800000pt;}
.w68{width:88.833333pt;}
.w6b{width:89.100000pt;}
.w3b{width:89.366667pt;}
.w22{width:89.900000pt;}
.w1a{width:90.166667pt;}
.w5e{width:91.500000pt;}
.w5d{width:92.033333pt;}
.w2a{width:92.300000pt;}
.w6a{width:92.566667pt;}
.w20{width:93.633333pt;}
.w2c{width:95.733333pt;}
.w3{width:96.000000pt;}
.w55{width:96.300000pt;}
.w1e{width:97.100000pt;}
.w14{width:97.366667pt;}
.w28{width:97.633333pt;}
.w32{width:98.166667pt;}
.w67{width:98.966667pt;}
.w41{width:100.033333pt;}
.w24{width:102.700000pt;}
.w3c{width:103.766667pt;}
.w1d{width:104.833333pt;}
.w64{width:105.366667pt;}
.w2f{width:107.233333pt;}
.w1f{width:108.566667pt;}
.w2d{width:109.933333pt;}
.w29{width:112.300000pt;}
.w61{width:113.100000pt;}
.w60{width:113.400000pt;}
.w43{width:113.900000pt;}
.w54{width:114.166667pt;}
.w16{width:114.700000pt;}
.w15{width:116.833333pt;}
.w62{width:118.166667pt;}
.wd{width:119.233333pt;}
.w1b{width:119.500000pt;}
.w27{width:120.300000pt;}
.w57{width:120.566667pt;}
.w18{width:127.500000pt;}
.w13{width:127.766667pt;}
.wc{width:129.633333pt;}
.wa{width:134.960000pt;}
.w25{width:138.693333pt;}
.w2e{width:141.626667pt;}
.w59{width:144.066667pt;}
.w11{width:149.666667pt;}
.w9{width:150.693333pt;}
.wb{width:154.200000pt;}
.w4f{width:161.626667pt;}
.w51{width:161.906667pt;}
.w50{width:162.733333pt;}
.w52{width:164.333333pt;}
.w5f{width:185.893333pt;}
.w12{width:197.400000pt;}
.w2b{width:204.066667pt;}
.w6{width:220.333333pt;}
.w26{width:229.666667pt;}
.w17{width:232.333333pt;}
.wf{width:233.133333pt;}
.w21{width:234.466667pt;}
.w1c{width:257.666667pt;}
.w66{width:259.000000pt;}
.w69{width:283.800000pt;}
.w63{width:287.000000pt;}
.w5a{width:293.933333pt;}
.w39{width:297.400000pt;}
.w30{width:303.840000pt;}
.w47{width:308.893333pt;}
.w56{width:312.906667pt;}
.w42{width:324.106667pt;}
.w4a{width:326.506667pt;}
.w3d{width:328.106667pt;}
.w35{width:343.026667pt;}
.w53{width:347.840000pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:4.000000pt;}
.x69{left:5.333333pt;}
.x16{left:7.200000pt;}
.x2{left:9.599999pt;}
.x50{left:11.466667pt;}
.x4f{left:12.800000pt;}
.xf{left:14.400000pt;}
.x38{left:15.733333pt;}
.x11{left:17.600000pt;}
.x53{left:18.666667pt;}
.x3{left:19.733333pt;}
.x2d{left:20.800000pt;}
.x28{left:22.400000pt;}
.x3a{left:23.466667pt;}
.x4{left:24.533333pt;}
.x29{left:25.866667pt;}
.x46{left:26.933333pt;}
.x25{left:28.000000pt;}
.x23{left:29.600000pt;}
.x2e{left:31.200000pt;}
.x24{left:33.053333pt;}
.x2b{left:34.653333pt;}
.x32{left:35.733333pt;}
.xd{left:37.066667pt;}
.x45{left:38.960000pt;}
.x62{left:40.040000pt;}
.x33{left:41.360000pt;}
.x39{left:42.933333pt;}
.x44{left:44.786667pt;}
.x31{left:46.933333pt;}
.x27{left:48.573333pt;}
.x48{left:49.853333pt;}
.x47{left:51.466667pt;}
.x2f{left:52.560000pt;}
.x30{left:54.160000pt;}
.x70{left:55.226667pt;}
.x6e{left:56.560000pt;}
.x6f{left:57.866667pt;}
.x6b{left:59.240000pt;}
.x6c{left:60.800000pt;}
.x72{left:61.893333pt;}
.x73{left:64.560000pt;}
.x49{left:66.433333pt;}
.x40{left:67.766667pt;}
.x3b{left:70.966667pt;}
.x1{left:72.033322pt;}
.xe{left:74.700000pt;}
.x71{left:81.373333pt;}
.x89{left:96.033322pt;}
.x9{left:136.559988pt;}
.x65{left:148.833333pt;}
.x63{left:152.566667pt;}
.x64{left:154.966667pt;}
.x12{left:159.533333pt;}
.x17{left:191.533333pt;}
.xb{left:214.740000pt;}
.x6a{left:233.133333pt;}
.x7b{left:260.600000pt;}
.x18{left:267.573333pt;}
.x1b{left:269.173333pt;}
.x41{left:271.840000pt;}
.x3c{left:300.640000pt;}
.x1e{left:304.640000pt;}
.x34{left:306.240000pt;}
.x13{left:310.240000pt;}
.x22{left:329.173333pt;}
.x83{left:330.773333pt;}
.x87{left:355.573333pt;}
.x7f{left:359.026667pt;}
.x54{left:364.906667pt;}
.x79{left:365.973333pt;}
.x42{left:367.573333pt;}
.x4a{left:370.266667pt;}
.x7c{left:374.266667pt;}
.x5e{left:380.666667pt;}
.x76{left:384.666667pt;}
.x6{left:396.666655pt;}
.x66{left:398.266667pt;}
.x58{left:400.133333pt;}
.x4e{left:409.466667pt;}
.x74{left:419.600000pt;}
.x3d{left:420.933333pt;}
.x84{left:429.733333pt;}
.x1f{left:432.133333pt;}
.x26{left:434.000000pt;}
.x14{left:445.200000pt;}
.x88{left:448.133333pt;}
.x55{left:449.200000pt;}
.x7a{left:452.133333pt;}
.x4b{left:456.666667pt;}
.x5f{left:460.400000pt;}
.x80{left:464.400000pt;}
.x59{left:476.173333pt;}
.x43{left:477.240000pt;}
.x36{left:484.440000pt;}
.x7d{left:487.640000pt;}
.x1c{left:494.306667pt;}
.x19{left:500.693333pt;}
.xc{left:501.773333pt;}
.x77{left:504.973333pt;}
.x5b{left:510.026667pt;}
.x20{left:516.173333pt;}
.x3e{left:518.573333pt;}
.x10{left:520.959988pt;}
.x85{left:528.693333pt;}
.x2a{left:531.106667pt;}
.x56{left:538.573333pt;}
.x81{left:540.440000pt;}
.x60{left:544.693333pt;}
.x5a{left:546.573333pt;}
.x8{left:547.893322pt;}
.x51{left:552.440000pt;}
.x4c{left:555.106667pt;}
.x6d{left:557.773333pt;}
.x67{left:572.693333pt;}
.x7{left:576.173322pt;}
.x78{left:578.306667pt;}
.x1a{left:579.360000pt;}
.x5c{left:582.600000pt;}
.x37{left:587.133333pt;}
.x15{left:599.400000pt;}
.x7e{left:601.800000pt;}
.x21{left:606.333333pt;}
.x1d{left:611.133333pt;}
.x5{left:619.666655pt;}
.x57{left:622.600000pt;}
.x75{left:623.666667pt;}
.x61{left:624.733333pt;}
.x82{left:628.200000pt;}
.x3f{left:630.866667pt;}
.x52{left:632.200000pt;}
.x86{left:633.533333pt;}
.x2c{left:639.666667pt;}
.x4d{left:642.066667pt;}
.x5d{left:649.266667pt;}
.x68{left:657.000000pt;}
.xa{left:722.106655pt;}
}




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