
    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_0f8fdb3dd6000b65dc7cca6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_3af07c27aa8ca94a3f18e66c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_d782073970f84de2711e1c38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_0e3fee59634dcf6269657991.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;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_33dcfea5f4baf286a78a725b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.132000;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_cc41872a8d988067a4e23e49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.848145;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_a46bd8c9b7d0cd95f7f41729.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_b12504f4f931ec733b3b6296.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.135000;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_540d0e9829ef3267995c85bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.931000;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_3af07c27aa8ca94a3f18e66c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_0608215c5104da289b759236.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.150000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.818000px;}
.v3{vertical-align:28.782000px;}
.v4{vertical-align:57.564000px;}
.ls14{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.990000px;}
.ls16{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.594000px;}
.ls28{letter-spacing:-0.585000px;}
.ls17{letter-spacing:-0.462000px;}
.ls18{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.330000px;}
.lsf{letter-spacing:-0.132000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.013800px;}
.ls1b{letter-spacing:0.033000px;}
.ls2b{letter-spacing:0.058500px;}
.lsd{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.117000px;}
.ls9{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.198000px;}
.ls10{letter-spacing:0.231000px;}
.lsa{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.330000px;}
.ls20{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.462000px;}
.ls29{letter-spacing:0.468000px;}
.ls1a{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.588000px;}
.ls1c{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.672750px;}
.ls21{letter-spacing:0.726000px;}
.ls1d{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.924000px;}
.ls1f{letter-spacing:0.990000px;}
.ls25{letter-spacing:1.155000px;}
.ls24{letter-spacing:1.254000px;}
.ls0{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.518000px;}
.ls23{letter-spacing:1.716000px;}
.ls15{letter-spacing:1.980000px;}
.ls22{letter-spacing:7.128000px;}
.ls4{letter-spacing:9.990000px;}
.ls2{letter-spacing:21.312000px;}
.ls8{letter-spacing:95.926800px;}
.ls7{letter-spacing:167.926200px;}
.lsc{letter-spacing:738.394800px;}
.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;}
}
.ws33{word-spacing:-12.000000px;}
.ws47{word-spacing:-10.725000px;}
.ws48{word-spacing:-8.531250px;}
.ws82{word-spacing:-4.980000px;}
.ws3{word-spacing:-1.260000px;}
.ws9f{word-spacing:-0.990000px;}
.ws2{word-spacing:-0.630000px;}
.ws5{word-spacing:-0.588000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.036000px;}
.wsa5{word-spacing:0.058500px;}
.ws8e{word-spacing:0.066000px;}
.wsa3{word-spacing:0.117000px;}
.ws1d{word-spacing:0.132000px;}
.ws2b{word-spacing:0.198000px;}
.ws91{word-spacing:0.264000px;}
.ws6{word-spacing:0.288000px;}
.ws5c{word-spacing:0.330000px;}
.wsb2{word-spacing:0.351000px;}
.ws9{word-spacing:0.360000px;}
.ws2a{word-spacing:0.396000px;}
.ws7b{word-spacing:0.462000px;}
.ws6a{word-spacing:0.528000px;}
.ws2f{word-spacing:0.594000px;}
.ws15{word-spacing:0.630000px;}
.ws74{word-spacing:0.660000px;}
.wsbc{word-spacing:0.702000px;}
.ws1c{word-spacing:0.726000px;}
.wse{word-spacing:0.792000px;}
.ws54{word-spacing:0.858000px;}
.ws3a{word-spacing:0.924000px;}
.ws7d{word-spacing:0.990000px;}
.wsa8{word-spacing:0.994500px;}
.ws4f{word-spacing:1.056000px;}
.ws68{word-spacing:1.122000px;}
.ws7c{word-spacing:1.134000px;}
.wsb{word-spacing:1.188000px;}
.ws14{word-spacing:1.218000px;}
.ws8{word-spacing:1.224000px;}
.ws4d{word-spacing:1.254000px;}
.ws8d{word-spacing:1.312500px;}
.wsa0{word-spacing:1.320000px;}
.ws3f{word-spacing:1.386000px;}
.ws96{word-spacing:1.417500px;}
.ws34{word-spacing:1.452000px;}
.wsb0{word-spacing:1.462500px;}
.ws67{word-spacing:1.518000px;}
.ws3d{word-spacing:1.584000px;}
.wsa7{word-spacing:1.638000px;}
.ws30{word-spacing:1.650000px;}
.ws4b{word-spacing:1.716000px;}
.wsa{word-spacing:1.764000px;}
.ws2e{word-spacing:1.782000px;}
.ws75{word-spacing:1.848000px;}
.ws65{word-spacing:1.914000px;}
.ws55{word-spacing:1.980000px;}
.wsb9{word-spacing:1.989000px;}
.ws8a{word-spacing:2.046000px;}
.ws3e{word-spacing:2.112000px;}
.wsc{word-spacing:2.124000px;}
.ws63{word-spacing:2.178000px;}
.wsbb{word-spacing:2.223000px;}
.ws38{word-spacing:2.244000px;}
.ws5a{word-spacing:2.257500px;}
.wsf{word-spacing:2.268000px;}
.ws41{word-spacing:2.310000px;}
.wsb8{word-spacing:2.340000px;}
.ws56{word-spacing:2.376000px;}
.wsb6{word-spacing:2.398500px;}
.ws94{word-spacing:2.442000px;}
.ws8f{word-spacing:2.508000px;}
.wsb4{word-spacing:2.515500px;}
.ws7{word-spacing:2.520000px;}
.ws37{word-spacing:2.574000px;}
.ws16{word-spacing:2.640000px;}
.ws64{word-spacing:2.706000px;}
.ws17{word-spacing:2.772000px;}
.ws49{word-spacing:2.838000px;}
.ws29{word-spacing:2.904000px;}
.ws5b{word-spacing:2.970000px;}
.wsa4{word-spacing:2.983500px;}
.ws4c{word-spacing:3.036000px;}
.wsa6{word-spacing:3.100500px;}
.ws2d{word-spacing:3.102000px;}
.ws1e{word-spacing:3.168000px;}
.wsa9{word-spacing:3.217500px;}
.ws1a{word-spacing:3.234000px;}
.ws12{word-spacing:3.276000px;}
.ws89{word-spacing:3.300000px;}
.ws5e{word-spacing:3.366000px;}
.ws40{word-spacing:3.432000px;}
.wsae{word-spacing:3.451500px;}
.ws98{word-spacing:3.498000px;}
.ws3b{word-spacing:3.564000px;}
.ws4e{word-spacing:3.630000px;}
.ws20{word-spacing:3.696000px;}
.wsaf{word-spacing:3.744000px;}
.ws22{word-spacing:3.762000px;}
.ws85{word-spacing:3.828000px;}
.ws76{word-spacing:3.894000px;}
.ws13{word-spacing:3.924000px;}
.ws10{word-spacing:3.960000px;}
.ws27{word-spacing:4.026000px;}
.wsb5{word-spacing:4.036500px;}
.ws2c{word-spacing:4.092000px;}
.ws8c{word-spacing:4.095000px;}
.ws19{word-spacing:4.158000px;}
.ws83{word-spacing:4.212000px;}
.ws35{word-spacing:4.224000px;}
.ws70{word-spacing:4.290000px;}
.ws90{word-spacing:4.356000px;}
.ws6f{word-spacing:4.422000px;}
.wsb1{word-spacing:4.446000px;}
.ws25{word-spacing:4.488000px;}
.ws11{word-spacing:4.500000px;}
.ws42{word-spacing:4.554000px;}
.ws8b{word-spacing:4.620000px;}
.ws1b{word-spacing:4.686000px;}
.ws31{word-spacing:4.752000px;}
.ws32{word-spacing:4.818000px;}
.ws88{word-spacing:4.884000px;}
.ws26{word-spacing:4.950000px;}
.ws45{word-spacing:5.016000px;}
.wsab{word-spacing:5.031000px;}
.ws62{word-spacing:5.082000px;}
.ws66{word-spacing:5.148000px;}
.ws58{word-spacing:5.197500px;}
.ws97{word-spacing:5.214000px;}
.ws59{word-spacing:5.250000px;}
.ws21{word-spacing:5.280000px;}
.ws99{word-spacing:5.346000px;}
.ws61{word-spacing:5.412000px;}
.ws6d{word-spacing:5.478000px;}
.ws39{word-spacing:5.544000px;}
.ws43{word-spacing:5.610000px;}
.wsb3{word-spacing:5.674500px;}
.ws52{word-spacing:5.676000px;}
.ws3c{word-spacing:5.742000px;}
.ws28{word-spacing:5.808000px;}
.ws5d{word-spacing:5.874000px;}
.ws9e{word-spacing:5.940000px;}
.ws51{word-spacing:6.006000px;}
.ws46{word-spacing:6.072000px;}
.wsba{word-spacing:6.084000px;}
.ws57{word-spacing:6.138000px;}
.ws87{word-spacing:6.204000px;}
.ws5f{word-spacing:6.270000px;}
.ws36{word-spacing:6.402000px;}
.ws73{word-spacing:6.468000px;}
.ws6c{word-spacing:6.534000px;}
.wsb7{word-spacing:6.552000px;}
.ws92{word-spacing:6.600000px;}
.wsac{word-spacing:6.610500px;}
.ws9b{word-spacing:6.666000px;}
.ws1f{word-spacing:6.732000px;}
.ws6e{word-spacing:6.798000px;}
.ws95{word-spacing:6.864000px;}
.ws50{word-spacing:6.930000px;}
.ws24{word-spacing:6.996000px;}
.ws84{word-spacing:7.062000px;}
.wsad{word-spacing:7.078500px;}
.ws9a{word-spacing:7.128000px;}
.ws71{word-spacing:7.194000px;}
.ws6b{word-spacing:7.260000px;}
.wsaa{word-spacing:7.312500px;}
.ws93{word-spacing:7.392000px;}
.ws72{word-spacing:7.458000px;}
.ws44{word-spacing:7.524000px;}
.ws4a{word-spacing:7.656000px;}
.ws9c{word-spacing:7.722000px;}
.wsa1{word-spacing:7.788000px;}
.ws9d{word-spacing:7.854000px;}
.ws18{word-spacing:7.920000px;}
.ws69{word-spacing:7.986000px;}
.ws86{word-spacing:8.052000px;}
.ws53{word-spacing:8.118000px;}
.ws60{word-spacing:8.184000px;}
.ws23{word-spacing:8.250000px;}
.ws1{word-spacing:10.656000px;}
.ws0{word-spacing:13.344000px;}
.wsa2{word-spacing:18.360000px;}
.ws7a{word-spacing:44.640000px;}
.ws78{word-spacing:91.314000px;}
.ws79{word-spacing:93.420000px;}
.ws77{word-spacing:101.628000px;}
.ws80{word-spacing:102.180000px;}
.ws7f{word-spacing:124.680000px;}
.ws7e{word-spacing:126.144000px;}
.ws81{word-spacing:158.160000px;}
._c{margin-left:-16.170000px;}
._a{margin-left:-13.134000px;}
._4{margin-left:-11.676000px;}
._b{margin-left:-9.966000px;}
._8{margin-left:-8.382000px;}
._5{margin-left:-7.062000px;}
._9{margin-left:-5.544000px;}
._7{margin-left:-2.838000px;}
._0{margin-left:-1.269000px;}
._25{width:1.082400px;}
._1{width:2.192400px;}
._26{width:6.540600px;}
._6{width:7.927200px;}
._24{width:9.288000px;}
._2{width:11.088000px;}
._3{width:12.264000px;}
._14{width:53.946000px;}
._e{width:68.640000px;}
._15{width:69.984000px;}
._19{width:76.320000px;}
._16{width:78.894000px;}
._11{width:83.160000px;}
._18{width:102.180000px;}
._17{width:111.120000px;}
._f{width:116.640000px;}
._d{width:120.150000px;}
._10{width:125.160000px;}
._12{width:133.620000px;}
._1c{width:135.162000px;}
._1b{width:138.942000px;}
._1d{width:159.300000px;}
._1a{width:162.180000px;}
._1e{width:168.210000px;}
._13{width:205.200000px;}
._23{width:280.800000px;}
._1f{width:290.820000px;}
._21{width:295.800000px;}
._20{width:305.760000px;}
._22{width:310.800000px;}
.fc1{color:rgb(227,227,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.125000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:42.900000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:52.500000px;}
.fs4{font-size:54.000000px;}
.fsd{font-size:58.500000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:63.779550px;}
.y216{bottom:114.781800px;}
.ya4{bottom:114.786225px;}
.y14d{bottom:114.791850px;}
.y170{bottom:114.797475px;}
.ycc{bottom:114.799950px;}
.y2a{bottom:114.801600px;}
.y195{bottom:114.913350px;}
.y57{bottom:115.313250px;}
.y135{bottom:115.567500px;}
.y111{bottom:115.947000px;}
.y1c9{bottom:116.256450px;}
.y273{bottom:116.298750px;}
.y18f{bottom:116.400450px;}
.y1f0{bottom:116.400600px;}
.yef{bottom:116.417100px;}
.y1ac{bottom:117.800550px;}
.y1c4{bottom:118.371900px;}
.y257{bottom:119.418750px;}
.y7d{bottom:119.432250px;}
.y234{bottom:125.409450px;}
.y29{bottom:126.803100px;}
.ya3{bottom:129.184350px;}
.y14c{bottom:129.189975px;}
.y272{bottom:132.415500px;}
.y215{bottom:133.063800px;}
.ycb{bottom:133.065450px;}
.y16f{bottom:133.133100px;}
.y56{bottom:133.314750px;}
.y134{bottom:133.569000px;}
.y110{bottom:133.948500px;}
.y18e{bottom:134.401950px;}
.y1ef{bottom:134.402100px;}
.yee{bottom:134.418600px;}
.y1ab{bottom:135.802050px;}
.y256{bottom:137.420250px;}
.y7c{bottom:137.433750px;}
.y1b1{bottom:142.617150px;}
.y28{bottom:143.051550px;}
.y233{bottom:143.410950px;}
.ya2{bottom:143.582475px;}
.y14b{bottom:147.525600px;}
.y271{bottom:148.532250px;}
.y55{bottom:151.316250px;}
.yca{bottom:151.330950px;}
.y214{bottom:151.345800px;}
.y133{bottom:151.570500px;}
.y10f{bottom:151.950000px;}
.y18d{bottom:152.403450px;}
.y1ee{bottom:152.403600px;}
.yed{bottom:152.420100px;}
.y1aa{bottom:153.803550px;}
.y255{bottom:155.421750px;}
.y7b{bottom:155.435250px;}
.y27{bottom:157.174050px;}
.y1c0{bottom:161.412450px;}
.ya1{bottom:161.918100px;}
.y270{bottom:164.649000px;}
.y54{bottom:169.317750px;}
.y132{bottom:169.572000px;}
.yc9{bottom:169.596450px;}
.y213{bottom:169.627800px;}
.y10e{bottom:169.951500px;}
.y18c{bottom:170.404950px;}
.y1ed{bottom:170.405100px;}
.y1a9{bottom:171.805050px;}
.y254{bottom:173.423250px;}
.y26{bottom:173.428050px;}
.y7a{bottom:173.436750px;}
.y16e{bottom:179.408100px;}
.y1bf{bottom:179.413950px;}
.yec{bottom:179.414100px;}
.y26f{bottom:180.765750px;}
.y25{bottom:185.429550px;}
.y53{bottom:187.319250px;}
.yc8{bottom:187.861950px;}
.y212{bottom:187.909800px;}
.y10d{bottom:187.953000px;}
.y18b{bottom:188.406450px;}
.y1ec{bottom:188.406600px;}
.y1a8{bottom:189.806550px;}
.y253{bottom:191.424750px;}
.y79{bottom:191.438250px;}
.y131{bottom:196.566000px;}
.y26e{bottom:196.882500px;}
.y16d{bottom:197.409600px;}
.y1be{bottom:197.415450px;}
.yeb{bottom:197.415600px;}
.y24{bottom:201.683550px;}
.y52{bottom:205.320750px;}
.y10c{bottom:205.954500px;}
.yc7{bottom:206.127450px;}
.y211{bottom:206.191800px;}
.y18a{bottom:206.407950px;}
.y1eb{bottom:206.408100px;}
.y14a{bottom:206.421600px;}
.y1a7{bottom:207.808050px;}
.y252{bottom:209.426250px;}
.y26d{bottom:212.999250px;}
.y23{bottom:213.685050px;}
.y130{bottom:214.567500px;}
.y16c{bottom:215.411100px;}
.y1bd{bottom:215.416950px;}
.ya0{bottom:215.421600px;}
.y78{bottom:218.432250px;}
.y51{bottom:223.322250px;}
.y10b{bottom:223.956000px;}
.yc6{bottom:224.392950px;}
.y189{bottom:224.409450px;}
.y1ea{bottom:224.409600px;}
.y149{bottom:224.423100px;}
.y210{bottom:224.473800px;}
.y1a6{bottom:225.809550px;}
.y251{bottom:227.427750px;}
.y26c{bottom:229.116000px;}
.y12f{bottom:232.569000px;}
.y16b{bottom:233.412600px;}
.y1bc{bottom:233.418450px;}
.yea{bottom:233.418600px;}
.y9f{bottom:233.423100px;}
.y77{bottom:236.433750px;}
.y188{bottom:242.410950px;}
.y1e9{bottom:242.411100px;}
.y148{bottom:242.424600px;}
.y1d2{bottom:242.658450px;}
.y20f{bottom:242.755800px;}
.y1a5{bottom:243.811050px;}
.y26b{bottom:245.232750px;}
.y50{bottom:250.316250px;}
.y12e{bottom:250.570500px;}
.y16a{bottom:251.414100px;}
.y1bb{bottom:251.419950px;}
.ye9{bottom:251.420100px;}
.y9e{bottom:251.424600px;}
.yc5{bottom:251.667450px;}
.y250{bottom:254.421750px;}
.y76{bottom:254.435250px;}
.y187{bottom:260.412450px;}
.y1e8{bottom:260.412600px;}
.y147{bottom:260.426100px;}
.y1d1{bottom:260.923950px;}
.y20e{bottom:261.037800px;}
.y26a{bottom:261.349500px;}
.y1a4{bottom:261.812550px;}
.y22{bottom:267.904200px;}
.y4f{bottom:268.317750px;}
.y12d{bottom:268.572000px;}
.y230{bottom:269.405100px;}
.y169{bottom:269.415600px;}
.y232{bottom:269.421450px;}
.ye8{bottom:269.421600px;}
.y9d{bottom:269.426100px;}
.yc4{bottom:269.932950px;}
.y10a{bottom:272.220300px;}
.y24f{bottom:272.423250px;}
.y75{bottom:272.436750px;}
.y269{bottom:277.466250px;}
.y186{bottom:278.413950px;}
.y1e7{bottom:278.414100px;}
.y146{bottom:278.427600px;}
.y1d0{bottom:279.189450px;}
.y20d{bottom:279.319800px;}
.y21{bottom:282.655200px;}
.y4e{bottom:286.319250px;}
.y12c{bottom:286.573500px;}
.y22f{bottom:287.406600px;}
.y168{bottom:287.417100px;}
.y231{bottom:287.422950px;}
.ye7{bottom:287.423100px;}
.y9c{bottom:287.427600px;}
.yc3{bottom:288.198450px;}
.y109{bottom:288.204300px;}
.y1a3{bottom:288.806550px;}
.y24e{bottom:290.424750px;}
.y74{bottom:290.438250px;}
.y20{bottom:293.158200px;}
.y268{bottom:293.583000px;}
.y185{bottom:296.415450px;}
.y1e6{bottom:296.415600px;}
.y145{bottom:296.429100px;}
.y20c{bottom:297.601800px;}
.y1f{bottom:303.661200px;}
.y4d{bottom:304.320750px;}
.y12b{bottom:304.575000px;}
.y22e{bottom:305.408100px;}
.y167{bottom:305.418600px;}
.ye6{bottom:305.424600px;}
.y9b{bottom:305.429100px;}
.yc2{bottom:306.463950px;}
.y24d{bottom:308.426250px;}
.y73{bottom:308.439750px;}
.y267{bottom:309.699750px;}
.y1e{bottom:314.164200px;}
.y184{bottom:314.416950px;}
.y1e5{bottom:314.417100px;}
.y144{bottom:314.430600px;}
.y108{bottom:315.057900px;}
.y20b{bottom:315.883800px;}
.y4c{bottom:322.322250px;}
.y12a{bottom:322.576500px;}
.y22d{bottom:323.409600px;}
.y166{bottom:323.420100px;}
.ye5{bottom:323.426100px;}
.y1d{bottom:324.667200px;}
.yc1{bottom:324.729450px;}
.y1a2{bottom:324.809550px;}
.y266{bottom:325.816500px;}
.y24c{bottom:326.427750px;}
.y72{bottom:326.441250px;}
.y183{bottom:332.418450px;}
.y1e4{bottom:332.418600px;}
.y9a{bottom:332.423100px;}
.y143{bottom:332.432100px;}
.y107{bottom:334.437900px;}
.y1c{bottom:335.170200px;}
.y4b{bottom:340.323750px;}
.y129{bottom:340.578000px;}
.y22c{bottom:341.411100px;}
.y165{bottom:341.421600px;}
.ye4{bottom:341.427600px;}
.y265{bottom:341.933250px;}
.y1a1{bottom:342.811050px;}
.yc0{bottom:342.994950px;}
.y24b{bottom:344.429250px;}
.y71{bottom:344.442750px;}
.y1ba{bottom:350.419950px;}
.y1e3{bottom:350.420100px;}
.y99{bottom:350.424600px;}
.y142{bottom:350.433600px;}
.y20a{bottom:352.170750px;}
.y1b{bottom:352.426200px;}
.y106{bottom:353.817900px;}
.y264{bottom:358.050000px;}
.y4a{bottom:358.325250px;}
.y128{bottom:358.579500px;}
.y182{bottom:359.412450px;}
.y22b{bottom:359.412600px;}
.y164{bottom:359.423100px;}
.ye3{bottom:359.429100px;}
.y1a0{bottom:360.812550px;}
.ybf{bottom:361.260450px;}
.y24a{bottom:362.430750px;}
.y1b9{bottom:368.421450px;}
.y1e2{bottom:368.421600px;}
.y98{bottom:368.426100px;}
.y141{bottom:368.435100px;}
.y105{bottom:373.197900px;}
.y209{bottom:373.446750px;}
.y263{bottom:374.166750px;}
.y49{bottom:376.326750px;}
.y127{bottom:376.581000px;}
.y181{bottom:377.413950px;}
.y22a{bottom:377.414100px;}
.y163{bottom:377.424600px;}
.ye2{bottom:377.430600px;}
.y19f{bottom:378.814050px;}
.ybe{bottom:379.525950px;}
.y1a{bottom:379.666050px;}
.y249{bottom:380.432250px;}
.y70{bottom:380.445600px;}
.y1b8{bottom:386.422950px;}
.y1e1{bottom:386.423100px;}
.y97{bottom:386.427600px;}
.y140{bottom:386.436600px;}
.y262{bottom:390.283500px;}
.y292{bottom:390.304050px;}
.y104{bottom:392.577900px;}
.y48{bottom:394.328250px;}
.y19{bottom:394.417050px;}
.y126{bottom:394.582500px;}
.y180{bottom:395.415450px;}
.y229{bottom:395.415600px;}
.ye1{bottom:395.432100px;}
.y19e{bottom:396.815550px;}
.ybd{bottom:397.791450px;}
.y162{bottom:404.418600px;}
.y1b7{bottom:404.424450px;}
.y96{bottom:404.429100px;}
.y13f{bottom:404.438100px;}
.y18{bottom:404.920050px;}
.y261{bottom:406.400250px;}
.y291{bottom:406.420800px;}
.y248{bottom:407.426250px;}
.y103{bottom:411.957900px;}
.y47{bottom:412.329750px;}
.y17f{bottom:413.416950px;}
.y1e0{bottom:413.417100px;}
.ye0{bottom:413.433600px;}
.y19d{bottom:414.817050px;}
.y17{bottom:415.423050px;}
.ybc{bottom:416.056950px;}
.y228{bottom:422.409600px;}
.y1b6{bottom:422.425950px;}
.y95{bottom:422.430600px;}
.y13e{bottom:422.439600px;}
.y260{bottom:422.517000px;}
.y290{bottom:422.537550px;}
.y247{bottom:425.427750px;}
.y16{bottom:425.926050px;}
.y46{bottom:430.331250px;}
.y17e{bottom:431.418450px;}
.y19c{bottom:432.818550px;}
.y208{bottom:433.678950px;}
.ybb{bottom:434.322450px;}
.y15{bottom:436.429050px;}
.y25f{bottom:438.633750px;}
.y28f{bottom:438.654300px;}
.y102{bottom:439.842150px;}
.y227{bottom:440.411100px;}
.y161{bottom:440.421600px;}
.y6f{bottom:440.427450px;}
.ydf{bottom:440.427600px;}
.y94{bottom:440.432100px;}
.y13d{bottom:440.441100px;}
.y246{bottom:443.429250px;}
.y1c3{bottom:443.537700px;}
.y1c8{bottom:446.378250px;}
.y14{bottom:446.932050px;}
.y100{bottom:447.037650px;}
.y125{bottom:447.978900px;}
.y45{bottom:448.332750px;}
.y17d{bottom:449.419950px;}
.y1df{bottom:449.420100px;}
.y194{bottom:449.825850px;}
.y19b{bottom:450.820050px;}
.y207{bottom:451.960950px;}
.yba{bottom:452.587950px;}
.yff{bottom:454.233150px;}
.y25e{bottom:454.750500px;}
.y28e{bottom:454.771050px;}
.y226{bottom:458.412600px;}
.y160{bottom:458.423100px;}
.y6e{bottom:458.428950px;}
.yde{bottom:458.429100px;}
.y93{bottom:458.433600px;}
.y13c{bottom:458.442600px;}
.y245{bottom:461.430750px;}
.y1c2{bottom:462.167700px;}
.y1c7{bottom:462.878250px;}
.y124{bottom:463.962900px;}
.y13{bottom:464.188050px;}
.y44{bottom:466.334250px;}
.y1b0{bottom:466.668600px;}
.y17c{bottom:467.421450px;}
.y1de{bottom:467.421600px;}
.y193{bottom:468.455850px;}
.y101{bottom:468.624150px;}
.y19a{bottom:468.821550px;}
.y206{bottom:470.242950px;}
.yb9{bottom:470.853450px;}
.y25d{bottom:470.867250px;}
.y28d{bottom:470.887800px;}
.y225{bottom:476.414100px;}
.y15f{bottom:476.424600px;}
.y6d{bottom:476.430450px;}
.ydd{bottom:476.430600px;}
.y92{bottom:476.435100px;}
.y13b{bottom:476.444100px;}
.y244{bottom:479.432250px;}
.y1cf{bottom:479.862450px;}
.y1c6{bottom:481.508250px;}
.y43{bottom:484.335750px;}
.y1af{bottom:485.298600px;}
.y1b5{bottom:485.422950px;}
.y1dd{bottom:485.423100px;}
.y199{bottom:486.823050px;}
.y25c{bottom:486.984000px;}
.y28c{bottom:487.004550px;}
.y205{bottom:488.524950px;}
.yb8{bottom:489.118950px;}
.y123{bottom:490.787700px;}
.y12{bottom:491.424900px;}
.y17b{bottom:494.415450px;}
.y224{bottom:494.415600px;}
.y15e{bottom:494.426100px;}
.y6c{bottom:494.431950px;}
.ydc{bottom:494.432100px;}
.y91{bottom:494.436600px;}
.y13a{bottom:494.445600px;}
.y243{bottom:497.433750px;}
.y1ce{bottom:498.127950px;}
.yfe{bottom:502.089300px;}
.y42{bottom:502.337250px;}
.y25b{bottom:503.100750px;}
.y28b{bottom:503.121300px;}
.y1b4{bottom:503.424450px;}
.y1dc{bottom:503.424600px;}
.y11{bottom:506.175900px;}
.y204{bottom:506.806950px;}
.yb7{bottom:507.384450px;}
.y122{bottom:508.472700px;}
.y17a{bottom:512.416950px;}
.y223{bottom:512.417100px;}
.y15d{bottom:512.427600px;}
.y6b{bottom:512.433450px;}
.ydb{bottom:512.433600px;}
.y90{bottom:512.438100px;}
.y139{bottom:512.447100px;}
.y242{bottom:515.435250px;}
.y1cd{bottom:516.393450px;}
.y10{bottom:516.678900px;}
.yfd{bottom:518.589300px;}
.y25a{bottom:519.217500px;}
.y28a{bottom:519.238050px;}
.y41{bottom:520.338750px;}
.y1b3{bottom:521.425950px;}
.y1db{bottom:521.426100px;}
.y203{bottom:525.088950px;}
.y1c5{bottom:525.496650px;}
.yb6{bottom:525.649950px;}
.y121{bottom:526.157700px;}
.yf{bottom:527.181900px;}
.y1c1{bottom:527.416050px;}
.y1ae{bottom:529.287150px;}
.y179{bottom:530.418450px;}
.y222{bottom:530.418600px;}
.y15c{bottom:530.429100px;}
.y6a{bottom:530.434950px;}
.yda{bottom:530.435100px;}
.y8f{bottom:530.439600px;}
.y198{bottom:530.832300px;}
.y241{bottom:533.436750px;}
.y1cc{bottom:534.658950px;}
.y259{bottom:535.334250px;}
.y289{bottom:535.354800px;}
.ye{bottom:537.684900px;}
.y40{bottom:538.340250px;}
.y1b2{bottom:539.427450px;}
.y1da{bottom:539.427600px;}
.y138{bottom:539.441100px;}
.y202{bottom:543.370950px;}
.y120{bottom:543.842700px;}
.yd{bottom:548.187900px;}
.y178{bottom:548.419950px;}
.y221{bottom:548.420100px;}
.y15b{bottom:548.430600px;}
.y69{bottom:548.436450px;}
.yd9{bottom:548.436600px;}
.y8e{bottom:548.441100px;}
.y240{bottom:551.438250px;}
.y288{bottom:551.471550px;}
.yb5{bottom:552.924450px;}
.y3f{bottom:556.341750px;}
.yfc{bottom:557.428950px;}
.y1d9{bottom:557.429100px;}
.y137{bottom:557.442600px;}
.yc{bottom:558.690900px;}
.y11f{bottom:561.527700px;}
.y201{bottom:561.652950px;}
.y177{bottom:566.421450px;}
.y220{bottom:566.421600px;}
.y15a{bottom:566.432100px;}
.y68{bottom:566.437950px;}
.yd8{bottom:566.438100px;}
.y8d{bottom:566.442600px;}
.y287{bottom:567.588300px;}
.yb{bottom:569.193900px;}
.y23f{bottom:569.439750px;}
.y258{bottom:569.446950px;}
.yb4{bottom:571.189950px;}
.y3e{bottom:574.343250px;}
.yfb{bottom:575.430450px;}
.y1d8{bottom:575.430600px;}
.y136{bottom:575.444100px;}
.y11e{bottom:579.212700px;}
.y200{bottom:579.934950px;}
.y286{bottom:583.705050px;}
.y176{bottom:584.422950px;}
.y21f{bottom:584.423100px;}
.y159{bottom:584.433600px;}
.y67{bottom:584.439450px;}
.yd7{bottom:584.439600px;}
.y8c{bottom:584.444100px;}
.ya{bottom:586.449900px;}
.y23e{bottom:587.441250px;}
.yb3{bottom:589.455450px;}
.y3d{bottom:592.344750px;}
.yfa{bottom:593.431950px;}
.y1d7{bottom:593.432100px;}
.y1ff{bottom:598.216950px;}
.y285{bottom:599.821800px;}
.y175{bottom:602.424450px;}
.y21e{bottom:602.424600px;}
.y158{bottom:602.435100px;}
.y66{bottom:602.440950px;}
.yd6{bottom:602.441100px;}
.y11d{bottom:607.095300px;}
.yb2{bottom:607.720950px;}
.y3c{bottom:610.346250px;}
.yf9{bottom:611.433450px;}
.y1d6{bottom:611.433600px;}
.y8b{bottom:611.438100px;}
.y23d{bottom:614.435250px;}
.y284{bottom:615.938550px;}
.y1fe{bottom:616.498950px;}
.y9{bottom:617.955750px;}
.y174{bottom:620.425950px;}
.y21d{bottom:620.426100px;}
.y157{bottom:620.436600px;}
.yd5{bottom:620.442600px;}
.yb1{bottom:625.986450px;}
.y3b{bottom:628.347750px;}
.y65{bottom:629.434950px;}
.y1d5{bottom:629.435100px;}
.y283{bottom:632.055300px;}
.y23c{bottom:632.436750px;}
.y1fd{bottom:634.780950px;}
.y173{bottom:638.427450px;}
.y21c{bottom:638.427600px;}
.y156{bottom:638.438100px;}
.yd4{bottom:638.444100px;}
.y11c{bottom:640.558350px;}
.yb0{bottom:644.251950px;}
.y8{bottom:644.955750px;}
.y3a{bottom:646.349250px;}
.y64{bottom:647.436450px;}
.y1d4{bottom:647.436600px;}
.y8a{bottom:647.441100px;}
.y282{bottom:648.172050px;}
.y23b{bottom:650.438250px;}
.y1fc{bottom:653.062950px;}
.y172{bottom:656.428950px;}
.y21b{bottom:656.429100px;}
.y155{bottom:656.439600px;}
.yd3{bottom:656.445600px;}
.y11b{bottom:657.058350px;}
.yaf{bottom:662.517450px;}
.y281{bottom:664.288800px;}
.y63{bottom:665.437950px;}
.y1d3{bottom:665.438100px;}
.y89{bottom:665.442600px;}
.y23a{bottom:668.439750px;}
.y1fb{bottom:671.344950px;}
.y39{bottom:673.343250px;}
.y171{bottom:674.430450px;}
.y21a{bottom:674.430600px;}
.y154{bottom:674.441100px;}
.y280{bottom:680.405550px;}
.yae{bottom:680.782950px;}
.y7{bottom:682.146600px;}
.y62{bottom:683.439450px;}
.yd2{bottom:683.439600px;}
.y88{bottom:683.444100px;}
.y239{bottom:686.441250px;}
.y1fa{bottom:689.626950px;}
.y38{bottom:691.344750px;}
.yf8{bottom:692.431950px;}
.y219{bottom:692.432100px;}
.y153{bottom:692.442600px;}
.y27f{bottom:696.522300px;}
.y11a{bottom:698.788350px;}
.yad{bottom:699.048450px;}
.y61{bottom:701.440950px;}
.yd1{bottom:701.441100px;}
.y87{bottom:701.445600px;}
.y6{bottom:701.640600px;}
.y238{bottom:704.442750px;}
.y1f9{bottom:707.908950px;}
.y37{bottom:709.346250px;}
.yf7{bottom:710.433450px;}
.y218{bottom:710.433600px;}
.y152{bottom:710.444100px;}
.y27e{bottom:712.639050px;}
.yac{bottom:717.313950px;}
.y119{bottom:718.168350px;}
.y60{bottom:719.442450px;}
.yd0{bottom:719.442600px;}
.y86{bottom:719.447100px;}
.y237{bottom:722.444250px;}
.y1f8{bottom:726.190950px;}
.y36{bottom:727.347750px;}
.yf6{bottom:728.434950px;}
.y217{bottom:728.435100px;}
.y151{bottom:728.445600px;}
.y27d{bottom:728.755800px;}
.yab{bottom:735.579450px;}
.y5f{bottom:737.443950px;}
.ycf{bottom:737.444100px;}
.y85{bottom:737.448600px;}
.y118{bottom:737.548350px;}
.y5{bottom:740.325450px;}
.y236{bottom:740.445750px;}
.y1f7{bottom:744.472950px;}
.y27c{bottom:744.872550px;}
.y35{bottom:745.349250px;}
.yf5{bottom:746.436450px;}
.y150{bottom:746.436600px;}
.y1cb{bottom:753.844950px;}
.y5e{bottom:755.445450px;}
.yce{bottom:755.445600px;}
.y84{bottom:755.450100px;}
.y117{bottom:756.928350px;}
.y27b{bottom:760.989300px;}
.y1f6{bottom:762.754950px;}
.yaa{bottom:762.853950px;}
.y34{bottom:763.350750px;}
.yf4{bottom:764.437950px;}
.y14f{bottom:764.438100px;}
.y4{bottom:767.325450px;}
.y1ca{bottom:772.110450px;}
.y5d{bottom:773.446950px;}
.y192{bottom:773.447100px;}
.y116{bottom:776.308350px;}
.y235{bottom:776.448600px;}
.y27a{bottom:777.106050px;}
.y1f5{bottom:781.036950px;}
.ya9{bottom:781.119450px;}
.y33{bottom:781.352250px;}
.yf3{bottom:782.439450px;}
.ycd{bottom:782.439600px;}
.y83{bottom:782.444100px;}
.y5c{bottom:791.448450px;}
.y191{bottom:791.448600px;}
.y279{bottom:793.222800px;}
.y3{bottom:794.325450px;}
.y115{bottom:795.688350px;}
.y1f4{bottom:799.318950px;}
.y32{bottom:799.353750px;}
.ya8{bottom:799.384950px;}
.yf2{bottom:800.440950px;}
.y14e{bottom:800.441100px;}
.y82{bottom:800.445600px;}
.y278{bottom:809.339550px;}
.y5b{bottom:809.449950px;}
.y190{bottom:809.450100px;}
.y31{bottom:817.355250px;}
.y1f3{bottom:817.600950px;}
.ya7{bottom:817.650450px;}
.yf1{bottom:818.442450px;}
.y81{bottom:818.442600px;}
.y2{bottom:821.325450px;}
.y114{bottom:823.570950px;}
.y277{bottom:825.456300px;}
.y5a{bottom:827.451450px;}
.y30{bottom:835.356750px;}
.y1f2{bottom:835.882950px;}
.ya6{bottom:835.915950px;}
.yf0{bottom:836.443950px;}
.y80{bottom:836.444100px;}
.y276{bottom:841.573050px;}
.y1f1{bottom:854.164950px;}
.ya5{bottom:854.181450px;}
.y59{bottom:854.445450px;}
.y7f{bottom:854.445600px;}
.y197{bottom:854.904450px;}
.y1ad{bottom:854.904600px;}
.y113{bottom:857.034600px;}
.y275{bottom:857.689800px;}
.y2f{bottom:871.359600px;}
.y58{bottom:872.446950px;}
.y7e{bottom:872.447100px;}
.y196{bottom:873.534450px;}
.y112{bottom:873.534600px;}
.y274{bottom:873.806550px;}
.y1{bottom:892.729200px;}
.y2e{bottom:909.921150px;}
.y2c{bottom:927.404100px;}
.y2b{bottom:940.904100px;}
.h11{height:29.557500px;}
.ha{height:30.276000px;}
.hc{height:30.912000px;}
.h9{height:31.068000px;}
.h2{height:35.328000px;}
.h7{height:36.456000px;}
.hb{height:38.388000px;}
.hd{height:41.424000px;}
.h12{height:45.307500px;}
.h6{height:46.602000px;}
.h1b{height:49.198500px;}
.h1a{height:50.485500px;}
.h14{height:51.780000px;}
.h15{height:52.080000px;}
.h5{height:56.958000px;}
.hf{height:56.976000px;}
.h19{height:57.000000px;}
.h18{height:57.012600px;}
.h13{height:57.024000px;}
.h10{height:57.288000px;}
.h4{height:60.552000px;}
.he{height:62.496000px;}
.h8{height:67.687500px;}
.h16{height:75.384000px;}
.h3{height:78.120000px;}
.h17{height:104.166000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:106.299300px;}
.x2{left:113.911500px;}
.x1f{left:116.811000px;}
.x15{left:120.781650px;}
.x4{left:122.281500px;}
.x11{left:127.559100px;}
.x28{left:128.799150px;}
.x3{left:130.966500px;}
.x6{left:148.885800px;}
.x12{left:151.674150px;}
.x25{left:156.232800px;}
.xe{left:166.455600px;}
.x26{left:168.157800px;}
.xf{left:172.080600px;}
.x7{left:179.791800px;}
.x22{left:184.102800px;}
.x21{left:196.524000px;}
.x24{left:198.982800px;}
.x20{left:229.905150px;}
.x23{left:240.517800px;}
.x16{left:246.682650px;}
.x5{left:262.749000px;}
.x14{left:269.550150px;}
.x9{left:278.751450px;}
.x8{left:280.939950px;}
.x27{left:283.867800px;}
.x17{left:327.088650px;}
.xd{left:330.437550px;}
.xc{left:334.133550px;}
.xa{left:335.960550px;}
.x13{left:339.180150px;}
.x18{left:393.819150px;}
.x10{left:444.217200px;}
.x1{left:445.299000px;}
.x1a{left:474.157650px;}
.x1b{left:475.170150px;}
.x19{left:481.326150px;}
.x1e{left:553.888650px;}
.x1d{left:558.829650px;}
.x1c{left:564.040650px;}
@media print{
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.616000pt;}
.v3{vertical-align:25.584000pt;}
.v4{vertical-align:51.168000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.880000pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.528000pt;}
.ls28{letter-spacing:-0.520000pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls18{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.293333pt;}
.lsf{letter-spacing:-0.117333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012267pt;}
.ls1b{letter-spacing:0.029333pt;}
.ls2b{letter-spacing:0.052000pt;}
.lsd{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.104000pt;}
.ls9{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.176000pt;}
.ls10{letter-spacing:0.205333pt;}
.lsa{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.293333pt;}
.ls20{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.410667pt;}
.ls29{letter-spacing:0.416000pt;}
.ls1a{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.522667pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.598000pt;}
.ls21{letter-spacing:0.645333pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.821333pt;}
.ls1f{letter-spacing:0.880000pt;}
.ls25{letter-spacing:1.026667pt;}
.ls24{letter-spacing:1.114667pt;}
.ls0{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.349333pt;}
.ls23{letter-spacing:1.525333pt;}
.ls15{letter-spacing:1.760000pt;}
.ls22{letter-spacing:6.336000pt;}
.ls4{letter-spacing:8.880000pt;}
.ls2{letter-spacing:18.944000pt;}
.ls8{letter-spacing:85.268267pt;}
.ls7{letter-spacing:149.267733pt;}
.lsc{letter-spacing:656.350933pt;}
.ws33{word-spacing:-10.666667pt;}
.ws47{word-spacing:-9.533333pt;}
.ws48{word-spacing:-7.583333pt;}
.ws82{word-spacing:-4.426667pt;}
.ws3{word-spacing:-1.120000pt;}
.ws9f{word-spacing:-0.880000pt;}
.ws2{word-spacing:-0.560000pt;}
.ws5{word-spacing:-0.522667pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.032000pt;}
.wsa5{word-spacing:0.052000pt;}
.ws8e{word-spacing:0.058667pt;}
.wsa3{word-spacing:0.104000pt;}
.ws1d{word-spacing:0.117333pt;}
.ws2b{word-spacing:0.176000pt;}
.ws91{word-spacing:0.234667pt;}
.ws6{word-spacing:0.256000pt;}
.ws5c{word-spacing:0.293333pt;}
.wsb2{word-spacing:0.312000pt;}
.ws9{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.352000pt;}
.ws7b{word-spacing:0.410667pt;}
.ws6a{word-spacing:0.469333pt;}
.ws2f{word-spacing:0.528000pt;}
.ws15{word-spacing:0.560000pt;}
.ws74{word-spacing:0.586667pt;}
.wsbc{word-spacing:0.624000pt;}
.ws1c{word-spacing:0.645333pt;}
.wse{word-spacing:0.704000pt;}
.ws54{word-spacing:0.762667pt;}
.ws3a{word-spacing:0.821333pt;}
.ws7d{word-spacing:0.880000pt;}
.wsa8{word-spacing:0.884000pt;}
.ws4f{word-spacing:0.938667pt;}
.ws68{word-spacing:0.997333pt;}
.ws7c{word-spacing:1.008000pt;}
.wsb{word-spacing:1.056000pt;}
.ws14{word-spacing:1.082667pt;}
.ws8{word-spacing:1.088000pt;}
.ws4d{word-spacing:1.114667pt;}
.ws8d{word-spacing:1.166667pt;}
.wsa0{word-spacing:1.173333pt;}
.ws3f{word-spacing:1.232000pt;}
.ws96{word-spacing:1.260000pt;}
.ws34{word-spacing:1.290667pt;}
.wsb0{word-spacing:1.300000pt;}
.ws67{word-spacing:1.349333pt;}
.ws3d{word-spacing:1.408000pt;}
.wsa7{word-spacing:1.456000pt;}
.ws30{word-spacing:1.466667pt;}
.ws4b{word-spacing:1.525333pt;}
.wsa{word-spacing:1.568000pt;}
.ws2e{word-spacing:1.584000pt;}
.ws75{word-spacing:1.642667pt;}
.ws65{word-spacing:1.701333pt;}
.ws55{word-spacing:1.760000pt;}
.wsb9{word-spacing:1.768000pt;}
.ws8a{word-spacing:1.818667pt;}
.ws3e{word-spacing:1.877333pt;}
.wsc{word-spacing:1.888000pt;}
.ws63{word-spacing:1.936000pt;}
.wsbb{word-spacing:1.976000pt;}
.ws38{word-spacing:1.994667pt;}
.ws5a{word-spacing:2.006667pt;}
.wsf{word-spacing:2.016000pt;}
.ws41{word-spacing:2.053333pt;}
.wsb8{word-spacing:2.080000pt;}
.ws56{word-spacing:2.112000pt;}
.wsb6{word-spacing:2.132000pt;}
.ws94{word-spacing:2.170667pt;}
.ws8f{word-spacing:2.229333pt;}
.wsb4{word-spacing:2.236000pt;}
.ws7{word-spacing:2.240000pt;}
.ws37{word-spacing:2.288000pt;}
.ws16{word-spacing:2.346667pt;}
.ws64{word-spacing:2.405333pt;}
.ws17{word-spacing:2.464000pt;}
.ws49{word-spacing:2.522667pt;}
.ws29{word-spacing:2.581333pt;}
.ws5b{word-spacing:2.640000pt;}
.wsa4{word-spacing:2.652000pt;}
.ws4c{word-spacing:2.698667pt;}
.wsa6{word-spacing:2.756000pt;}
.ws2d{word-spacing:2.757333pt;}
.ws1e{word-spacing:2.816000pt;}
.wsa9{word-spacing:2.860000pt;}
.ws1a{word-spacing:2.874667pt;}
.ws12{word-spacing:2.912000pt;}
.ws89{word-spacing:2.933333pt;}
.ws5e{word-spacing:2.992000pt;}
.ws40{word-spacing:3.050667pt;}
.wsae{word-spacing:3.068000pt;}
.ws98{word-spacing:3.109333pt;}
.ws3b{word-spacing:3.168000pt;}
.ws4e{word-spacing:3.226667pt;}
.ws20{word-spacing:3.285333pt;}
.wsaf{word-spacing:3.328000pt;}
.ws22{word-spacing:3.344000pt;}
.ws85{word-spacing:3.402667pt;}
.ws76{word-spacing:3.461333pt;}
.ws13{word-spacing:3.488000pt;}
.ws10{word-spacing:3.520000pt;}
.ws27{word-spacing:3.578667pt;}
.wsb5{word-spacing:3.588000pt;}
.ws2c{word-spacing:3.637333pt;}
.ws8c{word-spacing:3.640000pt;}
.ws19{word-spacing:3.696000pt;}
.ws83{word-spacing:3.744000pt;}
.ws35{word-spacing:3.754667pt;}
.ws70{word-spacing:3.813333pt;}
.ws90{word-spacing:3.872000pt;}
.ws6f{word-spacing:3.930667pt;}
.wsb1{word-spacing:3.952000pt;}
.ws25{word-spacing:3.989333pt;}
.ws11{word-spacing:4.000000pt;}
.ws42{word-spacing:4.048000pt;}
.ws8b{word-spacing:4.106667pt;}
.ws1b{word-spacing:4.165333pt;}
.ws31{word-spacing:4.224000pt;}
.ws32{word-spacing:4.282667pt;}
.ws88{word-spacing:4.341333pt;}
.ws26{word-spacing:4.400000pt;}
.ws45{word-spacing:4.458667pt;}
.wsab{word-spacing:4.472000pt;}
.ws62{word-spacing:4.517333pt;}
.ws66{word-spacing:4.576000pt;}
.ws58{word-spacing:4.620000pt;}
.ws97{word-spacing:4.634667pt;}
.ws59{word-spacing:4.666667pt;}
.ws21{word-spacing:4.693333pt;}
.ws99{word-spacing:4.752000pt;}
.ws61{word-spacing:4.810667pt;}
.ws6d{word-spacing:4.869333pt;}
.ws39{word-spacing:4.928000pt;}
.ws43{word-spacing:4.986667pt;}
.wsb3{word-spacing:5.044000pt;}
.ws52{word-spacing:5.045333pt;}
.ws3c{word-spacing:5.104000pt;}
.ws28{word-spacing:5.162667pt;}
.ws5d{word-spacing:5.221333pt;}
.ws9e{word-spacing:5.280000pt;}
.ws51{word-spacing:5.338667pt;}
.ws46{word-spacing:5.397333pt;}
.wsba{word-spacing:5.408000pt;}
.ws57{word-spacing:5.456000pt;}
.ws87{word-spacing:5.514667pt;}
.ws5f{word-spacing:5.573333pt;}
.ws36{word-spacing:5.690667pt;}
.ws73{word-spacing:5.749333pt;}
.ws6c{word-spacing:5.808000pt;}
.wsb7{word-spacing:5.824000pt;}
.ws92{word-spacing:5.866667pt;}
.wsac{word-spacing:5.876000pt;}
.ws9b{word-spacing:5.925333pt;}
.ws1f{word-spacing:5.984000pt;}
.ws6e{word-spacing:6.042667pt;}
.ws95{word-spacing:6.101333pt;}
.ws50{word-spacing:6.160000pt;}
.ws24{word-spacing:6.218667pt;}
.ws84{word-spacing:6.277333pt;}
.wsad{word-spacing:6.292000pt;}
.ws9a{word-spacing:6.336000pt;}
.ws71{word-spacing:6.394667pt;}
.ws6b{word-spacing:6.453333pt;}
.wsaa{word-spacing:6.500000pt;}
.ws93{word-spacing:6.570667pt;}
.ws72{word-spacing:6.629333pt;}
.ws44{word-spacing:6.688000pt;}
.ws4a{word-spacing:6.805333pt;}
.ws9c{word-spacing:6.864000pt;}
.wsa1{word-spacing:6.922667pt;}
.ws9d{word-spacing:6.981333pt;}
.ws18{word-spacing:7.040000pt;}
.ws69{word-spacing:7.098667pt;}
.ws86{word-spacing:7.157333pt;}
.ws53{word-spacing:7.216000pt;}
.ws60{word-spacing:7.274667pt;}
.ws23{word-spacing:7.333333pt;}
.ws1{word-spacing:9.472000pt;}
.ws0{word-spacing:11.861333pt;}
.wsa2{word-spacing:16.320000pt;}
.ws7a{word-spacing:39.680000pt;}
.ws78{word-spacing:81.168000pt;}
.ws79{word-spacing:83.040000pt;}
.ws77{word-spacing:90.336000pt;}
.ws80{word-spacing:90.826667pt;}
.ws7f{word-spacing:110.826667pt;}
.ws7e{word-spacing:112.128000pt;}
.ws81{word-spacing:140.586667pt;}
._c{margin-left:-14.373333pt;}
._a{margin-left:-11.674667pt;}
._4{margin-left:-10.378667pt;}
._b{margin-left:-8.858667pt;}
._8{margin-left:-7.450667pt;}
._5{margin-left:-6.277333pt;}
._9{margin-left:-4.928000pt;}
._7{margin-left:-2.522667pt;}
._0{margin-left:-1.128000pt;}
._25{width:0.962133pt;}
._1{width:1.948800pt;}
._26{width:5.813867pt;}
._6{width:7.046400pt;}
._24{width:8.256000pt;}
._2{width:9.856000pt;}
._3{width:10.901333pt;}
._14{width:47.952000pt;}
._e{width:61.013333pt;}
._15{width:62.208000pt;}
._19{width:67.840000pt;}
._16{width:70.128000pt;}
._11{width:73.920000pt;}
._18{width:90.826667pt;}
._17{width:98.773333pt;}
._f{width:103.680000pt;}
._d{width:106.800000pt;}
._10{width:111.253333pt;}
._12{width:118.773333pt;}
._1c{width:120.144000pt;}
._1b{width:123.504000pt;}
._1d{width:141.600000pt;}
._1a{width:144.160000pt;}
._1e{width:149.520000pt;}
._13{width:182.400000pt;}
._23{width:249.600000pt;}
._1f{width:258.506667pt;}
._21{width:262.933333pt;}
._20{width:271.786667pt;}
._22{width:276.266667pt;}
.fsb{font-size:30.333333pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:38.133333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:46.666667pt;}
.fs4{font-size:48.000000pt;}
.fsd{font-size:52.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:56.692933pt;}
.y216{bottom:102.028267pt;}
.ya4{bottom:102.032200pt;}
.y14d{bottom:102.037200pt;}
.y170{bottom:102.042200pt;}
.ycc{bottom:102.044400pt;}
.y2a{bottom:102.045867pt;}
.y195{bottom:102.145200pt;}
.y57{bottom:102.500667pt;}
.y135{bottom:102.726667pt;}
.y111{bottom:103.064000pt;}
.y1c9{bottom:103.339067pt;}
.y273{bottom:103.376667pt;}
.y18f{bottom:103.467067pt;}
.y1f0{bottom:103.467200pt;}
.yef{bottom:103.481867pt;}
.y1ac{bottom:104.711600pt;}
.y1c4{bottom:105.219467pt;}
.y257{bottom:106.150000pt;}
.y7d{bottom:106.162000pt;}
.y234{bottom:111.475067pt;}
.y29{bottom:112.713867pt;}
.ya3{bottom:114.830533pt;}
.y14c{bottom:114.835533pt;}
.y272{bottom:117.702667pt;}
.y215{bottom:118.278933pt;}
.ycb{bottom:118.280400pt;}
.y16f{bottom:118.340533pt;}
.y56{bottom:118.502000pt;}
.y134{bottom:118.728000pt;}
.y110{bottom:119.065333pt;}
.y18e{bottom:119.468400pt;}
.y1ef{bottom:119.468533pt;}
.yee{bottom:119.483200pt;}
.y1ab{bottom:120.712933pt;}
.y256{bottom:122.151333pt;}
.y7c{bottom:122.163333pt;}
.y1b1{bottom:126.770800pt;}
.y28{bottom:127.156933pt;}
.y233{bottom:127.476400pt;}
.ya2{bottom:127.628867pt;}
.y14b{bottom:131.133867pt;}
.y271{bottom:132.028667pt;}
.y55{bottom:134.503333pt;}
.yca{bottom:134.516400pt;}
.y214{bottom:134.529600pt;}
.y133{bottom:134.729333pt;}
.y10f{bottom:135.066667pt;}
.y18d{bottom:135.469733pt;}
.y1ee{bottom:135.469867pt;}
.yed{bottom:135.484533pt;}
.y1aa{bottom:136.714267pt;}
.y255{bottom:138.152667pt;}
.y7b{bottom:138.164667pt;}
.y27{bottom:139.710267pt;}
.y1c0{bottom:143.477733pt;}
.ya1{bottom:143.927200pt;}
.y270{bottom:146.354667pt;}
.y54{bottom:150.504667pt;}
.y132{bottom:150.730667pt;}
.yc9{bottom:150.752400pt;}
.y213{bottom:150.780267pt;}
.y10e{bottom:151.068000pt;}
.y18c{bottom:151.471067pt;}
.y1ed{bottom:151.471200pt;}
.y1a9{bottom:152.715600pt;}
.y254{bottom:154.154000pt;}
.y26{bottom:154.158267pt;}
.y7a{bottom:154.166000pt;}
.y16e{bottom:159.473867pt;}
.y1bf{bottom:159.479067pt;}
.yec{bottom:159.479200pt;}
.y26f{bottom:160.680667pt;}
.y25{bottom:164.826267pt;}
.y53{bottom:166.506000pt;}
.yc8{bottom:166.988400pt;}
.y212{bottom:167.030933pt;}
.y10d{bottom:167.069333pt;}
.y18b{bottom:167.472400pt;}
.y1ec{bottom:167.472533pt;}
.y1a8{bottom:168.716933pt;}
.y253{bottom:170.155333pt;}
.y79{bottom:170.167333pt;}
.y131{bottom:174.725333pt;}
.y26e{bottom:175.006667pt;}
.y16d{bottom:175.475200pt;}
.y1be{bottom:175.480400pt;}
.yeb{bottom:175.480533pt;}
.y24{bottom:179.274267pt;}
.y52{bottom:182.507333pt;}
.y10c{bottom:183.070667pt;}
.yc7{bottom:183.224400pt;}
.y211{bottom:183.281600pt;}
.y18a{bottom:183.473733pt;}
.y1eb{bottom:183.473867pt;}
.y14a{bottom:183.485867pt;}
.y1a7{bottom:184.718267pt;}
.y252{bottom:186.156667pt;}
.y26d{bottom:189.332667pt;}
.y23{bottom:189.942267pt;}
.y130{bottom:190.726667pt;}
.y16c{bottom:191.476533pt;}
.y1bd{bottom:191.481733pt;}
.ya0{bottom:191.485867pt;}
.y78{bottom:194.162000pt;}
.y51{bottom:198.508667pt;}
.y10b{bottom:199.072000pt;}
.yc6{bottom:199.460400pt;}
.y189{bottom:199.475067pt;}
.y1ea{bottom:199.475200pt;}
.y149{bottom:199.487200pt;}
.y210{bottom:199.532267pt;}
.y1a6{bottom:200.719600pt;}
.y251{bottom:202.158000pt;}
.y26c{bottom:203.658667pt;}
.y12f{bottom:206.728000pt;}
.y16b{bottom:207.477867pt;}
.y1bc{bottom:207.483067pt;}
.yea{bottom:207.483200pt;}
.y9f{bottom:207.487200pt;}
.y77{bottom:210.163333pt;}
.y188{bottom:215.476400pt;}
.y1e9{bottom:215.476533pt;}
.y148{bottom:215.488533pt;}
.y1d2{bottom:215.696400pt;}
.y20f{bottom:215.782933pt;}
.y1a5{bottom:216.720933pt;}
.y26b{bottom:217.984667pt;}
.y50{bottom:222.503333pt;}
.y12e{bottom:222.729333pt;}
.y16a{bottom:223.479200pt;}
.y1bb{bottom:223.484400pt;}
.ye9{bottom:223.484533pt;}
.y9e{bottom:223.488533pt;}
.yc5{bottom:223.704400pt;}
.y250{bottom:226.152667pt;}
.y76{bottom:226.164667pt;}
.y187{bottom:231.477733pt;}
.y1e8{bottom:231.477867pt;}
.y147{bottom:231.489867pt;}
.y1d1{bottom:231.932400pt;}
.y20e{bottom:232.033600pt;}
.y26a{bottom:232.310667pt;}
.y1a4{bottom:232.722267pt;}
.y22{bottom:238.137067pt;}
.y4f{bottom:238.504667pt;}
.y12d{bottom:238.730667pt;}
.y230{bottom:239.471200pt;}
.y169{bottom:239.480533pt;}
.y232{bottom:239.485733pt;}
.ye8{bottom:239.485867pt;}
.y9d{bottom:239.489867pt;}
.yc4{bottom:239.940400pt;}
.y10a{bottom:241.973600pt;}
.y24f{bottom:242.154000pt;}
.y75{bottom:242.166000pt;}
.y269{bottom:246.636667pt;}
.y186{bottom:247.479067pt;}
.y1e7{bottom:247.479200pt;}
.y146{bottom:247.491200pt;}
.y1d0{bottom:248.168400pt;}
.y20d{bottom:248.284267pt;}
.y21{bottom:251.249067pt;}
.y4e{bottom:254.506000pt;}
.y12c{bottom:254.732000pt;}
.y22f{bottom:255.472533pt;}
.y168{bottom:255.481867pt;}
.y231{bottom:255.487067pt;}
.ye7{bottom:255.487200pt;}
.y9c{bottom:255.491200pt;}
.yc3{bottom:256.176400pt;}
.y109{bottom:256.181600pt;}
.y1a3{bottom:256.716933pt;}
.y24e{bottom:258.155333pt;}
.y74{bottom:258.167333pt;}
.y20{bottom:260.585067pt;}
.y268{bottom:260.962667pt;}
.y185{bottom:263.480400pt;}
.y1e6{bottom:263.480533pt;}
.y145{bottom:263.492533pt;}
.y20c{bottom:264.534933pt;}
.y1f{bottom:269.921067pt;}
.y4d{bottom:270.507333pt;}
.y12b{bottom:270.733333pt;}
.y22e{bottom:271.473867pt;}
.y167{bottom:271.483200pt;}
.ye6{bottom:271.488533pt;}
.y9b{bottom:271.492533pt;}
.yc2{bottom:272.412400pt;}
.y24d{bottom:274.156667pt;}
.y73{bottom:274.168667pt;}
.y267{bottom:275.288667pt;}
.y1e{bottom:279.257067pt;}
.y184{bottom:279.481733pt;}
.y1e5{bottom:279.481867pt;}
.y144{bottom:279.493867pt;}
.y108{bottom:280.051467pt;}
.y20b{bottom:280.785600pt;}
.y4c{bottom:286.508667pt;}
.y12a{bottom:286.734667pt;}
.y22d{bottom:287.475200pt;}
.y166{bottom:287.484533pt;}
.ye5{bottom:287.489867pt;}
.y1d{bottom:288.593067pt;}
.yc1{bottom:288.648400pt;}
.y1a2{bottom:288.719600pt;}
.y266{bottom:289.614667pt;}
.y24c{bottom:290.158000pt;}
.y72{bottom:290.170000pt;}
.y183{bottom:295.483067pt;}
.y1e4{bottom:295.483200pt;}
.y9a{bottom:295.487200pt;}
.y143{bottom:295.495200pt;}
.y107{bottom:297.278133pt;}
.y1c{bottom:297.929067pt;}
.y4b{bottom:302.510000pt;}
.y129{bottom:302.736000pt;}
.y22c{bottom:303.476533pt;}
.y165{bottom:303.485867pt;}
.ye4{bottom:303.491200pt;}
.y265{bottom:303.940667pt;}
.y1a1{bottom:304.720933pt;}
.yc0{bottom:304.884400pt;}
.y24b{bottom:306.159333pt;}
.y71{bottom:306.171333pt;}
.y1ba{bottom:311.484400pt;}
.y1e3{bottom:311.484533pt;}
.y99{bottom:311.488533pt;}
.y142{bottom:311.496533pt;}
.y20a{bottom:313.040667pt;}
.y1b{bottom:313.267733pt;}
.y106{bottom:314.504800pt;}
.y264{bottom:318.266667pt;}
.y4a{bottom:318.511333pt;}
.y128{bottom:318.737333pt;}
.y182{bottom:319.477733pt;}
.y22b{bottom:319.477867pt;}
.y164{bottom:319.487200pt;}
.ye3{bottom:319.492533pt;}
.y1a0{bottom:320.722267pt;}
.ybf{bottom:321.120400pt;}
.y24a{bottom:322.160667pt;}
.y1b9{bottom:327.485733pt;}
.y1e2{bottom:327.485867pt;}
.y98{bottom:327.489867pt;}
.y141{bottom:327.497867pt;}
.y105{bottom:331.731467pt;}
.y209{bottom:331.952667pt;}
.y263{bottom:332.592667pt;}
.y49{bottom:334.512667pt;}
.y127{bottom:334.738667pt;}
.y181{bottom:335.479067pt;}
.y22a{bottom:335.479200pt;}
.y163{bottom:335.488533pt;}
.ye2{bottom:335.493867pt;}
.y19f{bottom:336.723600pt;}
.ybe{bottom:337.356400pt;}
.y1a{bottom:337.480933pt;}
.y249{bottom:338.162000pt;}
.y70{bottom:338.173867pt;}
.y1b8{bottom:343.487067pt;}
.y1e1{bottom:343.487200pt;}
.y97{bottom:343.491200pt;}
.y140{bottom:343.499200pt;}
.y262{bottom:346.918667pt;}
.y292{bottom:346.936933pt;}
.y104{bottom:348.958133pt;}
.y48{bottom:350.514000pt;}
.y19{bottom:350.592933pt;}
.y126{bottom:350.740000pt;}
.y180{bottom:351.480400pt;}
.y229{bottom:351.480533pt;}
.ye1{bottom:351.495200pt;}
.y19e{bottom:352.724933pt;}
.ybd{bottom:353.592400pt;}
.y162{bottom:359.483200pt;}
.y1b7{bottom:359.488400pt;}
.y96{bottom:359.492533pt;}
.y13f{bottom:359.500533pt;}
.y18{bottom:359.928933pt;}
.y261{bottom:361.244667pt;}
.y291{bottom:361.262933pt;}
.y248{bottom:362.156667pt;}
.y103{bottom:366.184800pt;}
.y47{bottom:366.515333pt;}
.y17f{bottom:367.481733pt;}
.y1e0{bottom:367.481867pt;}
.ye0{bottom:367.496533pt;}
.y19d{bottom:368.726267pt;}
.y17{bottom:369.264933pt;}
.ybc{bottom:369.828400pt;}
.y228{bottom:375.475200pt;}
.y1b6{bottom:375.489733pt;}
.y95{bottom:375.493867pt;}
.y13e{bottom:375.501867pt;}
.y260{bottom:375.570667pt;}
.y290{bottom:375.588933pt;}
.y247{bottom:378.158000pt;}
.y16{bottom:378.600933pt;}
.y46{bottom:382.516667pt;}
.y17e{bottom:383.483067pt;}
.y19c{bottom:384.727600pt;}
.y208{bottom:385.492400pt;}
.ybb{bottom:386.064400pt;}
.y15{bottom:387.936933pt;}
.y25f{bottom:389.896667pt;}
.y28f{bottom:389.914933pt;}
.y102{bottom:390.970800pt;}
.y227{bottom:391.476533pt;}
.y161{bottom:391.485867pt;}
.y6f{bottom:391.491067pt;}
.ydf{bottom:391.491200pt;}
.y94{bottom:391.495200pt;}
.y13d{bottom:391.503200pt;}
.y246{bottom:394.159333pt;}
.y1c3{bottom:394.255733pt;}
.y1c8{bottom:396.780667pt;}
.y14{bottom:397.272933pt;}
.y100{bottom:397.366800pt;}
.y125{bottom:398.203467pt;}
.y45{bottom:398.518000pt;}
.y17d{bottom:399.484400pt;}
.y1df{bottom:399.484533pt;}
.y194{bottom:399.845200pt;}
.y19b{bottom:400.728933pt;}
.y207{bottom:401.743067pt;}
.yba{bottom:402.300400pt;}
.yff{bottom:403.762800pt;}
.y25e{bottom:404.222667pt;}
.y28e{bottom:404.240933pt;}
.y226{bottom:407.477867pt;}
.y160{bottom:407.487200pt;}
.y6e{bottom:407.492400pt;}
.yde{bottom:407.492533pt;}
.y93{bottom:407.496533pt;}
.y13c{bottom:407.504533pt;}
.y245{bottom:410.160667pt;}
.y1c2{bottom:410.815733pt;}
.y1c7{bottom:411.447333pt;}
.y124{bottom:412.411467pt;}
.y13{bottom:412.611600pt;}
.y44{bottom:414.519333pt;}
.y1b0{bottom:414.816533pt;}
.y17c{bottom:415.485733pt;}
.y1de{bottom:415.485867pt;}
.y193{bottom:416.405200pt;}
.y101{bottom:416.554800pt;}
.y19a{bottom:416.730267pt;}
.y206{bottom:417.993733pt;}
.yb9{bottom:418.536400pt;}
.y25d{bottom:418.548667pt;}
.y28d{bottom:418.566933pt;}
.y225{bottom:423.479200pt;}
.y15f{bottom:423.488533pt;}
.y6d{bottom:423.493733pt;}
.ydd{bottom:423.493867pt;}
.y92{bottom:423.497867pt;}
.y13b{bottom:423.505867pt;}
.y244{bottom:426.162000pt;}
.y1cf{bottom:426.544400pt;}
.y1c6{bottom:428.007333pt;}
.y43{bottom:430.520667pt;}
.y1af{bottom:431.376533pt;}
.y1b5{bottom:431.487067pt;}
.y1dd{bottom:431.487200pt;}
.y199{bottom:432.731600pt;}
.y25c{bottom:432.874667pt;}
.y28c{bottom:432.892933pt;}
.y205{bottom:434.244400pt;}
.yb8{bottom:434.772400pt;}
.y123{bottom:436.255733pt;}
.y12{bottom:436.822133pt;}
.y17b{bottom:439.480400pt;}
.y224{bottom:439.480533pt;}
.y15e{bottom:439.489867pt;}
.y6c{bottom:439.495067pt;}
.ydc{bottom:439.495200pt;}
.y91{bottom:439.499200pt;}
.y13a{bottom:439.507200pt;}
.y243{bottom:442.163333pt;}
.y1ce{bottom:442.780400pt;}
.yfe{bottom:446.301600pt;}
.y42{bottom:446.522000pt;}
.y25b{bottom:447.200667pt;}
.y28b{bottom:447.218933pt;}
.y1b4{bottom:447.488400pt;}
.y1dc{bottom:447.488533pt;}
.y11{bottom:449.934133pt;}
.y204{bottom:450.495067pt;}
.yb7{bottom:451.008400pt;}
.y122{bottom:451.975733pt;}
.y17a{bottom:455.481733pt;}
.y223{bottom:455.481867pt;}
.y15d{bottom:455.491200pt;}
.y6b{bottom:455.496400pt;}
.ydb{bottom:455.496533pt;}
.y90{bottom:455.500533pt;}
.y139{bottom:455.508533pt;}
.y242{bottom:458.164667pt;}
.y1cd{bottom:459.016400pt;}
.y10{bottom:459.270133pt;}
.yfd{bottom:460.968267pt;}
.y25a{bottom:461.526667pt;}
.y28a{bottom:461.544933pt;}
.y41{bottom:462.523333pt;}
.y1b3{bottom:463.489733pt;}
.y1db{bottom:463.489867pt;}
.y203{bottom:466.745733pt;}
.y1c5{bottom:467.108133pt;}
.yb6{bottom:467.244400pt;}
.y121{bottom:467.695733pt;}
.yf{bottom:468.606133pt;}
.y1c1{bottom:468.814267pt;}
.y1ae{bottom:470.477467pt;}
.y179{bottom:471.483067pt;}
.y222{bottom:471.483200pt;}
.y15c{bottom:471.492533pt;}
.y6a{bottom:471.497733pt;}
.yda{bottom:471.497867pt;}
.y8f{bottom:471.501867pt;}
.y198{bottom:471.850933pt;}
.y241{bottom:474.166000pt;}
.y1cc{bottom:475.252400pt;}
.y259{bottom:475.852667pt;}
.y289{bottom:475.870933pt;}
.ye{bottom:477.942133pt;}
.y40{bottom:478.524667pt;}
.y1b2{bottom:479.491067pt;}
.y1da{bottom:479.491200pt;}
.y138{bottom:479.503200pt;}
.y202{bottom:482.996400pt;}
.y120{bottom:483.415733pt;}
.yd{bottom:487.278133pt;}
.y178{bottom:487.484400pt;}
.y221{bottom:487.484533pt;}
.y15b{bottom:487.493867pt;}
.y69{bottom:487.499067pt;}
.yd9{bottom:487.499200pt;}
.y8e{bottom:487.503200pt;}
.y240{bottom:490.167333pt;}
.y288{bottom:490.196933pt;}
.yb5{bottom:491.488400pt;}
.y3f{bottom:494.526000pt;}
.yfc{bottom:495.492400pt;}
.y1d9{bottom:495.492533pt;}
.y137{bottom:495.504533pt;}
.yc{bottom:496.614133pt;}
.y11f{bottom:499.135733pt;}
.y201{bottom:499.247067pt;}
.y177{bottom:503.485733pt;}
.y220{bottom:503.485867pt;}
.y15a{bottom:503.495200pt;}
.y68{bottom:503.500400pt;}
.yd8{bottom:503.500533pt;}
.y8d{bottom:503.504533pt;}
.y287{bottom:504.522933pt;}
.yb{bottom:505.950133pt;}
.y23f{bottom:506.168667pt;}
.y258{bottom:506.175067pt;}
.yb4{bottom:507.724400pt;}
.y3e{bottom:510.527333pt;}
.yfb{bottom:511.493733pt;}
.y1d8{bottom:511.493867pt;}
.y136{bottom:511.505867pt;}
.y11e{bottom:514.855733pt;}
.y200{bottom:515.497733pt;}
.y286{bottom:518.848933pt;}
.y176{bottom:519.487067pt;}
.y21f{bottom:519.487200pt;}
.y159{bottom:519.496533pt;}
.y67{bottom:519.501733pt;}
.yd7{bottom:519.501867pt;}
.y8c{bottom:519.505867pt;}
.ya{bottom:521.288800pt;}
.y23e{bottom:522.170000pt;}
.yb3{bottom:523.960400pt;}
.y3d{bottom:526.528667pt;}
.yfa{bottom:527.495067pt;}
.y1d7{bottom:527.495200pt;}
.y1ff{bottom:531.748400pt;}
.y285{bottom:533.174933pt;}
.y175{bottom:535.488400pt;}
.y21e{bottom:535.488533pt;}
.y158{bottom:535.497867pt;}
.y66{bottom:535.503067pt;}
.yd6{bottom:535.503200pt;}
.y11d{bottom:539.640267pt;}
.yb2{bottom:540.196400pt;}
.y3c{bottom:542.530000pt;}
.yf9{bottom:543.496400pt;}
.y1d6{bottom:543.496533pt;}
.y8b{bottom:543.500533pt;}
.y23d{bottom:546.164667pt;}
.y284{bottom:547.500933pt;}
.y1fe{bottom:547.999067pt;}
.y9{bottom:549.294000pt;}
.y174{bottom:551.489733pt;}
.y21d{bottom:551.489867pt;}
.y157{bottom:551.499200pt;}
.yd5{bottom:551.504533pt;}
.yb1{bottom:556.432400pt;}
.y3b{bottom:558.531333pt;}
.y65{bottom:559.497733pt;}
.y1d5{bottom:559.497867pt;}
.y283{bottom:561.826933pt;}
.y23c{bottom:562.166000pt;}
.y1fd{bottom:564.249733pt;}
.y173{bottom:567.491067pt;}
.y21c{bottom:567.491200pt;}
.y156{bottom:567.500533pt;}
.yd4{bottom:567.505867pt;}
.y11c{bottom:569.385200pt;}
.yb0{bottom:572.668400pt;}
.y8{bottom:573.294000pt;}
.y3a{bottom:574.532667pt;}
.y64{bottom:575.499067pt;}
.y1d4{bottom:575.499200pt;}
.y8a{bottom:575.503200pt;}
.y282{bottom:576.152933pt;}
.y23b{bottom:578.167333pt;}
.y1fc{bottom:580.500400pt;}
.y172{bottom:583.492400pt;}
.y21b{bottom:583.492533pt;}
.y155{bottom:583.501867pt;}
.yd3{bottom:583.507200pt;}
.y11b{bottom:584.051867pt;}
.yaf{bottom:588.904400pt;}
.y281{bottom:590.478933pt;}
.y63{bottom:591.500400pt;}
.y1d3{bottom:591.500533pt;}
.y89{bottom:591.504533pt;}
.y23a{bottom:594.168667pt;}
.y1fb{bottom:596.751067pt;}
.y39{bottom:598.527333pt;}
.y171{bottom:599.493733pt;}
.y21a{bottom:599.493867pt;}
.y154{bottom:599.503200pt;}
.y280{bottom:604.804933pt;}
.yae{bottom:605.140400pt;}
.y7{bottom:606.352533pt;}
.y62{bottom:607.501733pt;}
.yd2{bottom:607.501867pt;}
.y88{bottom:607.505867pt;}
.y239{bottom:610.170000pt;}
.y1fa{bottom:613.001733pt;}
.y38{bottom:614.528667pt;}
.yf8{bottom:615.495067pt;}
.y219{bottom:615.495200pt;}
.y153{bottom:615.504533pt;}
.y27f{bottom:619.130933pt;}
.y11a{bottom:621.145200pt;}
.yad{bottom:621.376400pt;}
.y61{bottom:623.503067pt;}
.yd1{bottom:623.503200pt;}
.y87{bottom:623.507200pt;}
.y6{bottom:623.680533pt;}
.y238{bottom:626.171333pt;}
.y1f9{bottom:629.252400pt;}
.y37{bottom:630.530000pt;}
.yf7{bottom:631.496400pt;}
.y218{bottom:631.496533pt;}
.y152{bottom:631.505867pt;}
.y27e{bottom:633.456933pt;}
.yac{bottom:637.612400pt;}
.y119{bottom:638.371867pt;}
.y60{bottom:639.504400pt;}
.yd0{bottom:639.504533pt;}
.y86{bottom:639.508533pt;}
.y237{bottom:642.172667pt;}
.y1f8{bottom:645.503067pt;}
.y36{bottom:646.531333pt;}
.yf6{bottom:647.497733pt;}
.y217{bottom:647.497867pt;}
.y151{bottom:647.507200pt;}
.y27d{bottom:647.782933pt;}
.yab{bottom:653.848400pt;}
.y5f{bottom:655.505733pt;}
.ycf{bottom:655.505867pt;}
.y85{bottom:655.509867pt;}
.y118{bottom:655.598533pt;}
.y5{bottom:658.067067pt;}
.y236{bottom:658.174000pt;}
.y1f7{bottom:661.753733pt;}
.y27c{bottom:662.108933pt;}
.y35{bottom:662.532667pt;}
.yf5{bottom:663.499067pt;}
.y150{bottom:663.499200pt;}
.y1cb{bottom:670.084400pt;}
.y5e{bottom:671.507067pt;}
.yce{bottom:671.507200pt;}
.y84{bottom:671.511200pt;}
.y117{bottom:672.825200pt;}
.y27b{bottom:676.434933pt;}
.y1f6{bottom:678.004400pt;}
.yaa{bottom:678.092400pt;}
.y34{bottom:678.534000pt;}
.yf4{bottom:679.500400pt;}
.y14f{bottom:679.500533pt;}
.y4{bottom:682.067067pt;}
.y1ca{bottom:686.320400pt;}
.y5d{bottom:687.508400pt;}
.y192{bottom:687.508533pt;}
.y116{bottom:690.051867pt;}
.y235{bottom:690.176533pt;}
.y27a{bottom:690.760933pt;}
.y1f5{bottom:694.255067pt;}
.ya9{bottom:694.328400pt;}
.y33{bottom:694.535333pt;}
.yf3{bottom:695.501733pt;}
.ycd{bottom:695.501867pt;}
.y83{bottom:695.505867pt;}
.y5c{bottom:703.509733pt;}
.y191{bottom:703.509867pt;}
.y279{bottom:705.086933pt;}
.y3{bottom:706.067067pt;}
.y115{bottom:707.278533pt;}
.y1f4{bottom:710.505733pt;}
.y32{bottom:710.536667pt;}
.ya8{bottom:710.564400pt;}
.yf2{bottom:711.503067pt;}
.y14e{bottom:711.503200pt;}
.y82{bottom:711.507200pt;}
.y278{bottom:719.412933pt;}
.y5b{bottom:719.511067pt;}
.y190{bottom:719.511200pt;}
.y31{bottom:726.538000pt;}
.y1f3{bottom:726.756400pt;}
.ya7{bottom:726.800400pt;}
.yf1{bottom:727.504400pt;}
.y81{bottom:727.504533pt;}
.y2{bottom:730.067067pt;}
.y114{bottom:732.063067pt;}
.y277{bottom:733.738933pt;}
.y5a{bottom:735.512400pt;}
.y30{bottom:742.539333pt;}
.y1f2{bottom:743.007067pt;}
.ya6{bottom:743.036400pt;}
.yf0{bottom:743.505733pt;}
.y80{bottom:743.505867pt;}
.y276{bottom:748.064933pt;}
.y1f1{bottom:759.257733pt;}
.ya5{bottom:759.272400pt;}
.y59{bottom:759.507067pt;}
.y7f{bottom:759.507200pt;}
.y197{bottom:759.915067pt;}
.y1ad{bottom:759.915200pt;}
.y113{bottom:761.808533pt;}
.y275{bottom:762.390933pt;}
.y2f{bottom:774.541867pt;}
.y58{bottom:775.508400pt;}
.y7e{bottom:775.508533pt;}
.y196{bottom:776.475067pt;}
.y112{bottom:776.475200pt;}
.y274{bottom:776.716933pt;}
.y1{bottom:793.537067pt;}
.y2e{bottom:808.818800pt;}
.y2c{bottom:824.359200pt;}
.y2b{bottom:836.359200pt;}
.h11{height:26.273333pt;}
.ha{height:26.912000pt;}
.hc{height:27.477333pt;}
.h9{height:27.616000pt;}
.h2{height:31.402667pt;}
.h7{height:32.405333pt;}
.hb{height:34.122667pt;}
.hd{height:36.821333pt;}
.h12{height:40.273333pt;}
.h6{height:41.424000pt;}
.h1b{height:43.732000pt;}
.h1a{height:44.876000pt;}
.h14{height:46.026667pt;}
.h15{height:46.293333pt;}
.h5{height:50.629333pt;}
.hf{height:50.645333pt;}
.h19{height:50.666667pt;}
.h18{height:50.677867pt;}
.h13{height:50.688000pt;}
.h10{height:50.922667pt;}
.h4{height:53.824000pt;}
.he{height:55.552000pt;}
.h8{height:60.166667pt;}
.h16{height:67.008000pt;}
.h3{height:69.440000pt;}
.h17{height:92.592000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:94.488267pt;}
.x2{left:101.254667pt;}
.x1f{left:103.832000pt;}
.x15{left:107.361467pt;}
.x4{left:108.694667pt;}
.x11{left:113.385867pt;}
.x28{left:114.488133pt;}
.x3{left:116.414667pt;}
.x6{left:132.342933pt;}
.x12{left:134.821467pt;}
.x25{left:138.873600pt;}
.xe{left:147.960533pt;}
.x26{left:149.473600pt;}
.xf{left:152.960533pt;}
.x7{left:159.814933pt;}
.x22{left:163.646933pt;}
.x21{left:174.688000pt;}
.x24{left:176.873600pt;}
.x20{left:204.360133pt;}
.x23{left:213.793600pt;}
.x16{left:219.273467pt;}
.x5{left:233.554667pt;}
.x14{left:239.600133pt;}
.x9{left:247.779067pt;}
.x8{left:249.724400pt;}
.x27{left:252.326933pt;}
.x17{left:290.745467pt;}
.xd{left:293.722267pt;}
.xc{left:297.007600pt;}
.xa{left:298.631600pt;}
.x13{left:301.493467pt;}
.x18{left:350.061467pt;}
.x10{left:394.859733pt;}
.x1{left:395.821333pt;}
.x1a{left:421.473467pt;}
.x1b{left:422.373467pt;}
.x19{left:427.845467pt;}
.x1e{left:492.345467pt;}
.x1d{left:496.737467pt;}
.x1c{left:501.369467pt;}
}




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