
    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_2c67c0fa1c0cc26b02523845.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bcb103965c7827b7ff97811d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7fb29a14b62d26ffb6c858b5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8a9e1c934a162e7a61aa3dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_88211eb18ef6373c0040817f.woff2')format("woff");}.ff5{font-family:ff5;line-height:2.230469;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_c3ab1c2ea91a6f844ed5cd09.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_80531a8b153268bef9906d88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_86c4cfc8d2cccf532ac1ad9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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;}
.m4{transform:matrix(0.000000,-0.165846,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.165846,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.165846,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.155012,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.155012,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.155012,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.150742,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.150742,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.150742,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.144134,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.144134,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.144134,0.250000,0.000000,0,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);}
.m3{transform:matrix(0.376856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376856,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.403196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403196,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.414616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414616,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.433624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433624,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.vb{vertical-align:-18.720000px;}
.v7{vertical-align:-12.960000px;}
.vc{vertical-align:-9.360000px;}
.vf{vertical-align:-7.200000px;}
.v10{vertical-align:-5.760000px;}
.vd{vertical-align:-4.320000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.v5{vertical-align:3.600000px;}
.ve{vertical-align:6.480000px;}
.v8{vertical-align:12.960000px;}
.v9{vertical-align:15.840000px;}
.v11{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:30.960000px;}
.v3{vertical-align:37.440000px;}
.ls8{letter-spacing:-1.056000px;}
.ls36{letter-spacing:-0.542652px;}
.ls4{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.334200px;}
.ls2c{letter-spacing:-0.226200px;}
.ls3{letter-spacing:-0.206400px;}
.ls2a{letter-spacing:-0.053280px;}
.ls29{letter-spacing:-0.051840px;}
.ls2f{letter-spacing:-0.004320px;}
.ls2{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.053280px;}
.lse{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.153600px;}
.ls33{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.219000px;}
.ls17{letter-spacing:0.239760px;}
.ls2d{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.305400px;}
.ls2b{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.488164px;}
.ls31{letter-spacing:0.488188px;}
.ls35{letter-spacing:0.488213px;}
.ls34{letter-spacing:0.490691px;}
.lsa{letter-spacing:0.801360px;}
.ls15{letter-spacing:1.620000px;}
.ls9{letter-spacing:2.073600px;}
.ls16{letter-spacing:2.340000px;}
.ls14{letter-spacing:2.520000px;}
.ls10{letter-spacing:2.536560px;}
.ls18{letter-spacing:3.535200px;}
.ls1a{letter-spacing:3.715200px;}
.ls38{letter-spacing:3.960000px;}
.lsd{letter-spacing:4.238640px;}
.ls19{letter-spacing:5.004000px;}
.lsf{letter-spacing:9.453600px;}
.lsb{letter-spacing:9.993600px;}
.lsc{letter-spacing:17.198640px;}
.ls12{letter-spacing:17.378640px;}
.ls26{letter-spacing:21.985920px;}
.ls27{letter-spacing:25.585920px;}
.ls23{letter-spacing:26.586720px;}
.ls25{letter-spacing:39.961920px;}
.ls28{letter-spacing:42.841920px;}
.ls22{letter-spacing:43.122720px;}
.ls24{letter-spacing:57.241920px;}
.ls21{letter-spacing:59.682720px;}
.ls1d{letter-spacing:129.985920px;}
.ls1e{letter-spacing:133.585920px;}
.ls1c{letter-spacing:147.961920px;}
.ls1f{letter-spacing:150.841920px;}
.ls1b{letter-spacing:165.241920px;}
.ls11{letter-spacing:200.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.059000px;}
.ws9{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.788160px;}
.wsc{word-spacing:-15.505800px;}
.ws5{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws23{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.939200px;}
.ws15{word-spacing:-13.860000px;}
.wsf{word-spacing:-10.755600px;}
.ws1{word-spacing:-10.440000px;}
.ws10{word-spacing:-10.213800px;}
.wsb{word-spacing:-9.979200px;}
.ws14{word-spacing:-9.732960px;}
.ws12{word-spacing:-9.715680px;}
.ws21{word-spacing:-9.288177px;}
.ws1e{word-spacing:-6.643541px;}
.ws17{word-spacing:-6.643209px;}
.ws1a{word-spacing:-6.642877px;}
.ws20{word-spacing:-5.759099px;}
.ws18{word-spacing:-5.317677px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:20.785261px;}
.ws1c{word-spacing:23.377583px;}
.ws1b{word-spacing:53.489763px;}
.ws1f{word-spacing:55.253343px;}
.ws19{word-spacing:124.844297px;}
.ws16{word-spacing:126.386970px;}
._1f{margin-left:-139.064400px;}
._1d{margin-left:-137.099520px;}
._1a{margin-left:-6.639840px;}
._19{margin-left:-5.246640px;}
._f{margin-left:-4.003920px;}
._e{margin-left:-2.868480px;}
._0{margin-left:-1.324800px;}
._1{width:1.036800px;}
._b{width:2.479440px;}
._a{width:3.585600px;}
._d{width:5.256000px;}
._c{width:6.513840px;}
._14{width:7.948080px;}
._8{width:9.642000px;}
._7{width:11.115360px;}
._9{width:12.250800px;}
._6{width:13.864320px;}
._16{width:15.036480px;}
._1e{width:16.842240px;}
._15{width:18.414720px;}
._5{width:19.762560px;}
._4{width:20.775600px;}
._17{width:21.885120px;}
._2{width:22.947840px;}
._3{width:24.083280px;}
._10{width:25.517520px;}
._18{width:26.899200px;}
._21{width:29.589120px;}
._26{width:32.847751px;}
._13{width:35.198640px;}
._12{width:36.274320px;}
._27{width:38.067210px;}
._11{width:40.577040px;}
._23{width:60.875834px;}
._24{width:61.922093px;}
._28{width:77.338320px;}
._20{width:100.063080px;}
._25{width:132.179057px;}
._22{width:133.888130px;}
._1b{width:199.285920px;}
._1c{width:201.154080px;}
.fc2{color:transparent;}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.000000px;}
.fs12{font-size:19.128335px;}
.fse{font-size:19.129291px;}
.fs16{font-size:19.130248px;}
.fs1a{font-size:20.716185px;}
.fs13{font-size:23.895241px;}
.fsf{font-size:23.896436px;}
.fs17{font-size:23.897631px;}
.fs15{font-size:27.072022px;}
.fs11{font-size:27.073375px;}
.fs19{font-size:27.074729px;}
.fs1c{font-size:30.249768px;}
.fs1b{font-size:33.410709px;}
.fsb{font-size:36.000000px;}
.fs14{font-size:36.020218px;}
.fsc{font-size:38.880000px;}
.fs18{font-size:39.633405px;}
.fs10{font-size:41.448313px;}
.fs5{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs1d{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.y10b{bottom:3.420000px;}
.y195{bottom:6.316657px;}
.y1b9{bottom:7.020000px;}
.y175{bottom:7.108109px;}
.y169{bottom:7.108456px;}
.y192{bottom:7.108820px;}
.y12e{bottom:11.700000px;}
.y129{bottom:11.880000px;}
.y138{bottom:12.060000px;}
.y10{bottom:14.400000px;}
.y128{bottom:17.280000px;}
.y1e6{bottom:18.000000px;}
.y1ad{bottom:18.198028px;}
.y12d{bottom:20.385000px;}
.y12a{bottom:20.520000px;}
.y17{bottom:21.240000px;}
.y196{bottom:22.564633px;}
.y173{bottom:23.752137px;}
.y167{bottom:23.753304px;}
.y190{bottom:23.754512px;}
.y135{bottom:27.360000px;}
.y137{bottom:27.540000px;}
.y35{bottom:29.520000px;}
.y172{bottom:30.888123px;}
.y166{bottom:30.889657px;}
.y18f{bottom:30.891213px;}
.y16{bottom:38.550000px;}
.y197{bottom:38.812609px;}
.y1ac{bottom:41.581638px;}
.y16c{bottom:41.978979px;}
.y161{bottom:42.772213px;}
.y189{bottom:42.774355px;}
.y34{bottom:46.800000px;}
.y198{bottom:54.664746px;}
.y15{bottom:55.830000px;}
.y33{bottom:64.080000px;}
.y1ab{bottom:64.566932px;}
.y199{bottom:70.910244px;}
.y14{bottom:73.110000px;}
.y16d{bottom:73.682980px;}
.y18a{bottom:74.483385px;}
.y162{bottom:76.078042px;}
.y32{bottom:81.360000px;}
.y174{bottom:85.979997px;}
.y19a{bottom:87.158839px;}
.y1aa{bottom:87.555320px;}
.y13{bottom:90.390000px;}
.y191{bottom:91.936363px;}
.y18{bottom:95.430000px;}
.y31{bottom:98.640000px;}
.y19b{bottom:103.407434px;}
.y168{bottom:103.417814px;}
.y12{bottom:105.330000px;}
.y16e{bottom:105.388840px;}
.y18b{bottom:106.192416px;}
.y163{bottom:109.761781px;}
.y1a9{bottom:110.543713px;}
.y30{bottom:115.740000px;}
.y19c{bottom:119.656030px;}
.y2f{bottom:133.020000px;}
.y1a8{bottom:133.928563px;}
.y19d{bottom:135.508167px;}
.y16f{bottom:137.100895px;}
.y18c{bottom:137.504929px;}
.y164{bottom:143.055218px;}
.y2e{bottom:150.300000px;}
.y19e{bottom:151.756762px;}
.y42{bottom:155.160000px;}
.y207{bottom:155.340000px;}
.ydf{bottom:155.700000px;}
.y1a7{bottom:156.916951px;}
.y1d9{bottom:162.030000px;}
.y200{bottom:162.390000px;}
.y11f{bottom:165.450000px;}
.y8e{bottom:166.170000px;}
.y2d{bottom:167.580000px;}
.y19f{bottom:168.005357px;}
.y170{bottom:168.806754px;}
.y18d{bottom:169.220155px;}
.y78{bottom:170.670000px;}
.y1f7{bottom:171.210000px;}
.yc9{bottom:171.750000px;}
.y1a6{bottom:172.769056px;}
.y1a5{bottom:172.769060px;}
.y1a4{bottom:172.769064px;}
.y1a3{bottom:172.769068px;}
.y1a2{bottom:172.769073px;}
.y1a1{bottom:172.769077px;}
.y1a0{bottom:172.769082px;}
.y14b{bottom:172.830000px;}
.y41{bottom:174.270000px;}
.y165{bottom:176.342460px;}
.y206{bottom:182.550000px;}
.yde{bottom:182.910000px;}
.y2c{bottom:184.905000px;}
.y8d{bottom:185.070000px;}
.y187{bottom:187.050000px;}
.y235{bottom:187.230000px;}
.yaa{bottom:188.670000px;}
.y1d8{bottom:189.030000px;}
.y77{bottom:189.570000px;}
.yc8{bottom:189.750000px;}
.y104{bottom:191.190000px;}
.y11e{bottom:192.450000px;}
.y1f6{bottom:198.390000px;}
.y14a{bottom:200.010000px;}
.y171{bottom:200.512614px;}
.y18e{bottom:200.929186px;}
.ydd{bottom:201.090000px;}
.y40{bottom:201.990000px;}
.y2b{bottom:202.185000px;}
.y234{bottom:203.610000px;}
.y8c{bottom:204.150000px;}
.y186{bottom:205.050000px;}
.y205{bottom:206.310000px;}
.ya9{bottom:206.850000px;}
.y1d7{bottom:207.210000px;}
.y176{bottom:207.649220px;}
.y16a{bottom:207.659600px;}
.y193{bottom:207.669988px;}
.y1ff{bottom:207.750000px;}
.yc7{bottom:207.930000px;}
.y76{bottom:208.650000px;}
.y1ae{bottom:208.822010px;}
.y103{bottom:209.370000px;}
.y1f5{bottom:216.570000px;}
.y149{bottom:218.190000px;}
.y2a{bottom:219.285000px;}
.y11d{bottom:219.630000px;}
.y233{bottom:220.170000px;}
.y3f{bottom:220.710000px;}
.y8b{bottom:223.050000px;}
.y185{bottom:223.230000px;}
.ya8{bottom:224.850000px;}
.y1d6{bottom:225.390000px;}
.y1fe{bottom:225.750000px;}
.yc6{bottom:226.110000px;}
.y102{bottom:227.550000px;}
.ydc{bottom:228.090000px;}
.y15f{bottom:228.630000px;}
.y75{bottom:231.870000px;}
.y1f4{bottom:234.750000px;}
.y29{bottom:236.565000px;}
.y19{bottom:236.910000px;}
.y232{bottom:241.050000px;}
.y184{bottom:241.410000px;}
.y8a{bottom:242.130000px;}
.ya7{bottom:243.030000px;}
.y15e{bottom:243.390000px;}
.y16b{bottom:243.525000px;}
.y1d5{bottom:243.570000px;}
.y148{bottom:245.190000px;}
.y101{bottom:245.550000px;}
.y11c{bottom:246.810000px;}
.y74{bottom:251.130000px;}
.ydb{bottom:251.850000px;}
.y1f3{bottom:252.750000px;}
.y1fd{bottom:252.930000px;}
.yc5{bottom:253.110000px;}
.y28{bottom:253.845000px;}
.y231{bottom:257.430000px;}
.y183{bottom:259.410000px;}
.y89{bottom:261.030000px;}
.y1d4{bottom:261.570000px;}
.y147{bottom:263.370000px;}
.y100{bottom:263.730000px;}
.y11b{bottom:264.990000px;}
.y73{bottom:270.030000px;}
.y1fc{bottom:271.110000px;}
.y27{bottom:271.125000px;}
.yc3{bottom:271.290000px;}
.yc4{bottom:274.350000px;}
.y182{bottom:277.590000px;}
.y230{bottom:278.310000px;}
.ya6{bottom:279.210000px;}
.y1d3{bottom:279.750000px;}
.y1f2{bottom:279.930000px;}
.y88{bottom:280.110000px;}
.y3d{bottom:280.125000px;}
.yff{bottom:281.910000px;}
.y26{bottom:288.405000px;}
.y72{bottom:289.110000px;}
.y146{bottom:290.370000px;}
.y11a{bottom:291.990000px;}
.y22f{bottom:294.690000px;}
.y181{bottom:295.770000px;}
.ya5{bottom:297.390000px;}
.y3c{bottom:297.405000px;}
.y1d2{bottom:297.750000px;}
.yc1{bottom:298.290000px;}
.y87{bottom:299.010000px;}
.yfe{bottom:299.910000px;}
.yc2{bottom:300.090000px;}
.y25{bottom:305.505000px;}
.yc0{bottom:306.210000px;}
.y1f1{bottom:307.830000px;}
.y71{bottom:308.010000px;}
.y145{bottom:308.550000px;}
.y119{bottom:310.170000px;}
.y22e{bottom:311.070000px;}
.y180{bottom:313.770000px;}
.y3b{bottom:314.685000px;}
.ya4{bottom:315.390000px;}
.y1d1{bottom:315.930000px;}
.y1fb{bottom:316.110000px;}
.yfd{bottom:318.090000px;}
.y86{bottom:322.230000px;}
.y24{bottom:322.785000px;}
.y1f0{bottom:326.010000px;}
.y70{bottom:326.910000px;}
.y118{bottom:328.170000px;}
.y17f{bottom:331.950000px;}
.y3a{bottom:331.965000px;}
.y144{bottom:335.730000px;}
.yfc{bottom:336.270000px;}
.ybf{bottom:336.810000px;}
.y1fa{bottom:340.050000px;}
.y23{bottom:340.065000px;}
.y1d0{bottom:340.410000px;}
.y85{bottom:341.490000px;}
.ya3{bottom:342.570000px;}
.y1ef{bottom:344.190000px;}
.ybe{bottom:344.730000px;}
.y6f{bottom:345.990000px;}
.y117{bottom:346.350000px;}
.y22d{bottom:348.330000px;}
.y39{bottom:349.245000px;}
.y17e{bottom:349.950000px;}
.y143{bottom:353.910000px;}
.yfb{bottom:354.270000px;}
.y22{bottom:357.345000px;}
.y1cf{bottom:358.410000px;}
.y84{bottom:360.390000px;}
.y1ee{bottom:362.190000px;}
.y116{bottom:364.530000px;}
.y6e{bottom:364.890000px;}
.y38{bottom:366.345000px;}
.y22c{bottom:369.210000px;}
.ya2{bottom:370.470000px;}
.y3e{bottom:371.565000px;}
.y142{bottom:371.910000px;}
.yfa{bottom:372.450000px;}
.y21{bottom:374.625000px;}
.y1ce{bottom:376.590000px;}
.y17d{bottom:377.130000px;}
.ybd{bottom:377.670000px;}
.y83{bottom:379.470000px;}
.y1ed{bottom:380.370000px;}
.y37{bottom:381.285000px;}
.y115{bottom:382.530000px;}
.y6d{bottom:383.970000px;}
.ybc{bottom:385.590000px;}
.ya1{bottom:388.650000px;}
.y141{bottom:390.090000px;}
.yf9{bottom:390.450000px;}
.y20{bottom:391.905000px;}
.y1cd{bottom:394.770000px;}
.y25c{bottom:394.950000px;}
.y82{bottom:398.370000px;}
.y114{bottom:400.710000px;}
.y17c{bottom:400.890000px;}
.y194{bottom:401.010000px;}
.y22b{bottom:401.970000px;}
.y6c{bottom:402.870000px;}
.y140{bottom:408.135000px;}
.y1f{bottom:409.005000px;}
.y1cc{bottom:412.815000px;}
.ya0{bottom:415.875000px;}
.y1ec{bottom:416.595000px;}
.y81{bottom:417.315000px;}
.yf8{bottom:417.675000px;}
.y113{bottom:418.935000px;}
.y25b{bottom:419.295000px;}
.ybb{bottom:421.635000px;}
.y6b{bottom:421.815000px;}
.y22a{bottom:422.895000px;}
.y1e{bottom:426.315000px;}
.yba{bottom:429.555000px;}
.y1cb{bottom:430.995000px;}
.y25a{bottom:435.675000px;}
.y80{bottom:436.395000px;}
.y112{bottom:436.935000px;}
.y229{bottom:439.275000px;}
.y6a{bottom:440.895000px;}
.y1eb{bottom:441.075000px;}
.y1d{bottom:443.595000px;}
.y9f{bottom:443.775000px;}
.y13f{bottom:444.495000px;}
.yf7{bottom:445.755000px;}
.y1ca{bottom:449.175000px;}
.y259{bottom:456.555000px;}
.y1ea{bottom:459.075000px;}
.y7f{bottom:459.615000px;}
.y69{bottom:459.795000px;}
.y228{bottom:460.155000px;}
.y1c{bottom:460.875000px;}
.yb9{bottom:461.775000px;}
.y111{bottom:464.115000px;}
.y1c9{bottom:467.895000px;}
.y13e{bottom:471.495000px;}
.y9e{bottom:471.675000px;}
.y258{bottom:472.935000px;}
.yf6{bottom:473.475000px;}
.y227{bottom:476.535000px;}
.y1e9{bottom:477.255000px;}
.y1b{bottom:478.155000px;}
.y68{bottom:478.875000px;}
.yb8{bottom:479.955000px;}
.y110{bottom:489.315000px;}
.y1c8{bottom:490.215000px;}
.y1a{bottom:493.095000px;}
.y257{bottom:493.815000px;}
.y9d{bottom:495.435000px;}
.y160{bottom:495.630000px;}
.y13d{bottom:495.975000px;}
.y226{bottom:497.415000px;}
.y67{bottom:497.775000px;}
.yb7{bottom:498.135000px;}
.yf5{bottom:500.655000px;}
.y10f{bottom:507.495000px;}
.y256{bottom:510.195000px;}
.y1e8{bottom:513.435000px;}
.y225{bottom:513.795000px;}
.yb6{bottom:516.135000px;}
.y66{bottom:516.675000px;}
.y1c7{bottom:517.215000px;}
.y10e{bottom:525.675000px;}
.yf4{bottom:527.835000px;}
.y13c{bottom:529.455000px;}
.y255{bottom:531.075000px;}
.y1e7{bottom:531.615000px;}
.yb5{bottom:534.315000px;}
.y224{bottom:534.675000px;}
.y1c6{bottom:535.395000px;}
.y65{bottom:535.755000px;}
.y10d{bottom:543.675000px;}
.y204{bottom:547.275000px;}
.y254{bottom:547.455000px;}
.y1e5{bottom:550.515000px;}
.y223{bottom:551.055000px;}
.yb4{bottom:552.315000px;}
.y1c5{bottom:553.575000px;}
.y64{bottom:554.655000px;}
.yf3{bottom:554.835000px;}
.y10c{bottom:561.855000px;}
.y13b{bottom:563.115000px;}
.y253{bottom:563.835000px;}
.yb3{bottom:570.495000px;}
.y203{bottom:571.035000px;}
.y1c4{bottom:571.755000px;}
.y222{bottom:571.935000px;}
.y63{bottom:573.735000px;}
.y10a{bottom:580.755000px;}
.y1e4{bottom:581.655000px;}
.yf2{bottom:582.015000px;}
.y252{bottom:584.715000px;}
.y221{bottom:588.315000px;}
.yb2{bottom:588.675000px;}
.y1c3{bottom:589.755000px;}
.y62{bottom:592.635000px;}
.y13a{bottom:596.595000px;}
.y251{bottom:601.095000px;}
.y220{bottom:604.695000px;}
.yb1{bottom:606.675000px;}
.y1c2{bottom:607.935000px;}
.y1e3{bottom:608.835000px;}
.yf1{bottom:609.015000px;}
.y61{bottom:611.535000px;}
.y109{bottom:611.895000px;}
.y250{bottom:621.975000px;}
.y11{bottom:624.675000px;}
.yb0{bottom:624.855000px;}
.y21f{bottom:625.575000px;}
.y1e2{bottom:627.015000px;}
.y17b{bottom:629.175000px;}
.y139{bottom:630.075000px;}
.y60{bottom:630.615000px;}
.y1c1{bottom:635.115000px;}
.yf0{bottom:636.195000px;}
.y24f{bottom:638.535000px;}
.y108{bottom:639.075000px;}
.y21e{bottom:641.955000px;}
.yaf{bottom:642.855000px;}
.y1e1{bottom:645.015000px;}
.y5f{bottom:649.515000px;}
.y107{bottom:653.865000px;}
.y17a{bottom:656.385000px;}
.y24e{bottom:659.445000px;}
.yae{bottom:661.065000px;}
.y1c0{bottom:663.045000px;}
.y1e0{bottom:663.225000px;}
.yef{bottom:663.405000px;}
.y136{bottom:663.585000px;}
.y5e{bottom:668.625000px;}
.y7e{bottom:672.945000px;}
.y24d{bottom:675.825000px;}
.y21d{bottom:676.905000px;}
.y179{bottom:680.145000px;}
.y1df{bottom:681.405000px;}
.yad{bottom:688.245000px;}
.yee{bottom:690.405000px;}
.y1bf{bottom:690.945000px;}
.y5d{bottom:691.845000px;}
.y7d{bottom:692.025000px;}
.y24c{bottom:696.705000px;}
.y1de{bottom:699.405000px;}
.y1f9{bottom:704.445000px;}
.y21c{bottom:704.805000px;}
.y1be{bottom:709.125000px;}
.y5c{bottom:710.925000px;}
.y134{bottom:713.445000px;}
.yac{bottom:716.145000px;}
.yed{bottom:717.585000px;}
.yda{bottom:717.765000px;}
.y15d{bottom:723.885000px;}
.y1bd{bottom:727.125000px;}
.y1f8{bottom:728.385000px;}
.y5b{bottom:730.005000px;}
.y21b{bottom:732.885000px;}
.y24b{bottom:733.965000px;}
.y1dd{bottom:735.585000px;}
.yd9{bottom:735.945000px;}
.yf{bottom:736.485000px;}
.yab{bottom:739.725000px;}
.y15c{bottom:742.065000px;}
.yec{bottom:744.765000px;}
.y1bc{bottom:745.305000px;}
.y5a{bottom:748.905000px;}
.y24a{bottom:750.345000px;}
.y1dc{bottom:753.765000px;}
.y15b{bottom:760.245000px;}
.y21a{bottom:760.605000px;}
.yd8{bottom:762.945000px;}
.y1bb{bottom:763.485000px;}
.y9c{bottom:765.465000px;}
.y59{bottom:767.985000px;}
.y249{bottom:771.225000px;}
.y133{bottom:775.545000px;}
.y15a{bottom:778.245000px;}
.y219{bottom:778.785000px;}
.ye{bottom:780.945000px;}
.y9b{bottom:783.645000px;}
.y58{bottom:786.885000px;}
.y248{bottom:787.605000px;}
.y1ba{bottom:787.785000px;}
.yd7{bottom:789.945000px;}
.yd{bottom:798.045000px;}
.y132{bottom:800.025000px;}
.y9a{bottom:801.645000px;}
.y159{bottom:802.725000px;}
.y57{bottom:805.965000px;}
.yeb{bottom:807.945000px;}
.y247{bottom:808.485000px;}
.y1db{bottom:808.845000px;}
.yc{bottom:815.325000px;}
.yd6{bottom:817.125000px;}
.y131{bottom:817.305000px;}
.y99{bottom:819.825000px;}
.y158{bottom:820.905000px;}
.y1b8{bottom:824.145000px;}
.y202{bottom:824.685000px;}
.y56{bottom:824.865000px;}
.y1da{bottom:832.425000px;}
.yb{bottom:832.785000px;}
.y218{bottom:833.865000px;}
.yea{bottom:835.125000px;}
.y98{bottom:838.005000px;}
.y157{bottom:838.905000px;}
.y55{bottom:843.765000px;}
.yd5{bottom:844.305000px;}
.y246{bottom:845.745000px;}
.y1b7{bottom:846.645000px;}
.y201{bottom:848.445000px;}
.y130{bottom:851.865000px;}
.y217{bottom:852.045000px;}
.ye9{bottom:853.305000px;}
.y97{bottom:856.005000px;}
.ya{bottom:856.185000px;}
.y156{bottom:857.085000px;}
.y245{bottom:862.125000px;}
.y54{bottom:862.845000px;}
.y12f{bottom:869.145000px;}
.y216{bottom:870.045000px;}
.yd4{bottom:871.305000px;}
.y9{bottom:874.185000px;}
.y155{bottom:875.085000px;}
.y1b6{bottom:877.965000px;}
.ye8{bottom:880.305000px;}
.y53{bottom:881.745000px;}
.y244{bottom:883.005000px;}
.y12c{bottom:886.425000px;}
.y215{bottom:888.225000px;}
.y96{bottom:892.365000px;}
.y154{bottom:893.265000px;}
.yd3{bottom:898.485000px;}
.y243{bottom:899.385000px;}
.y7c{bottom:900.870000px;}
.y1b5{bottom:905.010000px;}
.y52{bottom:905.190000px;}
.y8{bottom:905.730000px;}
.y214{bottom:906.450000px;}
.ye7{bottom:907.530000px;}
.y178{bottom:908.430000px;}
.y95{bottom:910.410000px;}
.y153{bottom:911.490000px;}
.y7b{bottom:919.770000px;}
.y242{bottom:920.310000px;}
.y12b{bottom:920.850000px;}
.y1b4{bottom:923.190000px;}
.y51{bottom:924.270000px;}
.y213{bottom:924.450000px;}
.yd2{bottom:925.710000px;}
.y94{bottom:928.590000px;}
.y152{bottom:929.490000px;}
.y177{bottom:932.190000px;}
.y188{bottom:932.310000px;}
.y241{bottom:936.690000px;}
.y7a{bottom:938.670000px;}
.y127{bottom:938.850000px;}
.y1b3{bottom:941.370000px;}
.y212{bottom:942.630000px;}
.y50{bottom:943.170000px;}
.y7{bottom:944.430000px;}
.y93{bottom:946.590000px;}
.y151{bottom:947.670000px;}
.yd1{bottom:952.710000px;}
.y240{bottom:953.070000px;}
.y1b2{bottom:959.370000px;}
.y211{bottom:960.630000px;}
.y79{bottom:962.070000px;}
.y4f{bottom:962.250000px;}
.y92{bottom:964.770000px;}
.y6{bottom:965.130000px;}
.y150{bottom:965.850000px;}
.ye6{bottom:970.890000px;}
.y23f{bottom:973.950000px;}
.y1b1{bottom:977.550000px;}
.y210{bottom:978.810000px;}
.yd0{bottom:979.890000px;}
.y4e{bottom:981.150000px;}
.y14f{bottom:983.850000px;}
.y126{bottom:986.550000px;}
.y23e{bottom:990.330000px;}
.y91{bottom:991.950000px;}
.y20f{bottom:996.990000px;}
.ye5{bottom:997.890000px;}
.y4d{bottom:1000.230000px;}
.y14e{bottom:1002.030000px;}
.y5{bottom:1003.830000px;}
.ycf{bottom:1006.890000px;}
.y125{bottom:1011.030000px;}
.y23d{bottom:1011.210000px;}
.y20e{bottom:1014.990000px;}
.y4c{bottom:1019.130000px;}
.y90{bottom:1019.850000px;}
.y1b0{bottom:1020.030000px;}
.y14d{bottom:1020.930000px;}
.ye4{bottom:1025.070000px;}
.y23c{bottom:1027.590000px;}
.y124{bottom:1029.030000px;}
.y20d{bottom:1033.170000px;}
.yce{bottom:1034.070000px;}
.y4b{bottom:1038.030000px;}
.y1af{bottom:1038.210000px;}
.y4{bottom:1038.570000px;}
.y23b{bottom:1043.970000px;}
.y123{bottom:1047.210000px;}
.y20c{bottom:1051.350000px;}
.y14c{bottom:1052.070000px;}
.ye3{bottom:1052.250000px;}
.y8f{bottom:1056.930000px;}
.y4a{bottom:1057.110000px;}
.y106{bottom:1061.070000px;}
.ycd{bottom:1061.250000px;}
.y23a{bottom:1064.850000px;}
.y122{bottom:1065.390000px;}
.y20b{bottom:1069.350000px;}
.y49{bottom:1076.010000px;}
.ye2{bottom:1079.250000px;}
.y239{bottom:1081.230000px;}
.y121{bottom:1083.390000px;}
.y20a{bottom:1087.530000px;}
.ycc{bottom:1088.250000px;}
.y48{bottom:1095.090000px;}
.y105{bottom:1097.430000px;}
.y238{bottom:1097.610000px;}
.y120{bottom:1102.290000px;}
.y209{bottom:1105.530000px;}
.ye1{bottom:1106.430000px;}
.y47{bottom:1113.990000px;}
.ycb{bottom:1115.430000px;}
.y237{bottom:1118.490000px;}
.y208{bottom:1132.710000px;}
.y46{bottom:1132.890000px;}
.ye0{bottom:1133.430000px;}
.yca{bottom:1133.610000px;}
.y236{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.h20{height:17.280000px;}
.hd{height:17.657227px;}
.h1d{height:18.000000px;}
.h3f{height:18.036000px;}
.h1e{height:18.180000px;}
.h29{height:18.216000px;}
.h31{height:19.950255px;}
.h2c{height:19.951253px;}
.h35{height:19.952251px;}
.h3a{height:21.606333px;}
.h3e{height:21.780000px;}
.h32{height:24.921989px;}
.h2d{height:24.923236px;}
.h36{height:24.924482px;}
.h34{height:28.235273px;}
.h2f{height:28.236684px;}
.h38{height:28.238096px;}
.h3d{height:31.549562px;}
.h27{height:33.480000px;}
.h26{height:33.516000px;}
.h28{height:33.660000px;}
.h21{height:34.416000px;}
.h1f{height:34.560000px;}
.h3b{height:34.846325px;}
.h33{height:37.567962px;}
.ha{height:40.320000px;}
.h41{height:41.132461px;}
.h6{height:41.304375px;}
.h37{height:41.336403px;}
.h2e{height:43.229295px;}
.h13{height:45.818438px;}
.h23{height:48.960000px;}
.h25{height:49.140000px;}
.h24{height:52.998047px;}
.h40{height:55.824609px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h22{height:59.038594px;}
.h9{height:60.226875px;}
.h2a{height:62.153438px;}
.h7{height:62.184375px;}
.h1c{height:62.327813px;}
.h14{height:63.855000px;}
.h2{height:65.010937px;}
.h1b{height:66.082500px;}
.hb{height:66.757500px;}
.h18{height:67.841367px;}
.h11{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:84.898125px;}
.h19{height:88.335000px;}
.h1a{height:90.739688px;}
.h3{height:96.508125px;}
.h15{height:102.401367px;}
.h17{height:105.556641px;}
.hc{height:109.476000px;}
.h16{height:125.299688px;}
.h12{height:153.341016px;}
.h39{height:208.445257px;}
.h2b{height:215.910000px;}
.h3c{height:215.955000px;}
.h30{height:215.969066px;}
.h10{height:385.590000px;}
.hf{height:497.235000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w10{width:47.340000px;}
.wa{width:53.100000px;}
.w19{width:53.280000px;}
.w20{width:54.396000px;}
.w2a{width:54.900000px;}
.w1c{width:55.440000px;}
.w1d{width:55.656000px;}
.w34{width:55.836000px;}
.w12{width:58.500000px;}
.w2b{width:60.120000px;}
.w1b{width:60.660000px;}
.w16{width:60.696000px;}
.w1a{width:60.876000px;}
.w1e{width:61.020000px;}
.w1f{width:61.200000px;}
.w15{width:61.560000px;}
.w14{width:63.936000px;}
.w9{width:65.520000px;}
.w13{width:68.940000px;}
.w11{width:69.876000px;}
.wf{width:79.920000px;}
.w7{width:80.280000px;}
.wc{width:82.980000px;}
.w35{width:84.060000px;}
.w37{width:84.240000px;}
.w36{width:84.276000px;}
.w21{width:84.600000px;}
.w2c{width:86.436000px;}
.w17{width:87.840000px;}
.w2f{width:88.920000px;}
.wb{width:89.496000px;}
.w8{width:91.656000px;}
.w2e{width:91.980000px;}
.w18{width:92.880000px;}
.w33{width:103.500000px;}
.w32{width:120.456000px;}
.w24{width:123.696000px;}
.w2d{width:135.936000px;}
.w30{width:147.636000px;}
.w22{width:151.230000px;}
.w23{width:156.270000px;}
.w31{width:160.050000px;}
.we{width:189.030000px;}
.w6{width:198.570000px;}
.wd{width:228.630000px;}
.w3{width:237.990000px;}
.w29{width:253.650000px;}
.w26{width:327.517656px;}
.w28{width:350.376836px;}
.w27{width:360.370940px;}
.w25{width:376.873182px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x6f{left:9.720000px;}
.x4f{left:11.998949px;}
.x49{left:13.807140px;}
.x4d{left:14.992856px;}
.x46{left:17.252214px;}
.x86{left:19.485000px;}
.x58{left:21.133973px;}
.x80{left:23.940000px;}
.x57{left:25.746502px;}
.x45{left:26.925496px;}
.x51{left:33.601544px;}
.x5c{left:34.996199px;}
.x4b{left:36.598759px;}
.x67{left:37.855519px;}
.x59{left:42.901936px;}
.x6d{left:54.535890px;}
.x87{left:68.580000px;}
.x85{left:70.380000px;}
.x62{left:75.085647px;}
.x68{left:77.006854px;}
.x4a{left:84.910370px;}
.x29{left:88.956000px;}
.x50{left:89.981441px;}
.x4e{left:91.201973px;}
.x47{left:103.541262px;}
.x5{left:108.035987px;}
.x5b{left:110.889689px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x19{left:135.035987px;}
.x69{left:139.274538px;}
.x78{left:144.935987px;}
.x63{left:148.905510px;}
.x6a{left:154.030721px;}
.x7d{left:156.450000px;}
.x1c{left:162.029987px;}
.x2a{left:168.870000px;}
.x12{left:172.829987px;}
.x5a{left:183.514625px;}
.xa{left:185.250000px;}
.x64{left:187.419440px;}
.x3e{left:188.850000px;}
.xc{left:190.829987px;}
.x48{left:194.679840px;}
.x6b{left:195.741658px;}
.x35{left:200.910000px;}
.x3d{left:215.129987px;}
.x2b{left:216.210000px;}
.x53{left:224.309987px;}
.x7a{left:226.649987px;}
.x6c{left:231.048593px;}
.x15{left:232.769987px;}
.x13{left:234.929987px;}
.x26{left:237.810000px;}
.x70{left:241.229987px;}
.x54{left:246.629987px;}
.x16{left:252.569987px;}
.x36{left:254.190000px;}
.x44{left:257.580000px;}
.x7e{left:259.950000px;}
.x65{left:261.210330px;}
.x14{left:264.269987px;}
.x56{left:266.400000px;}
.x5d{left:271.395000px;}
.xf{left:274.169987px;}
.x43{left:275.249987px;}
.x76{left:277.050000px;}
.x4c{left:282.330000px;}
.x2c{left:286.095000px;}
.x28{left:292.934987px;}
.x17{left:294.194987px;}
.x66{left:299.084858px;}
.x1f{left:306.615000px;}
.x1e{left:309.854987px;}
.x3{left:314.354987px;}
.x7f{left:315.795000px;}
.x11{left:324.074987px;}
.x7c{left:327.674987px;}
.x89{left:329.294987px;}
.x5f{left:331.824210px;}
.x61{left:333.103004px;}
.x5e{left:335.670609px;}
.x60{left:336.949404px;}
.x2d{left:344.595000px;}
.x1b{left:347.114987px;}
.x8{left:360.795000px;}
.x73{left:368.534987px;}
.x25{left:370.694987px;}
.x71{left:373.395000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x20{left:386.895000px;}
.x81{left:399.855000px;}
.x2e{left:413.535000px;}
.x3f{left:424.695000px;}
.x37{left:431.175000px;}
.x72{left:433.515000px;}
.x34{left:446.654987px;}
.x27{left:466.455000px;}
.x74{left:468.645000px;}
.x2f{left:477.465000px;}
.x21{left:478.545000px;}
.x18{left:482.504987px;}
.x82{left:484.125000px;}
.x38{left:486.825000px;}
.x30{left:535.965000px;}
.x22{left:544.065000px;}
.x6e{left:546.045000px;}
.x39{left:547.845000px;}
.x83{left:568.365000px;}
.x40{left:580.965000px;}
.x77{left:584.745000px;}
.x31{left:594.465000px;}
.x23{left:597.165000px;}
.x3a{left:609.045000px;}
.x42{left:610.844987px;}
.x55{left:621.824987px;}
.x52{left:626.864987px;}
.xe{left:629.924987px;}
.x41{left:635.684987px;}
.x84{left:652.605000px;}
.x32{left:656.025000px;}
.x3b{left:663.450000px;}
.x75{left:665.429987px;}
.x8a{left:682.349987px;}
.x10{left:685.229987px;}
.x24{left:686.670000px;}
.x8b{left:689.009987px;}
.x1a{left:690.809987px;}
.x1d{left:694.229987px;}
.x88{left:705.389987px;}
.x33{left:716.730000px;}
.x3c{left:724.650000px;}
.x7b{left:730.229987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x79{left:761.729987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.vb{vertical-align:-16.640000pt;}
.v7{vertical-align:-11.520000pt;}
.vc{vertical-align:-8.320000pt;}
.vf{vertical-align:-6.400000pt;}
.v10{vertical-align:-5.120000pt;}
.vd{vertical-align:-3.840000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.v5{vertical-align:3.200000pt;}
.ve{vertical-align:5.760000pt;}
.v8{vertical-align:11.520000pt;}
.v9{vertical-align:14.080000pt;}
.v11{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:27.520000pt;}
.v3{vertical-align:33.280000pt;}
.ls8{letter-spacing:-0.938667pt;}
.ls36{letter-spacing:-0.482358pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.297067pt;}
.ls2c{letter-spacing:-0.201067pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls2a{letter-spacing:-0.047360pt;}
.ls29{letter-spacing:-0.046080pt;}
.ls2f{letter-spacing:-0.003840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.136533pt;}
.ls33{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.194667pt;}
.ls17{letter-spacing:0.213120pt;}
.ls2d{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.271467pt;}
.ls2b{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.433923pt;}
.ls31{letter-spacing:0.433945pt;}
.ls35{letter-spacing:0.433967pt;}
.ls34{letter-spacing:0.436170pt;}
.lsa{letter-spacing:0.712320pt;}
.ls15{letter-spacing:1.440000pt;}
.ls9{letter-spacing:1.843200pt;}
.ls16{letter-spacing:2.080000pt;}
.ls14{letter-spacing:2.240000pt;}
.ls10{letter-spacing:2.254720pt;}
.ls18{letter-spacing:3.142400pt;}
.ls1a{letter-spacing:3.302400pt;}
.ls38{letter-spacing:3.520000pt;}
.lsd{letter-spacing:3.767680pt;}
.ls19{letter-spacing:4.448000pt;}
.lsf{letter-spacing:8.403200pt;}
.lsb{letter-spacing:8.883200pt;}
.lsc{letter-spacing:15.287680pt;}
.ls12{letter-spacing:15.447680pt;}
.ls26{letter-spacing:19.543040pt;}
.ls27{letter-spacing:22.743040pt;}
.ls23{letter-spacing:23.632640pt;}
.ls25{letter-spacing:35.521707pt;}
.ls28{letter-spacing:38.081707pt;}
.ls22{letter-spacing:38.331307pt;}
.ls24{letter-spacing:50.881707pt;}
.ls21{letter-spacing:53.051307pt;}
.ls1d{letter-spacing:115.543040pt;}
.ls1e{letter-spacing:118.743040pt;}
.ls1c{letter-spacing:131.521707pt;}
.ls1f{letter-spacing:134.081707pt;}
.ls1b{letter-spacing:146.881707pt;}
.ls11{letter-spacing:177.920000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.274667pt;}
.ws9{word-spacing:-14.080000pt;}
.wsd{word-spacing:-14.033920pt;}
.wsc{word-spacing:-13.782933pt;}
.ws5{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws23{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.390400pt;}
.ws15{word-spacing:-12.320000pt;}
.wsf{word-spacing:-9.560533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws10{word-spacing:-9.078933pt;}
.wsb{word-spacing:-8.870400pt;}
.ws14{word-spacing:-8.651520pt;}
.ws12{word-spacing:-8.636160pt;}
.ws21{word-spacing:-8.256157pt;}
.ws1e{word-spacing:-5.905370pt;}
.ws17{word-spacing:-5.905075pt;}
.ws1a{word-spacing:-5.904779pt;}
.ws20{word-spacing:-5.119199pt;}
.ws18{word-spacing:-4.726824pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:18.475788pt;}
.ws1c{word-spacing:20.780074pt;}
.ws1b{word-spacing:47.546456pt;}
.ws1f{word-spacing:49.114082pt;}
.ws19{word-spacing:110.972709pt;}
.ws16{word-spacing:112.343973pt;}
._1f{margin-left:-123.612800pt;}
._1d{margin-left:-121.866240pt;}
._1a{margin-left:-5.902080pt;}
._19{margin-left:-4.663680pt;}
._f{margin-left:-3.559040pt;}
._e{margin-left:-2.549760pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.921600pt;}
._b{width:2.203947pt;}
._a{width:3.187200pt;}
._d{width:4.672000pt;}
._c{width:5.790080pt;}
._14{width:7.064960pt;}
._8{width:8.570667pt;}
._7{width:9.880320pt;}
._9{width:10.889600pt;}
._6{width:12.323840pt;}
._16{width:13.365760pt;}
._1e{width:14.970880pt;}
._15{width:16.368640pt;}
._5{width:17.566720pt;}
._4{width:18.467200pt;}
._17{width:19.453440pt;}
._2{width:20.398080pt;}
._3{width:21.407360pt;}
._10{width:22.682240pt;}
._18{width:23.910400pt;}
._21{width:26.301440pt;}
._26{width:29.198001pt;}
._13{width:31.287680pt;}
._12{width:32.243840pt;}
._27{width:33.837520pt;}
._11{width:36.068480pt;}
._23{width:54.111852pt;}
._24{width:55.041860pt;}
._28{width:68.745173pt;}
._20{width:88.944960pt;}
._25{width:117.492495pt;}
._22{width:119.011671pt;}
._1b{width:177.143040pt;}
._1c{width:178.803627pt;}
.fs8{font-size:16.000000pt;}
.fs12{font-size:17.002964pt;}
.fse{font-size:17.003814pt;}
.fs16{font-size:17.004665pt;}
.fs1a{font-size:18.414386pt;}
.fs13{font-size:21.240214pt;}
.fsf{font-size:21.241276pt;}
.fs17{font-size:21.242338pt;}
.fs15{font-size:24.064019pt;}
.fs11{font-size:24.065223pt;}
.fs19{font-size:24.066426pt;}
.fs1c{font-size:26.888682pt;}
.fs1b{font-size:29.698408pt;}
.fsb{font-size:32.000000pt;}
.fs14{font-size:32.017972pt;}
.fsc{font-size:34.560000pt;}
.fs18{font-size:35.229694pt;}
.fs10{font-size:36.842945pt;}
.fs5{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs1d{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.y10b{bottom:3.040000pt;}
.y195{bottom:5.614806pt;}
.y1b9{bottom:6.240000pt;}
.y175{bottom:6.318319pt;}
.y169{bottom:6.318627pt;}
.y192{bottom:6.318951pt;}
.y12e{bottom:10.400000pt;}
.y129{bottom:10.560000pt;}
.y138{bottom:10.720000pt;}
.y10{bottom:12.800000pt;}
.y128{bottom:15.360000pt;}
.y1e6{bottom:16.000000pt;}
.y1ad{bottom:16.176025pt;}
.y12d{bottom:18.120000pt;}
.y12a{bottom:18.240000pt;}
.y17{bottom:18.880000pt;}
.y196{bottom:20.057452pt;}
.y173{bottom:21.113011pt;}
.y167{bottom:21.114048pt;}
.y190{bottom:21.115122pt;}
.y135{bottom:24.320000pt;}
.y137{bottom:24.480000pt;}
.y35{bottom:26.240000pt;}
.y172{bottom:27.456110pt;}
.y166{bottom:27.457473pt;}
.y18f{bottom:27.458856pt;}
.y16{bottom:34.266667pt;}
.y197{bottom:34.500097pt;}
.y1ac{bottom:36.961456pt;}
.y16c{bottom:37.314648pt;}
.y161{bottom:38.019745pt;}
.y189{bottom:38.021649pt;}
.y34{bottom:41.600000pt;}
.y198{bottom:48.590885pt;}
.y15{bottom:49.626667pt;}
.y33{bottom:56.960000pt;}
.y1ab{bottom:57.392828pt;}
.y199{bottom:63.031328pt;}
.y14{bottom:64.986667pt;}
.y16d{bottom:65.495983pt;}
.y18a{bottom:66.207454pt;}
.y162{bottom:67.624926pt;}
.y32{bottom:72.320000pt;}
.y174{bottom:76.426664pt;}
.y19a{bottom:77.474523pt;}
.y1aa{bottom:77.826951pt;}
.y13{bottom:80.346667pt;}
.y191{bottom:81.721212pt;}
.y18{bottom:84.826667pt;}
.y31{bottom:87.680000pt;}
.y19b{bottom:91.917719pt;}
.y168{bottom:91.926946pt;}
.y12{bottom:93.626667pt;}
.y16e{bottom:93.678969pt;}
.y18b{bottom:94.393259pt;}
.y163{bottom:97.566028pt;}
.y1a9{bottom:98.261079pt;}
.y30{bottom:102.880000pt;}
.y19c{bottom:106.360915pt;}
.y2f{bottom:118.240000pt;}
.y1a8{bottom:119.047611pt;}
.y19d{bottom:120.451704pt;}
.y16f{bottom:121.867462pt;}
.y18c{bottom:122.226604pt;}
.y164{bottom:127.160194pt;}
.y2e{bottom:133.600000pt;}
.y19e{bottom:134.894900pt;}
.y42{bottom:137.920000pt;}
.y207{bottom:138.080000pt;}
.ydf{bottom:138.400000pt;}
.y1a7{bottom:139.481734pt;}
.y1d9{bottom:144.026667pt;}
.y200{bottom:144.346667pt;}
.y11f{bottom:147.066667pt;}
.y8e{bottom:147.706667pt;}
.y2d{bottom:148.960000pt;}
.y19f{bottom:149.338095pt;}
.y170{bottom:150.050448pt;}
.y18d{bottom:150.417916pt;}
.y78{bottom:151.706667pt;}
.y1f7{bottom:152.186667pt;}
.yc9{bottom:152.666667pt;}
.y1a6{bottom:153.572494pt;}
.y1a5{bottom:153.572498pt;}
.y1a4{bottom:153.572502pt;}
.y1a3{bottom:153.572505pt;}
.y1a2{bottom:153.572509pt;}
.y1a1{bottom:153.572513pt;}
.y1a0{bottom:153.572517pt;}
.y14b{bottom:153.626667pt;}
.y41{bottom:154.906667pt;}
.y165{bottom:156.748853pt;}
.y206{bottom:162.266667pt;}
.yde{bottom:162.586667pt;}
.y2c{bottom:164.360000pt;}
.y8d{bottom:164.506667pt;}
.y187{bottom:166.266667pt;}
.y235{bottom:166.426667pt;}
.yaa{bottom:167.706667pt;}
.y1d8{bottom:168.026667pt;}
.y77{bottom:168.506667pt;}
.yc8{bottom:168.666667pt;}
.y104{bottom:169.946667pt;}
.y11e{bottom:171.066667pt;}
.y1f6{bottom:176.346667pt;}
.y14a{bottom:177.786667pt;}
.y171{bottom:178.233435pt;}
.y18e{bottom:178.603721pt;}
.ydd{bottom:178.746667pt;}
.y40{bottom:179.546667pt;}
.y2b{bottom:179.720000pt;}
.y234{bottom:180.986667pt;}
.y8c{bottom:181.466667pt;}
.y186{bottom:182.266667pt;}
.y205{bottom:183.386667pt;}
.ya9{bottom:183.866667pt;}
.y1d7{bottom:184.186667pt;}
.y176{bottom:184.577084pt;}
.y16a{bottom:184.586311pt;}
.y193{bottom:184.595545pt;}
.y1ff{bottom:184.666667pt;}
.yc7{bottom:184.826667pt;}
.y76{bottom:185.466667pt;}
.y1ae{bottom:185.619564pt;}
.y103{bottom:186.106667pt;}
.y1f5{bottom:192.506667pt;}
.y149{bottom:193.946667pt;}
.y2a{bottom:194.920000pt;}
.y11d{bottom:195.226667pt;}
.y233{bottom:195.706667pt;}
.y3f{bottom:196.186667pt;}
.y8b{bottom:198.266667pt;}
.y185{bottom:198.426667pt;}
.ya8{bottom:199.866667pt;}
.y1d6{bottom:200.346667pt;}
.y1fe{bottom:200.666667pt;}
.yc6{bottom:200.986667pt;}
.y102{bottom:202.266667pt;}
.ydc{bottom:202.746667pt;}
.y15f{bottom:203.226667pt;}
.y75{bottom:206.106667pt;}
.y1f4{bottom:208.666667pt;}
.y29{bottom:210.280000pt;}
.y19{bottom:210.586667pt;}
.y232{bottom:214.266667pt;}
.y184{bottom:214.586667pt;}
.y8a{bottom:215.226667pt;}
.ya7{bottom:216.026667pt;}
.y15e{bottom:216.346667pt;}
.y16b{bottom:216.466667pt;}
.y1d5{bottom:216.506667pt;}
.y148{bottom:217.946667pt;}
.y101{bottom:218.266667pt;}
.y11c{bottom:219.386667pt;}
.y74{bottom:223.226667pt;}
.ydb{bottom:223.866667pt;}
.y1f3{bottom:224.666667pt;}
.y1fd{bottom:224.826667pt;}
.yc5{bottom:224.986667pt;}
.y28{bottom:225.640000pt;}
.y231{bottom:228.826667pt;}
.y183{bottom:230.586667pt;}
.y89{bottom:232.026667pt;}
.y1d4{bottom:232.506667pt;}
.y147{bottom:234.106667pt;}
.y100{bottom:234.426667pt;}
.y11b{bottom:235.546667pt;}
.y73{bottom:240.026667pt;}
.y1fc{bottom:240.986667pt;}
.y27{bottom:241.000000pt;}
.yc3{bottom:241.146667pt;}
.yc4{bottom:243.866667pt;}
.y182{bottom:246.746667pt;}
.y230{bottom:247.386667pt;}
.ya6{bottom:248.186667pt;}
.y1d3{bottom:248.666667pt;}
.y1f2{bottom:248.826667pt;}
.y88{bottom:248.986667pt;}
.y3d{bottom:249.000000pt;}
.yff{bottom:250.586667pt;}
.y26{bottom:256.360000pt;}
.y72{bottom:256.986667pt;}
.y146{bottom:258.106667pt;}
.y11a{bottom:259.546667pt;}
.y22f{bottom:261.946667pt;}
.y181{bottom:262.906667pt;}
.ya5{bottom:264.346667pt;}
.y3c{bottom:264.360000pt;}
.y1d2{bottom:264.666667pt;}
.yc1{bottom:265.146667pt;}
.y87{bottom:265.786667pt;}
.yfe{bottom:266.586667pt;}
.yc2{bottom:266.746667pt;}
.y25{bottom:271.560000pt;}
.yc0{bottom:272.186667pt;}
.y1f1{bottom:273.626667pt;}
.y71{bottom:273.786667pt;}
.y145{bottom:274.266667pt;}
.y119{bottom:275.706667pt;}
.y22e{bottom:276.506667pt;}
.y180{bottom:278.906667pt;}
.y3b{bottom:279.720000pt;}
.ya4{bottom:280.346667pt;}
.y1d1{bottom:280.826667pt;}
.y1fb{bottom:280.986667pt;}
.yfd{bottom:282.746667pt;}
.y86{bottom:286.426667pt;}
.y24{bottom:286.920000pt;}
.y1f0{bottom:289.786667pt;}
.y70{bottom:290.586667pt;}
.y118{bottom:291.706667pt;}
.y17f{bottom:295.066667pt;}
.y3a{bottom:295.080000pt;}
.y144{bottom:298.426667pt;}
.yfc{bottom:298.906667pt;}
.ybf{bottom:299.386667pt;}
.y1fa{bottom:302.266667pt;}
.y23{bottom:302.280000pt;}
.y1d0{bottom:302.586667pt;}
.y85{bottom:303.546667pt;}
.ya3{bottom:304.506667pt;}
.y1ef{bottom:305.946667pt;}
.ybe{bottom:306.426667pt;}
.y6f{bottom:307.546667pt;}
.y117{bottom:307.866667pt;}
.y22d{bottom:309.626667pt;}
.y39{bottom:310.440000pt;}
.y17e{bottom:311.066667pt;}
.y143{bottom:314.586667pt;}
.yfb{bottom:314.906667pt;}
.y22{bottom:317.640000pt;}
.y1cf{bottom:318.586667pt;}
.y84{bottom:320.346667pt;}
.y1ee{bottom:321.946667pt;}
.y116{bottom:324.026667pt;}
.y6e{bottom:324.346667pt;}
.y38{bottom:325.640000pt;}
.y22c{bottom:328.186667pt;}
.ya2{bottom:329.306667pt;}
.y3e{bottom:330.280000pt;}
.y142{bottom:330.586667pt;}
.yfa{bottom:331.066667pt;}
.y21{bottom:333.000000pt;}
.y1ce{bottom:334.746667pt;}
.y17d{bottom:335.226667pt;}
.ybd{bottom:335.706667pt;}
.y83{bottom:337.306667pt;}
.y1ed{bottom:338.106667pt;}
.y37{bottom:338.920000pt;}
.y115{bottom:340.026667pt;}
.y6d{bottom:341.306667pt;}
.ybc{bottom:342.746667pt;}
.ya1{bottom:345.466667pt;}
.y141{bottom:346.746667pt;}
.yf9{bottom:347.066667pt;}
.y20{bottom:348.360000pt;}
.y1cd{bottom:350.906667pt;}
.y25c{bottom:351.066667pt;}
.y82{bottom:354.106667pt;}
.y114{bottom:356.186667pt;}
.y17c{bottom:356.346667pt;}
.y194{bottom:356.453333pt;}
.y22b{bottom:357.306667pt;}
.y6c{bottom:358.106667pt;}
.y140{bottom:362.786667pt;}
.y1f{bottom:363.560000pt;}
.y1cc{bottom:366.946667pt;}
.ya0{bottom:369.666667pt;}
.y1ec{bottom:370.306667pt;}
.y81{bottom:370.946667pt;}
.yf8{bottom:371.266667pt;}
.y113{bottom:372.386667pt;}
.y25b{bottom:372.706667pt;}
.ybb{bottom:374.786667pt;}
.y6b{bottom:374.946667pt;}
.y22a{bottom:375.906667pt;}
.y1e{bottom:378.946667pt;}
.yba{bottom:381.826667pt;}
.y1cb{bottom:383.106667pt;}
.y25a{bottom:387.266667pt;}
.y80{bottom:387.906667pt;}
.y112{bottom:388.386667pt;}
.y229{bottom:390.466667pt;}
.y6a{bottom:391.906667pt;}
.y1eb{bottom:392.066667pt;}
.y1d{bottom:394.306667pt;}
.y9f{bottom:394.466667pt;}
.y13f{bottom:395.106667pt;}
.yf7{bottom:396.226667pt;}
.y1ca{bottom:399.266667pt;}
.y259{bottom:405.826667pt;}
.y1ea{bottom:408.066667pt;}
.y7f{bottom:408.546667pt;}
.y69{bottom:408.706667pt;}
.y228{bottom:409.026667pt;}
.y1c{bottom:409.666667pt;}
.yb9{bottom:410.466667pt;}
.y111{bottom:412.546667pt;}
.y1c9{bottom:415.906667pt;}
.y13e{bottom:419.106667pt;}
.y9e{bottom:419.266667pt;}
.y258{bottom:420.386667pt;}
.yf6{bottom:420.866667pt;}
.y227{bottom:423.586667pt;}
.y1e9{bottom:424.226667pt;}
.y1b{bottom:425.026667pt;}
.y68{bottom:425.666667pt;}
.yb8{bottom:426.626667pt;}
.y110{bottom:434.946667pt;}
.y1c8{bottom:435.746667pt;}
.y1a{bottom:438.306667pt;}
.y257{bottom:438.946667pt;}
.y9d{bottom:440.386667pt;}
.y160{bottom:440.560000pt;}
.y13d{bottom:440.866667pt;}
.y226{bottom:442.146667pt;}
.y67{bottom:442.466667pt;}
.yb7{bottom:442.786667pt;}
.yf5{bottom:445.026667pt;}
.y10f{bottom:451.106667pt;}
.y256{bottom:453.506667pt;}
.y1e8{bottom:456.386667pt;}
.y225{bottom:456.706667pt;}
.yb6{bottom:458.786667pt;}
.y66{bottom:459.266667pt;}
.y1c7{bottom:459.746667pt;}
.y10e{bottom:467.266667pt;}
.yf4{bottom:469.186667pt;}
.y13c{bottom:470.626667pt;}
.y255{bottom:472.066667pt;}
.y1e7{bottom:472.546667pt;}
.yb5{bottom:474.946667pt;}
.y224{bottom:475.266667pt;}
.y1c6{bottom:475.906667pt;}
.y65{bottom:476.226667pt;}
.y10d{bottom:483.266667pt;}
.y204{bottom:486.466667pt;}
.y254{bottom:486.626667pt;}
.y1e5{bottom:489.346667pt;}
.y223{bottom:489.826667pt;}
.yb4{bottom:490.946667pt;}
.y1c5{bottom:492.066667pt;}
.y64{bottom:493.026667pt;}
.yf3{bottom:493.186667pt;}
.y10c{bottom:499.426667pt;}
.y13b{bottom:500.546667pt;}
.y253{bottom:501.186667pt;}
.yb3{bottom:507.106667pt;}
.y203{bottom:507.586667pt;}
.y1c4{bottom:508.226667pt;}
.y222{bottom:508.386667pt;}
.y63{bottom:509.986667pt;}
.y10a{bottom:516.226667pt;}
.y1e4{bottom:517.026667pt;}
.yf2{bottom:517.346667pt;}
.y252{bottom:519.746667pt;}
.y221{bottom:522.946667pt;}
.yb2{bottom:523.266667pt;}
.y1c3{bottom:524.226667pt;}
.y62{bottom:526.786667pt;}
.y13a{bottom:530.306667pt;}
.y251{bottom:534.306667pt;}
.y220{bottom:537.506667pt;}
.yb1{bottom:539.266667pt;}
.y1c2{bottom:540.386667pt;}
.y1e3{bottom:541.186667pt;}
.yf1{bottom:541.346667pt;}
.y61{bottom:543.586667pt;}
.y109{bottom:543.906667pt;}
.y250{bottom:552.866667pt;}
.y11{bottom:555.266667pt;}
.yb0{bottom:555.426667pt;}
.y21f{bottom:556.066667pt;}
.y1e2{bottom:557.346667pt;}
.y17b{bottom:559.266667pt;}
.y139{bottom:560.066667pt;}
.y60{bottom:560.546667pt;}
.y1c1{bottom:564.546667pt;}
.yf0{bottom:565.506667pt;}
.y24f{bottom:567.586667pt;}
.y108{bottom:568.066667pt;}
.y21e{bottom:570.626667pt;}
.yaf{bottom:571.426667pt;}
.y1e1{bottom:573.346667pt;}
.y5f{bottom:577.346667pt;}
.y107{bottom:581.213333pt;}
.y17a{bottom:583.453333pt;}
.y24e{bottom:586.173333pt;}
.yae{bottom:587.613333pt;}
.y1c0{bottom:589.373333pt;}
.y1e0{bottom:589.533333pt;}
.yef{bottom:589.693333pt;}
.y136{bottom:589.853333pt;}
.y5e{bottom:594.333333pt;}
.y7e{bottom:598.173333pt;}
.y24d{bottom:600.733333pt;}
.y21d{bottom:601.693333pt;}
.y179{bottom:604.573333pt;}
.y1df{bottom:605.693333pt;}
.yad{bottom:611.773333pt;}
.yee{bottom:613.693333pt;}
.y1bf{bottom:614.173333pt;}
.y5d{bottom:614.973333pt;}
.y7d{bottom:615.133333pt;}
.y24c{bottom:619.293333pt;}
.y1de{bottom:621.693333pt;}
.y1f9{bottom:626.173333pt;}
.y21c{bottom:626.493333pt;}
.y1be{bottom:630.333333pt;}
.y5c{bottom:631.933333pt;}
.y134{bottom:634.173333pt;}
.yac{bottom:636.573333pt;}
.yed{bottom:637.853333pt;}
.yda{bottom:638.013333pt;}
.y15d{bottom:643.453333pt;}
.y1bd{bottom:646.333333pt;}
.y1f8{bottom:647.453333pt;}
.y5b{bottom:648.893333pt;}
.y21b{bottom:651.453333pt;}
.y24b{bottom:652.413333pt;}
.y1dd{bottom:653.853333pt;}
.yd9{bottom:654.173333pt;}
.yf{bottom:654.653333pt;}
.yab{bottom:657.533333pt;}
.y15c{bottom:659.613333pt;}
.yec{bottom:662.013333pt;}
.y1bc{bottom:662.493333pt;}
.y5a{bottom:665.693333pt;}
.y24a{bottom:666.973333pt;}
.y1dc{bottom:670.013333pt;}
.y15b{bottom:675.773333pt;}
.y21a{bottom:676.093333pt;}
.yd8{bottom:678.173333pt;}
.y1bb{bottom:678.653333pt;}
.y9c{bottom:680.413333pt;}
.y59{bottom:682.653333pt;}
.y249{bottom:685.533333pt;}
.y133{bottom:689.373333pt;}
.y15a{bottom:691.773333pt;}
.y219{bottom:692.253333pt;}
.ye{bottom:694.173333pt;}
.y9b{bottom:696.573333pt;}
.y58{bottom:699.453333pt;}
.y248{bottom:700.093333pt;}
.y1ba{bottom:700.253333pt;}
.yd7{bottom:702.173333pt;}
.yd{bottom:709.373333pt;}
.y132{bottom:711.133333pt;}
.y9a{bottom:712.573333pt;}
.y159{bottom:713.533333pt;}
.y57{bottom:716.413333pt;}
.yeb{bottom:718.173333pt;}
.y247{bottom:718.653333pt;}
.y1db{bottom:718.973333pt;}
.yc{bottom:724.733333pt;}
.yd6{bottom:726.333333pt;}
.y131{bottom:726.493333pt;}
.y99{bottom:728.733333pt;}
.y158{bottom:729.693333pt;}
.y1b8{bottom:732.573333pt;}
.y202{bottom:733.053333pt;}
.y56{bottom:733.213333pt;}
.y1da{bottom:739.933333pt;}
.yb{bottom:740.253333pt;}
.y218{bottom:741.213333pt;}
.yea{bottom:742.333333pt;}
.y98{bottom:744.893333pt;}
.y157{bottom:745.693333pt;}
.y55{bottom:750.013333pt;}
.yd5{bottom:750.493333pt;}
.y246{bottom:751.773333pt;}
.y1b7{bottom:752.573333pt;}
.y201{bottom:754.173333pt;}
.y130{bottom:757.213333pt;}
.y217{bottom:757.373333pt;}
.ye9{bottom:758.493333pt;}
.y97{bottom:760.893333pt;}
.ya{bottom:761.053333pt;}
.y156{bottom:761.853333pt;}
.y245{bottom:766.333333pt;}
.y54{bottom:766.973333pt;}
.y12f{bottom:772.573333pt;}
.y216{bottom:773.373333pt;}
.yd4{bottom:774.493333pt;}
.y9{bottom:777.053333pt;}
.y155{bottom:777.853333pt;}
.y1b6{bottom:780.413333pt;}
.ye8{bottom:782.493333pt;}
.y53{bottom:783.773333pt;}
.y244{bottom:784.893333pt;}
.y12c{bottom:787.933333pt;}
.y215{bottom:789.533333pt;}
.y96{bottom:793.213333pt;}
.y154{bottom:794.013333pt;}
.yd3{bottom:798.653333pt;}
.y243{bottom:799.453333pt;}
.y7c{bottom:800.773333pt;}
.y1b5{bottom:804.453333pt;}
.y52{bottom:804.613333pt;}
.y8{bottom:805.093333pt;}
.y214{bottom:805.733333pt;}
.ye7{bottom:806.693333pt;}
.y178{bottom:807.493333pt;}
.y95{bottom:809.253333pt;}
.y153{bottom:810.213333pt;}
.y7b{bottom:817.573333pt;}
.y242{bottom:818.053333pt;}
.y12b{bottom:818.533333pt;}
.y1b4{bottom:820.613333pt;}
.y51{bottom:821.573333pt;}
.y213{bottom:821.733333pt;}
.yd2{bottom:822.853333pt;}
.y94{bottom:825.413333pt;}
.y152{bottom:826.213333pt;}
.y177{bottom:828.613333pt;}
.y188{bottom:828.720000pt;}
.y241{bottom:832.613333pt;}
.y7a{bottom:834.373333pt;}
.y127{bottom:834.533333pt;}
.y1b3{bottom:836.773333pt;}
.y212{bottom:837.893333pt;}
.y50{bottom:838.373333pt;}
.y7{bottom:839.493333pt;}
.y93{bottom:841.413333pt;}
.y151{bottom:842.373333pt;}
.yd1{bottom:846.853333pt;}
.y240{bottom:847.173333pt;}
.y1b2{bottom:852.773333pt;}
.y211{bottom:853.893333pt;}
.y79{bottom:855.173333pt;}
.y4f{bottom:855.333333pt;}
.y92{bottom:857.573333pt;}
.y6{bottom:857.893333pt;}
.y150{bottom:858.533333pt;}
.ye6{bottom:863.013333pt;}
.y23f{bottom:865.733333pt;}
.y1b1{bottom:868.933333pt;}
.y210{bottom:870.053333pt;}
.yd0{bottom:871.013333pt;}
.y4e{bottom:872.133333pt;}
.y14f{bottom:874.533333pt;}
.y126{bottom:876.933333pt;}
.y23e{bottom:880.293333pt;}
.y91{bottom:881.733333pt;}
.y20f{bottom:886.213333pt;}
.ye5{bottom:887.013333pt;}
.y4d{bottom:889.093333pt;}
.y14e{bottom:890.693333pt;}
.y5{bottom:892.293333pt;}
.ycf{bottom:895.013333pt;}
.y125{bottom:898.693333pt;}
.y23d{bottom:898.853333pt;}
.y20e{bottom:902.213333pt;}
.y4c{bottom:905.893333pt;}
.y90{bottom:906.533333pt;}
.y1b0{bottom:906.693333pt;}
.y14d{bottom:907.493333pt;}
.ye4{bottom:911.173333pt;}
.y23c{bottom:913.413333pt;}
.y124{bottom:914.693333pt;}
.y20d{bottom:918.373333pt;}
.yce{bottom:919.173333pt;}
.y4b{bottom:922.693333pt;}
.y1af{bottom:922.853333pt;}
.y4{bottom:923.173333pt;}
.y23b{bottom:927.973333pt;}
.y123{bottom:930.853333pt;}
.y20c{bottom:934.533333pt;}
.y14c{bottom:935.173333pt;}
.ye3{bottom:935.333333pt;}
.y8f{bottom:939.493333pt;}
.y4a{bottom:939.653333pt;}
.y106{bottom:943.173333pt;}
.ycd{bottom:943.333333pt;}
.y23a{bottom:946.533333pt;}
.y122{bottom:947.013333pt;}
.y20b{bottom:950.533333pt;}
.y49{bottom:956.453333pt;}
.ye2{bottom:959.333333pt;}
.y239{bottom:961.093333pt;}
.y121{bottom:963.013333pt;}
.y20a{bottom:966.693333pt;}
.ycc{bottom:967.333333pt;}
.y48{bottom:973.413333pt;}
.y105{bottom:975.493333pt;}
.y238{bottom:975.653333pt;}
.y120{bottom:979.813333pt;}
.y209{bottom:982.693333pt;}
.ye1{bottom:983.493333pt;}
.y47{bottom:990.213333pt;}
.ycb{bottom:991.493333pt;}
.y237{bottom:994.213333pt;}
.y208{bottom:1006.853333pt;}
.y46{bottom:1007.013333pt;}
.ye0{bottom:1007.493333pt;}
.yca{bottom:1007.653333pt;}
.y236{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.h20{height:15.360000pt;}
.hd{height:15.695312pt;}
.h1d{height:16.000000pt;}
.h3f{height:16.032000pt;}
.h1e{height:16.160000pt;}
.h29{height:16.192000pt;}
.h31{height:17.733560pt;}
.h2c{height:17.734447pt;}
.h35{height:17.735334pt;}
.h3a{height:19.205630pt;}
.h3e{height:19.360000pt;}
.h32{height:22.152879pt;}
.h2d{height:22.153987pt;}
.h36{height:22.155095pt;}
.h34{height:25.098020pt;}
.h2f{height:25.099275pt;}
.h38{height:25.100530pt;}
.h3d{height:28.044055pt;}
.h27{height:29.760000pt;}
.h26{height:29.792000pt;}
.h28{height:29.920000pt;}
.h21{height:30.592000pt;}
.h1f{height:30.720000pt;}
.h3b{height:30.974511pt;}
.h33{height:33.393744pt;}
.ha{height:35.840000pt;}
.h41{height:36.562188pt;}
.h6{height:36.715000pt;}
.h37{height:36.743470pt;}
.h2e{height:38.426040pt;}
.h13{height:40.727500pt;}
.h23{height:43.520000pt;}
.h25{height:43.680000pt;}
.h24{height:47.109375pt;}
.h40{height:49.621875pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h22{height:52.478750pt;}
.h9{height:53.535000pt;}
.h2a{height:55.247500pt;}
.h7{height:55.275000pt;}
.h1c{height:55.402500pt;}
.h14{height:56.760000pt;}
.h2{height:57.787500pt;}
.h1b{height:58.740000pt;}
.hb{height:59.340000pt;}
.h18{height:60.303437pt;}
.h11{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:75.465000pt;}
.h19{height:78.520000pt;}
.h1a{height:80.657500pt;}
.h3{height:85.785000pt;}
.h15{height:91.023438pt;}
.h17{height:93.828125pt;}
.hc{height:97.312000pt;}
.h16{height:111.377500pt;}
.h12{height:136.303125pt;}
.h39{height:185.284673pt;}
.h2b{height:191.920000pt;}
.h3c{height:191.960000pt;}
.h30{height:191.972503pt;}
.h10{height:342.746667pt;}
.hf{height:441.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w10{width:42.080000pt;}
.wa{width:47.200000pt;}
.w19{width:47.360000pt;}
.w20{width:48.352000pt;}
.w2a{width:48.800000pt;}
.w1c{width:49.280000pt;}
.w1d{width:49.472000pt;}
.w34{width:49.632000pt;}
.w12{width:52.000000pt;}
.w2b{width:53.440000pt;}
.w1b{width:53.920000pt;}
.w16{width:53.952000pt;}
.w1a{width:54.112000pt;}
.w1e{width:54.240000pt;}
.w1f{width:54.400000pt;}
.w15{width:54.720000pt;}
.w14{width:56.832000pt;}
.w9{width:58.240000pt;}
.w13{width:61.280000pt;}
.w11{width:62.112000pt;}
.wf{width:71.040000pt;}
.w7{width:71.360000pt;}
.wc{width:73.760000pt;}
.w35{width:74.720000pt;}
.w37{width:74.880000pt;}
.w36{width:74.912000pt;}
.w21{width:75.200000pt;}
.w2c{width:76.832000pt;}
.w17{width:78.080000pt;}
.w2f{width:79.040000pt;}
.wb{width:79.552000pt;}
.w8{width:81.472000pt;}
.w2e{width:81.760000pt;}
.w18{width:82.560000pt;}
.w33{width:92.000000pt;}
.w32{width:107.072000pt;}
.w24{width:109.952000pt;}
.w2d{width:120.832000pt;}
.w30{width:131.232000pt;}
.w22{width:134.426667pt;}
.w23{width:138.906667pt;}
.w31{width:142.266667pt;}
.we{width:168.026667pt;}
.w6{width:176.506667pt;}
.wd{width:203.226667pt;}
.w3{width:211.546667pt;}
.w29{width:225.466667pt;}
.w26{width:291.126805pt;}
.w28{width:311.446077pt;}
.w27{width:320.329725pt;}
.w25{width:334.998384pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x6f{left:8.640000pt;}
.x4f{left:10.665733pt;}
.x49{left:12.273013pt;}
.x4d{left:13.326983pt;}
.x46{left:15.335301pt;}
.x86{left:17.320000pt;}
.x58{left:18.785754pt;}
.x80{left:21.280000pt;}
.x57{left:22.885780pt;}
.x45{left:23.933774pt;}
.x51{left:29.868039pt;}
.x5c{left:31.107733pt;}
.x4b{left:32.532230pt;}
.x67{left:33.649350pt;}
.x59{left:38.135054pt;}
.x6d{left:48.476347pt;}
.x87{left:60.960000pt;}
.x85{left:62.560000pt;}
.x62{left:66.742798pt;}
.x68{left:68.450537pt;}
.x4a{left:75.475884pt;}
.x29{left:79.072000pt;}
.x50{left:79.983503pt;}
.x4e{left:81.068420pt;}
.x47{left:92.036677pt;}
.x5{left:96.031988pt;}
.x5b{left:98.568612pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x19{left:120.031988pt;}
.x69{left:123.799590pt;}
.x78{left:128.831988pt;}
.x63{left:132.360454pt;}
.x6a{left:136.916196pt;}
.x7d{left:139.066667pt;}
.x1c{left:144.026655pt;}
.x2a{left:150.106667pt;}
.x12{left:153.626655pt;}
.x5a{left:163.124111pt;}
.xa{left:164.666667pt;}
.x64{left:166.595058pt;}
.x3e{left:167.866667pt;}
.xc{left:169.626655pt;}
.x48{left:173.048747pt;}
.x6b{left:173.992585pt;}
.x35{left:178.586667pt;}
.x3d{left:191.226655pt;}
.x2b{left:192.186667pt;}
.x53{left:199.386655pt;}
.x7a{left:201.466655pt;}
.x6c{left:205.376527pt;}
.x15{left:206.906655pt;}
.x13{left:208.826655pt;}
.x26{left:211.386667pt;}
.x70{left:214.426655pt;}
.x54{left:219.226655pt;}
.x16{left:224.506655pt;}
.x36{left:225.946667pt;}
.x44{left:228.960000pt;}
.x7e{left:231.066667pt;}
.x65{left:232.186960pt;}
.x14{left:234.906655pt;}
.x56{left:236.800000pt;}
.x5d{left:241.240000pt;}
.xf{left:243.706655pt;}
.x43{left:244.666655pt;}
.x76{left:246.266667pt;}
.x4c{left:250.960000pt;}
.x2c{left:254.306667pt;}
.x28{left:260.386655pt;}
.x17{left:261.506655pt;}
.x66{left:265.853207pt;}
.x1f{left:272.546667pt;}
.x1e{left:275.426655pt;}
.x3{left:279.426655pt;}
.x7f{left:280.706667pt;}
.x11{left:288.066655pt;}
.x7c{left:291.266655pt;}
.x89{left:292.706655pt;}
.x5f{left:294.954853pt;}
.x61{left:296.091560pt;}
.x5e{left:298.373875pt;}
.x60{left:299.510581pt;}
.x2d{left:306.306667pt;}
.x1b{left:308.546655pt;}
.x8{left:320.706667pt;}
.x73{left:327.586655pt;}
.x25{left:329.506655pt;}
.x71{left:331.906667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x20{left:343.906667pt;}
.x81{left:355.426667pt;}
.x2e{left:367.586667pt;}
.x3f{left:377.506667pt;}
.x37{left:383.266667pt;}
.x72{left:385.346667pt;}
.x34{left:397.026655pt;}
.x27{left:414.626667pt;}
.x74{left:416.573333pt;}
.x2f{left:424.413333pt;}
.x21{left:425.373333pt;}
.x18{left:428.893322pt;}
.x82{left:430.333333pt;}
.x38{left:432.733333pt;}
.x30{left:476.413333pt;}
.x22{left:483.613333pt;}
.x6e{left:485.373333pt;}
.x39{left:486.973333pt;}
.x83{left:505.213333pt;}
.x40{left:516.413333pt;}
.x77{left:519.773333pt;}
.x31{left:528.413333pt;}
.x23{left:530.813333pt;}
.x3a{left:541.373333pt;}
.x42{left:542.973322pt;}
.x55{left:552.733322pt;}
.x52{left:557.213322pt;}
.xe{left:559.933322pt;}
.x41{left:565.053322pt;}
.x84{left:580.093333pt;}
.x32{left:583.133333pt;}
.x3b{left:589.733333pt;}
.x75{left:591.493322pt;}
.x8a{left:606.533322pt;}
.x10{left:609.093322pt;}
.x24{left:610.373333pt;}
.x8b{left:612.453322pt;}
.x1a{left:614.053322pt;}
.x1d{left:617.093322pt;}
.x88{left:627.013322pt;}
.x33{left:637.093333pt;}
.x3c{left:644.133333pt;}
.x7b{left:649.093322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x79{left:677.093322pt;}
.x4{left:694.533322pt;}
}




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