
    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_d9e5fae4eabe21d63d827467.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_5b3ea0fad7c3154763c84ca0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a1d44f34fe1fd7c26b6a8ab0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e712ea9275673216d06e8699.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_d2215e7c08364338dbbfb2ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51d9db8e7f15a0e0d4088da4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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);}
.v2{vertical-align:-68.400000px;}
.v6{vertical-align:-65.520000px;}
.vd{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-60.480000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:13.800000px;}
.vc{vertical-align:23.736000px;}
.v3{vertical-align:30.240000px;}
.va{vertical-align:31.680000px;}
.v4{vertical-align:45.024000px;}
.v9{vertical-align:61.800000px;}
.v8{vertical-align:63.000000px;}
.ls30{letter-spacing:-0.972000px;}
.ls2d{letter-spacing:-0.828000px;}
.ls38{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.702000px;}
.ls13{letter-spacing:-0.612000px;}
.ls2a{letter-spacing:-0.594000px;}
.ls40{letter-spacing:-0.576000px;}
.ls42{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.220800px;}
.ls14{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.152400px;}
.ls23{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.027360px;}
.ls15{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.234000px;}
.ls39{letter-spacing:0.252000px;}
.ls25{letter-spacing:0.300000px;}
.ls3d{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.504000px;}
.ls3e{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.738000px;}
.ls1b{letter-spacing:0.900000px;}
.ls22{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.080000px;}
.ls3a{letter-spacing:1.620000px;}
.ls4{letter-spacing:2.340000px;}
.ls3f{letter-spacing:2.988000px;}
.ls6{letter-spacing:3.060000px;}
.ls20{letter-spacing:3.780000px;}
.ls1a{letter-spacing:4.500000px;}
.ls1f{letter-spacing:8.100000px;}
.ls21{letter-spacing:8.820000px;}
.ls3c{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.ls2e{letter-spacing:52.908000px;}
.ls29{letter-spacing:53.208000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls1c{letter-spacing:68.508000px;}
.lsa{letter-spacing:68.628000px;}
.ls1e{letter-spacing:115.428000px;}
.ls0{letter-spacing:154.980000px;}
.ls28{letter-spacing:187.500000px;}
.ls2f{letter-spacing:199.440000px;}
.ls26{letter-spacing:339.300000px;}
.ls27{letter-spacing:363.300000px;}
.ls32{letter-spacing:802.500000px;}
.ls35{letter-spacing:1122.900000px;}
.ls24{letter-spacing:1125.300000px;}
.ls36{letter-spacing:1205.100000px;}
.ls8{letter-spacing:1367.340000px;}
.ls3b{letter-spacing:1412.700000px;}
.ls34{letter-spacing:1464.900000px;}
.ls33{letter-spacing:1593.900000px;}
.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;}
}
.ws18{word-spacing:-54.000000px;}
.ws22{word-spacing:-30.816000px;}
.ws1e{word-spacing:-30.456000px;}
.ws7{word-spacing:-21.420000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.407600px;}
.ws3{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.436000px;}
.ws17{word-spacing:-14.238000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws29{word-spacing:-14.112000px;}
.ws20{word-spacing:-14.004000px;}
.ws6{word-spacing:-13.999200px;}
.ws4{word-spacing:-13.860000px;}
.ws2a{word-spacing:-13.824000px;}
.ws2b{word-spacing:-13.734000px;}
.wsc{word-spacing:-13.716000px;}
.ws10{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.wsd{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.ws1d{word-spacing:-13.374000px;}
.ws14{word-spacing:-13.284000px;}
.ws19{word-spacing:-13.248000px;}
.wsa{word-spacing:-13.140000px;}
.ws21{word-spacing:-12.996000px;}
.ws28{word-spacing:-12.924000px;}
.ws1f{word-spacing:-12.906000px;}
.ws13{word-spacing:-12.888000px;}
.ws16{word-spacing:-12.798000px;}
.ws23{word-spacing:-12.672000px;}
.ws24{word-spacing:-12.528000px;}
.ws8{word-spacing:-10.440000px;}
.ws27{word-spacing:-9.252000px;}
.wsb{word-spacing:-9.000000px;}
.ws25{word-spacing:-8.676000px;}
.ws26{word-spacing:-8.280000px;}
.ws1a{word-spacing:0.000000px;}
._4{margin-left:-324.078720px;}
._19{margin-left:-8.460000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._8{width:2.838000px;}
._7{width:4.290000px;}
._6{width:5.628000px;}
._9{width:7.301760px;}
._f{width:8.334240px;}
._c{width:9.444000px;}
._d{width:10.607520px;}
._a{width:12.108000px;}
._b{width:15.222000px;}
._11{width:17.819760px;}
._10{width:19.422000px;}
._21{width:42.660000px;}
._15{width:83.399520px;}
._12{width:100.421760px;}
._17{width:161.004000px;}
._1e{width:166.464000px;}
._1a{width:181.866000px;}
._1f{width:192.006000px;}
._25{width:199.614000px;}
._14{width:252.383760px;}
._1c{width:262.500000px;}
._16{width:317.148000px;}
._1d{width:450.803280px;}
._22{width:653.100000px;}
._1b{width:730.164000px;}
._29{width:825.912000px;}
._24{width:840.924000px;}
._27{width:848.459760px;}
._23{width:927.300000px;}
._26{width:967.871760px;}
._20{width:1069.500000px;}
._e{width:1085.904000px;}
._18{width:1226.700000px;}
._28{width:1239.479760px;}
._13{width:1423.500000px;}
._5{width:2034.840000px;}
._3{width:3030.660000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y17b{bottom:2.850000px;}
.y176{bottom:3.000000px;}
.y162{bottom:3.150000px;}
.y104{bottom:3.225000px;}
.y1b0{bottom:3.300000px;}
.y10a{bottom:3.405000px;}
.y11d{bottom:3.450000px;}
.y192{bottom:3.900000px;}
.y103{bottom:4.050000px;}
.yee{bottom:4.800000px;}
.y197{bottom:6.000000px;}
.yf8{bottom:6.150000px;}
.y1d5{bottom:6.450000px;}
.y206{bottom:7.050000px;}
.y20f{bottom:7.200000px;}
.y1b5{bottom:7.350000px;}
.y1d2{bottom:8.400000px;}
.yde{bottom:9.750000px;}
.y110{bottom:9.900000px;}
.y184{bottom:10.350000px;}
.y182{bottom:10.650000px;}
.ye1{bottom:10.800000px;}
.y15e{bottom:10.950000px;}
.y107{bottom:10.965000px;}
.ye4{bottom:11.100000px;}
.y10b{bottom:11.145000px;}
.y141{bottom:11.550000px;}
.y119{bottom:11.700000px;}
.ye7{bottom:12.150000px;}
.yea{bottom:12.450000px;}
.yef{bottom:12.600000px;}
.y1a1{bottom:12.750000px;}
.y1a0{bottom:12.900000px;}
.y19b{bottom:13.050000px;}
.y151{bottom:13.500000px;}
.y199{bottom:13.800000px;}
.y1ce{bottom:14.400000px;}
.y1b4{bottom:14.700000px;}
.y1b6{bottom:15.150000px;}
.yf1{bottom:15.600000px;}
.yf3{bottom:15.900000px;}
.y1d0{bottom:16.200000px;}
.y1e9{bottom:16.350000px;}
.yff{bottom:16.425000px;}
.y10f{bottom:16.500000px;}
.yfb{bottom:16.800000px;}
.y106{bottom:17.805000px;}
.y17a{bottom:18.300000px;}
.y161{bottom:18.600000px;}
.y165{bottom:18.750000px;}
.y108{bottom:18.885000px;}
.y11c{bottom:18.900000px;}
.y1d7{bottom:19.050000px;}
.y13e{bottom:19.200000px;}
.y11a{bottom:19.500000px;}
.y13c{bottom:19.650000px;}
.yed{bottom:20.250000px;}
.y12a{bottom:21.600000px;}
.y196{bottom:21.750000px;}
.y194{bottom:22.050000px;}
.y1d4{bottom:22.200000px;}
.y124{bottom:22.800000px;}
.y1dc{bottom:23.205000px;}
.y126{bottom:23.400000px;}
.y1d1{bottom:23.850000px;}
.y101{bottom:24.015000px;}
.y10c{bottom:24.075000px;}
.y1bd{bottom:25.200000px;}
.y163{bottom:26.100000px;}
.y15c{bottom:26.400000px;}
.y1fd{bottom:26.550000px;}
.y152{bottom:26.565000px;}
.y1b1{bottom:26.700000px;}
.y1ea{bottom:26.850000px;}
.y140{bottom:27.000000px;}
.y118{bottom:27.300000px;}
.y20c{bottom:27.450000px;}
.y15a{bottom:28.800000px;}
.y198{bottom:29.550000px;}
.y1cd{bottom:29.850000px;}
.y1c9{bottom:30.450000px;}
.y122{bottom:30.600000px;}
.yfe{bottom:30.915000px;}
.y1da{bottom:30.945000px;}
.y143{bottom:31.050000px;}
.y14c{bottom:31.350000px;}
.y211{bottom:31.650000px;}
.y6c{bottom:31.965000px;}
.y179{bottom:34.050000px;}
.y160{bottom:34.200000px;}
.y1af{bottom:34.350000px;}
.y153{bottom:34.365000px;}
.y1b8{bottom:34.950000px;}
.y13b{bottom:35.100000px;}
.y1{bottom:35.235000px;}
.y195{bottom:37.200000px;}
.y14f{bottom:37.215000px;}
.y12e{bottom:37.500000px;}
.y123{bottom:38.250000px;}
.y1db{bottom:38.685000px;}
.y14a{bottom:39.000000px;}
.y1e7{bottom:40.050000px;}
.y186{bottom:41.850000px;}
.y15d{bottom:42.000000px;}
.y187{bottom:42.300000px;}
.y20b{bottom:42.900000px;}
.y208{bottom:43.200000px;}
.y144{bottom:46.650000px;}
.y14b{bottom:46.800000px;}
.yb2{bottom:48.810000px;}
.y19d{bottom:49.050000px;}
.y19e{bottom:49.500000px;}
.y15f{bottom:49.800000px;}
.y20d{bottom:50.700000px;}
.y14e{bottom:52.965000px;}
.y3c{bottom:54.150000px;}
.y1e6{bottom:55.650000px;}
.y1e4{bottom:57.150000px;}
.y158{bottom:57.850500px;}
.y2{bottom:57.960000px;}
.y20a{bottom:58.350000px;}
.y39{bottom:61.155000px;}
.y1df{bottom:61.560000px;}
.y21d{bottom:61.920000px;}
.y1a9{bottom:62.220000px;}
.y109{bottom:62.715000px;}
.y1e2{bottom:64.800000px;}
.y1e0{bottom:65.730000px;}
.y157{bottom:67.500000px;}
.yb1{bottom:70.350000px;}
.y6b{bottom:71.385000px;}
.y1e3{bottom:72.750000px;}
.y38{bottom:76.815000px;}
.y1de{bottom:77.070000px;}
.y1a8{bottom:77.730000px;}
.y156{bottom:83.010000px;}
.yb0{bottom:86.220000px;}
.y6a{bottom:86.865000px;}
.y37{bottom:91.935000px;}
.y1dd{bottom:92.730000px;}
.y1a7{bottom:93.390000px;}
.y105{bottom:94.575000px;}
.y21c{bottom:97.230000px;}
.y155{bottom:98.490000px;}
.yaf{bottom:101.880000px;}
.y69{bottom:102.345000px;}
.y1d9{bottom:106.065000px;}
.y36{bottom:107.955000px;}
.y1a6{bottom:109.230000px;}
.y154{bottom:114.150000px;}
.yae{bottom:117.360000px;}
.y68{bottom:117.825000px;}
.y21b{bottom:121.530000px;}
.y35{bottom:123.435000px;}
.yfd{bottom:126.435000px;}
.y14d{bottom:127.485000px;}
.y67{bottom:133.305000px;}
.y34{bottom:139.095000px;}
.y1a5{bottom:140.190000px;}
.y102{bottom:142.710000px;}
.y21a{bottom:145.830000px;}
.yad{bottom:148.500000px;}
.y66{bottom:148.785000px;}
.y33{bottom:154.575000px;}
.y1a4{bottom:155.670000px;}
.y249{bottom:155.775000px;}
.y219{bottom:161.850000px;}
.yac{bottom:163.980000px;}
.y65{bottom:164.265000px;}
.y100{bottom:167.700000px;}
.y1a3{bottom:171.330000px;}
.y218{bottom:177.510000px;}
.y1d8{bottom:177.750000px;}
.y64{bottom:179.745000px;}
.yab{bottom:180.540000px;}
.yfa{bottom:184.500000px;}
.y32{bottom:185.355000px;}
.y1a2{bottom:187.350000px;}
.y150{bottom:190.500000px;}
.y217{bottom:193.170000px;}
.yfc{bottom:194.400000px;}
.y63{bottom:195.405000px;}
.yaa{bottom:196.020000px;}
.y19c{bottom:200.400000px;}
.y62{bottom:210.885000px;}
.ya9{bottom:212.580000px;}
.yf7{bottom:214.050000px;}
.y216{bottom:216.750000px;}
.yf9{bottom:219.750000px;}
.y1d6{bottom:225.600000px;}
.y61{bottom:226.365000px;}
.y149{bottom:227.400000px;}
.ya8{bottom:228.060000px;}
.y3a{bottom:231.000000px;}
.y19f{bottom:236.550000px;}
.y60{bottom:241.845000px;}
.y31{bottom:242.490000px;}
.ya7{bottom:244.440000px;}
.y215{bottom:247.530000px;}
.yf6{bottom:254.370000px;}
.y5f{bottom:257.505000px;}
.y30{bottom:258.330000px;}
.ya6{bottom:260.100000px;}
.y214{bottom:263.190000px;}
.yf5{bottom:269.850000px;}
.y19a{bottom:272.700000px;}
.y5e{bottom:272.985000px;}
.y1d3{bottom:273.450000px;}
.y2f{bottom:274.890000px;}
.ya5{bottom:276.480000px;}
.y213{bottom:278.850000px;}
.yf0{bottom:283.200000px;}
.y5d{bottom:288.465000px;}
.y2e{bottom:291.450000px;}
.ya4{bottom:292.140000px;}
.y210{bottom:292.200000px;}
.yf4{bottom:298.800000px;}
.y5c{bottom:303.945000px;}
.yf2{bottom:306.900000px;}
.y2d{bottom:307.110000px;}
.ya3{bottom:308.700000px;}
.y193{bottom:309.150000px;}
.y1cf{bottom:311.850000px;}
.y212{bottom:316.500000px;}
.y148{bottom:319.065000px;}
.y5b{bottom:319.605000px;}
.y2c{bottom:322.590000px;}
.ya2{bottom:325.080000px;}
.yec{bottom:325.200000px;}
.y147{bottom:334.905000px;}
.y5a{bottom:335.085000px;}
.y2b{bottom:338.115000px;}
.ya1{bottom:340.605000px;}
.y20e{bottom:340.950000px;}
.y146{bottom:350.070000px;}
.y59{bottom:350.610000px;}
.y2a{bottom:353.775000px;}
.y1cc{bottom:353.850000px;}
.ya0{bottom:357.165000px;}
.ye6{bottom:360.000000px;}
.y191{bottom:363.150000px;}
.ye9{bottom:364.800000px;}
.y207{bottom:365.250000px;}
.y145{bottom:365.550000px;}
.y58{bottom:366.090000px;}
.y29{bottom:369.255000px;}
.yeb{bottom:372.150000px;}
.y9f{bottom:372.645000px;}
.y142{bottom:378.750000px;}
.ye8{bottom:380.250000px;}
.y57{bottom:381.750000px;}
.y190{bottom:384.900000px;}
.y28{bottom:384.915000px;}
.y9e{bottom:389.025000px;}
.ye0{bottom:394.650000px;}
.y56{bottom:397.230000px;}
.ye3{bottom:397.800000px;}
.y18f{bottom:400.380000px;}
.y27{bottom:400.395000px;}
.y9d{bottom:404.685000px;}
.ye5{bottom:405.450000px;}
.y1cb{bottom:407.550000px;}
.y55{bottom:412.890000px;}
.y248{bottom:413.025000px;}
.y209{bottom:413.400000px;}
.ye2{bottom:413.550000px;}
.y18e{bottom:416.040000px;}
.y26{bottom:416.055000px;}
.y9c{bottom:421.065000px;}
.ydd{bottom:426.450000px;}
.y54{bottom:428.370000px;}
.y247{bottom:428.685000px;}
.y25{bottom:431.535000px;}
.y18d{bottom:431.700000px;}
.ydf{bottom:436.200000px;}
.y9b{bottom:436.725000px;}
.y53{bottom:444.030000px;}
.y246{bottom:444.165000px;}
.y24{bottom:447.015000px;}
.y13f{bottom:450.450000px;}
.y9a{bottom:452.205000px;}
.ydc{bottom:459.255000px;}
.y52{bottom:459.510000px;}
.y245{bottom:459.825000px;}
.y205{bottom:461.250000px;}
.y18c{bottom:462.480000px;}
.y99{bottom:467.685000px;}
.y51{bottom:474.630000px;}
.y244{bottom:475.485000px;}
.y23{bottom:477.795000px;}
.y18b{bottom:478.140000px;}
.y1ca{bottom:479.250000px;}
.y98{bottom:483.165000px;}
.ydb{bottom:490.215000px;}
.y50{bottom:490.290000px;}
.y243{bottom:490.965000px;}
.y13d{bottom:498.450000px;}
.y97{bottom:498.825000px;}
.y204{bottom:504.570000px;}
.yda{bottom:505.695000px;}
.y4f{bottom:505.950000px;}
.y242{bottom:506.625000px;}
.y22{bottom:508.935000px;}
.y18a{bottom:509.640000px;}
.y1c8{bottom:511.050000px;}
.y96{bottom:515.205000px;}
.y203{bottom:520.230000px;}
.yd9{bottom:521.355000px;}
.y4e{bottom:521.430000px;}
.y241{bottom:522.285000px;}
.y189{bottom:525.300000px;}
.y21{bottom:527.115000px;}
.y95{bottom:530.865000px;}
.y4d{bottom:536.910000px;}
.y240{bottom:537.765000px;}
.y185{bottom:538.350000px;}
.y10d{bottom:539.475000px;}
.y13a{bottom:546.600000px;}
.y94{bottom:547.245000px;}
.y202{bottom:551.010000px;}
.y4c{bottom:552.390000px;}
.y23f{bottom:553.425000px;}
.yd8{bottom:554.085000px;}
.y20{bottom:556.095000px;}
.y93{bottom:562.905000px;}
.y201{bottom:566.670000px;}
.y4b{bottom:568.050000px;}
.y23e{bottom:569.085000px;}
.yd7{bottom:569.565000px;}
.y188{bottom:569.850000px;}
.y1f{bottom:574.275000px;}
.y92{bottom:579.285000px;}
.y200{bottom:582.150000px;}
.y4a{bottom:583.710000px;}
.y23d{bottom:584.565000px;}
.yd6{bottom:585.225000px;}
.y1c7{bottom:585.600000px;}
.y1e{bottom:589.755000px;}
.y91{bottom:594.945000px;}
.y1ff{bottom:598.170000px;}
.y49{bottom:599.190000px;}
.y23c{bottom:600.225000px;}
.y183{bottom:601.350000px;}
.y1c6{bottom:601.440000px;}
.yd5{bottom:601.605000px;}
.y1d{bottom:605.445000px;}
.y134{bottom:611.100000px;}
.y90{bottom:611.355000px;}
.y1fe{bottom:613.500000px;}
.y48{bottom:614.880000px;}
.y23b{bottom:615.915000px;}
.y1c5{bottom:616.770000px;}
.yd4{bottom:617.115000px;}
.y139{bottom:617.130000px;}
.y1c{bottom:620.925000px;}
.y136{bottom:624.870000px;}
.y8f{bottom:626.835000px;}
.y1f7{bottom:626.850000px;}
.y47{bottom:630.360000px;}
.y23a{bottom:631.395000px;}
.y1c4{bottom:632.250000px;}
.y138{bottom:632.610000px;}
.y178{bottom:632.850000px;}
.yd3{bottom:633.675000px;}
.y17f{bottom:635.700000px;}
.y17e{bottom:635.760000px;}
.y1b{bottom:636.405000px;}
.y1fc{bottom:638.280000px;}
.y135{bottom:640.350000px;}
.y8e{bottom:643.395000px;}
.y1c0{bottom:645.750000px;}
.y46{bottom:645.840000px;}
.y1f9{bottom:646.020000px;}
.y239{bottom:647.055000px;}
.y137{bottom:648.090000px;}
.yd2{bottom:649.155000px;}
.y181{bottom:651.180000px;}
.y17d{bottom:651.240000px;}
.y1a{bottom:651.885000px;}
.y1fb{bottom:653.760000px;}
.y8d{bottom:658.875000px;}
.y45{bottom:661.320000px;}
.y1f8{bottom:661.500000px;}
.y238{bottom:662.715000px;}
.y12d{bottom:663.900000px;}
.y1c3{bottom:664.290000px;}
.yd1{bottom:664.635000px;}
.y180{bottom:666.840000px;}
.y17c{bottom:666.900000px;}
.y19{bottom:667.545000px;}
.y1fa{bottom:669.240000px;}
.y8c{bottom:675.435000px;}
.y44{bottom:676.980000px;}
.y237{bottom:678.195000px;}
.y1c2{bottom:679.770000px;}
.y175{bottom:680.100000px;}
.yd0{bottom:680.115000px;}
.y177{bottom:683.100000px;}
.y18{bottom:683.205000px;}
.y133{bottom:685.980000px;}
.y1f3{bottom:690.300000px;}
.y8b{bottom:690.915000px;}
.y43{bottom:692.460000px;}
.y1f6{bottom:693.510000px;}
.y130{bottom:693.720000px;}
.y1c1{bottom:695.250000px;}
.ycf{bottom:695.775000px;}
.y174{bottom:699.795000px;}
.y132{bottom:701.460000px;}
.y17{bottom:705.345000px;}
.y8a{bottom:706.395000px;}
.y42{bottom:707.940000px;}
.y1f5{bottom:708.990000px;}
.y12f{bottom:709.200000px;}
.y236{bottom:709.335000px;}
.yce{bottom:711.255000px;}
.y173{bottom:715.275000px;}
.y131{bottom:717.120000px;}
.y89{bottom:722.955000px;}
.y41{bottom:723.060000px;}
.y1bc{bottom:723.600000px;}
.y1f4{bottom:724.650000px;}
.y235{bottom:724.995000px;}
.ycd{bottom:726.735000px;}
.y172{bottom:730.575000px;}
.y16{bottom:731.985000px;}
.y1f1{bottom:737.550000px;}
.y88{bottom:738.435000px;}
.y40{bottom:739.080000px;}
.y234{bottom:740.295000px;}
.y1bf{bottom:740.970000px;}
.ycc{bottom:742.395000px;}
.y171{bottom:746.415000px;}
.y15{bottom:747.465000px;}
.y129{bottom:748.800000px;}
.y3f{bottom:754.200000px;}
.y87{bottom:754.995000px;}
.y1be{bottom:756.450000px;}
.ycb{bottom:758.775000px;}
.y170{bottom:761.895000px;}
.y12c{bottom:762.540000px;}
.y14{bottom:763.125000px;}
.y3e{bottom:766.800000px;}
.y1f2{bottom:768.150000px;}
.y86{bottom:770.475000px;}
.y233{bottom:771.795000px;}
.yca{bottom:774.435000px;}
.y16f{bottom:777.375000px;}
.y12b{bottom:778.200000px;}
.y85{bottom:786.855000px;}
.y232{bottom:787.275000px;}
.y1bb{bottom:787.500000px;}
.yc9{bottom:790.815000px;}
.y16e{bottom:793.935000px;}
.y13{bottom:797.685000px;}
.y125{bottom:801.900000px;}
.y84{bottom:802.515000px;}
.y231{bottom:802.935000px;}
.y1ba{bottom:803.340000px;}
.yc8{bottom:806.475000px;}
.y1f0{bottom:812.085000px;}
.y128{bottom:817.560000px;}
.y83{bottom:817.995000px;}
.y230{bottom:818.055000px;}
.y12{bottom:819.285000px;}
.yc7{bottom:822.855000px;}
.y127{bottom:825.300000px;}
.y1ef{bottom:828.105000px;}
.y82{bottom:833.475000px;}
.y22f{bottom:833.715000px;}
.y16d{bottom:833.895000px;}
.y1b9{bottom:834.300000px;}
.yc6{bottom:838.335000px;}
.y1ee{bottom:843.405000px;}
.y1b7{bottom:847.500000px;}
.y11{bottom:847.905000px;}
.y81{bottom:848.955000px;}
.y22e{bottom:849.375000px;}
.y16c{bottom:849.555000px;}
.yc5{bottom:854.895000px;}
.y121{bottom:858.600000px;}
.y1ed{bottom:858.885000px;}
.y80{bottom:864.615000px;}
.y16b{bottom:865.035000px;}
.y22d{bottom:865.215000px;}
.y10{bottom:869.325000px;}
.yc4{bottom:870.375000px;}
.y1ec{bottom:874.950000px;}
.y16a{bottom:880.560000px;}
.y22c{bottom:880.740000px;}
.y7f{bottom:881.040000px;}
.yc3{bottom:886.980000px;}
.y1eb{bottom:890.250000px;}
.y169{bottom:895.860000px;}
.y1b3{bottom:896.400000px;}
.y7e{bottom:896.700000px;}
.y22b{bottom:897.300000px;}
.yf{bottom:898.530000px;}
.yc2{bottom:902.460000px;}
.y1e5{bottom:903.600000px;}
.y168{bottom:911.340000px;}
.y7d{bottom:913.080000px;}
.y22a{bottom:913.860000px;}
.ye{bottom:917.430000px;}
.yc1{bottom:917.940000px;}
.y167{bottom:926.820000px;}
.y7c{bottom:928.740000px;}
.y229{bottom:929.340000px;}
.y120{bottom:933.450000px;}
.yc0{bottom:934.500000px;}
.y1b2{bottom:936.450000px;}
.y166{bottom:942.300000px;}
.y7b{bottom:945.120000px;}
.y228{bottom:945.900000px;}
.y11f{bottom:948.570000px;}
.ybf{bottom:949.980000px;}
.y164{bottom:955.800000px;}
.yd{bottom:956.670000px;}
.y7a{bottom:960.780000px;}
.y227{bottom:962.460000px;}
.y11e{bottom:964.050000px;}
.ybe{bottom:965.640000px;}
.y1e8{bottom:966.750000px;}
.y79{bottom:977.160000px;}
.y11b{bottom:977.400000px;}
.y226{bottom:978.120000px;}
.ybd{bottom:982.020000px;}
.y1ae{bottom:983.850000px;}
.y78{bottom:992.640000px;}
.y225{bottom:993.600000px;}
.ybc{bottom:997.500000px;}
.y224{bottom:1008.900000px;}
.y77{bottom:1009.200000px;}
.y117{bottom:1009.350000px;}
.ybb{bottom:1012.980000px;}
.yc{bottom:1016.070000px;}
.y15b{bottom:1018.650000px;}
.y223{bottom:1024.560000px;}
.y76{bottom:1024.680000px;}
.yba{bottom:1028.460000px;}
.y1ad{bottom:1031.250000px;}
.y9{bottom:1034.070000px;}
.yb{bottom:1039.290000px;}
.y75{bottom:1041.240000px;}
.yb9{bottom:1044.120000px;}
.y222{bottom:1048.320000px;}
.y74{bottom:1056.720000px;}
.y8{bottom:1057.290000px;}
.yb8{bottom:1059.600000px;}
.y116{bottom:1061.940000px;}
.ya{bottom:1071.330000px;}
.y73{bottom:1072.200000px;}
.y221{bottom:1073.340000px;}
.yb7{bottom:1075.080000px;}
.y115{bottom:1077.060000px;}
.y159{bottom:1081.350000px;}
.y7{bottom:1086.630000px;}
.y72{bottom:1088.760000px;}
.y220{bottom:1090.080000px;}
.yb6{bottom:1090.560000px;}
.y114{bottom:1092.540000px;}
.y71{bottom:1104.240000px;}
.y6{bottom:1105.710000px;}
.y1ac{bottom:1105.740000px;}
.y21f{bottom:1105.920000px;}
.yb5{bottom:1106.220000px;}
.y113{bottom:1108.200000px;}
.y70{bottom:1120.800000px;}
.y112{bottom:1121.550000px;}
.y21e{bottom:1121.580000px;}
.yb4{bottom:1121.700000px;}
.y5{bottom:1122.990000px;}
.y6f{bottom:1136.280000px;}
.y1ab{bottom:1136.880000px;}
.yb3{bottom:1137.180000px;}
.y4{bottom:1140.300000px;}
.y10e{bottom:1151.100000px;}
.y1aa{bottom:1152.390000px;}
.y6e{bottom:1152.690000px;}
.y1e1{bottom:1152.750000px;}
.y3{bottom:1158.300000px;}
.y111{bottom:1161.000000px;}
.y3d{bottom:1168.050000px;}
.y6d{bottom:1168.350000px;}
.y3b{bottom:1193.700000px;}
.h20{height:15.465000px;}
.h36{height:15.480000px;}
.h1f{height:17.130000px;}
.h3b{height:17.640000px;}
.h1c{height:21.060000px;}
.h52{height:23.580000px;}
.h54{height:23.610000px;}
.h50{height:23.760000px;}
.h22{height:28.620000px;}
.h1d{height:28.800000px;}
.h23{height:28.830000px;}
.h15{height:28.980000px;}
.h3a{height:30.630000px;}
.h38{height:30.675000px;}
.h45{height:30.960000px;}
.h21{height:31.125000px;}
.h16{height:31.140000px;}
.h25{height:31.320000px;}
.h18{height:33.840000px;}
.h1a{height:34.050000px;}
.hc{height:35.314453px;}
.h3d{height:35.460000px;}
.h32{height:36.180000px;}
.h48{height:37.620000px;}
.h10{height:38.158594px;}
.h41{height:39.420000px;}
.h1b{height:41.070000px;}
.h47{height:41.235000px;}
.h4d{height:41.580000px;}
.h37{height:46.620000px;}
.h49{height:47.160000px;}
.h2e{height:47.340000px;}
.h11{height:47.344922px;}
.h42{height:47.895000px;}
.h24{height:48.600000px;}
.h6{height:48.616875px;}
.h2c{height:52.200000px;}
.h29{height:52.380000px;}
.h46{height:52.950000px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.h3c{height:53.130000px;}
.he{height:54.421875px;}
.h13{height:55.503491px;}
.h7{height:55.796836px;}
.h27{height:55.800000px;}
.h14{height:55.824609px;}
.h1e{height:57.405000px;}
.h8{height:58.621992px;}
.h55{height:59.068031px;}
.h56{height:59.092031px;}
.h43{height:60.120000px;}
.h3{height:60.226875px;}
.h35{height:62.100000px;}
.hf{height:62.153438px;}
.h33{height:62.265000px;}
.h4e{height:62.460000px;}
.h4f{height:62.640000px;}
.h2d{height:63.570000px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h34{height:67.350000px;}
.h4a{height:70.725000px;}
.h40{height:70.740000px;}
.h26{height:70.755000px;}
.h2f{height:70.920000px;}
.ha{height:72.326250px;}
.h53{height:72.390000px;}
.h2{height:72.562500px;}
.h44{height:77.040000px;}
.h3f{height:78.810937px;}
.h5{height:81.995625px;}
.h2b{height:83.880000px;}
.h28{height:84.678047px;}
.h9{height:84.898125px;}
.h30{height:87.840000px;}
.h39{height:93.675000px;}
.h51{height:95.220000px;}
.h31{height:99.165000px;}
.h4c{height:104.760000px;}
.h3e{height:107.820000px;}
.hb{height:111.781500px;}
.h19{height:114.798047px;}
.h2a{height:115.638047px;}
.h17{height:115.998047px;}
.h4b{height:139.530000px;}
.h0{height:1263.000000px;}
.wb{width:32.400000px;}
.w38{width:53.640000px;}
.w22{width:63.180000px;}
.w23{width:63.210000px;}
.w2d{width:64.080000px;}
.w2e{width:64.110000px;}
.w46{width:64.275000px;}
.w21{width:67.350000px;}
.w48{width:67.680000px;}
.w49{width:67.710000px;}
.w4d{width:68.040000px;}
.w2c{width:68.070000px;}
.w15{width:68.205000px;}
.w47{width:68.760000px;}
.w4a{width:70.380000px;}
.w4e{width:70.740000px;}
.w4f{width:70.920000px;}
.w4c{width:71.280000px;}
.w20{width:72.540000px;}
.w1{width:73.065000px;}
.w2b{width:73.260000px;}
.w6{width:77.025000px;}
.wc{width:80.670000px;}
.w11{width:81.000000px;}
.w24{width:81.900000px;}
.w2f{width:82.800000px;}
.w3f{width:84.780000px;}
.w3e{width:86.070000px;}
.we{width:87.120000px;}
.w4b{width:89.490000px;}
.w16{width:91.680000px;}
.w19{width:96.300000px;}
.w27{width:97.770000px;}
.w25{width:98.130000px;}
.w1b{width:98.490000px;}
.w32{width:98.835000px;}
.w30{width:99.210000px;}
.w28{width:100.620000px;}
.w34{width:100.830000px;}
.w26{width:100.980000px;}
.w33{width:101.700000px;}
.w31{width:102.060000px;}
.w13{width:102.630000px;}
.w3c{width:105.120000px;}
.w1a{width:106.020000px;}
.w14{width:108.000000px;}
.wf{width:108.030000px;}
.w1e{width:110.160000px;}
.w8{width:113.040000px;}
.wa{width:120.630000px;}
.w5{width:125.130000px;}
.w43{width:125.835000px;}
.w12{width:126.210000px;}
.w1d{width:128.190000px;}
.w42{width:128.730000px;}
.w18{width:129.255000px;}
.w44{width:133.410000px;}
.w1f{width:140.250000px;}
.w10{width:141.510000px;}
.w29{width:141.675000px;}
.w7{width:148.710000px;}
.w2{width:152.400000px;}
.w35{width:152.700000px;}
.w1c{width:154.800000px;}
.w41{width:156.300000px;}
.w3b{width:157.500000px;}
.w3a{width:160.950000px;}
.w39{width:165.300000px;}
.wd{width:172.500000px;}
.w3{width:178.200000px;}
.w40{width:180.450000px;}
.w3d{width:185.850000px;}
.w36{width:196.200000px;}
.w4{width:204.750000px;}
.w9{width:205.800000px;}
.w17{width:234.750000px;}
.w37{width:289.950000px;}
.w45{width:369.600000px;}
.w2a{width:413.700000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x31{left:7.545000px;}
.x5c{left:9.450000px;}
.x7b{left:10.500000px;}
.x76{left:11.850000px;}
.x5e{left:13.650000px;}
.x93{left:14.700000px;}
.x65{left:16.200000px;}
.x1a{left:17.985000px;}
.x29{left:19.800000px;}
.x67{left:21.300000px;}
.x78{left:23.250000px;}
.x2c{left:25.500000px;}
.x6b{left:26.550000px;}
.x5d{left:28.350000px;}
.x2{left:29.970000px;}
.x1f{left:31.125000px;}
.x96{left:35.550000px;}
.x7c{left:37.800000px;}
.x82{left:39.150000px;}
.x1d{left:40.650000px;}
.x73{left:42.150000px;}
.x43{left:43.650000px;}
.x71{left:45.600000px;}
.xc{left:46.869000px;}
.x18{left:48.180900px;}
.xe{left:50.640000px;}
.x14{left:57.126000px;}
.x38{left:60.300000px;}
.x9{left:62.130000px;}
.x7a{left:63.300000px;}
.x52{left:64.800000px;}
.x2a{left:66.000000px;}
.x83{left:68.550000px;}
.x79{left:71.400000px;}
.xf{left:74.655000px;}
.x23{left:76.200000px;}
.x6f{left:82.620000px;}
.x15{left:84.195000px;}
.x19{left:86.670000px;}
.x77{left:92.850000px;}
.x17{left:100.680000px;}
.x75{left:109.350000px;}
.x3a{left:118.845000px;}
.x30{left:119.970000px;}
.x4d{left:142.245000px;}
.x85{left:150.900000px;}
.x54{left:153.450000px;}
.x28{left:160.200000px;}
.x21{left:171.300000px;}
.x45{left:172.650000px;}
.x69{left:175.200000px;}
.x20{left:176.250000px;}
.x59{left:178.200000px;}
.x1b{left:180.150000px;}
.x70{left:183.900000px;}
.x8d{left:186.750000px;}
.x2e{left:189.000000px;}
.x25{left:196.200000px;}
.x33{left:198.000000px;}
.x90{left:201.450000px;}
.x32{left:205.500000px;}
.x7e{left:209.700000px;}
.x4e{left:210.900000px;}
.x3f{left:212.100000px;}
.x26{left:219.750000px;}
.x68{left:230.400000px;}
.x97{left:233.100000px;}
.x8{left:237.270000px;}
.x5{left:244.170000px;}
.x6c{left:248.850000px;}
.x5b{left:251.100000px;}
.x55{left:259.800000px;}
.x7f{left:263.700000px;}
.x92{left:266.100000px;}
.x3{left:270.300000px;}
.x89{left:285.150000px;}
.x4{left:290.610000px;}
.x4f{left:303.000000px;}
.x86{left:308.850000px;}
.x46{left:314.550000px;}
.x6a{left:317.250000px;}
.x5f{left:318.900000px;}
.x4a{left:322.650000px;}
.x8f{left:323.850000px;}
.x40{left:325.950000px;}
.x5a{left:327.000000px;}
.x8c{left:328.275000px;}
.x84{left:330.240000px;}
.x58{left:331.380000px;}
.x44{left:333.480000px;}
.x91{left:335.250000px;}
.x72{left:337.050000px;}
.x2b{left:338.850000px;}
.x4c{left:340.140000px;}
.x7d{left:342.420000px;}
.x3e{left:346.200000px;}
.x36{left:347.400000px;}
.x3b{left:354.000000px;}
.x34{left:355.200000px;}
.x13{left:359.625000px;}
.x60{left:366.900000px;}
.x8a{left:370.350000px;}
.x22{left:373.200000px;}
.x2f{left:380.850000px;}
.x39{left:382.785000px;}
.x27{left:388.950000px;}
.xa{left:390.264000px;}
.x98{left:393.123000px;}
.x47{left:395.850000px;}
.x61{left:398.040000px;}
.x11{left:399.600000px;}
.x4b{left:404.010000px;}
.xd{left:412.515000px;}
.x87{left:414.300000px;}
.x53{left:419.235000px;}
.x99{left:421.143000px;}
.x16{left:424.800000px;}
.x62{left:430.650000px;}
.x80{left:437.550000px;}
.x1{left:444.150000px;}
.x63{left:446.100000px;}
.x10{left:449.625000px;}
.x94{left:472.500000px;}
.x6{left:478.965000px;}
.x41{left:498.750000px;}
.x7{left:506.580000px;}
.xb{left:508.134000px;}
.x56{left:514.050000px;}
.x48{left:522.450000px;}
.x64{left:528.450000px;}
.x6e{left:529.650000px;}
.x74{left:533.700000px;}
.x81{left:535.650000px;}
.x50{left:538.200000px;}
.x1c{left:543.900000px;}
.x8b{left:551.100000px;}
.x3c{left:552.750000px;}
.x37{left:553.950000px;}
.x42{left:586.200000px;}
.x8e{left:593.550000px;}
.x88{left:600.450000px;}
.x49{left:625.500000px;}
.x66{left:626.850000px;}
.x6d{left:628.950000px;}
.x95{left:633.600000px;}
.x57{left:642.600000px;}
.x12{left:665.115000px;}
.x51{left:667.800000px;}
.x3d{left:674.250000px;}
.x35{left:675.450000px;}
.x2d{left:696.750000px;}
.x1e{left:725.550000px;}
.x24{left:759.300000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-58.240000pt;}
.vd{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-53.760000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:12.266667pt;}
.vc{vertical-align:21.098667pt;}
.v3{vertical-align:26.880000pt;}
.va{vertical-align:28.160000pt;}
.v4{vertical-align:40.021333pt;}
.v9{vertical-align:54.933333pt;}
.v8{vertical-align:56.000000pt;}
.ls30{letter-spacing:-0.864000pt;}
.ls2d{letter-spacing:-0.736000pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls2a{letter-spacing:-0.528000pt;}
.ls40{letter-spacing:-0.512000pt;}
.ls42{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.135467pt;}
.ls23{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.024320pt;}
.ls15{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.208000pt;}
.ls39{letter-spacing:0.224000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls3d{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls3e{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.656000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls3a{letter-spacing:1.440000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls3f{letter-spacing:2.656000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls20{letter-spacing:3.360000pt;}
.ls1a{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls21{letter-spacing:7.840000pt;}
.ls3c{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls2e{letter-spacing:47.029333pt;}
.ls29{letter-spacing:47.296000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls1c{letter-spacing:60.896000pt;}
.lsa{letter-spacing:61.002667pt;}
.ls1e{letter-spacing:102.602667pt;}
.ls0{letter-spacing:137.760000pt;}
.ls28{letter-spacing:166.666667pt;}
.ls2f{letter-spacing:177.280000pt;}
.ls26{letter-spacing:301.600000pt;}
.ls27{letter-spacing:322.933333pt;}
.ls32{letter-spacing:713.333333pt;}
.ls35{letter-spacing:998.133333pt;}
.ls24{letter-spacing:1000.266667pt;}
.ls36{letter-spacing:1071.200000pt;}
.ls8{letter-spacing:1215.413333pt;}
.ls3b{letter-spacing:1255.733333pt;}
.ls34{letter-spacing:1302.133333pt;}
.ls33{letter-spacing:1416.800000pt;}
.ws18{word-spacing:-48.000000pt;}
.ws22{word-spacing:-27.392000pt;}
.ws1e{word-spacing:-27.072000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.584533pt;}
.ws3{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.832000pt;}
.ws17{word-spacing:-12.656000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws29{word-spacing:-12.544000pt;}
.ws20{word-spacing:-12.448000pt;}
.ws6{word-spacing:-12.443733pt;}
.ws4{word-spacing:-12.320000pt;}
.ws2a{word-spacing:-12.288000pt;}
.ws2b{word-spacing:-12.208000pt;}
.wsc{word-spacing:-12.192000pt;}
.ws10{word-spacing:-12.160000pt;}
.ws11{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.ws1d{word-spacing:-11.888000pt;}
.ws14{word-spacing:-11.808000pt;}
.ws19{word-spacing:-11.776000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws21{word-spacing:-11.552000pt;}
.ws28{word-spacing:-11.488000pt;}
.ws1f{word-spacing:-11.472000pt;}
.ws13{word-spacing:-11.456000pt;}
.ws16{word-spacing:-11.376000pt;}
.ws23{word-spacing:-11.264000pt;}
.ws24{word-spacing:-11.136000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws27{word-spacing:-8.224000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws25{word-spacing:-7.712000pt;}
.ws26{word-spacing:-7.360000pt;}
.ws1a{word-spacing:0.000000pt;}
._4{margin-left:-288.069973pt;}
._19{margin-left:-7.520000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._8{width:2.522667pt;}
._7{width:3.813333pt;}
._6{width:5.002667pt;}
._9{width:6.490453pt;}
._f{width:7.408213pt;}
._c{width:8.394667pt;}
._d{width:9.428907pt;}
._a{width:10.762667pt;}
._b{width:13.530667pt;}
._11{width:15.839787pt;}
._10{width:17.264000pt;}
._21{width:37.920000pt;}
._15{width:74.132907pt;}
._12{width:89.263787pt;}
._17{width:143.114667pt;}
._1e{width:147.968000pt;}
._1a{width:161.658667pt;}
._1f{width:170.672000pt;}
._25{width:177.434667pt;}
._14{width:224.341120pt;}
._1c{width:233.333333pt;}
._16{width:281.909333pt;}
._1d{width:400.714027pt;}
._22{width:580.533333pt;}
._1b{width:649.034667pt;}
._29{width:734.144000pt;}
._24{width:747.488000pt;}
._27{width:754.186453pt;}
._23{width:824.266667pt;}
._26{width:860.330453pt;}
._20{width:950.666667pt;}
._e{width:965.248000pt;}
._18{width:1090.400000pt;}
._28{width:1101.759787pt;}
._13{width:1265.333333pt;}
._5{width:1808.746667pt;}
._3{width:2693.920000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y17b{bottom:2.533333pt;}
.y176{bottom:2.666667pt;}
.y162{bottom:2.800000pt;}
.y104{bottom:2.866667pt;}
.y1b0{bottom:2.933333pt;}
.y10a{bottom:3.026667pt;}
.y11d{bottom:3.066667pt;}
.y192{bottom:3.466667pt;}
.y103{bottom:3.600000pt;}
.yee{bottom:4.266667pt;}
.y197{bottom:5.333333pt;}
.yf8{bottom:5.466667pt;}
.y1d5{bottom:5.733333pt;}
.y206{bottom:6.266667pt;}
.y20f{bottom:6.400000pt;}
.y1b5{bottom:6.533333pt;}
.y1d2{bottom:7.466667pt;}
.yde{bottom:8.666667pt;}
.y110{bottom:8.800000pt;}
.y184{bottom:9.200000pt;}
.y182{bottom:9.466667pt;}
.ye1{bottom:9.600000pt;}
.y15e{bottom:9.733333pt;}
.y107{bottom:9.746667pt;}
.ye4{bottom:9.866667pt;}
.y10b{bottom:9.906667pt;}
.y141{bottom:10.266667pt;}
.y119{bottom:10.400000pt;}
.ye7{bottom:10.800000pt;}
.yea{bottom:11.066667pt;}
.yef{bottom:11.200000pt;}
.y1a1{bottom:11.333333pt;}
.y1a0{bottom:11.466667pt;}
.y19b{bottom:11.600000pt;}
.y151{bottom:12.000000pt;}
.y199{bottom:12.266667pt;}
.y1ce{bottom:12.800000pt;}
.y1b4{bottom:13.066667pt;}
.y1b6{bottom:13.466667pt;}
.yf1{bottom:13.866667pt;}
.yf3{bottom:14.133333pt;}
.y1d0{bottom:14.400000pt;}
.y1e9{bottom:14.533333pt;}
.yff{bottom:14.600000pt;}
.y10f{bottom:14.666667pt;}
.yfb{bottom:14.933333pt;}
.y106{bottom:15.826667pt;}
.y17a{bottom:16.266667pt;}
.y161{bottom:16.533333pt;}
.y165{bottom:16.666667pt;}
.y108{bottom:16.786667pt;}
.y11c{bottom:16.800000pt;}
.y1d7{bottom:16.933333pt;}
.y13e{bottom:17.066667pt;}
.y11a{bottom:17.333333pt;}
.y13c{bottom:17.466667pt;}
.yed{bottom:18.000000pt;}
.y12a{bottom:19.200000pt;}
.y196{bottom:19.333333pt;}
.y194{bottom:19.600000pt;}
.y1d4{bottom:19.733333pt;}
.y124{bottom:20.266667pt;}
.y1dc{bottom:20.626667pt;}
.y126{bottom:20.800000pt;}
.y1d1{bottom:21.200000pt;}
.y101{bottom:21.346667pt;}
.y10c{bottom:21.400000pt;}
.y1bd{bottom:22.400000pt;}
.y163{bottom:23.200000pt;}
.y15c{bottom:23.466667pt;}
.y1fd{bottom:23.600000pt;}
.y152{bottom:23.613333pt;}
.y1b1{bottom:23.733333pt;}
.y1ea{bottom:23.866667pt;}
.y140{bottom:24.000000pt;}
.y118{bottom:24.266667pt;}
.y20c{bottom:24.400000pt;}
.y15a{bottom:25.600000pt;}
.y198{bottom:26.266667pt;}
.y1cd{bottom:26.533333pt;}
.y1c9{bottom:27.066667pt;}
.y122{bottom:27.200000pt;}
.yfe{bottom:27.480000pt;}
.y1da{bottom:27.506667pt;}
.y143{bottom:27.600000pt;}
.y14c{bottom:27.866667pt;}
.y211{bottom:28.133333pt;}
.y6c{bottom:28.413333pt;}
.y179{bottom:30.266667pt;}
.y160{bottom:30.400000pt;}
.y1af{bottom:30.533333pt;}
.y153{bottom:30.546667pt;}
.y1b8{bottom:31.066667pt;}
.y13b{bottom:31.200000pt;}
.y1{bottom:31.320000pt;}
.y195{bottom:33.066667pt;}
.y14f{bottom:33.080000pt;}
.y12e{bottom:33.333333pt;}
.y123{bottom:34.000000pt;}
.y1db{bottom:34.386667pt;}
.y14a{bottom:34.666667pt;}
.y1e7{bottom:35.600000pt;}
.y186{bottom:37.200000pt;}
.y15d{bottom:37.333333pt;}
.y187{bottom:37.600000pt;}
.y20b{bottom:38.133333pt;}
.y208{bottom:38.400000pt;}
.y144{bottom:41.466667pt;}
.y14b{bottom:41.600000pt;}
.yb2{bottom:43.386667pt;}
.y19d{bottom:43.600000pt;}
.y19e{bottom:44.000000pt;}
.y15f{bottom:44.266667pt;}
.y20d{bottom:45.066667pt;}
.y14e{bottom:47.080000pt;}
.y3c{bottom:48.133333pt;}
.y1e6{bottom:49.466667pt;}
.y1e4{bottom:50.800000pt;}
.y158{bottom:51.422667pt;}
.y2{bottom:51.520000pt;}
.y20a{bottom:51.866667pt;}
.y39{bottom:54.360000pt;}
.y1df{bottom:54.720000pt;}
.y21d{bottom:55.040000pt;}
.y1a9{bottom:55.306667pt;}
.y109{bottom:55.746667pt;}
.y1e2{bottom:57.600000pt;}
.y1e0{bottom:58.426667pt;}
.y157{bottom:60.000000pt;}
.yb1{bottom:62.533333pt;}
.y6b{bottom:63.453333pt;}
.y1e3{bottom:64.666667pt;}
.y38{bottom:68.280000pt;}
.y1de{bottom:68.506667pt;}
.y1a8{bottom:69.093333pt;}
.y156{bottom:73.786667pt;}
.yb0{bottom:76.640000pt;}
.y6a{bottom:77.213333pt;}
.y37{bottom:81.720000pt;}
.y1dd{bottom:82.426667pt;}
.y1a7{bottom:83.013333pt;}
.y105{bottom:84.066667pt;}
.y21c{bottom:86.426667pt;}
.y155{bottom:87.546667pt;}
.yaf{bottom:90.560000pt;}
.y69{bottom:90.973333pt;}
.y1d9{bottom:94.280000pt;}
.y36{bottom:95.960000pt;}
.y1a6{bottom:97.093333pt;}
.y154{bottom:101.466667pt;}
.yae{bottom:104.320000pt;}
.y68{bottom:104.733333pt;}
.y21b{bottom:108.026667pt;}
.y35{bottom:109.720000pt;}
.yfd{bottom:112.386667pt;}
.y14d{bottom:113.320000pt;}
.y67{bottom:118.493333pt;}
.y34{bottom:123.640000pt;}
.y1a5{bottom:124.613333pt;}
.y102{bottom:126.853333pt;}
.y21a{bottom:129.626667pt;}
.yad{bottom:132.000000pt;}
.y66{bottom:132.253333pt;}
.y33{bottom:137.400000pt;}
.y1a4{bottom:138.373333pt;}
.y249{bottom:138.466667pt;}
.y219{bottom:143.866667pt;}
.yac{bottom:145.760000pt;}
.y65{bottom:146.013333pt;}
.y100{bottom:149.066667pt;}
.y1a3{bottom:152.293333pt;}
.y218{bottom:157.786667pt;}
.y1d8{bottom:158.000000pt;}
.y64{bottom:159.773333pt;}
.yab{bottom:160.480000pt;}
.yfa{bottom:164.000000pt;}
.y32{bottom:164.760000pt;}
.y1a2{bottom:166.533333pt;}
.y150{bottom:169.333333pt;}
.y217{bottom:171.706667pt;}
.yfc{bottom:172.800000pt;}
.y63{bottom:173.693333pt;}
.yaa{bottom:174.240000pt;}
.y19c{bottom:178.133333pt;}
.y62{bottom:187.453333pt;}
.ya9{bottom:188.960000pt;}
.yf7{bottom:190.266667pt;}
.y216{bottom:192.666667pt;}
.yf9{bottom:195.333333pt;}
.y1d6{bottom:200.533333pt;}
.y61{bottom:201.213333pt;}
.y149{bottom:202.133333pt;}
.ya8{bottom:202.720000pt;}
.y3a{bottom:205.333333pt;}
.y19f{bottom:210.266667pt;}
.y60{bottom:214.973333pt;}
.y31{bottom:215.546667pt;}
.ya7{bottom:217.280000pt;}
.y215{bottom:220.026667pt;}
.yf6{bottom:226.106667pt;}
.y5f{bottom:228.893333pt;}
.y30{bottom:229.626667pt;}
.ya6{bottom:231.200000pt;}
.y214{bottom:233.946667pt;}
.yf5{bottom:239.866667pt;}
.y19a{bottom:242.400000pt;}
.y5e{bottom:242.653333pt;}
.y1d3{bottom:243.066667pt;}
.y2f{bottom:244.346667pt;}
.ya5{bottom:245.760000pt;}
.y213{bottom:247.866667pt;}
.yf0{bottom:251.733333pt;}
.y5d{bottom:256.413333pt;}
.y2e{bottom:259.066667pt;}
.ya4{bottom:259.680000pt;}
.y210{bottom:259.733333pt;}
.yf4{bottom:265.600000pt;}
.y5c{bottom:270.173333pt;}
.yf2{bottom:272.800000pt;}
.y2d{bottom:272.986667pt;}
.ya3{bottom:274.400000pt;}
.y193{bottom:274.800000pt;}
.y1cf{bottom:277.200000pt;}
.y212{bottom:281.333333pt;}
.y148{bottom:283.613333pt;}
.y5b{bottom:284.093333pt;}
.y2c{bottom:286.746667pt;}
.ya2{bottom:288.960000pt;}
.yec{bottom:289.066667pt;}
.y147{bottom:297.693333pt;}
.y5a{bottom:297.853333pt;}
.y2b{bottom:300.546667pt;}
.ya1{bottom:302.760000pt;}
.y20e{bottom:303.066667pt;}
.y146{bottom:311.173333pt;}
.y59{bottom:311.653333pt;}
.y2a{bottom:314.466667pt;}
.y1cc{bottom:314.533333pt;}
.ya0{bottom:317.480000pt;}
.ye6{bottom:320.000000pt;}
.y191{bottom:322.800000pt;}
.ye9{bottom:324.266667pt;}
.y207{bottom:324.666667pt;}
.y145{bottom:324.933333pt;}
.y58{bottom:325.413333pt;}
.y29{bottom:328.226667pt;}
.yeb{bottom:330.800000pt;}
.y9f{bottom:331.240000pt;}
.y142{bottom:336.666667pt;}
.ye8{bottom:338.000000pt;}
.y57{bottom:339.333333pt;}
.y190{bottom:342.133333pt;}
.y28{bottom:342.146667pt;}
.y9e{bottom:345.800000pt;}
.ye0{bottom:350.800000pt;}
.y56{bottom:353.093333pt;}
.ye3{bottom:353.600000pt;}
.y18f{bottom:355.893333pt;}
.y27{bottom:355.906667pt;}
.y9d{bottom:359.720000pt;}
.ye5{bottom:360.400000pt;}
.y1cb{bottom:362.266667pt;}
.y55{bottom:367.013333pt;}
.y248{bottom:367.133333pt;}
.y209{bottom:367.466667pt;}
.ye2{bottom:367.600000pt;}
.y18e{bottom:369.813333pt;}
.y26{bottom:369.826667pt;}
.y9c{bottom:374.280000pt;}
.ydd{bottom:379.066667pt;}
.y54{bottom:380.773333pt;}
.y247{bottom:381.053333pt;}
.y25{bottom:383.586667pt;}
.y18d{bottom:383.733333pt;}
.ydf{bottom:387.733333pt;}
.y9b{bottom:388.200000pt;}
.y53{bottom:394.693333pt;}
.y246{bottom:394.813333pt;}
.y24{bottom:397.346667pt;}
.y13f{bottom:400.400000pt;}
.y9a{bottom:401.960000pt;}
.ydc{bottom:408.226667pt;}
.y52{bottom:408.453333pt;}
.y245{bottom:408.733333pt;}
.y205{bottom:410.000000pt;}
.y18c{bottom:411.093333pt;}
.y99{bottom:415.720000pt;}
.y51{bottom:421.893333pt;}
.y244{bottom:422.653333pt;}
.y23{bottom:424.706667pt;}
.y18b{bottom:425.013333pt;}
.y1ca{bottom:426.000000pt;}
.y98{bottom:429.480000pt;}
.ydb{bottom:435.746667pt;}
.y50{bottom:435.813333pt;}
.y243{bottom:436.413333pt;}
.y13d{bottom:443.066667pt;}
.y97{bottom:443.400000pt;}
.y204{bottom:448.506667pt;}
.yda{bottom:449.506667pt;}
.y4f{bottom:449.733333pt;}
.y242{bottom:450.333333pt;}
.y22{bottom:452.386667pt;}
.y18a{bottom:453.013333pt;}
.y1c8{bottom:454.266667pt;}
.y96{bottom:457.960000pt;}
.y203{bottom:462.426667pt;}
.yd9{bottom:463.426667pt;}
.y4e{bottom:463.493333pt;}
.y241{bottom:464.253333pt;}
.y189{bottom:466.933333pt;}
.y21{bottom:468.546667pt;}
.y95{bottom:471.880000pt;}
.y4d{bottom:477.253333pt;}
.y240{bottom:478.013333pt;}
.y185{bottom:478.533333pt;}
.y10d{bottom:479.533333pt;}
.y13a{bottom:485.866667pt;}
.y94{bottom:486.440000pt;}
.y202{bottom:489.786667pt;}
.y4c{bottom:491.013333pt;}
.y23f{bottom:491.933333pt;}
.yd8{bottom:492.520000pt;}
.y20{bottom:494.306667pt;}
.y93{bottom:500.360000pt;}
.y201{bottom:503.706667pt;}
.y4b{bottom:504.933333pt;}
.y23e{bottom:505.853333pt;}
.yd7{bottom:506.280000pt;}
.y188{bottom:506.533333pt;}
.y1f{bottom:510.466667pt;}
.y92{bottom:514.920000pt;}
.y200{bottom:517.466667pt;}
.y4a{bottom:518.853333pt;}
.y23d{bottom:519.613333pt;}
.yd6{bottom:520.200000pt;}
.y1c7{bottom:520.533333pt;}
.y1e{bottom:524.226667pt;}
.y91{bottom:528.840000pt;}
.y1ff{bottom:531.706667pt;}
.y49{bottom:532.613333pt;}
.y23c{bottom:533.533333pt;}
.y183{bottom:534.533333pt;}
.y1c6{bottom:534.613333pt;}
.yd5{bottom:534.760000pt;}
.y1d{bottom:538.173333pt;}
.y134{bottom:543.200000pt;}
.y90{bottom:543.426667pt;}
.y1fe{bottom:545.333333pt;}
.y48{bottom:546.560000pt;}
.y23b{bottom:547.480000pt;}
.y1c5{bottom:548.240000pt;}
.yd4{bottom:548.546667pt;}
.y139{bottom:548.560000pt;}
.y1c{bottom:551.933333pt;}
.y136{bottom:555.440000pt;}
.y8f{bottom:557.186667pt;}
.y1f7{bottom:557.200000pt;}
.y47{bottom:560.320000pt;}
.y23a{bottom:561.240000pt;}
.y1c4{bottom:562.000000pt;}
.y138{bottom:562.320000pt;}
.y178{bottom:562.533333pt;}
.yd3{bottom:563.266667pt;}
.y17f{bottom:565.066667pt;}
.y17e{bottom:565.120000pt;}
.y1b{bottom:565.693333pt;}
.y1fc{bottom:567.360000pt;}
.y135{bottom:569.200000pt;}
.y8e{bottom:571.906667pt;}
.y1c0{bottom:574.000000pt;}
.y46{bottom:574.080000pt;}
.y1f9{bottom:574.240000pt;}
.y239{bottom:575.160000pt;}
.y137{bottom:576.080000pt;}
.yd2{bottom:577.026667pt;}
.y181{bottom:578.826667pt;}
.y17d{bottom:578.880000pt;}
.y1a{bottom:579.453333pt;}
.y1fb{bottom:581.120000pt;}
.y8d{bottom:585.666667pt;}
.y45{bottom:587.840000pt;}
.y1f8{bottom:588.000000pt;}
.y238{bottom:589.080000pt;}
.y12d{bottom:590.133333pt;}
.y1c3{bottom:590.480000pt;}
.yd1{bottom:590.786667pt;}
.y180{bottom:592.746667pt;}
.y17c{bottom:592.800000pt;}
.y19{bottom:593.373333pt;}
.y1fa{bottom:594.880000pt;}
.y8c{bottom:600.386667pt;}
.y44{bottom:601.760000pt;}
.y237{bottom:602.840000pt;}
.y1c2{bottom:604.240000pt;}
.y175{bottom:604.533333pt;}
.yd0{bottom:604.546667pt;}
.y177{bottom:607.200000pt;}
.y18{bottom:607.293333pt;}
.y133{bottom:609.760000pt;}
.y1f3{bottom:613.600000pt;}
.y8b{bottom:614.146667pt;}
.y43{bottom:615.520000pt;}
.y1f6{bottom:616.453333pt;}
.y130{bottom:616.640000pt;}
.y1c1{bottom:618.000000pt;}
.ycf{bottom:618.466667pt;}
.y174{bottom:622.040000pt;}
.y132{bottom:623.520000pt;}
.y17{bottom:626.973333pt;}
.y8a{bottom:627.906667pt;}
.y42{bottom:629.280000pt;}
.y1f5{bottom:630.213333pt;}
.y12f{bottom:630.400000pt;}
.y236{bottom:630.520000pt;}
.yce{bottom:632.226667pt;}
.y173{bottom:635.800000pt;}
.y131{bottom:637.440000pt;}
.y89{bottom:642.626667pt;}
.y41{bottom:642.720000pt;}
.y1bc{bottom:643.200000pt;}
.y1f4{bottom:644.133333pt;}
.y235{bottom:644.440000pt;}
.ycd{bottom:645.986667pt;}
.y172{bottom:649.400000pt;}
.y16{bottom:650.653333pt;}
.y1f1{bottom:655.600000pt;}
.y88{bottom:656.386667pt;}
.y40{bottom:656.960000pt;}
.y234{bottom:658.040000pt;}
.y1bf{bottom:658.640000pt;}
.ycc{bottom:659.906667pt;}
.y171{bottom:663.480000pt;}
.y15{bottom:664.413333pt;}
.y129{bottom:665.600000pt;}
.y3f{bottom:670.400000pt;}
.y87{bottom:671.106667pt;}
.y1be{bottom:672.400000pt;}
.ycb{bottom:674.466667pt;}
.y170{bottom:677.240000pt;}
.y12c{bottom:677.813333pt;}
.y14{bottom:678.333333pt;}
.y3e{bottom:681.600000pt;}
.y1f2{bottom:682.800000pt;}
.y86{bottom:684.866667pt;}
.y233{bottom:686.040000pt;}
.yca{bottom:688.386667pt;}
.y16f{bottom:691.000000pt;}
.y12b{bottom:691.733333pt;}
.y85{bottom:699.426667pt;}
.y232{bottom:699.800000pt;}
.y1bb{bottom:700.000000pt;}
.yc9{bottom:702.946667pt;}
.y16e{bottom:705.720000pt;}
.y13{bottom:709.053333pt;}
.y125{bottom:712.800000pt;}
.y84{bottom:713.346667pt;}
.y231{bottom:713.720000pt;}
.y1ba{bottom:714.080000pt;}
.yc8{bottom:716.866667pt;}
.y1f0{bottom:721.853333pt;}
.y128{bottom:726.720000pt;}
.y83{bottom:727.106667pt;}
.y230{bottom:727.160000pt;}
.y12{bottom:728.253333pt;}
.yc7{bottom:731.426667pt;}
.y127{bottom:733.600000pt;}
.y1ef{bottom:736.093333pt;}
.y82{bottom:740.866667pt;}
.y22f{bottom:741.080000pt;}
.y16d{bottom:741.240000pt;}
.y1b9{bottom:741.600000pt;}
.yc6{bottom:745.186667pt;}
.y1ee{bottom:749.693333pt;}
.y1b7{bottom:753.333333pt;}
.y11{bottom:753.693333pt;}
.y81{bottom:754.626667pt;}
.y22e{bottom:755.000000pt;}
.y16c{bottom:755.160000pt;}
.yc5{bottom:759.906667pt;}
.y121{bottom:763.200000pt;}
.y1ed{bottom:763.453333pt;}
.y80{bottom:768.546667pt;}
.y16b{bottom:768.920000pt;}
.y22d{bottom:769.080000pt;}
.y10{bottom:772.733333pt;}
.yc4{bottom:773.666667pt;}
.y1ec{bottom:777.733333pt;}
.y16a{bottom:782.720000pt;}
.y22c{bottom:782.880000pt;}
.y7f{bottom:783.146667pt;}
.yc3{bottom:788.426667pt;}
.y1eb{bottom:791.333333pt;}
.y169{bottom:796.320000pt;}
.y1b3{bottom:796.800000pt;}
.y7e{bottom:797.066667pt;}
.y22b{bottom:797.600000pt;}
.yf{bottom:798.693333pt;}
.yc2{bottom:802.186667pt;}
.y1e5{bottom:803.200000pt;}
.y168{bottom:810.080000pt;}
.y7d{bottom:811.626667pt;}
.y22a{bottom:812.320000pt;}
.ye{bottom:815.493333pt;}
.yc1{bottom:815.946667pt;}
.y167{bottom:823.840000pt;}
.y7c{bottom:825.546667pt;}
.y229{bottom:826.080000pt;}
.y120{bottom:829.733333pt;}
.yc0{bottom:830.666667pt;}
.y1b2{bottom:832.400000pt;}
.y166{bottom:837.600000pt;}
.y7b{bottom:840.106667pt;}
.y228{bottom:840.800000pt;}
.y11f{bottom:843.173333pt;}
.ybf{bottom:844.426667pt;}
.y164{bottom:849.600000pt;}
.yd{bottom:850.373333pt;}
.y7a{bottom:854.026667pt;}
.y227{bottom:855.520000pt;}
.y11e{bottom:856.933333pt;}
.ybe{bottom:858.346667pt;}
.y1e8{bottom:859.333333pt;}
.y79{bottom:868.586667pt;}
.y11b{bottom:868.800000pt;}
.y226{bottom:869.440000pt;}
.ybd{bottom:872.906667pt;}
.y1ae{bottom:874.533333pt;}
.y78{bottom:882.346667pt;}
.y225{bottom:883.200000pt;}
.ybc{bottom:886.666667pt;}
.y224{bottom:896.800000pt;}
.y77{bottom:897.066667pt;}
.y117{bottom:897.200000pt;}
.ybb{bottom:900.426667pt;}
.yc{bottom:903.173333pt;}
.y15b{bottom:905.466667pt;}
.y223{bottom:910.720000pt;}
.y76{bottom:910.826667pt;}
.yba{bottom:914.186667pt;}
.y1ad{bottom:916.666667pt;}
.y9{bottom:919.173333pt;}
.yb{bottom:923.813333pt;}
.y75{bottom:925.546667pt;}
.yb9{bottom:928.106667pt;}
.y222{bottom:931.840000pt;}
.y74{bottom:939.306667pt;}
.y8{bottom:939.813333pt;}
.yb8{bottom:941.866667pt;}
.y116{bottom:943.946667pt;}
.ya{bottom:952.293333pt;}
.y73{bottom:953.066667pt;}
.y221{bottom:954.080000pt;}
.yb7{bottom:955.626667pt;}
.y115{bottom:957.386667pt;}
.y159{bottom:961.200000pt;}
.y7{bottom:965.893333pt;}
.y72{bottom:967.786667pt;}
.y220{bottom:968.960000pt;}
.yb6{bottom:969.386667pt;}
.y114{bottom:971.146667pt;}
.y71{bottom:981.546667pt;}
.y6{bottom:982.853333pt;}
.y1ac{bottom:982.880000pt;}
.y21f{bottom:983.040000pt;}
.yb5{bottom:983.306667pt;}
.y113{bottom:985.066667pt;}
.y70{bottom:996.266667pt;}
.y112{bottom:996.933333pt;}
.y21e{bottom:996.960000pt;}
.yb4{bottom:997.066667pt;}
.y5{bottom:998.213333pt;}
.y6f{bottom:1010.026667pt;}
.y1ab{bottom:1010.560000pt;}
.yb3{bottom:1010.826667pt;}
.y4{bottom:1013.600000pt;}
.y10e{bottom:1023.200000pt;}
.y1aa{bottom:1024.346667pt;}
.y6e{bottom:1024.613333pt;}
.y1e1{bottom:1024.666667pt;}
.y3{bottom:1029.600000pt;}
.y111{bottom:1032.000000pt;}
.y3d{bottom:1038.266667pt;}
.y6d{bottom:1038.533333pt;}
.y3b{bottom:1061.066667pt;}
.h20{height:13.746667pt;}
.h36{height:13.760000pt;}
.h1f{height:15.226667pt;}
.h3b{height:15.680000pt;}
.h1c{height:18.720000pt;}
.h52{height:20.960000pt;}
.h54{height:20.986667pt;}
.h50{height:21.120000pt;}
.h22{height:25.440000pt;}
.h1d{height:25.600000pt;}
.h23{height:25.626667pt;}
.h15{height:25.760000pt;}
.h3a{height:27.226667pt;}
.h38{height:27.266667pt;}
.h45{height:27.520000pt;}
.h21{height:27.666667pt;}
.h16{height:27.680000pt;}
.h25{height:27.840000pt;}
.h18{height:30.080000pt;}
.h1a{height:30.266667pt;}
.hc{height:31.390625pt;}
.h3d{height:31.520000pt;}
.h32{height:32.160000pt;}
.h48{height:33.440000pt;}
.h10{height:33.918750pt;}
.h41{height:35.040000pt;}
.h1b{height:36.506667pt;}
.h47{height:36.653333pt;}
.h4d{height:36.960000pt;}
.h37{height:41.440000pt;}
.h49{height:41.920000pt;}
.h2e{height:42.080000pt;}
.h11{height:42.084375pt;}
.h42{height:42.573333pt;}
.h24{height:43.200000pt;}
.h6{height:43.215000pt;}
.h2c{height:46.400000pt;}
.h29{height:46.560000pt;}
.h46{height:47.066667pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.h3c{height:47.226667pt;}
.he{height:48.375000pt;}
.h13{height:49.336436pt;}
.h7{height:49.597187pt;}
.h27{height:49.600000pt;}
.h14{height:49.621875pt;}
.h1e{height:51.026667pt;}
.h8{height:52.108438pt;}
.h55{height:52.504917pt;}
.h56{height:52.526250pt;}
.h43{height:53.440000pt;}
.h3{height:53.535000pt;}
.h35{height:55.200000pt;}
.hf{height:55.247500pt;}
.h33{height:55.346667pt;}
.h4e{height:55.520000pt;}
.h4f{height:55.680000pt;}
.h2d{height:56.506667pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h34{height:59.866667pt;}
.h4a{height:62.866667pt;}
.h40{height:62.880000pt;}
.h26{height:62.893333pt;}
.h2f{height:63.040000pt;}
.ha{height:64.290000pt;}
.h53{height:64.346667pt;}
.h2{height:64.500000pt;}
.h44{height:68.480000pt;}
.h3f{height:70.054167pt;}
.h5{height:72.885000pt;}
.h2b{height:74.560000pt;}
.h28{height:75.269375pt;}
.h9{height:75.465000pt;}
.h30{height:78.080000pt;}
.h39{height:83.266667pt;}
.h51{height:84.640000pt;}
.h31{height:88.146667pt;}
.h4c{height:93.120000pt;}
.h3e{height:95.840000pt;}
.hb{height:99.361333pt;}
.h19{height:102.042708pt;}
.h2a{height:102.789375pt;}
.h17{height:103.109375pt;}
.h4b{height:124.026667pt;}
.h0{height:1122.666667pt;}
.wb{width:28.800000pt;}
.w38{width:47.680000pt;}
.w22{width:56.160000pt;}
.w23{width:56.186667pt;}
.w2d{width:56.960000pt;}
.w2e{width:56.986667pt;}
.w46{width:57.133333pt;}
.w21{width:59.866667pt;}
.w48{width:60.160000pt;}
.w49{width:60.186667pt;}
.w4d{width:60.480000pt;}
.w2c{width:60.506667pt;}
.w15{width:60.626667pt;}
.w47{width:61.120000pt;}
.w4a{width:62.560000pt;}
.w4e{width:62.880000pt;}
.w4f{width:63.040000pt;}
.w4c{width:63.360000pt;}
.w20{width:64.480000pt;}
.w1{width:64.946667pt;}
.w2b{width:65.120000pt;}
.w6{width:68.466667pt;}
.wc{width:71.706667pt;}
.w11{width:72.000000pt;}
.w24{width:72.800000pt;}
.w2f{width:73.600000pt;}
.w3f{width:75.360000pt;}
.w3e{width:76.506667pt;}
.we{width:77.440000pt;}
.w4b{width:79.546667pt;}
.w16{width:81.493333pt;}
.w19{width:85.600000pt;}
.w27{width:86.906667pt;}
.w25{width:87.226667pt;}
.w1b{width:87.546667pt;}
.w32{width:87.853333pt;}
.w30{width:88.186667pt;}
.w28{width:89.440000pt;}
.w34{width:89.626667pt;}
.w26{width:89.760000pt;}
.w33{width:90.400000pt;}
.w31{width:90.720000pt;}
.w13{width:91.226667pt;}
.w3c{width:93.440000pt;}
.w1a{width:94.240000pt;}
.w14{width:96.000000pt;}
.wf{width:96.026667pt;}
.w1e{width:97.920000pt;}
.w8{width:100.480000pt;}
.wa{width:107.226667pt;}
.w5{width:111.226667pt;}
.w43{width:111.853333pt;}
.w12{width:112.186667pt;}
.w1d{width:113.946667pt;}
.w42{width:114.426667pt;}
.w18{width:114.893333pt;}
.w44{width:118.586667pt;}
.w1f{width:124.666667pt;}
.w10{width:125.786667pt;}
.w29{width:125.933333pt;}
.w7{width:132.186667pt;}
.w2{width:135.466667pt;}
.w35{width:135.733333pt;}
.w1c{width:137.600000pt;}
.w41{width:138.933333pt;}
.w3b{width:140.000000pt;}
.w3a{width:143.066667pt;}
.w39{width:146.933333pt;}
.wd{width:153.333333pt;}
.w3{width:158.400000pt;}
.w40{width:160.400000pt;}
.w3d{width:165.200000pt;}
.w36{width:174.400000pt;}
.w4{width:182.000000pt;}
.w9{width:182.933333pt;}
.w17{width:208.666667pt;}
.w37{width:257.733333pt;}
.w45{width:328.533333pt;}
.w2a{width:367.733333pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x31{left:6.706667pt;}
.x5c{left:8.400000pt;}
.x7b{left:9.333333pt;}
.x76{left:10.533333pt;}
.x5e{left:12.133333pt;}
.x93{left:13.066667pt;}
.x65{left:14.400000pt;}
.x1a{left:15.986667pt;}
.x29{left:17.600000pt;}
.x67{left:18.933333pt;}
.x78{left:20.666667pt;}
.x2c{left:22.666667pt;}
.x6b{left:23.600000pt;}
.x5d{left:25.200000pt;}
.x2{left:26.640000pt;}
.x1f{left:27.666667pt;}
.x96{left:31.600000pt;}
.x7c{left:33.600000pt;}
.x82{left:34.800000pt;}
.x1d{left:36.133333pt;}
.x73{left:37.466667pt;}
.x43{left:38.800000pt;}
.x71{left:40.533333pt;}
.xc{left:41.661333pt;}
.x18{left:42.827467pt;}
.xe{left:45.013333pt;}
.x14{left:50.778667pt;}
.x38{left:53.600000pt;}
.x9{left:55.226667pt;}
.x7a{left:56.266667pt;}
.x52{left:57.600000pt;}
.x2a{left:58.666667pt;}
.x83{left:60.933333pt;}
.x79{left:63.466667pt;}
.xf{left:66.360000pt;}
.x23{left:67.733333pt;}
.x6f{left:73.440000pt;}
.x15{left:74.840000pt;}
.x19{left:77.040000pt;}
.x77{left:82.533333pt;}
.x17{left:89.493333pt;}
.x75{left:97.200000pt;}
.x3a{left:105.640000pt;}
.x30{left:106.640000pt;}
.x4d{left:126.440000pt;}
.x85{left:134.133333pt;}
.x54{left:136.400000pt;}
.x28{left:142.400000pt;}
.x21{left:152.266667pt;}
.x45{left:153.466667pt;}
.x69{left:155.733333pt;}
.x20{left:156.666667pt;}
.x59{left:158.400000pt;}
.x1b{left:160.133333pt;}
.x70{left:163.466667pt;}
.x8d{left:166.000000pt;}
.x2e{left:168.000000pt;}
.x25{left:174.400000pt;}
.x33{left:176.000000pt;}
.x90{left:179.066667pt;}
.x32{left:182.666667pt;}
.x7e{left:186.400000pt;}
.x4e{left:187.466667pt;}
.x3f{left:188.533333pt;}
.x26{left:195.333333pt;}
.x68{left:204.800000pt;}
.x97{left:207.200000pt;}
.x8{left:210.906667pt;}
.x5{left:217.040000pt;}
.x6c{left:221.200000pt;}
.x5b{left:223.200000pt;}
.x55{left:230.933333pt;}
.x7f{left:234.400000pt;}
.x92{left:236.533333pt;}
.x3{left:240.266667pt;}
.x89{left:253.466667pt;}
.x4{left:258.320000pt;}
.x4f{left:269.333333pt;}
.x86{left:274.533333pt;}
.x46{left:279.600000pt;}
.x6a{left:282.000000pt;}
.x5f{left:283.466667pt;}
.x4a{left:286.800000pt;}
.x8f{left:287.866667pt;}
.x40{left:289.733333pt;}
.x5a{left:290.666667pt;}
.x8c{left:291.800000pt;}
.x84{left:293.546667pt;}
.x58{left:294.560000pt;}
.x44{left:296.426667pt;}
.x91{left:298.000000pt;}
.x72{left:299.600000pt;}
.x2b{left:301.200000pt;}
.x4c{left:302.346667pt;}
.x7d{left:304.373333pt;}
.x3e{left:307.733333pt;}
.x36{left:308.800000pt;}
.x3b{left:314.666667pt;}
.x34{left:315.733333pt;}
.x13{left:319.666667pt;}
.x60{left:326.133333pt;}
.x8a{left:329.200000pt;}
.x22{left:331.733333pt;}
.x2f{left:338.533333pt;}
.x39{left:340.253333pt;}
.x27{left:345.733333pt;}
.xa{left:346.901333pt;}
.x98{left:349.442667pt;}
.x47{left:351.866667pt;}
.x61{left:353.813333pt;}
.x11{left:355.200000pt;}
.x4b{left:359.120000pt;}
.xd{left:366.680000pt;}
.x87{left:368.266667pt;}
.x53{left:372.653333pt;}
.x99{left:374.349333pt;}
.x16{left:377.600000pt;}
.x62{left:382.800000pt;}
.x80{left:388.933333pt;}
.x1{left:394.800000pt;}
.x63{left:396.533333pt;}
.x10{left:399.666667pt;}
.x94{left:420.000000pt;}
.x6{left:425.746667pt;}
.x41{left:443.333333pt;}
.x7{left:450.293333pt;}
.xb{left:451.674667pt;}
.x56{left:456.933333pt;}
.x48{left:464.400000pt;}
.x64{left:469.733333pt;}
.x6e{left:470.800000pt;}
.x74{left:474.400000pt;}
.x81{left:476.133333pt;}
.x50{left:478.400000pt;}
.x1c{left:483.466667pt;}
.x8b{left:489.866667pt;}
.x3c{left:491.333333pt;}
.x37{left:492.400000pt;}
.x42{left:521.066667pt;}
.x8e{left:527.600000pt;}
.x88{left:533.733333pt;}
.x49{left:556.000000pt;}
.x66{left:557.200000pt;}
.x6d{left:559.066667pt;}
.x95{left:563.200000pt;}
.x57{left:571.200000pt;}
.x12{left:591.213333pt;}
.x51{left:593.600000pt;}
.x3d{left:599.333333pt;}
.x35{left:600.400000pt;}
.x2d{left:619.333333pt;}
.x1e{left:644.933333pt;}
.x24{left:674.933333pt;}
}




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