
    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_f9efa60882d908eab229a23d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_d0badb02bd7a54da11503a7a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d10087c03227abaf9f54a1d7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6f7d37a0d503d90d91baf34f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e9b5af88e4a96200e44dbeb0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_25ba022aae7c3e2227d8d481.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_5520e68883bce819854ca071.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_65f08a9969cdf8df40a6d769.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4e334f38812c0caa376ea990.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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:-80.640000px;}
.v3{vertical-align:-45.360000px;}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.337200px;}
.ls14{letter-spacing:-0.308400px;}
.ls35{letter-spacing:-0.295200px;}
.ls3{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.285600px;}
.ls6{letter-spacing:-0.283200px;}
.ls26{letter-spacing:-0.271200px;}
.ls2d{letter-spacing:-0.265800px;}
.ls2b{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.229800px;}
.ls1a{letter-spacing:-0.191400px;}
.ls10{letter-spacing:-0.123600px;}
.ls27{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.069600px;}
.ls8{letter-spacing:-0.059040px;}
.ls31{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.051840px;}
.ls9{letter-spacing:-0.002160px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.015840px;}
.lsd{letter-spacing:0.027360px;}
.ls22{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.066720px;}
.ls13{letter-spacing:0.075600px;}
.ls1c{letter-spacing:0.082560px;}
.ls21{letter-spacing:0.106560px;}
.ls1e{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.126600px;}
.ls12{letter-spacing:0.132600px;}
.ls2e{letter-spacing:0.149760px;}
.ls34{letter-spacing:0.150000px;}
.ls1d{letter-spacing:0.156000px;}
.ls1b{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.180720px;}
.lsf{letter-spacing:0.181200px;}
.ls2c{letter-spacing:0.206400px;}
.ls33{letter-spacing:0.220200px;}
.lse{letter-spacing:0.223200px;}
.ls17{letter-spacing:0.240600px;}
.ls28{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.259920px;}
.ls39{letter-spacing:0.286800px;}
.ls25{letter-spacing:0.300000px;}
.ls29{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.424800px;}
.ls1f{letter-spacing:0.426720px;}
.ls2a{letter-spacing:0.466800px;}
.ls2f{letter-spacing:0.471600px;}
.ls20{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.660960px;}
.lsc{letter-spacing:0.717840px;}
.lsb{letter-spacing:0.837840px;}
.ls38{letter-spacing:0.852000px;}
.ls36{letter-spacing:0.942000px;}
.ls1{letter-spacing:25.140960px;}
.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;}
}
.ws4{word-spacing:-17.352000px;}
.ws2{word-spacing:-17.280000px;}
.ws1{word-spacing:-17.064000px;}
.wsd{word-spacing:-15.912000px;}
.wsa{word-spacing:-15.655440px;}
.ws15{word-spacing:-15.406800px;}
.ws1a{word-spacing:-15.344160px;}
.ws0{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.254160px;}
.ws13{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.179040px;}
.ws16{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.833200px;}
.ws1e{word-spacing:-14.688960px;}
.wsb{word-spacing:-14.625360px;}
.ws9{word-spacing:-14.583360px;}
.wsf{word-spacing:-14.534760px;}
.ws1c{word-spacing:-14.528760px;}
.ws1b{word-spacing:-14.418000px;}
.ws8{word-spacing:-14.402160px;}
.wse{word-spacing:-14.210760px;}
.ws6{word-spacing:-14.172360px;}
.ws5{word-spacing:-14.118960px;}
.wsc{word-spacing:-14.116560px;}
.ws17{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.447440px;}
.ws19{word-spacing:-13.436160px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._1{width:1.236000px;}
._4{width:2.365680px;}
._5{width:3.390720px;}
._8{width:4.526400px;}
._9{width:5.796720px;}
._7{width:6.812640px;}
._6{width:7.828560px;}
._c{width:9.223440px;}
._10{width:10.281120px;}
._12{width:11.534880px;}
._f{width:12.672000px;}
._14{width:14.328000px;}
._3{width:15.668400px;}
._23{width:16.717920px;}
._16{width:18.360000px;}
._17{width:19.488000px;}
._e{width:20.664000px;}
._1b{width:21.720000px;}
._11{width:23.180640px;}
._a{width:24.441840px;}
._b{width:26.132640px;}
._13{width:27.936000px;}
._15{width:29.748000px;}
._d{width:31.608000px;}
._18{width:33.192000px;}
._1e{width:35.136000px;}
._21{width:36.852000px;}
._19{width:37.872000px;}
._1a{width:39.012000px;}
._1d{width:41.544000px;}
._1c{width:42.696000px;}
._3e{width:43.923600px;}
._43{width:45.298080px;}
._29{width:46.672320px;}
._37{width:48.527760px;}
._22{width:50.256000px;}
._1f{width:51.552000px;}
._20{width:53.196000px;}
._28{width:54.567360px;}
._24{width:55.656000px;}
._36{width:59.042880px;}
._3b{width:63.046800px;}
._34{width:66.214080px;}
._2e{width:69.620400px;}
._39{width:71.532720px;}
._2f{width:72.847440px;}
._35{width:73.982880px;}
._2d{width:75.595680px;}
._2a{width:82.800000px;}
._26{width:84.257280px;}
._30{width:85.994640px;}
._2c{width:90.715680px;}
._33{width:95.914800px;}
._31{width:97.946640px;}
._2b{width:130.435680px;}
._32{width:137.029680px;}
._25{width:143.395680px;}
._3c{width:173.064960px;}
._3a{width:184.001040px;}
._38{width:197.088480px;}
._27{width:214.015680px;}
._41{width:222.426720px;}
._3d{width:275.314320px;}
._40{width:285.234480px;}
._3f{width:310.572720px;}
._42{width:339.496560px;}
._2{width:412.788000px;}
.fc7{color:rgb(250,191,143);}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(0,111,192);}
.fc4{color:transparent;}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,72,126);}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y177{bottom:-7.815000px;}
.y19f{bottom:-7.665000px;}
.y164{bottom:-7.635000px;}
.y183{bottom:-7.275000px;}
.y166{bottom:-6.915000px;}
.y1a4{bottom:-6.045000px;}
.y1ba{bottom:-5.685000px;}
.y181{bottom:-2.055000px;}
.y19a{bottom:-1.185000px;}
.yc7{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y142{bottom:0.180000px;}
.y244{bottom:0.285000px;}
.y249{bottom:0.330000px;}
.y247{bottom:0.465000px;}
.y24c{bottom:0.510000px;}
.y242{bottom:2.445000px;}
.y201{bottom:3.135000px;}
.y168{bottom:3.165000px;}
.y253{bottom:3.210000px;}
.y205{bottom:3.315000px;}
.y207{bottom:3.345000px;}
.yd2{bottom:3.405000px;}
.yda{bottom:3.420000px;}
.y1a1{bottom:3.525000px;}
.yd8{bottom:3.592500px;}
.yaf{bottom:3.600000px;}
.y227{bottom:3.630000px;}
.ye9{bottom:3.780000px;}
.y255{bottom:4.065000px;}
.y1b6{bottom:4.215000px;}
.yf8{bottom:4.500000px;}
.yfc{bottom:4.680000px;}
.ydc{bottom:5.220000px;}
.ye8{bottom:5.400000px;}
.y135{bottom:5.580000px;}
.y1ff{bottom:5.655000px;}
.y263{bottom:6.015000px;}
.yce{bottom:6.105000px;}
.y1d7{bottom:6.480000px;}
.y216{bottom:7.665000px;}
.y218{bottom:8.925000px;}
.y194{bottom:9.825000px;}
.y1ad{bottom:10.335000px;}
.y15e{bottom:10.545000px;}
.y19d{bottom:10.875000px;}
.y158{bottom:11.520000px;}
.y12d{bottom:12.600000px;}
.y11b{bottom:12.780000px;}
.y197{bottom:13.605000px;}
.y1a8{bottom:14.115000px;}
.y18d{bottom:15.045000px;}
.y1f0{bottom:15.120000px;}
.y1cb{bottom:15.555000px;}
.y15c{bottom:15.660000px;}
.y237{bottom:15.690000px;}
.y1c5{bottom:16.275000px;}
.y11f{bottom:16.560000px;}
.y155{bottom:16.740000px;}
.y125{bottom:17.100000px;}
.y12a{bottom:17.280000px;}
.y123{bottom:17.460000px;}
.yc1{bottom:17.625000px;}
.y175{bottom:17.925000px;}
.y1df{bottom:18.000000px;}
.y268{bottom:18.720000px;}
.yc8{bottom:19.785000px;}
.y1e3{bottom:20.145000px;}
.y16b{bottom:20.265000px;}
.yd1{bottom:20.505000px;}
.yae{bottom:20.520000px;}
.y226{bottom:20.550000px;}
.yb1{bottom:20.700000px;}
.y189{bottom:21.345000px;}
.y1da{bottom:21.420000px;}
.y22c{bottom:21.450000px;}
.y17f{bottom:21.525000px;}
.y1e1{bottom:21.780000px;}
.y1b0{bottom:21.855000px;}
.y191{bottom:21.885000px;}
.yc4{bottom:21.945000px;}
.y1c7{bottom:22.035000px;}
.y1e5{bottom:22.305000px;}
.yd7{bottom:22.312500px;}
.ye3{bottom:22.320000px;}
.ye0{bottom:22.500000px;}
.y9{bottom:22.716000px;}
.y186{bottom:22.785000px;}
.yf7{bottom:23.220000px;}
.yfb{bottom:23.400000px;}
.y14f{bottom:23.580000px;}
.y1dc{bottom:23.760000px;}
.ye2{bottom:23.940000px;}
.y1f2{bottom:23.985000px;}
.ydf{bottom:24.120000px;}
.y162{bottom:24.225000px;}
.yf6{bottom:24.840000px;}
.yfa{bottom:25.020000px;}
.y172{bottom:25.125000px;}
.y14a{bottom:27.000000px;}
.y1b3{bottom:27.255000px;}
.y1be{bottom:27.435000px;}
.y215{bottom:27.465000px;}
.y1b8{bottom:28.155000px;}
.y157{bottom:28.440000px;}
.y1ac{bottom:28.905000px;}
.y136{bottom:29.160000px;}
.y19c{bottom:29.445000px;}
.y127{bottom:29.520000px;}
.y130{bottom:29.700000px;}
.y12c{bottom:29.730000px;}
.y11a{bottom:29.880000px;}
.y149{bottom:30.420000px;}
.y1ef{bottom:32.220000px;}
.y196{bottom:32.325000px;}
.y236{bottom:32.610000px;}
.y15b{bottom:32.760000px;}
.y1a7{bottom:32.865000px;}
.y11e{bottom:33.660000px;}
.yca{bottom:33.825000px;}
.y1ca{bottom:34.095000px;}
.y1de{bottom:34.920000px;}
.y267{bottom:35.820000px;}
.yd0{bottom:37.605000px;}
.yad{bottom:37.614000px;}
.y225{bottom:37.650000px;}
.y16f{bottom:37.725000px;}
.y14c{bottom:38.340000px;}
.y22b{bottom:38.550000px;}
.yc0{bottom:38.910000px;}
.y1e7{bottom:39.045000px;}
.y148{bottom:39.060000px;}
.y16a{bottom:39.345000px;}
.y139{bottom:39.420000px;}
.y143{bottom:39.780000px;}
.ycc{bottom:39.990000px;}
.y8{bottom:39.996000px;}
.y153{bottom:40.320000px;}
.y17e{bottom:40.425000px;}
.y151{bottom:40.500000px;}
.y190{bottom:40.605000px;}
.y14e{bottom:40.680000px;}
.yd6{bottom:41.026500px;}
.yed{bottom:41.040000px;}
.yf3{bottom:41.085000px;}
.yf0{bottom:41.220000px;}
.y121{bottom:42.120000px;}
.yd5{bottom:42.646500px;}
.yec{bottom:42.660000px;}
.y100{bottom:42.690000px;}
.yf2{bottom:42.705000px;}
.yef{bottom:42.840000px;}
.y161{bottom:42.945000px;}
.y144{bottom:43.740000px;}
.y13d{bottom:45.000000px;}
.yd3{bottom:45.165000px;}
.yc5{bottom:45.390000px;}
.y1b2{bottom:46.155000px;}
.y214{bottom:47.265000px;}
.y17b{bottom:48.345000px;}
.y28a{bottom:48.406500px;}
.yc3{bottom:48.810000px;}
.yc9{bottom:48.990000px;}
.y1ee{bottom:49.320000px;}
.y15a{bottom:49.680000px;}
.y235{bottom:49.710000px;}
.y14b{bottom:50.580000px;}
.y11d{bottom:50.760000px;}
.yc6{bottom:50.790000px;}
.y13b{bottom:51.840000px;}
.y266{bottom:52.920000px;}
.y13f{bottom:54.000000px;}
.y224{bottom:54.750000px;}
.y22a{bottom:55.470000px;}
.y147{bottom:55.980000px;}
.y16e{bottom:56.445000px;}
.ycb{bottom:56.910000px;}
.y13a{bottom:58.500000px;}
.y137{bottom:60.480000px;}
.y160{bottom:61.485000px;}
.y27f{bottom:65.160000px;}
.y289{bottom:65.326500px;}
.yc2{bottom:65.910000px;}
.y13c{bottom:66.420000px;}
.y213{bottom:67.065000px;}
.y17a{bottom:67.245000px;}
.y138{bottom:68.220000px;}
.y229{bottom:69.150000px;}
.y134{bottom:69.480000px;}
.y265{bottom:69.840000px;}
.y223{bottom:71.670000px;}
.y141{bottom:72.390000px;}
.y146{bottom:73.080000px;}
.y13e{bottom:76.500000px;}
.y8e{bottom:78.336000px;}
.y34{bottom:78.696000px;}
.yb0{bottom:79.596000px;}
.y27e{bottom:82.260000px;}
.y288{bottom:82.426500px;}
.y118{bottom:82.476000px;}
.y5e{bottom:83.196000px;}
.y1eb{bottom:83.916000px;}
.y179{bottom:85.965000px;}
.y240{bottom:86.256000px;}
.y133{bottom:86.580000px;}
.y222{bottom:88.770000px;}
.y60{bottom:89.496000px;}
.y114{bottom:90.576000px;}
.y233{bottom:92.190000px;}
.y159{bottom:93.456000px;}
.y117{bottom:98.856000px;}
.y33{bottom:99.036000px;}
.y27d{bottom:99.360000px;}
.y287{bottom:99.526500px;}
.y70{bottom:102.996000px;}
.y273{bottom:103.320000px;}
.y5d{bottom:103.716000px;}
.y23f{bottom:103.896000px;}
.y1ea{bottom:104.256000px;}
.y221{bottom:105.870000px;}
.y5f{bottom:106.596000px;}
.y232{bottom:109.290000px;}
.y113{bottom:109.296000px;}
.yd4{bottom:113.983500px;}
.yac{bottom:114.876000px;}
.y280{bottom:115.063500px;}
.y27c{bottom:116.280000px;}
.y286{bottom:116.446500px;}
.y32{bottom:119.556000px;}
.y272{bottom:120.420000px;}
.y6f{bottom:123.336000px;}
.y2a2{bottom:123.516000px;}
.y5c{bottom:124.056000px;}
.y23e{bottom:124.236000px;}
.y1e9{bottom:124.776000px;}
.y231{bottom:126.210000px;}
.y112{bottom:128.016000px;}
.y27b{bottom:133.380000px;}
.y285{bottom:133.546500px;}
.y271{bottom:137.340000px;}
.y31{bottom:140.076000px;}
.y2a1{bottom:140.616000px;}
.y230{bottom:143.310000px;}
.y6e{bottom:143.856000px;}
.y5b{bottom:144.576000px;}
.y23d{bottom:144.756000px;}
.y1e8{bottom:145.116000px;}
.y111{bottom:146.916000px;}
.y27a{bottom:150.480000px;}
.y284{bottom:150.646500px;}
.y270{bottom:154.440000px;}
.y2a0{bottom:157.710000px;}
.y156{bottom:158.250000px;}
.y30{bottom:160.410000px;}
.y1e6{bottom:162.765000px;}
.y6d{bottom:164.190000px;}
.y5a{bottom:164.910000px;}
.y23c{bottom:165.090000px;}
.y110{bottom:165.630000px;}
.y279{bottom:167.400000px;}
.y283{bottom:167.611500px;}
.ycf{bottom:171.045000px;}
.y26f{bottom:171.540000px;}
.y29f{bottom:174.630000px;}
.y22f{bottom:177.330000px;}
.y2f{bottom:180.930000px;}
.y10f{bottom:184.350000px;}
.y278{bottom:184.500000px;}
.y6c{bottom:184.710000px;}
.y282{bottom:184.711500px;}
.y59{bottom:185.430000px;}
.y23b{bottom:185.610000px;}
.y26e{bottom:188.460000px;}
.y29e{bottom:191.730000px;}
.y22e{bottom:194.430000px;}
.y2e{bottom:201.270000px;}
.y277{bottom:201.600000px;}
.y154{bottom:201.810000px;}
.y281{bottom:201.811500px;}
.y10e{bottom:203.070000px;}
.y6b{bottom:205.230000px;}
.y26d{bottom:205.560000px;}
.y58{bottom:205.950000px;}
.y23a{bottom:206.130000px;}
.y29d{bottom:208.830000px;}
.yab{bottom:210.990000px;}
.y1e4{bottom:217.125000px;}
.y276{bottom:218.550000px;}
.y2d{bottom:221.790000px;}
.y26c{bottom:222.705000px;}
.ycd{bottom:222.885000px;}
.y6a{bottom:225.570000px;}
.y29c{bottom:225.750000px;}
.y57{bottom:226.290000px;}
.y239{bottom:226.470000px;}
.yaa{bottom:231.510000px;}
.y152{bottom:233.670000px;}
.y275{bottom:235.650000px;}
.y26b{bottom:239.625000px;}
.y10d{bottom:240.510000px;}
.y2c{bottom:242.310000px;}
.y29b{bottom:242.850000px;}
.ybf{bottom:243.225000px;}
.y69{bottom:246.090000px;}
.y56{bottom:246.810000px;}
.y238{bottom:246.990000px;}
.ya9{bottom:251.850000px;}
.y1e2{bottom:254.745000px;}
.y26a{bottom:256.725000px;}
.y10c{bottom:259.410000px;}
.y29a{bottom:259.950000px;}
.y2b{bottom:262.650000px;}
.y228{bottom:265.200000px;}
.y68{bottom:266.430000px;}
.y55{bottom:267.330000px;}
.y1fd{bottom:270.390000px;}
.y234{bottom:270.960000px;}
.ya8{bottom:272.370000px;}
.y299{bottom:276.870000px;}
.y10b{bottom:278.130000px;}
.y220{bottom:278.685000px;}
.y22d{bottom:283.020000px;}
.y2a{bottom:283.215000px;}
.y67{bottom:286.995000px;}
.y54{bottom:287.715000px;}
.y150{bottom:289.155000px;}
.y1fc{bottom:289.515000px;}
.y1e0{bottom:290.235000px;}
.ya7{bottom:292.935000px;}
.y298{bottom:294.015000px;}
.y10a{bottom:296.895000px;}
.y29{bottom:303.555000px;}
.y66{bottom:307.515000px;}
.y53{bottom:308.235000px;}
.y1fb{bottom:310.035000px;}
.y297{bottom:311.115000px;}
.ya6{bottom:313.275000px;}
.y109{bottom:315.975000px;}
.y28{bottom:324.075000px;}
.ybe{bottom:326.955000px;}
.y1dd{bottom:327.315000px;}
.y65{bottom:327.855000px;}
.y296{bottom:328.035000px;}
.y52{bottom:328.575000px;}
.ya5{bottom:329.835000px;}
.y1fa{bottom:330.375000px;}
.y274{bottom:331.635000px;}
.y108{bottom:336.495000px;}
.ybd{bottom:344.415000px;}
.y27{bottom:344.595000px;}
.y14d{bottom:344.775000px;}
.y262{bottom:344.880000px;}
.y295{bottom:345.135000px;}
.y64{bottom:348.375000px;}
.y51{bottom:349.095000px;}
.y1f9{bottom:350.895000px;}
.y8d{bottom:352.155000px;}
.y107{bottom:357.015000px;}
.y294{bottom:362.235000px;}
.y63{bottom:364.755000px;}
.y26{bottom:364.935000px;}
.y116{bottom:369.255000px;}
.y50{bottom:369.615000px;}
.y8c{bottom:370.695000px;}
.y1f8{bottom:371.415000px;}
.y106{bottom:377.355000px;}
.y1db{bottom:377.535000px;}
.y293{bottom:379.335000px;}
.y25{bottom:385.455000px;}
.y131{bottom:386.355000px;}
.y8b{bottom:387.795000px;}
.y4f{bottom:389.955000px;}
.y1f7{bottom:391.755000px;}
.y292{bottom:396.255000px;}
.y105{bottom:397.875000px;}
.y145{bottom:400.575000px;}
.y1af{bottom:400.680000px;}
.y8a{bottom:404.895000px;}
.y1c4{bottom:405.360000px;}
.ybc{bottom:405.795000px;}
.y24{bottom:405.975000px;}
.y1f6{bottom:408.135000px;}
.y1fe{bottom:409.140000px;}
.y4e{bottom:410.475000px;}
.y291{bottom:413.355000px;}
.y1d9{bottom:416.595000px;}
.y104{bottom:418.395000px;}
.y89{bottom:421.815000px;}
.y23{bottom:426.315000px;}
.y211{bottom:427.140000px;}
.y210{bottom:427.500000px;}
.y1c3{bottom:427.680000px;}
.y1b1{bottom:428.040000px;}
.y290{bottom:430.455000px;}
.y1b5{bottom:430.560000px;}
.y4d{bottom:430.995000px;}
.y1c0{bottom:431.100000px;}
.y1bc{bottom:435.960000px;}
.y103{bottom:438.735000px;}
.y88{bottom:438.915000px;}
.y1c9{bottom:439.020000px;}
.y1b7{bottom:444.240000px;}
.y1c1{bottom:444.780000px;}
.y1bd{bottom:445.320000px;}
.y22{bottom:446.295000px;}
.ybb{bottom:446.835000px;}
.y20f{bottom:447.300000px;}
.y28f{bottom:447.375000px;}
.y20e{bottom:447.660000px;}
.y12f{bottom:450.255000px;}
.y1c6{bottom:451.260000px;}
.y4c{bottom:451.335000px;}
.y1d8{bottom:453.315000px;}
.y87{bottom:456.015000px;}
.y102{bottom:459.255000px;}
.y21{bottom:463.395000px;}
.y28e{bottom:464.475000px;}
.y20d{bottom:464.580000px;}
.yba{bottom:467.175000px;}
.y4b{bottom:471.855000px;}
.y1b4{bottom:472.680000px;}
.y86{bottom:472.935000px;}
.y1cc{bottom:475.020000px;}
.y1b9{bottom:475.920000px;}
.y1c2{bottom:476.100000px;}
.y1bf{bottom:476.280000px;}
.y200{bottom:476.640000px;}
.y1c8{bottom:478.260000px;}
.y101{bottom:479.595000px;}
.y20{bottom:480.315000px;}
.y28d{bottom:481.575000px;}
.y1bb{bottom:481.680000px;}
.yb9{bottom:487.695000px;}
.y140{bottom:488.775000px;}
.y1a3{bottom:488.880000px;}
.y85{bottom:490.035000px;}
.y4a{bottom:492.195000px;}
.y1d6{bottom:493.095000px;}
.y12e{bottom:494.535000px;}
.y1a5{bottom:494.640000px;}
.y202{bottom:495.720000px;}
.yff{bottom:496.875000px;}
.y1f{bottom:497.415000px;}
.y28c{bottom:498.495000px;}
.ya4{bottom:500.295000px;}
.y84{bottom:507.135000px;}
.yb8{bottom:508.035000px;}
.y49{bottom:512.715000px;}
.y199{bottom:513.000000px;}
.y1e{bottom:514.515000px;}
.y203{bottom:514.800000px;}
.y28b{bottom:515.595000px;}
.ya3{bottom:519.555000px;}
.y19b{bottom:522.360000px;}
.y83{bottom:524.055000px;}
.y12b{bottom:526.395000px;}
.yb7{bottom:528.555000px;}
.y1a6{bottom:528.660000px;}
.y1d{bottom:531.435000px;}
.y1ab{bottom:532.620000px;}
.y48{bottom:533.235000px;}
.y204{bottom:533.700000px;}
.ya2{bottom:540.105000px;}
.y82{bottom:541.185000px;}
.y1a9{bottom:542.775000px;}
.y212{bottom:544.140000px;}
.y2b6{bottom:546.765000px;}
.y1c{bottom:548.565000px;}
.yb6{bottom:549.105000px;}
.y206{bottom:552.780000px;}
.y1d5{bottom:552.885000px;}
.y47{bottom:553.605000px;}
.yfe{bottom:553.785000px;}
.y19e{bottom:554.760000px;}
.y1a0{bottom:556.560000px;}
.y81{bottom:558.285000px;}
.ya1{bottom:560.445000px;}
.y1aa{bottom:563.580000px;}
.y1ae{bottom:564.660000px;}
.y1b{bottom:565.665000px;}
.y2b5{bottom:566.745000px;}
.y1a2{bottom:569.160000px;}
.yb5{bottom:569.445000px;}
.y129{bottom:570.885000px;}
.y1d4{bottom:571.605000px;}
.y208{bottom:571.860000px;}
.y46{bottom:574.125000px;}
.y80{bottom:575.205000px;}
.y132{bottom:576.285000px;}
.y178{bottom:576.900000px;}
.y21f{bottom:580.065000px;}
.ya0{bottom:580.965000px;}
.y269{bottom:582.045000px;}
.y15d{bottom:582.120000px;}
.y1a{bottom:582.585000px;}
.y2b4{bottom:583.845000px;}
.y165{bottom:587.880000px;}
.yb4{bottom:589.965000px;}
.y1d3{bottom:590.865000px;}
.y209{bottom:590.940000px;}
.y7f{bottom:592.305000px;}
.yfd{bottom:592.845000px;}
.y167{bottom:593.100000px;}
.y45{bottom:594.645000px;}
.y21e{bottom:599.325000px;}
.y19{bottom:599.685000px;}
.y15f{bottom:600.480000px;}
.y2b3{bottom:600.765000px;}
.y9f{bottom:601.305000px;}
.y128{bottom:602.745000px;}
.y16d{bottom:605.520000px;}
.y169{bottom:605.700000px;}
.y7e{bottom:609.405000px;}
.y20a{bottom:610.020000px;}
.yb3{bottom:610.485000px;}
.y1d2{bottom:611.385000px;}
.y44{bottom:614.985000px;}
.y17d{bottom:615.780000px;}
.y18{bottom:616.785000px;}
.y2b2{bottom:617.865000px;}
.y21d{bottom:619.665000px;}
.y9e{bottom:621.825000px;}
.y18f{bottom:621.900000px;}
.y185{bottom:622.620000px;}
.y7d{bottom:626.325000px;}
.y18b{bottom:628.560000px;}
.y20b{bottom:629.100000px;}
.y195{bottom:630.360000px;}
.yb2{bottom:630.825000px;}
.y1d1{bottom:631.725000px;}
.yf9{bottom:631.905000px;}
.y17{bottom:633.705000px;}
.y188{bottom:634.860000px;}
.y126{bottom:634.965000px;}
.y43{bottom:635.505000px;}
.y171{bottom:636.840000px;}
.y21c{bottom:640.185000px;}
.y9d{bottom:642.345000px;}
.y18e{bottom:642.600000px;}
.y62{bottom:642.885000px;}
.y7c{bottom:643.425000px;}
.y174{bottom:644.400000px;}
.y16c{bottom:645.840000px;}
.y18c{bottom:647.100000px;}
.y20c{bottom:648.000000px;}
.y187{bottom:650.700000px;}
.y16{bottom:650.805000px;}
.y17c{bottom:651.780000px;}
.y2b1{bottom:652.065000px;}
.y1d0{bottom:652.245000px;}
.y193{bottom:652.860000px;}
.y42{bottom:655.845000px;}
.y61{bottom:656.385000px;}
.y180{bottom:656.820000px;}
.y163{bottom:657.360000px;}
.y170{bottom:658.440000px;}
.y7b{bottom:660.525000px;}
.y18a{bottom:661.860000px;}
.y9c{bottom:662.685000px;}
.y192{bottom:662.940000px;}
.yea{bottom:665.025000px;}
.y198{bottom:665.280000px;}
.y182{bottom:665.820000px;}
.y173{bottom:666.360000px;}
.y15{bottom:667.905000px;}
.y176{bottom:668.700000px;}
.y2b0{bottom:668.985000px;}
.y184{bottom:670.860000px;}
.yf5{bottom:671.145000px;}
.y1cf{bottom:672.765000px;}
.y41{bottom:676.365000px;}
.y7a{bottom:677.625000px;}
.y124{bottom:679.245000px;}
.y21b{bottom:681.045000px;}
.y9b{bottom:683.205000px;}
.ye7{bottom:684.825000px;}
.y14{bottom:685.005000px;}
.y2af{bottom:686.085000px;}
.y1ce{bottom:693.105000px;}
.y79{bottom:694.545000px;}
.y241{bottom:696.600000px;}
.y40{bottom:696.885000px;}
.y21a{bottom:697.425000px;}
.y2ae{bottom:703.185000px;}
.y9a{bottom:703.725000px;}
.ye6{bottom:704.805000px;}
.y251{bottom:707.760000px;}
.y219{bottom:708.300000px;}
.y25d{bottom:708.480000px;}
.yf4{bottom:710.205000px;}
.y122{bottom:711.105000px;}
.y78{bottom:711.645000px;}
.y1cd{bottom:713.625000px;}
.y3f{bottom:717.225000px;}
.y2ad{bottom:720.105000px;}
.y250{bottom:720.900000px;}
.y25c{bottom:721.620000px;}
.y13{bottom:723.165000px;}
.y99{bottom:724.065000px;}
.ye5{bottom:724.605000px;}
.y217{bottom:725.940000px;}
.y77{bottom:728.745000px;}
.y1f3{bottom:731.445000px;}
.y24f{bottom:734.040000px;}
.y25b{bottom:734.760000px;}
.y2ac{bottom:737.205000px;}
.y3e{bottom:737.745000px;}
.y120{bottom:743.145000px;}
.y12{bottom:743.685000px;}
.y261{bottom:743.760000px;}
.y98{bottom:744.585000px;}
.y76{bottom:745.665000px;}
.y243{bottom:748.260000px;}
.y254{bottom:748.800000px;}
.y2ab{bottom:754.305000px;}
.y260{bottom:756.900000px;}
.y3d{bottom:758.265000px;}
.y75{bottom:762.765000px;}
.y11{bottom:764.025000px;}
.ye4{bottom:764.385000px;}
.y97{bottom:764.925000px;}
.yf1{bottom:767.265000px;}
.y245{bottom:768.600000px;}
.y256{bottom:769.140000px;}
.y2aa{bottom:771.225000px;}
.y3c{bottom:778.605000px;}
.y74{bottom:779.865000px;}
.y1f5{bottom:781.665000px;}
.y10{bottom:784.545000px;}
.y96{bottom:785.445000px;}
.y1f1{bottom:786.885000px;}
.y2a9{bottom:788.325000px;}
.y246{bottom:788.940000px;}
.y257{bottom:789.480000px;}
.y73{bottom:796.785000px;}
.y3b{bottom:799.170000px;}
.y11c{bottom:799.890000px;}
.y1f4{bottom:800.430000px;}
.ye1{bottom:803.130000px;}
.yf{bottom:805.110000px;}
.y2a8{bottom:805.470000px;}
.y95{bottom:806.010000px;}
.y248{bottom:809.460000px;}
.y258{bottom:809.820000px;}
.y72{bottom:815.010000px;}
.y3a{bottom:819.510000px;}
.y25f{bottom:822.060000px;}
.y2a7{bottom:822.390000px;}
.yee{bottom:824.190000px;}
.ye{bottom:825.450000px;}
.y94{bottom:826.350000px;}
.y24a{bottom:829.800000px;}
.y259{bottom:830.160000px;}
.y71{bottom:838.050000px;}
.y2a6{bottom:839.490000px;}
.y39{bottom:840.030000px;}
.yde{bottom:841.650000px;}
.y1ed{bottom:842.910000px;}
.yd{bottom:845.970000px;}
.y93{bottom:846.870000px;}
.y24b{bottom:850.140000px;}
.y25a{bottom:850.500000px;}
.y264{bottom:853.530000px;}
.y25e{bottom:854.460000px;}
.y2a5{bottom:856.590000px;}
.y38{bottom:860.550000px;}
.y119{bottom:865.410000px;}
.yc{bottom:866.850000px;}
.y92{bottom:867.390000px;}
.y24d{bottom:870.660000px;}
.y2a4{bottom:873.510000px;}
.ydd{bottom:880.350000px;}
.y37{bottom:880.890000px;}
.yeb{bottom:881.250000px;}
.y91{bottom:887.730000px;}
.yb{bottom:888.270000px;}
.y2a3{bottom:890.610000px;}
.y24e{bottom:891.000000px;}
.ydb{bottom:900.150000px;}
.y36{bottom:901.410000px;}
.y1ec{bottom:907.170000px;}
.y90{bottom:907.710000px;}
.y252{bottom:909.900000px;}
.ya{bottom:915.810000px;}
.yd9{bottom:920.130000px;}
.y35{bottom:921.750000px;}
.y115{bottom:923.010000px;}
.y8f{bottom:924.630000px;}
.y7{bottom:981.870000px;}
.y6{bottom:1005.090000px;}
.y5{bottom:1025.610000px;}
.y4{bottom:1045.950000px;}
.y3{bottom:1066.500000px;}
.y2{bottom:1087.020000px;}
.y1{bottom:1109.520000px;}
.h3c{height:5.760000px;}
.h35{height:5.940000px;}
.h40{height:6.660000px;}
.h36{height:7.020000px;}
.h4b{height:7.560000px;}
.h52{height:7.920000px;}
.h3f{height:11.880000px;}
.h48{height:12.420000px;}
.h6c{height:14.580000px;}
.h6d{height:14.760000px;}
.h6b{height:16.020000px;}
.h37{height:16.740000px;}
.h13{height:16.920000px;}
.h4a{height:17.100000px;}
.h64{height:17.460000px;}
.h66{height:17.640000px;}
.h50{height:17.820000px;}
.h14{height:18.720000px;}
.h18{height:18.900000px;}
.h62{height:19.260000px;}
.hf{height:19.605000px;}
.h6e{height:20.340000px;}
.h69{height:22.860000px;}
.h46{height:23.760000px;}
.h32{height:24.120000px;}
.h43{height:28.980000px;}
.h54{height:29.880000px;}
.h5f{height:30.060000px;}
.h2f{height:30.240000px;}
.h24{height:30.600000px;}
.h26{height:30.780000px;}
.h23{height:30.960000px;}
.h3b{height:32.040000px;}
.h5c{height:33.681000px;}
.hd{height:34.200000px;}
.h44{height:34.380000px;}
.h58{height:34.905000px;}
.h5b{height:35.265000px;}
.h42{height:35.640000px;}
.h5d{height:35.805000px;}
.h4e{height:36.000000px;}
.h41{height:37.080000px;}
.h59{height:37.245000px;}
.h16{height:37.440000px;}
.h17{height:37.476000px;}
.h57{height:37.605000px;}
.h15{height:37.620000px;}
.h1d{height:38.340000px;}
.h1e{height:38.520000px;}
.h3a{height:39.240000px;}
.h53{height:41.580000px;}
.h30{height:41.940000px;}
.h51{height:42.120000px;}
.h4d{height:42.480000px;}
.h25{height:43.020000px;}
.h28{height:43.200000px;}
.h27{height:43.236000px;}
.h20{height:43.380000px;}
.h7{height:45.199336px;}
.h8{height:45.228516px;}
.h47{height:46.260000px;}
.h4c{height:46.440000px;}
.h55{height:47.700000px;}
.h5a{height:48.405000px;}
.hb{height:50.100469px;}
.h12{height:50.132812px;}
.h10{height:51.105000px;}
.hc{height:51.120000px;}
.h5e{height:52.545000px;}
.h38{height:53.280000px;}
.h2e{height:53.856000px;}
.h2d{height:54.000000px;}
.h56{height:54.030000px;}
.h2c{height:54.180000px;}
.h3e{height:54.360000px;}
.h9{height:54.457031px;}
.h2{height:54.492188px;}
.h45{height:54.540000px;}
.h61{height:54.576000px;}
.h22{height:55.656000px;}
.h19{height:56.145000px;}
.h11{height:56.152500px;}
.h1c{height:56.160000px;}
.h1b{height:56.182500px;}
.h1f{height:56.190000px;}
.h1a{height:56.325000px;}
.h49{height:58.621992px;}
.h4{height:58.651172px;}
.h65{height:59.439023px;}
.h4f{height:59.760000px;}
.h33{height:60.226875px;}
.h68{height:61.189805px;}
.ha{height:61.536445px;}
.h60{height:62.820000px;}
.h31{height:63.180000px;}
.h3{height:63.755859px;}
.h21{height:64.260000px;}
.h63{height:65.884219px;}
.h39{height:70.380000px;}
.h6{height:70.664062px;}
.h34{height:75.420000px;}
.he{height:79.401000px;}
.h67{height:81.360000px;}
.h1{height:81.685547px;}
.h6f{height:83.325000px;}
.h2a{height:85.896000px;}
.h2b{height:86.580000px;}
.h5{height:96.508125px;}
.h3d{height:99.900000px;}
.h29{height:100.080000px;}
.h72{height:215.302500px;}
.h71{height:249.150000px;}
.h70{height:270.210000px;}
.h6a{height:296.520000px;}
.h0{height:1188.000000px;}
.w46{width:4.860000px;}
.w34{width:5.400000px;}
.w43{width:6.480000px;}
.w40{width:8.820000px;}
.w48{width:9.900000px;}
.w36{width:11.160000px;}
.w47{width:14.220000px;}
.w35{width:15.840000px;}
.w38{width:16.020000px;}
.w49{width:19.800000px;}
.w4e{width:19.980000px;}
.w3b{width:22.320000px;}
.w37{width:22.500000px;}
.w3d{width:22.680000px;}
.w2d{width:26.280000px;}
.w2c{width:26.460000px;}
.w2b{width:26.640000px;}
.w8{width:32.209500px;}
.w1f{width:32.760000px;}
.w25{width:39.060000px;}
.wd{width:39.240000px;}
.w12{width:39.405000px;}
.w23{width:39.600000px;}
.wb{width:39.780000px;}
.w13{width:39.801000px;}
.w41{width:39.949500px;}
.w3a{width:43.920000px;}
.w27{width:45.540000px;}
.w28{width:45.756000px;}
.w29{width:45.900000px;}
.w14{width:46.065000px;}
.w10{width:46.245000px;}
.w9{width:46.249500px;}
.we{width:46.296000px;}
.w26{width:46.656000px;}
.w2e{width:47.869500px;}
.w24{width:48.780000px;}
.w56{width:52.200000px;}
.w22{width:52.380000px;}
.wf{width:52.905000px;}
.w11{width:53.085000px;}
.w18{width:55.800000px;}
.w20{width:59.400000px;}
.w16{width:59.569500px;}
.wc{width:59.940000px;}
.w2{width:60.480000px;}
.w39{width:65.340000px;}
.w1{width:65.880000px;}
.w54{width:72.360000px;}
.w3c{width:72.540000px;}
.w53{width:77.040000px;}
.w4c{width:77.940000px;}
.w19{width:80.640000px;}
.w4{width:86.616000px;}
.w52{width:93.240000px;}
.w6{width:94.896000px;}
.w55{width:95.760000px;}
.w1b{width:96.516000px;}
.w51{width:102.060000px;}
.w1c{width:104.760000px;}
.w59{width:105.861000px;}
.w57{width:107.100000px;}
.w21{width:110.736000px;}
.w4d{width:111.240000px;}
.w30{width:117.201000px;}
.w1d{width:120.636000px;}
.w5{width:120.960000px;}
.w45{width:124.221000px;}
.w31{width:124.596000px;}
.w33{width:130.881000px;}
.w17{width:134.481000px;}
.w50{width:135.000000px;}
.w4b{width:135.180000px;}
.w5c{width:135.741000px;}
.w32{width:138.225000px;}
.w2f{width:138.405000px;}
.w4a{width:140.580000px;}
.w4f{width:140.760000px;}
.w58{width:141.514500px;}
.wa{width:147.801000px;}
.w5a{width:148.680000px;}
.w5b{width:155.730000px;}
.w2a{width:204.690000px;}
.w44{width:226.830000px;}
.w15{width:227.719500px;}
.w1a{width:242.490000px;}
.w42{width:258.139500px;}
.w3{width:259.950000px;}
.w1e{width:380.370000px;}
.w7{width:387.750000px;}
.w3f{width:419.400000px;}
.w3e{width:677.520000px;}
.w0{width:918.000000px;}
.x70{left:-8.280000px;}
.xd{left:-1.800000px;}
.x0{left:0.000000px;}
.x29{left:1.440000px;}
.xe{left:2.880000px;}
.x12{left:4.500000px;}
.x26{left:6.480000px;}
.x2d{left:7.549500px;}
.xf{left:8.640000px;}
.x35{left:9.720000px;}
.x16{left:10.800000px;}
.x27{left:12.045000px;}
.x2b{left:13.665000px;}
.x33{left:15.480000px;}
.x28{left:17.089500px;}
.x14{left:19.800000px;}
.x46{left:21.060000px;}
.x17{left:27.529500px;}
.x71{left:28.620000px;}
.x3b{left:34.740000px;}
.x47{left:37.074000px;}
.x20{left:39.585000px;}
.x19{left:42.283500px;}
.x40{left:46.650000px;}
.x38{left:48.594000px;}
.x34{left:50.760000px;}
.x6b{left:58.843500px;}
.x2c{left:87.114000px;}
.x80{left:92.161500px;}
.x6f{left:103.170000px;}
.x6{left:106.956000px;}
.x1{left:108.036000px;}
.xb{left:112.716000px;}
.x36{left:114.876000px;}
.x76{left:117.720000px;}
.x75{left:125.100000px;}
.x18{left:140.626500px;}
.x4{left:143.676000px;}
.x6a{left:147.466500px;}
.x37{left:148.536000px;}
.x48{left:149.760000px;}
.x77{left:150.840000px;}
.x78{left:152.820000px;}
.x59{left:155.925000px;}
.x84{left:162.030000px;}
.x2e{left:164.550000px;}
.x5{left:169.950000px;}
.x49{left:171.000000px;}
.x79{left:174.420000px;}
.xc{left:179.310000px;}
.x1a{left:187.605000px;}
.x60{left:193.860000px;}
.x2a{left:200.925000px;}
.x5f{left:202.500000px;}
.x39{left:208.830000px;}
.x5e{left:210.780000px;}
.x8{left:215.670000px;}
.x6c{left:232.228500px;}
.x81{left:234.045000px;}
.x10{left:240.510000px;}
.x2f{left:245.910000px;}
.x5a{left:295.065000px;}
.x68{left:296.100000px;}
.x67{left:302.940000px;}
.x3a{left:320.295000px;}
.x4a{left:327.960000px;}
.x61{left:331.200000px;}
.x1b{left:336.135000px;}
.x82{left:340.275000px;}
.x64{left:341.280000px;}
.x63{left:358.200000px;}
.x3c{left:373.395000px;}
.x1c{left:376.635000px;}
.x4b{left:381.060000px;}
.x73{left:400.500000px;}
.x6d{left:406.515000px;}
.x3d{left:413.715000px;}
.x58{left:415.080000px;}
.x4c{left:421.740000px;}
.x7b{left:425.520000px;}
.x7a{left:433.080000px;}
.x1d{left:437.295000px;}
.x7c{left:454.140000px;}
.x7d{left:456.300000px;}
.x3{left:459.075000px;}
.x6e{left:461.775000px;}
.x3e{left:463.215000px;}
.x4d{left:470.880000px;}
.x1e{left:477.435000px;}
.x55{left:481.035000px;}
.x30{left:489.315000px;}
.x7f{left:491.040000px;}
.x11{left:501.375000px;}
.x3f{left:502.995000px;}
.x4e{left:504.540000px;}
.x56{left:509.940000px;}
.x4f{left:522.540000px;}
.x1f{left:524.460000px;}
.x5b{left:538.500000px;}
.x41{left:550.545000px;}
.x50{left:558.000000px;}
.x62{left:567.900000px;}
.x65{left:576.360000px;}
.x21{left:578.100000px;}
.x31{left:586.545000px;}
.x13{left:588.705000px;}
.x42{left:590.505000px;}
.x66{left:593.100000px;}
.x51{left:597.960000px;}
.x69{left:618.300000px;}
.x22{left:625.080000px;}
.x43{left:631.005000px;}
.x52{left:638.640000px;}
.x83{left:645.420000px;}
.x44{left:670.785000px;}
.x57{left:677.700000px;}
.x23{left:678.900000px;}
.x72{left:688.620000px;}
.x32{left:692.205000px;}
.x7e{left:707.580000px;}
.x15{left:710.565000px;}
.x45{left:717.045000px;}
.x24{left:719.040000px;}
.x53{left:725.040000px;}
.x25{left:759.570000px;}
.xa{left:762.810000px;}
.x54{left:771.120000px;}
.x2{left:787.650000px;}
.x74{left:799.200000px;}
.x7{left:810.150000px;}
.x5d{left:813.060000px;}
.x9{left:821.310000px;}
.x5c{left:886.650000px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v3{vertical-align:-40.320000pt;}
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.299733pt;}
.ls14{letter-spacing:-0.274133pt;}
.ls35{letter-spacing:-0.262400pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.253867pt;}
.ls6{letter-spacing:-0.251733pt;}
.ls26{letter-spacing:-0.241067pt;}
.ls2d{letter-spacing:-0.236267pt;}
.ls2b{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.204267pt;}
.ls1a{letter-spacing:-0.170133pt;}
.ls10{letter-spacing:-0.109867pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.061867pt;}
.ls8{letter-spacing:-0.052480pt;}
.ls31{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.046080pt;}
.ls9{letter-spacing:-0.001920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.014080pt;}
.lsd{letter-spacing:0.024320pt;}
.ls22{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.059307pt;}
.ls13{letter-spacing:0.067200pt;}
.ls1c{letter-spacing:0.073387pt;}
.ls21{letter-spacing:0.094720pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.112533pt;}
.ls12{letter-spacing:0.117867pt;}
.ls2e{letter-spacing:0.133120pt;}
.ls34{letter-spacing:0.133333pt;}
.ls1d{letter-spacing:0.138667pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.160640pt;}
.lsf{letter-spacing:0.161067pt;}
.ls2c{letter-spacing:0.183467pt;}
.ls33{letter-spacing:0.195733pt;}
.lse{letter-spacing:0.198400pt;}
.ls17{letter-spacing:0.213867pt;}
.ls28{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.231040pt;}
.ls39{letter-spacing:0.254933pt;}
.ls25{letter-spacing:0.266667pt;}
.ls29{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.377600pt;}
.ls1f{letter-spacing:0.379307pt;}
.ls2a{letter-spacing:0.414933pt;}
.ls2f{letter-spacing:0.419200pt;}
.ls20{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.587520pt;}
.lsc{letter-spacing:0.638080pt;}
.lsb{letter-spacing:0.744747pt;}
.ls38{letter-spacing:0.757333pt;}
.ls36{letter-spacing:0.837333pt;}
.ls1{letter-spacing:22.347520pt;}
.ws4{word-spacing:-15.424000pt;}
.ws2{word-spacing:-15.360000pt;}
.ws1{word-spacing:-15.168000pt;}
.wsd{word-spacing:-14.144000pt;}
.wsa{word-spacing:-13.915947pt;}
.ws15{word-spacing:-13.694933pt;}
.ws1a{word-spacing:-13.639253pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.559253pt;}
.ws13{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.492480pt;}
.ws16{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.185067pt;}
.ws1e{word-spacing:-13.056853pt;}
.wsb{word-spacing:-13.000320pt;}
.ws9{word-spacing:-12.962987pt;}
.wsf{word-spacing:-12.919787pt;}
.ws1c{word-spacing:-12.914453pt;}
.ws1b{word-spacing:-12.816000pt;}
.ws8{word-spacing:-12.801920pt;}
.wse{word-spacing:-12.631787pt;}
.ws6{word-spacing:-12.597653pt;}
.ws5{word-spacing:-12.550187pt;}
.wsc{word-spacing:-12.548053pt;}
.ws17{word-spacing:-12.005120pt;}
.ws18{word-spacing:-11.953280pt;}
.ws19{word-spacing:-11.943253pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.098667pt;}
._4{width:2.102827pt;}
._5{width:3.013973pt;}
._8{width:4.023467pt;}
._9{width:5.152640pt;}
._7{width:6.055680pt;}
._6{width:6.958720pt;}
._c{width:8.198613pt;}
._10{width:9.138773pt;}
._12{width:10.253227pt;}
._f{width:11.264000pt;}
._14{width:12.736000pt;}
._3{width:13.927467pt;}
._23{width:14.860373pt;}
._16{width:16.320000pt;}
._17{width:17.322667pt;}
._e{width:18.368000pt;}
._1b{width:19.306667pt;}
._11{width:20.605013pt;}
._a{width:21.726080pt;}
._b{width:23.229013pt;}
._13{width:24.832000pt;}
._15{width:26.442667pt;}
._d{width:28.096000pt;}
._18{width:29.504000pt;}
._1e{width:31.232000pt;}
._21{width:32.757333pt;}
._19{width:33.664000pt;}
._1a{width:34.677333pt;}
._1d{width:36.928000pt;}
._1c{width:37.952000pt;}
._3e{width:39.043200pt;}
._43{width:40.264960pt;}
._29{width:41.486507pt;}
._37{width:43.135787pt;}
._22{width:44.672000pt;}
._1f{width:45.824000pt;}
._20{width:47.285333pt;}
._28{width:48.504320pt;}
._24{width:49.472000pt;}
._36{width:52.482560pt;}
._3b{width:56.041600pt;}
._34{width:58.856960pt;}
._2e{width:61.884800pt;}
._39{width:63.584640pt;}
._2f{width:64.753280pt;}
._35{width:65.762560pt;}
._2d{width:67.196160pt;}
._2a{width:73.600000pt;}
._26{width:74.895360pt;}
._30{width:76.439680pt;}
._2c{width:80.636160pt;}
._33{width:85.257600pt;}
._31{width:87.063680pt;}
._2b{width:115.942827pt;}
._32{width:121.804160pt;}
._25{width:127.462827pt;}
._3c{width:153.835520pt;}
._3a{width:163.556480pt;}
._38{width:175.189760pt;}
._27{width:190.236160pt;}
._41{width:197.712640pt;}
._3d{width:244.723840pt;}
._40{width:253.541760pt;}
._3f{width:276.064640pt;}
._42{width:301.774720pt;}
._2{width:366.922667pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y177{bottom:-6.946667pt;}
.y19f{bottom:-6.813333pt;}
.y164{bottom:-6.786667pt;}
.y183{bottom:-6.466667pt;}
.y166{bottom:-6.146667pt;}
.y1a4{bottom:-5.373333pt;}
.y1ba{bottom:-5.053333pt;}
.y181{bottom:-1.826667pt;}
.y19a{bottom:-1.053333pt;}
.yc7{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:0.160000pt;}
.y244{bottom:0.253333pt;}
.y249{bottom:0.293333pt;}
.y247{bottom:0.413333pt;}
.y24c{bottom:0.453333pt;}
.y242{bottom:2.173333pt;}
.y201{bottom:2.786667pt;}
.y168{bottom:2.813333pt;}
.y253{bottom:2.853333pt;}
.y205{bottom:2.946667pt;}
.y207{bottom:2.973333pt;}
.yd2{bottom:3.026667pt;}
.yda{bottom:3.040000pt;}
.y1a1{bottom:3.133333pt;}
.yd8{bottom:3.193333pt;}
.yaf{bottom:3.200000pt;}
.y227{bottom:3.226667pt;}
.ye9{bottom:3.360000pt;}
.y255{bottom:3.613333pt;}
.y1b6{bottom:3.746667pt;}
.yf8{bottom:4.000000pt;}
.yfc{bottom:4.160000pt;}
.ydc{bottom:4.640000pt;}
.ye8{bottom:4.800000pt;}
.y135{bottom:4.960000pt;}
.y1ff{bottom:5.026667pt;}
.y263{bottom:5.346667pt;}
.yce{bottom:5.426667pt;}
.y1d7{bottom:5.760000pt;}
.y216{bottom:6.813333pt;}
.y218{bottom:7.933333pt;}
.y194{bottom:8.733333pt;}
.y1ad{bottom:9.186667pt;}
.y15e{bottom:9.373333pt;}
.y19d{bottom:9.666667pt;}
.y158{bottom:10.240000pt;}
.y12d{bottom:11.200000pt;}
.y11b{bottom:11.360000pt;}
.y197{bottom:12.093333pt;}
.y1a8{bottom:12.546667pt;}
.y18d{bottom:13.373333pt;}
.y1f0{bottom:13.440000pt;}
.y1cb{bottom:13.826667pt;}
.y15c{bottom:13.920000pt;}
.y237{bottom:13.946667pt;}
.y1c5{bottom:14.466667pt;}
.y11f{bottom:14.720000pt;}
.y155{bottom:14.880000pt;}
.y125{bottom:15.200000pt;}
.y12a{bottom:15.360000pt;}
.y123{bottom:15.520000pt;}
.yc1{bottom:15.666667pt;}
.y175{bottom:15.933333pt;}
.y1df{bottom:16.000000pt;}
.y268{bottom:16.640000pt;}
.yc8{bottom:17.586667pt;}
.y1e3{bottom:17.906667pt;}
.y16b{bottom:18.013333pt;}
.yd1{bottom:18.226667pt;}
.yae{bottom:18.240000pt;}
.y226{bottom:18.266667pt;}
.yb1{bottom:18.400000pt;}
.y189{bottom:18.973333pt;}
.y1da{bottom:19.040000pt;}
.y22c{bottom:19.066667pt;}
.y17f{bottom:19.133333pt;}
.y1e1{bottom:19.360000pt;}
.y1b0{bottom:19.426667pt;}
.y191{bottom:19.453333pt;}
.yc4{bottom:19.506667pt;}
.y1c7{bottom:19.586667pt;}
.y1e5{bottom:19.826667pt;}
.yd7{bottom:19.833333pt;}
.ye3{bottom:19.840000pt;}
.ye0{bottom:20.000000pt;}
.y9{bottom:20.192000pt;}
.y186{bottom:20.253333pt;}
.yf7{bottom:20.640000pt;}
.yfb{bottom:20.800000pt;}
.y14f{bottom:20.960000pt;}
.y1dc{bottom:21.120000pt;}
.ye2{bottom:21.280000pt;}
.y1f2{bottom:21.320000pt;}
.ydf{bottom:21.440000pt;}
.y162{bottom:21.533333pt;}
.yf6{bottom:22.080000pt;}
.yfa{bottom:22.240000pt;}
.y172{bottom:22.333333pt;}
.y14a{bottom:24.000000pt;}
.y1b3{bottom:24.226667pt;}
.y1be{bottom:24.386667pt;}
.y215{bottom:24.413333pt;}
.y1b8{bottom:25.026667pt;}
.y157{bottom:25.280000pt;}
.y1ac{bottom:25.693333pt;}
.y136{bottom:25.920000pt;}
.y19c{bottom:26.173333pt;}
.y127{bottom:26.240000pt;}
.y130{bottom:26.400000pt;}
.y12c{bottom:26.426667pt;}
.y11a{bottom:26.560000pt;}
.y149{bottom:27.040000pt;}
.y1ef{bottom:28.640000pt;}
.y196{bottom:28.733333pt;}
.y236{bottom:28.986667pt;}
.y15b{bottom:29.120000pt;}
.y1a7{bottom:29.213333pt;}
.y11e{bottom:29.920000pt;}
.yca{bottom:30.066667pt;}
.y1ca{bottom:30.306667pt;}
.y1de{bottom:31.040000pt;}
.y267{bottom:31.840000pt;}
.yd0{bottom:33.426667pt;}
.yad{bottom:33.434667pt;}
.y225{bottom:33.466667pt;}
.y16f{bottom:33.533333pt;}
.y14c{bottom:34.080000pt;}
.y22b{bottom:34.266667pt;}
.yc0{bottom:34.586667pt;}
.y1e7{bottom:34.706667pt;}
.y148{bottom:34.720000pt;}
.y16a{bottom:34.973333pt;}
.y139{bottom:35.040000pt;}
.y143{bottom:35.360000pt;}
.ycc{bottom:35.546667pt;}
.y8{bottom:35.552000pt;}
.y153{bottom:35.840000pt;}
.y17e{bottom:35.933333pt;}
.y151{bottom:36.000000pt;}
.y190{bottom:36.093333pt;}
.y14e{bottom:36.160000pt;}
.yd6{bottom:36.468000pt;}
.yed{bottom:36.480000pt;}
.yf3{bottom:36.520000pt;}
.yf0{bottom:36.640000pt;}
.y121{bottom:37.440000pt;}
.yd5{bottom:37.908000pt;}
.yec{bottom:37.920000pt;}
.y100{bottom:37.946667pt;}
.yf2{bottom:37.960000pt;}
.yef{bottom:38.080000pt;}
.y161{bottom:38.173333pt;}
.y144{bottom:38.880000pt;}
.y13d{bottom:40.000000pt;}
.yd3{bottom:40.146667pt;}
.yc5{bottom:40.346667pt;}
.y1b2{bottom:41.026667pt;}
.y214{bottom:42.013333pt;}
.y17b{bottom:42.973333pt;}
.y28a{bottom:43.028000pt;}
.yc3{bottom:43.386667pt;}
.yc9{bottom:43.546667pt;}
.y1ee{bottom:43.840000pt;}
.y15a{bottom:44.160000pt;}
.y235{bottom:44.186667pt;}
.y14b{bottom:44.960000pt;}
.y11d{bottom:45.120000pt;}
.yc6{bottom:45.146667pt;}
.y13b{bottom:46.080000pt;}
.y266{bottom:47.040000pt;}
.y13f{bottom:48.000000pt;}
.y224{bottom:48.666667pt;}
.y22a{bottom:49.306667pt;}
.y147{bottom:49.760000pt;}
.y16e{bottom:50.173333pt;}
.ycb{bottom:50.586667pt;}
.y13a{bottom:52.000000pt;}
.y137{bottom:53.760000pt;}
.y160{bottom:54.653333pt;}
.y27f{bottom:57.920000pt;}
.y289{bottom:58.068000pt;}
.yc2{bottom:58.586667pt;}
.y13c{bottom:59.040000pt;}
.y213{bottom:59.613333pt;}
.y17a{bottom:59.773333pt;}
.y138{bottom:60.640000pt;}
.y229{bottom:61.466667pt;}
.y134{bottom:61.760000pt;}
.y265{bottom:62.080000pt;}
.y223{bottom:63.706667pt;}
.y141{bottom:64.346667pt;}
.y146{bottom:64.960000pt;}
.y13e{bottom:68.000000pt;}
.y8e{bottom:69.632000pt;}
.y34{bottom:69.952000pt;}
.yb0{bottom:70.752000pt;}
.y27e{bottom:73.120000pt;}
.y288{bottom:73.268000pt;}
.y118{bottom:73.312000pt;}
.y5e{bottom:73.952000pt;}
.y1eb{bottom:74.592000pt;}
.y179{bottom:76.413333pt;}
.y240{bottom:76.672000pt;}
.y133{bottom:76.960000pt;}
.y222{bottom:78.906667pt;}
.y60{bottom:79.552000pt;}
.y114{bottom:80.512000pt;}
.y233{bottom:81.946667pt;}
.y159{bottom:83.072000pt;}
.y117{bottom:87.872000pt;}
.y33{bottom:88.032000pt;}
.y27d{bottom:88.320000pt;}
.y287{bottom:88.468000pt;}
.y70{bottom:91.552000pt;}
.y273{bottom:91.840000pt;}
.y5d{bottom:92.192000pt;}
.y23f{bottom:92.352000pt;}
.y1ea{bottom:92.672000pt;}
.y221{bottom:94.106667pt;}
.y5f{bottom:94.752000pt;}
.y232{bottom:97.146667pt;}
.y113{bottom:97.152000pt;}
.yd4{bottom:101.318667pt;}
.yac{bottom:102.112000pt;}
.y280{bottom:102.278667pt;}
.y27c{bottom:103.360000pt;}
.y286{bottom:103.508000pt;}
.y32{bottom:106.272000pt;}
.y272{bottom:107.040000pt;}
.y6f{bottom:109.632000pt;}
.y2a2{bottom:109.792000pt;}
.y5c{bottom:110.272000pt;}
.y23e{bottom:110.432000pt;}
.y1e9{bottom:110.912000pt;}
.y231{bottom:112.186667pt;}
.y112{bottom:113.792000pt;}
.y27b{bottom:118.560000pt;}
.y285{bottom:118.708000pt;}
.y271{bottom:122.080000pt;}
.y31{bottom:124.512000pt;}
.y2a1{bottom:124.992000pt;}
.y230{bottom:127.386667pt;}
.y6e{bottom:127.872000pt;}
.y5b{bottom:128.512000pt;}
.y23d{bottom:128.672000pt;}
.y1e8{bottom:128.992000pt;}
.y111{bottom:130.592000pt;}
.y27a{bottom:133.760000pt;}
.y284{bottom:133.908000pt;}
.y270{bottom:137.280000pt;}
.y2a0{bottom:140.186667pt;}
.y156{bottom:140.666667pt;}
.y30{bottom:142.586667pt;}
.y1e6{bottom:144.680000pt;}
.y6d{bottom:145.946667pt;}
.y5a{bottom:146.586667pt;}
.y23c{bottom:146.746667pt;}
.y110{bottom:147.226667pt;}
.y279{bottom:148.800000pt;}
.y283{bottom:148.988000pt;}
.ycf{bottom:152.040000pt;}
.y26f{bottom:152.480000pt;}
.y29f{bottom:155.226667pt;}
.y22f{bottom:157.626667pt;}
.y2f{bottom:160.826667pt;}
.y10f{bottom:163.866667pt;}
.y278{bottom:164.000000pt;}
.y6c{bottom:164.186667pt;}
.y282{bottom:164.188000pt;}
.y59{bottom:164.826667pt;}
.y23b{bottom:164.986667pt;}
.y26e{bottom:167.520000pt;}
.y29e{bottom:170.426667pt;}
.y22e{bottom:172.826667pt;}
.y2e{bottom:178.906667pt;}
.y277{bottom:179.200000pt;}
.y154{bottom:179.386667pt;}
.y281{bottom:179.388000pt;}
.y10e{bottom:180.506667pt;}
.y6b{bottom:182.426667pt;}
.y26d{bottom:182.720000pt;}
.y58{bottom:183.066667pt;}
.y23a{bottom:183.226667pt;}
.y29d{bottom:185.626667pt;}
.yab{bottom:187.546667pt;}
.y1e4{bottom:193.000000pt;}
.y276{bottom:194.266667pt;}
.y2d{bottom:197.146667pt;}
.y26c{bottom:197.960000pt;}
.ycd{bottom:198.120000pt;}
.y6a{bottom:200.506667pt;}
.y29c{bottom:200.666667pt;}
.y57{bottom:201.146667pt;}
.y239{bottom:201.306667pt;}
.yaa{bottom:205.786667pt;}
.y152{bottom:207.706667pt;}
.y275{bottom:209.466667pt;}
.y26b{bottom:213.000000pt;}
.y10d{bottom:213.786667pt;}
.y2c{bottom:215.386667pt;}
.y29b{bottom:215.866667pt;}
.ybf{bottom:216.200000pt;}
.y69{bottom:218.746667pt;}
.y56{bottom:219.386667pt;}
.y238{bottom:219.546667pt;}
.ya9{bottom:223.866667pt;}
.y1e2{bottom:226.440000pt;}
.y26a{bottom:228.200000pt;}
.y10c{bottom:230.586667pt;}
.y29a{bottom:231.066667pt;}
.y2b{bottom:233.466667pt;}
.y228{bottom:235.733333pt;}
.y68{bottom:236.826667pt;}
.y55{bottom:237.626667pt;}
.y1fd{bottom:240.346667pt;}
.y234{bottom:240.853333pt;}
.ya8{bottom:242.106667pt;}
.y299{bottom:246.106667pt;}
.y10b{bottom:247.226667pt;}
.y220{bottom:247.720000pt;}
.y22d{bottom:251.573333pt;}
.y2a{bottom:251.746667pt;}
.y67{bottom:255.106667pt;}
.y54{bottom:255.746667pt;}
.y150{bottom:257.026667pt;}
.y1fc{bottom:257.346667pt;}
.y1e0{bottom:257.986667pt;}
.ya7{bottom:260.386667pt;}
.y298{bottom:261.346667pt;}
.y10a{bottom:263.906667pt;}
.y29{bottom:269.826667pt;}
.y66{bottom:273.346667pt;}
.y53{bottom:273.986667pt;}
.y1fb{bottom:275.586667pt;}
.y297{bottom:276.546667pt;}
.ya6{bottom:278.466667pt;}
.y109{bottom:280.866667pt;}
.y28{bottom:288.066667pt;}
.ybe{bottom:290.626667pt;}
.y1dd{bottom:290.946667pt;}
.y65{bottom:291.426667pt;}
.y296{bottom:291.586667pt;}
.y52{bottom:292.066667pt;}
.ya5{bottom:293.186667pt;}
.y1fa{bottom:293.666667pt;}
.y274{bottom:294.786667pt;}
.y108{bottom:299.106667pt;}
.ybd{bottom:306.146667pt;}
.y27{bottom:306.306667pt;}
.y14d{bottom:306.466667pt;}
.y262{bottom:306.560000pt;}
.y295{bottom:306.786667pt;}
.y64{bottom:309.666667pt;}
.y51{bottom:310.306667pt;}
.y1f9{bottom:311.906667pt;}
.y8d{bottom:313.026667pt;}
.y107{bottom:317.346667pt;}
.y294{bottom:321.986667pt;}
.y63{bottom:324.226667pt;}
.y26{bottom:324.386667pt;}
.y116{bottom:328.226667pt;}
.y50{bottom:328.546667pt;}
.y8c{bottom:329.506667pt;}
.y1f8{bottom:330.146667pt;}
.y106{bottom:335.426667pt;}
.y1db{bottom:335.586667pt;}
.y293{bottom:337.186667pt;}
.y25{bottom:342.626667pt;}
.y131{bottom:343.426667pt;}
.y8b{bottom:344.706667pt;}
.y4f{bottom:346.626667pt;}
.y1f7{bottom:348.226667pt;}
.y292{bottom:352.226667pt;}
.y105{bottom:353.666667pt;}
.y145{bottom:356.066667pt;}
.y1af{bottom:356.160000pt;}
.y8a{bottom:359.906667pt;}
.y1c4{bottom:360.320000pt;}
.ybc{bottom:360.706667pt;}
.y24{bottom:360.866667pt;}
.y1f6{bottom:362.786667pt;}
.y1fe{bottom:363.680000pt;}
.y4e{bottom:364.866667pt;}
.y291{bottom:367.426667pt;}
.y1d9{bottom:370.306667pt;}
.y104{bottom:371.906667pt;}
.y89{bottom:374.946667pt;}
.y23{bottom:378.946667pt;}
.y211{bottom:379.680000pt;}
.y210{bottom:380.000000pt;}
.y1c3{bottom:380.160000pt;}
.y1b1{bottom:380.480000pt;}
.y290{bottom:382.626667pt;}
.y1b5{bottom:382.720000pt;}
.y4d{bottom:383.106667pt;}
.y1c0{bottom:383.200000pt;}
.y1bc{bottom:387.520000pt;}
.y103{bottom:389.986667pt;}
.y88{bottom:390.146667pt;}
.y1c9{bottom:390.240000pt;}
.y1b7{bottom:394.880000pt;}
.y1c1{bottom:395.360000pt;}
.y1bd{bottom:395.840000pt;}
.y22{bottom:396.706667pt;}
.ybb{bottom:397.186667pt;}
.y20f{bottom:397.600000pt;}
.y28f{bottom:397.666667pt;}
.y20e{bottom:397.920000pt;}
.y12f{bottom:400.226667pt;}
.y1c6{bottom:401.120000pt;}
.y4c{bottom:401.186667pt;}
.y1d8{bottom:402.946667pt;}
.y87{bottom:405.346667pt;}
.y102{bottom:408.226667pt;}
.y21{bottom:411.906667pt;}
.y28e{bottom:412.866667pt;}
.y20d{bottom:412.960000pt;}
.yba{bottom:415.266667pt;}
.y4b{bottom:419.426667pt;}
.y1b4{bottom:420.160000pt;}
.y86{bottom:420.386667pt;}
.y1cc{bottom:422.240000pt;}
.y1b9{bottom:423.040000pt;}
.y1c2{bottom:423.200000pt;}
.y1bf{bottom:423.360000pt;}
.y200{bottom:423.680000pt;}
.y1c8{bottom:425.120000pt;}
.y101{bottom:426.306667pt;}
.y20{bottom:426.946667pt;}
.y28d{bottom:428.066667pt;}
.y1bb{bottom:428.160000pt;}
.yb9{bottom:433.506667pt;}
.y140{bottom:434.466667pt;}
.y1a3{bottom:434.560000pt;}
.y85{bottom:435.586667pt;}
.y4a{bottom:437.506667pt;}
.y1d6{bottom:438.306667pt;}
.y12e{bottom:439.586667pt;}
.y1a5{bottom:439.680000pt;}
.y202{bottom:440.640000pt;}
.yff{bottom:441.666667pt;}
.y1f{bottom:442.146667pt;}
.y28c{bottom:443.106667pt;}
.ya4{bottom:444.706667pt;}
.y84{bottom:450.786667pt;}
.yb8{bottom:451.586667pt;}
.y49{bottom:455.746667pt;}
.y199{bottom:456.000000pt;}
.y1e{bottom:457.346667pt;}
.y203{bottom:457.600000pt;}
.y28b{bottom:458.306667pt;}
.ya3{bottom:461.826667pt;}
.y19b{bottom:464.320000pt;}
.y83{bottom:465.826667pt;}
.y12b{bottom:467.906667pt;}
.yb7{bottom:469.826667pt;}
.y1a6{bottom:469.920000pt;}
.y1d{bottom:472.386667pt;}
.y1ab{bottom:473.440000pt;}
.y48{bottom:473.986667pt;}
.y204{bottom:474.400000pt;}
.ya2{bottom:480.093333pt;}
.y82{bottom:481.053333pt;}
.y1a9{bottom:482.466667pt;}
.y212{bottom:483.680000pt;}
.y2b6{bottom:486.013333pt;}
.y1c{bottom:487.613333pt;}
.yb6{bottom:488.093333pt;}
.y206{bottom:491.360000pt;}
.y1d5{bottom:491.453333pt;}
.y47{bottom:492.093333pt;}
.yfe{bottom:492.253333pt;}
.y19e{bottom:493.120000pt;}
.y1a0{bottom:494.720000pt;}
.y81{bottom:496.253333pt;}
.ya1{bottom:498.173333pt;}
.y1aa{bottom:500.960000pt;}
.y1ae{bottom:501.920000pt;}
.y1b{bottom:502.813333pt;}
.y2b5{bottom:503.773333pt;}
.y1a2{bottom:505.920000pt;}
.yb5{bottom:506.173333pt;}
.y129{bottom:507.453333pt;}
.y1d4{bottom:508.093333pt;}
.y208{bottom:508.320000pt;}
.y46{bottom:510.333333pt;}
.y80{bottom:511.293333pt;}
.y132{bottom:512.253333pt;}
.y178{bottom:512.800000pt;}
.y21f{bottom:515.613333pt;}
.ya0{bottom:516.413333pt;}
.y269{bottom:517.373333pt;}
.y15d{bottom:517.440000pt;}
.y1a{bottom:517.853333pt;}
.y2b4{bottom:518.973333pt;}
.y165{bottom:522.560000pt;}
.yb4{bottom:524.413333pt;}
.y1d3{bottom:525.213333pt;}
.y209{bottom:525.280000pt;}
.y7f{bottom:526.493333pt;}
.yfd{bottom:526.973333pt;}
.y167{bottom:527.200000pt;}
.y45{bottom:528.573333pt;}
.y21e{bottom:532.733333pt;}
.y19{bottom:533.053333pt;}
.y15f{bottom:533.760000pt;}
.y2b3{bottom:534.013333pt;}
.y9f{bottom:534.493333pt;}
.y128{bottom:535.773333pt;}
.y16d{bottom:538.240000pt;}
.y169{bottom:538.400000pt;}
.y7e{bottom:541.693333pt;}
.y20a{bottom:542.240000pt;}
.yb3{bottom:542.653333pt;}
.y1d2{bottom:543.453333pt;}
.y44{bottom:546.653333pt;}
.y17d{bottom:547.360000pt;}
.y18{bottom:548.253333pt;}
.y2b2{bottom:549.213333pt;}
.y21d{bottom:550.813333pt;}
.y9e{bottom:552.733333pt;}
.y18f{bottom:552.800000pt;}
.y185{bottom:553.440000pt;}
.y7d{bottom:556.733333pt;}
.y18b{bottom:558.720000pt;}
.y20b{bottom:559.200000pt;}
.y195{bottom:560.320000pt;}
.yb2{bottom:560.733333pt;}
.y1d1{bottom:561.533333pt;}
.yf9{bottom:561.693333pt;}
.y17{bottom:563.293333pt;}
.y188{bottom:564.320000pt;}
.y126{bottom:564.413333pt;}
.y43{bottom:564.893333pt;}
.y171{bottom:566.080000pt;}
.y21c{bottom:569.053333pt;}
.y9d{bottom:570.973333pt;}
.y18e{bottom:571.200000pt;}
.y62{bottom:571.453333pt;}
.y7c{bottom:571.933333pt;}
.y174{bottom:572.800000pt;}
.y16c{bottom:574.080000pt;}
.y18c{bottom:575.200000pt;}
.y20c{bottom:576.000000pt;}
.y187{bottom:578.400000pt;}
.y16{bottom:578.493333pt;}
.y17c{bottom:579.360000pt;}
.y2b1{bottom:579.613333pt;}
.y1d0{bottom:579.773333pt;}
.y193{bottom:580.320000pt;}
.y42{bottom:582.973333pt;}
.y61{bottom:583.453333pt;}
.y180{bottom:583.840000pt;}
.y163{bottom:584.320000pt;}
.y170{bottom:585.280000pt;}
.y7b{bottom:587.133333pt;}
.y18a{bottom:588.320000pt;}
.y9c{bottom:589.053333pt;}
.y192{bottom:589.280000pt;}
.yea{bottom:591.133333pt;}
.y198{bottom:591.360000pt;}
.y182{bottom:591.840000pt;}
.y173{bottom:592.320000pt;}
.y15{bottom:593.693333pt;}
.y176{bottom:594.400000pt;}
.y2b0{bottom:594.653333pt;}
.y184{bottom:596.320000pt;}
.yf5{bottom:596.573333pt;}
.y1cf{bottom:598.013333pt;}
.y41{bottom:601.213333pt;}
.y7a{bottom:602.333333pt;}
.y124{bottom:603.773333pt;}
.y21b{bottom:605.373333pt;}
.y9b{bottom:607.293333pt;}
.ye7{bottom:608.733333pt;}
.y14{bottom:608.893333pt;}
.y2af{bottom:609.853333pt;}
.y1ce{bottom:616.093333pt;}
.y79{bottom:617.373333pt;}
.y241{bottom:619.200000pt;}
.y40{bottom:619.453333pt;}
.y21a{bottom:619.933333pt;}
.y2ae{bottom:625.053333pt;}
.y9a{bottom:625.533333pt;}
.ye6{bottom:626.493333pt;}
.y251{bottom:629.120000pt;}
.y219{bottom:629.600000pt;}
.y25d{bottom:629.760000pt;}
.yf4{bottom:631.293333pt;}
.y122{bottom:632.093333pt;}
.y78{bottom:632.573333pt;}
.y1cd{bottom:634.333333pt;}
.y3f{bottom:637.533333pt;}
.y2ad{bottom:640.093333pt;}
.y250{bottom:640.800000pt;}
.y25c{bottom:641.440000pt;}
.y13{bottom:642.813333pt;}
.y99{bottom:643.613333pt;}
.ye5{bottom:644.093333pt;}
.y217{bottom:645.280000pt;}
.y77{bottom:647.773333pt;}
.y1f3{bottom:650.173333pt;}
.y24f{bottom:652.480000pt;}
.y25b{bottom:653.120000pt;}
.y2ac{bottom:655.293333pt;}
.y3e{bottom:655.773333pt;}
.y120{bottom:660.573333pt;}
.y12{bottom:661.053333pt;}
.y261{bottom:661.120000pt;}
.y98{bottom:661.853333pt;}
.y76{bottom:662.813333pt;}
.y243{bottom:665.120000pt;}
.y254{bottom:665.600000pt;}
.y2ab{bottom:670.493333pt;}
.y260{bottom:672.800000pt;}
.y3d{bottom:674.013333pt;}
.y75{bottom:678.013333pt;}
.y11{bottom:679.133333pt;}
.ye4{bottom:679.453333pt;}
.y97{bottom:679.933333pt;}
.yf1{bottom:682.013333pt;}
.y245{bottom:683.200000pt;}
.y256{bottom:683.680000pt;}
.y2aa{bottom:685.533333pt;}
.y3c{bottom:692.093333pt;}
.y74{bottom:693.213333pt;}
.y1f5{bottom:694.813333pt;}
.y10{bottom:697.373333pt;}
.y96{bottom:698.173333pt;}
.y1f1{bottom:699.453333pt;}
.y2a9{bottom:700.733333pt;}
.y246{bottom:701.280000pt;}
.y257{bottom:701.760000pt;}
.y73{bottom:708.253333pt;}
.y3b{bottom:710.373333pt;}
.y11c{bottom:711.013333pt;}
.y1f4{bottom:711.493333pt;}
.ye1{bottom:713.893333pt;}
.yf{bottom:715.653333pt;}
.y2a8{bottom:715.973333pt;}
.y95{bottom:716.453333pt;}
.y248{bottom:719.520000pt;}
.y258{bottom:719.840000pt;}
.y72{bottom:724.453333pt;}
.y3a{bottom:728.453333pt;}
.y25f{bottom:730.720000pt;}
.y2a7{bottom:731.013333pt;}
.yee{bottom:732.613333pt;}
.ye{bottom:733.733333pt;}
.y94{bottom:734.533333pt;}
.y24a{bottom:737.600000pt;}
.y259{bottom:737.920000pt;}
.y71{bottom:744.933333pt;}
.y2a6{bottom:746.213333pt;}
.y39{bottom:746.693333pt;}
.yde{bottom:748.133333pt;}
.y1ed{bottom:749.253333pt;}
.yd{bottom:751.973333pt;}
.y93{bottom:752.773333pt;}
.y24b{bottom:755.680000pt;}
.y25a{bottom:756.000000pt;}
.y264{bottom:758.693333pt;}
.y25e{bottom:759.520000pt;}
.y2a5{bottom:761.413333pt;}
.y38{bottom:764.933333pt;}
.y119{bottom:769.253333pt;}
.yc{bottom:770.533333pt;}
.y92{bottom:771.013333pt;}
.y24d{bottom:773.920000pt;}
.y2a4{bottom:776.453333pt;}
.ydd{bottom:782.533333pt;}
.y37{bottom:783.013333pt;}
.yeb{bottom:783.333333pt;}
.y91{bottom:789.093333pt;}
.yb{bottom:789.573333pt;}
.y2a3{bottom:791.653333pt;}
.y24e{bottom:792.000000pt;}
.ydb{bottom:800.133333pt;}
.y36{bottom:801.253333pt;}
.y1ec{bottom:806.373333pt;}
.y90{bottom:806.853333pt;}
.y252{bottom:808.800000pt;}
.ya{bottom:814.053333pt;}
.yd9{bottom:817.893333pt;}
.y35{bottom:819.333333pt;}
.y115{bottom:820.453333pt;}
.y8f{bottom:821.893333pt;}
.y7{bottom:872.773333pt;}
.y6{bottom:893.413333pt;}
.y5{bottom:911.653333pt;}
.y4{bottom:929.733333pt;}
.y3{bottom:948.000000pt;}
.y2{bottom:966.240000pt;}
.y1{bottom:986.240000pt;}
.h3c{height:5.120000pt;}
.h35{height:5.280000pt;}
.h40{height:5.920000pt;}
.h36{height:6.240000pt;}
.h4b{height:6.720000pt;}
.h52{height:7.040000pt;}
.h3f{height:10.560000pt;}
.h48{height:11.040000pt;}
.h6c{height:12.960000pt;}
.h6d{height:13.120000pt;}
.h6b{height:14.240000pt;}
.h37{height:14.880000pt;}
.h13{height:15.040000pt;}
.h4a{height:15.200000pt;}
.h64{height:15.520000pt;}
.h66{height:15.680000pt;}
.h50{height:15.840000pt;}
.h14{height:16.640000pt;}
.h18{height:16.800000pt;}
.h62{height:17.120000pt;}
.hf{height:17.426667pt;}
.h6e{height:18.080000pt;}
.h69{height:20.320000pt;}
.h46{height:21.120000pt;}
.h32{height:21.440000pt;}
.h43{height:25.760000pt;}
.h54{height:26.560000pt;}
.h5f{height:26.720000pt;}
.h2f{height:26.880000pt;}
.h24{height:27.200000pt;}
.h26{height:27.360000pt;}
.h23{height:27.520000pt;}
.h3b{height:28.480000pt;}
.h5c{height:29.938667pt;}
.hd{height:30.400000pt;}
.h44{height:30.560000pt;}
.h58{height:31.026667pt;}
.h5b{height:31.346667pt;}
.h42{height:31.680000pt;}
.h5d{height:31.826667pt;}
.h4e{height:32.000000pt;}
.h41{height:32.960000pt;}
.h59{height:33.106667pt;}
.h16{height:33.280000pt;}
.h17{height:33.312000pt;}
.h57{height:33.426667pt;}
.h15{height:33.440000pt;}
.h1d{height:34.080000pt;}
.h1e{height:34.240000pt;}
.h3a{height:34.880000pt;}
.h53{height:36.960000pt;}
.h30{height:37.280000pt;}
.h51{height:37.440000pt;}
.h4d{height:37.760000pt;}
.h25{height:38.240000pt;}
.h28{height:38.400000pt;}
.h27{height:38.432000pt;}
.h20{height:38.560000pt;}
.h7{height:40.177188pt;}
.h8{height:40.203125pt;}
.h47{height:41.120000pt;}
.h4c{height:41.280000pt;}
.h55{height:42.400000pt;}
.h5a{height:43.026667pt;}
.hb{height:44.533750pt;}
.h12{height:44.562500pt;}
.h10{height:45.426667pt;}
.hc{height:45.440000pt;}
.h5e{height:46.706667pt;}
.h38{height:47.360000pt;}
.h2e{height:47.872000pt;}
.h2d{height:48.000000pt;}
.h56{height:48.026667pt;}
.h2c{height:48.160000pt;}
.h3e{height:48.320000pt;}
.h9{height:48.406250pt;}
.h2{height:48.437500pt;}
.h45{height:48.480000pt;}
.h61{height:48.512000pt;}
.h22{height:49.472000pt;}
.h19{height:49.906667pt;}
.h11{height:49.913333pt;}
.h1c{height:49.920000pt;}
.h1b{height:49.940000pt;}
.h1f{height:49.946667pt;}
.h1a{height:50.066667pt;}
.h49{height:52.108438pt;}
.h4{height:52.134375pt;}
.h65{height:52.834688pt;}
.h4f{height:53.120000pt;}
.h33{height:53.535000pt;}
.h68{height:54.390938pt;}
.ha{height:54.699062pt;}
.h60{height:55.840000pt;}
.h31{height:56.160000pt;}
.h3{height:56.671875pt;}
.h21{height:57.120000pt;}
.h63{height:58.563750pt;}
.h39{height:62.560000pt;}
.h6{height:62.812500pt;}
.h34{height:67.040000pt;}
.he{height:70.578667pt;}
.h67{height:72.320000pt;}
.h1{height:72.609375pt;}
.h6f{height:74.066667pt;}
.h2a{height:76.352000pt;}
.h2b{height:76.960000pt;}
.h5{height:85.785000pt;}
.h3d{height:88.800000pt;}
.h29{height:88.960000pt;}
.h72{height:191.380000pt;}
.h71{height:221.466667pt;}
.h70{height:240.186667pt;}
.h6a{height:263.573333pt;}
.h0{height:1056.000000pt;}
.w46{width:4.320000pt;}
.w34{width:4.800000pt;}
.w43{width:5.760000pt;}
.w40{width:7.840000pt;}
.w48{width:8.800000pt;}
.w36{width:9.920000pt;}
.w47{width:12.640000pt;}
.w35{width:14.080000pt;}
.w38{width:14.240000pt;}
.w49{width:17.600000pt;}
.w4e{width:17.760000pt;}
.w3b{width:19.840000pt;}
.w37{width:20.000000pt;}
.w3d{width:20.160000pt;}
.w2d{width:23.360000pt;}
.w2c{width:23.520000pt;}
.w2b{width:23.680000pt;}
.w8{width:28.630667pt;}
.w1f{width:29.120000pt;}
.w25{width:34.720000pt;}
.wd{width:34.880000pt;}
.w12{width:35.026667pt;}
.w23{width:35.200000pt;}
.wb{width:35.360000pt;}
.w13{width:35.378667pt;}
.w41{width:35.510667pt;}
.w3a{width:39.040000pt;}
.w27{width:40.480000pt;}
.w28{width:40.672000pt;}
.w29{width:40.800000pt;}
.w14{width:40.946667pt;}
.w10{width:41.106667pt;}
.w9{width:41.110667pt;}
.we{width:41.152000pt;}
.w26{width:41.472000pt;}
.w2e{width:42.550667pt;}
.w24{width:43.360000pt;}
.w56{width:46.400000pt;}
.w22{width:46.560000pt;}
.wf{width:47.026667pt;}
.w11{width:47.186667pt;}
.w18{width:49.600000pt;}
.w20{width:52.800000pt;}
.w16{width:52.950667pt;}
.wc{width:53.280000pt;}
.w2{width:53.760000pt;}
.w39{width:58.080000pt;}
.w1{width:58.560000pt;}
.w54{width:64.320000pt;}
.w3c{width:64.480000pt;}
.w53{width:68.480000pt;}
.w4c{width:69.280000pt;}
.w19{width:71.680000pt;}
.w4{width:76.992000pt;}
.w52{width:82.880000pt;}
.w6{width:84.352000pt;}
.w55{width:85.120000pt;}
.w1b{width:85.792000pt;}
.w51{width:90.720000pt;}
.w1c{width:93.120000pt;}
.w59{width:94.098667pt;}
.w57{width:95.200000pt;}
.w21{width:98.432000pt;}
.w4d{width:98.880000pt;}
.w30{width:104.178667pt;}
.w1d{width:107.232000pt;}
.w5{width:107.520000pt;}
.w45{width:110.418667pt;}
.w31{width:110.752000pt;}
.w33{width:116.338667pt;}
.w17{width:119.538667pt;}
.w50{width:120.000000pt;}
.w4b{width:120.160000pt;}
.w5c{width:120.658667pt;}
.w32{width:122.866667pt;}
.w2f{width:123.026667pt;}
.w4a{width:124.960000pt;}
.w4f{width:125.120000pt;}
.w58{width:125.790667pt;}
.wa{width:131.378667pt;}
.w5a{width:132.160000pt;}
.w5b{width:138.426667pt;}
.w2a{width:181.946667pt;}
.w44{width:201.626667pt;}
.w15{width:202.417333pt;}
.w1a{width:215.546667pt;}
.w42{width:229.457333pt;}
.w3{width:231.066667pt;}
.w1e{width:338.106667pt;}
.w7{width:344.666667pt;}
.w3f{width:372.800000pt;}
.w3e{width:602.240000pt;}
.w0{width:816.000000pt;}
.x70{left:-7.360000pt;}
.xd{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x29{left:1.280000pt;}
.xe{left:2.560000pt;}
.x12{left:4.000000pt;}
.x26{left:5.760000pt;}
.x2d{left:6.710667pt;}
.xf{left:7.680000pt;}
.x35{left:8.640000pt;}
.x16{left:9.600000pt;}
.x27{left:10.706667pt;}
.x2b{left:12.146667pt;}
.x33{left:13.760000pt;}
.x28{left:15.190667pt;}
.x14{left:17.600000pt;}
.x46{left:18.720000pt;}
.x17{left:24.470667pt;}
.x71{left:25.440000pt;}
.x3b{left:30.880000pt;}
.x47{left:32.954667pt;}
.x20{left:35.186667pt;}
.x19{left:37.585333pt;}
.x40{left:41.466667pt;}
.x38{left:43.194667pt;}
.x34{left:45.120000pt;}
.x6b{left:52.305333pt;}
.x2c{left:77.434667pt;}
.x80{left:81.921333pt;}
.x6f{left:91.706667pt;}
.x6{left:95.072000pt;}
.x1{left:96.032000pt;}
.xb{left:100.192000pt;}
.x36{left:102.112000pt;}
.x76{left:104.640000pt;}
.x75{left:111.200000pt;}
.x18{left:125.001333pt;}
.x4{left:127.712000pt;}
.x6a{left:131.081333pt;}
.x37{left:132.032000pt;}
.x48{left:133.120000pt;}
.x77{left:134.080000pt;}
.x78{left:135.840000pt;}
.x59{left:138.600000pt;}
.x84{left:144.026667pt;}
.x2e{left:146.266667pt;}
.x5{left:151.066667pt;}
.x49{left:152.000000pt;}
.x79{left:155.040000pt;}
.xc{left:159.386667pt;}
.x1a{left:166.760000pt;}
.x60{left:172.320000pt;}
.x2a{left:178.600000pt;}
.x5f{left:180.000000pt;}
.x39{left:185.626667pt;}
.x5e{left:187.360000pt;}
.x8{left:191.706667pt;}
.x6c{left:206.425333pt;}
.x81{left:208.040000pt;}
.x10{left:213.786667pt;}
.x2f{left:218.586667pt;}
.x5a{left:262.280000pt;}
.x68{left:263.200000pt;}
.x67{left:269.280000pt;}
.x3a{left:284.706667pt;}
.x4a{left:291.520000pt;}
.x61{left:294.400000pt;}
.x1b{left:298.786667pt;}
.x82{left:302.466667pt;}
.x64{left:303.360000pt;}
.x63{left:318.400000pt;}
.x3c{left:331.906667pt;}
.x1c{left:334.786667pt;}
.x4b{left:338.720000pt;}
.x73{left:356.000000pt;}
.x6d{left:361.346667pt;}
.x3d{left:367.746667pt;}
.x58{left:368.960000pt;}
.x4c{left:374.880000pt;}
.x7b{left:378.240000pt;}
.x7a{left:384.960000pt;}
.x1d{left:388.706667pt;}
.x7c{left:403.680000pt;}
.x7d{left:405.600000pt;}
.x3{left:408.066667pt;}
.x6e{left:410.466667pt;}
.x3e{left:411.746667pt;}
.x4d{left:418.560000pt;}
.x1e{left:424.386667pt;}
.x55{left:427.586667pt;}
.x30{left:434.946667pt;}
.x7f{left:436.480000pt;}
.x11{left:445.666667pt;}
.x3f{left:447.106667pt;}
.x4e{left:448.480000pt;}
.x56{left:453.280000pt;}
.x4f{left:464.480000pt;}
.x1f{left:466.186667pt;}
.x5b{left:478.666667pt;}
.x41{left:489.373333pt;}
.x50{left:496.000000pt;}
.x62{left:504.800000pt;}
.x65{left:512.320000pt;}
.x21{left:513.866667pt;}
.x31{left:521.373333pt;}
.x13{left:523.293333pt;}
.x42{left:524.893333pt;}
.x66{left:527.200000pt;}
.x51{left:531.520000pt;}
.x69{left:549.600000pt;}
.x22{left:555.626667pt;}
.x43{left:560.893333pt;}
.x52{left:567.680000pt;}
.x83{left:573.706667pt;}
.x44{left:596.253333pt;}
.x57{left:602.400000pt;}
.x23{left:603.466667pt;}
.x72{left:612.106667pt;}
.x32{left:615.293333pt;}
.x7e{left:628.960000pt;}
.x15{left:631.613333pt;}
.x45{left:637.373333pt;}
.x24{left:639.146667pt;}
.x53{left:644.480000pt;}
.x25{left:675.173333pt;}
.xa{left:678.053333pt;}
.x54{left:685.440000pt;}
.x2{left:700.133333pt;}
.x74{left:710.400000pt;}
.x7{left:720.133333pt;}
.x5d{left:722.720000pt;}
.x9{left:730.053333pt;}
.x5c{left:788.133333pt;}
}




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