
    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_8953d30d01fc384f462b9c4c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_2260f0f13a082d4e49112ff7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_45beae24af15e40e55dd9c7f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.073500;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_7e7f867a633b163cbdaf799e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_97e2b438f438261f13a0a62a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.750500;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_2142341ed2b071f970cc97ff.woff')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_437935b8c293f1765d02fac8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.073500;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_fd69f3a32115c386505a087b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2a98f0a002fd1d22efd07628.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e5a9aa66b53808024ef49f57.woff')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.363000px;}
.ls24{letter-spacing:-0.325200px;}
.ls14{letter-spacing:-0.308400px;}
.ls3{letter-spacing:-0.259200px;}
.ls28{letter-spacing:-0.227400px;}
.ls25{letter-spacing:-0.198600px;}
.ls23{letter-spacing:-0.175800px;}
.ls17{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.054720px;}
.ls11{letter-spacing:-0.051840px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.051840px;}
.ls6{letter-spacing:0.054720px;}
.ls10{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.175680px;}
.lse{letter-spacing:0.175800px;}
.ls18{letter-spacing:0.181200px;}
.ls22{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.256320px;}
.ls16{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.322800px;}
.ls20{letter-spacing:0.336960px;}
.ls21{letter-spacing:0.337200px;}
.ls26{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.895680px;}
.lsf{letter-spacing:1.615680px;}
.ls15{letter-spacing:2.335680px;}
.ls1a{letter-spacing:3.055680px;}
.ls1e{letter-spacing:5.215680px;}
.lsd{letter-spacing:5.448000px;}
.ls1d{letter-spacing:5.935680px;}
.ls8{letter-spacing:6.004800px;}
.ls1c{letter-spacing:10.975680px;}
.ls9{letter-spacing:20.573280px;}
.lsb{letter-spacing:54.305280px;}
.ls7{letter-spacing:66.545280px;}
.lsa{letter-spacing:66.689280px;}
.ls27{letter-spacing:77.976000px;}
.ls1b{letter-spacing:132.498720px;}
.ls13{letter-spacing:203.359680px;}
.ls5{letter-spacing:843.456000px;}
.ls19{letter-spacing:851.335680px;}
.ls2{letter-spacing:851.515680px;}
.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;}
}
.wsc{word-spacing:-95.760000px;}
.ws8{word-spacing:-66.240000px;}
.ws7{word-spacing:-23.929680px;}
.ws4{word-spacing:-20.844000px;}
.ws6{word-spacing:-18.481680px;}
.ws1{word-spacing:-13.896000px;}
.wse{word-spacing:-13.121520px;}
.ws15{word-spacing:-13.107120px;}
.wsf{word-spacing:-13.040520px;}
.wsb{word-spacing:-12.965520px;}
.wsd{word-spacing:-12.836160px;}
.ws2{word-spacing:-12.784320px;}
.ws5{word-spacing:-12.729600px;}
.wsa{word-spacing:-12.675120px;}
.ws10{word-spacing:-12.608520px;}
.ws12{word-spacing:-12.585720px;}
.ws14{word-spacing:-12.556920px;}
.ws3{word-spacing:-12.525120px;}
.ws11{word-spacing:-12.459120px;}
.ws13{word-spacing:-12.228480px;}
.ws16{word-spacing:-12.064320px;}
.ws9{word-spacing:-11.605680px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-4.339440px;}
._17{margin-left:-2.782080px;}
._0{margin-left:-1.026000px;}
._1{width:1.968000px;}
._2{width:3.293520px;}
._18{width:4.995840px;}
._4{width:6.429840px;}
._3{width:8.089680px;}
._16{width:9.621600px;}
._33{width:10.623600px;}
._5{width:11.624400px;}
._1b{width:13.808880px;}
._19{width:15.036480px;}
._1d{width:16.197840px;}
._1e{width:17.384400px;}
._23{width:19.077120px;}
._26{width:20.238720px;}
._29{width:21.259920px;}
._21{width:23.250240px;}
._22{width:24.376320px;}
._24{width:25.907760px;}
._25{width:26.970960px;}
._20{width:28.116720px;}
._1f{width:29.410560px;}
._2c{width:31.299120px;}
._27{width:32.357520px;}
._31{width:33.914880px;}
._34{width:35.272080px;}
._32{width:36.527280px;}
._2d{width:73.002000px;}
._28{width:80.746560px;}
._2e{width:93.928320px;}
._2b{width:173.713680px;}
._2a{width:174.741120px;}
._30{width:203.215680px;}
._2f{width:222.267600px;}
._1c{width:851.515680px;}
._12{width:1303.969920px;}
._14{width:1426.686720px;}
._15{width:1503.591360px;}
._8{width:1516.050240px;}
._d{width:1623.280560px;}
._a{width:1729.529520px;}
._7{width:1817.072160px;}
._13{width:1900.800240px;}
._f{width:1911.888240px;}
._10{width:1913.975520px;}
._b{width:1924.219680px;}
._9{width:2046.827040px;}
._e{width:2119.293600px;}
._c{width:2264.816400px;}
._11{width:2307.342480px;}
._6{width:2457.885840px;}
.fc10{color:rgb(37,37,37);}
.fcf{color:rgb(153,153,153);}
.fcd{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(166,166,166);}
.fc5{color:rgb(183,183,183);}
.fc8{color:rgb(255,255,255);}
.fc9{color:rgb(102,102,102);}
.fc2{color:rgb(1,51,52);}
.fcc{color:rgb(0,135,157);}
.fc3{color:rgb(0,52,190);}
.fce{color:rgb(36,36,36);}
.fc6{color:rgb(14,118,184);}
.fc1{color:rgb(89,89,89);}
.fc7{color:rgb(155,187,89);}
.fca{color:rgb(98,185,195);}
.fcb{color:rgb(17,85,204);}
.fsb{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y150{bottom:2.880000px;}
.y2f{bottom:3.780000px;}
.y25{bottom:6.300000px;}
.y22{bottom:6.480000px;}
.yc2{bottom:6.525000px;}
.y15c{bottom:6.660000px;}
.y161{bottom:6.705000px;}
.y24{bottom:8.820000px;}
.y2a{bottom:9.000000px;}
.y1d8{bottom:14.580000px;}
.y19e{bottom:15.840000px;}
.y262{bottom:17.460000px;}
.y22c{bottom:17.820000px;}
.y26d{bottom:18.000000px;}
.y26f{bottom:18.180000px;}
.y1d6{bottom:18.540000px;}
.y250{bottom:21.600000px;}
.y2e{bottom:23.580000px;}
.y15b{bottom:29.340000px;}
.yc1{bottom:29.385000px;}
.y208{bottom:30.240000px;}
.y1a2{bottom:32.400000px;}
.y253{bottom:32.580000px;}
.y1d7{bottom:34.380000px;}
.y19f{bottom:35.460000px;}
.y19d{bottom:35.640000px;}
.y26e{bottom:37.980000px;}
.y249{bottom:38.340000px;}
.y261{bottom:40.320000px;}
.y255{bottom:40.680000px;}
.y1d5{bottom:41.220000px;}
.y1d4{bottom:41.400000px;}
.y2d{bottom:43.380000px;}
.y1a6{bottom:43.425000px;}
.y1a3{bottom:52.020000px;}
.y23c{bottom:52.050000px;}
.yc0{bottom:52.065000px;}
.y1a1{bottom:52.200000px;}
.y160{bottom:52.245000px;}
.y252{bottom:52.380000px;}
.y259{bottom:52.560000px;}
.y3{bottom:56.700000px;}
.y248{bottom:58.140000px;}
.y258{bottom:58.320000px;}
.y1f{bottom:60.480000px;}
.y24f{bottom:61.200000px;}
.y260{bottom:63.000000px;}
.y1a8{bottom:63.180000px;}
.y24b{bottom:63.540000px;}
.y2{bottom:72.900000px;}
.y26b{bottom:74.340000px;}
.y264{bottom:74.520000px;}
.y206{bottom:74.880000px;}
.y23b{bottom:74.910000px;}
.ybf{bottom:74.925000px;}
.y20d{bottom:76.680000px;}
.y247{bottom:77.985000px;}
.y257{bottom:78.120000px;}
.y1e{bottom:80.640000px;}
.y24e{bottom:81.000000px;}
.y269{bottom:82.980000px;}
.y25f{bottom:85.860000px;}
.y1{bottom:86.400000px;}
.y263{bottom:94.320000px;}
.y26a{bottom:97.200000px;}
.y20a{bottom:97.560000px;}
.ybe{bottom:97.605000px;}
.y239{bottom:97.740000px;}
.y23f{bottom:97.785000px;}
.y256{bottom:97.920000px;}
.y20c{bottom:98.460000px;}
.y24d{bottom:100.800000px;}
.y1d{bottom:101.880000px;}
.y2bc{bottom:102.780000px;}
.y2e1{bottom:102.810000px;}
.y268{bottom:105.660000px;}
.y25e{bottom:108.540000px;}
.y238{bottom:120.420000px;}
.ybd{bottom:120.465000px;}
.y24c{bottom:120.600000px;}
.y2bb{bottom:122.580000px;}
.y2e0{bottom:122.610000px;}
.y267{bottom:125.640000px;}
.y25d{bottom:131.400000px;}
.y1a{bottom:135.900000px;}
.y272{bottom:137.340000px;}
.y274{bottom:140.400000px;}
.y2ba{bottom:142.380000px;}
.y2df{bottom:142.410000px;}
.ybc{bottom:143.145000px;}
.y266{bottom:145.485000px;}
.y1c{bottom:151.380000px;}
.y25c{bottom:154.125000px;}
.y19{bottom:154.440000px;}
.y271{bottom:160.020000px;}
.y273{bottom:160.200000px;}
.y2de{bottom:162.210000px;}
.y2b9{bottom:162.225000px;}
.y25b{bottom:165.105000px;}
.y265{bottom:165.285000px;}
.ybb{bottom:166.005000px;}
.y13c{bottom:171.210000px;}
.y28f{bottom:171.570000px;}
.y18{bottom:172.830000px;}
.y1f3{bottom:174.990000px;}
.y13b{bottom:177.150000px;}
.y128{bottom:177.690000px;}
.y1aa{bottom:177.870000px;}
.y26c{bottom:180.750000px;}
.y2dd{bottom:182.010000px;}
.y2b8{bottom:182.025000px;}
.y1de{bottom:185.790000px;}
.y42{bottom:185.970000px;}
.yba{bottom:188.685000px;}
.y149{bottom:190.470000px;}
.y64{bottom:190.650000px;}
.y13a{bottom:191.010000px;}
.yed{bottom:192.450000px;}
.ycb{bottom:192.630000px;}
.y17{bottom:192.810000px;}
.y28e{bottom:194.430000px;}
.y1f2{bottom:197.670000px;}
.y207{bottom:198.210000px;}
.y127{bottom:200.550000px;}
.y2dc{bottom:201.810000px;}
.y2b7{bottom:201.825000px;}
.y1dd{bottom:208.470000px;}
.y234{bottom:208.650000px;}
.y229{bottom:209.190000px;}
.yb9{bottom:211.545000px;}
.y16{bottom:212.610000px;}
.y148{bottom:213.150000px;}
.y1cc{bottom:213.690000px;}
.y241{bottom:214.770000px;}
.yca{bottom:215.310000px;}
.y28d{bottom:217.110000px;}
.y63{bottom:218.010000px;}
.y41{bottom:219.270000px;}
.y1f1{bottom:220.530000px;}
.y2db{bottom:221.610000px;}
.y2b6{bottom:221.625000px;}
.y126{bottom:223.230000px;}
.y1a9{bottom:223.410000px;}
.y159{bottom:225.210000px;}
.y1dc{bottom:231.330000px;}
.y228{bottom:231.870000px;}
.y15{bottom:232.410000px;}
.y2c8{bottom:234.930000px;}
.y147{bottom:236.010000px;}
.y1cb{bottom:236.550000px;}
.yec{bottom:237.990000px;}
.yc9{bottom:238.170000px;}
.y40{bottom:239.070000px;}
.y28c{bottom:239.970000px;}
.y139{bottom:240.690000px;}
.y2da{bottom:241.410000px;}
.y2b5{bottom:241.425000px;}
.y1f0{bottom:243.210000px;}
.y62{bottom:245.370000px;}
.y125{bottom:246.090000px;}
.y1db{bottom:254.010000px;}
.y227{bottom:254.730000px;}
.y14{bottom:254.910000px;}
.y146{bottom:258.690000px;}
.y3f{bottom:258.870000px;}
.y1ca{bottom:259.230000px;}
.y205{bottom:259.410000px;}
.y2ae{bottom:259.950000px;}
.yc8{bottom:260.850000px;}
.y2d9{bottom:261.210000px;}
.y2b4{bottom:261.225000px;}
.y28b{bottom:262.650000px;}
.y25a{bottom:264.810000px;}
.y1ef{bottom:266.070000px;}
.y138{bottom:267.510000px;}
.y158{bottom:268.410000px;}
.y124{bottom:268.770000px;}
.y233{bottom:269.850000px;}
.y1a7{bottom:270.570000px;}
.y61{bottom:272.550000px;}
.y179{bottom:275.610000px;}
.y240{bottom:276.150000px;}
.y226{bottom:277.410000px;}
.y13{bottom:277.770000px;}
.y1da{bottom:278.490000px;}
.y3e{bottom:278.670000px;}
.y2d8{bottom:281.010000px;}
.y2b3{bottom:281.025000px;}
.y145{bottom:281.550000px;}
.y1c9{bottom:282.090000px;}
.y2ad{bottom:282.810000px;}
.yeb{bottom:283.530000px;}
.yc7{bottom:283.710000px;}
.y28a{bottom:285.510000px;}
.y1ee{bottom:288.750000px;}
.y123{bottom:291.630000px;}
.y2c7{bottom:296.130000px;}
.y3d{bottom:298.470000px;}
.y157{bottom:298.830000px;}
.y60{bottom:299.910000px;}
.y225{bottom:300.270000px;}
.y12{bottom:300.450000px;}
.y2d7{bottom:300.810000px;}
.y2b2{bottom:300.825000px;}
.y144{bottom:304.230000px;}
.y10e{bottom:305.130000px;}
.y2ac{bottom:305.490000px;}
.yc6{bottom:306.390000px;}
.y289{bottom:308.190000px;}
.y232{bottom:308.370000px;}
.y1ed{bottom:311.610000px;}
.y122{bottom:314.310000px;}
.y3c{bottom:318.270000px;}
.y1c8{bottom:319.710000px;}
.y2d6{bottom:320.610000px;}
.y2b1{bottom:320.625000px;}
.y178{bottom:321.150000px;}
.y156{bottom:321.510000px;}
.y224{bottom:322.950000px;}
.y11{bottom:323.310000px;}
.y10d{bottom:326.370000px;}
.y143{bottom:327.090000px;}
.y2ab{bottom:328.350000px;}
.yea{bottom:329.070000px;}
.yc5{bottom:329.250000px;}
.y288{bottom:331.050000px;}
.y18b{bottom:334.110000px;}
.y1ec{bottom:334.290000px;}
.y121{bottom:337.170000px;}
.y3b{bottom:338.070000px;}
.y2d5{bottom:340.410000px;}
.y1c7{bottom:342.570000px;}
.y177{bottom:344.010000px;}
.y155{bottom:344.370000px;}
.y1d9{bottom:344.730000px;}
.y5f{bottom:345.630000px;}
.y223{bottom:345.810000px;}
.y10{bottom:345.990000px;}
.y10c{bottom:347.610000px;}
.y142{bottom:349.770000px;}
.y2aa{bottom:351.030000px;}
.yc4{bottom:351.930000px;}
.y287{bottom:353.730000px;}
.y18a{bottom:353.910000px;}
.y2c6{bottom:357.510000px;}
.y3a{bottom:357.870000px;}
.y120{bottom:359.850000px;}
.y2d4{bottom:360.255000px;}
.y10a{bottom:364.350000px;}
.y1c6{bottom:365.250000px;}
.y1a5{bottom:365.610000px;}
.y204{bottom:366.330000px;}
.y176{bottom:366.690000px;}
.y10b{bottom:366.870000px;}
.y154{bottom:367.050000px;}
.yf{bottom:368.850000px;}
.y1eb{bottom:372.090000px;}
.y141{bottom:372.630000px;}
.y189{bottom:373.710000px;}
.y222{bottom:373.890000px;}
.ye9{bottom:374.610000px;}
.yc3{bottom:374.790000px;}
.y286{bottom:376.590000px;}
.y39{bottom:377.670000px;}
.y2d3{bottom:380.055000px;}
.y11f{bottom:382.710000px;}
.y23e{bottom:382.890000px;}
.y5e{bottom:383.610000px;}
.y109{bottom:387.210000px;}
.y1c5{bottom:388.110000px;}
.y175{bottom:389.550000px;}
.y153{bottom:389.910000px;}
.ye{bottom:391.530000px;}
.y188{bottom:393.510000px;}
.y1ea{bottom:394.950000px;}
.y140{bottom:395.310000px;}
.y2a9{bottom:396.570000px;}
.y38{bottom:397.470000px;}
.yb8{bottom:399.270000px;}
.y2a0{bottom:399.630000px;}
.y2d2{bottom:399.855000px;}
.y11e{bottom:405.435000px;}
.y108{bottom:409.935000px;}
.y1c4{bottom:410.835000px;}
.y5d{bottom:411.015000px;}
.y174{bottom:412.275000px;}
.y152{bottom:412.635000px;}
.y187{bottom:413.355000px;}
.yd{bottom:414.435000px;}
.y231{bottom:415.335000px;}
.y1e9{bottom:417.675000px;}
.y13f{bottom:418.215000px;}
.y2c5{bottom:418.755000px;}
.y2a8{bottom:419.475000px;}
.y2d1{bottom:419.655000px;}
.ye8{bottom:420.195000px;}
.y37{bottom:421.815000px;}
.y285{bottom:422.175000px;}
.y29f{bottom:422.535000px;}
.y11d{bottom:428.295000px;}
.y107{bottom:432.795000px;}
.y186{bottom:433.155000px;}
.y173{bottom:435.135000px;}
.ya1{bottom:436.575000px;}
.yc{bottom:437.115000px;}
.y5c{bottom:438.195000px;}
.y2d0{bottom:439.455000px;}
.y1e8{bottom:440.535000px;}
.y1a4{bottom:440.715000px;}
.y13e{bottom:440.895000px;}
.y151{bottom:441.075000px;}
.ye7{bottom:443.055000px;}
.y2a7{bottom:443.955000px;}
.y284{bottom:444.855000px;}
.y221{bottom:445.935000px;}
.y1c3{bottom:448.635000px;}
.y203{bottom:450.435000px;}
.y11c{bottom:450.975000px;}
.y185{bottom:452.955000px;}
.y29e{bottom:454.215000px;}
.y106{bottom:455.475000px;}
.y172{bottom:457.815000px;}
.ya0{bottom:459.255000px;}
.yb{bottom:459.975000px;}
.y254{bottom:461.775000px;}
.y2c4{bottom:461.955000px;}
.y1e7{bottom:463.215000px;}
.y5b{bottom:465.555000px;}
.ye6{bottom:465.735000px;}
.y13d{bottom:466.635000px;}
.y283{bottom:467.715000px;}
.y220{bottom:468.795000px;}
.y1c2{bottom:471.495000px;}
.y14f{bottom:472.395000px;}
.y184{bottom:472.755000px;}
.y11b{bottom:473.835000px;}
.y230{bottom:476.535000px;}
.y1d3{bottom:477.075000px;}
.y36{bottom:477.255000px;}
.y105{bottom:478.335000px;}
.y2cf{bottom:479.055000px;}
.y9f{bottom:479.235000px;}
.y84{bottom:479.775000px;}
.y171{bottom:480.675000px;}
.y2a6{bottom:482.475000px;}
.y1e6{bottom:486.075000px;}
.ye5{bottom:488.595000px;}
.y2c3{bottom:488.955000px;}
.y282{bottom:490.395000px;}
.y21f{bottom:491.475000px;}
.y183{bottom:492.555000px;}
.y5a{bottom:492.915000px;}
.y1c1{bottom:494.175000px;}
.y11a{bottom:496.515000px;}
.y2ce{bottom:498.855000px;}
.y29d{bottom:499.935000px;}
.y104{bottom:501.015000px;}
.y9e{bottom:501.915000px;}
.y170{bottom:503.355000px;}
.ya{bottom:505.875000px;}
.y1e5{bottom:508.755000px;}
.ye4{bottom:511.275000px;}
.y23d{bottom:512.535000px;}
.y83{bottom:512.895000px;}
.y281{bottom:513.255000px;}
.y21e{bottom:514.335000px;}
.y182{bottom:515.235000px;}
.y1a0{bottom:515.955000px;}
.y1c0{bottom:517.035000px;}
.y2cd{bottom:518.655000px;}
.y119{bottom:519.375000px;}
.y59{bottom:520.095000px;}
.y2a5{bottom:520.995000px;}
.y103{bottom:523.875000px;}
.y9d{bottom:524.595000px;}
.y16f{bottom:526.215000px;}
.y1e4{bottom:531.615000px;}
.y35{bottom:532.515000px;}
.ye3{bottom:534.135000px;}
.y202{bottom:534.495000px;}
.y82{bottom:535.755000px;}
.y9{bottom:536.295000px;}
.y21d{bottom:537.015000px;}
.y181{bottom:537.915000px;}
.y2cc{bottom:538.455000px;}
.y1bf{bottom:539.715000px;}
.y280{bottom:541.335000px;}
.y118{bottom:542.055000px;}
.y102{bottom:546.555000px;}
.y58{bottom:547.455000px;}
.y16e{bottom:548.895000px;}
.y9c{bottom:549.075000px;}
.y1d2{bottom:550.335000px;}
.y2c9{bottom:552.495000px;}
.y1e3{bottom:554.295000px;}
.y29c{bottom:554.475000px;}
.ye2{bottom:556.815000px;}
.y2cb{bottom:558.255000px;}
.y81{bottom:558.435000px;}
.y21c{bottom:559.875000px;}
.y180{bottom:560.775000px;}
.y117{bottom:564.915000px;}
.y101{bottom:569.415000px;}
.y8{bottom:571.575000px;}
.y16d{bottom:571.755000px;}
.y57{bottom:574.815000px;}
.y9b{bottom:576.435000px;}
.y1e2{bottom:577.155000px;}
.y1be{bottom:577.515000px;}
.y201{bottom:577.695000px;}
.y2ca{bottom:578.055000px;}
.ye1{bottom:579.675000px;}
.y80{bottom:581.295000px;}
.y2a4{bottom:582.195000px;}
.y21b{bottom:582.555000px;}
.y17f{bottom:583.455000px;}
.y29b{bottom:586.155000px;}
.y116{bottom:587.595000px;}
.y34{bottom:590.295000px;}
.y137{bottom:591.195000px;}
.y251{bottom:591.375000px;}
.y100{bottom:592.095000px;}
.y16c{bottom:594.435000px;}
.y9a{bottom:599.115000px;}
.y1e1{bottom:599.835000px;}
.y19c{bottom:600.015000px;}
.y1bd{bottom:600.375000px;}
.y56{bottom:601.995000px;}
.ye0{bottom:602.355000px;}
.y7f{bottom:603.975000px;}
.y21a{bottom:605.415000px;}
.y17e{bottom:606.315000px;}
.y200{bottom:608.115000px;}
.y29a{bottom:609.015000px;}
.y115{bottom:610.455000px;}
.y7{bottom:610.995000px;}
.y27f{bottom:613.335000px;}
.y136{bottom:614.055000px;}
.yff{bottom:614.955000px;}
.y16b{bottom:617.295000px;}
.y1d1{bottom:617.835000px;}
.y23a{bottom:619.455000px;}
.y33{bottom:620.715000px;}
.y99{bottom:621.975000px;}
.y1e0{bottom:622.695000px;}
.y1bc{bottom:623.055000px;}
.ydf{bottom:625.215000px;}
.y7e{bottom:626.835000px;}
.y219{bottom:628.095000px;}
.y1ff{bottom:630.795000px;}
.y17d{bottom:632.055000px;}
.y114{bottom:633.135000px;}
.y27e{bottom:636.195000px;}
.y135{bottom:636.735000px;}
.yfe{bottom:637.635000px;}
.y16a{bottom:639.975000px;}
.y32{bottom:640.515000px;}
.y299{bottom:640.875000px;}
.yb7{bottom:641.775000px;}
.y2a3{bottom:643.575000px;}
.y98{bottom:644.655000px;}
.y1df{bottom:645.375000px;}
.y1bb{bottom:645.915000px;}
.y55{bottom:647.895000px;}
.y7d{bottom:649.515000px;}
.y6{bottom:650.625000px;}
.y218{bottom:650.985000px;}
.y1fe{bottom:653.685000px;}
.y113{bottom:655.845000px;}
.y27d{bottom:658.905000px;}
.y134{bottom:659.625000px;}
.yfd{bottom:660.525000px;}
.y1d0{bottom:661.065000px;}
.y169{bottom:662.865000px;}
.y298{bottom:663.585000px;}
.yb6{bottom:664.665000px;}
.y31{bottom:664.845000px;}
.y97{bottom:667.545000px;}
.y1ba{bottom:668.625000px;}
.yde{bottom:670.785000px;}
.y7c{bottom:672.405000px;}
.y217{bottom:673.665000px;}
.y24a{bottom:675.465000px;}
.y1fd{bottom:676.365000px;}
.y54{bottom:678.345000px;}
.y112{bottom:678.705000px;}
.y27c{bottom:681.765000px;}
.y2a2{bottom:682.125000px;}
.y133{bottom:682.305000px;}
.yfc{bottom:683.205000px;}
.y168{bottom:685.545000px;}
.yb5{bottom:687.345000px;}
.y17c{bottom:689.145000px;}
.y96{bottom:690.225000px;}
.y2bd{bottom:690.765000px;}
.y1b9{bottom:691.485000px;}
.ydd{bottom:693.465000px;}
.y7b{bottom:695.085000px;}
.y297{bottom:695.445000px;}
.y216{bottom:696.525000px;}
.y53{bottom:698.145000px;}
.y1fc{bottom:702.105000px;}
.y27b{bottom:704.445000px;}
.y132{bottom:705.165000px;}
.y30{bottom:705.525000px;}
.y5{bottom:705.885000px;}
.yfb{bottom:706.065000px;}
.y111{bottom:707.325000px;}
.y167{bottom:708.405000px;}
.yb4{bottom:710.205000px;}
.y19b{bottom:710.745000px;}
.y17b{bottom:711.285000px;}
.y95{bottom:713.085000px;}
.y1b8{bottom:714.165000px;}
.ydc{bottom:716.325000px;}
.y7a{bottom:717.945000px;}
.y296{bottom:718.125000px;}
.y215{bottom:719.205000px;}
.y22f{bottom:721.725000px;}
.y52{bottom:722.445000px;}
.y2a1{bottom:725.325000px;}
.y110{bottom:726.045000px;}
.y237{bottom:726.225000px;}
.y27a{bottom:727.305000px;}
.y131{bottom:727.845000px;}
.yfa{bottom:728.745000px;}
.y17a{bottom:729.105000px;}
.y166{bottom:731.085000px;}
.yb3{bottom:732.885000px;}
.y94{bottom:735.765000px;}
.y1b7{bottom:737.025000px;}
.ydb{bottom:739.005000px;}
.y79{bottom:740.625000px;}
.y295{bottom:740.985000px;}
.y19a{bottom:741.165000px;}
.y214{bottom:742.065000px;}
.y2c{bottom:746.205000px;}
.y51{bottom:746.745000px;}
.y10f{bottom:749.805000px;}
.y279{bottom:749.985000px;}
.y130{bottom:750.705000px;}
.y2b0{bottom:751.245000px;}
.yf9{bottom:751.605000px;}
.y165{bottom:753.945000px;}
.yb2{bottom:755.745000px;}
.y93{bottom:758.625000px;}
.y1fb{bottom:759.345000px;}
.y1b6{bottom:759.705000px;}
.yda{bottom:761.865000px;}
.y78{bottom:763.485000px;}
.y294{bottom:763.665000px;}
.y199{bottom:763.845000px;}
.y213{bottom:764.745000px;}
.y50{bottom:771.045000px;}
.y278{bottom:772.845000px;}
.y12f{bottom:773.385000px;}
.yf8{bottom:774.285000px;}
.yb1{bottom:778.425000px;}
.y164{bottom:779.685000px;}
.y92{bottom:781.305000px;}
.y1fa{bottom:782.025000px;}
.y1b5{bottom:782.565000px;}
.yd9{bottom:784.545000px;}
.y77{bottom:786.165000px;}
.y293{bottom:786.525000px;}
.y198{bottom:786.705000px;}
.y212{bottom:787.605000px;}
.y277{bottom:794.985000px;}
.y4f{bottom:795.345000px;}
.yf7{bottom:797.145000px;}
.y12e{bottom:799.125000px;}
.yb0{bottom:801.285000px;}
.y91{bottom:804.165000px;}
.y1f9{bottom:804.885000px;}
.y1b4{bottom:805.245000px;}
.y22e{bottom:805.785000px;}
.yd8{bottom:807.405000px;}
.y76{bottom:809.025000px;}
.y292{bottom:809.205000px;}
.y197{bottom:809.385000px;}
.y211{bottom:810.285000px;}
.y163{bottom:812.805000px;}
.y276{bottom:816.225000px;}
.y4e{bottom:819.645000px;}
.yf6{bottom:819.825000px;}
.y2b{bottom:821.265000px;}
.yaf{bottom:823.965000px;}
.y90{bottom:826.845000px;}
.y1f8{bottom:827.565000px;}
.y246{bottom:827.925000px;}
.y1b3{bottom:828.105000px;}
.yd7{bottom:830.085000px;}
.y291{bottom:831.345000px;}
.y75{bottom:831.705000px;}
.y196{bottom:832.245000px;}
.y210{bottom:833.145000px;}
.y275{bottom:840.705000px;}
.yf5{bottom:842.685000px;}
.y4d{bottom:843.945000px;}
.y22d{bottom:844.305000px;}
.yae{bottom:846.825000px;}
.y290{bottom:849.165000px;}
.y8f{bottom:849.705000px;}
.y1f7{bottom:850.425000px;}
.y1b2{bottom:850.785000px;}
.yd6{bottom:852.945000px;}
.y74{bottom:854.565000px;}
.y195{bottom:854.925000px;}
.y20f{bottom:855.825000px;}
.y12d{bottom:856.365000px;}
.y29{bottom:861.945000px;}
.yf4{bottom:865.365000px;}
.y4c{bottom:868.245000px;}
.yad{bottom:869.505000px;}
.y162{bottom:869.865000px;}
.y8e{bottom:872.385000px;}
.y1f6{bottom:873.105000px;}
.y1b1{bottom:873.645000px;}
.yd5{bottom:875.625000px;}
.y73{bottom:877.245000px;}
.y194{bottom:877.785000px;}
.y20e{bottom:878.685000px;}
.y12c{bottom:879.045000px;}
.yf3{bottom:888.225000px;}
.yac{bottom:892.365000px;}
.y4b{bottom:892.545000px;}
.y15f{bottom:894.345000px;}
.y8d{bottom:895.290000px;}
.y14e{bottom:896.010000px;}
.y1b0{bottom:896.370000px;}
.y72{bottom:900.150000px;}
.y193{bottom:900.510000px;}
.yd4{bottom:901.410000px;}
.y12b{bottom:901.950000px;}
.y28{bottom:902.670000px;}
.y20b{bottom:903.210000px;}
.y22b{bottom:905.730000px;}
.yf2{bottom:910.950000px;}
.yab{bottom:915.090000px;}
.y4a{bottom:916.890000px;}
.y236{bottom:917.250000px;}
.y8c{bottom:917.970000px;}
.y14d{bottom:918.690000px;}
.y1af{bottom:919.230000px;}
.y71{bottom:922.830000px;}
.y192{bottom:923.370000px;}
.y12a{bottom:930.030000px;}
.yf1{bottom:933.810000px;}
.yd3{bottom:934.530000px;}
.yaa{bottom:937.950000px;}
.y8b{bottom:940.830000px;}
.y49{bottom:941.190000px;}
.y14c{bottom:941.550000px;}
.y1ae{bottom:941.910000px;}
.y27{bottom:943.350000px;}
.y70{bottom:945.690000px;}
.y191{bottom:946.050000px;}
.y2e5{bottom:946.950000px;}
.yf0{bottom:956.490000px;}
.y245{bottom:957.570000px;}
.ya9{bottom:960.630000px;}
.y8a{bottom:963.510000px;}
.y14b{bottom:964.230000px;}
.y1ad{bottom:964.770000px;}
.y48{bottom:965.490000px;}
.yd2{bottom:967.650000px;}
.y6f{bottom:968.370000px;}
.y190{bottom:968.910000px;}
.y2e4{bottom:969.810000px;}
.y270{bottom:970.350000px;}
.y22a{bottom:971.790000px;}
.y15e{bottom:978.450000px;}
.yef{bottom:979.350000px;}
.ya8{bottom:983.490000px;}
.y26{bottom:984.030000px;}
.y89{bottom:986.370000px;}
.y14a{bottom:987.090000px;}
.y1ac{bottom:987.450000px;}
.y47{bottom:989.790000px;}
.y6e{bottom:991.230000px;}
.y18f{bottom:991.590000px;}
.y2e3{bottom:992.490000px;}
.y235{bottom:1001.310000px;}
.yee{bottom:1002.030000px;}
.ya7{bottom:1006.170000px;}
.y88{bottom:1009.050000px;}
.y1f5{bottom:1009.770000px;}
.y1cf{bottom:1010.310000px;}
.y1ab{bottom:1013.190000px;}
.y6d{bottom:1013.910000px;}
.y46{bottom:1014.090000px;}
.y18e{bottom:1014.450000px;}
.y2e2{bottom:1016.970000px;}
.y244{bottom:1023.450000px;}
.y23{bottom:1024.710000px;}
.yd1{bottom:1024.890000px;}
.y69{bottom:1026.510000px;}
.ya6{bottom:1029.030000px;}
.y87{bottom:1031.910000px;}
.y2c2{bottom:1032.090000px;}
.y1f4{bottom:1032.630000px;}
.y209{bottom:1032.810000px;}
.y1ce{bottom:1032.990000px;}
.y6c{bottom:1036.770000px;}
.y18d{bottom:1037.130000px;}
.y45{bottom:1038.390000px;}
.y15d{bottom:1039.830000px;}
.yd0{bottom:1047.570000px;}
.ya5{bottom:1051.710000px;}
.y243{bottom:1053.870000px;}
.y86{bottom:1054.590000px;}
.y68{bottom:1056.930000px;}
.y44{bottom:1058.190000px;}
.y1cd{bottom:1058.730000px;}
.y2c1{bottom:1059.090000px;}
.y6b{bottom:1059.450000px;}
.y18c{bottom:1062.870000px;}
.y21{bottom:1065.210000px;}
.ycf{bottom:1070.430000px;}
.ya4{bottom:1074.390000px;}
.y242{bottom:1076.550000px;}
.y85{bottom:1077.450000px;}
.y6a{bottom:1082.310000px;}
.y43{bottom:1082.490000px;}
.y67{bottom:1084.290000px;}
.y2c0{bottom:1086.090000px;}
.yce{bottom:1093.110000px;}
.ya3{bottom:1097.250000px;}
.y15a{bottom:1101.030000px;}
.y2af{bottom:1102.650000px;}
.y66{bottom:1111.470000px;}
.y2bf{bottom:1113.090000px;}
.ycd{bottom:1115.970000px;}
.y129{bottom:1121.910000px;}
.y4{bottom:1122.270000px;}
.ya2{bottom:1125.330000px;}
.y20{bottom:1128.210000px;}
.ycc{bottom:1138.650000px;}
.y65{bottom:1138.830000px;}
.y2be{bottom:1140.090000px;}
.y1b{bottom:1160.460000px;}
.he{height:19.800000px;}
.h1d{height:22.680000px;}
.h2f{height:22.716000px;}
.h2d{height:22.860000px;}
.hb{height:24.840000px;}
.ha{height:25.020000px;}
.h1b{height:37.208160px;}
.h8{height:39.460320px;}
.hf{height:39.600000px;}
.h2{height:44.172000px;}
.h1f{height:45.540000px;}
.h1e{height:45.576000px;}
.h3{height:48.114000px;}
.h28{height:50.400000px;}
.h26{height:51.660000px;}
.h21{height:51.696000px;}
.h1a{height:53.246160px;}
.h18{height:53.515080px;}
.h10{height:54.184320px;}
.h19{height:56.453760px;}
.h27{height:57.420000px;}
.h5{height:59.019840px;}
.h7{height:59.317920px;}
.hd{height:59.400000px;}
.h23{height:59.436000px;}
.h9{height:64.152000px;}
.hc{height:64.476000px;}
.h12{height:68.084282px;}
.h22{height:68.220000px;}
.h29{height:68.256000px;}
.h2e{height:68.400000px;}
.h20{height:68.436000px;}
.h13{height:75.436920px;}
.h24{height:79.200000px;}
.h17{height:85.753080px;}
.h2a{height:91.080000px;}
.h31{height:91.116000px;}
.h6{height:96.714000px;}
.h25{height:98.426190px;}
.h16{height:99.687656px;}
.h11{height:107.133840px;}
.h37{height:107.674920px;}
.h36{height:111.006981px;}
.h2c{height:113.760000px;}
.h2b{height:113.796000px;}
.h33{height:113.940000px;}
.h32{height:113.976000px;}
.h4{height:117.991080px;}
.h14{height:125.171719px;}
.h30{height:136.620000px;}
.h35{height:176.250000px;}
.h34{height:181.290000px;}
.h15{height:227.730000px;}
.h38{height:336.630000px;}
.h1c{height:394.410000px;}
.h39{height:594.105000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:73.476000px;}
.w15{width:94.716000px;}
.w1b{width:105.480000px;}
.w1c{width:105.516000px;}
.w11{width:115.236000px;}
.w5{width:115.956000px;}
.w21{width:126.576000px;}
.wc{width:137.196000px;}
.w18{width:148.176000px;}
.w1a{width:158.760000px;}
.w19{width:158.790000px;}
.w7{width:164.190000px;}
.we{width:165.810000px;}
.w6{width:185.250000px;}
.w14{width:204.015000px;}
.wf{width:206.310000px;}
.w1f{width:211.890000px;}
.w3{width:222.195000px;}
.w13{width:222.690000px;}
.w12{width:233.850000px;}
.w8{width:264.990000px;}
.w16{width:296.850000px;}
.w17{width:339.375000px;}
.w10{width:353.775000px;}
.w1e{width:445.755000px;}
.w22{width:499.065000px;}
.w4{width:509.475000px;}
.wd{width:605.265000px;}
.w23{width:678.930000px;}
.w20{width:679.110000px;}
.w9{width:729.690000px;}
.wb{width:730.410000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:2.700000px;}
.x3c{left:7.020000px;}
.x9{left:8.100000px;}
.x3f{left:12.240000px;}
.x10{left:13.536000px;}
.x2b{left:15.336000px;}
.x7{left:16.416000px;}
.x49{left:20.520000px;}
.x15{left:23.256000px;}
.x16{left:25.560000px;}
.x12{left:28.800000px;}
.x11{left:31.320000px;}
.x43{left:32.400000px;}
.xe{left:34.920000px;}
.xa{left:39.996000px;}
.x13{left:41.040000px;}
.xc{left:43.380000px;}
.x46{left:52.200000px;}
.x44{left:63.720000px;}
.x31{left:64.836000px;}
.x3b{left:67.005000px;}
.x51{left:68.085000px;}
.x36{left:71.145000px;}
.x39{left:77.790000px;}
.x2{left:80.999987px;}
.x1b{left:86.039987px;}
.x27{left:87.119987px;}
.x17{left:88.380000px;}
.x4d{left:91.619987px;}
.x34{left:95.070000px;}
.x19{left:97.595987px;}
.x18{left:108.035987px;}
.x1c{left:113.075987px;}
.x1e{left:114.875987px;}
.x1d{left:124.235987px;}
.x41{left:131.070000px;}
.x14{left:132.345000px;}
.x1a{left:135.035987px;}
.x37{left:148.350000px;}
.x4e{left:155.910000px;}
.x4f{left:166.005000px;}
.x3e{left:177.150000px;}
.x56{left:189.585000px;}
.xb{left:198.390000px;}
.x55{left:209.010000px;}
.x4c{left:213.869987px;}
.x2c{left:219.630000px;}
.x29{left:231.329987px;}
.x21{left:234.389987px;}
.x2a{left:247.169987px;}
.x32{left:248.250000px;}
.x2d{left:255.645000px;}
.x3d{left:269.489987px;}
.x1{left:285.149987px;}
.x20{left:288.794987px;}
.x25{left:290.234987px;}
.x26{left:297.074987px;}
.x6{left:298.514987px;}
.x8{left:304.815000px;}
.x2f{left:306.074987px;}
.x35{left:345.314987px;}
.x42{left:347.474987px;}
.x54{left:358.274987px;}
.x5{left:360.614987px;}
.x52{left:363.134987px;}
.x30{left:370.694987px;}
.x1f{left:373.754987px;}
.xd{left:384.375000px;}
.x38{left:432.255000px;}
.x4{left:446.474987px;}
.x33{left:455.295000px;}
.x40{left:474.915000px;}
.x45{left:506.085000px;}
.xf{left:549.285000px;}
.x50{left:602.385000px;}
.x3a{left:655.665000px;}
.x47{left:665.610000px;}
.x28{left:687.930000px;}
.x57{left:708.810000px;}
.x24{left:744.809987px;}
.x48{left:771.810000px;}
.x4b{left:775.949987px;}
.x2e{left:779.009987px;}
.x53{left:795.749987px;}
.x22{left:802.589973px;}
.x23{left:808.709987px;}
.x3{left:811.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.322667pt;}
.ls24{letter-spacing:-0.289067pt;}
.ls14{letter-spacing:-0.274133pt;}
.ls3{letter-spacing:-0.230400pt;}
.ls28{letter-spacing:-0.202133pt;}
.ls25{letter-spacing:-0.176533pt;}
.ls23{letter-spacing:-0.156267pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.048640pt;}
.ls11{letter-spacing:-0.046080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.046080pt;}
.ls6{letter-spacing:0.048640pt;}
.ls10{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.156160pt;}
.lse{letter-spacing:0.156267pt;}
.ls18{letter-spacing:0.161067pt;}
.ls22{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.227840pt;}
.ls16{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.286933pt;}
.ls20{letter-spacing:0.299520pt;}
.ls21{letter-spacing:0.299733pt;}
.ls26{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.796160pt;}
.lsf{letter-spacing:1.436160pt;}
.ls15{letter-spacing:2.076160pt;}
.ls1a{letter-spacing:2.716160pt;}
.ls1e{letter-spacing:4.636160pt;}
.lsd{letter-spacing:4.842667pt;}
.ls1d{letter-spacing:5.276160pt;}
.ls8{letter-spacing:5.337600pt;}
.ls1c{letter-spacing:9.756160pt;}
.ls9{letter-spacing:18.287360pt;}
.lsb{letter-spacing:48.271360pt;}
.ls7{letter-spacing:59.151360pt;}
.lsa{letter-spacing:59.279360pt;}
.ls27{letter-spacing:69.312000pt;}
.ls1b{letter-spacing:117.776640pt;}
.ls13{letter-spacing:180.764160pt;}
.ls5{letter-spacing:749.738667pt;}
.ls19{letter-spacing:756.742827pt;}
.ls2{letter-spacing:756.902827pt;}
.wsc{word-spacing:-85.120000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws7{word-spacing:-21.270827pt;}
.ws4{word-spacing:-18.528000pt;}
.ws6{word-spacing:-16.428160pt;}
.ws1{word-spacing:-12.352000pt;}
.wse{word-spacing:-11.663573pt;}
.ws15{word-spacing:-11.650773pt;}
.wsf{word-spacing:-11.591573pt;}
.wsb{word-spacing:-11.524907pt;}
.wsd{word-spacing:-11.409920pt;}
.ws2{word-spacing:-11.363840pt;}
.ws5{word-spacing:-11.315200pt;}
.wsa{word-spacing:-11.266773pt;}
.ws10{word-spacing:-11.207573pt;}
.ws12{word-spacing:-11.187307pt;}
.ws14{word-spacing:-11.161707pt;}
.ws3{word-spacing:-11.133440pt;}
.ws11{word-spacing:-11.074773pt;}
.ws13{word-spacing:-10.869760pt;}
.ws16{word-spacing:-10.723840pt;}
.ws9{word-spacing:-10.316160pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-3.857280pt;}
._17{margin-left:-2.472960pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.749333pt;}
._2{width:2.927573pt;}
._18{width:4.440747pt;}
._4{width:5.715413pt;}
._3{width:7.190827pt;}
._16{width:8.552533pt;}
._33{width:9.443200pt;}
._5{width:10.332800pt;}
._1b{width:12.274560pt;}
._19{width:13.365760pt;}
._1d{width:14.398080pt;}
._1e{width:15.452800pt;}
._23{width:16.957440pt;}
._26{width:17.989973pt;}
._29{width:18.897707pt;}
._21{width:20.666880pt;}
._22{width:21.667840pt;}
._24{width:23.029120pt;}
._25{width:23.974187pt;}
._20{width:24.992640pt;}
._1f{width:26.142720pt;}
._2c{width:27.821440pt;}
._27{width:28.762240pt;}
._31{width:30.146560pt;}
._34{width:31.352960pt;}
._32{width:32.468693pt;}
._2d{width:64.890667pt;}
._28{width:71.774720pt;}
._2e{width:83.491840pt;}
._2b{width:154.412160pt;}
._2a{width:155.325440pt;}
._30{width:180.636160pt;}
._2f{width:197.571200pt;}
._1c{width:756.902827pt;}
._12{width:1159.084373pt;}
._14{width:1268.165973pt;}
._15{width:1336.525653pt;}
._8{width:1347.600213pt;}
._d{width:1442.916053pt;}
._a{width:1537.359573pt;}
._7{width:1615.175253pt;}
._13{width:1689.600213pt;}
._f{width:1699.456213pt;}
._10{width:1701.311573pt;}
._b{width:1710.417493pt;}
._9{width:1819.401813pt;}
._e{width:1883.816533pt;}
._c{width:2013.170133pt;}
._11{width:2050.971093pt;}
._6{width:2184.787413pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:2.560000pt;}
.y2f{bottom:3.360000pt;}
.y25{bottom:5.600000pt;}
.y22{bottom:5.760000pt;}
.yc2{bottom:5.800000pt;}
.y15c{bottom:5.920000pt;}
.y161{bottom:5.960000pt;}
.y24{bottom:7.840000pt;}
.y2a{bottom:8.000000pt;}
.y1d8{bottom:12.960000pt;}
.y19e{bottom:14.080000pt;}
.y262{bottom:15.520000pt;}
.y22c{bottom:15.840000pt;}
.y26d{bottom:16.000000pt;}
.y26f{bottom:16.160000pt;}
.y1d6{bottom:16.480000pt;}
.y250{bottom:19.200000pt;}
.y2e{bottom:20.960000pt;}
.y15b{bottom:26.080000pt;}
.yc1{bottom:26.120000pt;}
.y208{bottom:26.880000pt;}
.y1a2{bottom:28.800000pt;}
.y253{bottom:28.960000pt;}
.y1d7{bottom:30.560000pt;}
.y19f{bottom:31.520000pt;}
.y19d{bottom:31.680000pt;}
.y26e{bottom:33.760000pt;}
.y249{bottom:34.080000pt;}
.y261{bottom:35.840000pt;}
.y255{bottom:36.160000pt;}
.y1d5{bottom:36.640000pt;}
.y1d4{bottom:36.800000pt;}
.y2d{bottom:38.560000pt;}
.y1a6{bottom:38.600000pt;}
.y1a3{bottom:46.240000pt;}
.y23c{bottom:46.266667pt;}
.yc0{bottom:46.280000pt;}
.y1a1{bottom:46.400000pt;}
.y160{bottom:46.440000pt;}
.y252{bottom:46.560000pt;}
.y259{bottom:46.720000pt;}
.y3{bottom:50.400000pt;}
.y248{bottom:51.680000pt;}
.y258{bottom:51.840000pt;}
.y1f{bottom:53.760000pt;}
.y24f{bottom:54.400000pt;}
.y260{bottom:56.000000pt;}
.y1a8{bottom:56.160000pt;}
.y24b{bottom:56.480000pt;}
.y2{bottom:64.800000pt;}
.y26b{bottom:66.080000pt;}
.y264{bottom:66.240000pt;}
.y206{bottom:66.560000pt;}
.y23b{bottom:66.586667pt;}
.ybf{bottom:66.600000pt;}
.y20d{bottom:68.160000pt;}
.y247{bottom:69.320000pt;}
.y257{bottom:69.440000pt;}
.y1e{bottom:71.680000pt;}
.y24e{bottom:72.000000pt;}
.y269{bottom:73.760000pt;}
.y25f{bottom:76.320000pt;}
.y1{bottom:76.800000pt;}
.y263{bottom:83.840000pt;}
.y26a{bottom:86.400000pt;}
.y20a{bottom:86.720000pt;}
.ybe{bottom:86.760000pt;}
.y239{bottom:86.880000pt;}
.y23f{bottom:86.920000pt;}
.y256{bottom:87.040000pt;}
.y20c{bottom:87.520000pt;}
.y24d{bottom:89.600000pt;}
.y1d{bottom:90.560000pt;}
.y2bc{bottom:91.360000pt;}
.y2e1{bottom:91.386667pt;}
.y268{bottom:93.920000pt;}
.y25e{bottom:96.480000pt;}
.y238{bottom:107.040000pt;}
.ybd{bottom:107.080000pt;}
.y24c{bottom:107.200000pt;}
.y2bb{bottom:108.960000pt;}
.y2e0{bottom:108.986667pt;}
.y267{bottom:111.680000pt;}
.y25d{bottom:116.800000pt;}
.y1a{bottom:120.800000pt;}
.y272{bottom:122.080000pt;}
.y274{bottom:124.800000pt;}
.y2ba{bottom:126.560000pt;}
.y2df{bottom:126.586667pt;}
.ybc{bottom:127.240000pt;}
.y266{bottom:129.320000pt;}
.y1c{bottom:134.560000pt;}
.y25c{bottom:137.000000pt;}
.y19{bottom:137.280000pt;}
.y271{bottom:142.240000pt;}
.y273{bottom:142.400000pt;}
.y2de{bottom:144.186667pt;}
.y2b9{bottom:144.200000pt;}
.y25b{bottom:146.760000pt;}
.y265{bottom:146.920000pt;}
.ybb{bottom:147.560000pt;}
.y13c{bottom:152.186667pt;}
.y28f{bottom:152.506667pt;}
.y18{bottom:153.626667pt;}
.y1f3{bottom:155.546667pt;}
.y13b{bottom:157.466667pt;}
.y128{bottom:157.946667pt;}
.y1aa{bottom:158.106667pt;}
.y26c{bottom:160.666667pt;}
.y2dd{bottom:161.786667pt;}
.y2b8{bottom:161.800000pt;}
.y1de{bottom:165.146667pt;}
.y42{bottom:165.306667pt;}
.yba{bottom:167.720000pt;}
.y149{bottom:169.306667pt;}
.y64{bottom:169.466667pt;}
.y13a{bottom:169.786667pt;}
.yed{bottom:171.066667pt;}
.ycb{bottom:171.226667pt;}
.y17{bottom:171.386667pt;}
.y28e{bottom:172.826667pt;}
.y1f2{bottom:175.706667pt;}
.y207{bottom:176.186667pt;}
.y127{bottom:178.266667pt;}
.y2dc{bottom:179.386667pt;}
.y2b7{bottom:179.400000pt;}
.y1dd{bottom:185.306667pt;}
.y234{bottom:185.466667pt;}
.y229{bottom:185.946667pt;}
.yb9{bottom:188.040000pt;}
.y16{bottom:188.986667pt;}
.y148{bottom:189.466667pt;}
.y1cc{bottom:189.946667pt;}
.y241{bottom:190.906667pt;}
.yca{bottom:191.386667pt;}
.y28d{bottom:192.986667pt;}
.y63{bottom:193.786667pt;}
.y41{bottom:194.906667pt;}
.y1f1{bottom:196.026667pt;}
.y2db{bottom:196.986667pt;}
.y2b6{bottom:197.000000pt;}
.y126{bottom:198.426667pt;}
.y1a9{bottom:198.586667pt;}
.y159{bottom:200.186667pt;}
.y1dc{bottom:205.626667pt;}
.y228{bottom:206.106667pt;}
.y15{bottom:206.586667pt;}
.y2c8{bottom:208.826667pt;}
.y147{bottom:209.786667pt;}
.y1cb{bottom:210.266667pt;}
.yec{bottom:211.546667pt;}
.yc9{bottom:211.706667pt;}
.y40{bottom:212.506667pt;}
.y28c{bottom:213.306667pt;}
.y139{bottom:213.946667pt;}
.y2da{bottom:214.586667pt;}
.y2b5{bottom:214.600000pt;}
.y1f0{bottom:216.186667pt;}
.y62{bottom:218.106667pt;}
.y125{bottom:218.746667pt;}
.y1db{bottom:225.786667pt;}
.y227{bottom:226.426667pt;}
.y14{bottom:226.586667pt;}
.y146{bottom:229.946667pt;}
.y3f{bottom:230.106667pt;}
.y1ca{bottom:230.426667pt;}
.y205{bottom:230.586667pt;}
.y2ae{bottom:231.066667pt;}
.yc8{bottom:231.866667pt;}
.y2d9{bottom:232.186667pt;}
.y2b4{bottom:232.200000pt;}
.y28b{bottom:233.466667pt;}
.y25a{bottom:235.386667pt;}
.y1ef{bottom:236.506667pt;}
.y138{bottom:237.786667pt;}
.y158{bottom:238.586667pt;}
.y124{bottom:238.906667pt;}
.y233{bottom:239.866667pt;}
.y1a7{bottom:240.506667pt;}
.y61{bottom:242.266667pt;}
.y179{bottom:244.986667pt;}
.y240{bottom:245.466667pt;}
.y226{bottom:246.586667pt;}
.y13{bottom:246.906667pt;}
.y1da{bottom:247.546667pt;}
.y3e{bottom:247.706667pt;}
.y2d8{bottom:249.786667pt;}
.y2b3{bottom:249.800000pt;}
.y145{bottom:250.266667pt;}
.y1c9{bottom:250.746667pt;}
.y2ad{bottom:251.386667pt;}
.yeb{bottom:252.026667pt;}
.yc7{bottom:252.186667pt;}
.y28a{bottom:253.786667pt;}
.y1ee{bottom:256.666667pt;}
.y123{bottom:259.226667pt;}
.y2c7{bottom:263.226667pt;}
.y3d{bottom:265.306667pt;}
.y157{bottom:265.626667pt;}
.y60{bottom:266.586667pt;}
.y225{bottom:266.906667pt;}
.y12{bottom:267.066667pt;}
.y2d7{bottom:267.386667pt;}
.y2b2{bottom:267.400000pt;}
.y144{bottom:270.426667pt;}
.y10e{bottom:271.226667pt;}
.y2ac{bottom:271.546667pt;}
.yc6{bottom:272.346667pt;}
.y289{bottom:273.946667pt;}
.y232{bottom:274.106667pt;}
.y1ed{bottom:276.986667pt;}
.y122{bottom:279.386667pt;}
.y3c{bottom:282.906667pt;}
.y1c8{bottom:284.186667pt;}
.y2d6{bottom:284.986667pt;}
.y2b1{bottom:285.000000pt;}
.y178{bottom:285.466667pt;}
.y156{bottom:285.786667pt;}
.y224{bottom:287.066667pt;}
.y11{bottom:287.386667pt;}
.y10d{bottom:290.106667pt;}
.y143{bottom:290.746667pt;}
.y2ab{bottom:291.866667pt;}
.yea{bottom:292.506667pt;}
.yc5{bottom:292.666667pt;}
.y288{bottom:294.266667pt;}
.y18b{bottom:296.986667pt;}
.y1ec{bottom:297.146667pt;}
.y121{bottom:299.706667pt;}
.y3b{bottom:300.506667pt;}
.y2d5{bottom:302.586667pt;}
.y1c7{bottom:304.506667pt;}
.y177{bottom:305.786667pt;}
.y155{bottom:306.106667pt;}
.y1d9{bottom:306.426667pt;}
.y5f{bottom:307.226667pt;}
.y223{bottom:307.386667pt;}
.y10{bottom:307.546667pt;}
.y10c{bottom:308.986667pt;}
.y142{bottom:310.906667pt;}
.y2aa{bottom:312.026667pt;}
.yc4{bottom:312.826667pt;}
.y287{bottom:314.426667pt;}
.y18a{bottom:314.586667pt;}
.y2c6{bottom:317.786667pt;}
.y3a{bottom:318.106667pt;}
.y120{bottom:319.866667pt;}
.y2d4{bottom:320.226667pt;}
.y10a{bottom:323.866667pt;}
.y1c6{bottom:324.666667pt;}
.y1a5{bottom:324.986667pt;}
.y204{bottom:325.626667pt;}
.y176{bottom:325.946667pt;}
.y10b{bottom:326.106667pt;}
.y154{bottom:326.266667pt;}
.yf{bottom:327.866667pt;}
.y1eb{bottom:330.746667pt;}
.y141{bottom:331.226667pt;}
.y189{bottom:332.186667pt;}
.y222{bottom:332.346667pt;}
.ye9{bottom:332.986667pt;}
.yc3{bottom:333.146667pt;}
.y286{bottom:334.746667pt;}
.y39{bottom:335.706667pt;}
.y2d3{bottom:337.826667pt;}
.y11f{bottom:340.186667pt;}
.y23e{bottom:340.346667pt;}
.y5e{bottom:340.986667pt;}
.y109{bottom:344.186667pt;}
.y1c5{bottom:344.986667pt;}
.y175{bottom:346.266667pt;}
.y153{bottom:346.586667pt;}
.ye{bottom:348.026667pt;}
.y188{bottom:349.786667pt;}
.y1ea{bottom:351.066667pt;}
.y140{bottom:351.386667pt;}
.y2a9{bottom:352.506667pt;}
.y38{bottom:353.306667pt;}
.yb8{bottom:354.906667pt;}
.y2a0{bottom:355.226667pt;}
.y2d2{bottom:355.426667pt;}
.y11e{bottom:360.386667pt;}
.y108{bottom:364.386667pt;}
.y1c4{bottom:365.186667pt;}
.y5d{bottom:365.346667pt;}
.y174{bottom:366.466667pt;}
.y152{bottom:366.786667pt;}
.y187{bottom:367.426667pt;}
.yd{bottom:368.386667pt;}
.y231{bottom:369.186667pt;}
.y1e9{bottom:371.266667pt;}
.y13f{bottom:371.746667pt;}
.y2c5{bottom:372.226667pt;}
.y2a8{bottom:372.866667pt;}
.y2d1{bottom:373.026667pt;}
.ye8{bottom:373.506667pt;}
.y37{bottom:374.946667pt;}
.y285{bottom:375.266667pt;}
.y29f{bottom:375.586667pt;}
.y11d{bottom:380.706667pt;}
.y107{bottom:384.706667pt;}
.y186{bottom:385.026667pt;}
.y173{bottom:386.786667pt;}
.ya1{bottom:388.066667pt;}
.yc{bottom:388.546667pt;}
.y5c{bottom:389.506667pt;}
.y2d0{bottom:390.626667pt;}
.y1e8{bottom:391.586667pt;}
.y1a4{bottom:391.746667pt;}
.y13e{bottom:391.906667pt;}
.y151{bottom:392.066667pt;}
.ye7{bottom:393.826667pt;}
.y2a7{bottom:394.626667pt;}
.y284{bottom:395.426667pt;}
.y221{bottom:396.386667pt;}
.y1c3{bottom:398.786667pt;}
.y203{bottom:400.386667pt;}
.y11c{bottom:400.866667pt;}
.y185{bottom:402.626667pt;}
.y29e{bottom:403.746667pt;}
.y106{bottom:404.866667pt;}
.y172{bottom:406.946667pt;}
.ya0{bottom:408.226667pt;}
.yb{bottom:408.866667pt;}
.y254{bottom:410.466667pt;}
.y2c4{bottom:410.626667pt;}
.y1e7{bottom:411.746667pt;}
.y5b{bottom:413.826667pt;}
.ye6{bottom:413.986667pt;}
.y13d{bottom:414.786667pt;}
.y283{bottom:415.746667pt;}
.y220{bottom:416.706667pt;}
.y1c2{bottom:419.106667pt;}
.y14f{bottom:419.906667pt;}
.y184{bottom:420.226667pt;}
.y11b{bottom:421.186667pt;}
.y230{bottom:423.586667pt;}
.y1d3{bottom:424.066667pt;}
.y36{bottom:424.226667pt;}
.y105{bottom:425.186667pt;}
.y2cf{bottom:425.826667pt;}
.y9f{bottom:425.986667pt;}
.y84{bottom:426.466667pt;}
.y171{bottom:427.266667pt;}
.y2a6{bottom:428.866667pt;}
.y1e6{bottom:432.066667pt;}
.ye5{bottom:434.306667pt;}
.y2c3{bottom:434.626667pt;}
.y282{bottom:435.906667pt;}
.y21f{bottom:436.866667pt;}
.y183{bottom:437.826667pt;}
.y5a{bottom:438.146667pt;}
.y1c1{bottom:439.266667pt;}
.y11a{bottom:441.346667pt;}
.y2ce{bottom:443.426667pt;}
.y29d{bottom:444.386667pt;}
.y104{bottom:445.346667pt;}
.y9e{bottom:446.146667pt;}
.y170{bottom:447.426667pt;}
.ya{bottom:449.666667pt;}
.y1e5{bottom:452.226667pt;}
.ye4{bottom:454.466667pt;}
.y23d{bottom:455.586667pt;}
.y83{bottom:455.906667pt;}
.y281{bottom:456.226667pt;}
.y21e{bottom:457.186667pt;}
.y182{bottom:457.986667pt;}
.y1a0{bottom:458.626667pt;}
.y1c0{bottom:459.586667pt;}
.y2cd{bottom:461.026667pt;}
.y119{bottom:461.666667pt;}
.y59{bottom:462.306667pt;}
.y2a5{bottom:463.106667pt;}
.y103{bottom:465.666667pt;}
.y9d{bottom:466.306667pt;}
.y16f{bottom:467.746667pt;}
.y1e4{bottom:472.546667pt;}
.y35{bottom:473.346667pt;}
.ye3{bottom:474.786667pt;}
.y202{bottom:475.106667pt;}
.y82{bottom:476.226667pt;}
.y9{bottom:476.706667pt;}
.y21d{bottom:477.346667pt;}
.y181{bottom:478.146667pt;}
.y2cc{bottom:478.626667pt;}
.y1bf{bottom:479.746667pt;}
.y280{bottom:481.186667pt;}
.y118{bottom:481.826667pt;}
.y102{bottom:485.826667pt;}
.y58{bottom:486.626667pt;}
.y16e{bottom:487.906667pt;}
.y9c{bottom:488.066667pt;}
.y1d2{bottom:489.186667pt;}
.y2c9{bottom:491.106667pt;}
.y1e3{bottom:492.706667pt;}
.y29c{bottom:492.866667pt;}
.ye2{bottom:494.946667pt;}
.y2cb{bottom:496.226667pt;}
.y81{bottom:496.386667pt;}
.y21c{bottom:497.666667pt;}
.y180{bottom:498.466667pt;}
.y117{bottom:502.146667pt;}
.y101{bottom:506.146667pt;}
.y8{bottom:508.066667pt;}
.y16d{bottom:508.226667pt;}
.y57{bottom:510.946667pt;}
.y9b{bottom:512.386667pt;}
.y1e2{bottom:513.026667pt;}
.y1be{bottom:513.346667pt;}
.y201{bottom:513.506667pt;}
.y2ca{bottom:513.826667pt;}
.ye1{bottom:515.266667pt;}
.y80{bottom:516.706667pt;}
.y2a4{bottom:517.506667pt;}
.y21b{bottom:517.826667pt;}
.y17f{bottom:518.626667pt;}
.y29b{bottom:521.026667pt;}
.y116{bottom:522.306667pt;}
.y34{bottom:524.706667pt;}
.y137{bottom:525.506667pt;}
.y251{bottom:525.666667pt;}
.y100{bottom:526.306667pt;}
.y16c{bottom:528.386667pt;}
.y9a{bottom:532.546667pt;}
.y1e1{bottom:533.186667pt;}
.y19c{bottom:533.346667pt;}
.y1bd{bottom:533.666667pt;}
.y56{bottom:535.106667pt;}
.ye0{bottom:535.426667pt;}
.y7f{bottom:536.866667pt;}
.y21a{bottom:538.146667pt;}
.y17e{bottom:538.946667pt;}
.y200{bottom:540.546667pt;}
.y29a{bottom:541.346667pt;}
.y115{bottom:542.626667pt;}
.y7{bottom:543.106667pt;}
.y27f{bottom:545.186667pt;}
.y136{bottom:545.826667pt;}
.yff{bottom:546.626667pt;}
.y16b{bottom:548.706667pt;}
.y1d1{bottom:549.186667pt;}
.y23a{bottom:550.626667pt;}
.y33{bottom:551.746667pt;}
.y99{bottom:552.866667pt;}
.y1e0{bottom:553.506667pt;}
.y1bc{bottom:553.826667pt;}
.ydf{bottom:555.746667pt;}
.y7e{bottom:557.186667pt;}
.y219{bottom:558.306667pt;}
.y1ff{bottom:560.706667pt;}
.y17d{bottom:561.826667pt;}
.y114{bottom:562.786667pt;}
.y27e{bottom:565.506667pt;}
.y135{bottom:565.986667pt;}
.yfe{bottom:566.786667pt;}
.y16a{bottom:568.866667pt;}
.y32{bottom:569.346667pt;}
.y299{bottom:569.666667pt;}
.yb7{bottom:570.466667pt;}
.y2a3{bottom:572.066667pt;}
.y98{bottom:573.026667pt;}
.y1df{bottom:573.666667pt;}
.y1bb{bottom:574.146667pt;}
.y55{bottom:575.906667pt;}
.y7d{bottom:577.346667pt;}
.y6{bottom:578.333333pt;}
.y218{bottom:578.653333pt;}
.y1fe{bottom:581.053333pt;}
.y113{bottom:582.973333pt;}
.y27d{bottom:585.693333pt;}
.y134{bottom:586.333333pt;}
.yfd{bottom:587.133333pt;}
.y1d0{bottom:587.613333pt;}
.y169{bottom:589.213333pt;}
.y298{bottom:589.853333pt;}
.yb6{bottom:590.813333pt;}
.y31{bottom:590.973333pt;}
.y97{bottom:593.373333pt;}
.y1ba{bottom:594.333333pt;}
.yde{bottom:596.253333pt;}
.y7c{bottom:597.693333pt;}
.y217{bottom:598.813333pt;}
.y24a{bottom:600.413333pt;}
.y1fd{bottom:601.213333pt;}
.y54{bottom:602.973333pt;}
.y112{bottom:603.293333pt;}
.y27c{bottom:606.013333pt;}
.y2a2{bottom:606.333333pt;}
.y133{bottom:606.493333pt;}
.yfc{bottom:607.293333pt;}
.y168{bottom:609.373333pt;}
.yb5{bottom:610.973333pt;}
.y17c{bottom:612.573333pt;}
.y96{bottom:613.533333pt;}
.y2bd{bottom:614.013333pt;}
.y1b9{bottom:614.653333pt;}
.ydd{bottom:616.413333pt;}
.y7b{bottom:617.853333pt;}
.y297{bottom:618.173333pt;}
.y216{bottom:619.133333pt;}
.y53{bottom:620.573333pt;}
.y1fc{bottom:624.093333pt;}
.y27b{bottom:626.173333pt;}
.y132{bottom:626.813333pt;}
.y30{bottom:627.133333pt;}
.y5{bottom:627.453333pt;}
.yfb{bottom:627.613333pt;}
.y111{bottom:628.733333pt;}
.y167{bottom:629.693333pt;}
.yb4{bottom:631.293333pt;}
.y19b{bottom:631.773333pt;}
.y17b{bottom:632.253333pt;}
.y95{bottom:633.853333pt;}
.y1b8{bottom:634.813333pt;}
.ydc{bottom:636.733333pt;}
.y7a{bottom:638.173333pt;}
.y296{bottom:638.333333pt;}
.y215{bottom:639.293333pt;}
.y22f{bottom:641.533333pt;}
.y52{bottom:642.173333pt;}
.y2a1{bottom:644.733333pt;}
.y110{bottom:645.373333pt;}
.y237{bottom:645.533333pt;}
.y27a{bottom:646.493333pt;}
.y131{bottom:646.973333pt;}
.yfa{bottom:647.773333pt;}
.y17a{bottom:648.093333pt;}
.y166{bottom:649.853333pt;}
.yb3{bottom:651.453333pt;}
.y94{bottom:654.013333pt;}
.y1b7{bottom:655.133333pt;}
.ydb{bottom:656.893333pt;}
.y79{bottom:658.333333pt;}
.y295{bottom:658.653333pt;}
.y19a{bottom:658.813333pt;}
.y214{bottom:659.613333pt;}
.y2c{bottom:663.293333pt;}
.y51{bottom:663.773333pt;}
.y10f{bottom:666.493333pt;}
.y279{bottom:666.653333pt;}
.y130{bottom:667.293333pt;}
.y2b0{bottom:667.773333pt;}
.yf9{bottom:668.093333pt;}
.y165{bottom:670.173333pt;}
.yb2{bottom:671.773333pt;}
.y93{bottom:674.333333pt;}
.y1fb{bottom:674.973333pt;}
.y1b6{bottom:675.293333pt;}
.yda{bottom:677.213333pt;}
.y78{bottom:678.653333pt;}
.y294{bottom:678.813333pt;}
.y199{bottom:678.973333pt;}
.y213{bottom:679.773333pt;}
.y50{bottom:685.373333pt;}
.y278{bottom:686.973333pt;}
.y12f{bottom:687.453333pt;}
.yf8{bottom:688.253333pt;}
.yb1{bottom:691.933333pt;}
.y164{bottom:693.053333pt;}
.y92{bottom:694.493333pt;}
.y1fa{bottom:695.133333pt;}
.y1b5{bottom:695.613333pt;}
.yd9{bottom:697.373333pt;}
.y77{bottom:698.813333pt;}
.y293{bottom:699.133333pt;}
.y198{bottom:699.293333pt;}
.y212{bottom:700.093333pt;}
.y277{bottom:706.653333pt;}
.y4f{bottom:706.973333pt;}
.yf7{bottom:708.573333pt;}
.y12e{bottom:710.333333pt;}
.yb0{bottom:712.253333pt;}
.y91{bottom:714.813333pt;}
.y1f9{bottom:715.453333pt;}
.y1b4{bottom:715.773333pt;}
.y22e{bottom:716.253333pt;}
.yd8{bottom:717.693333pt;}
.y76{bottom:719.133333pt;}
.y292{bottom:719.293333pt;}
.y197{bottom:719.453333pt;}
.y211{bottom:720.253333pt;}
.y163{bottom:722.493333pt;}
.y276{bottom:725.533333pt;}
.y4e{bottom:728.573333pt;}
.yf6{bottom:728.733333pt;}
.y2b{bottom:730.013333pt;}
.yaf{bottom:732.413333pt;}
.y90{bottom:734.973333pt;}
.y1f8{bottom:735.613333pt;}
.y246{bottom:735.933333pt;}
.y1b3{bottom:736.093333pt;}
.yd7{bottom:737.853333pt;}
.y291{bottom:738.973333pt;}
.y75{bottom:739.293333pt;}
.y196{bottom:739.773333pt;}
.y210{bottom:740.573333pt;}
.y275{bottom:747.293333pt;}
.yf5{bottom:749.053333pt;}
.y4d{bottom:750.173333pt;}
.y22d{bottom:750.493333pt;}
.yae{bottom:752.733333pt;}
.y290{bottom:754.813333pt;}
.y8f{bottom:755.293333pt;}
.y1f7{bottom:755.933333pt;}
.y1b2{bottom:756.253333pt;}
.yd6{bottom:758.173333pt;}
.y74{bottom:759.613333pt;}
.y195{bottom:759.933333pt;}
.y20f{bottom:760.733333pt;}
.y12d{bottom:761.213333pt;}
.y29{bottom:766.173333pt;}
.yf4{bottom:769.213333pt;}
.y4c{bottom:771.773333pt;}
.yad{bottom:772.893333pt;}
.y162{bottom:773.213333pt;}
.y8e{bottom:775.453333pt;}
.y1f6{bottom:776.093333pt;}
.y1b1{bottom:776.573333pt;}
.yd5{bottom:778.333333pt;}
.y73{bottom:779.773333pt;}
.y194{bottom:780.253333pt;}
.y20e{bottom:781.053333pt;}
.y12c{bottom:781.373333pt;}
.yf3{bottom:789.533333pt;}
.yac{bottom:793.213333pt;}
.y4b{bottom:793.373333pt;}
.y15f{bottom:794.973333pt;}
.y8d{bottom:795.813333pt;}
.y14e{bottom:796.453333pt;}
.y1b0{bottom:796.773333pt;}
.y72{bottom:800.133333pt;}
.y193{bottom:800.453333pt;}
.yd4{bottom:801.253333pt;}
.y12b{bottom:801.733333pt;}
.y28{bottom:802.373333pt;}
.y20b{bottom:802.853333pt;}
.y22b{bottom:805.093333pt;}
.yf2{bottom:809.733333pt;}
.yab{bottom:813.413333pt;}
.y4a{bottom:815.013333pt;}
.y236{bottom:815.333333pt;}
.y8c{bottom:815.973333pt;}
.y14d{bottom:816.613333pt;}
.y1af{bottom:817.093333pt;}
.y71{bottom:820.293333pt;}
.y192{bottom:820.773333pt;}
.y12a{bottom:826.693333pt;}
.yf1{bottom:830.053333pt;}
.yd3{bottom:830.693333pt;}
.yaa{bottom:833.733333pt;}
.y8b{bottom:836.293333pt;}
.y49{bottom:836.613333pt;}
.y14c{bottom:836.933333pt;}
.y1ae{bottom:837.253333pt;}
.y27{bottom:838.533333pt;}
.y70{bottom:840.613333pt;}
.y191{bottom:840.933333pt;}
.y2e5{bottom:841.733333pt;}
.yf0{bottom:850.213333pt;}
.y245{bottom:851.173333pt;}
.ya9{bottom:853.893333pt;}
.y8a{bottom:856.453333pt;}
.y14b{bottom:857.093333pt;}
.y1ad{bottom:857.573333pt;}
.y48{bottom:858.213333pt;}
.yd2{bottom:860.133333pt;}
.y6f{bottom:860.773333pt;}
.y190{bottom:861.253333pt;}
.y2e4{bottom:862.053333pt;}
.y270{bottom:862.533333pt;}
.y22a{bottom:863.813333pt;}
.y15e{bottom:869.733333pt;}
.yef{bottom:870.533333pt;}
.ya8{bottom:874.213333pt;}
.y26{bottom:874.693333pt;}
.y89{bottom:876.773333pt;}
.y14a{bottom:877.413333pt;}
.y1ac{bottom:877.733333pt;}
.y47{bottom:879.813333pt;}
.y6e{bottom:881.093333pt;}
.y18f{bottom:881.413333pt;}
.y2e3{bottom:882.213333pt;}
.y235{bottom:890.053333pt;}
.yee{bottom:890.693333pt;}
.ya7{bottom:894.373333pt;}
.y88{bottom:896.933333pt;}
.y1f5{bottom:897.573333pt;}
.y1cf{bottom:898.053333pt;}
.y1ab{bottom:900.613333pt;}
.y6d{bottom:901.253333pt;}
.y46{bottom:901.413333pt;}
.y18e{bottom:901.733333pt;}
.y2e2{bottom:903.973333pt;}
.y244{bottom:909.733333pt;}
.y23{bottom:910.853333pt;}
.yd1{bottom:911.013333pt;}
.y69{bottom:912.453333pt;}
.ya6{bottom:914.693333pt;}
.y87{bottom:917.253333pt;}
.y2c2{bottom:917.413333pt;}
.y1f4{bottom:917.893333pt;}
.y209{bottom:918.053333pt;}
.y1ce{bottom:918.213333pt;}
.y6c{bottom:921.573333pt;}
.y18d{bottom:921.893333pt;}
.y45{bottom:923.013333pt;}
.y15d{bottom:924.293333pt;}
.yd0{bottom:931.173333pt;}
.ya5{bottom:934.853333pt;}
.y243{bottom:936.773333pt;}
.y86{bottom:937.413333pt;}
.y68{bottom:939.493333pt;}
.y44{bottom:940.613333pt;}
.y1cd{bottom:941.093333pt;}
.y2c1{bottom:941.413333pt;}
.y6b{bottom:941.733333pt;}
.y18c{bottom:944.773333pt;}
.y21{bottom:946.853333pt;}
.ycf{bottom:951.493333pt;}
.ya4{bottom:955.013333pt;}
.y242{bottom:956.933333pt;}
.y85{bottom:957.733333pt;}
.y6a{bottom:962.053333pt;}
.y43{bottom:962.213333pt;}
.y67{bottom:963.813333pt;}
.y2c0{bottom:965.413333pt;}
.yce{bottom:971.653333pt;}
.ya3{bottom:975.333333pt;}
.y15a{bottom:978.693333pt;}
.y2af{bottom:980.133333pt;}
.y66{bottom:987.973333pt;}
.y2bf{bottom:989.413333pt;}
.ycd{bottom:991.973333pt;}
.y129{bottom:997.253333pt;}
.y4{bottom:997.573333pt;}
.ya2{bottom:1000.293333pt;}
.y20{bottom:1002.853333pt;}
.ycc{bottom:1012.133333pt;}
.y65{bottom:1012.293333pt;}
.y2be{bottom:1013.413333pt;}
.y1b{bottom:1031.520000pt;}
.he{height:17.600000pt;}
.h1d{height:20.160000pt;}
.h2f{height:20.192000pt;}
.h2d{height:20.320000pt;}
.hb{height:22.080000pt;}
.ha{height:22.240000pt;}
.h1b{height:33.073920pt;}
.h8{height:35.075840pt;}
.hf{height:35.200000pt;}
.h2{height:39.264000pt;}
.h1f{height:40.480000pt;}
.h1e{height:40.512000pt;}
.h3{height:42.768000pt;}
.h28{height:44.800000pt;}
.h26{height:45.920000pt;}
.h21{height:45.952000pt;}
.h1a{height:47.329920pt;}
.h18{height:47.568960pt;}
.h10{height:48.163840pt;}
.h19{height:50.181120pt;}
.h27{height:51.040000pt;}
.h5{height:52.462080pt;}
.h7{height:52.727040pt;}
.hd{height:52.800000pt;}
.h23{height:52.832000pt;}
.h9{height:57.024000pt;}
.hc{height:57.312000pt;}
.h12{height:60.519362pt;}
.h22{height:60.640000pt;}
.h29{height:60.672000pt;}
.h2e{height:60.800000pt;}
.h20{height:60.832000pt;}
.h13{height:67.055040pt;}
.h24{height:70.400000pt;}
.h17{height:76.224960pt;}
.h2a{height:80.960000pt;}
.h31{height:80.992000pt;}
.h6{height:85.968000pt;}
.h25{height:87.489947pt;}
.h16{height:88.611250pt;}
.h11{height:95.230080pt;}
.h37{height:95.711040pt;}
.h36{height:98.672872pt;}
.h2c{height:101.120000pt;}
.h2b{height:101.152000pt;}
.h33{height:101.280000pt;}
.h32{height:101.312000pt;}
.h4{height:104.880960pt;}
.h14{height:111.263750pt;}
.h30{height:121.440000pt;}
.h35{height:156.666667pt;}
.h34{height:161.146667pt;}
.h15{height:202.426667pt;}
.h38{height:299.226667pt;}
.h1c{height:350.586667pt;}
.h39{height:528.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:65.312000pt;}
.w15{width:84.192000pt;}
.w1b{width:93.760000pt;}
.w1c{width:93.792000pt;}
.w11{width:102.432000pt;}
.w5{width:103.072000pt;}
.w21{width:112.512000pt;}
.wc{width:121.952000pt;}
.w18{width:131.712000pt;}
.w1a{width:141.120000pt;}
.w19{width:141.146667pt;}
.w7{width:145.946667pt;}
.we{width:147.386667pt;}
.w6{width:164.666667pt;}
.w14{width:181.346667pt;}
.wf{width:183.386667pt;}
.w1f{width:188.346667pt;}
.w3{width:197.506667pt;}
.w13{width:197.946667pt;}
.w12{width:207.866667pt;}
.w8{width:235.546667pt;}
.w16{width:263.866667pt;}
.w17{width:301.666667pt;}
.w10{width:314.466667pt;}
.w1e{width:396.226667pt;}
.w22{width:443.613333pt;}
.w4{width:452.866667pt;}
.wd{width:538.013333pt;}
.w23{width:603.493333pt;}
.w20{width:603.653333pt;}
.w9{width:648.613333pt;}
.wb{width:649.253333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:2.400000pt;}
.x3c{left:6.240000pt;}
.x9{left:7.200000pt;}
.x3f{left:10.880000pt;}
.x10{left:12.032000pt;}
.x2b{left:13.632000pt;}
.x7{left:14.592000pt;}
.x49{left:18.240000pt;}
.x15{left:20.672000pt;}
.x16{left:22.720000pt;}
.x12{left:25.600000pt;}
.x11{left:27.840000pt;}
.x43{left:28.800000pt;}
.xe{left:31.040000pt;}
.xa{left:35.552000pt;}
.x13{left:36.480000pt;}
.xc{left:38.560000pt;}
.x46{left:46.400000pt;}
.x44{left:56.640000pt;}
.x31{left:57.632000pt;}
.x3b{left:59.560000pt;}
.x51{left:60.520000pt;}
.x36{left:63.240000pt;}
.x39{left:69.146667pt;}
.x2{left:71.999988pt;}
.x1b{left:76.479988pt;}
.x27{left:77.439988pt;}
.x17{left:78.560000pt;}
.x4d{left:81.439988pt;}
.x34{left:84.506667pt;}
.x19{left:86.751988pt;}
.x18{left:96.031988pt;}
.x1c{left:100.511988pt;}
.x1e{left:102.111988pt;}
.x1d{left:110.431988pt;}
.x41{left:116.506667pt;}
.x14{left:117.640000pt;}
.x1a{left:120.031988pt;}
.x37{left:131.866667pt;}
.x4e{left:138.586667pt;}
.x4f{left:147.560000pt;}
.x3e{left:157.466667pt;}
.x56{left:168.520000pt;}
.xb{left:176.346667pt;}
.x55{left:185.786667pt;}
.x4c{left:190.106655pt;}
.x2c{left:195.226667pt;}
.x29{left:205.626655pt;}
.x21{left:208.346655pt;}
.x2a{left:219.706655pt;}
.x32{left:220.666667pt;}
.x2d{left:227.240000pt;}
.x3d{left:239.546655pt;}
.x1{left:253.466655pt;}
.x20{left:256.706655pt;}
.x25{left:257.986655pt;}
.x26{left:264.066655pt;}
.x6{left:265.346655pt;}
.x8{left:270.946667pt;}
.x2f{left:272.066655pt;}
.x35{left:306.946655pt;}
.x42{left:308.866655pt;}
.x54{left:318.466655pt;}
.x5{left:320.546655pt;}
.x52{left:322.786655pt;}
.x30{left:329.506655pt;}
.x1f{left:332.226655pt;}
.xd{left:341.666667pt;}
.x38{left:384.226667pt;}
.x4{left:396.866655pt;}
.x33{left:404.706667pt;}
.x40{left:422.146667pt;}
.x45{left:449.853333pt;}
.xf{left:488.253333pt;}
.x50{left:535.453333pt;}
.x3a{left:582.813333pt;}
.x47{left:591.653333pt;}
.x28{left:611.493333pt;}
.x57{left:630.053333pt;}
.x24{left:662.053322pt;}
.x48{left:686.053333pt;}
.x4b{left:689.733322pt;}
.x2e{left:692.453322pt;}
.x53{left:707.333322pt;}
.x22{left:713.413310pt;}
.x23{left:718.853322pt;}
.x3{left:721.733322pt;}
}




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