
    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_6ef193e6510bab2e32459953.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_abfa2c29843bdfcfe79626c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ec713b5a114683e1e88d5c8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c2e134be901bdb08d54e561.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_77791d5b5c179081e682ccf5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fc7ca5c30a75ec227e0ebb3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924316;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_b5c70aa458b354ed50d20f27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.884277;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_6d60ce3f640155ffc69ee58b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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_02b53f236f28a23349e1d143.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1479d374a6110f0c74084a53.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8e88ae8a93c977409d88c7d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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;}
.v1{vertical-align:24.480000px;}
.ls33{letter-spacing:-5.148000px;}
.ls28{letter-spacing:-4.320000px;}
.ls2c{letter-spacing:-3.864000px;}
.ls1c{letter-spacing:-2.424000px;}
.ls21{letter-spacing:-1.944000px;}
.ls24{letter-spacing:-1.908000px;}
.lse{letter-spacing:-1.896000px;}
.ls20{letter-spacing:-1.746000px;}
.lsa{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.134000px;}
.ls12{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.570000px;}
.ls11{letter-spacing:-0.507000px;}
.ls17{letter-spacing:-0.466800px;}
.ls14{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.178800px;}
.ls1{letter-spacing:-0.034560px;}
.ls1b{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.020160px;}
.ls30{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.305280px;}
.ls4{letter-spacing:0.305400px;}
.ls31{letter-spacing:0.425280px;}
.ls8{letter-spacing:0.457800px;}
.lsb{letter-spacing:0.457920px;}
.ls16{letter-spacing:0.466560px;}
.lsd{letter-spacing:0.466800px;}
.ls32{letter-spacing:0.485280px;}
.ls3{letter-spacing:0.529920px;}
.ls1f{letter-spacing:0.610560px;}
.ls2{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.731520px;}
.ls1d{letter-spacing:0.972000px;}
.ls22{letter-spacing:0.982080px;}
.ls10{letter-spacing:1.746000px;}
.ls27{letter-spacing:1.906560px;}
.ls2d{letter-spacing:2.052000px;}
.ls2b{letter-spacing:3.305280px;}
.ls2e{letter-spacing:4.930560px;}
.ls13{letter-spacing:4.942080px;}
.ls1e{letter-spacing:8.945280px;}
.ls25{letter-spacing:23.345280px;}
.ls29{letter-spacing:30.545280px;}
.ls2a{letter-spacing:34.865280px;}
.ls23{letter-spacing:37.745280px;}
.ls19{letter-spacing:40.786560px;}
.ls26{letter-spacing:60.946560px;}
.ls2f{letter-spacing:75.502560px;}
.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;}
}
.ws15{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.582720px;}
.ws2{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.026720px;}
.ws9{word-spacing:-18.944640px;}
.ws7{word-spacing:-18.872520px;}
.wsa{word-spacing:-18.720120px;}
.ws8{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.109320px;}
.ws3{word-spacing:-17.956920px;}
.ws12{word-spacing:-17.785440px;}
.ws4{word-spacing:-17.586720px;}
.wse{word-spacing:-17.280720px;}
.wsc{word-spacing:-16.974720px;}
.ws11{word-spacing:-16.833600px;}
.wsd{word-spacing:-16.813440px;}
.ws13{word-spacing:-16.668720px;}
.ws18{word-spacing:-16.346640px;}
.wsf{word-spacing:-16.306440px;}
.wsb{word-spacing:-14.970240px;}
.ws16{word-spacing:-14.905440px;}
.ws14{word-spacing:-14.869440px;}
.ws10{word-spacing:-14.506440px;}
.ws17{word-spacing:-14.094720px;}
.ws19{word-spacing:-13.266720px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-17.549760px;}
._1c{margin-left:-15.391200px;}
._1a{margin-left:-13.056960px;}
._17{margin-left:-11.138160px;}
._18{margin-left:-10.037520px;}
._6{margin-left:-8.504640px;}
._24{margin-left:-7.352640px;}
._19{margin-left:-6.182400px;}
._5{margin-left:-4.927680px;}
._3{margin-left:-3.257280px;}
._4{margin-left:-2.171520px;}
._1{margin-left:-1.002240px;}
._0{width:1.085760px;}
._2{width:2.505600px;}
._8{width:4.256640px;}
._9{width:5.829120px;}
._7{width:6.955200px;}
._a{width:7.966560px;}
._16{width:8.968320px;}
._15{width:10.342080px;}
._e{width:11.433600px;}
._10{width:12.600000px;}
._39{width:13.600800px;}
._f{width:14.613600px;}
._11{width:15.861600px;}
._12{width:17.118240px;}
._3f{width:18.341760px;}
._14{width:19.524480px;}
._13{width:20.600640px;}
._1e{width:21.719040px;}
._1d{width:23.382720px;}
._23{width:25.237440px;}
._20{width:26.484960px;}
._1f{width:27.820800px;}
._21{width:29.185920px;}
._22{width:31.026240px;}
._30{width:32.112960px;}
._27{width:33.332640px;}
._28{width:35.076000px;}
._34{width:36.172320px;}
._35{width:37.791360px;}
._c{width:39.504960px;}
._b{width:41.011200px;}
._d{width:43.098240px;}
._2c{width:44.667360px;}
._31{width:45.699360px;}
._32{width:46.971840px;}
._3d{width:48.155040px;}
._3e{width:49.407360px;}
._4a{width:52.488000px;}
._49{width:53.720640px;}
._4b{width:56.216640px;}
._4c{width:57.273600px;}
._47{width:59.739840px;}
._3a{width:60.788760px;}
._48{width:63.417000px;}
._44{width:65.180160px;}
._43{width:66.306240px;}
._45{width:67.417920px;}
._52{width:70.346880px;}
._40{width:71.907840px;}
._53{width:73.010880px;}
._41{width:74.635200px;}
._42{width:76.849920px;}
._33{width:80.398080px;}
._2a{width:81.803520px;}
._2b{width:82.918080px;}
._29{width:84.363840px;}
._38{width:88.179840px;}
._37{width:92.752320px;}
._36{width:94.222560px;}
._3c{width:97.854600px;}
._3b{width:99.000000px;}
._2f{width:100.488480px;}
._2d{width:102.303840px;}
._2e{width:103.376640px;}
._46{width:111.171600px;}
._25{width:120.415680px;}
._26{width:122.011680px;}
._4d{width:126.438240px;}
._4e{width:127.499520px;}
._50{width:161.254080px;}
._4f{width:162.843840px;}
._51{width:164.053920px;}
.fc8{color:rgb(4,12,40);}
.fc5{color:rgb(31,73,125);}
.fc3{color:rgb(17,85,205);}
.fc2{color:rgb(5,99,193);}
.fc7{color:rgb(32,33,36);}
.fc6{color:rgb(26,26,26);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:80.640000px;}
.fs1{font-size:83.520000px;}
.fs3{font-size:90.720000px;}
.fs0{font-size:119.520000px;}
.y20{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:36.360000px;}
.y79{bottom:57.240000px;}
.y1e{bottom:74.190000px;}
.y78{bottom:77.436000px;}
.y1ba{bottom:109.116000px;}
.y129{bottom:109.836000px;}
.y194{bottom:110.196000px;}
.y1d{bottom:111.270000px;}
.y20c{bottom:113.076000px;}
.y295{bottom:113.796000px;}
.y1b9{bottom:114.516000px;}
.y25e{bottom:114.876000px;}
.y19{bottom:117.036000px;}
.yd4{bottom:117.756000px;}
.y140{bottom:118.116000px;}
.y269{bottom:119.196000px;}
.y14f{bottom:120.636000px;}
.y99{bottom:122.076000px;}
.y43{bottom:122.436000px;}
.y241{bottom:125.316000px;}
.y222{bottom:126.756000px;}
.y244{bottom:127.476000px;}
.yb6{bottom:128.196000px;}
.y1a3{bottom:129.636000px;}
.y1bf{bottom:131.076000px;}
.y247{bottom:132.876000px;}
.y112{bottom:133.956000px;}
.y1b8{bottom:135.036000px;}
.y128{bottom:136.116000px;}
.y2ba{bottom:136.836000px;}
.y193{bottom:138.636000px;}
.y20b{bottom:141.516000px;}
.y294{bottom:141.876000px;}
.y25d{bottom:143.316000px;}
.yd3{bottom:143.676000px;}
.y13f{bottom:144.036000px;}
.y268{bottom:147.636000px;}
.y1c{bottom:148.350000px;}
.yd2{bottom:149.076000px;}
.y147{bottom:149.436000px;}
.y98{bottom:150.510000px;}
.y42{bottom:150.870000px;}
.yff{bottom:152.670000px;}
.y1b7{bottom:153.390000px;}
.y23c{bottom:153.750000px;}
.y18{bottom:154.470000px;}
.y221{bottom:155.190000px;}
.y1a2{bottom:155.910000px;}
.y274{bottom:156.270000px;}
.yb5{bottom:156.630000px;}
.y1be{bottom:159.510000px;}
.y246{bottom:161.310000px;}
.yd1{bottom:162.030000px;}
.y111{bottom:162.390000px;}
.y2b9{bottom:165.270000px;}
.y180{bottom:167.070000px;}
.y192{bottom:167.430000px;}
.y166{bottom:169.590000px;}
.y13e{bottom:169.950000px;}
.y1dc{bottom:170.670000px;}
.y25c{bottom:171.750000px;}
.y19b{bottom:175.350000px;}
.y267{bottom:176.070000px;}
.y5d{bottom:177.150000px;}
.y14e{bottom:177.510000px;}
.y97{bottom:178.950000px;}
.y41{bottom:179.310000px;}
.y251{bottom:180.750000px;}
.yfe{bottom:181.110000px;}
.y1a1{bottom:181.470000px;}
.y23b{bottom:182.190000px;}
.y220{bottom:183.630000px;}
.yb4{bottom:185.070000px;}
.y2d4{bottom:185.790000px;}
.y155{bottom:187.950000px;}
.y127{bottom:188.310000px;}
.y245{bottom:189.750000px;}
.y2a6{bottom:190.830000px;}
.y17{bottom:194.475000px;}
.ye3{bottom:195.555000px;}
.y14b{bottom:195.915000px;}
.y1db{bottom:196.995000px;}
.y1b{bottom:197.340000px;}
.y20a{bottom:198.435000px;}
.y293{bottom:199.155000px;}
.y25b{bottom:200.235000px;}
.y13d{bottom:200.955000px;}
.y14a{bottom:201.315000px;}
.y110{bottom:203.115000px;}
.y266{bottom:204.555000px;}
.y2b8{bottom:205.635000px;}
.y14d{bottom:205.995000px;}
.y250{bottom:206.715000px;}
.y96{bottom:207.435000px;}
.y191{bottom:207.795000px;}
.y40{bottom:208.155000px;}
.yfd{bottom:209.595000px;}
.y240{bottom:210.675000px;}
.y21f{bottom:212.115000px;}
.y22a{bottom:212.835000px;}
.yb3{bottom:213.555000px;}
.y13c{bottom:213.915000px;}
.y126{bottom:214.275000px;}
.y1bd{bottom:216.435000px;}
.y5c{bottom:217.875000px;}
.y146{bottom:218.235000px;}
.y125{bottom:219.675000px;}
.y165{bottom:221.475000px;}
.y19a{bottom:221.835000px;}
.y23a{bottom:222.555000px;}
.y1da{bottom:222.915000px;}
.y24f{bottom:225.075000px;}
.y229{bottom:225.795000px;}
.y2d3{bottom:226.515000px;}
.y172{bottom:226.875000px;}
.y77{bottom:227.235000px;}
.y292{bottom:227.595000px;}
.y1d9{bottom:228.315000px;}
.y25a{bottom:228.675000px;}
.y1fc{bottom:230.475000px;}
.y10f{bottom:231.555000px;}
.y124{bottom:232.275000px;}
.y265{bottom:232.995000px;}
.y1a0{bottom:233.355000px;}
.y16{bottom:234.075000px;}
.y14c{bottom:234.435000px;}
.y29e{bottom:234.795000px;}
.y95{bottom:235.875000px;}
.y190{bottom:236.235000px;}
.y3f{bottom:236.595000px;}
.y273{bottom:237.315000px;}
.yfc{bottom:238.035000px;}
.y23f{bottom:239.115000px;}
.y154{bottom:239.475000px;}
.y199{bottom:239.835000px;}
.y21e{bottom:240.555000px;}
.y1d8{bottom:241.275000px;}
.yb2{bottom:241.995000px;}
.ye2{bottom:244.875000px;}
.yd0{bottom:245.235000px;}
.y2b7{bottom:245.955000px;}
.y145{bottom:246.675000px;}
.y164{bottom:247.395000px;}
.y1eb{bottom:247.755000px;}
.y17f{bottom:248.115000px;}
.y239{bottom:248.835000px;}
.y242{bottom:250.995000px;}
.y163{bottom:252.795000px;}
.y1e5{bottom:255.675000px;}
.y291{bottom:256.035000px;}
.y259{bottom:257.115000px;}
.y153{bottom:257.835000px;}
.y5b{bottom:258.195000px;}
.y24e{bottom:258.555000px;}
.y1fb{bottom:258.915000px;}
.y19f{bottom:259.275000px;}
.y10e{bottom:259.995000px;}
.y264{bottom:261.435000px;}
.y123{bottom:262.875000px;}
.y76{bottom:263.235000px;}
.y94{bottom:264.315000px;}
.y18f{bottom:264.675000px;}
.y171{bottom:265.395000px;}
.yfb{bottom:266.475000px;}
.y2d2{bottom:266.835000px;}
.y23e{bottom:267.555000px;}
.yb1{bottom:270.435000px;}
.y15{bottom:271.875000px;}
.y162{bottom:272.955000px;}
.y1ea{bottom:273.315000px;}
.ye1{bottom:273.675000px;}
.ycf{bottom:274.035000px;}
.y2b6{bottom:274.395000px;}
.y238{bottom:274.755000px;}
.y198{bottom:275.115000px;}
.y144{bottom:275.475000px;}
.y3e{bottom:276.915000px;}
.y19e{bottom:277.635000px;}
.y21d{bottom:277.995000px;}
.y200{bottom:278.355000px;}
.y1e9{bottom:278.715000px;}
.y227{bottom:279.435000px;}
.y1d7{bottom:284.115000px;}
.y1e4{bottom:284.475000px;}
.y290{bottom:284.835000px;}
.y228{bottom:285.555000px;}
.y24d{bottom:286.995000px;}
.y1fa{bottom:287.355000px;}
.y10d{bottom:288.435000px;}
.y263{bottom:289.875000px;}
.y170{bottom:291.315000px;}
.y122{bottom:291.675000px;}
.y93{bottom:292.755000px;}
.y18e{bottom:293.115000px;}
.yfa{bottom:294.915000px;}
.y2d1{bottom:295.275000px;}
.y23d{bottom:295.995000px;}
.y5a{bottom:298.875000px;}
.y75{bottom:299.235000px;}
.y237{bottom:300.675000px;}
.yce{bottom:302.115000px;}
.y2b5{bottom:302.835000px;}
.y13b{bottom:303.555000px;}
.y143{bottom:303.915000px;}
.y1c9{bottom:304.275000px;}
.y3d{bottom:305.355000px;}
.y236{bottom:306.075000px;}
.y21c{bottom:306.435000px;}
.y226{bottom:307.875000px;}
.y197{bottom:309.675000px;}
.y14{bottom:310.395000px;}
.y1d6{bottom:312.555000px;}
.y28f{bottom:312.915000px;}
.y258{bottom:314.355000px;}
.y24c{bottom:315.435000px;}
.y1f9{bottom:315.795000px;}
.y10c{bottom:316.875000px;}
.y16f{bottom:317.595000px;}
.y262{bottom:318.315000px;}
.y121{bottom:320.145000px;}
.y92{bottom:321.225000px;}
.y18d{bottom:321.585000px;}
.yf9{bottom:323.385000px;}
.y1e3{bottom:324.465000px;}
.y161{bottom:324.825000px;}
.y1c8{bottom:325.185000px;}
.y235{bottom:326.625000px;}
.y1b6{bottom:327.345000px;}
.y17e{bottom:328.785000px;}
.ycd{bottom:330.585000px;}
.y13a{bottom:332.025000px;}
.y142{bottom:332.385000px;}
.y3c{bottom:333.825000px;}
.y74{bottom:334.905000px;}
.y2d0{bottom:335.625000px;}
.y225{bottom:336.345000px;}
.y59{bottom:339.225000px;}
.y1d5{bottom:341.025000px;}
.y28e{bottom:341.385000px;}
.y257{bottom:342.825000px;}
.y16e{bottom:343.545000px;}
.y24b{bottom:343.905000px;}
.y1f8{bottom:344.265000px;}
.y10b{bottom:345.345000px;}
.y261{bottom:346.785000px;}
.y120{bottom:348.585000px;}
.y16d{bottom:348.945000px;}
.yb0{bottom:350.025000px;}
.y13{bottom:350.385000px;}
.y160{bottom:350.745000px;}
.yf8{bottom:351.825000px;}
.y234{bottom:352.185000px;}
.y1e2{bottom:352.905000px;}
.y1b5{bottom:355.785000px;}
.y1a7{bottom:356.145000px;}
.y272{bottom:358.665000px;}
.ycc{bottom:359.025000px;}
.y139{bottom:360.465000px;}
.y16c{bottom:361.545000px;}
.y3b{bottom:362.265000px;}
.y73{bottom:363.345000px;}
.y2cf{bottom:364.065000px;}
.y224{bottom:364.785000px;}
.y2b4{bottom:368.385000px;}
.y1a6{bottom:369.105000px;}
.y17d{bottom:369.465000px;}
.y28d{bottom:369.825000px;}
.y91{bottom:370.545000px;}
.y24a{bottom:372.345000px;}
.y1f7{bottom:372.705000px;}
.y10a{bottom:373.785000px;}
.y260{bottom:375.225000px;}
.y15f{bottom:376.665000px;}
.y11f{bottom:377.025000px;}
.y233{bottom:378.105000px;}
.yaf{bottom:378.465000px;}
.y58{bottom:379.545000px;}
.yf7{bottom:380.265000px;}
.y1e1{bottom:381.345000px;}
.y1e8{bottom:381.705000px;}
.y256{bottom:383.145000px;}
.y1b4{bottom:384.225000px;}
.ycb{bottom:387.465000px;}
.y138{bottom:388.905000px;}
.y12{bottom:390.345000px;}
.y3a{bottom:390.705000px;}
.y21b{bottom:391.785000px;}
.y223{bottom:393.225000px;}
.y1d4{bottom:397.905000px;}
.y28c{bottom:398.265000px;}
.y72{bottom:398.985000px;}
.y271{bottom:399.345000px;}
.y249{bottom:400.785000px;}
.y1f6{bottom:401.145000px;}
.y109{bottom:402.225000px;}
.y22e{bottom:402.585000px;}
.y1c7{bottom:402.945000px;}
.y15e{bottom:403.665000px;}
.y232{bottom:404.025000px;}
.y2ce{bottom:404.745000px;}
.y11e{bottom:405.465000px;}
.yae{bottom:406.905000px;}
.ye0{bottom:408.345000px;}
.yf6{bottom:409.065000px;}
.y17c{bottom:409.785000px;}
.y255{bottom:411.585000px;}
.y1b3{bottom:412.665000px;}
.y1bc{bottom:415.905000px;}
.yc9{bottom:416.265000px;}
.y137{bottom:417.345000px;}
.y29d{bottom:417.705000px;}
.y39{bottom:419.145000px;}
.y57{bottom:420.225000px;}
.y16b{bottom:421.665000px;}
.y15d{bottom:422.385000px;}
.yca{bottom:423.105000px;}
.y1a5{bottom:423.465000px;}
.y1d3{bottom:426.345000px;}
.y28b{bottom:426.705000px;}
.y90{bottom:427.425000px;}
.y71{bottom:427.785000px;}
.y1c6{bottom:428.505000px;}
.y248{bottom:429.225000px;}
.y1f5{bottom:429.945000px;}
.y11{bottom:430.305000px;}
.y108{bottom:430.665000px;}
.y25f{bottom:432.465000px;}
.y2cd{bottom:433.185000px;}
.y11d{bottom:433.905000px;}
.yad{bottom:435.345000px;}
.ydf{bottom:436.785000px;}
.y17b{bottom:438.225000px;}
.y270{bottom:439.665000px;}
.y254{bottom:440.025000px;}
.y1b2{bottom:441.465000px;}
.y1bb{bottom:444.345000px;}
.yc8{bottom:444.705000px;}
.y136{bottom:445.785000px;}
.y29c{bottom:446.190000px;}
.y1c5{bottom:446.910000px;}
.y38{bottom:447.630000px;}
.y231{bottom:448.350000px;}
.y21a{bottom:448.710000px;}
.y16a{bottom:450.510000px;}
.yf5{bottom:450.870000px;}
.y19d{bottom:451.950000px;}
.y1d2{bottom:454.830000px;}
.y28a{bottom:455.190000px;}
.y8f{bottom:455.910000px;}
.y204{bottom:457.710000px;}
.y1f4{bottom:458.430000px;}
.y107{bottom:459.150000px;}
.y56{bottom:460.590000px;}
.y2cc{bottom:462.030000px;}
.y11c{bottom:462.390000px;}
.y70{bottom:463.470000px;}
.yac{bottom:463.830000px;}
.yde{bottom:465.270000px;}
.y22d{bottom:466.350000px;}
.y17a{bottom:466.710000px;}
.y2a5{bottom:467.070000px;}
.y253{bottom:468.510000px;}
.y10{bottom:468.870000px;}
.y1b1{bottom:469.950000px;}
.yc7{bottom:472.830000px;}
.y135{bottom:474.270000px;}
.y18c{bottom:475.710000px;}
.y37{bottom:476.070000px;}
.y219{bottom:477.510000px;}
.y169{bottom:478.950000px;}
.y26f{bottom:480.030000px;}
.y1d1{bottom:483.270000px;}
.y8e{bottom:484.710000px;}
.y1c4{bottom:486.510000px;}
.y1f3{bottom:486.870000px;}
.y106{bottom:487.950000px;}
.y2cb{bottom:490.110000px;}
.yf4{bottom:490.830000px;}
.y6f{bottom:491.910000px;}
.yab{bottom:492.270000px;}
.ydd{bottom:493.710000px;}
.y179{bottom:495.150000px;}
.y289{bottom:495.510000px;}
.y1b0{bottom:498.390000px;}
.y55{bottom:501.270000px;}
.y134{bottom:502.710000px;}
.y29b{bottom:503.070000px;}
.yf{bottom:503.430000px;}
.y2b3{bottom:504.150000px;}
.y218{bottom:505.950000px;}
.y1e7{bottom:507.390000px;}
.y141{bottom:508.830000px;}
.y252{bottom:509.190000px;}
.y22c{bottom:510.630000px;}
.y1cf{bottom:511.710000px;}
.y8d{bottom:513.150000px;}
.y203{bottom:514.950000px;}
.y1c3{bottom:515.310000px;}
.y105{bottom:516.390000px;}
.y36{bottom:516.750000px;}
.y1d0{bottom:517.830000px;}
.y1a{bottom:518.550000px;}
.yf3{bottom:519.270000px;}
.yaa{bottom:520.710000px;}
.ydc{bottom:522.150000px;}
.y178{bottom:523.590000px;}
.y288{bottom:524.310000px;}
.y18b{bottom:525.030000px;}
.y1af{bottom:526.830000px;}
.y6e{bottom:528.270000px;}
.yc6{bottom:529.710000px;}
.y133{bottom:531.150000px;}
.y29a{bottom:531.510000px;}
.y2b2{bottom:532.590000px;}
.y217{bottom:534.390000px;}
.y1e0{bottom:535.830000px;}
.ye{bottom:537.630000px;}
.y1ce{bottom:540.150000px;}
.y54{bottom:541.590000px;}
.y1c2{bottom:543.390000px;}
.y1f2{bottom:543.750000px;}
.y35{bottom:545.190000px;}
.y2ca{bottom:546.990000px;}
.yf2{bottom:547.710000px;}
.ya9{bottom:549.150000px;}
.ydb{bottom:550.590000px;}
.y177{bottom:552.030000px;}
.y18a{bottom:553.470000px;}
.y1ae{bottom:555.270000px;}
.yc5{bottom:558.150000px;}
.y132{bottom:559.590000px;}
.y299{bottom:559.950000px;}
.y26e{bottom:561.030000px;}
.y216{bottom:562.830000px;}
.y6d{bottom:563.910000px;}
.y1df{bottom:564.270000px;}
.y287{bottom:564.990000px;}
.y104{bottom:566.070000px;}
.y1cd{bottom:568.590000px;}
.y8c{bottom:570.030000px;}
.y196{bottom:571.830000px;}
.yd{bottom:572.190000px;}
.y34{bottom:573.660000px;}
.yf1{bottom:576.180000px;}
.yda{bottom:579.060000px;}
.y2c9{bottom:579.420000px;}
.y2a4{bottom:580.500000px;}
.y53{bottom:581.940000px;}
.y1ad{bottom:583.740000px;}
.yc4{bottom:586.620000px;}
.y131{bottom:588.060000px;}
.y15b{bottom:588.420000px;}
.y215{bottom:591.300000px;}
.y176{bottom:592.740000px;}
.y286{bottom:593.460000px;}
.y1ff{bottom:594.180000px;}
.y1cc{bottom:597.780000px;}
.y6c{bottom:599.940000px;}
.ya8{bottom:600.300000px;}
.y1f1{bottom:600.660000px;}
.y26d{bottom:601.740000px;}
.y33{bottom:602.100000px;}
.yf0{bottom:604.620000px;}
.yc{bottom:606.420000px;}
.yd9{bottom:607.500000px;}
.y2a3{bottom:609.660000px;}
.y189{bottom:610.380000px;}
.y149{bottom:610.740000px;}
.y1ac{bottom:612.180000px;}
.yc3{bottom:615.060000px;}
.y130{bottom:616.500000px;}
.y8b{bottom:619.380000px;}
.y214{bottom:619.740000px;}
.y175{bottom:621.180000px;}
.y285{bottom:621.900000px;}
.y52{bottom:622.620000px;}
.ya7{bottom:628.740000px;}
.y1f0{bottom:629.100000px;}
.y2b1{bottom:630.180000px;}
.y32{bottom:630.540000px;}
.y2c8{bottom:632.700000px;}
.yef{bottom:633.060000px;}
.y6b{bottom:635.940000px;}
.yd8{bottom:636.300000px;}
.y2a2{bottom:638.100000px;}
.y188{bottom:638.820000px;}
.y152{bottom:639.180000px;}
.yb{bottom:640.620000px;}
.y26c{bottom:642.060000px;}
.y103{bottom:643.500000px;}
.y12f{bottom:645.300000px;}
.y8a{bottom:647.820000px;}
.y213{bottom:648.180000px;}
.y174{bottom:649.620000px;}
.y284{bottom:650.340000px;}
.ya6{bottom:657.180000px;}
.y1ef{bottom:657.540000px;}
.y2b0{bottom:658.620000px;}
.y31{bottom:658.980000px;}
.yee{bottom:661.500000px;}
.y151{bottom:661.860000px;}
.y51{bottom:662.940000px;}
.yc2{bottom:664.740000px;}
.y2a1{bottom:666.180000px;}
.y187{bottom:667.260000px;}
.y1ab{bottom:669.060000px;}
.y102{bottom:671.940000px;}
.y6a{bottom:672.300000px;}
.y2c7{bottom:673.020000px;}
.y12e{bottom:673.740000px;}
.ya{bottom:675.180000px;}
.y89{bottom:676.260000px;}
.y212{bottom:676.620000px;}
.y1de{bottom:678.060000px;}
.y283{bottom:678.420000px;}
.y26b{bottom:682.380000px;}
.ya5{bottom:685.620000px;}
.y202{bottom:685.980000px;}
.y2af{bottom:687.060000px;}
.y30{bottom:687.420000px;}
.yed{bottom:689.940000px;}
.y150{bottom:690.300000px;}
.yc1{bottom:693.180000px;}
.y1ee{bottom:697.860000px;}
.y101{bottom:700.410000px;}
.y12d{bottom:702.210000px;}
.y298{bottom:702.570000px;}
.y50{bottom:703.290000px;}
.y88{bottom:704.730000px;}
.y211{bottom:705.090000px;}
.y186{bottom:706.530000px;}
.y2a0{bottom:706.890000px;}
.y69{bottom:707.970000px;}
.y22f{bottom:708.330000px;}
.y9{bottom:709.410000px;}
.y2c6{bottom:713.370000px;}
.ya4{bottom:714.090000px;}
.y2f{bottom:715.890000px;}
.y11b{bottom:718.410000px;}
.y282{bottom:718.770000px;}
.yc0{bottom:721.650000px;}
.y26a{bottom:723.090000px;}
.y230{bottom:724.530000px;}
.y2ae{bottom:727.410000px;}
.y100{bottom:728.850000px;}
.yec{bottom:730.650000px;}
.y87{bottom:733.170000px;}
.y210{bottom:733.530000px;}
.y1dd{bottom:734.970000px;}
.y2c5{bottom:741.810000px;}
.ya3{bottom:742.530000px;}
.y8{bottom:743.610000px;}
.y4f{bottom:743.970000px;}
.y2e{bottom:744.330000px;}
.y11a{bottom:746.850000px;}
.y29f{bottom:747.210000px;}
.y281{bottom:747.570000px;}
.ybf{bottom:750.090000px;}
.y168{bottom:752.970000px;}
.y2ad{bottom:755.850000px;}
.yeb{bottom:759.090000px;}
.y1fe{bottom:759.450000px;}
.y86{bottom:761.610000px;}
.y20f{bottom:761.970000px;}
.y209{bottom:763.410000px;}
.y185{bottom:770.250000px;}
.ya2{bottom:770.970000px;}
.y68{bottom:772.410000px;}
.y2d{bottom:772.770000px;}
.y118{bottom:775.290000px;}
.y280{bottom:776.370000px;}
.y7{bottom:778.170000px;}
.ybe{bottom:778.530000px;}
.y119{bottom:781.410000px;}
.y2c4{bottom:782.490000px;}
.y4e{bottom:784.290000px;}
.yea{bottom:787.530000px;}
.y1fd{bottom:787.890000px;}
.y85{bottom:790.050000px;}
.y20e{bottom:790.410000px;}
.y208{bottom:791.850000px;}
.y1a4{bottom:793.650000px;}
.ya1{bottom:799.410000px;}
.y2c{bottom:801.210000px;}
.y117{bottom:804.090000px;}
.y27f{bottom:804.450000px;}
.ybd{bottom:806.970000px;}
.y67{bottom:808.410000px;}
.y2c3{bottom:810.930000px;}
.y6{bottom:812.370000px;}
.ye9{bottom:815.970000px;}
.y297{bottom:816.330000px;}
.y84{bottom:818.490000px;}
.y20d{bottom:818.850000px;}
.y207{bottom:820.290000px;}
.y4d{bottom:825.015000px;}
.ya0{bottom:827.895000px;}
.y2b{bottom:829.695000px;}
.y116{bottom:832.575000px;}
.y27e{bottom:832.935000px;}
.ybc{bottom:835.455000px;}
.y66{bottom:836.895000px;}
.ye8{bottom:844.455000px;}
.y296{bottom:844.815000px;}
.y83{bottom:847.335000px;}
.y5{bottom:847.695000px;}
.y243{bottom:850.575000px;}
.y2c2{bottom:851.295000px;}
.y2ac{bottom:853.455000px;}
.y9f{bottom:856.335000px;}
.y173{bottom:861.015000px;}
.y27d{bottom:861.375000px;}
.ybb{bottom:863.895000px;}
.y4c{bottom:865.335000px;}
.y2a{bottom:870.375000px;}
.ye7{bottom:872.895000px;}
.y65{bottom:873.255000px;}
.y82{bottom:875.775000px;}
.y2c1{bottom:879.735000px;}
.y2ab{bottom:881.895000px;}
.y9e{bottom:884.775000px;}
.y4{bottom:885.855000px;}
.y1aa{bottom:889.455000px;}
.y27c{bottom:889.815000px;}
.yba{bottom:892.335000px;}
.y29{bottom:898.815000px;}
.y115{bottom:901.335000px;}
.y15a{bottom:901.695000px;}
.y81{bottom:904.215000px;}
.y4b{bottom:905.655000px;}
.y1e6{bottom:907.455000px;}
.y64{bottom:908.535000px;}
.y184{bottom:910.335000px;}
.y3{bottom:912.135000px;}
.y9d{bottom:913.215000px;}
.y1ca{bottom:913.575000px;}
.y1a9{bottom:917.895000px;}
.y27b{bottom:918.615000px;}
.y15c{bottom:919.335000px;}
.y2c0{bottom:920.055000px;}
.y1cb{bottom:920.415000px;}
.yb9{bottom:920.775000px;}
.y2aa{bottom:922.575000px;}
.y28{bottom:927.255000px;}
.y114{bottom:929.775000px;}
.y159{bottom:930.135000px;}
.y80{bottom:932.655000px;}
.y9c{bottom:941.655000px;}
.y19c{bottom:942.015000px;}
.y63{bottom:944.535000px;}
.y4a{bottom:946.335000px;}
.y27a{bottom:946.695000px;}
.y195{bottom:947.775000px;}
.y2bf{bottom:948.855000px;}
.yb8{bottom:949.215000px;}
.y2{bottom:949.935000px;}
.y183{bottom:950.655000px;}
.y27{bottom:955.725000px;}
.y113{bottom:958.245000px;}
.y1ed{bottom:958.605000px;}
.y7f{bottom:961.125000px;}
.y2a9{bottom:962.925000px;}
.y9b{bottom:970.125000px;}
.y201{bottom:970.485000px;}
.y206{bottom:974.805000px;}
.y279{bottom:975.165000px;}
.yb7{bottom:977.685000px;}
.y62{bottom:980.565000px;}
.y2be{bottom:981.285000px;}
.y26{bottom:984.165000px;}
.y49{bottom:986.685000px;}
.y1ec{bottom:987.045000px;}
.y7e{bottom:989.565000px;}
.y1{bottom:990.285000px;}
.y182{bottom:991.365000px;}
.y9a{bottom:998.925000px;}
.y1c1{bottom:999.285000px;}
.y2bd{bottom:1001.805000px;}
.y205{bottom:1003.245000px;}
.y278{bottom:1003.605000px;}
.y1a8{bottom:1005.045000px;}
.yd7{bottom:1006.125000px;}
.y25{bottom:1012.605000px;}
.y12b{bottom:1015.125000px;}
.y61{bottom:1016.925000px;}
.y7d{bottom:1018.005000px;}
.y12c{bottom:1021.245000px;}
.y48{bottom:1027.365000px;}
.y181{bottom:1031.685000px;}
.y277{bottom:1032.045000px;}
.yd6{bottom:1034.565000px;}
.y24{bottom:1041.045000px;}
.y2bc{bottom:1042.485000px;}
.y12a{bottom:1043.565000px;}
.y7c{bottom:1046.445000px;}
.y47{bottom:1055.805000px;}
.ye6{bottom:1056.165000px;}
.y60{bottom:1057.245000px;}
.y2a8{bottom:1060.125000px;}
.y276{bottom:1060.485000px;}
.y1c0{bottom:1061.925000px;}
.yd5{bottom:1063.005000px;}
.y23{bottom:1069.485000px;}
.y157{bottom:1072.005000px;}
.y167{bottom:1072.365000px;}
.y46{bottom:1084.290000px;}
.ye5{bottom:1084.650000px;}
.y275{bottom:1088.970000px;}
.y7b{bottom:1089.690000px;}
.y22b{bottom:1090.410000px;}
.y5f{bottom:1090.770000px;}
.y2bb{bottom:1091.850000px;}
.y22{bottom:1097.970000px;}
.y2a7{bottom:1100.850000px;}
.y45{bottom:1112.730000px;}
.y148{bottom:1113.090000px;}
.y158{bottom:1118.850000px;}
.y7a{bottom:1132.530000px;}
.y21{bottom:1140.090000px;}
.y44{bottom:1141.170000px;}
.ye4{bottom:1141.530000px;}
.y5e{bottom:1141.890000px;}
.y156{bottom:1147.290000px;}
.h17{height:29.482734px;}
.h10{height:40.550625px;}
.hf{height:43.554375px;}
.h14{height:45.862031px;}
.hb{height:50.229844px;}
.h16{height:54.071719px;}
.h11{height:54.219375px;}
.h19{height:59.221406px;}
.hc{height:59.383125px;}
.h13{height:59.932969px;}
.h18{height:61.917187px;}
.h12{height:63.078750px;}
.he{height:66.082500px;}
.hd{height:69.086250px;}
.h15{height:72.292500px;}
.h5{height:75.093750px;}
.h4{height:75.567656px;}
.h7{height:81.101250px;}
.h3{height:87.108750px;}
.h6{height:94.618125px;}
.ha{height:108.431719px;}
.h9{height:120.453750px;}
.h2{height:124.655625px;}
.h8{height:225.435000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:644.655000px;}
.w1{width:892.500000px;}
.w4{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:10.836000px;}
.x9{left:32.799000px;}
.x7{left:54.039000px;}
.x8{left:55.839000px;}
.x1{left:127.475987px;}
.x13{left:132.875987px;}
.x6{left:136.476000px;}
.x28{left:138.275987px;}
.xd{left:144.071987px;}
.x2d{left:145.871987px;}
.x27{left:154.514987px;}
.x3{left:166.754987px;}
.x4d{left:169.634973px;}
.xf{left:180.794987px;}
.xa{left:185.829000px;}
.x56{left:194.474973px;}
.x49{left:199.154973px;}
.x2e{left:204.194987px;}
.x57{left:205.994987px;}
.x18{left:207.794973px;}
.x4a{left:210.674987px;}
.x19{left:213.554987px;}
.x5a{left:222.914973px;}
.x5b{left:234.464987px;}
.x23{left:259.304973px;}
.x24{left:265.064987px;}
.x29{left:275.144973px;}
.x4e{left:283.424973px;}
.x2a{left:286.664987px;}
.x4f{left:294.944987px;}
.x1b{left:298.544973px;}
.x1c{left:304.304987px;}
.x5{left:305.744987px;}
.x50{left:307.184973px;}
.x51{left:318.704987px;}
.x4{left:322.664987px;}
.x1d{left:342.149973px;}
.x12{left:343.589987px;}
.x21{left:345.029973px;}
.x1e{left:347.909987px;}
.x22{left:350.789987px;}
.x34{left:362.669973px;}
.x35{left:374.189987px;}
.x3f{left:386.789973px;}
.x14{left:390.029973px;}
.x15{left:395.789987px;}
.x40{left:398.309987px;}
.xc{left:408.389987px;}
.x41{left:421.349973px;}
.x52{left:422.819973px;}
.x58{left:426.059973px;}
.x42{left:432.899987px;}
.x53{left:434.339987px;}
.x59{left:437.579987px;}
.x3a{left:439.019973px;}
.x2{left:446.579987px;}
.x2b{left:450.539973px;}
.x2c{left:462.059987px;}
.x16{left:468.539973px;}
.x17{left:474.299987px;}
.x1f{left:484.019973px;}
.x20{left:489.779987px;}
.x3d{left:498.059973px;}
.x3e{left:509.579987px;}
.x38{left:547.769973px;}
.x39{left:559.289987px;}
.x2f{left:573.329973px;}
.x45{left:574.409973px;}
.x30{left:584.849987px;}
.x46{left:585.929987px;}
.x31{left:588.089973px;}
.x43{left:590.609973px;}
.x25{left:594.929973px;}
.x32{left:599.609987px;}
.x44{left:602.129987px;}
.x26{left:606.449987px;}
.x3b{left:611.894973px;}
.x3c{left:623.414987px;}
.x47{left:657.974973px;}
.x4b{left:666.974973px;}
.x48{left:669.494987px;}
.x54{left:675.974973px;}
.x4c{left:678.494987px;}
.x55{left:687.494987px;}
.x10{left:736.844973px;}
.x11{left:742.604987px;}
.x1a{left:749.084987px;}
.x36{left:754.124973px;}
.xe{left:757.364987px;}
.x33{left:760.604987px;}
.x37{left:765.644987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls33{letter-spacing:-4.576000pt;}
.ls28{letter-spacing:-3.840000pt;}
.ls2c{letter-spacing:-3.434667pt;}
.ls1c{letter-spacing:-2.154667pt;}
.ls21{letter-spacing:-1.728000pt;}
.ls24{letter-spacing:-1.696000pt;}
.lse{letter-spacing:-1.685333pt;}
.ls20{letter-spacing:-1.552000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-1.008000pt;}
.ls12{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.506667pt;}
.ls11{letter-spacing:-0.450667pt;}
.ls17{letter-spacing:-0.414933pt;}
.ls14{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.158933pt;}
.ls1{letter-spacing:-0.030720pt;}
.ls1b{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.017920pt;}
.ls30{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.271360pt;}
.ls4{letter-spacing:0.271467pt;}
.ls31{letter-spacing:0.378027pt;}
.ls8{letter-spacing:0.406933pt;}
.lsb{letter-spacing:0.407040pt;}
.ls16{letter-spacing:0.414720pt;}
.lsd{letter-spacing:0.414933pt;}
.ls32{letter-spacing:0.431360pt;}
.ls3{letter-spacing:0.471040pt;}
.ls1f{letter-spacing:0.542720pt;}
.ls2{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.650240pt;}
.ls1d{letter-spacing:0.864000pt;}
.ls22{letter-spacing:0.872960pt;}
.ls10{letter-spacing:1.552000pt;}
.ls27{letter-spacing:1.694720pt;}
.ls2d{letter-spacing:1.824000pt;}
.ls2b{letter-spacing:2.938027pt;}
.ls2e{letter-spacing:4.382720pt;}
.ls13{letter-spacing:4.392960pt;}
.ls1e{letter-spacing:7.951360pt;}
.ls25{letter-spacing:20.751360pt;}
.ls29{letter-spacing:27.151360pt;}
.ls2a{letter-spacing:30.991360pt;}
.ls23{letter-spacing:33.551360pt;}
.ls19{letter-spacing:36.254720pt;}
.ls26{letter-spacing:54.174720pt;}
.ls2f{letter-spacing:67.113387pt;}
.ws15{word-spacing:-58.880000pt;}
.ws0{word-spacing:-19.184640pt;}
.ws2{word-spacing:-17.792000pt;}
.ws6{word-spacing:-16.912640pt;}
.ws9{word-spacing:-16.839680pt;}
.ws7{word-spacing:-16.775573pt;}
.wsa{word-spacing:-16.640107pt;}
.ws8{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.097173pt;}
.ws3{word-spacing:-15.961707pt;}
.ws12{word-spacing:-15.809280pt;}
.ws4{word-spacing:-15.632640pt;}
.wse{word-spacing:-15.360640pt;}
.wsc{word-spacing:-15.088640pt;}
.ws11{word-spacing:-14.963200pt;}
.wsd{word-spacing:-14.945280pt;}
.ws13{word-spacing:-14.816640pt;}
.ws18{word-spacing:-14.530347pt;}
.wsf{word-spacing:-14.494613pt;}
.wsb{word-spacing:-13.306880pt;}
.ws16{word-spacing:-13.249280pt;}
.ws14{word-spacing:-13.217280pt;}
.ws10{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.528640pt;}
.ws19{word-spacing:-11.792640pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-15.599787pt;}
._1c{margin-left:-13.681067pt;}
._1a{margin-left:-11.606187pt;}
._17{margin-left:-9.900587pt;}
._18{margin-left:-8.922240pt;}
._6{margin-left:-7.559680pt;}
._24{margin-left:-6.535680pt;}
._19{margin-left:-5.495467pt;}
._5{margin-left:-4.380160pt;}
._3{margin-left:-2.895360pt;}
._4{margin-left:-1.930240pt;}
._1{margin-left:-0.890880pt;}
._0{width:0.965120pt;}
._2{width:2.227200pt;}
._8{width:3.783680pt;}
._9{width:5.181440pt;}
._7{width:6.182400pt;}
._a{width:7.081387pt;}
._16{width:7.971840pt;}
._15{width:9.192960pt;}
._e{width:10.163200pt;}
._10{width:11.200000pt;}
._39{width:12.089600pt;}
._f{width:12.989867pt;}
._11{width:14.099200pt;}
._12{width:15.216213pt;}
._3f{width:16.303787pt;}
._14{width:17.355093pt;}
._13{width:18.311680pt;}
._1e{width:19.305813pt;}
._1d{width:20.784640pt;}
._23{width:22.433280pt;}
._20{width:23.542187pt;}
._1f{width:24.729600pt;}
._21{width:25.943040pt;}
._22{width:27.578880pt;}
._30{width:28.544853pt;}
._27{width:29.629013pt;}
._28{width:31.178667pt;}
._34{width:32.153173pt;}
._35{width:33.592320pt;}
._c{width:35.115520pt;}
._b{width:36.454400pt;}
._d{width:38.309547pt;}
._2c{width:39.704320pt;}
._31{width:40.621653pt;}
._32{width:41.752747pt;}
._3d{width:42.804480pt;}
._3e{width:43.917653pt;}
._4a{width:46.656000pt;}
._49{width:47.751680pt;}
._4b{width:49.970347pt;}
._4c{width:50.909867pt;}
._47{width:53.102080pt;}
._3a{width:54.034453pt;}
._48{width:56.370667pt;}
._44{width:57.937920pt;}
._43{width:58.938880pt;}
._45{width:59.927040pt;}
._52{width:62.530560pt;}
._40{width:63.918080pt;}
._53{width:64.898560pt;}
._41{width:66.342400pt;}
._42{width:68.311040pt;}
._33{width:71.464960pt;}
._2a{width:72.714240pt;}
._2b{width:73.704960pt;}
._29{width:74.990080pt;}
._38{width:78.382080pt;}
._37{width:82.446507pt;}
._36{width:83.753387pt;}
._3c{width:86.981867pt;}
._3b{width:88.000000pt;}
._2f{width:89.323093pt;}
._2d{width:90.936747pt;}
._2e{width:91.890347pt;}
._46{width:98.819200pt;}
._25{width:107.036160pt;}
._26{width:108.454827pt;}
._4d{width:112.389547pt;}
._4e{width:113.332907pt;}
._50{width:143.336960pt;}
._4f{width:144.750080pt;}
._51{width:145.825707pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:71.680000pt;}
.fs1{font-size:74.240000pt;}
.fs3{font-size:80.640000pt;}
.fs0{font-size:106.240000pt;}
.y20{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:32.320000pt;}
.y79{bottom:50.880000pt;}
.y1e{bottom:65.946667pt;}
.y78{bottom:68.832000pt;}
.y1ba{bottom:96.992000pt;}
.y129{bottom:97.632000pt;}
.y194{bottom:97.952000pt;}
.y1d{bottom:98.906667pt;}
.y20c{bottom:100.512000pt;}
.y295{bottom:101.152000pt;}
.y1b9{bottom:101.792000pt;}
.y25e{bottom:102.112000pt;}
.y19{bottom:104.032000pt;}
.yd4{bottom:104.672000pt;}
.y140{bottom:104.992000pt;}
.y269{bottom:105.952000pt;}
.y14f{bottom:107.232000pt;}
.y99{bottom:108.512000pt;}
.y43{bottom:108.832000pt;}
.y241{bottom:111.392000pt;}
.y222{bottom:112.672000pt;}
.y244{bottom:113.312000pt;}
.yb6{bottom:113.952000pt;}
.y1a3{bottom:115.232000pt;}
.y1bf{bottom:116.512000pt;}
.y247{bottom:118.112000pt;}
.y112{bottom:119.072000pt;}
.y1b8{bottom:120.032000pt;}
.y128{bottom:120.992000pt;}
.y2ba{bottom:121.632000pt;}
.y193{bottom:123.232000pt;}
.y20b{bottom:125.792000pt;}
.y294{bottom:126.112000pt;}
.y25d{bottom:127.392000pt;}
.yd3{bottom:127.712000pt;}
.y13f{bottom:128.032000pt;}
.y268{bottom:131.232000pt;}
.y1c{bottom:131.866667pt;}
.yd2{bottom:132.512000pt;}
.y147{bottom:132.832000pt;}
.y98{bottom:133.786667pt;}
.y42{bottom:134.106667pt;}
.yff{bottom:135.706667pt;}
.y1b7{bottom:136.346667pt;}
.y23c{bottom:136.666667pt;}
.y18{bottom:137.306667pt;}
.y221{bottom:137.946667pt;}
.y1a2{bottom:138.586667pt;}
.y274{bottom:138.906667pt;}
.yb5{bottom:139.226667pt;}
.y1be{bottom:141.786667pt;}
.y246{bottom:143.386667pt;}
.yd1{bottom:144.026667pt;}
.y111{bottom:144.346667pt;}
.y2b9{bottom:146.906667pt;}
.y180{bottom:148.506667pt;}
.y192{bottom:148.826667pt;}
.y166{bottom:150.746667pt;}
.y13e{bottom:151.066667pt;}
.y1dc{bottom:151.706667pt;}
.y25c{bottom:152.666667pt;}
.y19b{bottom:155.866667pt;}
.y267{bottom:156.506667pt;}
.y5d{bottom:157.466667pt;}
.y14e{bottom:157.786667pt;}
.y97{bottom:159.066667pt;}
.y41{bottom:159.386667pt;}
.y251{bottom:160.666667pt;}
.yfe{bottom:160.986667pt;}
.y1a1{bottom:161.306667pt;}
.y23b{bottom:161.946667pt;}
.y220{bottom:163.226667pt;}
.yb4{bottom:164.506667pt;}
.y2d4{bottom:165.146667pt;}
.y155{bottom:167.066667pt;}
.y127{bottom:167.386667pt;}
.y245{bottom:168.666667pt;}
.y2a6{bottom:169.626667pt;}
.y17{bottom:172.866667pt;}
.ye3{bottom:173.826667pt;}
.y14b{bottom:174.146667pt;}
.y1db{bottom:175.106667pt;}
.y1b{bottom:175.413333pt;}
.y20a{bottom:176.386667pt;}
.y293{bottom:177.026667pt;}
.y25b{bottom:177.986667pt;}
.y13d{bottom:178.626667pt;}
.y14a{bottom:178.946667pt;}
.y110{bottom:180.546667pt;}
.y266{bottom:181.826667pt;}
.y2b8{bottom:182.786667pt;}
.y14d{bottom:183.106667pt;}
.y250{bottom:183.746667pt;}
.y96{bottom:184.386667pt;}
.y191{bottom:184.706667pt;}
.y40{bottom:185.026667pt;}
.yfd{bottom:186.306667pt;}
.y240{bottom:187.266667pt;}
.y21f{bottom:188.546667pt;}
.y22a{bottom:189.186667pt;}
.yb3{bottom:189.826667pt;}
.y13c{bottom:190.146667pt;}
.y126{bottom:190.466667pt;}
.y1bd{bottom:192.386667pt;}
.y5c{bottom:193.666667pt;}
.y146{bottom:193.986667pt;}
.y125{bottom:195.266667pt;}
.y165{bottom:196.866667pt;}
.y19a{bottom:197.186667pt;}
.y23a{bottom:197.826667pt;}
.y1da{bottom:198.146667pt;}
.y24f{bottom:200.066667pt;}
.y229{bottom:200.706667pt;}
.y2d3{bottom:201.346667pt;}
.y172{bottom:201.666667pt;}
.y77{bottom:201.986667pt;}
.y292{bottom:202.306667pt;}
.y1d9{bottom:202.946667pt;}
.y25a{bottom:203.266667pt;}
.y1fc{bottom:204.866667pt;}
.y10f{bottom:205.826667pt;}
.y124{bottom:206.466667pt;}
.y265{bottom:207.106667pt;}
.y1a0{bottom:207.426667pt;}
.y16{bottom:208.066667pt;}
.y14c{bottom:208.386667pt;}
.y29e{bottom:208.706667pt;}
.y95{bottom:209.666667pt;}
.y190{bottom:209.986667pt;}
.y3f{bottom:210.306667pt;}
.y273{bottom:210.946667pt;}
.yfc{bottom:211.586667pt;}
.y23f{bottom:212.546667pt;}
.y154{bottom:212.866667pt;}
.y199{bottom:213.186667pt;}
.y21e{bottom:213.826667pt;}
.y1d8{bottom:214.466667pt;}
.yb2{bottom:215.106667pt;}
.ye2{bottom:217.666667pt;}
.yd0{bottom:217.986667pt;}
.y2b7{bottom:218.626667pt;}
.y145{bottom:219.266667pt;}
.y164{bottom:219.906667pt;}
.y1eb{bottom:220.226667pt;}
.y17f{bottom:220.546667pt;}
.y239{bottom:221.186667pt;}
.y242{bottom:223.106667pt;}
.y163{bottom:224.706667pt;}
.y1e5{bottom:227.266667pt;}
.y291{bottom:227.586667pt;}
.y259{bottom:228.546667pt;}
.y153{bottom:229.186667pt;}
.y5b{bottom:229.506667pt;}
.y24e{bottom:229.826667pt;}
.y1fb{bottom:230.146667pt;}
.y19f{bottom:230.466667pt;}
.y10e{bottom:231.106667pt;}
.y264{bottom:232.386667pt;}
.y123{bottom:233.666667pt;}
.y76{bottom:233.986667pt;}
.y94{bottom:234.946667pt;}
.y18f{bottom:235.266667pt;}
.y171{bottom:235.906667pt;}
.yfb{bottom:236.866667pt;}
.y2d2{bottom:237.186667pt;}
.y23e{bottom:237.826667pt;}
.yb1{bottom:240.386667pt;}
.y15{bottom:241.666667pt;}
.y162{bottom:242.626667pt;}
.y1ea{bottom:242.946667pt;}
.ye1{bottom:243.266667pt;}
.ycf{bottom:243.586667pt;}
.y2b6{bottom:243.906667pt;}
.y238{bottom:244.226667pt;}
.y198{bottom:244.546667pt;}
.y144{bottom:244.866667pt;}
.y3e{bottom:246.146667pt;}
.y19e{bottom:246.786667pt;}
.y21d{bottom:247.106667pt;}
.y200{bottom:247.426667pt;}
.y1e9{bottom:247.746667pt;}
.y227{bottom:248.386667pt;}
.y1d7{bottom:252.546667pt;}
.y1e4{bottom:252.866667pt;}
.y290{bottom:253.186667pt;}
.y228{bottom:253.826667pt;}
.y24d{bottom:255.106667pt;}
.y1fa{bottom:255.426667pt;}
.y10d{bottom:256.386667pt;}
.y263{bottom:257.666667pt;}
.y170{bottom:258.946667pt;}
.y122{bottom:259.266667pt;}
.y93{bottom:260.226667pt;}
.y18e{bottom:260.546667pt;}
.yfa{bottom:262.146667pt;}
.y2d1{bottom:262.466667pt;}
.y23d{bottom:263.106667pt;}
.y5a{bottom:265.666667pt;}
.y75{bottom:265.986667pt;}
.y237{bottom:267.266667pt;}
.yce{bottom:268.546667pt;}
.y2b5{bottom:269.186667pt;}
.y13b{bottom:269.826667pt;}
.y143{bottom:270.146667pt;}
.y1c9{bottom:270.466667pt;}
.y3d{bottom:271.426667pt;}
.y236{bottom:272.066667pt;}
.y21c{bottom:272.386667pt;}
.y226{bottom:273.666667pt;}
.y197{bottom:275.266667pt;}
.y14{bottom:275.906667pt;}
.y1d6{bottom:277.826667pt;}
.y28f{bottom:278.146667pt;}
.y258{bottom:279.426667pt;}
.y24c{bottom:280.386667pt;}
.y1f9{bottom:280.706667pt;}
.y10c{bottom:281.666667pt;}
.y16f{bottom:282.306667pt;}
.y262{bottom:282.946667pt;}
.y121{bottom:284.573333pt;}
.y92{bottom:285.533333pt;}
.y18d{bottom:285.853333pt;}
.yf9{bottom:287.453333pt;}
.y1e3{bottom:288.413333pt;}
.y161{bottom:288.733333pt;}
.y1c8{bottom:289.053333pt;}
.y235{bottom:290.333333pt;}
.y1b6{bottom:290.973333pt;}
.y17e{bottom:292.253333pt;}
.ycd{bottom:293.853333pt;}
.y13a{bottom:295.133333pt;}
.y142{bottom:295.453333pt;}
.y3c{bottom:296.733333pt;}
.y74{bottom:297.693333pt;}
.y2d0{bottom:298.333333pt;}
.y225{bottom:298.973333pt;}
.y59{bottom:301.533333pt;}
.y1d5{bottom:303.133333pt;}
.y28e{bottom:303.453333pt;}
.y257{bottom:304.733333pt;}
.y16e{bottom:305.373333pt;}
.y24b{bottom:305.693333pt;}
.y1f8{bottom:306.013333pt;}
.y10b{bottom:306.973333pt;}
.y261{bottom:308.253333pt;}
.y120{bottom:309.853333pt;}
.y16d{bottom:310.173333pt;}
.yb0{bottom:311.133333pt;}
.y13{bottom:311.453333pt;}
.y160{bottom:311.773333pt;}
.yf8{bottom:312.733333pt;}
.y234{bottom:313.053333pt;}
.y1e2{bottom:313.693333pt;}
.y1b5{bottom:316.253333pt;}
.y1a7{bottom:316.573333pt;}
.y272{bottom:318.813333pt;}
.ycc{bottom:319.133333pt;}
.y139{bottom:320.413333pt;}
.y16c{bottom:321.373333pt;}
.y3b{bottom:322.013333pt;}
.y73{bottom:322.973333pt;}
.y2cf{bottom:323.613333pt;}
.y224{bottom:324.253333pt;}
.y2b4{bottom:327.453333pt;}
.y1a6{bottom:328.093333pt;}
.y17d{bottom:328.413333pt;}
.y28d{bottom:328.733333pt;}
.y91{bottom:329.373333pt;}
.y24a{bottom:330.973333pt;}
.y1f7{bottom:331.293333pt;}
.y10a{bottom:332.253333pt;}
.y260{bottom:333.533333pt;}
.y15f{bottom:334.813333pt;}
.y11f{bottom:335.133333pt;}
.y233{bottom:336.093333pt;}
.yaf{bottom:336.413333pt;}
.y58{bottom:337.373333pt;}
.yf7{bottom:338.013333pt;}
.y1e1{bottom:338.973333pt;}
.y1e8{bottom:339.293333pt;}
.y256{bottom:340.573333pt;}
.y1b4{bottom:341.533333pt;}
.ycb{bottom:344.413333pt;}
.y138{bottom:345.693333pt;}
.y12{bottom:346.973333pt;}
.y3a{bottom:347.293333pt;}
.y21b{bottom:348.253333pt;}
.y223{bottom:349.533333pt;}
.y1d4{bottom:353.693333pt;}
.y28c{bottom:354.013333pt;}
.y72{bottom:354.653333pt;}
.y271{bottom:354.973333pt;}
.y249{bottom:356.253333pt;}
.y1f6{bottom:356.573333pt;}
.y109{bottom:357.533333pt;}
.y22e{bottom:357.853333pt;}
.y1c7{bottom:358.173333pt;}
.y15e{bottom:358.813333pt;}
.y232{bottom:359.133333pt;}
.y2ce{bottom:359.773333pt;}
.y11e{bottom:360.413333pt;}
.yae{bottom:361.693333pt;}
.ye0{bottom:362.973333pt;}
.yf6{bottom:363.613333pt;}
.y17c{bottom:364.253333pt;}
.y255{bottom:365.853333pt;}
.y1b3{bottom:366.813333pt;}
.y1bc{bottom:369.693333pt;}
.yc9{bottom:370.013333pt;}
.y137{bottom:370.973333pt;}
.y29d{bottom:371.293333pt;}
.y39{bottom:372.573333pt;}
.y57{bottom:373.533333pt;}
.y16b{bottom:374.813333pt;}
.y15d{bottom:375.453333pt;}
.yca{bottom:376.093333pt;}
.y1a5{bottom:376.413333pt;}
.y1d3{bottom:378.973333pt;}
.y28b{bottom:379.293333pt;}
.y90{bottom:379.933333pt;}
.y71{bottom:380.253333pt;}
.y1c6{bottom:380.893333pt;}
.y248{bottom:381.533333pt;}
.y1f5{bottom:382.173333pt;}
.y11{bottom:382.493333pt;}
.y108{bottom:382.813333pt;}
.y25f{bottom:384.413333pt;}
.y2cd{bottom:385.053333pt;}
.y11d{bottom:385.693333pt;}
.yad{bottom:386.973333pt;}
.ydf{bottom:388.253333pt;}
.y17b{bottom:389.533333pt;}
.y270{bottom:390.813333pt;}
.y254{bottom:391.133333pt;}
.y1b2{bottom:392.413333pt;}
.y1bb{bottom:394.973333pt;}
.yc8{bottom:395.293333pt;}
.y136{bottom:396.253333pt;}
.y29c{bottom:396.613333pt;}
.y1c5{bottom:397.253333pt;}
.y38{bottom:397.893333pt;}
.y231{bottom:398.533333pt;}
.y21a{bottom:398.853333pt;}
.y16a{bottom:400.453333pt;}
.yf5{bottom:400.773333pt;}
.y19d{bottom:401.733333pt;}
.y1d2{bottom:404.293333pt;}
.y28a{bottom:404.613333pt;}
.y8f{bottom:405.253333pt;}
.y204{bottom:406.853333pt;}
.y1f4{bottom:407.493333pt;}
.y107{bottom:408.133333pt;}
.y56{bottom:409.413333pt;}
.y2cc{bottom:410.693333pt;}
.y11c{bottom:411.013333pt;}
.y70{bottom:411.973333pt;}
.yac{bottom:412.293333pt;}
.yde{bottom:413.573333pt;}
.y22d{bottom:414.533333pt;}
.y17a{bottom:414.853333pt;}
.y2a5{bottom:415.173333pt;}
.y253{bottom:416.453333pt;}
.y10{bottom:416.773333pt;}
.y1b1{bottom:417.733333pt;}
.yc7{bottom:420.293333pt;}
.y135{bottom:421.573333pt;}
.y18c{bottom:422.853333pt;}
.y37{bottom:423.173333pt;}
.y219{bottom:424.453333pt;}
.y169{bottom:425.733333pt;}
.y26f{bottom:426.693333pt;}
.y1d1{bottom:429.573333pt;}
.y8e{bottom:430.853333pt;}
.y1c4{bottom:432.453333pt;}
.y1f3{bottom:432.773333pt;}
.y106{bottom:433.733333pt;}
.y2cb{bottom:435.653333pt;}
.yf4{bottom:436.293333pt;}
.y6f{bottom:437.253333pt;}
.yab{bottom:437.573333pt;}
.ydd{bottom:438.853333pt;}
.y179{bottom:440.133333pt;}
.y289{bottom:440.453333pt;}
.y1b0{bottom:443.013333pt;}
.y55{bottom:445.573333pt;}
.y134{bottom:446.853333pt;}
.y29b{bottom:447.173333pt;}
.yf{bottom:447.493333pt;}
.y2b3{bottom:448.133333pt;}
.y218{bottom:449.733333pt;}
.y1e7{bottom:451.013333pt;}
.y141{bottom:452.293333pt;}
.y252{bottom:452.613333pt;}
.y22c{bottom:453.893333pt;}
.y1cf{bottom:454.853333pt;}
.y8d{bottom:456.133333pt;}
.y203{bottom:457.733333pt;}
.y1c3{bottom:458.053333pt;}
.y105{bottom:459.013333pt;}
.y36{bottom:459.333333pt;}
.y1d0{bottom:460.293333pt;}
.y1a{bottom:460.933333pt;}
.yf3{bottom:461.573333pt;}
.yaa{bottom:462.853333pt;}
.ydc{bottom:464.133333pt;}
.y178{bottom:465.413333pt;}
.y288{bottom:466.053333pt;}
.y18b{bottom:466.693333pt;}
.y1af{bottom:468.293333pt;}
.y6e{bottom:469.573333pt;}
.yc6{bottom:470.853333pt;}
.y133{bottom:472.133333pt;}
.y29a{bottom:472.453333pt;}
.y2b2{bottom:473.413333pt;}
.y217{bottom:475.013333pt;}
.y1e0{bottom:476.293333pt;}
.ye{bottom:477.893333pt;}
.y1ce{bottom:480.133333pt;}
.y54{bottom:481.413333pt;}
.y1c2{bottom:483.013333pt;}
.y1f2{bottom:483.333333pt;}
.y35{bottom:484.613333pt;}
.y2ca{bottom:486.213333pt;}
.yf2{bottom:486.853333pt;}
.ya9{bottom:488.133333pt;}
.ydb{bottom:489.413333pt;}
.y177{bottom:490.693333pt;}
.y18a{bottom:491.973333pt;}
.y1ae{bottom:493.573333pt;}
.yc5{bottom:496.133333pt;}
.y132{bottom:497.413333pt;}
.y299{bottom:497.733333pt;}
.y26e{bottom:498.693333pt;}
.y216{bottom:500.293333pt;}
.y6d{bottom:501.253333pt;}
.y1df{bottom:501.573333pt;}
.y287{bottom:502.213333pt;}
.y104{bottom:503.173333pt;}
.y1cd{bottom:505.413333pt;}
.y8c{bottom:506.693333pt;}
.y196{bottom:508.293333pt;}
.yd{bottom:508.613333pt;}
.y34{bottom:509.920000pt;}
.yf1{bottom:512.160000pt;}
.yda{bottom:514.720000pt;}
.y2c9{bottom:515.040000pt;}
.y2a4{bottom:516.000000pt;}
.y53{bottom:517.280000pt;}
.y1ad{bottom:518.880000pt;}
.yc4{bottom:521.440000pt;}
.y131{bottom:522.720000pt;}
.y15b{bottom:523.040000pt;}
.y215{bottom:525.600000pt;}
.y176{bottom:526.880000pt;}
.y286{bottom:527.520000pt;}
.y1ff{bottom:528.160000pt;}
.y1cc{bottom:531.360000pt;}
.y6c{bottom:533.280000pt;}
.ya8{bottom:533.600000pt;}
.y1f1{bottom:533.920000pt;}
.y26d{bottom:534.880000pt;}
.y33{bottom:535.200000pt;}
.yf0{bottom:537.440000pt;}
.yc{bottom:539.040000pt;}
.yd9{bottom:540.000000pt;}
.y2a3{bottom:541.920000pt;}
.y189{bottom:542.560000pt;}
.y149{bottom:542.880000pt;}
.y1ac{bottom:544.160000pt;}
.yc3{bottom:546.720000pt;}
.y130{bottom:548.000000pt;}
.y8b{bottom:550.560000pt;}
.y214{bottom:550.880000pt;}
.y175{bottom:552.160000pt;}
.y285{bottom:552.800000pt;}
.y52{bottom:553.440000pt;}
.ya7{bottom:558.880000pt;}
.y1f0{bottom:559.200000pt;}
.y2b1{bottom:560.160000pt;}
.y32{bottom:560.480000pt;}
.y2c8{bottom:562.400000pt;}
.yef{bottom:562.720000pt;}
.y6b{bottom:565.280000pt;}
.yd8{bottom:565.600000pt;}
.y2a2{bottom:567.200000pt;}
.y188{bottom:567.840000pt;}
.y152{bottom:568.160000pt;}
.yb{bottom:569.440000pt;}
.y26c{bottom:570.720000pt;}
.y103{bottom:572.000000pt;}
.y12f{bottom:573.600000pt;}
.y8a{bottom:575.840000pt;}
.y213{bottom:576.160000pt;}
.y174{bottom:577.440000pt;}
.y284{bottom:578.080000pt;}
.ya6{bottom:584.160000pt;}
.y1ef{bottom:584.480000pt;}
.y2b0{bottom:585.440000pt;}
.y31{bottom:585.760000pt;}
.yee{bottom:588.000000pt;}
.y151{bottom:588.320000pt;}
.y51{bottom:589.280000pt;}
.yc2{bottom:590.880000pt;}
.y2a1{bottom:592.160000pt;}
.y187{bottom:593.120000pt;}
.y1ab{bottom:594.720000pt;}
.y102{bottom:597.280000pt;}
.y6a{bottom:597.600000pt;}
.y2c7{bottom:598.240000pt;}
.y12e{bottom:598.880000pt;}
.ya{bottom:600.160000pt;}
.y89{bottom:601.120000pt;}
.y212{bottom:601.440000pt;}
.y1de{bottom:602.720000pt;}
.y283{bottom:603.040000pt;}
.y26b{bottom:606.560000pt;}
.ya5{bottom:609.440000pt;}
.y202{bottom:609.760000pt;}
.y2af{bottom:610.720000pt;}
.y30{bottom:611.040000pt;}
.yed{bottom:613.280000pt;}
.y150{bottom:613.600000pt;}
.yc1{bottom:616.160000pt;}
.y1ee{bottom:620.320000pt;}
.y101{bottom:622.586667pt;}
.y12d{bottom:624.186667pt;}
.y298{bottom:624.506667pt;}
.y50{bottom:625.146667pt;}
.y88{bottom:626.426667pt;}
.y211{bottom:626.746667pt;}
.y186{bottom:628.026667pt;}
.y2a0{bottom:628.346667pt;}
.y69{bottom:629.306667pt;}
.y22f{bottom:629.626667pt;}
.y9{bottom:630.586667pt;}
.y2c6{bottom:634.106667pt;}
.ya4{bottom:634.746667pt;}
.y2f{bottom:636.346667pt;}
.y11b{bottom:638.586667pt;}
.y282{bottom:638.906667pt;}
.yc0{bottom:641.466667pt;}
.y26a{bottom:642.746667pt;}
.y230{bottom:644.026667pt;}
.y2ae{bottom:646.586667pt;}
.y100{bottom:647.866667pt;}
.yec{bottom:649.466667pt;}
.y87{bottom:651.706667pt;}
.y210{bottom:652.026667pt;}
.y1dd{bottom:653.306667pt;}
.y2c5{bottom:659.386667pt;}
.ya3{bottom:660.026667pt;}
.y8{bottom:660.986667pt;}
.y4f{bottom:661.306667pt;}
.y2e{bottom:661.626667pt;}
.y11a{bottom:663.866667pt;}
.y29f{bottom:664.186667pt;}
.y281{bottom:664.506667pt;}
.ybf{bottom:666.746667pt;}
.y168{bottom:669.306667pt;}
.y2ad{bottom:671.866667pt;}
.yeb{bottom:674.746667pt;}
.y1fe{bottom:675.066667pt;}
.y86{bottom:676.986667pt;}
.y20f{bottom:677.306667pt;}
.y209{bottom:678.586667pt;}
.y185{bottom:684.666667pt;}
.ya2{bottom:685.306667pt;}
.y68{bottom:686.586667pt;}
.y2d{bottom:686.906667pt;}
.y118{bottom:689.146667pt;}
.y280{bottom:690.106667pt;}
.y7{bottom:691.706667pt;}
.ybe{bottom:692.026667pt;}
.y119{bottom:694.586667pt;}
.y2c4{bottom:695.546667pt;}
.y4e{bottom:697.146667pt;}
.yea{bottom:700.026667pt;}
.y1fd{bottom:700.346667pt;}
.y85{bottom:702.266667pt;}
.y20e{bottom:702.586667pt;}
.y208{bottom:703.866667pt;}
.y1a4{bottom:705.466667pt;}
.ya1{bottom:710.586667pt;}
.y2c{bottom:712.186667pt;}
.y117{bottom:714.746667pt;}
.y27f{bottom:715.066667pt;}
.ybd{bottom:717.306667pt;}
.y67{bottom:718.586667pt;}
.y2c3{bottom:720.826667pt;}
.y6{bottom:722.106667pt;}
.ye9{bottom:725.306667pt;}
.y297{bottom:725.626667pt;}
.y84{bottom:727.546667pt;}
.y20d{bottom:727.866667pt;}
.y207{bottom:729.146667pt;}
.y4d{bottom:733.346667pt;}
.ya0{bottom:735.906667pt;}
.y2b{bottom:737.506667pt;}
.y116{bottom:740.066667pt;}
.y27e{bottom:740.386667pt;}
.ybc{bottom:742.626667pt;}
.y66{bottom:743.906667pt;}
.ye8{bottom:750.626667pt;}
.y296{bottom:750.946667pt;}
.y83{bottom:753.186667pt;}
.y5{bottom:753.506667pt;}
.y243{bottom:756.066667pt;}
.y2c2{bottom:756.706667pt;}
.y2ac{bottom:758.626667pt;}
.y9f{bottom:761.186667pt;}
.y173{bottom:765.346667pt;}
.y27d{bottom:765.666667pt;}
.ybb{bottom:767.906667pt;}
.y4c{bottom:769.186667pt;}
.y2a{bottom:773.666667pt;}
.ye7{bottom:775.906667pt;}
.y65{bottom:776.226667pt;}
.y82{bottom:778.466667pt;}
.y2c1{bottom:781.986667pt;}
.y2ab{bottom:783.906667pt;}
.y9e{bottom:786.466667pt;}
.y4{bottom:787.426667pt;}
.y1aa{bottom:790.626667pt;}
.y27c{bottom:790.946667pt;}
.yba{bottom:793.186667pt;}
.y29{bottom:798.946667pt;}
.y115{bottom:801.186667pt;}
.y15a{bottom:801.506667pt;}
.y81{bottom:803.746667pt;}
.y4b{bottom:805.026667pt;}
.y1e6{bottom:806.626667pt;}
.y64{bottom:807.586667pt;}
.y184{bottom:809.186667pt;}
.y3{bottom:810.786667pt;}
.y9d{bottom:811.746667pt;}
.y1ca{bottom:812.066667pt;}
.y1a9{bottom:815.906667pt;}
.y27b{bottom:816.546667pt;}
.y15c{bottom:817.186667pt;}
.y2c0{bottom:817.826667pt;}
.y1cb{bottom:818.146667pt;}
.yb9{bottom:818.466667pt;}
.y2aa{bottom:820.066667pt;}
.y28{bottom:824.226667pt;}
.y114{bottom:826.466667pt;}
.y159{bottom:826.786667pt;}
.y80{bottom:829.026667pt;}
.y9c{bottom:837.026667pt;}
.y19c{bottom:837.346667pt;}
.y63{bottom:839.586667pt;}
.y4a{bottom:841.186667pt;}
.y27a{bottom:841.506667pt;}
.y195{bottom:842.466667pt;}
.y2bf{bottom:843.426667pt;}
.yb8{bottom:843.746667pt;}
.y2{bottom:844.386667pt;}
.y183{bottom:845.026667pt;}
.y27{bottom:849.533333pt;}
.y113{bottom:851.773333pt;}
.y1ed{bottom:852.093333pt;}
.y7f{bottom:854.333333pt;}
.y2a9{bottom:855.933333pt;}
.y9b{bottom:862.333333pt;}
.y201{bottom:862.653333pt;}
.y206{bottom:866.493333pt;}
.y279{bottom:866.813333pt;}
.yb7{bottom:869.053333pt;}
.y62{bottom:871.613333pt;}
.y2be{bottom:872.253333pt;}
.y26{bottom:874.813333pt;}
.y49{bottom:877.053333pt;}
.y1ec{bottom:877.373333pt;}
.y7e{bottom:879.613333pt;}
.y1{bottom:880.253333pt;}
.y182{bottom:881.213333pt;}
.y9a{bottom:887.933333pt;}
.y1c1{bottom:888.253333pt;}
.y2bd{bottom:890.493333pt;}
.y205{bottom:891.773333pt;}
.y278{bottom:892.093333pt;}
.y1a8{bottom:893.373333pt;}
.yd7{bottom:894.333333pt;}
.y25{bottom:900.093333pt;}
.y12b{bottom:902.333333pt;}
.y61{bottom:903.933333pt;}
.y7d{bottom:904.893333pt;}
.y12c{bottom:907.773333pt;}
.y48{bottom:913.213333pt;}
.y181{bottom:917.053333pt;}
.y277{bottom:917.373333pt;}
.yd6{bottom:919.613333pt;}
.y24{bottom:925.373333pt;}
.y2bc{bottom:926.653333pt;}
.y12a{bottom:927.613333pt;}
.y7c{bottom:930.173333pt;}
.y47{bottom:938.493333pt;}
.ye6{bottom:938.813333pt;}
.y60{bottom:939.773333pt;}
.y2a8{bottom:942.333333pt;}
.y276{bottom:942.653333pt;}
.y1c0{bottom:943.933333pt;}
.yd5{bottom:944.893333pt;}
.y23{bottom:950.653333pt;}
.y157{bottom:952.893333pt;}
.y167{bottom:953.213333pt;}
.y46{bottom:963.813333pt;}
.ye5{bottom:964.133333pt;}
.y275{bottom:967.973333pt;}
.y7b{bottom:968.613333pt;}
.y22b{bottom:969.253333pt;}
.y5f{bottom:969.573333pt;}
.y2bb{bottom:970.533333pt;}
.y22{bottom:975.973333pt;}
.y2a7{bottom:978.533333pt;}
.y45{bottom:989.093333pt;}
.y148{bottom:989.413333pt;}
.y158{bottom:994.533333pt;}
.y7a{bottom:1006.693333pt;}
.y21{bottom:1013.413333pt;}
.y44{bottom:1014.373333pt;}
.ye4{bottom:1014.693333pt;}
.y5e{bottom:1015.013333pt;}
.y156{bottom:1019.813333pt;}
.h17{height:26.206875pt;}
.h10{height:36.045000pt;}
.hf{height:38.715000pt;}
.h14{height:40.766250pt;}
.hb{height:44.648750pt;}
.h16{height:48.063750pt;}
.h11{height:48.195000pt;}
.h19{height:52.641250pt;}
.hc{height:52.785000pt;}
.h13{height:53.273750pt;}
.h18{height:55.037500pt;}
.h12{height:56.070000pt;}
.he{height:58.740000pt;}
.hd{height:61.410000pt;}
.h15{height:64.260000pt;}
.h5{height:66.750000pt;}
.h4{height:67.171250pt;}
.h7{height:72.090000pt;}
.h3{height:77.430000pt;}
.h6{height:84.105000pt;}
.ha{height:96.383750pt;}
.h9{height:107.070000pt;}
.h2{height:110.805000pt;}
.h8{height:200.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:573.026667pt;}
.w1{width:793.333333pt;}
.w4{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:9.632000pt;}
.x9{left:29.154667pt;}
.x7{left:48.034667pt;}
.x8{left:49.634667pt;}
.x1{left:113.311988pt;}
.x13{left:118.111988pt;}
.x6{left:121.312000pt;}
.x28{left:122.911988pt;}
.xd{left:128.063988pt;}
.x2d{left:129.663988pt;}
.x27{left:137.346655pt;}
.x3{left:148.226655pt;}
.x4d{left:150.786643pt;}
.xf{left:160.706655pt;}
.xa{left:165.181333pt;}
.x56{left:172.866643pt;}
.x49{left:177.026643pt;}
.x2e{left:181.506655pt;}
.x57{left:183.106655pt;}
.x18{left:184.706643pt;}
.x4a{left:187.266655pt;}
.x19{left:189.826655pt;}
.x5a{left:198.146643pt;}
.x5b{left:208.413322pt;}
.x23{left:230.493310pt;}
.x24{left:235.613322pt;}
.x29{left:244.573310pt;}
.x4e{left:251.933310pt;}
.x2a{left:254.813322pt;}
.x4f{left:262.173322pt;}
.x1b{left:265.373310pt;}
.x1c{left:270.493322pt;}
.x5{left:271.773322pt;}
.x50{left:273.053310pt;}
.x51{left:283.293322pt;}
.x4{left:286.813322pt;}
.x1d{left:304.133310pt;}
.x12{left:305.413322pt;}
.x21{left:306.693310pt;}
.x1e{left:309.253322pt;}
.x22{left:311.813322pt;}
.x34{left:322.373310pt;}
.x35{left:332.613322pt;}
.x3f{left:343.813310pt;}
.x14{left:346.693310pt;}
.x15{left:351.813322pt;}
.x40{left:354.053322pt;}
.xc{left:363.013322pt;}
.x41{left:374.533310pt;}
.x52{left:375.839976pt;}
.x58{left:378.719976pt;}
.x42{left:384.799988pt;}
.x53{left:386.079988pt;}
.x59{left:388.959988pt;}
.x3a{left:390.239976pt;}
.x2{left:396.959988pt;}
.x2b{left:400.479976pt;}
.x2c{left:410.719988pt;}
.x16{left:416.479976pt;}
.x17{left:421.599988pt;}
.x1f{left:430.239976pt;}
.x20{left:435.359988pt;}
.x3d{left:442.719976pt;}
.x3e{left:452.959988pt;}
.x38{left:486.906643pt;}
.x39{left:497.146655pt;}
.x2f{left:509.626643pt;}
.x45{left:510.586643pt;}
.x30{left:519.866655pt;}
.x46{left:520.826655pt;}
.x31{left:522.746643pt;}
.x43{left:524.986643pt;}
.x25{left:528.826643pt;}
.x32{left:532.986655pt;}
.x44{left:535.226655pt;}
.x26{left:539.066655pt;}
.x3b{left:543.906643pt;}
.x3c{left:554.146655pt;}
.x47{left:584.866643pt;}
.x4b{left:592.866643pt;}
.x48{left:595.106655pt;}
.x54{left:600.866643pt;}
.x4c{left:603.106655pt;}
.x55{left:611.106655pt;}
.x10{left:654.973310pt;}
.x11{left:660.093322pt;}
.x1a{left:665.853322pt;}
.x36{left:670.333310pt;}
.xe{left:673.213322pt;}
.x33{left:676.093322pt;}
.x37{left:680.573322pt;}
}




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