
    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_fdc9c363aba0fb34bc325753.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4283856c3c83f36c37ef571a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c1c4384c9e085f11c5ac62f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_e9ce7161fa4d15ff325019fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.703613;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_45f67530f897fec9e3c71a7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_aab2bc69249d71009d379918.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dc9a9184a734766a3f542138.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927734;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_110cdeaa4431b72615893564.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.928223;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_e0ace19938bfcfe0944b8a21.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_149fbf3957908c25d83c4173.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2f395a36baa1d8bea0ed4f91.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ccce3ef0b434283538b08d0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-1.440000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-5.112000px;}
.lsd{letter-spacing:-4.464000px;}
.ls9{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.720000px;}
.lsf{letter-spacing:7.344000px;}
.ls6{letter-spacing:12.240000px;}
.ls14{letter-spacing:53.400000px;}
.lsa{letter-spacing:53.424000px;}
.ls13{letter-spacing:197.976000px;}
.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;}
}
.ws1{word-spacing:-95.797440px;}
.ws3{word-spacing:-95.760000px;}
.ws9{word-spacing:-21.096000px;}
.ws4{word-spacing:-21.060000px;}
.wse{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.560000px;}
.ws0{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.888000px;}
.ws2{word-spacing:-0.095760px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-8.255520px;}
._1{margin-left:-6.853680px;}
._2{margin-left:-5.468976px;}
._b{margin-left:-4.248000px;}
._3{margin-left:-2.585952px;}
._0{margin-left:-1.515024px;}
._4{width:1.757952px;}
._d{width:3.024000px;}
._e{width:4.548000px;}
._12{width:5.964000px;}
._19{width:6.972096px;}
._11{width:7.992000px;}
._f{width:9.408000px;}
._10{width:10.518048px;}
._7{width:11.520000px;}
._8{width:12.600000px;}
._18{width:14.112000px;}
._17{width:15.384000px;}
._20{width:16.872096px;}
._28{width:18.144000px;}
._1d{width:19.155024px;}
._6{width:20.277072px;}
._9{width:21.312000px;}
._a{width:22.320000px;}
._c{width:23.760000px;}
._22{width:24.840000px;}
._21{width:25.851024px;}
._23{width:27.360000px;}
._15{width:29.088000px;}
._16{width:31.083024px;}
._1a{width:32.472000px;}
._1b{width:33.751728px;}
._24{width:35.280000px;}
._1c{width:36.447024px;}
._13{width:38.088000px;}
._14{width:39.265680px;}
._25{width:41.134320px;}
._26{width:42.552000px;}
._27{width:43.848000px;}
._29{width:45.815040px;}
._2a{width:47.235024px;}
._2d{width:48.838752px;}
._2c{width:49.968000px;}
._1e{width:51.192000px;}
._1f{width:52.200000px;}
._2b{width:53.397072px;}
._30{width:60.336000px;}
._37{width:63.864000px;}
._2e{width:81.864000px;}
._33{width:83.592000px;}
._34{width:85.104000px;}
._36{width:100.368000px;}
._35{width:130.716000px;}
._32{width:132.807024px;}
._31{width:133.848000px;}
._2f{width:291.171024px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,176,240);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(100,100,100);}
.fc1{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y16{bottom:-13.035000px;}
.y12{bottom:-10.470000px;}
.y0{bottom:0.000000px;}
.y1e6{bottom:4.125000px;}
.yd7{bottom:4.140000px;}
.y1e8{bottom:4.485000px;}
.ydd{bottom:4.500000px;}
.y228{bottom:5.040000px;}
.y9{bottom:5.220000px;}
.y268{bottom:5.580000px;}
.y21f{bottom:5.745000px;}
.y1c0{bottom:5.760000px;}
.y275{bottom:5.940000px;}
.y19f{bottom:6.120000px;}
.y1eb{bottom:6.285000px;}
.y23b{bottom:6.300000px;}
.y1a9{bottom:6.660000px;}
.y1ac{bottom:6.840000px;}
.y1ef{bottom:7.185000px;}
.y24b{bottom:7.365000px;}
.y25e{bottom:7.380000px;}
.y11{bottom:7.710000px;}
.y1db{bottom:7.740000px;}
.y1d4{bottom:7.920000px;}
.y17c{bottom:8.085000px;}
.y1bc{bottom:8.100000px;}
.y17f{bottom:8.265000px;}
.y17a{bottom:8.280000px;}
.y1fc{bottom:8.820000px;}
.y1f7{bottom:9.000000px;}
.y1fa{bottom:9.180000px;}
.yb{bottom:9.360000px;}
.y166{bottom:9.720000px;}
.y252{bottom:9.885000px;}
.y255{bottom:10.065000px;}
.y24e{bottom:10.245000px;}
.y1d7{bottom:10.260000px;}
.y62{bottom:11.160000px;}
.y168{bottom:11.520000px;}
.y1ae{bottom:11.685000px;}
.y16c{bottom:11.700000px;}
.y282{bottom:12.585000px;}
.y15{bottom:13.965000px;}
.yd5{bottom:14.580000px;}
.y27c{bottom:14.745000px;}
.ye1{bottom:14.760000px;}
.y1a1{bottom:14.790000px;}
.y16a{bottom:14.940000px;}
.y226{bottom:15.300000px;}
.y21c{bottom:16.005000px;}
.y1be{bottom:16.020000px;}
.y23d{bottom:16.740000px;}
.y1a4{bottom:17.640000px;}
.y260{bottom:19.620000px;}
.y250{bottom:20.325000px;}
.y234{bottom:20.700000px;}
.y7{bottom:21.240000px;}
.y280{bottom:22.845000px;}
.yd6{bottom:24.870000px;}
.y27e{bottom:25.185000px;}
.ydc{bottom:25.200000px;}
.y221{bottom:25.230000px;}
.yea{bottom:25.245000px;}
.y224{bottom:25.560000px;}
.y265{bottom:25.740000px;}
.y267{bottom:26.280000px;}
.y21e{bottom:26.445000px;}
.y1bf{bottom:26.460000px;}
.y239{bottom:27.000000px;}
.y25d{bottom:28.080000px;}
.y278{bottom:29.700000px;}
.y261{bottom:29.880000px;}
.y10{bottom:30.210000px;}
.y251{bottom:30.585000px;}
.y254{bottom:30.765000px;}
.y24d{bottom:30.945000px;}
.y236{bottom:30.960000px;}
.y281{bottom:33.285000px;}
.y27b{bottom:35.445000px;}
.ye0{bottom:35.460000px;}
.yec{bottom:35.505000px;}
.yf0{bottom:35.640000px;}
.y257{bottom:35.670000px;}
.y225{bottom:36.000000px;}
.y263{bottom:36.045000px;}
.y21b{bottom:36.705000px;}
.y23c{bottom:37.440000px;}
.y14{bottom:38.085000px;}
.y2c{bottom:40.320000px;}
.y233{bottom:41.400000px;}
.y6{bottom:42.516000px;}
.y27d{bottom:45.885000px;}
.ydb{bottom:45.900000px;}
.y222{bottom:45.930000px;}
.ye9{bottom:45.945000px;}
.y227{bottom:46.260000px;}
.y264{bottom:46.485000px;}
.y21d{bottom:47.145000px;}
.y23a{bottom:47.700000px;}
.y279{bottom:50.400000px;}
.y235{bottom:51.660000px;}
.y2b{bottom:55.800000px;}
.ydf{bottom:56.160000px;}
.ye4{bottom:56.205000px;}
.yef{bottom:56.340000px;}
.y2{bottom:57.060000px;}
.ye{bottom:58.830000px;}
.y5{bottom:65.700000px;}
.yda{bottom:66.600000px;}
.ye8{bottom:66.645000px;}
.y1{bottom:72.720000px;}
.y96{bottom:75.960000px;}
.yd8{bottom:76.860000px;}
.ye3{bottom:76.905000px;}
.y127{bottom:80.460000px;}
.y60{bottom:82.080000px;}
.y2b2{bottom:82.800000px;}
.y28e{bottom:86.040000px;}
.y8{bottom:86.940000px;}
.yd9{bottom:87.300000px;}
.ye7{bottom:87.345000px;}
.y1bd{bottom:87.660000px;}
.yd{bottom:89.790000px;}
.yc7{bottom:89.820000px;}
.y103{bottom:90.360000px;}
.y15b{bottom:92.160000px;}
.y95{bottom:96.660000px;}
.yeb{bottom:97.605000px;}
.y1f5{bottom:100.440000px;}
.y126{bottom:101.160000px;}
.y5f{bottom:102.780000px;}
.y2b1{bottom:103.500000px;}
.y18{bottom:103.860000px;}
.y18c{bottom:106.380000px;}
.y28d{bottom:106.740000px;}
.ye6{bottom:108.045000px;}
.yc6{bottom:110.520000px;}
.y15a{bottom:112.860000px;}
.y94{bottom:117.360000px;}
.y1f4{bottom:121.140000px;}
.y2a{bottom:121.536000px;}
.y125{bottom:121.860000px;}
.y25a{bottom:122.940000px;}
.y5e{bottom:123.480000px;}
.y2b0{bottom:124.200000px;}
.y18b{bottom:127.080000px;}
.y28c{bottom:127.440000px;}
.ye5{bottom:128.745000px;}
.yc5{bottom:131.220000px;}
.y1bb{bottom:132.300000px;}
.y159{bottom:133.560000px;}
.y93{bottom:138.060000px;}
.y29{bottom:140.436000px;}
.y1f3{bottom:141.840000px;}
.y124{bottom:142.560000px;}
.y259{bottom:143.640000px;}
.y5d{bottom:144.180000px;}
.y2af{bottom:144.900000px;}
.y18a{bottom:147.780000px;}
.y28b{bottom:148.140000px;}
.yc4{bottom:151.920000px;}
.y2ab{bottom:152.100000px;}
.y158{bottom:154.260000px;}
.y92{bottom:158.760000px;}
.y23{bottom:161.130000px;}
.y28{bottom:161.490000px;}
.y1f2{bottom:162.540000px;}
.y123{bottom:163.260000px;}
.y258{bottom:164.340000px;}
.y5c{bottom:164.880000px;}
.y2ae{bottom:165.600000px;}
.y1ba{bottom:165.960000px;}
.y189{bottom:168.480000px;}
.y28a{bottom:168.840000px;}
.yc3{bottom:172.620000px;}
.y157{bottom:175.140000px;}
.y2aa{bottom:175.680000px;}
.y91{bottom:179.460000px;}
.yd4{bottom:181.080000px;}
.y256{bottom:181.260000px;}
.y27{bottom:182.190000px;}
.y1f1{bottom:183.240000px;}
.y122{bottom:183.600000px;}
.y220{bottom:183.960000px;}
.y5b{bottom:185.580000px;}
.y2ad{bottom:186.300000px;}
.y1b9{bottom:186.660000px;}
.y188{bottom:189.180000px;}
.y289{bottom:189.540000px;}
.y147{bottom:192.960000px;}
.yc2{bottom:193.320000px;}
.y2a9{bottom:196.740000px;}
.y156{bottom:199.080000px;}
.y90{bottom:200.160000px;}
.y26{bottom:202.530000px;}
.y1f0{bottom:203.940000px;}
.y121{bottom:204.840000px;}
.y5a{bottom:206.310000px;}
.y2ac{bottom:207.030000px;}
.y1b8{bottom:207.390000px;}
.y187{bottom:209.910000px;}
.y288{bottom:210.270000px;}
.yc1{bottom:214.050000px;}
.y2a8{bottom:217.470000px;}
.y155{bottom:219.810000px;}
.y8f{bottom:220.890000px;}
.y1ee{bottom:220.905000px;}
.y25{bottom:223.230000px;}
.y59{bottom:227.010000px;}
.yd3{bottom:227.730000px;}
.y1b7{bottom:228.090000px;}
.y120{bottom:228.810000px;}
.y186{bottom:230.610000px;}
.y287{bottom:230.970000px;}
.yc0{bottom:234.750000px;}
.y2a7{bottom:238.170000px;}
.y154{bottom:240.510000px;}
.y8e{bottom:241.770000px;}
.y253{bottom:243.405000px;}
.y24{bottom:244.290000px;}
.y21a{bottom:246.105000px;}
.y1ed{bottom:247.005000px;}
.y58{bottom:247.710000px;}
.yd2{bottom:248.430000px;}
.y1b6{bottom:248.790000px;}
.y11f{bottom:249.510000px;}
.y185{bottom:251.310000px;}
.y286{bottom:251.670000px;}
.ybf{bottom:255.450000px;}
.y2a6{bottom:258.870000px;}
.y153{bottom:260.850000px;}
.y1e{bottom:264.675000px;}
.y8d{bottom:265.710000px;}
.y57{bottom:268.410000px;}
.yd1{bottom:269.130000px;}
.y1b5{bottom:269.490000px;}
.y11e{bottom:270.210000px;}
.y1ec{bottom:271.305000px;}
.y184{bottom:272.010000px;}
.y285{bottom:272.370000px;}
.ybe{bottom:276.150000px;}
.y2a5{bottom:279.570000px;}
.y152{bottom:281.910000px;}
.y22{bottom:285.375000px;}
.y8c{bottom:286.410000px;}
.y56{bottom:289.110000px;}
.yd0{bottom:289.830000px;}
.y1b4{bottom:290.190000px;}
.y11d{bottom:290.910000px;}
.y1ea{bottom:292.005000px;}
.y183{bottom:292.710000px;}
.y284{bottom:293.070000px;}
.y24f{bottom:295.965000px;}
.ybd{bottom:296.850000px;}
.y2a4{bottom:300.270000px;}
.y151{bottom:302.610000px;}
.y21{bottom:306.075000px;}
.y8b{bottom:307.110000px;}
.y102{bottom:308.910000px;}
.y55{bottom:309.810000px;}
.ycf{bottom:310.530000px;}
.y1b3{bottom:310.890000px;}
.y219{bottom:311.445000px;}
.y11c{bottom:311.610000px;}
.y182{bottom:313.410000px;}
.y283{bottom:313.770000px;}
.y1e9{bottom:316.125000px;}
.y146{bottom:317.190000px;}
.ybc{bottom:317.550000px;}
.y2a3{bottom:320.970000px;}
.y150{bottom:323.310000px;}
.y20{bottom:327.135000px;}
.y8a{bottom:327.810000px;}
.y54{bottom:330.510000px;}
.y27f{bottom:330.705000px;}
.yce{bottom:331.230000px;}
.y1b2{bottom:331.590000px;}
.y11b{bottom:332.310000px;}
.y181{bottom:334.110000px;}
.y1e7{bottom:336.825000px;}
.ybb{bottom:338.250000px;}
.y145{bottom:338.430000px;}
.y14f{bottom:339.690000px;}
.y101{bottom:340.050000px;}
.y2a2{bottom:341.670000px;}
.y218{bottom:343.290000px;}
.y1f{bottom:347.835000px;}
.y24c{bottom:348.345000px;}
.y89{bottom:348.510000px;}
.y53{bottom:351.210000px;}
.ycd{bottom:351.930000px;}
.y1b1{bottom:352.290000px;}
.y11a{bottom:353.010000px;}
.y180{bottom:354.810000px;}
.y1e5{bottom:358.245000px;}
.yba{bottom:358.950000px;}
.y100{bottom:360.930000px;}
.y144{bottom:362.370000px;}
.y217{bottom:363.990000px;}
.y19{bottom:368.205000px;}
.y88{bottom:369.210000px;}
.y17e{bottom:371.745000px;}
.y52{bottom:371.910000px;}
.ycc{bottom:372.630000px;}
.y1b0{bottom:372.990000px;}
.y119{bottom:373.890000px;}
.yb9{bottom:379.650000px;}
.yff{bottom:381.630000px;}
.y143{bottom:383.070000px;}
.y1e4{bottom:384.150000px;}
.y216{bottom:384.690000px;}
.y27a{bottom:388.305000px;}
.y1d{bottom:388.875000px;}
.y87{bottom:389.910000px;}
.y51{bottom:392.610000px;}
.ycb{bottom:393.330000px;}
.y1af{bottom:393.690000px;}
.y118{bottom:397.830000px;}
.y17d{bottom:400.185000px;}
.yb8{bottom:400.350000px;}
.y24a{bottom:402.165000px;}
.yfe{bottom:402.330000px;}
.y142{bottom:403.770000px;}
.y2a1{bottom:403.950000px;}
.y1e3{bottom:404.850000px;}
.y215{bottom:405.390000px;}
.y1c{bottom:409.575000px;}
.y86{bottom:410.610000px;}
.y1ad{bottom:410.625000px;}
.y50{bottom:413.310000px;}
.yca{bottom:414.030000px;}
.y117{bottom:418.530000px;}
.yb7{bottom:421.050000px;}
.yfd{bottom:423.030000px;}
.y141{bottom:424.470000px;}
.y1e2{bottom:425.550000px;}
.y214{bottom:426.090000px;}
.y2a0{bottom:427.530000px;}
.y17b{bottom:427.905000px;}
.y1b{bottom:430.635000px;}
.y85{bottom:431.310000px;}
.y4f{bottom:434.010000px;}
.y249{bottom:434.550000px;}
.yc9{bottom:434.730000px;}
.y116{bottom:439.230000px;}
.yb6{bottom:441.795000px;}
.yfc{bottom:443.595000px;}
.y140{bottom:445.215000px;}
.y1ab{bottom:445.575000px;}
.y1e1{bottom:446.295000px;}
.y213{bottom:446.835000px;}
.y29f{bottom:448.635000px;}
.y277{bottom:450.435000px;}
.y1a{bottom:451.335000px;}
.y84{bottom:452.235000px;}
.y4e{bottom:454.755000px;}
.y248{bottom:455.295000px;}
.yc8{bottom:455.475000px;}
.y179{bottom:455.835000px;}
.y115{bottom:459.975000px;}
.yb5{bottom:462.495000px;}
.yfb{bottom:464.295000px;}
.y13f{bottom:465.555000px;}
.y1e0{bottom:466.995000px;}
.y212{bottom:467.535000px;}
.y29e{bottom:469.335000px;}
.y1aa{bottom:470.775000px;}
.y4d{bottom:475.455000px;}
.y247{bottom:475.995000px;}
.y83{bottom:476.175000px;}
.y114{bottom:480.675000px;}
.yb4{bottom:483.195000px;}
.yfa{bottom:484.995000px;}
.y13e{bottom:486.615000px;}
.y1df{bottom:487.695000px;}
.y211{bottom:488.235000px;}
.y29d{bottom:490.035000px;}
.y17{bottom:492.405000px;}
.y4c{bottom:496.155000px;}
.y246{bottom:496.695000px;}
.y82{bottom:496.875000px;}
.y113{bottom:501.375000px;}
.yb3{bottom:503.895000px;}
.yf9{bottom:505.695000px;}
.y1a8{bottom:506.415000px;}
.y13d{bottom:507.315000px;}
.y1de{bottom:508.395000px;}
.y210{bottom:508.935000px;}
.y29c{bottom:510.735000px;}
.y178{bottom:510.915000px;}
.y4b{bottom:516.855000px;}
.y245{bottom:517.395000px;}
.y81{bottom:517.575000px;}
.y276{bottom:521.715000px;}
.y112{bottom:522.075000px;}
.yb2{bottom:524.595000px;}
.yf8{bottom:526.395000px;}
.y13c{bottom:528.015000px;}
.y1dd{bottom:529.095000px;}
.y20f{bottom:529.635000px;}
.y29b{bottom:531.435000px;}
.y177{bottom:531.615000px;}
.y1a7{bottom:537.375000px;}
.y4a{bottom:537.735000px;}
.y244{bottom:538.095000px;}
.y80{bottom:538.275000px;}
.y111{bottom:542.775000px;}
.yb1{bottom:545.295000px;}
.yf7{bottom:547.455000px;}
.y13b{bottom:548.355000px;}
.y13{bottom:549.540000px;}
.y1dc{bottom:549.795000px;}
.y20e{bottom:550.335000px;}
.y29a{bottom:552.135000px;}
.y176{bottom:552.315000px;}
.y1a6{bottom:558.075000px;}
.y243{bottom:558.615000px;}
.y7f{bottom:558.975000px;}
.y49{bottom:561.675000px;}
.y110{bottom:563.475000px;}
.yb0{bottom:565.995000px;}
.y1da{bottom:566.715000px;}
.y13a{bottom:569.415000px;}
.y20d{bottom:571.035000px;}
.yf6{bottom:571.395000px;}
.y299{bottom:572.835000px;}
.y175{bottom:573.015000px;}
.y1a5{bottom:578.235000px;}
.y242{bottom:579.315000px;}
.y7e{bottom:579.675000px;}
.y48{bottom:582.375000px;}
.y10f{bottom:584.355000px;}
.y274{bottom:584.535000px;}
.yaf{bottom:586.695000px;}
.y139{bottom:590.295000px;}
.y20c{bottom:591.735000px;}
.yf5{bottom:592.095000px;}
.y1a3{bottom:593.175000px;}
.y298{bottom:593.535000px;}
.y174{bottom:593.715000px;}
.y1d9{bottom:594.435000px;}
.y241{bottom:600.015000px;}
.y7d{bottom:600.375000px;}
.y47{bottom:603.075000px;}
.y10e{bottom:603.975000px;}
.yae{bottom:607.395000px;}
.y20b{bottom:612.615000px;}
.yf4{bottom:612.795000px;}
.y273{bottom:614.055000px;}
.y138{bottom:614.235000px;}
.y173{bottom:614.415000px;}
.y240{bottom:620.715000px;}
.y7c{bottom:621.075000px;}
.y1d8{bottom:622.155000px;}
.y46{bottom:623.415000px;}
.yad{bottom:628.095000px;}
.y1a2{bottom:630.255000px;}
.yf3{bottom:633.495000px;}
.y272{bottom:634.755000px;}
.y137{bottom:634.935000px;}
.y172{bottom:635.115000px;}
.y20a{bottom:636.555000px;}
.y23f{bottom:641.415000px;}
.y7b{bottom:641.775000px;}
.y45{bottom:644.475000px;}
.y1d6{bottom:645.915000px;}
.yac{bottom:648.975000px;}
.yf2{bottom:654.375000px;}
.y271{bottom:655.455000px;}
.y136{bottom:655.635000px;}
.y171{bottom:655.815000px;}
.y209{bottom:657.255000px;}
.y23e{bottom:658.515000px;}
.y297{bottom:658.695000px;}
.y1a0{bottom:661.215000px;}
.y7a{bottom:662.475000px;}
.y44{bottom:665.175000px;}
.yab{bottom:672.555000px;}
.y270{bottom:676.185000px;}
.y135{bottom:676.365000px;}
.y170{bottom:676.545000px;}
.y208{bottom:677.985000px;}
.y1d5{bottom:678.345000px;}
.yf1{bottom:678.525000px;}
.y296{bottom:679.785000px;}
.y79{bottom:683.205000px;}
.y43{bottom:685.905000px;}
.y19e{bottom:693.105000px;}
.yaa{bottom:693.645000px;}
.y26f{bottom:696.885000px;}
.y134{bottom:697.065000px;}
.y16f{bottom:697.245000px;}
.yee{bottom:698.685000px;}
.y238{bottom:699.945000px;}
.y295{bottom:700.485000px;}
.yc{bottom:702.540000px;}
.y78{bottom:703.905000px;}
.y42{bottom:706.605000px;}
.y1d3{bottom:706.785000px;}
.y4{bottom:707.550000px;}
.ya9{bottom:714.345000px;}
.y26e{bottom:717.585000px;}
.y133{bottom:717.765000px;}
.y16e{bottom:717.945000px;}
.y207{bottom:719.385000px;}
.y294{bottom:721.185000px;}
.y19d{bottom:723.165000px;}
.y77{bottom:724.605000px;}
.y41{bottom:727.305000px;}
.ya8{bottom:735.045000px;}
.y26d{bottom:738.285000px;}
.y132{bottom:738.465000px;}
.y16d{bottom:738.645000px;}
.y206{bottom:740.085000px;}
.y1d2{bottom:740.445000px;}
.y293{bottom:741.885000px;}
.y3{bottom:743.730000px;}
.y19c{bottom:743.865000px;}
.y76{bottom:745.305000px;}
.y40{bottom:748.005000px;}
.y16b{bottom:755.565000px;}
.ya7{bottom:755.745000px;}
.y131{bottom:758.805000px;}
.y26c{bottom:758.985000px;}
.y205{bottom:760.785000px;}
.y1d1{bottom:761.145000px;}
.yf{bottom:761.370000px;}
.y292{bottom:762.585000px;}
.y19b{bottom:764.565000px;}
.y237{bottom:765.645000px;}
.y75{bottom:766.005000px;}
.y3f{bottom:768.705000px;}
.ya6{bottom:776.445000px;}
.y26b{bottom:779.685000px;}
.y130{bottom:779.865000px;}
.y204{bottom:781.485000px;}
.y291{bottom:783.285000px;}
.y19a{bottom:785.265000px;}
.y74{bottom:786.705000px;}
.y3e{bottom:789.405000px;}
.y169{bottom:790.665000px;}
.y1d0{bottom:792.105000px;}
.ya5{bottom:797.145000px;}
.y26a{bottom:800.385000px;}
.y12f{bottom:800.565000px;}
.yed{bottom:802.185000px;}
.y290{bottom:803.985000px;}
.y199{bottom:805.965000px;}
.y73{bottom:807.405000px;}
.y3d{bottom:810.105000px;}
.y1cf{bottom:812.985000px;}
.ya4{bottom:817.845000px;}
.y269{bottom:821.085000px;}
.y12e{bottom:821.265000px;}
.y203{bottom:822.885000px;}
.y28f{bottom:824.685000px;}
.y198{bottom:826.665000px;}
.y232{bottom:827.745000px;}
.y72{bottom:828.105000px;}
.y3c{bottom:830.805000px;}
.y167{bottom:832.065000px;}
.y1ce{bottom:833.685000px;}
.y266{bottom:838.005000px;}
.ya3{bottom:838.545000px;}
.y12d{bottom:841.965000px;}
.ya{bottom:843.300000px;}
.y202{bottom:843.585000px;}
.y14e{bottom:845.385000px;}
.y197{bottom:847.365000px;}
.y71{bottom:848.805000px;}
.y3b{bottom:851.505000px;}
.y1cd{bottom:854.385000px;}
.ya2{bottom:859.425000px;}
.y12c{bottom:862.665000px;}
.y201{bottom:864.285000px;}
.y14d{bottom:866.085000px;}
.y165{bottom:866.625000px;}
.y196{bottom:868.065000px;}
.y70{bottom:869.505000px;}
.y3a{bottom:872.205000px;}
.y1cc{bottom:875.085000px;}
.y262{bottom:881.565000px;}
.ya1{bottom:883.365000px;}
.y200{bottom:884.985000px;}
.y14c{bottom:886.785000px;}
.y195{bottom:888.765000px;}
.y6f{bottom:890.205000px;}
.y39{bottom:892.725000px;}
.y1cb{bottom:895.425000px;}
.y164{bottom:898.485000px;}
.y231{bottom:902.085000px;}
.ya0{bottom:904.065000px;}
.ye2{bottom:905.685000px;}
.y14b{bottom:907.485000px;}
.y194{bottom:909.465000px;}
.y6e{bottom:910.950000px;}
.y38{bottom:913.470000px;}
.y1ca{bottom:916.530000px;}
.y9f{bottom:924.810000px;}
.y163{bottom:926.430000px;}
.y14a{bottom:928.230000px;}
.y230{bottom:930.030000px;}
.y193{bottom:930.210000px;}
.y6d{bottom:931.650000px;}
.y37{bottom:934.170000px;}
.y1c9{bottom:937.050000px;}
.y1ff{bottom:943.350000px;}
.y25f{bottom:944.610000px;}
.y12b{bottom:945.150000px;}
.y9e{bottom:945.510000px;}
.y162{bottom:947.130000px;}
.y10d{bottom:948.930000px;}
.y22f{bottom:950.730000px;}
.y192{bottom:950.910000px;}
.y6c{bottom:952.350000px;}
.y36{bottom:954.870000px;}
.y1c8{bottom:957.750000px;}
.y9d{bottom:966.210000px;}
.y12a{bottom:966.390000px;}
.y161{bottom:967.830000px;}
.y10c{bottom:969.630000px;}
.y22e{bottom:971.430000px;}
.y191{bottom:971.610000px;}
.y6b{bottom:973.050000px;}
.y1fe{bottom:973.770000px;}
.y35{bottom:975.570000px;}
.y1c7{bottom:978.450000px;}
.y9c{bottom:986.910000px;}
.y160{bottom:988.530000px;}
.y10b{bottom:990.330000px;}
.y129{bottom:990.510000px;}
.y22d{bottom:992.130000px;}
.y190{bottom:992.310000px;}
.y6a{bottom:993.750000px;}
.y25c{bottom:995.370000px;}
.y34{bottom:996.270000px;}
.y1c6{bottom:999.150000px;}
.y1fd{bottom:1003.110000px;}
.y9b{bottom:1007.610000px;}
.y15f{bottom:1009.230000px;}
.y10a{bottom:1011.030000px;}
.y22c{bottom:1012.830000px;}
.y69{bottom:1014.450000px;}
.y33{bottom:1016.970000px;}
.y1c5{bottom:1019.850000px;}
.y9a{bottom:1028.310000px;}
.y18f{bottom:1029.930000px;}
.y109{bottom:1031.730000px;}
.y149{bottom:1031.910000px;}
.y1fb{bottom:1033.170000px;}
.y22b{bottom:1033.530000px;}
.y68{bottom:1035.150000px;}
.y32{bottom:1037.670000px;}
.y15e{bottom:1039.830000px;}
.y1c4{bottom:1040.550000px;}
.y25b{bottom:1043.250000px;}
.y99{bottom:1049.010000px;}
.yde{bottom:1050.630000px;}
.y108{bottom:1052.430000px;}
.y22a{bottom:1054.230000px;}
.y148{bottom:1055.490000px;}
.y67{bottom:1055.850000px;}
.y31{bottom:1058.370000px;}
.y1c3{bottom:1061.250000px;}
.y1f9{bottom:1062.510000px;}
.y98{bottom:1069.890000px;}
.y18e{bottom:1071.330000px;}
.y107{bottom:1073.130000px;}
.y15d{bottom:1073.310000px;}
.y229{bottom:1074.930000px;}
.y66{bottom:1076.550000px;}
.y1c2{bottom:1078.350000px;}
.y30{bottom:1079.070000px;}
.y223{bottom:1091.850000px;}
.y1f8{bottom:1092.570000px;}
.y106{bottom:1093.830000px;}
.y97{bottom:1094.010000px;}
.y15c{bottom:1096.890000px;}
.y65{bottom:1097.250000px;}
.y2f{bottom:1099.770000px;}
.y18d{bottom:1112.730000px;}
.y1c1{bottom:1113.450000px;}
.y105{bottom:1114.530000px;}
.y128{bottom:1117.590000px;}
.y64{bottom:1117.950000px;}
.y2e{bottom:1120.110000px;}
.y1f6{bottom:1123.710000px;}
.y104{bottom:1135.410000px;}
.y63{bottom:1138.650000px;}
.y2d{bottom:1140.630000px;}
.y61{bottom:1145.880000px;}
.h2a{height:20.685000px;}
.h2e{height:20.695500px;}
.h30{height:20.700000px;}
.h25{height:22.716000px;}
.h3f{height:23.745000px;}
.h40{height:24.105000px;}
.h41{height:24.285000px;}
.h32{height:24.840000px;}
.h38{height:25.185000px;}
.h36{height:25.725000px;}
.h42{height:26.085000px;}
.h48{height:26.625000px;}
.h51{height:26.985000px;}
.h3d{height:27.540000px;}
.h2d{height:27.705000px;}
.h2c{height:27.921000px;}
.h55{height:28.080000px;}
.h2b{height:28.425000px;}
.h3a{height:28.435500px;}
.h3c{height:28.440000px;}
.h46{height:29.340000px;}
.h45{height:30.060000px;}
.h44{height:30.420000px;}
.h43{height:30.442500px;}
.h8{height:30.912187px;}
.h34{height:30.945000px;}
.h26{height:31.140000px;}
.h33{height:31.170000px;}
.h3e{height:32.430000px;}
.h27{height:34.560000px;}
.h37{height:34.905000px;}
.h9{height:34.920000px;}
.h39{height:34.941000px;}
.h29{height:35.100000px;}
.h35{height:37.065000px;}
.h1c{height:37.980000px;}
.h28{height:41.400000px;}
.h2f{height:41.422500px;}
.h50{height:41.430000px;}
.h1f{height:41.436000px;}
.h59{height:43.560000px;}
.h3b{height:43.915500px;}
.h56{height:47.160000px;}
.h7{height:49.675781px;}
.h6{height:49.746094px;}
.h5{height:49.845586px;}
.h15{height:50.273438px;}
.h57{height:50.760000px;}
.h20{height:50.800781px;}
.hf{height:51.328125px;}
.h53{height:52.365000px;}
.h54{height:52.545000px;}
.h2{height:52.998047px;}
.h52{height:53.085000px;}
.h5d{height:57.585000px;}
.h10{height:57.600000px;}
.h47{height:59.343750px;}
.h11{height:59.436914px;}
.h4{height:61.020000px;}
.h5a{height:62.085000px;}
.h4b{height:62.095500px;}
.h4e{height:62.100000px;}
.h5c{height:62.121000px;}
.h4a{height:62.136000px;}
.h3{height:62.184375px;}
.h4c{height:63.022500px;}
.h58{height:63.036000px;}
.h49{height:64.605000px;}
.h4f{height:65.700000px;}
.hd{height:68.266406px;}
.h1a{height:70.628906px;}
.h13{height:70.664062px;}
.h31{height:71.122500px;}
.h5b{height:71.265000px;}
.h16{height:72.562500px;}
.h17{height:72.707625px;}
.h4d{height:73.620000px;}
.h1e{height:74.004654px;}
.h1b{height:82.676953px;}
.ha{height:84.898125px;}
.h1d{height:85.043250px;}
.h12{height:96.508125px;}
.he{height:99.687656px;}
.hc{height:102.656250px;}
.h21{height:103.495500px;}
.h24{height:103.500000px;}
.h22{height:103.522500px;}
.hb{height:124.200000px;}
.h23{height:144.936000px;}
.h14{height:419.580000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h18{height:1262.880000px;}
.h19{height:1263.000000px;}
.w39{width:62.121000px;}
.w2f{width:64.476000px;}
.w17{width:69.105000px;}
.w2e{width:70.380000px;}
.w34{width:71.640000px;}
.w3a{width:72.525000px;}
.w32{width:73.065000px;}
.w3b{width:75.225000px;}
.w1e{width:75.945000px;}
.wf{width:82.440000px;}
.w15{width:85.125000px;}
.w18{width:86.256000px;}
.w21{width:88.200000px;}
.w16{width:99.381000px;}
.w1c{width:101.916000px;}
.w31{width:102.801000px;}
.w30{width:103.665000px;}
.w24{width:104.205000px;}
.w28{width:104.745000px;}
.w19{width:105.825000px;}
.w14{width:106.956000px;}
.w38{width:113.385000px;}
.w2c{width:113.745000px;}
.w12{width:114.285000px;}
.w23{width:121.881000px;}
.w33{width:121.896000px;}
.w1b{width:122.940000px;}
.w11{width:123.141000px;}
.wa{width:124.551000px;}
.w22{width:126.576000px;}
.w10{width:134.496000px;}
.w1d{width:145.461000px;}
.w42{width:146.736000px;}
.w36{width:147.801000px;}
.w26{width:151.950000px;}
.w27{width:152.115000px;}
.w35{width:152.130000px;}
.w48{width:152.670000px;}
.w3c{width:154.830000px;}
.w2a{width:155.550000px;}
.w3f{width:158.250000px;}
.w45{width:160.410000px;}
.wb{width:174.630000px;}
.w2b{width:176.415000px;}
.w9{width:178.020000px;}
.wd{width:181.095000px;}
.w29{width:181.110000px;}
.we{width:185.970000px;}
.w1a{width:189.390000px;}
.wc{width:191.550000px;}
.w20{width:194.970000px;}
.w40{width:216.570000px;}
.w2d{width:224.490000px;}
.w1f{width:224.850000px;}
.w25{width:228.450000px;}
.w4a{width:230.235000px;}
.w47{width:235.455000px;}
.w3e{width:240.855000px;}
.w46{width:244.650000px;}
.w43{width:251.670000px;}
.w3d{width:253.830000px;}
.w44{width:253.995000px;}
.w49{width:254.370000px;}
.w41{width:261.195000px;}
.w3{width:264.420000px;}
.w13{width:278.490000px;}
.w37{width:330.555000px;}
.w2{width:415.980000px;}
.w4{width:545.940000px;}
.w6{width:585.360000px;}
.w5{width:759.600000px;}
.w7{width:892.980000px;}
.w8{width:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:8.100000px;}
.x61{left:9.705000px;}
.x3{left:10.836000px;}
.x24{left:12.600000px;}
.x49{left:14.220000px;}
.x5e{left:15.480000px;}
.x28{left:17.100000px;}
.x17{left:19.080000px;}
.x65{left:20.520000px;}
.x26{left:23.025000px;}
.xa{left:24.840000px;}
.x50{left:27.180000px;}
.x36{left:28.620000px;}
.x33{left:30.060000px;}
.x13{left:31.935000px;}
.x37{left:33.120000px;}
.x1c{left:34.410000px;}
.x58{left:35.985000px;}
.x5{left:37.080000px;}
.x55{left:38.145000px;}
.x1a{left:39.450000px;}
.x2b{left:41.400000px;}
.x8{left:42.510000px;}
.x4f{left:43.740000px;}
.xb{left:45.360000px;}
.x5d{left:46.440000px;}
.x42{left:47.550000px;}
.x2f{left:48.990000px;}
.x2a{left:50.205000px;}
.x29{left:51.510000px;}
.x35{left:52.905000px;}
.x4d{left:54.000000px;}
.x48{left:55.620000px;}
.x2c{left:57.045000px;}
.x6b{left:58.125000px;}
.x6{left:59.760000px;}
.x69{left:63.720000px;}
.x3e{left:64.794000px;}
.x4e{left:67.845000px;}
.x3b{left:69.645000px;}
.x45{left:71.460000px;}
.x47{left:75.945000px;}
.x43{left:77.934000px;}
.x6c{left:81.360000px;}
.x4b{left:83.325000px;}
.x51{left:85.854000px;}
.x59{left:93.234000px;}
.x2d{left:102.954000px;}
.x2{left:108.000000px;}
.x16{left:110.556000px;}
.x21{left:126.936000px;}
.x10{left:135.036000px;}
.x3d{left:143.130000px;}
.x5f{left:147.279000px;}
.x14{left:166.530000px;}
.xc{left:169.410000px;}
.x7{left:184.500000px;}
.x11{left:189.030000px;}
.x15{left:198.390000px;}
.x5a{left:199.830000px;}
.x18{left:235.110000px;}
.x4{left:236.910000px;}
.x70{left:279.615000px;}
.x66{left:281.775000px;}
.x68{left:285.195000px;}
.x6e{left:294.735000px;}
.x9{left:301.710000px;}
.x22{left:312.915000px;}
.x38{left:316.335000px;}
.x3f{left:321.915000px;}
.x12{left:345.420000px;}
.x52{left:351.435000px;}
.x44{left:355.395000px;}
.x5b{left:393.375000px;}
.x23{left:395.355000px;}
.x2e{left:405.435000px;}
.x19{left:409.755000px;}
.x53{left:421.815000px;}
.x39{left:439.275000px;}
.x60{left:464.880000px;}
.x4a{left:471.000000px;}
.x54{left:486.300000px;}
.x34{left:491.700000px;}
.x6a{left:501.780000px;}
.x46{left:507.360000px;}
.x30{left:512.400000px;}
.x25{left:529.860000px;}
.x6d{left:532.740000px;}
.x71{left:534.000000px;}
.x67{left:535.620000px;}
.x40{left:536.700000px;}
.x6f{left:539.400000px;}
.x3a{left:541.200000px;}
.x5c{left:545.520000px;}
.x62{left:578.280000px;}
.x56{left:589.980000px;}
.x31{left:597.540000px;}
.x1b{left:601.320000px;}
.xe{left:631.800000px;}
.x63{left:640.410000px;}
.xd{left:642.705000px;}
.x4c{left:647.430000px;}
.x27{left:653.010000px;}
.x41{left:658.590000px;}
.x20{left:675.870000px;}
.x3c{left:686.670000px;}
.x57{left:692.790000px;}
.x32{left:696.930000px;}
.x1e{left:699.270000px;}
.x64{left:712.950000px;}
.xf{left:737.790000px;}
.x1f{left:742.650000px;}
.x1{left:1134.720000px;}
@media print{
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-4.544000pt;}
.lsd{letter-spacing:-3.968000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.640000pt;}
.lsf{letter-spacing:6.528000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls14{letter-spacing:47.466667pt;}
.lsa{letter-spacing:47.488000pt;}
.ls13{letter-spacing:175.978667pt;}
.ws1{word-spacing:-85.153280pt;}
.ws3{word-spacing:-85.120000pt;}
.ws9{word-spacing:-18.752000pt;}
.ws4{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.456000pt;}
.ws2{word-spacing:-0.085120pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-7.338240pt;}
._1{margin-left:-6.092160pt;}
._2{margin-left:-4.861312pt;}
._b{margin-left:-3.776000pt;}
._3{margin-left:-2.298624pt;}
._0{margin-left:-1.346688pt;}
._4{width:1.562624pt;}
._d{width:2.688000pt;}
._e{width:4.042667pt;}
._12{width:5.301333pt;}
._19{width:6.197419pt;}
._11{width:7.104000pt;}
._f{width:8.362667pt;}
._10{width:9.349376pt;}
._7{width:10.240000pt;}
._8{width:11.200000pt;}
._18{width:12.544000pt;}
._17{width:13.674667pt;}
._20{width:14.997419pt;}
._28{width:16.128000pt;}
._1d{width:17.026688pt;}
._6{width:18.024064pt;}
._9{width:18.944000pt;}
._a{width:19.840000pt;}
._c{width:21.120000pt;}
._22{width:22.080000pt;}
._21{width:22.978688pt;}
._23{width:24.320000pt;}
._15{width:25.856000pt;}
._16{width:27.629355pt;}
._1a{width:28.864000pt;}
._1b{width:30.001536pt;}
._24{width:31.360000pt;}
._1c{width:32.397355pt;}
._13{width:33.856000pt;}
._14{width:34.902827pt;}
._25{width:36.563840pt;}
._26{width:37.824000pt;}
._27{width:38.976000pt;}
._29{width:40.724480pt;}
._2a{width:41.986688pt;}
._2d{width:43.412224pt;}
._2c{width:44.416000pt;}
._1e{width:45.504000pt;}
._1f{width:46.400000pt;}
._2b{width:47.464064pt;}
._30{width:53.632000pt;}
._37{width:56.768000pt;}
._2e{width:72.768000pt;}
._33{width:74.304000pt;}
._34{width:75.648000pt;}
._36{width:89.216000pt;}
._35{width:116.192000pt;}
._32{width:118.050688pt;}
._31{width:118.976000pt;}
._2f{width:258.818688pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y16{bottom:-11.586667pt;}
.y12{bottom:-9.306667pt;}
.y0{bottom:0.000000pt;}
.y1e6{bottom:3.666667pt;}
.yd7{bottom:3.680000pt;}
.y1e8{bottom:3.986667pt;}
.ydd{bottom:4.000000pt;}
.y228{bottom:4.480000pt;}
.y9{bottom:4.640000pt;}
.y268{bottom:4.960000pt;}
.y21f{bottom:5.106667pt;}
.y1c0{bottom:5.120000pt;}
.y275{bottom:5.280000pt;}
.y19f{bottom:5.440000pt;}
.y1eb{bottom:5.586667pt;}
.y23b{bottom:5.600000pt;}
.y1a9{bottom:5.920000pt;}
.y1ac{bottom:6.080000pt;}
.y1ef{bottom:6.386667pt;}
.y24b{bottom:6.546667pt;}
.y25e{bottom:6.560000pt;}
.y11{bottom:6.853333pt;}
.y1db{bottom:6.880000pt;}
.y1d4{bottom:7.040000pt;}
.y17c{bottom:7.186667pt;}
.y1bc{bottom:7.200000pt;}
.y17f{bottom:7.346667pt;}
.y17a{bottom:7.360000pt;}
.y1fc{bottom:7.840000pt;}
.y1f7{bottom:8.000000pt;}
.y1fa{bottom:8.160000pt;}
.yb{bottom:8.320000pt;}
.y166{bottom:8.640000pt;}
.y252{bottom:8.786667pt;}
.y255{bottom:8.946667pt;}
.y24e{bottom:9.106667pt;}
.y1d7{bottom:9.120000pt;}
.y62{bottom:9.920000pt;}
.y168{bottom:10.240000pt;}
.y1ae{bottom:10.386667pt;}
.y16c{bottom:10.400000pt;}
.y282{bottom:11.186667pt;}
.y15{bottom:12.413333pt;}
.yd5{bottom:12.960000pt;}
.y27c{bottom:13.106667pt;}
.ye1{bottom:13.120000pt;}
.y1a1{bottom:13.146667pt;}
.y16a{bottom:13.280000pt;}
.y226{bottom:13.600000pt;}
.y21c{bottom:14.226667pt;}
.y1be{bottom:14.240000pt;}
.y23d{bottom:14.880000pt;}
.y1a4{bottom:15.680000pt;}
.y260{bottom:17.440000pt;}
.y250{bottom:18.066667pt;}
.y234{bottom:18.400000pt;}
.y7{bottom:18.880000pt;}
.y280{bottom:20.306667pt;}
.yd6{bottom:22.106667pt;}
.y27e{bottom:22.386667pt;}
.ydc{bottom:22.400000pt;}
.y221{bottom:22.426667pt;}
.yea{bottom:22.440000pt;}
.y224{bottom:22.720000pt;}
.y265{bottom:22.880000pt;}
.y267{bottom:23.360000pt;}
.y21e{bottom:23.506667pt;}
.y1bf{bottom:23.520000pt;}
.y239{bottom:24.000000pt;}
.y25d{bottom:24.960000pt;}
.y278{bottom:26.400000pt;}
.y261{bottom:26.560000pt;}
.y10{bottom:26.853333pt;}
.y251{bottom:27.186667pt;}
.y254{bottom:27.346667pt;}
.y24d{bottom:27.506667pt;}
.y236{bottom:27.520000pt;}
.y281{bottom:29.586667pt;}
.y27b{bottom:31.506667pt;}
.ye0{bottom:31.520000pt;}
.yec{bottom:31.560000pt;}
.yf0{bottom:31.680000pt;}
.y257{bottom:31.706667pt;}
.y225{bottom:32.000000pt;}
.y263{bottom:32.040000pt;}
.y21b{bottom:32.626667pt;}
.y23c{bottom:33.280000pt;}
.y14{bottom:33.853333pt;}
.y2c{bottom:35.840000pt;}
.y233{bottom:36.800000pt;}
.y6{bottom:37.792000pt;}
.y27d{bottom:40.786667pt;}
.ydb{bottom:40.800000pt;}
.y222{bottom:40.826667pt;}
.ye9{bottom:40.840000pt;}
.y227{bottom:41.120000pt;}
.y264{bottom:41.320000pt;}
.y21d{bottom:41.906667pt;}
.y23a{bottom:42.400000pt;}
.y279{bottom:44.800000pt;}
.y235{bottom:45.920000pt;}
.y2b{bottom:49.600000pt;}
.ydf{bottom:49.920000pt;}
.ye4{bottom:49.960000pt;}
.yef{bottom:50.080000pt;}
.y2{bottom:50.720000pt;}
.ye{bottom:52.293333pt;}
.y5{bottom:58.400000pt;}
.yda{bottom:59.200000pt;}
.ye8{bottom:59.240000pt;}
.y1{bottom:64.640000pt;}
.y96{bottom:67.520000pt;}
.yd8{bottom:68.320000pt;}
.ye3{bottom:68.360000pt;}
.y127{bottom:71.520000pt;}
.y60{bottom:72.960000pt;}
.y2b2{bottom:73.600000pt;}
.y28e{bottom:76.480000pt;}
.y8{bottom:77.280000pt;}
.yd9{bottom:77.600000pt;}
.ye7{bottom:77.640000pt;}
.y1bd{bottom:77.920000pt;}
.yd{bottom:79.813333pt;}
.yc7{bottom:79.840000pt;}
.y103{bottom:80.320000pt;}
.y15b{bottom:81.920000pt;}
.y95{bottom:85.920000pt;}
.yeb{bottom:86.760000pt;}
.y1f5{bottom:89.280000pt;}
.y126{bottom:89.920000pt;}
.y5f{bottom:91.360000pt;}
.y2b1{bottom:92.000000pt;}
.y18{bottom:92.320000pt;}
.y18c{bottom:94.560000pt;}
.y28d{bottom:94.880000pt;}
.ye6{bottom:96.040000pt;}
.yc6{bottom:98.240000pt;}
.y15a{bottom:100.320000pt;}
.y94{bottom:104.320000pt;}
.y1f4{bottom:107.680000pt;}
.y2a{bottom:108.032000pt;}
.y125{bottom:108.320000pt;}
.y25a{bottom:109.280000pt;}
.y5e{bottom:109.760000pt;}
.y2b0{bottom:110.400000pt;}
.y18b{bottom:112.960000pt;}
.y28c{bottom:113.280000pt;}
.ye5{bottom:114.440000pt;}
.yc5{bottom:116.640000pt;}
.y1bb{bottom:117.600000pt;}
.y159{bottom:118.720000pt;}
.y93{bottom:122.720000pt;}
.y29{bottom:124.832000pt;}
.y1f3{bottom:126.080000pt;}
.y124{bottom:126.720000pt;}
.y259{bottom:127.680000pt;}
.y5d{bottom:128.160000pt;}
.y2af{bottom:128.800000pt;}
.y18a{bottom:131.360000pt;}
.y28b{bottom:131.680000pt;}
.yc4{bottom:135.040000pt;}
.y2ab{bottom:135.200000pt;}
.y158{bottom:137.120000pt;}
.y92{bottom:141.120000pt;}
.y23{bottom:143.226667pt;}
.y28{bottom:143.546667pt;}
.y1f2{bottom:144.480000pt;}
.y123{bottom:145.120000pt;}
.y258{bottom:146.080000pt;}
.y5c{bottom:146.560000pt;}
.y2ae{bottom:147.200000pt;}
.y1ba{bottom:147.520000pt;}
.y189{bottom:149.760000pt;}
.y28a{bottom:150.080000pt;}
.yc3{bottom:153.440000pt;}
.y157{bottom:155.680000pt;}
.y2aa{bottom:156.160000pt;}
.y91{bottom:159.520000pt;}
.yd4{bottom:160.960000pt;}
.y256{bottom:161.120000pt;}
.y27{bottom:161.946667pt;}
.y1f1{bottom:162.880000pt;}
.y122{bottom:163.200000pt;}
.y220{bottom:163.520000pt;}
.y5b{bottom:164.960000pt;}
.y2ad{bottom:165.600000pt;}
.y1b9{bottom:165.920000pt;}
.y188{bottom:168.160000pt;}
.y289{bottom:168.480000pt;}
.y147{bottom:171.520000pt;}
.yc2{bottom:171.840000pt;}
.y2a9{bottom:174.880000pt;}
.y156{bottom:176.960000pt;}
.y90{bottom:177.920000pt;}
.y26{bottom:180.026667pt;}
.y1f0{bottom:181.280000pt;}
.y121{bottom:182.080000pt;}
.y5a{bottom:183.386667pt;}
.y2ac{bottom:184.026667pt;}
.y1b8{bottom:184.346667pt;}
.y187{bottom:186.586667pt;}
.y288{bottom:186.906667pt;}
.yc1{bottom:190.266667pt;}
.y2a8{bottom:193.306667pt;}
.y155{bottom:195.386667pt;}
.y8f{bottom:196.346667pt;}
.y1ee{bottom:196.360000pt;}
.y25{bottom:198.426667pt;}
.y59{bottom:201.786667pt;}
.yd3{bottom:202.426667pt;}
.y1b7{bottom:202.746667pt;}
.y120{bottom:203.386667pt;}
.y186{bottom:204.986667pt;}
.y287{bottom:205.306667pt;}
.yc0{bottom:208.666667pt;}
.y2a7{bottom:211.706667pt;}
.y154{bottom:213.786667pt;}
.y8e{bottom:214.906667pt;}
.y253{bottom:216.360000pt;}
.y24{bottom:217.146667pt;}
.y21a{bottom:218.760000pt;}
.y1ed{bottom:219.560000pt;}
.y58{bottom:220.186667pt;}
.yd2{bottom:220.826667pt;}
.y1b6{bottom:221.146667pt;}
.y11f{bottom:221.786667pt;}
.y185{bottom:223.386667pt;}
.y286{bottom:223.706667pt;}
.ybf{bottom:227.066667pt;}
.y2a6{bottom:230.106667pt;}
.y153{bottom:231.866667pt;}
.y1e{bottom:235.266667pt;}
.y8d{bottom:236.186667pt;}
.y57{bottom:238.586667pt;}
.yd1{bottom:239.226667pt;}
.y1b5{bottom:239.546667pt;}
.y11e{bottom:240.186667pt;}
.y1ec{bottom:241.160000pt;}
.y184{bottom:241.786667pt;}
.y285{bottom:242.106667pt;}
.ybe{bottom:245.466667pt;}
.y2a5{bottom:248.506667pt;}
.y152{bottom:250.586667pt;}
.y22{bottom:253.666667pt;}
.y8c{bottom:254.586667pt;}
.y56{bottom:256.986667pt;}
.yd0{bottom:257.626667pt;}
.y1b4{bottom:257.946667pt;}
.y11d{bottom:258.586667pt;}
.y1ea{bottom:259.560000pt;}
.y183{bottom:260.186667pt;}
.y284{bottom:260.506667pt;}
.y24f{bottom:263.080000pt;}
.ybd{bottom:263.866667pt;}
.y2a4{bottom:266.906667pt;}
.y151{bottom:268.986667pt;}
.y21{bottom:272.066667pt;}
.y8b{bottom:272.986667pt;}
.y102{bottom:274.586667pt;}
.y55{bottom:275.386667pt;}
.ycf{bottom:276.026667pt;}
.y1b3{bottom:276.346667pt;}
.y219{bottom:276.840000pt;}
.y11c{bottom:276.986667pt;}
.y182{bottom:278.586667pt;}
.y283{bottom:278.906667pt;}
.y1e9{bottom:281.000000pt;}
.y146{bottom:281.946667pt;}
.ybc{bottom:282.266667pt;}
.y2a3{bottom:285.306667pt;}
.y150{bottom:287.386667pt;}
.y20{bottom:290.786667pt;}
.y8a{bottom:291.386667pt;}
.y54{bottom:293.786667pt;}
.y27f{bottom:293.960000pt;}
.yce{bottom:294.426667pt;}
.y1b2{bottom:294.746667pt;}
.y11b{bottom:295.386667pt;}
.y181{bottom:296.986667pt;}
.y1e7{bottom:299.400000pt;}
.ybb{bottom:300.666667pt;}
.y145{bottom:300.826667pt;}
.y14f{bottom:301.946667pt;}
.y101{bottom:302.266667pt;}
.y2a2{bottom:303.706667pt;}
.y218{bottom:305.146667pt;}
.y1f{bottom:309.186667pt;}
.y24c{bottom:309.640000pt;}
.y89{bottom:309.786667pt;}
.y53{bottom:312.186667pt;}
.ycd{bottom:312.826667pt;}
.y1b1{bottom:313.146667pt;}
.y11a{bottom:313.786667pt;}
.y180{bottom:315.386667pt;}
.y1e5{bottom:318.440000pt;}
.yba{bottom:319.066667pt;}
.y100{bottom:320.826667pt;}
.y144{bottom:322.106667pt;}
.y217{bottom:323.546667pt;}
.y19{bottom:327.293333pt;}
.y88{bottom:328.186667pt;}
.y17e{bottom:330.440000pt;}
.y52{bottom:330.586667pt;}
.ycc{bottom:331.226667pt;}
.y1b0{bottom:331.546667pt;}
.y119{bottom:332.346667pt;}
.yb9{bottom:337.466667pt;}
.yff{bottom:339.226667pt;}
.y143{bottom:340.506667pt;}
.y1e4{bottom:341.466667pt;}
.y216{bottom:341.946667pt;}
.y27a{bottom:345.160000pt;}
.y1d{bottom:345.666667pt;}
.y87{bottom:346.586667pt;}
.y51{bottom:348.986667pt;}
.ycb{bottom:349.626667pt;}
.y1af{bottom:349.946667pt;}
.y118{bottom:353.626667pt;}
.y17d{bottom:355.720000pt;}
.yb8{bottom:355.866667pt;}
.y24a{bottom:357.480000pt;}
.yfe{bottom:357.626667pt;}
.y142{bottom:358.906667pt;}
.y2a1{bottom:359.066667pt;}
.y1e3{bottom:359.866667pt;}
.y215{bottom:360.346667pt;}
.y1c{bottom:364.066667pt;}
.y86{bottom:364.986667pt;}
.y1ad{bottom:365.000000pt;}
.y50{bottom:367.386667pt;}
.yca{bottom:368.026667pt;}
.y117{bottom:372.026667pt;}
.yb7{bottom:374.266667pt;}
.yfd{bottom:376.026667pt;}
.y141{bottom:377.306667pt;}
.y1e2{bottom:378.266667pt;}
.y214{bottom:378.746667pt;}
.y2a0{bottom:380.026667pt;}
.y17b{bottom:380.360000pt;}
.y1b{bottom:382.786667pt;}
.y85{bottom:383.386667pt;}
.y4f{bottom:385.786667pt;}
.y249{bottom:386.266667pt;}
.yc9{bottom:386.426667pt;}
.y116{bottom:390.426667pt;}
.yb6{bottom:392.706667pt;}
.yfc{bottom:394.306667pt;}
.y140{bottom:395.746667pt;}
.y1ab{bottom:396.066667pt;}
.y1e1{bottom:396.706667pt;}
.y213{bottom:397.186667pt;}
.y29f{bottom:398.786667pt;}
.y277{bottom:400.386667pt;}
.y1a{bottom:401.186667pt;}
.y84{bottom:401.986667pt;}
.y4e{bottom:404.226667pt;}
.y248{bottom:404.706667pt;}
.yc8{bottom:404.866667pt;}
.y179{bottom:405.186667pt;}
.y115{bottom:408.866667pt;}
.yb5{bottom:411.106667pt;}
.yfb{bottom:412.706667pt;}
.y13f{bottom:413.826667pt;}
.y1e0{bottom:415.106667pt;}
.y212{bottom:415.586667pt;}
.y29e{bottom:417.186667pt;}
.y1aa{bottom:418.466667pt;}
.y4d{bottom:422.626667pt;}
.y247{bottom:423.106667pt;}
.y83{bottom:423.266667pt;}
.y114{bottom:427.266667pt;}
.yb4{bottom:429.506667pt;}
.yfa{bottom:431.106667pt;}
.y13e{bottom:432.546667pt;}
.y1df{bottom:433.506667pt;}
.y211{bottom:433.986667pt;}
.y29d{bottom:435.586667pt;}
.y17{bottom:437.693333pt;}
.y4c{bottom:441.026667pt;}
.y246{bottom:441.506667pt;}
.y82{bottom:441.666667pt;}
.y113{bottom:445.666667pt;}
.yb3{bottom:447.906667pt;}
.yf9{bottom:449.506667pt;}
.y1a8{bottom:450.146667pt;}
.y13d{bottom:450.946667pt;}
.y1de{bottom:451.906667pt;}
.y210{bottom:452.386667pt;}
.y29c{bottom:453.986667pt;}
.y178{bottom:454.146667pt;}
.y4b{bottom:459.426667pt;}
.y245{bottom:459.906667pt;}
.y81{bottom:460.066667pt;}
.y276{bottom:463.746667pt;}
.y112{bottom:464.066667pt;}
.yb2{bottom:466.306667pt;}
.yf8{bottom:467.906667pt;}
.y13c{bottom:469.346667pt;}
.y1dd{bottom:470.306667pt;}
.y20f{bottom:470.786667pt;}
.y29b{bottom:472.386667pt;}
.y177{bottom:472.546667pt;}
.y1a7{bottom:477.666667pt;}
.y4a{bottom:477.986667pt;}
.y244{bottom:478.306667pt;}
.y80{bottom:478.466667pt;}
.y111{bottom:482.466667pt;}
.yb1{bottom:484.706667pt;}
.yf7{bottom:486.626667pt;}
.y13b{bottom:487.426667pt;}
.y13{bottom:488.480000pt;}
.y1dc{bottom:488.706667pt;}
.y20e{bottom:489.186667pt;}
.y29a{bottom:490.786667pt;}
.y176{bottom:490.946667pt;}
.y1a6{bottom:496.066667pt;}
.y243{bottom:496.546667pt;}
.y7f{bottom:496.866667pt;}
.y49{bottom:499.266667pt;}
.y110{bottom:500.866667pt;}
.yb0{bottom:503.106667pt;}
.y1da{bottom:503.746667pt;}
.y13a{bottom:506.146667pt;}
.y20d{bottom:507.586667pt;}
.yf6{bottom:507.906667pt;}
.y299{bottom:509.186667pt;}
.y175{bottom:509.346667pt;}
.y1a5{bottom:513.986667pt;}
.y242{bottom:514.946667pt;}
.y7e{bottom:515.266667pt;}
.y48{bottom:517.666667pt;}
.y10f{bottom:519.426667pt;}
.y274{bottom:519.586667pt;}
.yaf{bottom:521.506667pt;}
.y139{bottom:524.706667pt;}
.y20c{bottom:525.986667pt;}
.yf5{bottom:526.306667pt;}
.y1a3{bottom:527.266667pt;}
.y298{bottom:527.586667pt;}
.y174{bottom:527.746667pt;}
.y1d9{bottom:528.386667pt;}
.y241{bottom:533.346667pt;}
.y7d{bottom:533.666667pt;}
.y47{bottom:536.066667pt;}
.y10e{bottom:536.866667pt;}
.yae{bottom:539.906667pt;}
.y20b{bottom:544.546667pt;}
.yf4{bottom:544.706667pt;}
.y273{bottom:545.826667pt;}
.y138{bottom:545.986667pt;}
.y173{bottom:546.146667pt;}
.y240{bottom:551.746667pt;}
.y7c{bottom:552.066667pt;}
.y1d8{bottom:553.026667pt;}
.y46{bottom:554.146667pt;}
.yad{bottom:558.306667pt;}
.y1a2{bottom:560.226667pt;}
.yf3{bottom:563.106667pt;}
.y272{bottom:564.226667pt;}
.y137{bottom:564.386667pt;}
.y172{bottom:564.546667pt;}
.y20a{bottom:565.826667pt;}
.y23f{bottom:570.146667pt;}
.y7b{bottom:570.466667pt;}
.y45{bottom:572.866667pt;}
.y1d6{bottom:574.146667pt;}
.yac{bottom:576.866667pt;}
.yf2{bottom:581.666667pt;}
.y271{bottom:582.626667pt;}
.y136{bottom:582.786667pt;}
.y171{bottom:582.946667pt;}
.y209{bottom:584.226667pt;}
.y23e{bottom:585.346667pt;}
.y297{bottom:585.506667pt;}
.y1a0{bottom:587.746667pt;}
.y7a{bottom:588.866667pt;}
.y44{bottom:591.266667pt;}
.yab{bottom:597.826667pt;}
.y270{bottom:601.053333pt;}
.y135{bottom:601.213333pt;}
.y170{bottom:601.373333pt;}
.y208{bottom:602.653333pt;}
.y1d5{bottom:602.973333pt;}
.yf1{bottom:603.133333pt;}
.y296{bottom:604.253333pt;}
.y79{bottom:607.293333pt;}
.y43{bottom:609.693333pt;}
.y19e{bottom:616.093333pt;}
.yaa{bottom:616.573333pt;}
.y26f{bottom:619.453333pt;}
.y134{bottom:619.613333pt;}
.y16f{bottom:619.773333pt;}
.yee{bottom:621.053333pt;}
.y238{bottom:622.173333pt;}
.y295{bottom:622.653333pt;}
.yc{bottom:624.480000pt;}
.y78{bottom:625.693333pt;}
.y42{bottom:628.093333pt;}
.y1d3{bottom:628.253333pt;}
.y4{bottom:628.933333pt;}
.ya9{bottom:634.973333pt;}
.y26e{bottom:637.853333pt;}
.y133{bottom:638.013333pt;}
.y16e{bottom:638.173333pt;}
.y207{bottom:639.453333pt;}
.y294{bottom:641.053333pt;}
.y19d{bottom:642.813333pt;}
.y77{bottom:644.093333pt;}
.y41{bottom:646.493333pt;}
.ya8{bottom:653.373333pt;}
.y26d{bottom:656.253333pt;}
.y132{bottom:656.413333pt;}
.y16d{bottom:656.573333pt;}
.y206{bottom:657.853333pt;}
.y1d2{bottom:658.173333pt;}
.y293{bottom:659.453333pt;}
.y3{bottom:661.093333pt;}
.y19c{bottom:661.213333pt;}
.y76{bottom:662.493333pt;}
.y40{bottom:664.893333pt;}
.y16b{bottom:671.613333pt;}
.ya7{bottom:671.773333pt;}
.y131{bottom:674.493333pt;}
.y26c{bottom:674.653333pt;}
.y205{bottom:676.253333pt;}
.y1d1{bottom:676.573333pt;}
.yf{bottom:676.773333pt;}
.y292{bottom:677.853333pt;}
.y19b{bottom:679.613333pt;}
.y237{bottom:680.573333pt;}
.y75{bottom:680.893333pt;}
.y3f{bottom:683.293333pt;}
.ya6{bottom:690.173333pt;}
.y26b{bottom:693.053333pt;}
.y130{bottom:693.213333pt;}
.y204{bottom:694.653333pt;}
.y291{bottom:696.253333pt;}
.y19a{bottom:698.013333pt;}
.y74{bottom:699.293333pt;}
.y3e{bottom:701.693333pt;}
.y169{bottom:702.813333pt;}
.y1d0{bottom:704.093333pt;}
.ya5{bottom:708.573333pt;}
.y26a{bottom:711.453333pt;}
.y12f{bottom:711.613333pt;}
.yed{bottom:713.053333pt;}
.y290{bottom:714.653333pt;}
.y199{bottom:716.413333pt;}
.y73{bottom:717.693333pt;}
.y3d{bottom:720.093333pt;}
.y1cf{bottom:722.653333pt;}
.ya4{bottom:726.973333pt;}
.y269{bottom:729.853333pt;}
.y12e{bottom:730.013333pt;}
.y203{bottom:731.453333pt;}
.y28f{bottom:733.053333pt;}
.y198{bottom:734.813333pt;}
.y232{bottom:735.773333pt;}
.y72{bottom:736.093333pt;}
.y3c{bottom:738.493333pt;}
.y167{bottom:739.613333pt;}
.y1ce{bottom:741.053333pt;}
.y266{bottom:744.893333pt;}
.ya3{bottom:745.373333pt;}
.y12d{bottom:748.413333pt;}
.ya{bottom:749.600000pt;}
.y202{bottom:749.853333pt;}
.y14e{bottom:751.453333pt;}
.y197{bottom:753.213333pt;}
.y71{bottom:754.493333pt;}
.y3b{bottom:756.893333pt;}
.y1cd{bottom:759.453333pt;}
.ya2{bottom:763.933333pt;}
.y12c{bottom:766.813333pt;}
.y201{bottom:768.253333pt;}
.y14d{bottom:769.853333pt;}
.y165{bottom:770.333333pt;}
.y196{bottom:771.613333pt;}
.y70{bottom:772.893333pt;}
.y3a{bottom:775.293333pt;}
.y1cc{bottom:777.853333pt;}
.y262{bottom:783.613333pt;}
.ya1{bottom:785.213333pt;}
.y200{bottom:786.653333pt;}
.y14c{bottom:788.253333pt;}
.y195{bottom:790.013333pt;}
.y6f{bottom:791.293333pt;}
.y39{bottom:793.533333pt;}
.y1cb{bottom:795.933333pt;}
.y164{bottom:798.653333pt;}
.y231{bottom:801.853333pt;}
.ya0{bottom:803.613333pt;}
.ye2{bottom:805.053333pt;}
.y14b{bottom:806.653333pt;}
.y194{bottom:808.413333pt;}
.y6e{bottom:809.733333pt;}
.y38{bottom:811.973333pt;}
.y1ca{bottom:814.693333pt;}
.y9f{bottom:822.053333pt;}
.y163{bottom:823.493333pt;}
.y14a{bottom:825.093333pt;}
.y230{bottom:826.693333pt;}
.y193{bottom:826.853333pt;}
.y6d{bottom:828.133333pt;}
.y37{bottom:830.373333pt;}
.y1c9{bottom:832.933333pt;}
.y1ff{bottom:838.533333pt;}
.y25f{bottom:839.653333pt;}
.y12b{bottom:840.133333pt;}
.y9e{bottom:840.453333pt;}
.y162{bottom:841.893333pt;}
.y10d{bottom:843.493333pt;}
.y22f{bottom:845.093333pt;}
.y192{bottom:845.253333pt;}
.y6c{bottom:846.533333pt;}
.y36{bottom:848.773333pt;}
.y1c8{bottom:851.333333pt;}
.y9d{bottom:858.853333pt;}
.y12a{bottom:859.013333pt;}
.y161{bottom:860.293333pt;}
.y10c{bottom:861.893333pt;}
.y22e{bottom:863.493333pt;}
.y191{bottom:863.653333pt;}
.y6b{bottom:864.933333pt;}
.y1fe{bottom:865.573333pt;}
.y35{bottom:867.173333pt;}
.y1c7{bottom:869.733333pt;}
.y9c{bottom:877.253333pt;}
.y160{bottom:878.693333pt;}
.y10b{bottom:880.293333pt;}
.y129{bottom:880.453333pt;}
.y22d{bottom:881.893333pt;}
.y190{bottom:882.053333pt;}
.y6a{bottom:883.333333pt;}
.y25c{bottom:884.773333pt;}
.y34{bottom:885.573333pt;}
.y1c6{bottom:888.133333pt;}
.y1fd{bottom:891.653333pt;}
.y9b{bottom:895.653333pt;}
.y15f{bottom:897.093333pt;}
.y10a{bottom:898.693333pt;}
.y22c{bottom:900.293333pt;}
.y69{bottom:901.733333pt;}
.y33{bottom:903.973333pt;}
.y1c5{bottom:906.533333pt;}
.y9a{bottom:914.053333pt;}
.y18f{bottom:915.493333pt;}
.y109{bottom:917.093333pt;}
.y149{bottom:917.253333pt;}
.y1fb{bottom:918.373333pt;}
.y22b{bottom:918.693333pt;}
.y68{bottom:920.133333pt;}
.y32{bottom:922.373333pt;}
.y15e{bottom:924.293333pt;}
.y1c4{bottom:924.933333pt;}
.y25b{bottom:927.333333pt;}
.y99{bottom:932.453333pt;}
.yde{bottom:933.893333pt;}
.y108{bottom:935.493333pt;}
.y22a{bottom:937.093333pt;}
.y148{bottom:938.213333pt;}
.y67{bottom:938.533333pt;}
.y31{bottom:940.773333pt;}
.y1c3{bottom:943.333333pt;}
.y1f9{bottom:944.453333pt;}
.y98{bottom:951.013333pt;}
.y18e{bottom:952.293333pt;}
.y107{bottom:953.893333pt;}
.y15d{bottom:954.053333pt;}
.y229{bottom:955.493333pt;}
.y66{bottom:956.933333pt;}
.y1c2{bottom:958.533333pt;}
.y30{bottom:959.173333pt;}
.y223{bottom:970.533333pt;}
.y1f8{bottom:971.173333pt;}
.y106{bottom:972.293333pt;}
.y97{bottom:972.453333pt;}
.y15c{bottom:975.013333pt;}
.y65{bottom:975.333333pt;}
.y2f{bottom:977.573333pt;}
.y18d{bottom:989.093333pt;}
.y1c1{bottom:989.733333pt;}
.y105{bottom:990.693333pt;}
.y128{bottom:993.413333pt;}
.y64{bottom:993.733333pt;}
.y2e{bottom:995.653333pt;}
.y1f6{bottom:998.853333pt;}
.y104{bottom:1009.253333pt;}
.y63{bottom:1012.133333pt;}
.y2d{bottom:1013.893333pt;}
.y61{bottom:1018.560000pt;}
.h2a{height:18.386667pt;}
.h2e{height:18.396000pt;}
.h30{height:18.400000pt;}
.h25{height:20.192000pt;}
.h3f{height:21.106667pt;}
.h40{height:21.426667pt;}
.h41{height:21.586667pt;}
.h32{height:22.080000pt;}
.h38{height:22.386667pt;}
.h36{height:22.866667pt;}
.h42{height:23.186667pt;}
.h48{height:23.666667pt;}
.h51{height:23.986667pt;}
.h3d{height:24.480000pt;}
.h2d{height:24.626667pt;}
.h2c{height:24.818667pt;}
.h55{height:24.960000pt;}
.h2b{height:25.266667pt;}
.h3a{height:25.276000pt;}
.h3c{height:25.280000pt;}
.h46{height:26.080000pt;}
.h45{height:26.720000pt;}
.h44{height:27.040000pt;}
.h43{height:27.060000pt;}
.h8{height:27.477500pt;}
.h34{height:27.506667pt;}
.h26{height:27.680000pt;}
.h33{height:27.706667pt;}
.h3e{height:28.826667pt;}
.h27{height:30.720000pt;}
.h37{height:31.026667pt;}
.h9{height:31.040000pt;}
.h39{height:31.058667pt;}
.h29{height:31.200000pt;}
.h35{height:32.946667pt;}
.h1c{height:33.760000pt;}
.h28{height:36.800000pt;}
.h2f{height:36.820000pt;}
.h50{height:36.826667pt;}
.h1f{height:36.832000pt;}
.h59{height:38.720000pt;}
.h3b{height:39.036000pt;}
.h56{height:41.920000pt;}
.h7{height:44.156250pt;}
.h6{height:44.218750pt;}
.h5{height:44.307187pt;}
.h15{height:44.687500pt;}
.h57{height:45.120000pt;}
.h20{height:45.156250pt;}
.hf{height:45.625000pt;}
.h53{height:46.546667pt;}
.h54{height:46.706667pt;}
.h2{height:47.109375pt;}
.h52{height:47.186667pt;}
.h5d{height:51.186667pt;}
.h10{height:51.200000pt;}
.h47{height:52.750000pt;}
.h11{height:52.832812pt;}
.h4{height:54.240000pt;}
.h5a{height:55.186667pt;}
.h4b{height:55.196000pt;}
.h4e{height:55.200000pt;}
.h5c{height:55.218667pt;}
.h4a{height:55.232000pt;}
.h3{height:55.275000pt;}
.h4c{height:56.020000pt;}
.h58{height:56.032000pt;}
.h49{height:57.426667pt;}
.h4f{height:58.400000pt;}
.hd{height:60.681250pt;}
.h1a{height:62.781250pt;}
.h13{height:62.812500pt;}
.h31{height:63.220000pt;}
.h5b{height:63.346667pt;}
.h16{height:64.500000pt;}
.h17{height:64.629000pt;}
.h4d{height:65.440000pt;}
.h1e{height:65.781915pt;}
.h1b{height:73.490625pt;}
.ha{height:75.465000pt;}
.h1d{height:75.594000pt;}
.h12{height:85.785000pt;}
.he{height:88.611250pt;}
.hc{height:91.250000pt;}
.h21{height:91.996000pt;}
.h24{height:92.000000pt;}
.h22{height:92.020000pt;}
.hb{height:110.400000pt;}
.h23{height:128.832000pt;}
.h14{height:372.960000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h18{height:1122.560000pt;}
.h19{height:1122.666667pt;}
.w39{width:55.218667pt;}
.w2f{width:57.312000pt;}
.w17{width:61.426667pt;}
.w2e{width:62.560000pt;}
.w34{width:63.680000pt;}
.w3a{width:64.466667pt;}
.w32{width:64.946667pt;}
.w3b{width:66.866667pt;}
.w1e{width:67.506667pt;}
.wf{width:73.280000pt;}
.w15{width:75.666667pt;}
.w18{width:76.672000pt;}
.w21{width:78.400000pt;}
.w16{width:88.338667pt;}
.w1c{width:90.592000pt;}
.w31{width:91.378667pt;}
.w30{width:92.146667pt;}
.w24{width:92.626667pt;}
.w28{width:93.106667pt;}
.w19{width:94.066667pt;}
.w14{width:95.072000pt;}
.w38{width:100.786667pt;}
.w2c{width:101.106667pt;}
.w12{width:101.586667pt;}
.w23{width:108.338667pt;}
.w33{width:108.352000pt;}
.w1b{width:109.280000pt;}
.w11{width:109.458667pt;}
.wa{width:110.712000pt;}
.w22{width:112.512000pt;}
.w10{width:119.552000pt;}
.w1d{width:129.298667pt;}
.w42{width:130.432000pt;}
.w36{width:131.378667pt;}
.w26{width:135.066667pt;}
.w27{width:135.213333pt;}
.w35{width:135.226667pt;}
.w48{width:135.706667pt;}
.w3c{width:137.626667pt;}
.w2a{width:138.266667pt;}
.w3f{width:140.666667pt;}
.w45{width:142.586667pt;}
.wb{width:155.226667pt;}
.w2b{width:156.813333pt;}
.w9{width:158.240000pt;}
.wd{width:160.973333pt;}
.w29{width:160.986667pt;}
.we{width:165.306667pt;}
.w1a{width:168.346667pt;}
.wc{width:170.266667pt;}
.w20{width:173.306667pt;}
.w40{width:192.506667pt;}
.w2d{width:199.546667pt;}
.w1f{width:199.866667pt;}
.w25{width:203.066667pt;}
.w4a{width:204.653333pt;}
.w47{width:209.293333pt;}
.w3e{width:214.093333pt;}
.w46{width:217.466667pt;}
.w43{width:223.706667pt;}
.w3d{width:225.626667pt;}
.w44{width:225.773333pt;}
.w49{width:226.106667pt;}
.w41{width:232.173333pt;}
.w3{width:235.040000pt;}
.w13{width:247.546667pt;}
.w37{width:293.826667pt;}
.w2{width:369.760000pt;}
.w4{width:485.280000pt;}
.w6{width:520.320000pt;}
.w5{width:675.200000pt;}
.w7{width:793.760000pt;}
.w8{width:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:7.200000pt;}
.x61{left:8.626667pt;}
.x3{left:9.632000pt;}
.x24{left:11.200000pt;}
.x49{left:12.640000pt;}
.x5e{left:13.760000pt;}
.x28{left:15.200000pt;}
.x17{left:16.960000pt;}
.x65{left:18.240000pt;}
.x26{left:20.466667pt;}
.xa{left:22.080000pt;}
.x50{left:24.160000pt;}
.x36{left:25.440000pt;}
.x33{left:26.720000pt;}
.x13{left:28.386667pt;}
.x37{left:29.440000pt;}
.x1c{left:30.586667pt;}
.x58{left:31.986667pt;}
.x5{left:32.960000pt;}
.x55{left:33.906667pt;}
.x1a{left:35.066667pt;}
.x2b{left:36.800000pt;}
.x8{left:37.786667pt;}
.x4f{left:38.880000pt;}
.xb{left:40.320000pt;}
.x5d{left:41.280000pt;}
.x42{left:42.266667pt;}
.x2f{left:43.546667pt;}
.x2a{left:44.626667pt;}
.x29{left:45.786667pt;}
.x35{left:47.026667pt;}
.x4d{left:48.000000pt;}
.x48{left:49.440000pt;}
.x2c{left:50.706667pt;}
.x6b{left:51.666667pt;}
.x6{left:53.120000pt;}
.x69{left:56.640000pt;}
.x3e{left:57.594667pt;}
.x4e{left:60.306667pt;}
.x3b{left:61.906667pt;}
.x45{left:63.520000pt;}
.x47{left:67.506667pt;}
.x43{left:69.274667pt;}
.x6c{left:72.320000pt;}
.x4b{left:74.066667pt;}
.x51{left:76.314667pt;}
.x59{left:82.874667pt;}
.x2d{left:91.514667pt;}
.x2{left:96.000000pt;}
.x16{left:98.272000pt;}
.x21{left:112.832000pt;}
.x10{left:120.032000pt;}
.x3d{left:127.226667pt;}
.x5f{left:130.914667pt;}
.x14{left:148.026667pt;}
.xc{left:150.586667pt;}
.x7{left:164.000000pt;}
.x11{left:168.026667pt;}
.x15{left:176.346667pt;}
.x5a{left:177.626667pt;}
.x18{left:208.986667pt;}
.x4{left:210.586667pt;}
.x70{left:248.546667pt;}
.x66{left:250.466667pt;}
.x68{left:253.506667pt;}
.x6e{left:261.986667pt;}
.x9{left:268.186667pt;}
.x22{left:278.146667pt;}
.x38{left:281.186667pt;}
.x3f{left:286.146667pt;}
.x12{left:307.040000pt;}
.x52{left:312.386667pt;}
.x44{left:315.906667pt;}
.x5b{left:349.666667pt;}
.x23{left:351.426667pt;}
.x2e{left:360.386667pt;}
.x19{left:364.226667pt;}
.x53{left:374.946667pt;}
.x39{left:390.466667pt;}
.x60{left:413.226667pt;}
.x4a{left:418.666667pt;}
.x54{left:432.266667pt;}
.x34{left:437.066667pt;}
.x6a{left:446.026667pt;}
.x46{left:450.986667pt;}
.x30{left:455.466667pt;}
.x25{left:470.986667pt;}
.x6d{left:473.546667pt;}
.x71{left:474.666667pt;}
.x67{left:476.106667pt;}
.x40{left:477.066667pt;}
.x6f{left:479.466667pt;}
.x3a{left:481.066667pt;}
.x5c{left:484.906667pt;}
.x62{left:514.026667pt;}
.x56{left:524.426667pt;}
.x31{left:531.146667pt;}
.x1b{left:534.506667pt;}
.xe{left:561.600000pt;}
.x63{left:569.253333pt;}
.xd{left:571.293333pt;}
.x4c{left:575.493333pt;}
.x27{left:580.453333pt;}
.x41{left:585.413333pt;}
.x20{left:600.773333pt;}
.x3c{left:610.373333pt;}
.x57{left:615.813333pt;}
.x32{left:619.493333pt;}
.x1e{left:621.573333pt;}
.x64{left:633.733333pt;}
.xf{left:655.813333pt;}
.x1f{left:660.133333pt;}
.x1{left:1008.640000pt;}
}




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