
    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_304f84067ed5b1f0efa301ee.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_df22d704b9c3fac8321227c2.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_aec078ab09b2f6a7b2c14880.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e5bff099e392544a3b623d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_11a7a772be4aa1e6080c9aa6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_df22d704b9c3fac8321227c2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c42dd6a5c54b6b511476d911.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_10c150ba5bd28557ba2ad686.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aa394c0c4fd4e776d604f508.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_336d4a5bcc0929bbdc4b16e8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b1812a7b70fcf2e762e4c1ff.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c8a0ba3f398c0164cd563879.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b4becdc45e88902e182aa1bb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ba59c08944e1b59aa567e5ae.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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.800000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.630000px;}
.ls2c{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.525000px;}
.ls9{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.180000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.013800px;}
.ls21{letter-spacing:0.033000px;}
.ls32{letter-spacing:0.058500px;}
.ls1a{letter-spacing:0.066000px;}
.ls2a{letter-spacing:0.099000px;}
.ls20{letter-spacing:0.132000px;}
.ls26{letter-spacing:0.134700px;}
.ls25{letter-spacing:0.165000px;}
.ls33{letter-spacing:0.175500px;}
.ls1b{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.210000px;}
.ls1d{letter-spacing:0.264000px;}
.ls22{letter-spacing:0.330000px;}
.ls34{letter-spacing:0.351000px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.396000px;}
.ls2d{letter-spacing:0.462000px;}
.ls29{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.588000px;}
.ls24{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.660000px;}
.ls30{letter-spacing:0.726000px;}
.ls17{letter-spacing:0.759000px;}
.ls31{letter-spacing:0.760500px;}
.ls23{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.858000px;}
.ls2f{letter-spacing:0.924000px;}
.ls35{letter-spacing:0.936000px;}
.ls13{letter-spacing:0.990000px;}
.ls36{letter-spacing:1.053000px;}
.ls19{letter-spacing:1.188000px;}
.ls11{letter-spacing:1.221000px;}
.ls2{letter-spacing:1.260000px;}
.ls18{letter-spacing:1.287000px;}
.ls2e{letter-spacing:1.518000px;}
.ls28{letter-spacing:1.732500px;}
.ls0{letter-spacing:9.990000px;}
.ls2b{letter-spacing:13.650000px;}
.ls6{letter-spacing:20.352000px;}
.ls4{letter-spacing:21.312000px;}
.ls5{letter-spacing:22.272000px;}
.ls15{letter-spacing:113.608800px;}
.ls14{letter-spacing:161.608800px;}
.ls10{letter-spacing:781.798200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-60.000000px;}
.wsb8{word-spacing:-18.000000px;}
.ws94{word-spacing:-16.500000px;}
.ws18{word-spacing:-12.000000px;}
.ws76{word-spacing:-10.725000px;}
.ws77{word-spacing:-8.531250px;}
.wscf{word-spacing:-1.053000px;}
.wsb7{word-spacing:-0.924000px;}
.wsa5{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.630000px;}
.ws9{word-spacing:-0.588000px;}
.wsbd{word-spacing:-0.175500px;}
.ws6{word-spacing:0.000000px;}
.wsbf{word-spacing:0.058500px;}
.ws1e{word-spacing:0.066000px;}
.wsbe{word-spacing:0.117000px;}
.ws2f{word-spacing:0.132000px;}
.ws81{word-spacing:0.157500px;}
.ws28{word-spacing:0.198000px;}
.ws22{word-spacing:0.264000px;}
.ws96{word-spacing:0.330000px;}
.ws2d{word-spacing:0.396000px;}
.ws4{word-spacing:0.420000px;}
.ws50{word-spacing:0.462000px;}
.ws99{word-spacing:0.525000px;}
.ws43{word-spacing:0.528000px;}
.ws9d{word-spacing:0.577500px;}
.ws71{word-spacing:0.594000px;}
.ws12{word-spacing:0.612000px;}
.ws7{word-spacing:0.630000px;}
.ws73{word-spacing:0.660000px;}
.wsa7{word-spacing:0.726000px;}
.wsad{word-spacing:0.792000px;}
.wsb{word-spacing:0.828000px;}
.ws4b{word-spacing:0.858000px;}
.wsa{word-spacing:0.864000px;}
.wsc{word-spacing:0.900000px;}
.ws31{word-spacing:0.924000px;}
.ws30{word-spacing:0.990000px;}
.wsf{word-spacing:1.008000px;}
.ws5{word-spacing:1.050000px;}
.ws6d{word-spacing:1.056000px;}
.ws16{word-spacing:1.080000px;}
.wsc0{word-spacing:1.111500px;}
.ws74{word-spacing:1.122000px;}
.ws11{word-spacing:1.188000px;}
.ws92{word-spacing:1.207500px;}
.ws5a{word-spacing:1.254000px;}
.ws8a{word-spacing:1.260000px;}
.ws98{word-spacing:1.312500px;}
.ws41{word-spacing:1.320000px;}
.wsd{word-spacing:1.332000px;}
.wsc7{word-spacing:1.345500px;}
.ws4f{word-spacing:1.386000px;}
.ws72{word-spacing:1.452000px;}
.wscc{word-spacing:1.462500px;}
.ws13{word-spacing:1.476000px;}
.ws10{word-spacing:1.512000px;}
.ws7a{word-spacing:1.518000px;}
.ws7b{word-spacing:1.584000px;}
.ws2c{word-spacing:1.650000px;}
.ws82{word-spacing:1.680000px;}
.ws5e{word-spacing:1.716000px;}
.ws17{word-spacing:1.764000px;}
.ws7c{word-spacing:1.782000px;}
.ws90{word-spacing:1.785000px;}
.wse{word-spacing:1.800000px;}
.ws1b{word-spacing:1.848000px;}
.ws54{word-spacing:1.914000px;}
.ws9c{word-spacing:1.942500px;}
.wsa8{word-spacing:1.980000px;}
.ws67{word-spacing:2.046000px;}
.ws89{word-spacing:2.047500px;}
.ws45{word-spacing:2.112000px;}
.ws15{word-spacing:2.124000px;}
.wsc1{word-spacing:2.164500px;}
.ws49{word-spacing:2.178000px;}
.ws1f{word-spacing:2.244000px;}
.ws88{word-spacing:2.257500px;}
.ws21{word-spacing:2.310000px;}
.wsc2{word-spacing:2.340000px;}
.ws91{word-spacing:2.362500px;}
.ws46{word-spacing:2.376000px;}
.ws4d{word-spacing:2.442000px;}
.ws85{word-spacing:2.467500px;}
.ws40{word-spacing:2.508000px;}
.ws8e{word-spacing:2.572500px;}
.ws29{word-spacing:2.574000px;}
.wsc4{word-spacing:2.632500px;}
.ws44{word-spacing:2.640000px;}
.wscb{word-spacing:2.691000px;}
.ws55{word-spacing:2.706000px;}
.ws93{word-spacing:2.730000px;}
.wsc6{word-spacing:2.749500px;}
.ws3e{word-spacing:2.772000px;}
.ws8d{word-spacing:2.782500px;}
.ws58{word-spacing:2.838000px;}
.ws87{word-spacing:2.887500px;}
.ws6b{word-spacing:2.904000px;}
.ws48{word-spacing:2.970000px;}
.ws84{word-spacing:2.992500px;}
.wsb0{word-spacing:3.036000px;}
.wsa4{word-spacing:3.102000px;}
.ws2e{word-spacing:3.168000px;}
.ws47{word-spacing:3.234000px;}
.ws32{word-spacing:3.300000px;}
.ws8b{word-spacing:3.360000px;}
.ws6a{word-spacing:3.366000px;}
.wsc5{word-spacing:3.393000px;}
.ws8c{word-spacing:3.412500px;}
.wsa6{word-spacing:3.432000px;}
.ws14{word-spacing:3.492000px;}
.ws42{word-spacing:3.498000px;}
.ws4c{word-spacing:3.564000px;}
.wsc9{word-spacing:3.568500px;}
.ws59{word-spacing:3.630000px;}
.wsa1{word-spacing:3.696000px;}
.ws56{word-spacing:3.762000px;}
.ws23{word-spacing:3.828000px;}
.wsbc{word-spacing:3.861000px;}
.ws3{word-spacing:3.864000px;}
.ws78{word-spacing:3.894000px;}
.ws37{word-spacing:3.960000px;}
.ws83{word-spacing:3.990000px;}
.wsa9{word-spacing:4.026000px;}
.ws1a{word-spacing:4.092000px;}
.wsac{word-spacing:4.095000px;}
.wsca{word-spacing:4.153500px;}
.ws53{word-spacing:4.158000px;}
.ws26{word-spacing:4.224000px;}
.ws97{word-spacing:4.290000px;}
.wsbb{word-spacing:4.329000px;}
.ws33{word-spacing:4.356000px;}
.ws86{word-spacing:4.410000px;}
.wsb1{word-spacing:4.422000px;}
.wsb2{word-spacing:4.488000px;}
.ws9b{word-spacing:4.515000px;}
.ws70{word-spacing:4.554000px;}
.ws69{word-spacing:4.620000px;}
.ws7e{word-spacing:4.672500px;}
.wsc8{word-spacing:4.680000px;}
.wsa2{word-spacing:4.686000px;}
.ws5d{word-spacing:4.752000px;}
.ws9f{word-spacing:4.818000px;}
.ws5f{word-spacing:4.884000px;}
.ws66{word-spacing:4.950000px;}
.ws60{word-spacing:5.016000px;}
.ws35{word-spacing:5.082000px;}
.ws8f{word-spacing:5.145000px;}
.ws25{word-spacing:5.148000px;}
.ws6c{word-spacing:5.214000px;}
.wsa0{word-spacing:5.280000px;}
.wsc3{word-spacing:5.323500px;}
.ws65{word-spacing:5.346000px;}
.ws5c{word-spacing:5.412000px;}
.ws39{word-spacing:5.478000px;}
.ws36{word-spacing:5.544000px;}
.ws38{word-spacing:5.610000px;}
.wsce{word-spacing:5.616000px;}
.wsaa{word-spacing:5.676000px;}
.ws80{word-spacing:5.722500px;}
.ws5b{word-spacing:5.742000px;}
.ws3a{word-spacing:5.808000px;}
.ws62{word-spacing:5.874000px;}
.ws7f{word-spacing:5.932500px;}
.ws3b{word-spacing:5.940000px;}
.ws2a{word-spacing:6.006000px;}
.ws6f{word-spacing:6.072000px;}
.ws24{word-spacing:6.138000px;}
.ws75{word-spacing:6.204000px;}
.wsba{word-spacing:6.259500px;}
.ws1c{word-spacing:6.336000px;}
.ws95{word-spacing:6.402000px;}
.ws52{word-spacing:6.468000px;}
.ws61{word-spacing:6.534000px;}
.ws9a{word-spacing:6.562500px;}
.ws4e{word-spacing:6.600000px;}
.wsaf{word-spacing:6.666000px;}
.ws63{word-spacing:6.732000px;}
.wscd{word-spacing:6.786000px;}
.ws20{word-spacing:6.798000px;}
.ws68{word-spacing:6.864000px;}
.wsab{word-spacing:6.930000px;}
.ws6e{word-spacing:6.996000px;}
.wsb5{word-spacing:7.062000px;}
.wsb4{word-spacing:7.128000px;}
.ws51{word-spacing:7.194000px;}
.ws34{word-spacing:7.260000px;}
.wsb9{word-spacing:7.312500px;}
.wsa3{word-spacing:7.326000px;}
.ws3f{word-spacing:7.392000px;}
.ws3d{word-spacing:7.458000px;}
.wsb6{word-spacing:7.524000px;}
.ws3c{word-spacing:7.590000px;}
.ws2b{word-spacing:7.656000px;}
.ws4a{word-spacing:7.722000px;}
.wsb3{word-spacing:7.788000px;}
.ws79{word-spacing:7.854000px;}
.ws9e{word-spacing:7.920000px;}
.ws64{word-spacing:7.986000px;}
.wsae{word-spacing:8.052000px;}
.ws1d{word-spacing:8.118000px;}
.ws57{word-spacing:8.184000px;}
.ws27{word-spacing:8.250000px;}
.ws2{word-spacing:10.656000px;}
.ws7d{word-spacing:13.125000px;}
.ws1{word-spacing:13.344000px;}
.ws19{word-spacing:18.360000px;}
._8{margin-left:-16.560000px;}
._4{margin-left:-11.676000px;}
._2{margin-left:-9.366000px;}
._c{margin-left:-2.508000px;}
._5{margin-left:-1.260000px;}
._6{width:1.161000px;}
._a{width:2.534400px;}
._1{width:3.754800px;}
._b{width:6.811200px;}
._0{width:7.812000px;}
._d{width:9.108000px;}
._9{width:10.237200px;}
._3{width:11.676000px;}
._7{width:18.360000px;}
.fc1{color:rgb(227,227,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.125000px;}
.fsa{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:42.900000px;}
.fs2{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:52.500000px;}
.fs7{font-size:54.000000px;}
.fsd{font-size:58.500000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs9{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:63.779550px;}
.ya4{bottom:114.664500px;}
.y123{bottom:114.769500px;}
.y187{bottom:114.791850px;}
.y233{bottom:114.799950px;}
.ycc{bottom:114.800100px;}
.y9{bottom:114.801600px;}
.y1c6{bottom:115.047450px;}
.y19e{bottom:115.047600px;}
.y57{bottom:115.329750px;}
.y20b{bottom:116.416950px;}
.yef{bottom:116.417100px;}
.y1e3{bottom:116.426250px;}
.y13f{bottom:118.740750px;}
.y26a{bottom:123.416850px;}
.y8{bottom:126.803100px;}
.y122{bottom:129.167625px;}
.y186{bottom:129.189975px;}
.y232{bottom:133.065450px;}
.ycb{bottom:133.065600px;}
.ya3{bottom:133.078500px;}
.y13e{bottom:133.133250px;}
.y1c5{bottom:133.312950px;}
.y19d{bottom:133.313100px;}
.y56{bottom:133.331250px;}
.y20a{bottom:134.418450px;}
.yee{bottom:134.418600px;}
.y1e2{bottom:134.427750px;}
.y269{bottom:139.533600px;}
.y7{bottom:143.051550px;}
.y121{bottom:143.565750px;}
.y13d{bottom:147.525600px;}
.y15e{bottom:147.525750px;}
.y231{bottom:151.330950px;}
.yca{bottom:151.331100px;}
.ya2{bottom:151.492500px;}
.y1c4{bottom:151.578450px;}
.y19c{bottom:151.578600px;}
.y209{bottom:152.419950px;}
.yed{bottom:152.420100px;}
.y268{bottom:155.650350px;}
.y6{bottom:157.174050px;}
.y120{bottom:157.963875px;}
.y55{bottom:160.325250px;}
.y20c{bottom:161.412600px;}
.y1e1{bottom:161.421750px;}
.y15d{bottom:161.918250px;}
.y230{bottom:169.596450px;}
.yc9{bottom:169.596600px;}
.y19b{bottom:169.844100px;}
.y7e{bottom:170.405100px;}
.y208{bottom:170.421450px;}
.y247{bottom:170.421600px;}
.y267{bottom:171.767100px;}
.y11f{bottom:172.362000px;}
.y5{bottom:173.428050px;}
.y15c{bottom:176.310750px;}
.y54{bottom:178.326750px;}
.y1c3{bottom:178.852950px;}
.ya1{bottom:178.899000px;}
.yec{bottom:179.414100px;}
.y1e0{bottom:179.423250px;}
.y4{bottom:185.429550px;}
.y11e{bottom:186.760125px;}
.y22f{bottom:187.861950px;}
.yc8{bottom:187.862100px;}
.y266{bottom:187.883850px;}
.y7d{bottom:188.406600px;}
.y207{bottom:188.422950px;}
.y246{bottom:188.423100px;}
.y185{bottom:188.430600px;}
.y15b{bottom:190.703250px;}
.y53{bottom:196.328250px;}
.y1c2{bottom:197.118450px;}
.y19a{bottom:197.118600px;}
.ya0{bottom:197.313000px;}
.yeb{bottom:197.415600px;}
.y1df{bottom:197.424750px;}
.y13c{bottom:197.439900px;}
.y3{bottom:201.683550px;}
.y265{bottom:204.000600px;}
.y11d{bottom:205.095750px;}
.yc7{bottom:206.127600px;}
.y7c{bottom:206.408100px;}
.y206{bottom:206.424450px;}
.y245{bottom:206.424600px;}
.y184{bottom:206.432100px;}
.y2{bottom:213.685050px;}
.y52{bottom:214.329750px;}
.y22e{bottom:215.136450px;}
.y1c1{bottom:215.383950px;}
.y199{bottom:215.384100px;}
.yea{bottom:215.417100px;}
.y1de{bottom:215.426250px;}
.y13b{bottom:215.441400px;}
.y11c{bottom:215.488875px;}
.y139{bottom:215.528250px;}
.y9f{bottom:215.727000px;}
.y264{bottom:220.117350px;}
.yc6{bottom:224.393100px;}
.y7b{bottom:224.409600px;}
.y244{bottom:224.426100px;}
.y11b{bottom:229.887000px;}
.y138{bottom:229.926375px;}
.y51{bottom:232.331250px;}
.y22d{bottom:233.401950px;}
.y205{bottom:233.418450px;}
.ye9{bottom:233.418600px;}
.y183{bottom:233.426100px;}
.y1dd{bottom:233.427750px;}
.y15a{bottom:233.429250px;}
.y1c0{bottom:233.649450px;}
.y198{bottom:233.649600px;}
.y2d{bottom:233.852625px;}
.y9e{bottom:234.141000px;}
.y263{bottom:236.234100px;}
.y7a{bottom:242.411100px;}
.y243{bottom:242.427600px;}
.y167{bottom:242.658600px;}
.y11a{bottom:244.285125px;}
.y137{bottom:244.324500px;}
.y50{bottom:250.332750px;}
.y204{bottom:251.419950px;}
.ye8{bottom:251.420100px;}
.y182{bottom:251.427600px;}
.y1dc{bottom:251.429250px;}
.y159{bottom:251.430750px;}
.y22c{bottom:251.667450px;}
.yc5{bottom:251.667600px;}
.y1bf{bottom:251.914950px;}
.y197{bottom:251.915100px;}
.y2c{bottom:252.188250px;}
.y262{bottom:252.350850px;}
.y9d{bottom:252.555000px;}
.y119{bottom:258.683250px;}
.y136{bottom:258.722625px;}
.y79{bottom:260.412600px;}
.y242{bottom:260.429100px;}
.y166{bottom:260.924100px;}
.y4f{bottom:268.334250px;}
.y261{bottom:268.467600px;}
.y203{bottom:269.421450px;}
.ye7{bottom:269.421600px;}
.y181{bottom:269.429100px;}
.y1db{bottom:269.430750px;}
.y158{bottom:269.432250px;}
.y22b{bottom:269.932950px;}
.yc4{bottom:269.933100px;}
.y1be{bottom:270.180450px;}
.y196{bottom:270.180600px;}
.y9c{bottom:270.969000px;}
.y118{bottom:273.081375px;}
.y135{bottom:277.058250px;}
.y78{bottom:278.414100px;}
.y241{bottom:278.430600px;}
.y165{bottom:279.189600px;}
.y260{bottom:284.584350px;}
.y4e{bottom:286.335750px;}
.y202{bottom:287.422950px;}
.ye6{bottom:287.423100px;}
.y180{bottom:287.430600px;}
.y1da{bottom:287.432250px;}
.y157{bottom:287.433750px;}
.y117{bottom:287.479500px;}
.y22a{bottom:288.198450px;}
.yc3{bottom:288.198600px;}
.y1bd{bottom:288.445950px;}
.y195{bottom:288.446100px;}
.y9b{bottom:289.383000px;}
.y2b{bottom:291.262200px;}
.y77{bottom:296.415600px;}
.y240{bottom:296.432100px;}
.y164{bottom:297.455100px;}
.y25f{bottom:300.701100px;}
.y116{bottom:301.877625px;}
.y4d{bottom:304.337250px;}
.y201{bottom:305.424450px;}
.ye5{bottom:305.424600px;}
.y17f{bottom:305.432100px;}
.y1d9{bottom:305.433750px;}
.y156{bottom:305.435250px;}
.y2a{bottom:306.013200px;}
.y229{bottom:306.463950px;}
.yc2{bottom:306.464100px;}
.y1bc{bottom:306.711450px;}
.y194{bottom:306.711600px;}
.y9a{bottom:307.797000px;}
.y76{bottom:314.417100px;}
.y115{bottom:316.275750px;}
.y29{bottom:316.516200px;}
.y25e{bottom:316.817850px;}
.y4c{bottom:322.338750px;}
.y200{bottom:323.425950px;}
.ye4{bottom:323.426100px;}
.y17e{bottom:323.433600px;}
.y1d8{bottom:323.435250px;}
.y134{bottom:323.435400px;}
.y155{bottom:323.436750px;}
.y228{bottom:324.729450px;}
.yc1{bottom:324.729600px;}
.y1bb{bottom:324.976950px;}
.y193{bottom:324.977100px;}
.y28{bottom:327.019200px;}
.y114{bottom:330.673875px;}
.y75{bottom:332.418600px;}
.y25d{bottom:332.934600px;}
.y99{bottom:335.203500px;}
.y27{bottom:337.522200px;}
.y4b{bottom:340.340250px;}
.y1ff{bottom:341.427450px;}
.ye3{bottom:341.427600px;}
.y133{bottom:341.436900px;}
.y154{bottom:341.438250px;}
.yc0{bottom:342.995100px;}
.y1ba{bottom:343.242450px;}
.y192{bottom:343.242600px;}
.y113{bottom:345.072000px;}
.y26{bottom:348.025200px;}
.y25c{bottom:349.051350px;}
.y74{bottom:350.420100px;}
.y17d{bottom:350.427600px;}
.y1d7{bottom:350.429250px;}
.y227{bottom:352.003950px;}
.y98{bottom:353.617500px;}
.y25{bottom:358.528200px;}
.y1fe{bottom:359.428950px;}
.ye2{bottom:359.429100px;}
.y132{bottom:359.438400px;}
.y153{bottom:359.439750px;}
.y112{bottom:359.470125px;}
.ybf{bottom:361.260600px;}
.y1b9{bottom:361.507950px;}
.y25b{bottom:365.168100px;}
.y4a{bottom:367.334250px;}
.y73{bottom:368.421600px;}
.y17c{bottom:368.429100px;}
.y1d6{bottom:368.430750px;}
.y226{bottom:370.269450px;}
.y191{bottom:370.517100px;}
.y97{bottom:372.031500px;}
.y24{bottom:375.784200px;}
.y1fd{bottom:377.430450px;}
.y23f{bottom:377.430600px;}
.y131{bottom:377.439900px;}
.y152{bottom:377.441250px;}
.y111{bottom:377.805750px;}
.ybe{bottom:379.526100px;}
.y1b8{bottom:379.773450px;}
.y25a{bottom:381.284850px;}
.y49{bottom:385.335750px;}
.y72{bottom:386.423100px;}
.y17b{bottom:386.430600px;}
.y1d5{bottom:386.432250px;}
.y110{bottom:388.204500px;}
.y225{bottom:388.534950px;}
.y190{bottom:388.782600px;}
.y96{bottom:390.445500px;}
.y1fc{bottom:395.431950px;}
.y23e{bottom:395.432100px;}
.y130{bottom:395.441400px;}
.y151{bottom:395.442750px;}
.y259{bottom:397.401600px;}
.ybd{bottom:397.791600px;}
.y10f{bottom:402.602625px;}
.y23{bottom:403.024050px;}
.y48{bottom:403.337250px;}
.y71{bottom:404.424600px;}
.y17a{bottom:404.432100px;}
.y1d4{bottom:404.433750px;}
.y224{bottom:406.800450px;}
.y1b7{bottom:407.047950px;}
.y18f{bottom:407.048100px;}
.y95{bottom:408.859500px;}
.y1fb{bottom:413.433450px;}
.y23d{bottom:413.433600px;}
.y12f{bottom:413.442900px;}
.y258{bottom:413.518350px;}
.ybc{bottom:416.057100px;}
.y10e{bottom:417.000750px;}
.y22{bottom:417.775050px;}
.y47{bottom:421.338750px;}
.y70{bottom:422.426100px;}
.y179{bottom:422.433600px;}
.y1d3{bottom:422.435250px;}
.y150{bottom:422.436750px;}
.y223{bottom:425.065950px;}
.y1b6{bottom:425.313450px;}
.y18e{bottom:425.313600px;}
.y94{bottom:427.273500px;}
.y21{bottom:428.278050px;}
.y257{bottom:429.635100px;}
.y10d{bottom:431.398875px;}
.y23c{bottom:431.435100px;}
.ybb{bottom:434.322600px;}
.y20{bottom:438.781050px;}
.y46{bottom:439.340250px;}
.y1fa{bottom:440.427450px;}
.ye1{bottom:440.427600px;}
.y178{bottom:440.435100px;}
.y1d2{bottom:440.436750px;}
.y14f{bottom:440.438250px;}
.y222{bottom:443.331450px;}
.y1b5{bottom:443.578950px;}
.y18d{bottom:443.579100px;}
.y93{bottom:445.687500px;}
.y256{bottom:445.751850px;}
.y10c{bottom:445.797000px;}
.y1f{bottom:449.284050px;}
.y6f{bottom:449.420100px;}
.y23b{bottom:449.436600px;}
.y12e{bottom:449.439750px;}
.yba{bottom:452.588100px;}
.y45{bottom:457.341750px;}
.y1f9{bottom:458.428950px;}
.ye0{bottom:458.429100px;}
.y177{bottom:458.436600px;}
.y1d1{bottom:458.438250px;}
.y14e{bottom:458.439750px;}
.y1e{bottom:459.787050px;}
.y10b{bottom:460.195125px;}
.y221{bottom:461.596950px;}
.y1b4{bottom:461.844450px;}
.y18c{bottom:461.844600px;}
.y255{bottom:461.868600px;}
.y92{bottom:464.101500px;}
.y6e{bottom:467.421600px;}
.y23a{bottom:467.438100px;}
.y1d{bottom:470.290050px;}
.y12d{bottom:470.445750px;}
.yb9{bottom:470.853600px;}
.y284{bottom:470.887800px;}
.y10a{bottom:474.593250px;}
.y44{bottom:475.343250px;}
.y1f8{bottom:476.430450px;}
.ydf{bottom:476.430600px;}
.y176{bottom:476.438100px;}
.y1d0{bottom:476.439750px;}
.y14d{bottom:476.441250px;}
.y254{bottom:477.985350px;}
.y220{bottom:479.862450px;}
.y1b3{bottom:480.109950px;}
.y18b{bottom:480.110100px;}
.y91{bottom:482.515500px;}
.y6d{bottom:485.423100px;}
.y239{bottom:485.439600px;}
.y283{bottom:487.004550px;}
.y1c{bottom:487.546050px;}
.y109{bottom:488.991375px;}
.yfb{bottom:489.119100px;}
.y43{bottom:493.344750px;}
.y253{bottom:494.102100px;}
.y1f7{bottom:494.431950px;}
.yde{bottom:494.432100px;}
.y175{bottom:494.439600px;}
.y1cf{bottom:494.441250px;}
.y14c{bottom:494.442750px;}
.y21f{bottom:498.127950px;}
.yb8{bottom:498.128100px;}
.y1b2{bottom:498.375450px;}
.y90{bottom:500.929500px;}
.y282{bottom:503.121300px;}
.y108{bottom:503.389500px;}
.y6c{bottom:503.424600px;}
.y238{bottom:503.441100px;}
.yfa{bottom:507.384600px;}
.y252{bottom:510.218850px;}
.y42{bottom:511.346250px;}
.y1f6{bottom:512.433450px;}
.ydd{bottom:512.433600px;}
.y174{bottom:512.441100px;}
.y1ce{bottom:512.442750px;}
.y14b{bottom:512.444250px;}
.y1b{bottom:514.785750px;}
.y21e{bottom:516.393450px;}
.yb7{bottom:516.393600px;}
.y107{bottom:517.787625px;}
.y281{bottom:519.238050px;}
.y8f{bottom:519.343500px;}
.y6b{bottom:521.426100px;}
.y1b1{bottom:525.649950px;}
.yf9{bottom:525.650100px;}
.y251{bottom:526.335600px;}
.y41{bottom:529.347750px;}
.y1a{bottom:529.536750px;}
.y1f5{bottom:530.434950px;}
.ydc{bottom:530.435100px;}
.y173{bottom:530.442600px;}
.y12c{bottom:530.444250px;}
.y21d{bottom:534.658950px;}
.yb6{bottom:534.659100px;}
.y280{bottom:535.354800px;}
.y106{bottom:536.123250px;}
.y8e{bottom:537.757500px;}
.y6a{bottom:539.427600px;}
.y19{bottom:540.039750px;}
.y1b0{bottom:543.915450px;}
.yf8{bottom:543.915600px;}
.y1f4{bottom:548.436450px;}
.ydb{bottom:548.436600px;}
.y14a{bottom:548.441100px;}
.y172{bottom:548.444100px;}
.y12b{bottom:548.445750px;}
.y18{bottom:550.542750px;}
.y250{bottom:551.446950px;}
.y27f{bottom:551.471550px;}
.y21c{bottom:552.924450px;}
.yb5{bottom:552.924600px;}
.y8d{bottom:556.171500px;}
.y40{bottom:556.341750px;}
.y69{bottom:557.429100px;}
.y17{bottom:561.045750px;}
.y1af{bottom:562.180950px;}
.yf7{bottom:562.181100px;}
.y1f3{bottom:566.437950px;}
.yda{bottom:566.438100px;}
.y171{bottom:566.445600px;}
.y12a{bottom:566.447250px;}
.y27e{bottom:567.588300px;}
.y149{bottom:569.447100px;}
.y21b{bottom:571.189950px;}
.yb4{bottom:571.190100px;}
.y16{bottom:571.548750px;}
.y3f{bottom:574.343250px;}
.y68{bottom:575.430600px;}
.y1cd{bottom:575.439750px;}
.y1ae{bottom:580.446450px;}
.yf6{bottom:580.446600px;}
.y15{bottom:582.051750px;}
.y8c{bottom:583.578000px;}
.y27d{bottom:583.705050px;}
.y1f2{bottom:584.439450px;}
.yd9{bottom:584.439600px;}
.y105{bottom:584.445750px;}
.y170{bottom:584.447100px;}
.y129{bottom:584.448750px;}
.y21a{bottom:589.455450px;}
.yb3{bottom:589.455600px;}
.y3e{bottom:592.344750px;}
.y67{bottom:593.432100px;}
.y1cc{bottom:593.441250px;}
.y1ad{bottom:598.711950px;}
.yf5{bottom:598.712100px;}
.y14{bottom:599.307900px;}
.y27c{bottom:599.821800px;}
.y8b{bottom:601.992000px;}
.y1f1{bottom:602.440950px;}
.yd8{bottom:602.441100px;}
.y104{bottom:602.447250px;}
.y16f{bottom:602.448600px;}
.y128{bottom:602.450250px;}
.y219{bottom:607.720950px;}
.yb2{bottom:607.721100px;}
.y3d{bottom:610.346250px;}
.y24f{bottom:611.433450px;}
.y66{bottom:611.433600px;}
.y1cb{bottom:611.442750px;}
.y27b{bottom:615.938550px;}
.y1ac{bottom:616.977450px;}
.yf4{bottom:616.977600px;}
.y8a{bottom:620.406000px;}
.y1f0{bottom:620.442450px;}
.y237{bottom:620.442600px;}
.y103{bottom:620.448750px;}
.y16e{bottom:620.450100px;}
.y127{bottom:620.451750px;}
.yb1{bottom:625.986600px;}
.y3c{bottom:628.347750px;}
.y24e{bottom:629.434950px;}
.y65{bottom:629.435100px;}
.y148{bottom:629.442750px;}
.y1ca{bottom:629.444250px;}
.y13{bottom:630.813600px;}
.y27a{bottom:632.055300px;}
.y218{bottom:634.995450px;}
.y1ab{bottom:635.242950px;}
.yf3{bottom:635.243100px;}
.y1ef{bottom:638.443950px;}
.y236{bottom:638.444100px;}
.y102{bottom:638.450250px;}
.y89{bottom:638.820000px;}
.yb0{bottom:644.252100px;}
.y3b{bottom:646.349250px;}
.y24d{bottom:647.436450px;}
.yd7{bottom:647.436600px;}
.y126{bottom:647.441250px;}
.y16d{bottom:647.444100px;}
.y147{bottom:647.444250px;}
.y1c9{bottom:647.445750px;}
.y279{bottom:648.172050px;}
.y217{bottom:653.260950px;}
.y163{bottom:653.261100px;}
.y18a{bottom:653.508600px;}
.y64{bottom:656.429100px;}
.y1ee{bottom:656.445450px;}
.y235{bottom:656.445600px;}
.y101{bottom:656.451750px;}
.y88{bottom:657.234000px;}
.y12{bottom:657.813600px;}
.y1aa{bottom:662.517450px;}
.yaf{bottom:662.517600px;}
.y278{bottom:664.288800px;}
.y3a{bottom:664.350750px;}
.y24c{bottom:665.437950px;}
.yd6{bottom:665.438100px;}
.y125{bottom:665.442750px;}
.y146{bottom:665.444250px;}
.y16c{bottom:665.445600px;}
.y216{bottom:671.526450px;}
.y162{bottom:671.526600px;}
.y63{bottom:674.430600px;}
.y234{bottom:674.447100px;}
.y87{bottom:675.648000px;}
.y277{bottom:680.405550px;}
.y1a9{bottom:680.782950px;}
.yae{bottom:680.783100px;}
.y39{bottom:682.352250px;}
.y1ed{bottom:683.439450px;}
.yd5{bottom:683.439600px;}
.y100{bottom:683.441250px;}
.y1c8{bottom:683.442600px;}
.y124{bottom:683.444250px;}
.y16b{bottom:683.447100px;}
.y11{bottom:688.575600px;}
.y215{bottom:689.791950px;}
.y161{bottom:689.792100px;}
.y62{bottom:692.432100px;}
.y276{bottom:696.522300px;}
.y1a8{bottom:699.048450px;}
.yad{bottom:699.048600px;}
.y1ec{bottom:701.440950px;}
.yd4{bottom:701.441100px;}
.yff{bottom:701.442750px;}
.y16a{bottom:701.448600px;}
.y86{bottom:703.054500px;}
.y1c7{bottom:704.448600px;}
.y214{bottom:708.057450px;}
.y160{bottom:708.057600px;}
.y10{bottom:708.069600px;}
.y38{bottom:709.346250px;}
.y61{bottom:710.433600px;}
.y275{bottom:712.639050px;}
.y1a7{bottom:717.313950px;}
.yac{bottom:717.314100px;}
.y1eb{bottom:719.442450px;}
.yd3{bottom:719.442600px;}
.yfe{bottom:719.444250px;}
.y169{bottom:719.450100px;}
.y85{bottom:721.468500px;}
.y213{bottom:726.322950px;}
.y15f{bottom:726.323100px;}
.y37{bottom:727.347750px;}
.y60{bottom:728.435100px;}
.y274{bottom:728.755800px;}
.y1a6{bottom:735.579450px;}
.yab{bottom:735.579600px;}
.y1ea{bottom:737.443950px;}
.yd2{bottom:737.444100px;}
.y145{bottom:737.445600px;}
.yfd{bottom:737.451600px;}
.y84{bottom:739.882500px;}
.yf{bottom:740.325450px;}
.y212{bottom:744.588450px;}
.y13a{bottom:744.588600px;}
.y273{bottom:744.872550px;}
.y36{bottom:745.349250px;}
.y5f{bottom:746.436600px;}
.y1a5{bottom:753.844950px;}
.yaa{bottom:753.845100px;}
.y1e9{bottom:755.445450px;}
.yd1{bottom:755.445600px;}
.y144{bottom:755.447100px;}
.yfc{bottom:755.453100px;}
.y83{bottom:758.296500px;}
.y272{bottom:760.989300px;}
.y211{bottom:762.853950px;}
.yf2{bottom:762.854100px;}
.y35{bottom:763.350750px;}
.y5e{bottom:764.438100px;}
.y168{bottom:764.445600px;}
.ye{bottom:767.325450px;}
.y1a4{bottom:772.110450px;}
.ya9{bottom:772.110600px;}
.y24b{bottom:773.446950px;}
.yd0{bottom:773.447100px;}
.y143{bottom:773.448600px;}
.y82{bottom:776.710500px;}
.y271{bottom:777.106050px;}
.y210{bottom:781.119450px;}
.yf1{bottom:781.119600px;}
.y34{bottom:781.352250px;}
.y1e8{bottom:782.439450px;}
.y5d{bottom:782.439600px;}
.y1a3{bottom:790.375950px;}
.ya8{bottom:790.376100px;}
.y24a{bottom:791.448450px;}
.ycf{bottom:791.448600px;}
.y142{bottom:791.450100px;}
.y270{bottom:793.222800px;}
.yd{bottom:794.325450px;}
.y81{bottom:795.124500px;}
.y33{bottom:799.353750px;}
.y20f{bottom:799.384950px;}
.yf0{bottom:799.385100px;}
.y1e7{bottom:800.440950px;}
.y5c{bottom:800.441100px;}
.y1a2{bottom:808.641450px;}
.y189{bottom:808.641600px;}
.y26f{bottom:809.339550px;}
.y249{bottom:809.449950px;}
.yce{bottom:809.450100px;}
.y141{bottom:809.451600px;}
.y80{bottom:813.538500px;}
.y32{bottom:817.355250px;}
.y20e{bottom:817.650450px;}
.ya7{bottom:817.650600px;}
.y1e6{bottom:818.442450px;}
.y5b{bottom:818.442600px;}
.yc{bottom:821.325450px;}
.y26e{bottom:825.456300px;}
.y1a1{bottom:826.906950px;}
.y188{bottom:826.907100px;}
.y248{bottom:827.451450px;}
.ycd{bottom:827.451600px;}
.y140{bottom:827.453100px;}
.y31{bottom:835.356750px;}
.y20d{bottom:835.915950px;}
.ya6{bottom:835.916100px;}
.y1e5{bottom:836.443950px;}
.y5a{bottom:836.444100px;}
.y26d{bottom:841.573050px;}
.y7f{bottom:849.957600px;}
.y1a0{bottom:854.181450px;}
.ya5{bottom:854.181600px;}
.y1e4{bottom:854.445450px;}
.y59{bottom:854.445600px;}
.y26c{bottom:857.689800px;}
.y30{bottom:871.359600px;}
.y19f{bottom:872.446950px;}
.y58{bottom:872.447100px;}
.y26b{bottom:873.806550px;}
.y1{bottom:892.729950px;}
.y2e{bottom:909.921150px;}
.yb{bottom:927.403500px;}
.ya{bottom:940.903500px;}
.he{height:29.557500px;}
.hd{height:30.276000px;}
.h5{height:30.912000px;}
.hc{height:31.068000px;}
.h3{height:31.206000px;}
.h4{height:31.500000px;}
.h2{height:35.328000px;}
.ha{height:36.456000px;}
.h10{height:41.424000px;}
.hf{height:45.307500px;}
.h9{height:46.602000px;}
.h1a{height:49.198500px;}
.h19{height:50.485500px;}
.h8{height:56.958000px;}
.h17{height:56.958600px;}
.h16{height:56.964000px;}
.h18{height:56.970000px;}
.h13{height:56.976000px;}
.h14{height:56.976600px;}
.h12{height:56.988000px;}
.h15{height:57.055200px;}
.h7{height:60.552000px;}
.h11{height:62.496000px;}
.hb{height:67.687500px;}
.h6{height:78.120000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:106.299150px;}
.x7{left:108.826200px;}
.xa{left:112.212000px;}
.x9{left:113.573700px;}
.x6{left:120.976200px;}
.x11{left:127.558950px;}
.x13{left:128.799150px;}
.x3{left:131.814150px;}
.x8{left:145.793700px;}
.x4{left:166.455450px;}
.x5{left:172.080450px;}
.xb{left:230.724000px;}
.xd{left:278.953950px;}
.xc{left:288.562800px;}
.x10{left:330.437550px;}
.xf{left:334.133550px;}
.xe{left:335.960550px;}
.x1{left:445.299000px;}
.x12{left:456.217200px;}
@media print{
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls2c{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.466667pt;}
.ls9{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.012267pt;}
.ls21{letter-spacing:0.029333pt;}
.ls32{letter-spacing:0.052000pt;}
.ls1a{letter-spacing:0.058667pt;}
.ls2a{letter-spacing:0.088000pt;}
.ls20{letter-spacing:0.117333pt;}
.ls26{letter-spacing:0.119733pt;}
.ls25{letter-spacing:0.146667pt;}
.ls33{letter-spacing:0.156000pt;}
.ls1b{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.186667pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls22{letter-spacing:0.293333pt;}
.ls34{letter-spacing:0.312000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.352000pt;}
.ls2d{letter-spacing:0.410667pt;}
.ls29{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.522667pt;}
.ls24{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.586667pt;}
.ls30{letter-spacing:0.645333pt;}
.ls17{letter-spacing:0.674667pt;}
.ls31{letter-spacing:0.676000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.762667pt;}
.ls2f{letter-spacing:0.821333pt;}
.ls35{letter-spacing:0.832000pt;}
.ls13{letter-spacing:0.880000pt;}
.ls36{letter-spacing:0.936000pt;}
.ls19{letter-spacing:1.056000pt;}
.ls11{letter-spacing:1.085333pt;}
.ls2{letter-spacing:1.120000pt;}
.ls18{letter-spacing:1.144000pt;}
.ls2e{letter-spacing:1.349333pt;}
.ls28{letter-spacing:1.540000pt;}
.ls0{letter-spacing:8.880000pt;}
.ls2b{letter-spacing:12.133333pt;}
.ls6{letter-spacing:18.090667pt;}
.ls4{letter-spacing:18.944000pt;}
.ls5{letter-spacing:19.797333pt;}
.ls15{letter-spacing:100.985600pt;}
.ls14{letter-spacing:143.652267pt;}
.ls10{letter-spacing:694.931733pt;}
.ws0{word-spacing:-53.333333pt;}
.wsb8{word-spacing:-16.000000pt;}
.ws94{word-spacing:-14.666667pt;}
.ws18{word-spacing:-10.666667pt;}
.ws76{word-spacing:-9.533333pt;}
.ws77{word-spacing:-7.583333pt;}
.wscf{word-spacing:-0.936000pt;}
.wsb7{word-spacing:-0.821333pt;}
.wsa5{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.560000pt;}
.ws9{word-spacing:-0.522667pt;}
.wsbd{word-spacing:-0.156000pt;}
.ws6{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.052000pt;}
.ws1e{word-spacing:0.058667pt;}
.wsbe{word-spacing:0.104000pt;}
.ws2f{word-spacing:0.117333pt;}
.ws81{word-spacing:0.140000pt;}
.ws28{word-spacing:0.176000pt;}
.ws22{word-spacing:0.234667pt;}
.ws96{word-spacing:0.293333pt;}
.ws2d{word-spacing:0.352000pt;}
.ws4{word-spacing:0.373333pt;}
.ws50{word-spacing:0.410667pt;}
.ws99{word-spacing:0.466667pt;}
.ws43{word-spacing:0.469333pt;}
.ws9d{word-spacing:0.513333pt;}
.ws71{word-spacing:0.528000pt;}
.ws12{word-spacing:0.544000pt;}
.ws7{word-spacing:0.560000pt;}
.ws73{word-spacing:0.586667pt;}
.wsa7{word-spacing:0.645333pt;}
.wsad{word-spacing:0.704000pt;}
.wsb{word-spacing:0.736000pt;}
.ws4b{word-spacing:0.762667pt;}
.wsa{word-spacing:0.768000pt;}
.wsc{word-spacing:0.800000pt;}
.ws31{word-spacing:0.821333pt;}
.ws30{word-spacing:0.880000pt;}
.wsf{word-spacing:0.896000pt;}
.ws5{word-spacing:0.933333pt;}
.ws6d{word-spacing:0.938667pt;}
.ws16{word-spacing:0.960000pt;}
.wsc0{word-spacing:0.988000pt;}
.ws74{word-spacing:0.997333pt;}
.ws11{word-spacing:1.056000pt;}
.ws92{word-spacing:1.073333pt;}
.ws5a{word-spacing:1.114667pt;}
.ws8a{word-spacing:1.120000pt;}
.ws98{word-spacing:1.166667pt;}
.ws41{word-spacing:1.173333pt;}
.wsd{word-spacing:1.184000pt;}
.wsc7{word-spacing:1.196000pt;}
.ws4f{word-spacing:1.232000pt;}
.ws72{word-spacing:1.290667pt;}
.wscc{word-spacing:1.300000pt;}
.ws13{word-spacing:1.312000pt;}
.ws10{word-spacing:1.344000pt;}
.ws7a{word-spacing:1.349333pt;}
.ws7b{word-spacing:1.408000pt;}
.ws2c{word-spacing:1.466667pt;}
.ws82{word-spacing:1.493333pt;}
.ws5e{word-spacing:1.525333pt;}
.ws17{word-spacing:1.568000pt;}
.ws7c{word-spacing:1.584000pt;}
.ws90{word-spacing:1.586667pt;}
.wse{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.642667pt;}
.ws54{word-spacing:1.701333pt;}
.ws9c{word-spacing:1.726667pt;}
.wsa8{word-spacing:1.760000pt;}
.ws67{word-spacing:1.818667pt;}
.ws89{word-spacing:1.820000pt;}
.ws45{word-spacing:1.877333pt;}
.ws15{word-spacing:1.888000pt;}
.wsc1{word-spacing:1.924000pt;}
.ws49{word-spacing:1.936000pt;}
.ws1f{word-spacing:1.994667pt;}
.ws88{word-spacing:2.006667pt;}
.ws21{word-spacing:2.053333pt;}
.wsc2{word-spacing:2.080000pt;}
.ws91{word-spacing:2.100000pt;}
.ws46{word-spacing:2.112000pt;}
.ws4d{word-spacing:2.170667pt;}
.ws85{word-spacing:2.193333pt;}
.ws40{word-spacing:2.229333pt;}
.ws8e{word-spacing:2.286667pt;}
.ws29{word-spacing:2.288000pt;}
.wsc4{word-spacing:2.340000pt;}
.ws44{word-spacing:2.346667pt;}
.wscb{word-spacing:2.392000pt;}
.ws55{word-spacing:2.405333pt;}
.ws93{word-spacing:2.426667pt;}
.wsc6{word-spacing:2.444000pt;}
.ws3e{word-spacing:2.464000pt;}
.ws8d{word-spacing:2.473333pt;}
.ws58{word-spacing:2.522667pt;}
.ws87{word-spacing:2.566667pt;}
.ws6b{word-spacing:2.581333pt;}
.ws48{word-spacing:2.640000pt;}
.ws84{word-spacing:2.660000pt;}
.wsb0{word-spacing:2.698667pt;}
.wsa4{word-spacing:2.757333pt;}
.ws2e{word-spacing:2.816000pt;}
.ws47{word-spacing:2.874667pt;}
.ws32{word-spacing:2.933333pt;}
.ws8b{word-spacing:2.986667pt;}
.ws6a{word-spacing:2.992000pt;}
.wsc5{word-spacing:3.016000pt;}
.ws8c{word-spacing:3.033333pt;}
.wsa6{word-spacing:3.050667pt;}
.ws14{word-spacing:3.104000pt;}
.ws42{word-spacing:3.109333pt;}
.ws4c{word-spacing:3.168000pt;}
.wsc9{word-spacing:3.172000pt;}
.ws59{word-spacing:3.226667pt;}
.wsa1{word-spacing:3.285333pt;}
.ws56{word-spacing:3.344000pt;}
.ws23{word-spacing:3.402667pt;}
.wsbc{word-spacing:3.432000pt;}
.ws3{word-spacing:3.434667pt;}
.ws78{word-spacing:3.461333pt;}
.ws37{word-spacing:3.520000pt;}
.ws83{word-spacing:3.546667pt;}
.wsa9{word-spacing:3.578667pt;}
.ws1a{word-spacing:3.637333pt;}
.wsac{word-spacing:3.640000pt;}
.wsca{word-spacing:3.692000pt;}
.ws53{word-spacing:3.696000pt;}
.ws26{word-spacing:3.754667pt;}
.ws97{word-spacing:3.813333pt;}
.wsbb{word-spacing:3.848000pt;}
.ws33{word-spacing:3.872000pt;}
.ws86{word-spacing:3.920000pt;}
.wsb1{word-spacing:3.930667pt;}
.wsb2{word-spacing:3.989333pt;}
.ws9b{word-spacing:4.013333pt;}
.ws70{word-spacing:4.048000pt;}
.ws69{word-spacing:4.106667pt;}
.ws7e{word-spacing:4.153333pt;}
.wsc8{word-spacing:4.160000pt;}
.wsa2{word-spacing:4.165333pt;}
.ws5d{word-spacing:4.224000pt;}
.ws9f{word-spacing:4.282667pt;}
.ws5f{word-spacing:4.341333pt;}
.ws66{word-spacing:4.400000pt;}
.ws60{word-spacing:4.458667pt;}
.ws35{word-spacing:4.517333pt;}
.ws8f{word-spacing:4.573333pt;}
.ws25{word-spacing:4.576000pt;}
.ws6c{word-spacing:4.634667pt;}
.wsa0{word-spacing:4.693333pt;}
.wsc3{word-spacing:4.732000pt;}
.ws65{word-spacing:4.752000pt;}
.ws5c{word-spacing:4.810667pt;}
.ws39{word-spacing:4.869333pt;}
.ws36{word-spacing:4.928000pt;}
.ws38{word-spacing:4.986667pt;}
.wsce{word-spacing:4.992000pt;}
.wsaa{word-spacing:5.045333pt;}
.ws80{word-spacing:5.086667pt;}
.ws5b{word-spacing:5.104000pt;}
.ws3a{word-spacing:5.162667pt;}
.ws62{word-spacing:5.221333pt;}
.ws7f{word-spacing:5.273333pt;}
.ws3b{word-spacing:5.280000pt;}
.ws2a{word-spacing:5.338667pt;}
.ws6f{word-spacing:5.397333pt;}
.ws24{word-spacing:5.456000pt;}
.ws75{word-spacing:5.514667pt;}
.wsba{word-spacing:5.564000pt;}
.ws1c{word-spacing:5.632000pt;}
.ws95{word-spacing:5.690667pt;}
.ws52{word-spacing:5.749333pt;}
.ws61{word-spacing:5.808000pt;}
.ws9a{word-spacing:5.833333pt;}
.ws4e{word-spacing:5.866667pt;}
.wsaf{word-spacing:5.925333pt;}
.ws63{word-spacing:5.984000pt;}
.wscd{word-spacing:6.032000pt;}
.ws20{word-spacing:6.042667pt;}
.ws68{word-spacing:6.101333pt;}
.wsab{word-spacing:6.160000pt;}
.ws6e{word-spacing:6.218667pt;}
.wsb5{word-spacing:6.277333pt;}
.wsb4{word-spacing:6.336000pt;}
.ws51{word-spacing:6.394667pt;}
.ws34{word-spacing:6.453333pt;}
.wsb9{word-spacing:6.500000pt;}
.wsa3{word-spacing:6.512000pt;}
.ws3f{word-spacing:6.570667pt;}
.ws3d{word-spacing:6.629333pt;}
.wsb6{word-spacing:6.688000pt;}
.ws3c{word-spacing:6.746667pt;}
.ws2b{word-spacing:6.805333pt;}
.ws4a{word-spacing:6.864000pt;}
.wsb3{word-spacing:6.922667pt;}
.ws79{word-spacing:6.981333pt;}
.ws9e{word-spacing:7.040000pt;}
.ws64{word-spacing:7.098667pt;}
.wsae{word-spacing:7.157333pt;}
.ws1d{word-spacing:7.216000pt;}
.ws57{word-spacing:7.274667pt;}
.ws27{word-spacing:7.333333pt;}
.ws2{word-spacing:9.472000pt;}
.ws7d{word-spacing:11.666667pt;}
.ws1{word-spacing:11.861333pt;}
.ws19{word-spacing:16.320000pt;}
._8{margin-left:-14.720000pt;}
._4{margin-left:-10.378667pt;}
._2{margin-left:-8.325333pt;}
._c{margin-left:-2.229333pt;}
._5{margin-left:-1.120000pt;}
._6{width:1.032000pt;}
._a{width:2.252800pt;}
._1{width:3.337600pt;}
._b{width:6.054400pt;}
._0{width:6.944000pt;}
._d{width:8.096000pt;}
._9{width:9.099733pt;}
._3{width:10.378667pt;}
._7{width:16.320000pt;}
.fsb{font-size:30.333333pt;}
.fsa{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:38.133333pt;}
.fs2{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:46.666667pt;}
.fs7{font-size:48.000000pt;}
.fsd{font-size:52.000000pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs9{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:56.692933pt;}
.ya4{bottom:101.924000pt;}
.y123{bottom:102.017333pt;}
.y187{bottom:102.037200pt;}
.y233{bottom:102.044400pt;}
.ycc{bottom:102.044533pt;}
.y9{bottom:102.045867pt;}
.y1c6{bottom:102.264400pt;}
.y19e{bottom:102.264533pt;}
.y57{bottom:102.515333pt;}
.y20b{bottom:103.481733pt;}
.yef{bottom:103.481867pt;}
.y1e3{bottom:103.490000pt;}
.y13f{bottom:105.547333pt;}
.y26a{bottom:109.703867pt;}
.y8{bottom:112.713867pt;}
.y122{bottom:114.815667pt;}
.y186{bottom:114.835533pt;}
.y232{bottom:118.280400pt;}
.ycb{bottom:118.280533pt;}
.ya3{bottom:118.292000pt;}
.y13e{bottom:118.340667pt;}
.y1c5{bottom:118.500400pt;}
.y19d{bottom:118.500533pt;}
.y56{bottom:118.516667pt;}
.y20a{bottom:119.483067pt;}
.yee{bottom:119.483200pt;}
.y1e2{bottom:119.491333pt;}
.y269{bottom:124.029867pt;}
.y7{bottom:127.156933pt;}
.y121{bottom:127.614000pt;}
.y13d{bottom:131.133867pt;}
.y15e{bottom:131.134000pt;}
.y231{bottom:134.516400pt;}
.yca{bottom:134.516533pt;}
.ya2{bottom:134.660000pt;}
.y1c4{bottom:134.736400pt;}
.y19c{bottom:134.736533pt;}
.y209{bottom:135.484400pt;}
.yed{bottom:135.484533pt;}
.y268{bottom:138.355867pt;}
.y6{bottom:139.710267pt;}
.y120{bottom:140.412333pt;}
.y55{bottom:142.511333pt;}
.y20c{bottom:143.477867pt;}
.y1e1{bottom:143.486000pt;}
.y15d{bottom:143.927333pt;}
.y230{bottom:150.752400pt;}
.yc9{bottom:150.752533pt;}
.y19b{bottom:150.972533pt;}
.y7e{bottom:151.471200pt;}
.y208{bottom:151.485733pt;}
.y247{bottom:151.485867pt;}
.y267{bottom:152.681867pt;}
.y11f{bottom:153.210667pt;}
.y5{bottom:154.158267pt;}
.y15c{bottom:156.720667pt;}
.y54{bottom:158.512667pt;}
.y1c3{bottom:158.980400pt;}
.ya1{bottom:159.021333pt;}
.yec{bottom:159.479200pt;}
.y1e0{bottom:159.487333pt;}
.y4{bottom:164.826267pt;}
.y11e{bottom:166.009000pt;}
.y22f{bottom:166.988400pt;}
.yc8{bottom:166.988533pt;}
.y266{bottom:167.007867pt;}
.y7d{bottom:167.472533pt;}
.y207{bottom:167.487067pt;}
.y246{bottom:167.487200pt;}
.y185{bottom:167.493867pt;}
.y15b{bottom:169.514000pt;}
.y53{bottom:174.514000pt;}
.y1c2{bottom:175.216400pt;}
.y19a{bottom:175.216533pt;}
.ya0{bottom:175.389333pt;}
.yeb{bottom:175.480533pt;}
.y1df{bottom:175.488667pt;}
.y13c{bottom:175.502133pt;}
.y3{bottom:179.274267pt;}
.y265{bottom:181.333867pt;}
.y11d{bottom:182.307333pt;}
.yc7{bottom:183.224533pt;}
.y7c{bottom:183.473867pt;}
.y206{bottom:183.488400pt;}
.y245{bottom:183.488533pt;}
.y184{bottom:183.495200pt;}
.y2{bottom:189.942267pt;}
.y52{bottom:190.515333pt;}
.y22e{bottom:191.232400pt;}
.y1c1{bottom:191.452400pt;}
.y199{bottom:191.452533pt;}
.yea{bottom:191.481867pt;}
.y1de{bottom:191.490000pt;}
.y13b{bottom:191.503467pt;}
.y11c{bottom:191.545667pt;}
.y139{bottom:191.580667pt;}
.y9f{bottom:191.757333pt;}
.y264{bottom:195.659867pt;}
.yc6{bottom:199.460533pt;}
.y7b{bottom:199.475200pt;}
.y244{bottom:199.489867pt;}
.y11b{bottom:204.344000pt;}
.y138{bottom:204.379000pt;}
.y51{bottom:206.516667pt;}
.y22d{bottom:207.468400pt;}
.y205{bottom:207.483067pt;}
.ye9{bottom:207.483200pt;}
.y183{bottom:207.489867pt;}
.y1dd{bottom:207.491333pt;}
.y15a{bottom:207.492667pt;}
.y1c0{bottom:207.688400pt;}
.y198{bottom:207.688533pt;}
.y2d{bottom:207.869000pt;}
.y9e{bottom:208.125333pt;}
.y263{bottom:209.985867pt;}
.y7a{bottom:215.476533pt;}
.y243{bottom:215.491200pt;}
.y167{bottom:215.696533pt;}
.y11a{bottom:217.142333pt;}
.y137{bottom:217.177333pt;}
.y50{bottom:222.518000pt;}
.y204{bottom:223.484400pt;}
.ye8{bottom:223.484533pt;}
.y182{bottom:223.491200pt;}
.y1dc{bottom:223.492667pt;}
.y159{bottom:223.494000pt;}
.y22c{bottom:223.704400pt;}
.yc5{bottom:223.704533pt;}
.y1bf{bottom:223.924400pt;}
.y197{bottom:223.924533pt;}
.y2c{bottom:224.167333pt;}
.y262{bottom:224.311867pt;}
.y9d{bottom:224.493333pt;}
.y119{bottom:229.940667pt;}
.y136{bottom:229.975667pt;}
.y79{bottom:231.477867pt;}
.y242{bottom:231.492533pt;}
.y166{bottom:231.932533pt;}
.y4f{bottom:238.519333pt;}
.y261{bottom:238.637867pt;}
.y203{bottom:239.485733pt;}
.ye7{bottom:239.485867pt;}
.y181{bottom:239.492533pt;}
.y1db{bottom:239.494000pt;}
.y158{bottom:239.495333pt;}
.y22b{bottom:239.940400pt;}
.yc4{bottom:239.940533pt;}
.y1be{bottom:240.160400pt;}
.y196{bottom:240.160533pt;}
.y9c{bottom:240.861333pt;}
.y118{bottom:242.739000pt;}
.y135{bottom:246.274000pt;}
.y78{bottom:247.479200pt;}
.y241{bottom:247.493867pt;}
.y165{bottom:248.168533pt;}
.y260{bottom:252.963867pt;}
.y4e{bottom:254.520667pt;}
.y202{bottom:255.487067pt;}
.ye6{bottom:255.487200pt;}
.y180{bottom:255.493867pt;}
.y1da{bottom:255.495333pt;}
.y157{bottom:255.496667pt;}
.y117{bottom:255.537333pt;}
.y22a{bottom:256.176400pt;}
.yc3{bottom:256.176533pt;}
.y1bd{bottom:256.396400pt;}
.y195{bottom:256.396533pt;}
.y9b{bottom:257.229333pt;}
.y2b{bottom:258.899733pt;}
.y77{bottom:263.480533pt;}
.y240{bottom:263.495200pt;}
.y164{bottom:264.404533pt;}
.y25f{bottom:267.289867pt;}
.y116{bottom:268.335667pt;}
.y4d{bottom:270.522000pt;}
.y201{bottom:271.488400pt;}
.ye5{bottom:271.488533pt;}
.y17f{bottom:271.495200pt;}
.y1d9{bottom:271.496667pt;}
.y156{bottom:271.498000pt;}
.y2a{bottom:272.011733pt;}
.y229{bottom:272.412400pt;}
.yc2{bottom:272.412533pt;}
.y1bc{bottom:272.632400pt;}
.y194{bottom:272.632533pt;}
.y9a{bottom:273.597333pt;}
.y76{bottom:279.481867pt;}
.y115{bottom:281.134000pt;}
.y29{bottom:281.347733pt;}
.y25e{bottom:281.615867pt;}
.y4c{bottom:286.523333pt;}
.y200{bottom:287.489733pt;}
.ye4{bottom:287.489867pt;}
.y17e{bottom:287.496533pt;}
.y1d8{bottom:287.498000pt;}
.y134{bottom:287.498133pt;}
.y155{bottom:287.499333pt;}
.y228{bottom:288.648400pt;}
.yc1{bottom:288.648533pt;}
.y1bb{bottom:288.868400pt;}
.y193{bottom:288.868533pt;}
.y28{bottom:290.683733pt;}
.y114{bottom:293.932333pt;}
.y75{bottom:295.483200pt;}
.y25d{bottom:295.941867pt;}
.y99{bottom:297.958667pt;}
.y27{bottom:300.019733pt;}
.y4b{bottom:302.524667pt;}
.y1ff{bottom:303.491067pt;}
.ye3{bottom:303.491200pt;}
.y133{bottom:303.499467pt;}
.y154{bottom:303.500667pt;}
.yc0{bottom:304.884533pt;}
.y1ba{bottom:305.104400pt;}
.y192{bottom:305.104533pt;}
.y113{bottom:306.730667pt;}
.y26{bottom:309.355733pt;}
.y25c{bottom:310.267867pt;}
.y74{bottom:311.484533pt;}
.y17d{bottom:311.491200pt;}
.y1d7{bottom:311.492667pt;}
.y227{bottom:312.892400pt;}
.y98{bottom:314.326667pt;}
.y25{bottom:318.691733pt;}
.y1fe{bottom:319.492400pt;}
.ye2{bottom:319.492533pt;}
.y132{bottom:319.500800pt;}
.y153{bottom:319.502000pt;}
.y112{bottom:319.529000pt;}
.ybf{bottom:321.120533pt;}
.y1b9{bottom:321.340400pt;}
.y25b{bottom:324.593867pt;}
.y4a{bottom:326.519333pt;}
.y73{bottom:327.485867pt;}
.y17c{bottom:327.492533pt;}
.y1d6{bottom:327.494000pt;}
.y226{bottom:329.128400pt;}
.y191{bottom:329.348533pt;}
.y97{bottom:330.694667pt;}
.y24{bottom:334.030400pt;}
.y1fd{bottom:335.493733pt;}
.y23f{bottom:335.493867pt;}
.y131{bottom:335.502133pt;}
.y152{bottom:335.503333pt;}
.y111{bottom:335.827333pt;}
.ybe{bottom:337.356533pt;}
.y1b8{bottom:337.576400pt;}
.y25a{bottom:338.919867pt;}
.y49{bottom:342.520667pt;}
.y72{bottom:343.487200pt;}
.y17b{bottom:343.493867pt;}
.y1d5{bottom:343.495333pt;}
.y110{bottom:345.070667pt;}
.y225{bottom:345.364400pt;}
.y190{bottom:345.584533pt;}
.y96{bottom:347.062667pt;}
.y1fc{bottom:351.495067pt;}
.y23e{bottom:351.495200pt;}
.y130{bottom:351.503467pt;}
.y151{bottom:351.504667pt;}
.y259{bottom:353.245867pt;}
.ybd{bottom:353.592533pt;}
.y10f{bottom:357.869000pt;}
.y23{bottom:358.243600pt;}
.y48{bottom:358.522000pt;}
.y71{bottom:359.488533pt;}
.y17a{bottom:359.495200pt;}
.y1d4{bottom:359.496667pt;}
.y224{bottom:361.600400pt;}
.y1b7{bottom:361.820400pt;}
.y18f{bottom:361.820533pt;}
.y95{bottom:363.430667pt;}
.y1fb{bottom:367.496400pt;}
.y23d{bottom:367.496533pt;}
.y12f{bottom:367.504800pt;}
.y258{bottom:367.571867pt;}
.ybc{bottom:369.828533pt;}
.y10e{bottom:370.667333pt;}
.y22{bottom:371.355600pt;}
.y47{bottom:374.523333pt;}
.y70{bottom:375.489867pt;}
.y179{bottom:375.496533pt;}
.y1d3{bottom:375.498000pt;}
.y150{bottom:375.499333pt;}
.y223{bottom:377.836400pt;}
.y1b6{bottom:378.056400pt;}
.y18e{bottom:378.056533pt;}
.y94{bottom:379.798667pt;}
.y21{bottom:380.691600pt;}
.y257{bottom:381.897867pt;}
.y10d{bottom:383.465667pt;}
.y23c{bottom:383.497867pt;}
.ybb{bottom:386.064533pt;}
.y20{bottom:390.027600pt;}
.y46{bottom:390.524667pt;}
.y1fa{bottom:391.491067pt;}
.ye1{bottom:391.491200pt;}
.y178{bottom:391.497867pt;}
.y1d2{bottom:391.499333pt;}
.y14f{bottom:391.500667pt;}
.y222{bottom:394.072400pt;}
.y1b5{bottom:394.292400pt;}
.y18d{bottom:394.292533pt;}
.y93{bottom:396.166667pt;}
.y256{bottom:396.223867pt;}
.y10c{bottom:396.264000pt;}
.y1f{bottom:399.363600pt;}
.y6f{bottom:399.484533pt;}
.y23b{bottom:399.499200pt;}
.y12e{bottom:399.502000pt;}
.yba{bottom:402.300533pt;}
.y45{bottom:406.526000pt;}
.y1f9{bottom:407.492400pt;}
.ye0{bottom:407.492533pt;}
.y177{bottom:407.499200pt;}
.y1d1{bottom:407.500667pt;}
.y14e{bottom:407.502000pt;}
.y1e{bottom:408.699600pt;}
.y10b{bottom:409.062333pt;}
.y221{bottom:410.308400pt;}
.y1b4{bottom:410.528400pt;}
.y18c{bottom:410.528533pt;}
.y255{bottom:410.549867pt;}
.y92{bottom:412.534667pt;}
.y6e{bottom:415.485867pt;}
.y23a{bottom:415.500533pt;}
.y1d{bottom:418.035600pt;}
.y12d{bottom:418.174000pt;}
.yb9{bottom:418.536533pt;}
.y284{bottom:418.566933pt;}
.y10a{bottom:421.860667pt;}
.y44{bottom:422.527333pt;}
.y1f8{bottom:423.493733pt;}
.ydf{bottom:423.493867pt;}
.y176{bottom:423.500533pt;}
.y1d0{bottom:423.502000pt;}
.y14d{bottom:423.503333pt;}
.y254{bottom:424.875867pt;}
.y220{bottom:426.544400pt;}
.y1b3{bottom:426.764400pt;}
.y18b{bottom:426.764533pt;}
.y91{bottom:428.902667pt;}
.y6d{bottom:431.487200pt;}
.y239{bottom:431.501867pt;}
.y283{bottom:432.892933pt;}
.y1c{bottom:433.374267pt;}
.y109{bottom:434.659000pt;}
.yfb{bottom:434.772533pt;}
.y43{bottom:438.528667pt;}
.y253{bottom:439.201867pt;}
.y1f7{bottom:439.495067pt;}
.yde{bottom:439.495200pt;}
.y175{bottom:439.501867pt;}
.y1cf{bottom:439.503333pt;}
.y14c{bottom:439.504667pt;}
.y21f{bottom:442.780400pt;}
.yb8{bottom:442.780533pt;}
.y1b2{bottom:443.000400pt;}
.y90{bottom:445.270667pt;}
.y282{bottom:447.218933pt;}
.y108{bottom:447.457333pt;}
.y6c{bottom:447.488533pt;}
.y238{bottom:447.503200pt;}
.yfa{bottom:451.008533pt;}
.y252{bottom:453.527867pt;}
.y42{bottom:454.530000pt;}
.y1f6{bottom:455.496400pt;}
.ydd{bottom:455.496533pt;}
.y174{bottom:455.503200pt;}
.y1ce{bottom:455.504667pt;}
.y14b{bottom:455.506000pt;}
.y1b{bottom:457.587333pt;}
.y21e{bottom:459.016400pt;}
.yb7{bottom:459.016533pt;}
.y107{bottom:460.255667pt;}
.y281{bottom:461.544933pt;}
.y8f{bottom:461.638667pt;}
.y6b{bottom:463.489867pt;}
.y1b1{bottom:467.244400pt;}
.yf9{bottom:467.244533pt;}
.y251{bottom:467.853867pt;}
.y41{bottom:470.531333pt;}
.y1a{bottom:470.699333pt;}
.y1f5{bottom:471.497733pt;}
.ydc{bottom:471.497867pt;}
.y173{bottom:471.504533pt;}
.y12c{bottom:471.506000pt;}
.y21d{bottom:475.252400pt;}
.yb6{bottom:475.252533pt;}
.y280{bottom:475.870933pt;}
.y106{bottom:476.554000pt;}
.y8e{bottom:478.006667pt;}
.y6a{bottom:479.491200pt;}
.y19{bottom:480.035333pt;}
.y1b0{bottom:483.480400pt;}
.yf8{bottom:483.480533pt;}
.y1f4{bottom:487.499067pt;}
.ydb{bottom:487.499200pt;}
.y14a{bottom:487.503200pt;}
.y172{bottom:487.505867pt;}
.y12b{bottom:487.507333pt;}
.y18{bottom:489.371333pt;}
.y250{bottom:490.175067pt;}
.y27f{bottom:490.196933pt;}
.y21c{bottom:491.488400pt;}
.yb5{bottom:491.488533pt;}
.y8d{bottom:494.374667pt;}
.y40{bottom:494.526000pt;}
.y69{bottom:495.492533pt;}
.y17{bottom:498.707333pt;}
.y1af{bottom:499.716400pt;}
.yf7{bottom:499.716533pt;}
.y1f3{bottom:503.500400pt;}
.yda{bottom:503.500533pt;}
.y171{bottom:503.507200pt;}
.y12a{bottom:503.508667pt;}
.y27e{bottom:504.522933pt;}
.y149{bottom:506.175200pt;}
.y21b{bottom:507.724400pt;}
.yb4{bottom:507.724533pt;}
.y16{bottom:508.043333pt;}
.y3f{bottom:510.527333pt;}
.y68{bottom:511.493867pt;}
.y1cd{bottom:511.502000pt;}
.y1ae{bottom:515.952400pt;}
.yf6{bottom:515.952533pt;}
.y15{bottom:517.379333pt;}
.y8c{bottom:518.736000pt;}
.y27d{bottom:518.848933pt;}
.y1f2{bottom:519.501733pt;}
.yd9{bottom:519.501867pt;}
.y105{bottom:519.507333pt;}
.y170{bottom:519.508533pt;}
.y129{bottom:519.510000pt;}
.y21a{bottom:523.960400pt;}
.yb3{bottom:523.960533pt;}
.y3e{bottom:526.528667pt;}
.y67{bottom:527.495200pt;}
.y1cc{bottom:527.503333pt;}
.y1ad{bottom:532.188400pt;}
.yf5{bottom:532.188533pt;}
.y14{bottom:532.718133pt;}
.y27c{bottom:533.174933pt;}
.y8b{bottom:535.104000pt;}
.y1f1{bottom:535.503067pt;}
.yd8{bottom:535.503200pt;}
.y104{bottom:535.508667pt;}
.y16f{bottom:535.509867pt;}
.y128{bottom:535.511333pt;}
.y219{bottom:540.196400pt;}
.yb2{bottom:540.196533pt;}
.y3d{bottom:542.530000pt;}
.y24f{bottom:543.496400pt;}
.y66{bottom:543.496533pt;}
.y1cb{bottom:543.504667pt;}
.y27b{bottom:547.500933pt;}
.y1ac{bottom:548.424400pt;}
.yf4{bottom:548.424533pt;}
.y8a{bottom:551.472000pt;}
.y1f0{bottom:551.504400pt;}
.y237{bottom:551.504533pt;}
.y103{bottom:551.510000pt;}
.y16e{bottom:551.511200pt;}
.y127{bottom:551.512667pt;}
.yb1{bottom:556.432533pt;}
.y3c{bottom:558.531333pt;}
.y24e{bottom:559.497733pt;}
.y65{bottom:559.497867pt;}
.y148{bottom:559.504667pt;}
.y1ca{bottom:559.506000pt;}
.y13{bottom:560.723200pt;}
.y27a{bottom:561.826933pt;}
.y218{bottom:564.440400pt;}
.y1ab{bottom:564.660400pt;}
.yf3{bottom:564.660533pt;}
.y1ef{bottom:567.505733pt;}
.y236{bottom:567.505867pt;}
.y102{bottom:567.511333pt;}
.y89{bottom:567.840000pt;}
.yb0{bottom:572.668533pt;}
.y3b{bottom:574.532667pt;}
.y24d{bottom:575.499067pt;}
.yd7{bottom:575.499200pt;}
.y126{bottom:575.503333pt;}
.y16d{bottom:575.505867pt;}
.y147{bottom:575.506000pt;}
.y1c9{bottom:575.507333pt;}
.y279{bottom:576.152933pt;}
.y217{bottom:580.676400pt;}
.y163{bottom:580.676533pt;}
.y18a{bottom:580.896533pt;}
.y64{bottom:583.492533pt;}
.y1ee{bottom:583.507067pt;}
.y235{bottom:583.507200pt;}
.y101{bottom:583.512667pt;}
.y88{bottom:584.208000pt;}
.y12{bottom:584.723200pt;}
.y1aa{bottom:588.904400pt;}
.yaf{bottom:588.904533pt;}
.y278{bottom:590.478933pt;}
.y3a{bottom:590.534000pt;}
.y24c{bottom:591.500400pt;}
.yd6{bottom:591.500533pt;}
.y125{bottom:591.504667pt;}
.y146{bottom:591.506000pt;}
.y16c{bottom:591.507200pt;}
.y216{bottom:596.912400pt;}
.y162{bottom:596.912533pt;}
.y63{bottom:599.493867pt;}
.y234{bottom:599.508533pt;}
.y87{bottom:600.576000pt;}
.y277{bottom:604.804933pt;}
.y1a9{bottom:605.140400pt;}
.yae{bottom:605.140533pt;}
.y39{bottom:606.535333pt;}
.y1ed{bottom:607.501733pt;}
.yd5{bottom:607.501867pt;}
.y100{bottom:607.503333pt;}
.y1c8{bottom:607.504533pt;}
.y124{bottom:607.506000pt;}
.y16b{bottom:607.508533pt;}
.y11{bottom:612.067200pt;}
.y215{bottom:613.148400pt;}
.y161{bottom:613.148533pt;}
.y62{bottom:615.495200pt;}
.y276{bottom:619.130933pt;}
.y1a8{bottom:621.376400pt;}
.yad{bottom:621.376533pt;}
.y1ec{bottom:623.503067pt;}
.yd4{bottom:623.503200pt;}
.yff{bottom:623.504667pt;}
.y16a{bottom:623.509867pt;}
.y86{bottom:624.937333pt;}
.y1c7{bottom:626.176533pt;}
.y214{bottom:629.384400pt;}
.y160{bottom:629.384533pt;}
.y10{bottom:629.395200pt;}
.y38{bottom:630.530000pt;}
.y61{bottom:631.496533pt;}
.y275{bottom:633.456933pt;}
.y1a7{bottom:637.612400pt;}
.yac{bottom:637.612533pt;}
.y1eb{bottom:639.504400pt;}
.yd3{bottom:639.504533pt;}
.yfe{bottom:639.506000pt;}
.y169{bottom:639.511200pt;}
.y85{bottom:641.305333pt;}
.y213{bottom:645.620400pt;}
.y15f{bottom:645.620533pt;}
.y37{bottom:646.531333pt;}
.y60{bottom:647.497867pt;}
.y274{bottom:647.782933pt;}
.y1a6{bottom:653.848400pt;}
.yab{bottom:653.848533pt;}
.y1ea{bottom:655.505733pt;}
.yd2{bottom:655.505867pt;}
.y145{bottom:655.507200pt;}
.yfd{bottom:655.512533pt;}
.y84{bottom:657.673333pt;}
.yf{bottom:658.067067pt;}
.y212{bottom:661.856400pt;}
.y13a{bottom:661.856533pt;}
.y273{bottom:662.108933pt;}
.y36{bottom:662.532667pt;}
.y5f{bottom:663.499200pt;}
.y1a5{bottom:670.084400pt;}
.yaa{bottom:670.084533pt;}
.y1e9{bottom:671.507067pt;}
.yd1{bottom:671.507200pt;}
.y144{bottom:671.508533pt;}
.yfc{bottom:671.513867pt;}
.y83{bottom:674.041333pt;}
.y272{bottom:676.434933pt;}
.y211{bottom:678.092400pt;}
.yf2{bottom:678.092533pt;}
.y35{bottom:678.534000pt;}
.y5e{bottom:679.500533pt;}
.y168{bottom:679.507200pt;}
.ye{bottom:682.067067pt;}
.y1a4{bottom:686.320400pt;}
.ya9{bottom:686.320533pt;}
.y24b{bottom:687.508400pt;}
.yd0{bottom:687.508533pt;}
.y143{bottom:687.509867pt;}
.y82{bottom:690.409333pt;}
.y271{bottom:690.760933pt;}
.y210{bottom:694.328400pt;}
.yf1{bottom:694.328533pt;}
.y34{bottom:694.535333pt;}
.y1e8{bottom:695.501733pt;}
.y5d{bottom:695.501867pt;}
.y1a3{bottom:702.556400pt;}
.ya8{bottom:702.556533pt;}
.y24a{bottom:703.509733pt;}
.ycf{bottom:703.509867pt;}
.y142{bottom:703.511200pt;}
.y270{bottom:705.086933pt;}
.yd{bottom:706.067067pt;}
.y81{bottom:706.777333pt;}
.y33{bottom:710.536667pt;}
.y20f{bottom:710.564400pt;}
.yf0{bottom:710.564533pt;}
.y1e7{bottom:711.503067pt;}
.y5c{bottom:711.503200pt;}
.y1a2{bottom:718.792400pt;}
.y189{bottom:718.792533pt;}
.y26f{bottom:719.412933pt;}
.y249{bottom:719.511067pt;}
.yce{bottom:719.511200pt;}
.y141{bottom:719.512533pt;}
.y80{bottom:723.145333pt;}
.y32{bottom:726.538000pt;}
.y20e{bottom:726.800400pt;}
.ya7{bottom:726.800533pt;}
.y1e6{bottom:727.504400pt;}
.y5b{bottom:727.504533pt;}
.yc{bottom:730.067067pt;}
.y26e{bottom:733.738933pt;}
.y1a1{bottom:735.028400pt;}
.y188{bottom:735.028533pt;}
.y248{bottom:735.512400pt;}
.ycd{bottom:735.512533pt;}
.y140{bottom:735.513867pt;}
.y31{bottom:742.539333pt;}
.y20d{bottom:743.036400pt;}
.ya6{bottom:743.036533pt;}
.y1e5{bottom:743.505733pt;}
.y5a{bottom:743.505867pt;}
.y26d{bottom:748.064933pt;}
.y7f{bottom:755.517867pt;}
.y1a0{bottom:759.272400pt;}
.ya5{bottom:759.272533pt;}
.y1e4{bottom:759.507067pt;}
.y59{bottom:759.507200pt;}
.y26c{bottom:762.390933pt;}
.y30{bottom:774.541867pt;}
.y19f{bottom:775.508400pt;}
.y58{bottom:775.508533pt;}
.y26b{bottom:776.716933pt;}
.y1{bottom:793.537733pt;}
.y2e{bottom:808.818800pt;}
.yb{bottom:824.358667pt;}
.ya{bottom:836.358667pt;}
.he{height:26.273333pt;}
.hd{height:26.912000pt;}
.h5{height:27.477333pt;}
.hc{height:27.616000pt;}
.h3{height:27.738667pt;}
.h4{height:28.000000pt;}
.h2{height:31.402667pt;}
.ha{height:32.405333pt;}
.h10{height:36.821333pt;}
.hf{height:40.273333pt;}
.h9{height:41.424000pt;}
.h1a{height:43.732000pt;}
.h19{height:44.876000pt;}
.h8{height:50.629333pt;}
.h17{height:50.629867pt;}
.h16{height:50.634667pt;}
.h18{height:50.640000pt;}
.h13{height:50.645333pt;}
.h14{height:50.645867pt;}
.h12{height:50.656000pt;}
.h15{height:50.715733pt;}
.h7{height:53.824000pt;}
.h11{height:55.552000pt;}
.hb{height:60.166667pt;}
.h6{height:69.440000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:94.488133pt;}
.x7{left:96.734400pt;}
.xa{left:99.744000pt;}
.x9{left:100.954400pt;}
.x6{left:107.534400pt;}
.x11{left:113.385733pt;}
.x13{left:114.488133pt;}
.x3{left:117.168133pt;}
.x8{left:129.594400pt;}
.x4{left:147.960400pt;}
.x5{left:152.960400pt;}
.xb{left:205.088000pt;}
.xd{left:247.959067pt;}
.xc{left:256.500267pt;}
.x10{left:293.722267pt;}
.xf{left:297.007600pt;}
.xe{left:298.631600pt;}
.x1{left:395.821333pt;}
.x12{left:405.526400pt;}
}




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