
    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_96582abe1458cfd2ba2b841e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_b6b64364273b6593060c0c87.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1e3be22aa887b6990e7f7a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_b7b2a325657bb0be190406a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_697e1fe23e166e14dfca8b41.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_4307e4333cc8623c28acc3c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.748000;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_39e107cd067b5f739237cd12.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_cbc246c673b44873b6e0c564.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_b6b64364273b6593060c0c87.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_30351041cad2f2ff0a474e97.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728000;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_2fcbbefe5d316990ce0e2310.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;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_dc625fd5f6a9d31f0597cc23.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-0.900000px;}
.ls40{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.192000px;}
.ls47{letter-spacing:-0.120000px;}
.lsa{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.027000px;}
.ls25{letter-spacing:0.030000px;}
.ls17{letter-spacing:0.060000px;}
.ls36{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.204000px;}
.ls1e{letter-spacing:0.207000px;}
.ls3{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.330000px;}
.ls32{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.384000px;}
.ls23{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.480000px;}
.ls46{letter-spacing:0.510000px;}
.ls18{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.600000px;}
.ls3c{letter-spacing:0.630000px;}
.ls28{letter-spacing:0.660000px;}
.ls2b{letter-spacing:0.690000px;}
.ls2d{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.750000px;}
.ls12{letter-spacing:0.780000px;}
.ls3f{letter-spacing:0.840000px;}
.ls2a{letter-spacing:0.900000px;}
.ls26{letter-spacing:0.960000px;}
.ls2e{letter-spacing:0.990000px;}
.ls7{letter-spacing:1.020000px;}
.ls44{letter-spacing:1.050000px;}
.ls29{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.110000px;}
.ls24{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.152000px;}
.ls1c{letter-spacing:1.170000px;}
.lsf{letter-spacing:1.200000px;}
.ls27{letter-spacing:1.260000px;}
.ls20{letter-spacing:1.320000px;}
.ls13{letter-spacing:1.380000px;}
.ls10{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.560000px;}
.ls38{letter-spacing:1.590000px;}
.ls43{letter-spacing:1.620000px;}
.ls39{letter-spacing:1.740000px;}
.ls41{letter-spacing:1.800000px;}
.ls1{letter-spacing:1.824000px;}
.ls49{letter-spacing:1.860000px;}
.ls2f{letter-spacing:1.920000px;}
.ls1a{letter-spacing:1.980000px;}
.ls35{letter-spacing:2.010000px;}
.ls45{letter-spacing:2.040000px;}
.ls11{letter-spacing:2.070000px;}
.ls30{letter-spacing:2.100000px;}
.ls3e{letter-spacing:2.160000px;}
.ls3b{letter-spacing:2.220000px;}
.ls4b{letter-spacing:2.304000px;}
.ls42{letter-spacing:2.340000px;}
.ls37{letter-spacing:2.400000px;}
.ls8{letter-spacing:2.520000px;}
.ls3a{letter-spacing:2.550000px;}
.ls4a{letter-spacing:2.640000px;}
.ls3d{letter-spacing:2.820000px;}
.ls9{letter-spacing:12.510000px;}
.ls19{letter-spacing:1928.352000px;}
.lsc{letter-spacing:2033.050800px;}
.ls0{letter-spacing:2765.404800px;}
.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:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.ws12{word-spacing:-18.348000px;}
.ws3d{word-spacing:-17.400000px;}
.ws62{word-spacing:-17.160000px;}
.ws9a{word-spacing:-17.100000px;}
.ws58{word-spacing:-17.040000px;}
.ws2{word-spacing:-16.920000px;}
.ws2d{word-spacing:-16.860000px;}
.ws2e{word-spacing:-16.740000px;}
.ws13{word-spacing:-16.680000px;}
.ws8a{word-spacing:-16.380000px;}
.ws25{word-spacing:-14.178000px;}
.ws11{word-spacing:-2.520000px;}
.ws5{word-spacing:-1.824000px;}
.wsa2{word-spacing:-1.800000px;}
.wsa0{word-spacing:-1.380000px;}
.wsa6{word-spacing:-1.320000px;}
.ws9f{word-spacing:-1.200000px;}
.ws4d{word-spacing:-0.720000px;}
.ws9d{word-spacing:-0.600000px;}
.ws9b{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.300000px;}
.ws2c{word-spacing:-0.252000px;}
.ws83{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.072000px;}
.ws2b{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws24{word-spacing:0.060000px;}
.wsa7{word-spacing:0.120000px;}
.ws38{word-spacing:0.180000px;}
.ws8{word-spacing:0.192000px;}
.ws61{word-spacing:0.240000px;}
.ws98{word-spacing:0.300000px;}
.wsa4{word-spacing:0.360000px;}
.wsa{word-spacing:0.420000px;}
.ws4f{word-spacing:0.540000px;}
.ws2f{word-spacing:0.600000px;}
.ws80{word-spacing:0.660000px;}
.ws3b{word-spacing:0.720000px;}
.ws21{word-spacing:0.780000px;}
.ws76{word-spacing:0.840000px;}
.ws27{word-spacing:0.900000px;}
.ws6b{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.ws14{word-spacing:1.080000px;}
.ws37{word-spacing:1.140000px;}
.ws6e{word-spacing:1.200000px;}
.ws8d{word-spacing:1.260000px;}
.ws89{word-spacing:1.320000px;}
.ws46{word-spacing:1.380000px;}
.ws54{word-spacing:1.440000px;}
.ws3c{word-spacing:1.500000px;}
.ws36{word-spacing:1.560000px;}
.ws9c{word-spacing:1.620000px;}
.ws1f{word-spacing:1.680000px;}
.wse{word-spacing:1.740000px;}
.ws56{word-spacing:1.800000px;}
.ws96{word-spacing:1.860000px;}
.ws7{word-spacing:1.872000px;}
.wsf{word-spacing:1.920000px;}
.ws23{word-spacing:2.040000px;}
.ws8b{word-spacing:2.100000px;}
.ws73{word-spacing:2.160000px;}
.ws93{word-spacing:2.220000px;}
.ws55{word-spacing:2.280000px;}
.ws4a{word-spacing:2.340000px;}
.ws33{word-spacing:2.400000px;}
.ws57{word-spacing:2.460000px;}
.ws40{word-spacing:2.520000px;}
.ws82{word-spacing:2.580000px;}
.ws97{word-spacing:2.640000px;}
.ws1a{word-spacing:2.700000px;}
.ws77{word-spacing:2.760000px;}
.ws47{word-spacing:2.820000px;}
.ws31{word-spacing:2.880000px;}
.ws9{word-spacing:2.928000px;}
.ws99{word-spacing:2.940000px;}
.ws3e{word-spacing:3.000000px;}
.ws8e{word-spacing:3.060000px;}
.ws71{word-spacing:3.120000px;}
.ws63{word-spacing:3.180000px;}
.ws8f{word-spacing:3.240000px;}
.ws18{word-spacing:3.300000px;}
.ws49{word-spacing:3.360000px;}
.ws90{word-spacing:3.540000px;}
.ws29{word-spacing:3.600000px;}
.ws75{word-spacing:3.660000px;}
.ws6a{word-spacing:3.780000px;}
.ws64{word-spacing:3.840000px;}
.ws4b{word-spacing:3.900000px;}
.ws4e{word-spacing:3.960000px;}
.ws68{word-spacing:4.020000px;}
.wsc{word-spacing:4.080000px;}
.ws81{word-spacing:4.140000px;}
.ws65{word-spacing:4.200000px;}
.ws53{word-spacing:4.260000px;}
.ws43{word-spacing:4.320000px;}
.ws67{word-spacing:4.380000px;}
.ws3a{word-spacing:4.500000px;}
.ws15{word-spacing:4.560000px;}
.ws20{word-spacing:4.620000px;}
.ws88{word-spacing:4.680000px;}
.ws79{word-spacing:4.800000px;}
.ws17{word-spacing:4.860000px;}
.ws66{word-spacing:4.920000px;}
.wsd{word-spacing:4.980000px;}
.ws50{word-spacing:5.040000px;}
.ws26{word-spacing:5.100000px;}
.ws5c{word-spacing:5.160000px;}
.ws1e{word-spacing:5.220000px;}
.wsa3{word-spacing:5.280000px;}
.ws5a{word-spacing:5.340000px;}
.ws16{word-spacing:5.400000px;}
.ws30{word-spacing:5.460000px;}
.ws6c{word-spacing:5.520000px;}
.ws52{word-spacing:5.580000px;}
.ws35{word-spacing:5.640000px;}
.ws44{word-spacing:5.700000px;}
.ws8c{word-spacing:5.760000px;}
.wsa5{word-spacing:5.880000px;}
.ws70{word-spacing:5.940000px;}
.ws5b{word-spacing:6.060000px;}
.ws1c{word-spacing:6.120000px;}
.ws19{word-spacing:6.180000px;}
.ws1d{word-spacing:6.240000px;}
.ws42{word-spacing:6.360000px;}
.ws45{word-spacing:6.420000px;}
.ws86{word-spacing:6.480000px;}
.wsa1{word-spacing:6.540000px;}
.ws7b{word-spacing:6.600000px;}
.ws6{word-spacing:6.672000px;}
.ws9e{word-spacing:6.720000px;}
.ws7e{word-spacing:6.780000px;}
.ws74{word-spacing:6.840000px;}
.ws4c{word-spacing:6.900000px;}
.ws22{word-spacing:6.960000px;}
.ws3f{word-spacing:7.020000px;}
.ws7c{word-spacing:7.080000px;}
.ws7d{word-spacing:7.140000px;}
.ws34{word-spacing:7.200000px;}
.ws87{word-spacing:7.320000px;}
.ws39{word-spacing:7.380000px;}
.ws41{word-spacing:7.440000px;}
.ws6d{word-spacing:7.500000px;}
.ws60{word-spacing:7.620000px;}
.ws7a{word-spacing:7.680000px;}
.ws91{word-spacing:7.740000px;}
.ws69{word-spacing:7.800000px;}
.ws5f{word-spacing:7.860000px;}
.ws5d{word-spacing:7.920000px;}
.ws5e{word-spacing:7.980000px;}
.ws48{word-spacing:8.040000px;}
.ws78{word-spacing:8.100000px;}
.ws6f{word-spacing:8.160000px;}
.ws72{word-spacing:8.220000px;}
.ws51{word-spacing:8.280000px;}
.wsb{word-spacing:8.340000px;}
.ws32{word-spacing:8.400000px;}
.ws10{word-spacing:8.442000px;}
.ws7f{word-spacing:8.460000px;}
.ws94{word-spacing:8.760000px;}
.ws85{word-spacing:9.360000px;}
.ws4{word-spacing:10.008000px;}
.ws84{word-spacing:11.988000px;}
.ws92{word-spacing:14.652000px;}
.ws95{word-spacing:17.316000px;}
._4{margin-left:-20.100000px;}
._13{margin-left:-16.680000px;}
._e{margin-left:-11.988000px;}
._5{margin-left:-9.324000px;}
._12{margin-left:-8.220000px;}
._11{margin-left:-6.720000px;}
._10{margin-left:-4.800000px;}
._f{margin-left:-2.826000px;}
._1{margin-left:-1.824000px;}
._b{width:1.020000px;}
._6{width:2.718000px;}
._0{width:3.888000px;}
._d{width:5.148000px;}
._7{width:6.234000px;}
._2{width:7.872000px;}
._c{width:9.036000px;}
._3{width:11.676000px;}
._8{width:13.986000px;}
._a{width:15.984000px;}
._9{width:17.316000px;}
._14{width:25.320000px;}
.fc1{color:rgb(180,141,14);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y16d{bottom:138.229050px;}
.y207{bottom:138.467850px;}
.y1d2{bottom:138.724050px;}
.y124{bottom:139.068900px;}
.yd9{bottom:139.385250px;}
.y22c{bottom:139.440750px;}
.y8e{bottom:139.504650px;}
.y299{bottom:139.532100px;}
.y1ee{bottom:139.537350px;}
.y18f{bottom:139.687200px;}
.y265{bottom:139.933200px;}
.y100{bottom:139.955400px;}
.y24c{bottom:139.963050px;}
.y1ba{bottom:140.281500px;}
.y2f{bottom:140.313450px;}
.y2a8{bottom:140.822850px;}
.yb0{bottom:141.356550px;}
.y66{bottom:150.436800px;}
.y2e{bottom:152.314950px;}
.y1b1{bottom:158.325450px;}
.yaf{bottom:158.951550px;}
.y16c{bottom:159.019050px;}
.y206{bottom:159.257850px;}
.y1d1{bottom:159.514050px;}
.y123{bottom:159.858900px;}
.yd8{bottom:160.175250px;}
.y22b{bottom:160.230750px;}
.y8d{bottom:160.294650px;}
.y298{bottom:160.322100px;}
.y1ed{bottom:160.327350px;}
.y143{bottom:160.408950px;}
.y18e{bottom:160.477200px;}
.y264{bottom:160.723200px;}
.yff{bottom:160.745400px;}
.y24b{bottom:160.753050px;}
.y2a7{bottom:161.612850px;}
.y2d{bottom:170.695350px;}
.y65{bottom:171.226800px;}
.yae{bottom:176.546550px;}
.y1b0{bottom:179.115450px;}
.y16b{bottom:179.809050px;}
.y205{bottom:180.047850px;}
.y1d0{bottom:180.304050px;}
.y122{bottom:180.648900px;}
.yd7{bottom:180.965250px;}
.y22a{bottom:181.020750px;}
.y8c{bottom:181.084650px;}
.y297{bottom:181.112100px;}
.y142{bottom:181.198950px;}
.yfe{bottom:181.535400px;}
.y24a{bottom:181.543050px;}
.y2aa{bottom:182.402850px;}
.y2c{bottom:188.251350px;}
.y1ec{bottom:191.508300px;}
.y18d{bottom:191.662200px;}
.y64{bottom:192.016800px;}
.y2a6{bottom:192.797850px;}
.yad{bottom:194.141550px;}
.y1af{bottom:199.905450px;}
.y16a{bottom:200.599050px;}
.y204{bottom:200.837850px;}
.yd6{bottom:201.755250px;}
.y8b{bottom:201.874650px;}
.y141{bottom:201.988950px;}
.yfd{bottom:202.325400px;}
.y249{bottom:202.333050px;}
.y1cf{bottom:205.339050px;}
.y2b{bottom:205.807350px;}
.y263{bottom:208.912050px;}
.y229{bottom:210.315750px;}
.y296{bottom:211.247100px;}
.y121{bottom:211.829850px;}
.y18c{bottom:212.452200px;}
.y63{bottom:212.806800px;}
.y272{bottom:213.587850px;}
.y2a{bottom:216.989850px;}
.y1ae{bottom:220.695450px;}
.y169{bottom:221.389050px;}
.y203{bottom:221.627850px;}
.yd5{bottom:222.545250px;}
.y140{bottom:222.778950px;}
.y248{bottom:223.123050px;}
.y1ce{bottom:226.129050px;}
.y228{bottom:231.105750px;}
.y295{bottom:232.037100px;}
.y29{bottom:232.424850px;}
.yac{bottom:232.526550px;}
.y8a{bottom:233.059650px;}
.y18b{bottom:233.242200px;}
.yfc{bottom:233.510400px;}
.y271{bottom:234.377850px;}
.y1ad{bottom:241.485450px;}
.y168{bottom:242.179050px;}
.y202{bottom:242.417850px;}
.yd4{bottom:243.335250px;}
.y13f{bottom:243.568950px;}
.y62{bottom:248.239800px;}
.y227{bottom:251.895750px;}
.y247{bottom:252.418050px;}
.y294{bottom:252.827100px;}
.yab{bottom:253.316550px;}
.y89{bottom:253.849650px;}
.yfb{bottom:254.300400px;}
.y1eb{bottom:254.786850px;}
.y270{bottom:255.167850px;}
.y1ac{bottom:262.275450px;}
.y167{bottom:262.969050px;}
.y13e{bottom:264.358950px;}
.y2a5{bottom:265.562850px;}
.y1cd{bottom:267.709050px;}
.y18a{bottom:268.675200px;}
.y226{bottom:272.685750px;}
.y246{bottom:273.208050px;}
.yaa{bottom:274.106550px;}
.yd3{bottom:274.520250px;}
.y88{bottom:274.639650px;}
.y120{bottom:275.068500px;}
.yfa{bottom:275.090400px;}
.y1ea{bottom:275.576850px;}
.y26f{bottom:275.957850px;}
.y293{bottom:282.962100px;}
.y1ab{bottom:283.065450px;}
.y166{bottom:283.759050px;}
.y13d{bottom:285.148950px;}
.y262{bottom:285.461400px;}
.y201{bottom:286.352850px;}
.y1cc{bottom:288.499050px;}
.y245{bottom:293.998050px;}
.ya9{bottom:294.896550px;}
.yd2{bottom:295.310250px;}
.y87{bottom:295.429650px;}
.y11f{bottom:295.858500px;}
.yf9{bottom:295.880400px;}
.y1e9{bottom:296.366850px;}
.y26e{bottom:296.747850px;}
.y225{bottom:301.980750px;}
.y28{bottom:303.011550px;}
.y292{bottom:303.752100px;}
.y1aa{bottom:303.855450px;}
.y261{bottom:306.251400px;}
.y200{bottom:307.142850px;}
.y1cb{bottom:309.289050px;}
.y244{bottom:314.788050px;}
.y165{bottom:314.940000px;}
.ya8{bottom:315.686550px;}
.yd1{bottom:316.100250px;}
.y56{bottom:316.157850px;}
.y86{bottom:316.219650px;}
.y13c{bottom:316.333950px;}
.y11e{bottom:316.648500px;}
.yf8{bottom:316.670400px;}
.y1e8{bottom:317.156850px;}
.y26d{bottom:317.537850px;}
.y61{bottom:320.038350px;}
.y224{bottom:322.770750px;}
.y27{bottom:323.801550px;}
.y260{bottom:327.041400px;}
.y1ff{bottom:327.932850px;}
.y1ca{bottom:330.079050px;}
.y291{bottom:333.887100px;}
.y1a9{bottom:335.040450px;}
.y243{bottom:335.578050px;}
.ya7{bottom:336.476550px;}
.yd0{bottom:336.890250px;}
.y55{bottom:336.947850px;}
.y85{bottom:337.009650px;}
.y13b{bottom:337.123950px;}
.y11d{bottom:337.438500px;}
.yf7{bottom:337.460400px;}
.y1e7{bottom:337.946850px;}
.y26c{bottom:338.327850px;}
.y189{bottom:340.410600px;}
.y60{bottom:340.828350px;}
.y223{bottom:343.560750px;}
.y26{bottom:344.591550px;}
.y25f{bottom:347.831400px;}
.y1fe{bottom:348.722850px;}
.y290{bottom:354.677100px;}
.y1a8{bottom:355.830450px;}
.ya6{bottom:357.266550px;}
.ycf{bottom:357.680250px;}
.y54{bottom:357.737850px;}
.y84{bottom:357.799650px;}
.y13a{bottom:357.913950px;}
.y11c{bottom:358.228500px;}
.yf6{bottom:358.250400px;}
.y26b{bottom:359.117850px;}
.y188{bottom:361.200600px;}
.y1c9{bottom:361.264050px;}
.y5f{bottom:361.618350px;}
.y222{bottom:364.350750px;}
.y242{bottom:364.873050px;}
.y25{bottom:365.381550px;}
.y25e{bottom:368.621400px;}
.y1e6{bottom:369.131850px;}
.y1fd{bottom:369.512850px;}
.y28f{bottom:375.467100px;}
.y1a7{bottom:376.620450px;}
.ya5{bottom:378.056550px;}
.y164{bottom:378.153600px;}
.yce{bottom:378.470250px;}
.y83{bottom:378.589650px;}
.y139{bottom:378.703950px;}
.y11b{bottom:379.018500px;}
.yf5{bottom:379.040400px;}
.y2a4{bottom:379.907850px;}
.y187{bottom:381.990600px;}
.y1c8{bottom:382.054050px;}
.y5e{bottom:382.408350px;}
.y241{bottom:385.663050px;}
.y24{bottom:386.171550px;}
.y25d{bottom:389.411400px;}
.y1e5{bottom:389.921850px;}
.y1fc{bottom:390.302850px;}
.y53{bottom:391.277850px;}
.y221{bottom:393.645750px;}
.y1a6{bottom:397.410450px;}
.ya4{bottom:398.846550px;}
.y163{bottom:398.943600px;}
.ycd{bottom:399.260250px;}
.y82{bottom:399.363600px;}
.yf4{bottom:399.830400px;}
.y2a3{bottom:400.697850px;}
.y186{bottom:402.780600px;}
.y1c7{bottom:402.844050px;}
.y5d{bottom:403.198350px;}
.y28e{bottom:405.602100px;}
.y240{bottom:406.453050px;}
.y23{bottom:406.961550px;}
.y138{bottom:409.888950px;}
.y11a{bottom:410.203500px;}
.y1e4{bottom:410.711850px;}
.y1fb{bottom:411.092850px;}
.y52{bottom:412.067850px;}
.y220{bottom:414.435750px;}
.y1a5{bottom:418.200450px;}
.ya3{bottom:419.636550px;}
.y162{bottom:419.733600px;}
.y81{bottom:420.153600px;}
.y25c{bottom:420.596400px;}
.yf3{bottom:420.620400px;}
.y2a2{bottom:421.487850px;}
.y23f{bottom:427.243050px;}
.y22{bottom:427.751550px;}
.y137{bottom:430.678950px;}
.y119{bottom:430.993500px;}
.y1e3{bottom:431.501850px;}
.y1fa{bottom:431.882850px;}
.y51{bottom:432.857850px;}
.y185{bottom:433.965600px;}
.ycc{bottom:434.693250px;}
.y21f{bottom:435.225750px;}
.y28d{bottom:435.737100px;}
.ya2{bottom:440.426550px;}
.y161{bottom:440.523600px;}
.y25b{bottom:441.386400px;}
.y1c6{bottom:444.424050px;}
.y5c{bottom:449.261100px;}
.y80{bottom:451.338600px;}
.y136{bottom:451.468950px;}
.y118{bottom:451.783500px;}
.yf2{bottom:451.805400px;}
.y1e2{bottom:452.291850px;}
.y1f9{bottom:452.672850px;}
.y50{bottom:453.647850px;}
.y184{bottom:454.755600px;}
.y21e{bottom:456.015750px;}
.y28c{bottom:456.527100px;}
.y1a4{bottom:459.780450px;}
.ya1{bottom:461.216550px;}
.y160{bottom:461.313600px;}
.y25a{bottom:462.176400px;}
.y1c5{bottom:465.214050px;}
.y23e{bottom:468.823050px;}
.y7f{bottom:472.128600px;}
.y135{bottom:472.258950px;}
.y117{bottom:472.573500px;}
.yf1{bottom:472.595400px;}
.y26a{bottom:473.462850px;}
.y21{bottom:473.814300px;}
.y183{bottom:475.545600px;}
.y21d{bottom:476.805750px;}
.ya0{bottom:482.006550px;}
.y15f{bottom:482.103600px;}
.y259{bottom:482.966400px;}
.y1e1{bottom:483.472800px;}
.y1f8{bottom:483.857850px;}
.y28b{bottom:486.662100px;}
.y4f{bottom:487.187850px;}
.y23d{bottom:489.613050px;}
.y1c4{bottom:490.684050px;}
.y1a3{bottom:490.965450px;}
.y7e{bottom:492.918600px;}
.y134{bottom:493.048950px;}
.y116{bottom:493.363500px;}
.yf0{bottom:493.385400px;}
.y269{bottom:494.252850px;}
.y182{bottom:496.335600px;}
.y15e{bottom:502.893600px;}
.ycb{bottom:503.087850px;}
.y258{bottom:503.756400px;}
.y1f7{bottom:504.647850px;}
.y21c{bottom:506.100750px;}
.y28a{bottom:507.452100px;}
.y4e{bottom:507.977850px;}
.y1c3{bottom:511.474050px;}
.y9f{bottom:513.191550px;}
.y7d{bottom:513.708600px;}
.y133{bottom:513.838950px;}
.y115{bottom:514.153500px;}
.yef{bottom:514.175400px;}
.y268{bottom:515.042850px;}
.y181{bottom:517.125600px;}
.y23c{bottom:520.794000px;}
.y1a2{bottom:522.150450px;}
.y15d{bottom:523.683600px;}
.yca{bottom:523.877850px;}
.y257{bottom:524.546400px;}
.y1f6{bottom:525.437850px;}
.y21b{bottom:526.890750px;}
.y289{bottom:528.242100px;}
.y4d{bottom:528.767850px;}
.y9e{bottom:533.981550px;}
.y132{bottom:534.628950px;}
.y114{bottom:534.943500px;}
.yee{bottom:534.965400px;}
.y267{bottom:535.832850px;}
.y1c2{bottom:536.944050px;}
.y180{bottom:537.915600px;}
.y5b{bottom:538.627650px;}
.y1e0{bottom:544.638600px;}
.yc9{bottom:544.667850px;}
.y2a1{bottom:546.227850px;}
.y21a{bottom:547.680750px;}
.y4c{bottom:549.557850px;}
.y1a1{bottom:553.335450px;}
.y7c{bottom:553.393500px;}
.y9d{bottom:554.771550px;}
.y15c{bottom:554.868600px;}
.y131{bottom:555.418950px;}
.y256{bottom:555.731400px;}
.y113{bottom:555.733500px;}
.yed{bottom:555.755400px;}
.y1f5{bottom:556.622850px;}
.y1c1{bottom:557.734050px;}
.y288{bottom:558.377100px;}
.y17f{bottom:558.705600px;}
.y1df{bottom:565.428600px;}
.yc8{bottom:565.457850px;}
.y2a0{bottom:567.017850px;}
.y219{bottom:568.470750px;}
.y4b{bottom:570.347850px;}
.y9c{bottom:575.561550px;}
.y15b{bottom:575.658600px;}
.y255{bottom:576.521400px;}
.y112{bottom:576.523500px;}
.y1f4{bottom:577.412850px;}
.y287{bottom:579.167100px;}
.y17e{bottom:579.495600px;}
.y1c0{bottom:583.127850px;}
.y23b{bottom:584.055300px;}
.y1a0{bottom:584.520450px;}
.y1de{bottom:586.218600px;}
.yc7{bottom:586.247850px;}
.yec{bottom:586.936350px;}
.y29f{bottom:587.807850px;}
.y130{bottom:590.851800px;}
.y4a{bottom:591.137850px;}
.y9b{bottom:596.351550px;}
.y15a{bottom:596.448600px;}
.y254{bottom:597.311400px;}
.y111{bottom:597.313500px;}
.y218{bottom:597.765750px;}
.y1f3{bottom:598.202850px;}
.y286{bottom:599.957100px;}
.y17d{bottom:600.285600px;}
.y1b{bottom:603.349050px;}
.y1bf{bottom:603.917850px;}
.y23a{bottom:604.845300px;}
.y1dd{bottom:607.008600px;}
.yc6{bottom:607.037850px;}
.y266{bottom:608.597850px;}
.y49{bottom:611.927850px;}
.y19f{bottom:615.705450px;}
.y159{bottom:617.238600px;}
.y1a{bottom:617.737050px;}
.y253{bottom:618.101400px;}
.y110{bottom:618.103500px;}
.y217{bottom:618.555750px;}
.y29e{bottom:618.992850px;}
.y17c{bottom:621.075600px;}
.y9a{bottom:627.536550px;}
.y1dc{bottom:627.798600px;}
.y1be{bottom:629.387850px;}
.y7b{bottom:629.453100px;}
.y285{bottom:630.092100px;}
.y19{bottom:632.125050px;}
.y48{bottom:632.717850px;}
.y239{bottom:634.140300px;}
.y158{bottom:638.028600px;}
.y252{bottom:638.891400px;}
.y10f{bottom:638.893500px;}
.y216{bottom:639.345750px;}
.y20{bottom:639.349050px;}
.y29d{bottom:639.782850px;}
.y18{bottom:646.513050px;}
.y19e{bottom:646.890450px;}
.y99{bottom:648.326550px;}
.y1db{bottom:648.588600px;}
.yeb{bottom:650.177850px;}
.y7a{bottom:650.205900px;}
.yc5{bottom:650.972850px;}
.y17b{bottom:652.260600px;}
.y1f{bottom:653.737050px;}
.y12f{bottom:654.137850px;}
.y238{bottom:654.930300px;}
.y157{bottom:658.818600px;}
.y251{bottom:659.681400px;}
.y215{bottom:660.135750px;}
.y284{bottom:660.227100px;}
.y17{bottom:660.901050px;}
.y47{bottom:666.257850px;}
.y1e{bottom:668.125050px;}
.yc4{bottom:668.567850px;}
.y98{bottom:669.116550px;}
.y10e{bottom:670.078500px;}
.yea{bottom:670.967850px;}
.y79{bottom:670.995900px;}
.y12e{bottom:671.732850px;}
.y17a{bottom:673.050600px;}
.y16{bottom:675.289050px;}
.y237{bottom:675.720300px;}
.y19d{bottom:678.075450px;}
.y156{bottom:679.608600px;}
.y214{bottom:680.925750px;}
.y283{bottom:681.017100px;}
.y1d{bottom:682.513050px;}
.y1da{bottom:684.021450px;}
.yc3{bottom:686.162850px;}
.y46{bottom:687.047850px;}
.y12d{bottom:689.327850px;}
.y97{bottom:689.906550px;}
.y10d{bottom:690.868500px;}
.ye9{bottom:691.757850px;}
.y78{bottom:691.785900px;}
.y179{bottom:693.840600px;}
.y15{bottom:696.877950px;}
.y1c{bottom:696.901050px;}
.y155{bottom:700.398600px;}
.y250{bottom:701.261400px;}
.y213{bottom:701.715750px;}
.y1f2{bottom:702.152850px;}
.yc2{bottom:703.757850px;}
.y236{bottom:705.015300px;}
.y12c{bottom:706.922850px;}
.y45{bottom:707.837850px;}
.y96{bottom:710.696550px;}
.y282{bottom:711.152100px;}
.y10c{bottom:711.658500px;}
.ye8{bottom:712.547850px;}
.y178{bottom:714.630600px;}
.y19c{bottom:719.655450px;}
.y154{bottom:721.188600px;}
.yc1{bottom:721.352850px;}
.y24f{bottom:722.051400px;}
.y1f1{bottom:722.942850px;}
.y77{bottom:722.970900px;}
.y12b{bottom:724.517850px;}
.y235{bottom:725.805300px;}
.y44{bottom:728.627850px;}
.y212{bottom:731.010750px;}
.y281{bottom:731.942100px;}
.y10b{bottom:732.448500px;}
.ye7{bottom:733.337850px;}
.yf{bottom:735.232050px;}
.y177{bottom:735.420600px;}
.y19b{bottom:740.445450px;}
.y95{bottom:741.881550px;}
.y153{bottom:741.978600px;}
.y12a{bottom:742.112850px;}
.y1f0{bottom:743.732850px;}
.y76{bottom:743.760900px;}
.y43{bottom:749.417850px;}
.ye{bottom:749.620050px;}
.y211{bottom:751.800750px;}
.y24e{bottom:753.232350px;}
.y10a{bottom:753.238500px;}
.ye6{bottom:754.127850px;}
.y234{bottom:755.100300px;}
.y1d9{bottom:755.792850px;}
.y176{bottom:756.210600px;}
.y129{bottom:759.707850px;}
.yc0{bottom:759.737850px;}
.y19a{bottom:761.235450px;}
.y280{bottom:762.077100px;}
.y94{bottom:762.671550px;}
.y152{bottom:762.768600px;}
.yd{bottom:764.008050px;}
.y29c{bottom:764.522850px;}
.y75{bottom:764.550900px;}
.y14{bottom:771.232050px;}
.y210{bottom:772.590750px;}
.ye5{bottom:774.917850px;}
.y233{bottom:775.890300px;}
.y1d8{bottom:776.582850px;}
.y128{bottom:777.302850px;}
.yc{bottom:778.396050px;}
.ybf{bottom:780.527850px;}
.y199{bottom:782.025450px;}
.y27f{bottom:782.867100px;}
.y42{bottom:782.957850px;}
.y93{bottom:783.461550px;}
.y151{bottom:783.558600px;}
.y109{bottom:784.419450px;}
.y2a9{bottom:785.312850px;}
.y74{bottom:785.340900px;}
.y13{bottom:785.620050px;}
.y175{bottom:787.395600px;}
.yb{bottom:792.784050px;}
.y127{bottom:794.897850px;}
.ye4{bottom:795.707850px;}
.y232{bottom:796.680300px;}
.y1d7{bottom:797.372850px;}
.y12{bottom:800.008050px;}
.ybe{bottom:801.317850px;}
.y20f{bottom:801.885750px;}
.y198{bottom:802.815450px;}
.y41{bottom:803.747850px;}
.y92{bottom:804.251550px;}
.y73{bottom:806.130900px;}
.ya{bottom:807.172050px;}
.y174{bottom:808.185600px;}
.y126{bottom:812.492850px;}
.y27e{bottom:813.002100px;}
.y11{bottom:814.396050px;}
.y150{bottom:814.743600px;}
.ye3{bottom:816.497850px;}
.y1d6{bottom:818.162850px;}
.ybd{bottom:822.107850px;}
.y20e{bottom:822.675750px;}
.y40{bottom:824.537850px;}
.y91{bottom:825.041550px;}
.y231{bottom:825.975300px;}
.y72{bottom:826.920900px;}
.y9{bottom:828.761100px;}
.y10{bottom:828.784050px;}
.y173{bottom:828.975600px;}
.y125{bottom:830.087850px;}
.y27d{bottom:833.792100px;}
.y197{bottom:834.000450px;}
.y14f{bottom:835.533600px;}
.y1bd{bottom:837.287850px;}
.ybc{bottom:842.897850px;}
.y20d{bottom:843.465750px;}
.y3f{bottom:845.327850px;}
.y230{bottom:846.765300px;}
.ye2{bottom:847.682850px;}
.y71{bottom:847.710900px;}
.y108{bottom:847.712850px;}
.y172{bottom:849.765600px;}
.y27c{bottom:854.582100px;}
.y196{bottom:854.790450px;}
.y14e{bottom:856.323600px;}
.y1bc{bottom:858.077850px;}
.y90{bottom:860.474550px;}
.ybb{bottom:863.687850px;}
.y3e{bottom:866.117850px;}
.ye1{bottom:868.472850px;}
.y70{bottom:868.500900px;}
.y107{bottom:868.502850px;}
.y171{bottom:870.555600px;}
.y20c{bottom:874.646700px;}
.y195{bottom:875.580450px;}
.y14d{bottom:877.113600px;}
.y1bb{bottom:878.867850px;}
.y1b9{bottom:879.692250px;}
.yba{bottom:884.477850px;}
.y27b{bottom:884.717100px;}
.y3d{bottom:886.907850px;}
.y22f{bottom:888.345300px;}
.ye0{bottom:889.262850px;}
.y6f{bottom:889.290900px;}
.y106{bottom:889.292850px;}
.y194{bottom:896.370450px;}
.y14c{bottom:897.903600px;}
.y24d{bottom:899.657850px;}
.y27a{bottom:905.507100px;}
.y8f{bottom:906.773400px;}
.y3c{bottom:907.697850px;}
.y22e{bottom:909.135300px;}
.ydf{bottom:910.052850px;}
.y6e{bottom:910.070850px;}
.y105{bottom:910.082850px;}
.y170{bottom:916.618350px;}
.y193{bottom:917.160450px;}
.y14b{bottom:918.693600px;}
.yb9{bottom:928.412850px;}
.y3b{bottom:928.487850px;}
.yde{bottom:930.842850px;}
.y6d{bottom:930.860850px;}
.y1d5{bottom:934.862850px;}
.y279{bottom:935.642100px;}
.y8{bottom:936.243300px;}
.y20b{bottom:937.947300px;}
.y192{bottom:937.950450px;}
.y14a{bottom:939.483600px;}
.y22d{bottom:940.316250px;}
.y29b{bottom:941.237850px;}
.y1b8{bottom:945.243000px;}
.yb8{bottom:946.007850px;}
.y3a{bottom:949.277850px;}
.ydd{bottom:951.632850px;}
.y104{bottom:954.017850px;}
.y1d4{bottom:955.652850px;}
.y278{bottom:956.432100px;}
.y7{bottom:957.033300px;}
.y20a{bottom:958.737300px;}
.y191{bottom:958.740450px;}
.y149{bottom:960.273600px;}
.y1ef{bottom:962.027850px;}
.y6c{bottom:962.045850px;}
.yb7{bottom:963.602850px;}
.y1b7{bottom:966.033000px;}
.y103{bottom:971.612850px;}
.ydc{bottom:972.422850px;}
.y1d3{bottom:976.442850px;}
.y277{bottom:977.222100px;}
.y6{bottom:977.811150px;}
.y209{bottom:979.527300px;}
.yb6{bottom:981.197850px;}
.y39{bottom:982.817850px;}
.y6b{bottom:982.833000px;}
.y1b6{bottom:986.823000px;}
.y102{bottom:989.207850px;}
.y148{bottom:991.458600px;}
.ydb{bottom:993.212850px;}
.y190{bottom:994.173300px;}
.yb5{bottom:998.792850px;}
.y38{bottom:1003.607850px;}
.y6a{bottom:1003.619850px;}
.y101{bottom:1006.802850px;}
.y276{bottom:1007.357100px;}
.y1b5{bottom:1007.613000px;}
.y147{bottom:1012.248600px;}
.yda{bottom:1014.002850px;}
.y208{bottom:1014.960300px;}
.yb4{bottom:1016.387850px;}
.y5{bottom:1022.205150px;}
.y37{bottom:1024.397850px;}
.y69{bottom:1024.407000px;}
.y275{bottom:1028.147100px;}
.y1b4{bottom:1028.403000px;}
.y146{bottom:1033.038600px;}
.yb3{bottom:1033.982850px;}
.y16f{bottom:1034.792850px;}
.y5a{bottom:1044.652500px;}
.y36{bottom:1045.187850px;}
.y68{bottom:1045.191000px;}
.y1b3{bottom:1049.193000px;}
.yb2{bottom:1051.577850px;}
.y16e{bottom:1055.582850px;}
.y274{bottom:1058.282100px;}
.y59{bottom:1065.442500px;}
.y35{bottom:1065.977850px;}
.y67{bottom:1065.981000px;}
.y4{bottom:1066.590150px;}
.y145{bottom:1068.471450px;}
.yb1{bottom:1069.172850px;}
.y1b2{bottom:1069.983000px;}
.y29a{bottom:1076.372850px;}
.y58{bottom:1086.232500px;}
.y34{bottom:1086.767850px;}
.y3{bottom:1098.990000px;}
.y273{bottom:1104.345000px;}
.y144{bottom:1105.416000px;}
.y57{bottom:1107.022500px;}
.y33{bottom:1107.557850px;}
.y2{bottom:1164.901350px;}
.y32{bottom:1172.943900px;}
.y31{bottom:1193.874900px;}
.y30{bottom:1207.374900px;}
.h3{height:26.496000px;}
.hc{height:30.912000px;}
.ha{height:31.206000px;}
.hb{height:33.435000px;}
.h8{height:35.088000px;}
.hd{height:35.328000px;}
.he{height:37.281000px;}
.h11{height:39.474000px;}
.h6{height:43.860000px;}
.h15{height:43.871400px;}
.h13{height:43.872600px;}
.h14{height:43.884000px;}
.h16{height:43.900200px;}
.h18{height:43.924200px;}
.h17{height:44.008800px;}
.h7{height:44.160000px;}
.h19{height:44.164800px;}
.h10{height:46.053000px;}
.h2{height:48.246000px;}
.hf{height:57.960000px;}
.h5{height:61.404000px;}
.h12{height:66.240000px;}
.h9{height:71.760000px;}
.h4{height:99.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x13{left:86.980500px;}
.x9{left:93.543300px;}
.x18{left:104.179350px;}
.x19{left:106.120500px;}
.xb{left:110.543850px;}
.x1b{left:136.069350px;}
.x1a{left:138.010500px;}
.xc{left:145.195650px;}
.xd{left:150.820650px;}
.x15{left:153.064350px;}
.x14{left:155.005500px;}
.x10{left:168.553800px;}
.x17{left:172.019850px;}
.x12{left:179.500050px;}
.x16{left:211.764750px;}
.xf{left:227.663550px;}
.x5{left:239.664750px;}
.x3{left:281.887350px;}
.xa{left:284.883300px;}
.x11{left:313.233300px;}
.x4{left:436.487250px;}
.x8{left:543.322800px;}
.x7{left:610.357800px;}
.x6{left:611.469750px;}
.xe{left:693.112950px;}
.x2{left:752.406450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-0.800000pt;}
.ls40{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.170667pt;}
.ls47{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.024000pt;}
.ls25{letter-spacing:0.026667pt;}
.ls17{letter-spacing:0.053333pt;}
.ls36{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.181333pt;}
.ls1e{letter-spacing:0.184000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.293333pt;}
.ls32{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls23{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.426667pt;}
.ls46{letter-spacing:0.453333pt;}
.ls18{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls3c{letter-spacing:0.560000pt;}
.ls28{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:0.613333pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.666667pt;}
.ls12{letter-spacing:0.693333pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.853333pt;}
.ls2e{letter-spacing:0.880000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls44{letter-spacing:0.933333pt;}
.ls29{letter-spacing:0.960000pt;}
.ls34{letter-spacing:0.986667pt;}
.ls24{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.024000pt;}
.ls1c{letter-spacing:1.040000pt;}
.lsf{letter-spacing:1.066667pt;}
.ls27{letter-spacing:1.120000pt;}
.ls20{letter-spacing:1.173333pt;}
.ls13{letter-spacing:1.226667pt;}
.ls10{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.386667pt;}
.ls38{letter-spacing:1.413333pt;}
.ls43{letter-spacing:1.440000pt;}
.ls39{letter-spacing:1.546667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls1{letter-spacing:1.621333pt;}
.ls49{letter-spacing:1.653333pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls1a{letter-spacing:1.760000pt;}
.ls35{letter-spacing:1.786667pt;}
.ls45{letter-spacing:1.813333pt;}
.ls11{letter-spacing:1.840000pt;}
.ls30{letter-spacing:1.866667pt;}
.ls3e{letter-spacing:1.920000pt;}
.ls3b{letter-spacing:1.973333pt;}
.ls4b{letter-spacing:2.048000pt;}
.ls42{letter-spacing:2.080000pt;}
.ls37{letter-spacing:2.133333pt;}
.ls8{letter-spacing:2.240000pt;}
.ls3a{letter-spacing:2.266667pt;}
.ls4a{letter-spacing:2.346667pt;}
.ls3d{letter-spacing:2.506667pt;}
.ls9{letter-spacing:11.120000pt;}
.ls19{letter-spacing:1714.090667pt;}
.lsc{letter-spacing:1807.156267pt;}
.ls0{letter-spacing:2458.137600pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.ws12{word-spacing:-16.309333pt;}
.ws3d{word-spacing:-15.466667pt;}
.ws62{word-spacing:-15.253333pt;}
.ws9a{word-spacing:-15.200000pt;}
.ws58{word-spacing:-15.146667pt;}
.ws2{word-spacing:-15.040000pt;}
.ws2d{word-spacing:-14.986667pt;}
.ws2e{word-spacing:-14.880000pt;}
.ws13{word-spacing:-14.826667pt;}
.ws8a{word-spacing:-14.560000pt;}
.ws25{word-spacing:-12.602667pt;}
.ws11{word-spacing:-2.240000pt;}
.ws5{word-spacing:-1.621333pt;}
.wsa2{word-spacing:-1.600000pt;}
.wsa0{word-spacing:-1.226667pt;}
.wsa6{word-spacing:-1.173333pt;}
.ws9f{word-spacing:-1.066667pt;}
.ws4d{word-spacing:-0.640000pt;}
.ws9d{word-spacing:-0.533333pt;}
.ws9b{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.266667pt;}
.ws2c{word-spacing:-0.224000pt;}
.ws83{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.064000pt;}
.ws2b{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053333pt;}
.wsa7{word-spacing:0.106667pt;}
.ws38{word-spacing:0.160000pt;}
.ws8{word-spacing:0.170667pt;}
.ws61{word-spacing:0.213333pt;}
.ws98{word-spacing:0.266667pt;}
.wsa4{word-spacing:0.320000pt;}
.wsa{word-spacing:0.373333pt;}
.ws4f{word-spacing:0.480000pt;}
.ws2f{word-spacing:0.533333pt;}
.ws80{word-spacing:0.586667pt;}
.ws3b{word-spacing:0.640000pt;}
.ws21{word-spacing:0.693333pt;}
.ws76{word-spacing:0.746667pt;}
.ws27{word-spacing:0.800000pt;}
.ws6b{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.ws14{word-spacing:0.960000pt;}
.ws37{word-spacing:1.013333pt;}
.ws6e{word-spacing:1.066667pt;}
.ws8d{word-spacing:1.120000pt;}
.ws89{word-spacing:1.173333pt;}
.ws46{word-spacing:1.226667pt;}
.ws54{word-spacing:1.280000pt;}
.ws3c{word-spacing:1.333333pt;}
.ws36{word-spacing:1.386667pt;}
.ws9c{word-spacing:1.440000pt;}
.ws1f{word-spacing:1.493333pt;}
.wse{word-spacing:1.546667pt;}
.ws56{word-spacing:1.600000pt;}
.ws96{word-spacing:1.653333pt;}
.ws7{word-spacing:1.664000pt;}
.wsf{word-spacing:1.706667pt;}
.ws23{word-spacing:1.813333pt;}
.ws8b{word-spacing:1.866667pt;}
.ws73{word-spacing:1.920000pt;}
.ws93{word-spacing:1.973333pt;}
.ws55{word-spacing:2.026667pt;}
.ws4a{word-spacing:2.080000pt;}
.ws33{word-spacing:2.133333pt;}
.ws57{word-spacing:2.186667pt;}
.ws40{word-spacing:2.240000pt;}
.ws82{word-spacing:2.293333pt;}
.ws97{word-spacing:2.346667pt;}
.ws1a{word-spacing:2.400000pt;}
.ws77{word-spacing:2.453333pt;}
.ws47{word-spacing:2.506667pt;}
.ws31{word-spacing:2.560000pt;}
.ws9{word-spacing:2.602667pt;}
.ws99{word-spacing:2.613333pt;}
.ws3e{word-spacing:2.666667pt;}
.ws8e{word-spacing:2.720000pt;}
.ws71{word-spacing:2.773333pt;}
.ws63{word-spacing:2.826667pt;}
.ws8f{word-spacing:2.880000pt;}
.ws18{word-spacing:2.933333pt;}
.ws49{word-spacing:2.986667pt;}
.ws90{word-spacing:3.146667pt;}
.ws29{word-spacing:3.200000pt;}
.ws75{word-spacing:3.253333pt;}
.ws6a{word-spacing:3.360000pt;}
.ws64{word-spacing:3.413333pt;}
.ws4b{word-spacing:3.466667pt;}
.ws4e{word-spacing:3.520000pt;}
.ws68{word-spacing:3.573333pt;}
.wsc{word-spacing:3.626667pt;}
.ws81{word-spacing:3.680000pt;}
.ws65{word-spacing:3.733333pt;}
.ws53{word-spacing:3.786667pt;}
.ws43{word-spacing:3.840000pt;}
.ws67{word-spacing:3.893333pt;}
.ws3a{word-spacing:4.000000pt;}
.ws15{word-spacing:4.053333pt;}
.ws20{word-spacing:4.106667pt;}
.ws88{word-spacing:4.160000pt;}
.ws79{word-spacing:4.266667pt;}
.ws17{word-spacing:4.320000pt;}
.ws66{word-spacing:4.373333pt;}
.wsd{word-spacing:4.426667pt;}
.ws50{word-spacing:4.480000pt;}
.ws26{word-spacing:4.533333pt;}
.ws5c{word-spacing:4.586667pt;}
.ws1e{word-spacing:4.640000pt;}
.wsa3{word-spacing:4.693333pt;}
.ws5a{word-spacing:4.746667pt;}
.ws16{word-spacing:4.800000pt;}
.ws30{word-spacing:4.853333pt;}
.ws6c{word-spacing:4.906667pt;}
.ws52{word-spacing:4.960000pt;}
.ws35{word-spacing:5.013333pt;}
.ws44{word-spacing:5.066667pt;}
.ws8c{word-spacing:5.120000pt;}
.wsa5{word-spacing:5.226667pt;}
.ws70{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.386667pt;}
.ws1c{word-spacing:5.440000pt;}
.ws19{word-spacing:5.493333pt;}
.ws1d{word-spacing:5.546667pt;}
.ws42{word-spacing:5.653333pt;}
.ws45{word-spacing:5.706667pt;}
.ws86{word-spacing:5.760000pt;}
.wsa1{word-spacing:5.813333pt;}
.ws7b{word-spacing:5.866667pt;}
.ws6{word-spacing:5.930667pt;}
.ws9e{word-spacing:5.973333pt;}
.ws7e{word-spacing:6.026667pt;}
.ws74{word-spacing:6.080000pt;}
.ws4c{word-spacing:6.133333pt;}
.ws22{word-spacing:6.186667pt;}
.ws3f{word-spacing:6.240000pt;}
.ws7c{word-spacing:6.293333pt;}
.ws7d{word-spacing:6.346667pt;}
.ws34{word-spacing:6.400000pt;}
.ws87{word-spacing:6.506667pt;}
.ws39{word-spacing:6.560000pt;}
.ws41{word-spacing:6.613333pt;}
.ws6d{word-spacing:6.666667pt;}
.ws60{word-spacing:6.773333pt;}
.ws7a{word-spacing:6.826667pt;}
.ws91{word-spacing:6.880000pt;}
.ws69{word-spacing:6.933333pt;}
.ws5f{word-spacing:6.986667pt;}
.ws5d{word-spacing:7.040000pt;}
.ws5e{word-spacing:7.093333pt;}
.ws48{word-spacing:7.146667pt;}
.ws78{word-spacing:7.200000pt;}
.ws6f{word-spacing:7.253333pt;}
.ws72{word-spacing:7.306667pt;}
.ws51{word-spacing:7.360000pt;}
.wsb{word-spacing:7.413333pt;}
.ws32{word-spacing:7.466667pt;}
.ws10{word-spacing:7.504000pt;}
.ws7f{word-spacing:7.520000pt;}
.ws94{word-spacing:7.786667pt;}
.ws85{word-spacing:8.320000pt;}
.ws4{word-spacing:8.896000pt;}
.ws84{word-spacing:10.656000pt;}
.ws92{word-spacing:13.024000pt;}
.ws95{word-spacing:15.392000pt;}
._4{margin-left:-17.866667pt;}
._13{margin-left:-14.826667pt;}
._e{margin-left:-10.656000pt;}
._5{margin-left:-8.288000pt;}
._12{margin-left:-7.306667pt;}
._11{margin-left:-5.973333pt;}
._10{margin-left:-4.266667pt;}
._f{margin-left:-2.512000pt;}
._1{margin-left:-1.621333pt;}
._b{width:0.906667pt;}
._6{width:2.416000pt;}
._0{width:3.456000pt;}
._d{width:4.576000pt;}
._7{width:5.541333pt;}
._2{width:6.997333pt;}
._c{width:8.032000pt;}
._3{width:10.378667pt;}
._8{width:12.432000pt;}
._a{width:14.208000pt;}
._9{width:15.392000pt;}
._14{width:22.506667pt;}
.fs2{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y16d{bottom:122.870267pt;}
.y207{bottom:123.082533pt;}
.y1d2{bottom:123.310267pt;}
.y124{bottom:123.616800pt;}
.yd9{bottom:123.898000pt;}
.y22c{bottom:123.947333pt;}
.y8e{bottom:124.004133pt;}
.y299{bottom:124.028533pt;}
.y1ee{bottom:124.033200pt;}
.y18f{bottom:124.166400pt;}
.y265{bottom:124.385067pt;}
.y100{bottom:124.404800pt;}
.y24c{bottom:124.411600pt;}
.y1ba{bottom:124.694667pt;}
.y2f{bottom:124.723067pt;}
.y2a8{bottom:125.175867pt;}
.yb0{bottom:125.650267pt;}
.y66{bottom:133.721600pt;}
.y2e{bottom:135.391067pt;}
.y1b1{bottom:140.733733pt;}
.yaf{bottom:141.290267pt;}
.y16c{bottom:141.350267pt;}
.y206{bottom:141.562533pt;}
.y1d1{bottom:141.790267pt;}
.y123{bottom:142.096800pt;}
.yd8{bottom:142.378000pt;}
.y22b{bottom:142.427333pt;}
.y8d{bottom:142.484133pt;}
.y298{bottom:142.508533pt;}
.y1ed{bottom:142.513200pt;}
.y143{bottom:142.585733pt;}
.y18e{bottom:142.646400pt;}
.y264{bottom:142.865067pt;}
.yff{bottom:142.884800pt;}
.y24b{bottom:142.891600pt;}
.y2a7{bottom:143.655867pt;}
.y2d{bottom:151.729200pt;}
.y65{bottom:152.201600pt;}
.yae{bottom:156.930267pt;}
.y1b0{bottom:159.213733pt;}
.y16b{bottom:159.830267pt;}
.y205{bottom:160.042533pt;}
.y1d0{bottom:160.270267pt;}
.y122{bottom:160.576800pt;}
.yd7{bottom:160.858000pt;}
.y22a{bottom:160.907333pt;}
.y8c{bottom:160.964133pt;}
.y297{bottom:160.988533pt;}
.y142{bottom:161.065733pt;}
.yfe{bottom:161.364800pt;}
.y24a{bottom:161.371600pt;}
.y2aa{bottom:162.135867pt;}
.y2c{bottom:167.334533pt;}
.y1ec{bottom:170.229600pt;}
.y18d{bottom:170.366400pt;}
.y64{bottom:170.681600pt;}
.y2a6{bottom:171.375867pt;}
.yad{bottom:172.570267pt;}
.y1af{bottom:177.693733pt;}
.y16a{bottom:178.310267pt;}
.y204{bottom:178.522533pt;}
.yd6{bottom:179.338000pt;}
.y8b{bottom:179.444133pt;}
.y141{bottom:179.545733pt;}
.yfd{bottom:179.844800pt;}
.y249{bottom:179.851600pt;}
.y1cf{bottom:182.523600pt;}
.y2b{bottom:182.939867pt;}
.y263{bottom:185.699600pt;}
.y229{bottom:186.947333pt;}
.y296{bottom:187.775200pt;}
.y121{bottom:188.293200pt;}
.y18c{bottom:188.846400pt;}
.y63{bottom:189.161600pt;}
.y272{bottom:189.855867pt;}
.y2a{bottom:192.879867pt;}
.y1ae{bottom:196.173733pt;}
.y169{bottom:196.790267pt;}
.y203{bottom:197.002533pt;}
.yd5{bottom:197.818000pt;}
.y140{bottom:198.025733pt;}
.y248{bottom:198.331600pt;}
.y1ce{bottom:201.003600pt;}
.y228{bottom:205.427333pt;}
.y295{bottom:206.255200pt;}
.y29{bottom:206.599867pt;}
.yac{bottom:206.690267pt;}
.y8a{bottom:207.164133pt;}
.y18b{bottom:207.326400pt;}
.yfc{bottom:207.564800pt;}
.y271{bottom:208.335867pt;}
.y1ad{bottom:214.653733pt;}
.y168{bottom:215.270267pt;}
.y202{bottom:215.482533pt;}
.yd4{bottom:216.298000pt;}
.y13f{bottom:216.505733pt;}
.y62{bottom:220.657600pt;}
.y227{bottom:223.907333pt;}
.y247{bottom:224.371600pt;}
.y294{bottom:224.735200pt;}
.yab{bottom:225.170267pt;}
.y89{bottom:225.644133pt;}
.yfb{bottom:226.044800pt;}
.y1eb{bottom:226.477200pt;}
.y270{bottom:226.815867pt;}
.y1ac{bottom:233.133733pt;}
.y167{bottom:233.750267pt;}
.y13e{bottom:234.985733pt;}
.y2a5{bottom:236.055867pt;}
.y1cd{bottom:237.963600pt;}
.y18a{bottom:238.822400pt;}
.y226{bottom:242.387333pt;}
.y246{bottom:242.851600pt;}
.yaa{bottom:243.650267pt;}
.yd3{bottom:244.018000pt;}
.y88{bottom:244.124133pt;}
.y120{bottom:244.505333pt;}
.yfa{bottom:244.524800pt;}
.y1ea{bottom:244.957200pt;}
.y26f{bottom:245.295867pt;}
.y293{bottom:251.521867pt;}
.y1ab{bottom:251.613733pt;}
.y166{bottom:252.230267pt;}
.y13d{bottom:253.465733pt;}
.y262{bottom:253.743467pt;}
.y201{bottom:254.535867pt;}
.y1cc{bottom:256.443600pt;}
.y245{bottom:261.331600pt;}
.ya9{bottom:262.130267pt;}
.yd2{bottom:262.498000pt;}
.y87{bottom:262.604133pt;}
.y11f{bottom:262.985333pt;}
.yf9{bottom:263.004800pt;}
.y1e9{bottom:263.437200pt;}
.y26e{bottom:263.775867pt;}
.y225{bottom:268.427333pt;}
.y28{bottom:269.343600pt;}
.y292{bottom:270.001867pt;}
.y1aa{bottom:270.093733pt;}
.y261{bottom:272.223467pt;}
.y200{bottom:273.015867pt;}
.y1cb{bottom:274.923600pt;}
.y244{bottom:279.811600pt;}
.y165{bottom:279.946667pt;}
.ya8{bottom:280.610267pt;}
.yd1{bottom:280.978000pt;}
.y56{bottom:281.029200pt;}
.y86{bottom:281.084133pt;}
.y13c{bottom:281.185733pt;}
.y11e{bottom:281.465333pt;}
.yf8{bottom:281.484800pt;}
.y1e8{bottom:281.917200pt;}
.y26d{bottom:282.255867pt;}
.y61{bottom:284.478533pt;}
.y224{bottom:286.907333pt;}
.y27{bottom:287.823600pt;}
.y260{bottom:290.703467pt;}
.y1ff{bottom:291.495867pt;}
.y1ca{bottom:293.403600pt;}
.y291{bottom:296.788533pt;}
.y1a9{bottom:297.813733pt;}
.y243{bottom:298.291600pt;}
.ya7{bottom:299.090267pt;}
.yd0{bottom:299.458000pt;}
.y55{bottom:299.509200pt;}
.y85{bottom:299.564133pt;}
.y13b{bottom:299.665733pt;}
.y11d{bottom:299.945333pt;}
.yf7{bottom:299.964800pt;}
.y1e7{bottom:300.397200pt;}
.y26c{bottom:300.735867pt;}
.y189{bottom:302.587200pt;}
.y60{bottom:302.958533pt;}
.y223{bottom:305.387333pt;}
.y26{bottom:306.303600pt;}
.y25f{bottom:309.183467pt;}
.y1fe{bottom:309.975867pt;}
.y290{bottom:315.268533pt;}
.y1a8{bottom:316.293733pt;}
.ya6{bottom:317.570267pt;}
.ycf{bottom:317.938000pt;}
.y54{bottom:317.989200pt;}
.y84{bottom:318.044133pt;}
.y13a{bottom:318.145733pt;}
.y11c{bottom:318.425333pt;}
.yf6{bottom:318.444800pt;}
.y26b{bottom:319.215867pt;}
.y188{bottom:321.067200pt;}
.y1c9{bottom:321.123600pt;}
.y5f{bottom:321.438533pt;}
.y222{bottom:323.867333pt;}
.y242{bottom:324.331600pt;}
.y25{bottom:324.783600pt;}
.y25e{bottom:327.663467pt;}
.y1e6{bottom:328.117200pt;}
.y1fd{bottom:328.455867pt;}
.y28f{bottom:333.748533pt;}
.y1a7{bottom:334.773733pt;}
.ya5{bottom:336.050267pt;}
.y164{bottom:336.136533pt;}
.yce{bottom:336.418000pt;}
.y83{bottom:336.524133pt;}
.y139{bottom:336.625733pt;}
.y11b{bottom:336.905333pt;}
.yf5{bottom:336.924800pt;}
.y2a4{bottom:337.695867pt;}
.y187{bottom:339.547200pt;}
.y1c8{bottom:339.603600pt;}
.y5e{bottom:339.918533pt;}
.y241{bottom:342.811600pt;}
.y24{bottom:343.263600pt;}
.y25d{bottom:346.143467pt;}
.y1e5{bottom:346.597200pt;}
.y1fc{bottom:346.935867pt;}
.y53{bottom:347.802533pt;}
.y221{bottom:349.907333pt;}
.y1a6{bottom:353.253733pt;}
.ya4{bottom:354.530267pt;}
.y163{bottom:354.616533pt;}
.ycd{bottom:354.898000pt;}
.y82{bottom:354.989867pt;}
.yf4{bottom:355.404800pt;}
.y2a3{bottom:356.175867pt;}
.y186{bottom:358.027200pt;}
.y1c7{bottom:358.083600pt;}
.y5d{bottom:358.398533pt;}
.y28e{bottom:360.535200pt;}
.y240{bottom:361.291600pt;}
.y23{bottom:361.743600pt;}
.y138{bottom:364.345733pt;}
.y11a{bottom:364.625333pt;}
.y1e4{bottom:365.077200pt;}
.y1fb{bottom:365.415867pt;}
.y52{bottom:366.282533pt;}
.y220{bottom:368.387333pt;}
.y1a5{bottom:371.733733pt;}
.ya3{bottom:373.010267pt;}
.y162{bottom:373.096533pt;}
.y81{bottom:373.469867pt;}
.y25c{bottom:373.863467pt;}
.yf3{bottom:373.884800pt;}
.y2a2{bottom:374.655867pt;}
.y23f{bottom:379.771600pt;}
.y22{bottom:380.223600pt;}
.y137{bottom:382.825733pt;}
.y119{bottom:383.105333pt;}
.y1e3{bottom:383.557200pt;}
.y1fa{bottom:383.895867pt;}
.y51{bottom:384.762533pt;}
.y185{bottom:385.747200pt;}
.ycc{bottom:386.394000pt;}
.y21f{bottom:386.867333pt;}
.y28d{bottom:387.321867pt;}
.ya2{bottom:391.490267pt;}
.y161{bottom:391.576533pt;}
.y25b{bottom:392.343467pt;}
.y1c6{bottom:395.043600pt;}
.y5c{bottom:399.343200pt;}
.y80{bottom:401.189867pt;}
.y136{bottom:401.305733pt;}
.y118{bottom:401.585333pt;}
.yf2{bottom:401.604800pt;}
.y1e2{bottom:402.037200pt;}
.y1f9{bottom:402.375867pt;}
.y50{bottom:403.242533pt;}
.y184{bottom:404.227200pt;}
.y21e{bottom:405.347333pt;}
.y28c{bottom:405.801867pt;}
.y1a4{bottom:408.693733pt;}
.ya1{bottom:409.970267pt;}
.y160{bottom:410.056533pt;}
.y25a{bottom:410.823467pt;}
.y1c5{bottom:413.523600pt;}
.y23e{bottom:416.731600pt;}
.y7f{bottom:419.669867pt;}
.y135{bottom:419.785733pt;}
.y117{bottom:420.065333pt;}
.yf1{bottom:420.084800pt;}
.y26a{bottom:420.855867pt;}
.y21{bottom:421.168267pt;}
.y183{bottom:422.707200pt;}
.y21d{bottom:423.827333pt;}
.ya0{bottom:428.450267pt;}
.y15f{bottom:428.536533pt;}
.y259{bottom:429.303467pt;}
.y1e1{bottom:429.753600pt;}
.y1f8{bottom:430.095867pt;}
.y28b{bottom:432.588533pt;}
.y4f{bottom:433.055867pt;}
.y23d{bottom:435.211600pt;}
.y1c4{bottom:436.163600pt;}
.y1a3{bottom:436.413733pt;}
.y7e{bottom:438.149867pt;}
.y134{bottom:438.265733pt;}
.y116{bottom:438.545333pt;}
.yf0{bottom:438.564800pt;}
.y269{bottom:439.335867pt;}
.y182{bottom:441.187200pt;}
.y15e{bottom:447.016533pt;}
.ycb{bottom:447.189200pt;}
.y258{bottom:447.783467pt;}
.y1f7{bottom:448.575867pt;}
.y21c{bottom:449.867333pt;}
.y28a{bottom:451.068533pt;}
.y4e{bottom:451.535867pt;}
.y1c3{bottom:454.643600pt;}
.y9f{bottom:456.170267pt;}
.y7d{bottom:456.629867pt;}
.y133{bottom:456.745733pt;}
.y115{bottom:457.025333pt;}
.yef{bottom:457.044800pt;}
.y268{bottom:457.815867pt;}
.y181{bottom:459.667200pt;}
.y23c{bottom:462.928000pt;}
.y1a2{bottom:464.133733pt;}
.y15d{bottom:465.496533pt;}
.yca{bottom:465.669200pt;}
.y257{bottom:466.263467pt;}
.y1f6{bottom:467.055867pt;}
.y21b{bottom:468.347333pt;}
.y289{bottom:469.548533pt;}
.y4d{bottom:470.015867pt;}
.y9e{bottom:474.650267pt;}
.y132{bottom:475.225733pt;}
.y114{bottom:475.505333pt;}
.yee{bottom:475.524800pt;}
.y267{bottom:476.295867pt;}
.y1c2{bottom:477.283600pt;}
.y180{bottom:478.147200pt;}
.y5b{bottom:478.780133pt;}
.y1e0{bottom:484.123200pt;}
.yc9{bottom:484.149200pt;}
.y2a1{bottom:485.535867pt;}
.y21a{bottom:486.827333pt;}
.y4c{bottom:488.495867pt;}
.y1a1{bottom:491.853733pt;}
.y7c{bottom:491.905333pt;}
.y9d{bottom:493.130267pt;}
.y15c{bottom:493.216533pt;}
.y131{bottom:493.705733pt;}
.y256{bottom:493.983467pt;}
.y113{bottom:493.985333pt;}
.yed{bottom:494.004800pt;}
.y1f5{bottom:494.775867pt;}
.y1c1{bottom:495.763600pt;}
.y288{bottom:496.335200pt;}
.y17f{bottom:496.627200pt;}
.y1df{bottom:502.603200pt;}
.yc8{bottom:502.629200pt;}
.y2a0{bottom:504.015867pt;}
.y219{bottom:505.307333pt;}
.y4b{bottom:506.975867pt;}
.y9c{bottom:511.610267pt;}
.y15b{bottom:511.696533pt;}
.y255{bottom:512.463467pt;}
.y112{bottom:512.465333pt;}
.y1f4{bottom:513.255867pt;}
.y287{bottom:514.815200pt;}
.y17e{bottom:515.107200pt;}
.y1c0{bottom:518.335867pt;}
.y23b{bottom:519.160267pt;}
.y1a0{bottom:519.573733pt;}
.y1de{bottom:521.083200pt;}
.yc7{bottom:521.109200pt;}
.yec{bottom:521.721200pt;}
.y29f{bottom:522.495867pt;}
.y130{bottom:525.201600pt;}
.y4a{bottom:525.455867pt;}
.y9b{bottom:530.090267pt;}
.y15a{bottom:530.176533pt;}
.y254{bottom:530.943467pt;}
.y111{bottom:530.945333pt;}
.y218{bottom:531.347333pt;}
.y1f3{bottom:531.735867pt;}
.y286{bottom:533.295200pt;}
.y17d{bottom:533.587200pt;}
.y1b{bottom:536.310267pt;}
.y1bf{bottom:536.815867pt;}
.y23a{bottom:537.640267pt;}
.y1dd{bottom:539.563200pt;}
.yc6{bottom:539.589200pt;}
.y266{bottom:540.975867pt;}
.y49{bottom:543.935867pt;}
.y19f{bottom:547.293733pt;}
.y159{bottom:548.656533pt;}
.y1a{bottom:549.099600pt;}
.y253{bottom:549.423467pt;}
.y110{bottom:549.425333pt;}
.y217{bottom:549.827333pt;}
.y29e{bottom:550.215867pt;}
.y17c{bottom:552.067200pt;}
.y9a{bottom:557.810267pt;}
.y1dc{bottom:558.043200pt;}
.y1be{bottom:559.455867pt;}
.y7b{bottom:559.513867pt;}
.y285{bottom:560.081867pt;}
.y19{bottom:561.888933pt;}
.y48{bottom:562.415867pt;}
.y239{bottom:563.680267pt;}
.y158{bottom:567.136533pt;}
.y252{bottom:567.903467pt;}
.y10f{bottom:567.905333pt;}
.y216{bottom:568.307333pt;}
.y20{bottom:568.310267pt;}
.y29d{bottom:568.695867pt;}
.y18{bottom:574.678267pt;}
.y19e{bottom:575.013733pt;}
.y99{bottom:576.290267pt;}
.y1db{bottom:576.523200pt;}
.yeb{bottom:577.935867pt;}
.y7a{bottom:577.960800pt;}
.yc5{bottom:578.642533pt;}
.y17b{bottom:579.787200pt;}
.y1f{bottom:581.099600pt;}
.y12f{bottom:581.455867pt;}
.y238{bottom:582.160267pt;}
.y157{bottom:585.616533pt;}
.y251{bottom:586.383467pt;}
.y215{bottom:586.787333pt;}
.y284{bottom:586.868533pt;}
.y17{bottom:587.467600pt;}
.y47{bottom:592.229200pt;}
.y1e{bottom:593.888933pt;}
.yc4{bottom:594.282533pt;}
.y98{bottom:594.770267pt;}
.y10e{bottom:595.625333pt;}
.yea{bottom:596.415867pt;}
.y79{bottom:596.440800pt;}
.y12e{bottom:597.095867pt;}
.y17a{bottom:598.267200pt;}
.y16{bottom:600.256933pt;}
.y237{bottom:600.640267pt;}
.y19d{bottom:602.733733pt;}
.y156{bottom:604.096533pt;}
.y214{bottom:605.267333pt;}
.y283{bottom:605.348533pt;}
.y1d{bottom:606.678267pt;}
.y1da{bottom:608.019067pt;}
.yc3{bottom:609.922533pt;}
.y46{bottom:610.709200pt;}
.y12d{bottom:612.735867pt;}
.y97{bottom:613.250267pt;}
.y10d{bottom:614.105333pt;}
.ye9{bottom:614.895867pt;}
.y78{bottom:614.920800pt;}
.y179{bottom:616.747200pt;}
.y15{bottom:619.447067pt;}
.y1c{bottom:619.467600pt;}
.y155{bottom:622.576533pt;}
.y250{bottom:623.343467pt;}
.y213{bottom:623.747333pt;}
.y1f2{bottom:624.135867pt;}
.yc2{bottom:625.562533pt;}
.y236{bottom:626.680267pt;}
.y12c{bottom:628.375867pt;}
.y45{bottom:629.189200pt;}
.y96{bottom:631.730267pt;}
.y282{bottom:632.135200pt;}
.y10c{bottom:632.585333pt;}
.ye8{bottom:633.375867pt;}
.y178{bottom:635.227200pt;}
.y19c{bottom:639.693733pt;}
.y154{bottom:641.056533pt;}
.yc1{bottom:641.202533pt;}
.y24f{bottom:641.823467pt;}
.y1f1{bottom:642.615867pt;}
.y77{bottom:642.640800pt;}
.y12b{bottom:644.015867pt;}
.y235{bottom:645.160267pt;}
.y44{bottom:647.669200pt;}
.y212{bottom:649.787333pt;}
.y281{bottom:650.615200pt;}
.y10b{bottom:651.065333pt;}
.ye7{bottom:651.855867pt;}
.yf{bottom:653.539600pt;}
.y177{bottom:653.707200pt;}
.y19b{bottom:658.173733pt;}
.y95{bottom:659.450267pt;}
.y153{bottom:659.536533pt;}
.y12a{bottom:659.655867pt;}
.y1f0{bottom:661.095867pt;}
.y76{bottom:661.120800pt;}
.y43{bottom:666.149200pt;}
.ye{bottom:666.328933pt;}
.y211{bottom:668.267333pt;}
.y24e{bottom:669.539867pt;}
.y10a{bottom:669.545333pt;}
.ye6{bottom:670.335867pt;}
.y234{bottom:671.200267pt;}
.y1d9{bottom:671.815867pt;}
.y176{bottom:672.187200pt;}
.y129{bottom:675.295867pt;}
.yc0{bottom:675.322533pt;}
.y19a{bottom:676.653733pt;}
.y280{bottom:677.401867pt;}
.y94{bottom:677.930267pt;}
.y152{bottom:678.016533pt;}
.yd{bottom:679.118267pt;}
.y29c{bottom:679.575867pt;}
.y75{bottom:679.600800pt;}
.y14{bottom:685.539600pt;}
.y210{bottom:686.747333pt;}
.ye5{bottom:688.815867pt;}
.y233{bottom:689.680267pt;}
.y1d8{bottom:690.295867pt;}
.y128{bottom:690.935867pt;}
.yc{bottom:691.907600pt;}
.ybf{bottom:693.802533pt;}
.y199{bottom:695.133733pt;}
.y27f{bottom:695.881867pt;}
.y42{bottom:695.962533pt;}
.y93{bottom:696.410267pt;}
.y151{bottom:696.496533pt;}
.y109{bottom:697.261733pt;}
.y2a9{bottom:698.055867pt;}
.y74{bottom:698.080800pt;}
.y13{bottom:698.328933pt;}
.y175{bottom:699.907200pt;}
.yb{bottom:704.696933pt;}
.y127{bottom:706.575867pt;}
.ye4{bottom:707.295867pt;}
.y232{bottom:708.160267pt;}
.y1d7{bottom:708.775867pt;}
.y12{bottom:711.118267pt;}
.ybe{bottom:712.282533pt;}
.y20f{bottom:712.787333pt;}
.y198{bottom:713.613733pt;}
.y41{bottom:714.442533pt;}
.y92{bottom:714.890267pt;}
.y73{bottom:716.560800pt;}
.ya{bottom:717.486267pt;}
.y174{bottom:718.387200pt;}
.y126{bottom:722.215867pt;}
.y27e{bottom:722.668533pt;}
.y11{bottom:723.907600pt;}
.y150{bottom:724.216533pt;}
.ye3{bottom:725.775867pt;}
.y1d6{bottom:727.255867pt;}
.ybd{bottom:730.762533pt;}
.y20e{bottom:731.267333pt;}
.y40{bottom:732.922533pt;}
.y91{bottom:733.370267pt;}
.y231{bottom:734.200267pt;}
.y72{bottom:735.040800pt;}
.y9{bottom:736.676533pt;}
.y10{bottom:736.696933pt;}
.y173{bottom:736.867200pt;}
.y125{bottom:737.855867pt;}
.y27d{bottom:741.148533pt;}
.y197{bottom:741.333733pt;}
.y14f{bottom:742.696533pt;}
.y1bd{bottom:744.255867pt;}
.ybc{bottom:749.242533pt;}
.y20d{bottom:749.747333pt;}
.y3f{bottom:751.402533pt;}
.y230{bottom:752.680267pt;}
.ye2{bottom:753.495867pt;}
.y71{bottom:753.520800pt;}
.y108{bottom:753.522533pt;}
.y172{bottom:755.347200pt;}
.y27c{bottom:759.628533pt;}
.y196{bottom:759.813733pt;}
.y14e{bottom:761.176533pt;}
.y1bc{bottom:762.735867pt;}
.y90{bottom:764.866267pt;}
.ybb{bottom:767.722533pt;}
.y3e{bottom:769.882533pt;}
.ye1{bottom:771.975867pt;}
.y70{bottom:772.000800pt;}
.y107{bottom:772.002533pt;}
.y171{bottom:773.827200pt;}
.y20c{bottom:777.463733pt;}
.y195{bottom:778.293733pt;}
.y14d{bottom:779.656533pt;}
.y1bb{bottom:781.215867pt;}
.y1b9{bottom:781.948667pt;}
.yba{bottom:786.202533pt;}
.y27b{bottom:786.415200pt;}
.y3d{bottom:788.362533pt;}
.y22f{bottom:789.640267pt;}
.ye0{bottom:790.455867pt;}
.y6f{bottom:790.480800pt;}
.y106{bottom:790.482533pt;}
.y194{bottom:796.773733pt;}
.y14c{bottom:798.136533pt;}
.y24d{bottom:799.695867pt;}
.y27a{bottom:804.895200pt;}
.y8f{bottom:806.020800pt;}
.y3c{bottom:806.842533pt;}
.y22e{bottom:808.120267pt;}
.ydf{bottom:808.935867pt;}
.y6e{bottom:808.951867pt;}
.y105{bottom:808.962533pt;}
.y170{bottom:814.771867pt;}
.y193{bottom:815.253733pt;}
.y14b{bottom:816.616533pt;}
.yb9{bottom:825.255867pt;}
.y3b{bottom:825.322533pt;}
.yde{bottom:827.415867pt;}
.y6d{bottom:827.431867pt;}
.y1d5{bottom:830.989200pt;}
.y279{bottom:831.681867pt;}
.y8{bottom:832.216267pt;}
.y20b{bottom:833.730933pt;}
.y192{bottom:833.733733pt;}
.y14a{bottom:835.096533pt;}
.y22d{bottom:835.836667pt;}
.y29b{bottom:836.655867pt;}
.y1b8{bottom:840.216000pt;}
.yb8{bottom:840.895867pt;}
.y3a{bottom:843.802533pt;}
.ydd{bottom:845.895867pt;}
.y104{bottom:848.015867pt;}
.y1d4{bottom:849.469200pt;}
.y278{bottom:850.161867pt;}
.y7{bottom:850.696267pt;}
.y20a{bottom:852.210933pt;}
.y191{bottom:852.213733pt;}
.y149{bottom:853.576533pt;}
.y1ef{bottom:855.135867pt;}
.y6c{bottom:855.151867pt;}
.yb7{bottom:856.535867pt;}
.y1b7{bottom:858.696000pt;}
.y103{bottom:863.655867pt;}
.ydc{bottom:864.375867pt;}
.y1d3{bottom:867.949200pt;}
.y277{bottom:868.641867pt;}
.y6{bottom:869.165467pt;}
.y209{bottom:870.690933pt;}
.yb6{bottom:872.175867pt;}
.y39{bottom:873.615867pt;}
.y6b{bottom:873.629333pt;}
.y1b6{bottom:877.176000pt;}
.y102{bottom:879.295867pt;}
.y148{bottom:881.296533pt;}
.ydb{bottom:882.855867pt;}
.y190{bottom:883.709600pt;}
.yb5{bottom:887.815867pt;}
.y38{bottom:892.095867pt;}
.y6a{bottom:892.106533pt;}
.y101{bottom:894.935867pt;}
.y276{bottom:895.428533pt;}
.y1b5{bottom:895.656000pt;}
.y147{bottom:899.776533pt;}
.yda{bottom:901.335867pt;}
.y208{bottom:902.186933pt;}
.yb4{bottom:903.455867pt;}
.y5{bottom:908.626800pt;}
.y37{bottom:910.575867pt;}
.y69{bottom:910.584000pt;}
.y275{bottom:913.908533pt;}
.y1b4{bottom:914.136000pt;}
.y146{bottom:918.256533pt;}
.yb3{bottom:919.095867pt;}
.y16f{bottom:919.815867pt;}
.y5a{bottom:928.580000pt;}
.y36{bottom:929.055867pt;}
.y68{bottom:929.058667pt;}
.y1b3{bottom:932.616000pt;}
.yb2{bottom:934.735867pt;}
.y16e{bottom:938.295867pt;}
.y274{bottom:940.695200pt;}
.y59{bottom:947.060000pt;}
.y35{bottom:947.535867pt;}
.y67{bottom:947.538667pt;}
.y4{bottom:948.080133pt;}
.y145{bottom:949.752400pt;}
.yb1{bottom:950.375867pt;}
.y1b2{bottom:951.096000pt;}
.y29a{bottom:956.775867pt;}
.y58{bottom:965.540000pt;}
.y34{bottom:966.015867pt;}
.y3{bottom:976.880000pt;}
.y273{bottom:981.640000pt;}
.y144{bottom:982.592000pt;}
.y57{bottom:984.020000pt;}
.y33{bottom:984.495867pt;}
.y2{bottom:1035.467867pt;}
.y32{bottom:1042.616800pt;}
.y31{bottom:1061.222133pt;}
.y30{bottom:1073.222133pt;}
.h3{height:23.552000pt;}
.hc{height:27.477333pt;}
.ha{height:27.738667pt;}
.hb{height:29.720000pt;}
.h8{height:31.189333pt;}
.hd{height:31.402667pt;}
.he{height:33.138667pt;}
.h11{height:35.088000pt;}
.h6{height:38.986667pt;}
.h15{height:38.996800pt;}
.h13{height:38.997867pt;}
.h14{height:39.008000pt;}
.h16{height:39.022400pt;}
.h18{height:39.043733pt;}
.h17{height:39.118933pt;}
.h7{height:39.253333pt;}
.h19{height:39.257600pt;}
.h10{height:40.936000pt;}
.h2{height:42.885333pt;}
.hf{height:51.520000pt;}
.h5{height:54.581333pt;}
.h12{height:58.880000pt;}
.h9{height:63.786667pt;}
.h4{height:88.320000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x13{left:77.316000pt;}
.x9{left:83.149600pt;}
.x18{left:92.603867pt;}
.x19{left:94.329333pt;}
.xb{left:98.261200pt;}
.x1b{left:120.950533pt;}
.x1a{left:122.676000pt;}
.xc{left:129.062800pt;}
.xd{left:134.062800pt;}
.x15{left:136.057200pt;}
.x14{left:137.782667pt;}
.x10{left:149.825600pt;}
.x17{left:152.906533pt;}
.x12{left:159.555600pt;}
.x16{left:188.235333pt;}
.xf{left:202.367600pt;}
.x5{left:213.035333pt;}
.x3{left:250.566533pt;}
.xa{left:253.229600pt;}
.x11{left:278.429600pt;}
.x4{left:387.988667pt;}
.x8{left:482.953600pt;}
.x7{left:542.540267pt;}
.x6{left:543.528667pt;}
.xe{left:616.100400pt;}
.x2{left:668.805733pt;}
}




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