
    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_3133171dd8785de701a32dc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_c04d037ae03ac17dd14c59bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_dd99671aa6fb11f77fea19e3.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_94a7aac59aa1457effcf63fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_1821737a3afd1a93373ed4db.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_a98ee3311e647fd0e6378464.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_b9051cc3c20e14d8c87644a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.057000;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_8e19b518af790c18617a4d99.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.158000;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_cd7352187d9228ad979fd6ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158000;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_9d874a8cd98fafaafe0e9277.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.145067;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_2ff44404a1ee15b38c79c4a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;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_39bbfc5e899a25f469621ac6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.725000;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:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.976000px;}
.v4{vertical-align:19.835400px;}
.v1{vertical-align:23.400000px;}
.ls15{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.198000px;}
.ls19{letter-spacing:-0.066000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.051000px;}
.ls30{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.102000px;}
.ls21{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.132000px;}
.ls27{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.153000px;}
.ls25{letter-spacing:0.165000px;}
.ls1c{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.198000px;}
.ls37{letter-spacing:0.231000px;}
.ls20{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.255000px;}
.lsc{letter-spacing:0.264000px;}
.ls1d{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.297000px;}
.ls23{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.330000px;}
.ls1a{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.396000px;}
.ls2d{letter-spacing:0.420000px;}
.ls34{letter-spacing:0.429000px;}
.ls2{letter-spacing:0.433500px;}
.lse{letter-spacing:0.462000px;}
.ls24{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.528000px;}
.ls29{letter-spacing:0.540000px;}
.ls32{letter-spacing:0.561000px;}
.lsb{letter-spacing:0.594000px;}
.ls13{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.726000px;}
.ls33{letter-spacing:0.780000px;}
.ls1f{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.841500px;}
.ls10{letter-spacing:0.858000px;}
.ls26{letter-spacing:0.891000px;}
.ls14{letter-spacing:0.900000px;}
.ls35{letter-spacing:0.990000px;}
.ls31{letter-spacing:1.320000px;}
.lsa{letter-spacing:2.178000px;}
.ls36{letter-spacing:2.508000px;}
.ls2f{letter-spacing:2038.568400px;}
.lsf{letter-spacing:2071.568400px;}
.ls2a{letter-spacing:2134.018800px;}
.ls9{letter-spacing:2167.018800px;}
.ls0{letter-spacing:2844.088800px;}
.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:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws1a{word-spacing:-16.500000px;}
.ws3b{word-spacing:-12.750000px;}
.wsb0{word-spacing:-12.600000px;}
.wsbb{word-spacing:-9.009000px;}
.wsb1{word-spacing:-8.190000px;}
.ws1b{word-spacing:-7.371000px;}
.wsd8{word-spacing:-0.726000px;}
.ws4a{word-spacing:-0.660000px;}
.ws7e{word-spacing:-0.594000px;}
.ws56{word-spacing:-0.462000px;}
.wsdb{word-spacing:-0.396000px;}
.ws10{word-spacing:-0.306000px;}
.wsbf{word-spacing:-0.300000px;}
.ws2e{word-spacing:-0.264000px;}
.wsa9{word-spacing:-0.198000px;}
.ws37{word-spacing:-0.162000px;}
.wsa0{word-spacing:-0.132000px;}
.ws8{word-spacing:-0.102000px;}
.ws46{word-spacing:-0.066000px;}
.wsaf{word-spacing:-0.049500px;}
.ws2{word-spacing:0.000000px;}
.ws38{word-spacing:0.054000px;}
.ws48{word-spacing:0.066000px;}
.ws5{word-spacing:0.096000px;}
.ws5c{word-spacing:0.120000px;}
.wsbe{word-spacing:0.132000px;}
.ws5b{word-spacing:0.180000px;}
.ws47{word-spacing:0.198000px;}
.ws30{word-spacing:0.264000px;}
.ws8c{word-spacing:0.300000px;}
.ws2f{word-spacing:0.330000px;}
.ws64{word-spacing:0.360000px;}
.ws83{word-spacing:0.396000px;}
.ws7c{word-spacing:0.420000px;}
.wsbd{word-spacing:0.462000px;}
.wsbc{word-spacing:0.480000px;}
.ws2d{word-spacing:0.528000px;}
.ws93{word-spacing:0.540000px;}
.ws84{word-spacing:0.594000px;}
.wsd0{word-spacing:0.660000px;}
.ws11{word-spacing:0.663000px;}
.ws4f{word-spacing:0.720000px;}
.wsd1{word-spacing:0.726000px;}
.ws61{word-spacing:0.780000px;}
.ws8d{word-spacing:0.792000px;}
.ws72{word-spacing:0.840000px;}
.ws53{word-spacing:0.858000px;}
.wsc8{word-spacing:0.900000px;}
.ws41{word-spacing:0.924000px;}
.ws6a{word-spacing:0.960000px;}
.ws16{word-spacing:0.969000px;}
.wsb2{word-spacing:0.990000px;}
.ws69{word-spacing:1.020000px;}
.ws3{word-spacing:1.056000px;}
.ws5a{word-spacing:1.080000px;}
.wsaa{word-spacing:1.122000px;}
.ws9d{word-spacing:1.140000px;}
.ws89{word-spacing:1.200000px;}
.ws49{word-spacing:1.254000px;}
.wsc4{word-spacing:1.260000px;}
.ws4{word-spacing:1.296000px;}
.ws3c{word-spacing:1.320000px;}
.ws6e{word-spacing:1.386000px;}
.ws3a{word-spacing:1.404000px;}
.ws7d{word-spacing:1.440000px;}
.ws57{word-spacing:1.452000px;}
.ws3f{word-spacing:1.518000px;}
.ws97{word-spacing:1.620000px;}
.ws40{word-spacing:1.650000px;}
.ws2a{word-spacing:1.716000px;}
.ws8a{word-spacing:1.740000px;}
.ws82{word-spacing:1.782000px;}
.ws9c{word-spacing:1.800000px;}
.ws12{word-spacing:1.836000px;}
.ws21{word-spacing:1.848000px;}
.wsca{word-spacing:1.860000px;}
.wsd4{word-spacing:1.914000px;}
.ws31{word-spacing:1.980000px;}
.wsc6{word-spacing:2.040000px;}
.ws28{word-spacing:2.046000px;}
.ws80{word-spacing:2.112000px;}
.ws15{word-spacing:2.142000px;}
.ws35{word-spacing:2.178000px;}
.wsd3{word-spacing:2.244000px;}
.ws62{word-spacing:2.280000px;}
.ws9a{word-spacing:2.310000px;}
.wsd{word-spacing:2.346000px;}
.ws43{word-spacing:2.376000px;}
.ws4e{word-spacing:2.400000px;}
.ws45{word-spacing:2.442000px;}
.ws96{word-spacing:2.460000px;}
.wsf{word-spacing:2.499000px;}
.wsb3{word-spacing:2.508000px;}
.ws94{word-spacing:2.520000px;}
.ws36{word-spacing:2.574000px;}
.ws92{word-spacing:2.580000px;}
.ws17{word-spacing:2.652000px;}
.ws8e{word-spacing:2.700000px;}
.ws50{word-spacing:2.706000px;}
.ws24{word-spacing:2.760000px;}
.wsa2{word-spacing:2.772000px;}
.ws39{word-spacing:2.808000px;}
.ws9e{word-spacing:2.820000px;}
.ws7f{word-spacing:2.838000px;}
.wsa7{word-spacing:2.904000px;}
.wsa6{word-spacing:2.940000px;}
.ws76{word-spacing:2.970000px;}
.ws6b{word-spacing:3.000000px;}
.ws42{word-spacing:3.036000px;}
.wsa3{word-spacing:3.060000px;}
.ws27{word-spacing:3.102000px;}
.ws13{word-spacing:3.111000px;}
.ws60{word-spacing:3.120000px;}
.wsae{word-spacing:3.168000px;}
.ws70{word-spacing:3.234000px;}
.ws87{word-spacing:3.240000px;}
.ws18{word-spacing:3.264000px;}
.ws23{word-spacing:3.300000px;}
.ws74{word-spacing:3.360000px;}
.ws34{word-spacing:3.366000px;}
.ws14{word-spacing:3.417000px;}
.ws73{word-spacing:3.420000px;}
.ws8f{word-spacing:3.480000px;}
.wsad{word-spacing:3.498000px;}
.wse{word-spacing:3.519000px;}
.ws26{word-spacing:3.540000px;}
.ws55{word-spacing:3.564000px;}
.ws9f{word-spacing:3.600000px;}
.wscd{word-spacing:3.630000px;}
.ws3e{word-spacing:3.696000px;}
.ws59{word-spacing:3.720000px;}
.ws78{word-spacing:3.762000px;}
.ws5d{word-spacing:3.780000px;}
.wsb6{word-spacing:3.828000px;}
.ws95{word-spacing:3.840000px;}
.wsa{word-spacing:3.876000px;}
.wsb7{word-spacing:3.894000px;}
.ws22{word-spacing:3.900000px;}
.wsa8{word-spacing:3.960000px;}
.wsc7{word-spacing:4.020000px;}
.wsce{word-spacing:4.026000px;}
.ws79{word-spacing:4.092000px;}
.wsc1{word-spacing:4.104000px;}
.ws1f{word-spacing:4.158000px;}
.ws86{word-spacing:4.200000px;}
.wsb4{word-spacing:4.224000px;}
.wsc{word-spacing:4.233000px;}
.ws71{word-spacing:4.260000px;}
.ws90{word-spacing:4.290000px;}
.ws25{word-spacing:4.320000px;}
.ws2c{word-spacing:4.356000px;}
.ws63{word-spacing:4.380000px;}
.wsc0{word-spacing:4.422000px;}
.ws9b{word-spacing:4.440000px;}
.ws29{word-spacing:4.488000px;}
.ws88{word-spacing:4.500000px;}
.ws4c{word-spacing:4.560000px;}
.ws65{word-spacing:4.620000px;}
.wsac{word-spacing:4.680000px;}
.ws6d{word-spacing:4.686000px;}
.wscb{word-spacing:4.740000px;}
.ws91{word-spacing:4.752000px;}
.ws75{word-spacing:4.800000px;}
.wsd6{word-spacing:4.818000px;}
.ws7a{word-spacing:4.860000px;}
.wsb9{word-spacing:4.884000px;}
.wsa4{word-spacing:4.920000px;}
.wsa1{word-spacing:4.950000px;}
.wsd2{word-spacing:5.016000px;}
.ws33{word-spacing:5.082000px;}
.wsa5{word-spacing:5.100000px;}
.ws66{word-spacing:5.148000px;}
.wsc2{word-spacing:5.160000px;}
.wsb{word-spacing:5.202000px;}
.ws54{word-spacing:5.214000px;}
.ws4d{word-spacing:5.220000px;}
.ws2b{word-spacing:5.280000px;}
.ws19{word-spacing:5.304000px;}
.ws6f{word-spacing:5.346000px;}
.ws9{word-spacing:5.355000px;}
.wsc3{word-spacing:5.400000px;}
.ws6c{word-spacing:5.412000px;}
.wsc9{word-spacing:5.460000px;}
.wscc{word-spacing:5.478000px;}
.ws52{word-spacing:5.544000px;}
.wscf{word-spacing:5.610000px;}
.ws8b{word-spacing:5.640000px;}
.ws20{word-spacing:5.676000px;}
.ws7b{word-spacing:5.700000px;}
.wsd5{word-spacing:5.742000px;}
.ws51{word-spacing:5.808000px;}
.ws85{word-spacing:5.820000px;}
.ws3d{word-spacing:5.874000px;}
.ws67{word-spacing:5.940000px;}
.wsb8{word-spacing:6.006000px;}
.ws5e{word-spacing:6.060000px;}
.ws68{word-spacing:6.072000px;}
.wsba{word-spacing:6.120000px;}
.wsb5{word-spacing:6.138000px;}
.wsc5{word-spacing:6.180000px;}
.ws32{word-spacing:6.204000px;}
.ws98{word-spacing:6.240000px;}
.ws77{word-spacing:6.270000px;}
.ws4b{word-spacing:6.300000px;}
.ws5f{word-spacing:6.336000px;}
.ws58{word-spacing:6.402000px;}
.wsab{word-spacing:6.468000px;}
.ws99{word-spacing:6.534000px;}
.wsd7{word-spacing:6.600000px;}
.wsd9{word-spacing:6.732000px;}
.ws44{word-spacing:6.798000px;}
.ws81{word-spacing:6.864000px;}
.ws1e{word-spacing:6.930000px;}
.wsda{word-spacing:8.250000px;}
.ws6{word-spacing:10.656000px;}
.ws1c{word-spacing:12.750000px;}
.ws7{word-spacing:13.344000px;}
.ws1d{word-spacing:84.708000px;}
._2{margin-left:-24.000000px;}
._3{margin-left:-17.640000px;}
._9{margin-left:-13.860000px;}
._5{margin-left:-1.040400px;}
._1{width:1.276800px;}
._8{width:2.970000px;}
._a{width:5.082000px;}
._7{width:7.080000px;}
._4{width:9.282000px;}
._0{width:13.344000px;}
._b{width:49.733400px;}
._6{width:53.945400px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.100000px;}
.fsd{font-size:39.000000px;}
.fse{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsc{font-size:49.500000px;}
.fs9{font-size:50.700000px;}
.fs7{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.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;}
.y1d5{bottom:138.191700px;}
.y6a{bottom:138.200850px;}
.y28a{bottom:138.250350px;}
.y93{bottom:138.283200px;}
.y1fe{bottom:138.791550px;}
.y2a5{bottom:138.829350px;}
.yed{bottom:139.685400px;}
.y162{bottom:139.691400px;}
.yc0{bottom:139.924650px;}
.y10d{bottom:140.127600px;}
.ya{bottom:140.316450px;}
.y265{bottom:140.680350px;}
.y138{bottom:141.141150px;}
.y188{bottom:141.589050px;}
.y1b0{bottom:142.238700px;}
.y244{bottom:142.430100px;}
.y9{bottom:153.108450px;}
.y69{bottom:154.184850px;}
.yec{bottom:157.280400px;}
.y161{bottom:157.286400px;}
.y1d4{bottom:158.225700px;}
.y137{bottom:158.736150px;}
.y92{bottom:159.073200px;}
.y1fd{bottom:159.581550px;}
.y2a4{bottom:159.619350px;}
.ybf{bottom:160.714650px;}
.y10c{bottom:160.917600px;}
.y264{bottom:161.470350px;}
.y187{bottom:162.379050px;}
.y243{bottom:163.220100px;}
.y289{bottom:170.012850px;}
.y68{bottom:170.168850px;}
.y8{bottom:172.270800px;}
.yeb{bottom:174.875400px;}
.y160{bottom:174.881400px;}
.y136{bottom:176.331150px;}
.ybe{bottom:181.504650px;}
.y263{bottom:182.260350px;}
.y242{bottom:184.010100px;}
.y67{bottom:186.152850px;}
.y2a3{bottom:190.804350px;}
.y7{bottom:191.446800px;}
.y10b{bottom:192.102600px;}
.yea{bottom:192.470400px;}
.y15f{bottom:192.476400px;}
.y91{bottom:200.658600px;}
.y288{bottom:201.775350px;}
.y1af{bottom:202.056750px;}
.y1fc{bottom:203.301150px;}
.y241{bottom:204.800100px;}
.y21d{bottom:205.959750px;}
.y66{bottom:206.186850px;}
.y1d3{bottom:206.283000px;}
.y186{bottom:208.441800px;}
.y15e{bottom:210.071400px;}
.y6{bottom:210.622800px;}
.y2a2{bottom:211.594350px;}
.y10a{bottom:212.892600px;}
.y262{bottom:213.445350px;}
.y135{bottom:214.711650px;}
.y90{bottom:218.253600px;}
.y1ae{bottom:219.651750px;}
.y1fb{bottom:220.896150px;}
.y287{bottom:223.142850px;}
.y5{bottom:223.414800px;}
.y240{bottom:225.590100px;}
.y21c{bottom:226.749750px;}
.y1d2{bottom:227.073000px;}
.ybd{bottom:227.342700px;}
.y15d{bottom:227.666400px;}
.ye9{bottom:230.844900px;}
.y109{bottom:233.682600px;}
.y134{bottom:235.501650px;}
.y8f{bottom:235.848600px;}
.y1ad{bottom:237.246750px;}
.y1fa{bottom:238.491150px;}
.y4{bottom:242.590800px;}
.y2a1{bottom:242.779350px;}
.y261{bottom:244.630350px;}
.ybc{bottom:244.937700px;}
.y23f{bottom:246.380100px;}
.y21b{bottom:247.493700px;}
.y1d1{bottom:247.863000px;}
.ye8{bottom:251.634900px;}
.y8e{bottom:253.443600px;}
.y108{bottom:254.472600px;}
.y1ac{bottom:254.841750px;}
.y286{bottom:254.905350px;}
.y3{bottom:255.382800px;}
.y1f9{bottom:256.086150px;}
.ybb{bottom:262.532700px;}
.y15c{bottom:266.007900px;}
.y23e{bottom:267.170100px;}
.y2{bottom:268.174800px;}
.y21a{bottom:268.283700px;}
.y1d0{bottom:268.653000px;}
.y8d{bottom:271.038600px;}
.ye7{bottom:272.424900px;}
.y1ab{bottom:272.436750px;}
.y1f8{bottom:273.681150px;}
.y2a0{bottom:273.964350px;}
.y107{bottom:275.262600px;}
.y260{bottom:275.815350px;}
.y65{bottom:275.956200px;}
.y285{bottom:276.272850px;}
.y133{bottom:277.084050px;}
.yba{bottom:280.127700px;}
.y15b{bottom:286.797900px;}
.y23d{bottom:287.960100px;}
.y8c{bottom:288.633600px;}
.y219{bottom:289.073700px;}
.y1cf{bottom:289.443000px;}
.y1f7{bottom:291.276150px;}
.ye6{bottom:293.214900px;}
.y185{bottom:293.550450px;}
.y132{bottom:294.679050px;}
.y29f{bottom:294.754350px;}
.y106{bottom:296.052600px;}
.y64{bottom:296.746200px;}
.yb9{bottom:297.722700px;}
.y8b{bottom:306.228600px;}
.y25f{bottom:307.000350px;}
.y15a{bottom:307.587900px;}
.y284{bottom:308.035350px;}
.y23c{bottom:308.750100px;}
.y1f6{bottom:308.871150px;}
.y218{bottom:309.863700px;}
.y1ce{bottom:310.233000px;}
.y1aa{bottom:310.780200px;}
.y131{bottom:312.274050px;}
.y184{bottom:314.340450px;}
.yb8{bottom:315.317700px;}
.y105{bottom:316.842600px;}
.y63{bottom:317.536200px;}
.y8a{bottom:323.823600px;}
.y29e{bottom:325.939350px;}
.y1f5{bottom:326.466150px;}
.y159{bottom:328.377900px;}
.y283{bottom:329.402850px;}
.y3e{bottom:329.404950px;}
.y30{bottom:329.430450px;}
.y130{bottom:329.869050px;}
.y217{bottom:330.653700px;}
.y1a9{bottom:331.570200px;}
.yb7{bottom:332.912700px;}
.y183{bottom:335.130450px;}
.ye5{bottom:336.934350px;}
.y104{bottom:337.632600px;}
.y25e{bottom:338.185350px;}
.y62{bottom:338.326200px;}
.y23b{bottom:339.935100px;}
.y1f4{bottom:344.061150px;}
.y3d{bottom:345.393450px;}
.y2f{bottom:345.418950px;}
.y12f{bottom:347.464050px;}
.y158{bottom:349.167900px;}
.y216{bottom:351.443700px;}
.y1cd{bottom:351.816900px;}
.y1a8{bottom:352.360200px;}
.ye4{bottom:354.529350px;}
.y29d{bottom:357.124350px;}
.y103{bottom:358.422600px;}
.y61{bottom:359.116200px;}
.y23a{bottom:360.725100px;}
.y282{bottom:361.165350px;}
.y3c{bottom:361.381950px;}
.y2e{bottom:361.407450px;}
.y1f3{bottom:361.656150px;}
.y89{bottom:362.192100px;}
.y12e{bottom:365.059050px;}
.y25d{bottom:369.370350px;}
.y1cc{bottom:369.411900px;}
.y157{bottom:369.957900px;}
.yb6{bottom:371.287200px;}
.ye3{bottom:372.124350px;}
.y1a7{bottom:373.150200px;}
.y182{bottom:376.714200px;}
.y3b{bottom:377.370450px;}
.y2d{bottom:377.395950px;}
.y1f2{bottom:379.251150px;}
.y60{bottom:379.906200px;}
.y239{bottom:381.515100px;}
.y281{bottom:382.532850px;}
.y215{bottom:382.628700px;}
.y88{bottom:382.982100px;}
.y1cb{bottom:387.006900px;}
.y29c{bottom:388.309350px;}
.y102{bottom:389.607600px;}
.ye2{bottom:389.719350px;}
.y156{bottom:390.747900px;}
.yb5{bottom:392.077200px;}
.y3a{bottom:393.358950px;}
.y2c{bottom:393.384450px;}
.y1a6{bottom:393.940200px;}
.y181{bottom:394.309200px;}
.y1f1{bottom:396.846150px;}
.y25c{bottom:400.555350px;}
.y5f{bottom:400.696200px;}
.y238{bottom:402.305100px;}
.y12d{bottom:403.418550px;}
.y214{bottom:403.418700px;}
.y87{bottom:403.772100px;}
.y1ca{bottom:404.601900px;}
.ye1{bottom:407.314350px;}
.y29b{bottom:409.099350px;}
.y39{bottom:409.347450px;}
.y2b{bottom:409.372950px;}
.y101{bottom:410.397600px;}
.y155{bottom:411.537900px;}
.y180{bottom:411.904200px;}
.yb4{bottom:412.867200px;}
.y280{bottom:414.295350px;}
.y1a5{bottom:414.730200px;}
.y5e{bottom:421.486200px;}
.y1c9{bottom:422.196900px;}
.y237{bottom:423.095100px;}
.y12c{bottom:424.208550px;}
.y213{bottom:424.208700px;}
.y86{bottom:424.562100px;}
.ye0{bottom:424.909350px;}
.y38{bottom:425.335950px;}
.y17f{bottom:429.499200px;}
.y100{bottom:431.187600px;}
.y25b{bottom:431.740350px;}
.y154{bottom:432.327900px;}
.y2a{bottom:433.355700px;}
.yb3{bottom:433.657200px;}
.y1f0{bottom:435.214650px;}
.y1a4{bottom:435.520200px;}
.y27f{bottom:435.662850px;}
.y1c8{bottom:439.791900px;}
.y29a{bottom:440.284350px;}
.y37{bottom:441.324450px;}
.y5d{bottom:442.276200px;}
.ydf{bottom:442.504350px;}
.y236{bottom:443.885100px;}
.y12b{bottom:444.998550px;}
.y212{bottom:444.998700px;}
.y85{bottom:445.352100px;}
.y17e{bottom:447.094200px;}
.yff{bottom:451.977600px;}
.y25a{bottom:452.530350px;}
.y153{bottom:453.117900px;}
.y1ef{bottom:456.004650px;}
.y1a3{bottom:456.310200px;}
.y36{bottom:457.312950px;}
.y1c7{bottom:457.386900px;}
.yde{bottom:460.099350px;}
.y299{bottom:461.074350px;}
.y5c{bottom:463.066200px;}
.y235{bottom:464.675100px;}
.y17d{bottom:464.689200px;}
.y12a{bottom:465.788550px;}
.y211{bottom:465.788700px;}
.y84{bottom:466.142100px;}
.y27e{bottom:467.425350px;}
.yfe{bottom:472.767600px;}
.y35{bottom:473.301450px;}
.y152{bottom:473.907900px;}
.y1ee{bottom:476.794650px;}
.y1a2{bottom:477.100200px;}
.ydd{bottom:477.694350px;}
.yb2{bottom:479.498100px;}
.y17c{bottom:482.284200px;}
.y259{bottom:483.715350px;}
.y5b{bottom:483.856200px;}
.y234{bottom:485.465100px;}
.y129{bottom:486.578550px;}
.y210{bottom:486.578700px;}
.y27d{bottom:488.792850px;}
.y34{bottom:489.289950px;}
.y298{bottom:492.259350px;}
.yfd{bottom:493.557600px;}
.y151{bottom:494.697900px;}
.ydc{bottom:495.289350px;}
.y1c6{bottom:495.770400px;}
.yb1{bottom:497.093100px;}
.y1ed{bottom:497.584650px;}
.y1a1{bottom:497.890200px;}
.y258{bottom:504.505350px;}
.y5a{bottom:504.646200px;}
.y33{bottom:505.278450px;}
.y233{bottom:506.255100px;}
.y128{bottom:507.368550px;}
.y20f{bottom:507.368700px;}
.y83{bottom:512.204850px;}
.ydb{bottom:512.884350px;}
.y297{bottom:513.049350px;}
.yfc{bottom:514.347600px;}
.yb0{bottom:514.688100px;}
.y150{bottom:515.487900px;}
.y1ec{bottom:518.374650px;}
.y1a0{bottom:518.680200px;}
.y27c{bottom:520.555350px;}
.y17b{bottom:520.594950px;}
.y32{bottom:521.266950px;}
.y232{bottom:527.045100px;}
.y127{bottom:528.158550px;}
.y20e{bottom:528.158700px;}
.yda{bottom:530.479350px;}
.yaf{bottom:532.283100px;}
.y296{bottom:533.839350px;}
.yfb{bottom:535.137600px;}
.y257{bottom:535.690350px;}
.y59{bottom:535.831200px;}
.y14f{bottom:536.277900px;}
.y31{bottom:537.255450px;}
.y1c5{bottom:537.358800px;}
.y1eb{bottom:539.164650px;}
.y17a{bottom:541.384950px;}
.y231{bottom:547.835100px;}
.y126{bottom:548.948550px;}
.y20d{bottom:548.948700px;}
.y19f{bottom:549.865200px;}
.yae{bottom:549.878100px;}
.y27b{bottom:552.317850px;}
.y1c4{bottom:554.953800px;}
.yfa{bottom:555.927600px;}
.y256{bottom:556.480350px;}
.y58{bottom:556.621200px;}
.y14e{bottom:557.067900px;}
.y179{bottom:562.174950px;}
.y295{bottom:565.024350px;}
.yad{bottom:567.473100px;}
.y230{bottom:568.625100px;}
.yd9{bottom:568.835850px;}
.y125{bottom:569.738550px;}
.y20c{bottom:569.738700px;}
.y19e{bottom:570.655200px;}
.y1c3{bottom:572.548800px;}
.y27a{bottom:573.685350px;}
.yf9{bottom:576.717600px;}
.y57{bottom:577.411200px;}
.y29{bottom:581.102700px;}
.y1a{bottom:581.128200px;}
.y1ea{bottom:582.875100px;}
.y178{bottom:582.964950px;}
.yac{bottom:585.068100px;}
.y294{bottom:585.814350px;}
.y255{bottom:587.665350px;}
.y22f{bottom:589.415100px;}
.yd8{bottom:589.625850px;}
.y1c2{bottom:590.143800px;}
.y19d{bottom:591.445200px;}
.y279{bottom:595.052850px;}
.y28{bottom:597.091200px;}
.y19{bottom:597.116700px;}
.yf8{bottom:597.507600px;}
.y56{bottom:598.201200px;}
.y1e9{bottom:600.470100px;}
.yab{bottom:602.663100px;}
.y14d{bottom:602.913450px;}
.y177{bottom:603.754950px;}
.y82{bottom:606.604350px;}
.y1c1{bottom:607.738800px;}
.y254{bottom:608.455350px;}
.y22e{bottom:610.205100px;}
.yd7{bottom:610.415850px;}
.y124{bottom:611.320950px;}
.y20b{bottom:611.328450px;}
.y27{bottom:613.079700px;}
.y18{bottom:613.105200px;}
.y1e8{bottom:618.065100px;}
.yf7{bottom:618.297600px;}
.y55{bottom:618.991200px;}
.yaa{bottom:620.258100px;}
.y14c{bottom:620.508450px;}
.y176{bottom:624.544950px;}
.y1c0{bottom:625.333800px;}
.y278{bottom:626.815350px;}
.y81{bottom:627.394350px;}
.y123{bottom:628.915950px;}
.y20a{bottom:628.923450px;}
.y26{bottom:629.068200px;}
.y17{bottom:629.093700px;}
.y22d{bottom:630.995100px;}
.yd6{bottom:631.205850px;}
.y19c{bottom:633.026100px;}
.y1e7{bottom:635.660100px;}
.y293{bottom:637.789350px;}
.y14b{bottom:638.103450px;}
.yf6{bottom:639.087600px;}
.y253{bottom:639.640350px;}
.y54{bottom:639.781200px;}
.y1bf{bottom:642.928800px;}
.y25{bottom:645.056700px;}
.y16{bottom:645.082200px;}
.y175{bottom:645.334950px;}
.y122{bottom:646.510950px;}
.y209{bottom:646.518450px;}
.y277{bottom:648.182850px;}
.y80{bottom:648.184350px;}
.y19b{bottom:650.621100px;}
.y22c{bottom:651.785100px;}
.yd5{bottom:651.995850px;}
.y1e6{bottom:653.255100px;}
.y14a{bottom:655.698450px;}
.ya9{bottom:658.577850px;}
.y292{bottom:658.579350px;}
.y252{bottom:660.430350px;}
.y1be{bottom:660.523800px;}
.y53{bottom:660.571200px;}
.y24{bottom:661.045200px;}
.y121{bottom:664.105950px;}
.y208{bottom:664.113450px;}
.y174{bottom:666.124950px;}
.y19a{bottom:668.216100px;}
.y7f{bottom:668.974350px;}
.y15{bottom:669.064950px;}
.y276{bottom:669.550350px;}
.y1e5{bottom:670.850100px;}
.y22b{bottom:672.575100px;}
.yd4{bottom:672.785850px;}
.y149{bottom:673.293450px;}
.y23{bottom:677.033700px;}
.y1bd{bottom:678.118800px;}
.ya8{bottom:679.367850px;}
.y291{bottom:679.369350px;}
.y52{bottom:681.361200px;}
.y120{bottom:681.700950px;}
.y207{bottom:681.708450px;}
.yf5{bottom:685.150500px;}
.y199{bottom:685.811100px;}
.y173{bottom:686.914950px;}
.y7e{bottom:689.764350px;}
.y148{bottom:690.888450px;}
.y275{bottom:690.917850px;}
.y251{bottom:691.615350px;}
.y22{bottom:693.022200px;}
.y22a{bottom:693.365100px;}
.yd3{bottom:693.575850px;}
.y1bc{bottom:695.713800px;}
.y11f{bottom:699.295950px;}
.y206{bottom:699.303450px;}
.ya7{bottom:700.157850px;}
.y51{bottom:702.151200px;}
.y198{bottom:703.406100px;}
.y172{bottom:707.704950px;}
.y147{bottom:708.483450px;}
.y21{bottom:709.010700px;}
.y1e4{bottom:709.230600px;}
.y7d{bottom:710.554350px;}
.y229{bottom:714.155100px;}
.yd2{bottom:714.365850px;}
.y205{bottom:716.898450px;}
.ya6{bottom:720.947850px;}
.y274{bottom:722.680350px;}
.y250{bottom:722.800350px;}
.y50{bottom:722.941200px;}
.y20{bottom:724.999200px;}
.y146{bottom:726.078450px;}
.y171{bottom:728.494950px;}
.y1e3{bottom:730.020600px;}
.y7c{bottom:731.344350px;}
.y1bb{bottom:734.076300px;}
.y204{bottom:734.493450px;}
.y228{bottom:734.945100px;}
.yd1{bottom:735.155850px;}
.y11e{bottom:737.676450px;}
.y1f{bottom:740.987700px;}
.ya5{bottom:741.737850px;}
.y197{bottom:741.743850px;}
.y24f{bottom:743.590350px;}
.y145{bottom:743.673450px;}
.y4f{bottom:743.731200px;}
.y273{bottom:744.047850px;}
.y170{bottom:749.284950px;}
.y203{bottom:752.088450px;}
.y2ac{bottom:752.132850px;}
.y7b{bottom:752.134350px;}
.y1ba{bottom:754.866300px;}
.y227{bottom:755.735100px;}
.yd0{bottom:755.945850px;}
.y1e{bottom:756.976200px;}
.y11d{bottom:758.466450px;}
.y144{bottom:761.268450px;}
.ya4{bottom:762.527850px;}
.y290{bottom:762.529350px;}
.y196{bottom:762.533850px;}
.y4e{bottom:764.521200px;}
.y202{bottom:769.683450px;}
.y16f{bottom:770.074950px;}
.y1e2{bottom:772.891350px;}
.y2ab{bottom:772.922850px;}
.y7a{bottom:772.924350px;}
.y1d{bottom:772.964700px;}
.yf4{bottom:774.526050px;}
.y24e{bottom:774.775350px;}
.y1b9{bottom:775.656300px;}
.y272{bottom:775.810350px;}
.y226{bottom:776.525100px;}
.y143{bottom:778.863450px;}
.ya3{bottom:783.317850px;}
.y28f{bottom:783.319350px;}
.y195{bottom:783.323850px;}
.y4d{bottom:785.311200px;}
.y201{bottom:787.278450px;}
.y1c{bottom:788.953200px;}
.y1e1{bottom:790.486350px;}
.yf3{bottom:792.121050px;}
.y79{bottom:793.714350px;}
.y24d{bottom:795.565350px;}
.y1b8{bottom:796.446300px;}
.y142{bottom:796.458450px;}
.y271{bottom:797.177850px;}
.y225{bottom:797.315100px;}
.ycf{bottom:799.653300px;}
.y11c{bottom:800.062500px;}
.y16e{bottom:801.259950px;}
.ya2{bottom:804.107850px;}
.y194{bottom:804.113850px;}
.y1b{bottom:804.941700px;}
.y4c{bottom:806.101200px;}
.y1e0{bottom:808.081350px;}
.yf2{bottom:809.716050px;}
.y78{bottom:814.504350px;}
.y1b7{bottom:817.236300px;}
.yce{bottom:817.248300px;}
.y11b{bottom:817.657500px;}
.y16d{bottom:822.049950px;}
.ya1{bottom:824.897850px;}
.y193{bottom:824.903850px;}
.y200{bottom:825.658950px;}
.y1df{bottom:825.676350px;}
.y24c{bottom:826.750350px;}
.yf1{bottom:827.311050px;}
.y224{bottom:828.500100px;}
.y270{bottom:828.940350px;}
.ycd{bottom:834.843300px;}
.y11a{bottom:835.252500px;}
.y77{bottom:835.294350px;}
.y141{bottom:836.956950px;}
.y1b6{bottom:838.026300px;}
.y16c{bottom:842.839950px;}
.y1de{bottom:843.271350px;}
.yf0{bottom:844.906050px;}
.ya0{bottom:845.687850px;}
.y192{bottom:845.693850px;}
.y1ff{bottom:846.448950px;}
.y4b{bottom:847.683450px;}
.y223{bottom:849.290100px;}
.y26f{bottom:850.307850px;}
.ycc{bottom:852.438300px;}
.y119{bottom:852.847500px;}
.y2aa{bottom:856.082850px;}
.y28e{bottom:856.084350px;}
.y140{bottom:857.746950px;}
.y1b5{bottom:858.816300px;}
.y1dd{bottom:860.866350px;}
.yef{bottom:862.501050px;}
.y16b{bottom:863.629950px;}
.y4a{bottom:865.278450px;}
.y76{bottom:866.479350px;}
.y222{bottom:870.080100px;}
.y118{bottom:870.442500px;}
.y24b{bottom:872.813100px;}
.y9f{bottom:876.872850px;}
.y191{bottom:876.878850px;}
.y1dc{bottom:878.461350px;}
.y13f{bottom:878.536950px;}
.y1b4{bottom:879.597450px;}
.yee{bottom:880.096050px;}
.y26e{bottom:882.070350px;}
.y49{bottom:882.873450px;}
.y16a{bottom:884.419950px;}
.y75{bottom:887.269350px;}
.y117{bottom:888.037500px;}
.ycb{bottom:890.806950px;}
.y221{bottom:890.870100px;}
.y1db{bottom:896.056350px;}
.y9e{bottom:897.662850px;}
.y190{bottom:897.668850px;}
.y14{bottom:897.921450px;}
.y13e{bottom:899.326950px;}
.y1b3{bottom:900.387450px;}
.y48{bottom:900.468450px;}
.y26d{bottom:903.437850px;}
.y169{bottom:905.209950px;}
.y116{bottom:905.632500px;}
.y2a9{bottom:908.057850px;}
.y74{bottom:908.059350px;}
.yca{bottom:911.596950px;}
.y220{bottom:911.660100px;}
.y1da{bottom:913.651350px;}
.y47{bottom:918.063450px;}
.y9d{bottom:918.452850px;}
.y28d{bottom:918.454350px;}
.y18f{bottom:918.458850px;}
.y13{bottom:918.699150px;}
.y13d{bottom:920.116950px;}
.y1b2{bottom:921.177450px;}
.y115{bottom:923.227500px;}
.y26c{bottom:924.805350px;}
.y168{bottom:925.999950px;}
.y2a8{bottom:928.847850px;}
.y73{bottom:928.849350px;}
.y1d9{bottom:931.246350px;}
.yc9{bottom:932.386950px;}
.y21f{bottom:932.450100px;}
.y46{bottom:935.658450px;}
.y9c{bottom:939.242850px;}
.y28c{bottom:939.244350px;}
.y18e{bottom:939.248850px;}
.y114{bottom:940.822500px;}
.y1b1{bottom:941.967450px;}
.y167{bottom:946.789950px;}
.y1d8{bottom:948.841350px;}
.y72{bottom:949.639350px;}
.yc8{bottom:953.176950px;}
.y21e{bottom:953.240100px;}
.y26b{bottom:956.567850px;}
.y113{bottom:958.417500px;}
.y9b{bottom:960.032850px;}
.y24a{bottom:960.034350px;}
.y18d{bottom:960.038850px;}
.y12{bottom:963.093150px;}
.y13c{bottom:965.957850px;}
.y1d7{bottom:966.436350px;}
.y166{bottom:967.579950px;}
.y71{bottom:970.429350px;}
.yc7{bottom:973.966950px;}
.y45{bottom:974.030100px;}
.y112{bottom:976.012500px;}
.y26a{bottom:977.935350px;}
.y9a{bottom:980.822850px;}
.y249{bottom:980.824350px;}
.y18c{bottom:980.828850px;}
.y13b{bottom:983.552850px;}
.y1d6{bottom:984.031350px;}
.y11{bottom:988.293150px;}
.y165{bottom:988.369950px;}
.y70{bottom:991.219350px;}
.y111{bottom:993.607500px;}
.yc6{bottom:994.756950px;}
.y44{bottom:994.820100px;}
.y269{bottom:999.302850px;}
.y13a{bottom:1001.147850px;}
.y99{bottom:1001.612850px;}
.y248{bottom:1001.614350px;}
.y18b{bottom:1001.618850px;}
.y164{bottom:1009.159950px;}
.y110{bottom:1011.202500px;}
.y6f{bottom:1012.009350px;}
.y43{bottom:1015.610100px;}
.y139{bottom:1018.742850px;}
.y98{bottom:1022.402850px;}
.y247{bottom:1022.404350px;}
.y18a{bottom:1022.408850px;}
.y10f{bottom:1028.797500px;}
.y163{bottom:1029.949950px;}
.y268{bottom:1031.065350px;}
.y10{bottom:1032.678000px;}
.y2a7{bottom:1032.797850px;}
.y6e{bottom:1032.799350px;}
.yc5{bottom:1036.337850px;}
.y42{bottom:1036.400100px;}
.y97{bottom:1043.192850px;}
.y246{bottom:1043.194350px;}
.y189{bottom:1043.198850px;}
.y10e{bottom:1046.392500px;}
.y267{bottom:1052.432850px;}
.y2a6{bottom:1053.587850px;}
.y6d{bottom:1053.589350px;}
.yc4{bottom:1053.932850px;}
.y41{bottom:1057.190100px;}
.y96{bottom:1063.982850px;}
.y245{bottom:1063.984350px;}
.yf{bottom:1065.078000px;}
.yc3{bottom:1071.527850px;}
.y28b{bottom:1074.379350px;}
.y266{bottom:1084.195350px;}
.y95{bottom:1084.772850px;}
.y6c{bottom:1084.774350px;}
.yc2{bottom:1089.122850px;}
.ye{bottom:1097.478000px;}
.y40{bottom:1103.253000px;}
.y94{bottom:1105.562850px;}
.y6b{bottom:1105.564350px;}
.yc1{bottom:1106.717850px;}
.yd{bottom:1162.740450px;}
.y3f{bottom:1172.229900px;}
.yc{bottom:1193.880450px;}
.yb{bottom:1207.380450px;}
.hc{height:34.668000px;}
.h4{height:35.328000px;}
.h3{height:43.872000px;}
.h2{height:45.342773px;}
.h9{height:48.042000px;}
.h8{height:48.144000px;}
.hd{height:50.868000px;}
.h7{height:56.520000px;}
.hb{height:62.172000px;}
.he{height:62.196000px;}
.hf{height:62.207400px;}
.h10{height:62.356200px;}
.ha{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x12{left:86.972550px;}
.xd{left:93.730800px;}
.x11{left:106.304400px;}
.x14{left:108.241500px;}
.x2{left:110.539350px;}
.xa{left:123.911100px;}
.x16{left:136.057350px;}
.x15{left:137.998500px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x10{left:153.070800px;}
.x13{left:155.011950px;}
.x7{left:201.105300px;}
.xe{left:263.815800px;}
.x6{left:274.853550px;}
.x9{left:283.385100px;}
.x8{left:322.495200px;}
.xc{left:323.530650px;}
.xb{left:540.509100px;}
.xf{left:650.388450px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.978667pt;}
.v4{vertical-align:17.631467pt;}
.v1{vertical-align:20.800000pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.176000pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.045333pt;}
.ls30{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.090667pt;}
.ls21{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls27{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.136000pt;}
.ls25{letter-spacing:0.146667pt;}
.ls1c{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.176000pt;}
.ls37{letter-spacing:0.205333pt;}
.ls20{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.226667pt;}
.lsc{letter-spacing:0.234667pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.264000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.293333pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.352000pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls34{letter-spacing:0.381333pt;}
.ls2{letter-spacing:0.385333pt;}
.lse{letter-spacing:0.410667pt;}
.ls24{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.469333pt;}
.ls29{letter-spacing:0.480000pt;}
.ls32{letter-spacing:0.498667pt;}
.lsb{letter-spacing:0.528000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.645333pt;}
.ls33{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.748000pt;}
.ls10{letter-spacing:0.762667pt;}
.ls26{letter-spacing:0.792000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.880000pt;}
.ls31{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.936000pt;}
.ls36{letter-spacing:2.229333pt;}
.ls2f{letter-spacing:1812.060800pt;}
.lsf{letter-spacing:1841.394133pt;}
.ls2a{letter-spacing:1896.905600pt;}
.ls9{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws3b{word-spacing:-11.333333pt;}
.wsb0{word-spacing:-11.200000pt;}
.wsbb{word-spacing:-8.008000pt;}
.wsb1{word-spacing:-7.280000pt;}
.ws1b{word-spacing:-6.552000pt;}
.wsd8{word-spacing:-0.645333pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws7e{word-spacing:-0.528000pt;}
.ws56{word-spacing:-0.410667pt;}
.wsdb{word-spacing:-0.352000pt;}
.ws10{word-spacing:-0.272000pt;}
.wsbf{word-spacing:-0.266667pt;}
.ws2e{word-spacing:-0.234667pt;}
.wsa9{word-spacing:-0.176000pt;}
.ws37{word-spacing:-0.144000pt;}
.wsa0{word-spacing:-0.117333pt;}
.ws8{word-spacing:-0.090667pt;}
.ws46{word-spacing:-0.058667pt;}
.wsaf{word-spacing:-0.044000pt;}
.ws2{word-spacing:0.000000pt;}
.ws38{word-spacing:0.048000pt;}
.ws48{word-spacing:0.058667pt;}
.ws5{word-spacing:0.085333pt;}
.ws5c{word-spacing:0.106667pt;}
.wsbe{word-spacing:0.117333pt;}
.ws5b{word-spacing:0.160000pt;}
.ws47{word-spacing:0.176000pt;}
.ws30{word-spacing:0.234667pt;}
.ws8c{word-spacing:0.266667pt;}
.ws2f{word-spacing:0.293333pt;}
.ws64{word-spacing:0.320000pt;}
.ws83{word-spacing:0.352000pt;}
.ws7c{word-spacing:0.373333pt;}
.wsbd{word-spacing:0.410667pt;}
.wsbc{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.469333pt;}
.ws93{word-spacing:0.480000pt;}
.ws84{word-spacing:0.528000pt;}
.wsd0{word-spacing:0.586667pt;}
.ws11{word-spacing:0.589333pt;}
.ws4f{word-spacing:0.640000pt;}
.wsd1{word-spacing:0.645333pt;}
.ws61{word-spacing:0.693333pt;}
.ws8d{word-spacing:0.704000pt;}
.ws72{word-spacing:0.746667pt;}
.ws53{word-spacing:0.762667pt;}
.wsc8{word-spacing:0.800000pt;}
.ws41{word-spacing:0.821333pt;}
.ws6a{word-spacing:0.853333pt;}
.ws16{word-spacing:0.861333pt;}
.wsb2{word-spacing:0.880000pt;}
.ws69{word-spacing:0.906667pt;}
.ws3{word-spacing:0.938667pt;}
.ws5a{word-spacing:0.960000pt;}
.wsaa{word-spacing:0.997333pt;}
.ws9d{word-spacing:1.013333pt;}
.ws89{word-spacing:1.066667pt;}
.ws49{word-spacing:1.114667pt;}
.wsc4{word-spacing:1.120000pt;}
.ws4{word-spacing:1.152000pt;}
.ws3c{word-spacing:1.173333pt;}
.ws6e{word-spacing:1.232000pt;}
.ws3a{word-spacing:1.248000pt;}
.ws7d{word-spacing:1.280000pt;}
.ws57{word-spacing:1.290667pt;}
.ws3f{word-spacing:1.349333pt;}
.ws97{word-spacing:1.440000pt;}
.ws40{word-spacing:1.466667pt;}
.ws2a{word-spacing:1.525333pt;}
.ws8a{word-spacing:1.546667pt;}
.ws82{word-spacing:1.584000pt;}
.ws9c{word-spacing:1.600000pt;}
.ws12{word-spacing:1.632000pt;}
.ws21{word-spacing:1.642667pt;}
.wsca{word-spacing:1.653333pt;}
.wsd4{word-spacing:1.701333pt;}
.ws31{word-spacing:1.760000pt;}
.wsc6{word-spacing:1.813333pt;}
.ws28{word-spacing:1.818667pt;}
.ws80{word-spacing:1.877333pt;}
.ws15{word-spacing:1.904000pt;}
.ws35{word-spacing:1.936000pt;}
.wsd3{word-spacing:1.994667pt;}
.ws62{word-spacing:2.026667pt;}
.ws9a{word-spacing:2.053333pt;}
.wsd{word-spacing:2.085333pt;}
.ws43{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.133333pt;}
.ws45{word-spacing:2.170667pt;}
.ws96{word-spacing:2.186667pt;}
.wsf{word-spacing:2.221333pt;}
.wsb3{word-spacing:2.229333pt;}
.ws94{word-spacing:2.240000pt;}
.ws36{word-spacing:2.288000pt;}
.ws92{word-spacing:2.293333pt;}
.ws17{word-spacing:2.357333pt;}
.ws8e{word-spacing:2.400000pt;}
.ws50{word-spacing:2.405333pt;}
.ws24{word-spacing:2.453333pt;}
.wsa2{word-spacing:2.464000pt;}
.ws39{word-spacing:2.496000pt;}
.ws9e{word-spacing:2.506667pt;}
.ws7f{word-spacing:2.522667pt;}
.wsa7{word-spacing:2.581333pt;}
.wsa6{word-spacing:2.613333pt;}
.ws76{word-spacing:2.640000pt;}
.ws6b{word-spacing:2.666667pt;}
.ws42{word-spacing:2.698667pt;}
.wsa3{word-spacing:2.720000pt;}
.ws27{word-spacing:2.757333pt;}
.ws13{word-spacing:2.765333pt;}
.ws60{word-spacing:2.773333pt;}
.wsae{word-spacing:2.816000pt;}
.ws70{word-spacing:2.874667pt;}
.ws87{word-spacing:2.880000pt;}
.ws18{word-spacing:2.901333pt;}
.ws23{word-spacing:2.933333pt;}
.ws74{word-spacing:2.986667pt;}
.ws34{word-spacing:2.992000pt;}
.ws14{word-spacing:3.037333pt;}
.ws73{word-spacing:3.040000pt;}
.ws8f{word-spacing:3.093333pt;}
.wsad{word-spacing:3.109333pt;}
.wse{word-spacing:3.128000pt;}
.ws26{word-spacing:3.146667pt;}
.ws55{word-spacing:3.168000pt;}
.ws9f{word-spacing:3.200000pt;}
.wscd{word-spacing:3.226667pt;}
.ws3e{word-spacing:3.285333pt;}
.ws59{word-spacing:3.306667pt;}
.ws78{word-spacing:3.344000pt;}
.ws5d{word-spacing:3.360000pt;}
.wsb6{word-spacing:3.402667pt;}
.ws95{word-spacing:3.413333pt;}
.wsa{word-spacing:3.445333pt;}
.wsb7{word-spacing:3.461333pt;}
.ws22{word-spacing:3.466667pt;}
.wsa8{word-spacing:3.520000pt;}
.wsc7{word-spacing:3.573333pt;}
.wsce{word-spacing:3.578667pt;}
.ws79{word-spacing:3.637333pt;}
.wsc1{word-spacing:3.648000pt;}
.ws1f{word-spacing:3.696000pt;}
.ws86{word-spacing:3.733333pt;}
.wsb4{word-spacing:3.754667pt;}
.wsc{word-spacing:3.762667pt;}
.ws71{word-spacing:3.786667pt;}
.ws90{word-spacing:3.813333pt;}
.ws25{word-spacing:3.840000pt;}
.ws2c{word-spacing:3.872000pt;}
.ws63{word-spacing:3.893333pt;}
.wsc0{word-spacing:3.930667pt;}
.ws9b{word-spacing:3.946667pt;}
.ws29{word-spacing:3.989333pt;}
.ws88{word-spacing:4.000000pt;}
.ws4c{word-spacing:4.053333pt;}
.ws65{word-spacing:4.106667pt;}
.wsac{word-spacing:4.160000pt;}
.ws6d{word-spacing:4.165333pt;}
.wscb{word-spacing:4.213333pt;}
.ws91{word-spacing:4.224000pt;}
.ws75{word-spacing:4.266667pt;}
.wsd6{word-spacing:4.282667pt;}
.ws7a{word-spacing:4.320000pt;}
.wsb9{word-spacing:4.341333pt;}
.wsa4{word-spacing:4.373333pt;}
.wsa1{word-spacing:4.400000pt;}
.wsd2{word-spacing:4.458667pt;}
.ws33{word-spacing:4.517333pt;}
.wsa5{word-spacing:4.533333pt;}
.ws66{word-spacing:4.576000pt;}
.wsc2{word-spacing:4.586667pt;}
.wsb{word-spacing:4.624000pt;}
.ws54{word-spacing:4.634667pt;}
.ws4d{word-spacing:4.640000pt;}
.ws2b{word-spacing:4.693333pt;}
.ws19{word-spacing:4.714667pt;}
.ws6f{word-spacing:4.752000pt;}
.ws9{word-spacing:4.760000pt;}
.wsc3{word-spacing:4.800000pt;}
.ws6c{word-spacing:4.810667pt;}
.wsc9{word-spacing:4.853333pt;}
.wscc{word-spacing:4.869333pt;}
.ws52{word-spacing:4.928000pt;}
.wscf{word-spacing:4.986667pt;}
.ws8b{word-spacing:5.013333pt;}
.ws20{word-spacing:5.045333pt;}
.ws7b{word-spacing:5.066667pt;}
.wsd5{word-spacing:5.104000pt;}
.ws51{word-spacing:5.162667pt;}
.ws85{word-spacing:5.173333pt;}
.ws3d{word-spacing:5.221333pt;}
.ws67{word-spacing:5.280000pt;}
.wsb8{word-spacing:5.338667pt;}
.ws5e{word-spacing:5.386667pt;}
.ws68{word-spacing:5.397333pt;}
.wsba{word-spacing:5.440000pt;}
.wsb5{word-spacing:5.456000pt;}
.wsc5{word-spacing:5.493333pt;}
.ws32{word-spacing:5.514667pt;}
.ws98{word-spacing:5.546667pt;}
.ws77{word-spacing:5.573333pt;}
.ws4b{word-spacing:5.600000pt;}
.ws5f{word-spacing:5.632000pt;}
.ws58{word-spacing:5.690667pt;}
.wsab{word-spacing:5.749333pt;}
.ws99{word-spacing:5.808000pt;}
.wsd7{word-spacing:5.866667pt;}
.wsd9{word-spacing:5.984000pt;}
.ws44{word-spacing:6.042667pt;}
.ws81{word-spacing:6.101333pt;}
.ws1e{word-spacing:6.160000pt;}
.wsda{word-spacing:7.333333pt;}
.ws6{word-spacing:9.472000pt;}
.ws1c{word-spacing:11.333333pt;}
.ws7{word-spacing:11.861333pt;}
.ws1d{word-spacing:75.296000pt;}
._2{margin-left:-21.333333pt;}
._3{margin-left:-15.680000pt;}
._9{margin-left:-12.320000pt;}
._5{margin-left:-0.924800pt;}
._1{width:1.134933pt;}
._8{width:2.640000pt;}
._a{width:4.517333pt;}
._7{width:6.293333pt;}
._4{width:8.250667pt;}
._0{width:11.861333pt;}
._b{width:44.207467pt;}
._6{width:47.951467pt;}
.fsa{font-size:31.200000pt;}
.fsd{font-size:34.666667pt;}
.fse{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsc{font-size:44.000000pt;}
.fs9{font-size:45.066667pt;}
.fs7{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.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;}
.y1d5{bottom:122.837067pt;}
.y6a{bottom:122.845200pt;}
.y28a{bottom:122.889200pt;}
.y93{bottom:122.918400pt;}
.y1fe{bottom:123.370267pt;}
.y2a5{bottom:123.403867pt;}
.yed{bottom:124.164800pt;}
.y162{bottom:124.170133pt;}
.yc0{bottom:124.377467pt;}
.y10d{bottom:124.557867pt;}
.ya{bottom:124.725733pt;}
.y265{bottom:125.049200pt;}
.y138{bottom:125.458800pt;}
.y188{bottom:125.856933pt;}
.y1b0{bottom:126.434400pt;}
.y244{bottom:126.604533pt;}
.y9{bottom:136.096400pt;}
.y69{bottom:137.053200pt;}
.yec{bottom:139.804800pt;}
.y161{bottom:139.810133pt;}
.y1d4{bottom:140.645067pt;}
.y137{bottom:141.098800pt;}
.y92{bottom:141.398400pt;}
.y1fd{bottom:141.850267pt;}
.y2a4{bottom:141.883867pt;}
.ybf{bottom:142.857467pt;}
.y10c{bottom:143.037867pt;}
.y264{bottom:143.529200pt;}
.y187{bottom:144.336933pt;}
.y243{bottom:145.084533pt;}
.y289{bottom:151.122533pt;}
.y68{bottom:151.261200pt;}
.y8{bottom:153.129600pt;}
.yeb{bottom:155.444800pt;}
.y160{bottom:155.450133pt;}
.y136{bottom:156.738800pt;}
.ybe{bottom:161.337467pt;}
.y263{bottom:162.009200pt;}
.y242{bottom:163.564533pt;}
.y67{bottom:165.469200pt;}
.y2a3{bottom:169.603867pt;}
.y7{bottom:170.174933pt;}
.y10b{bottom:170.757867pt;}
.yea{bottom:171.084800pt;}
.y15f{bottom:171.090133pt;}
.y91{bottom:178.363200pt;}
.y288{bottom:179.355867pt;}
.y1af{bottom:179.606000pt;}
.y1fc{bottom:180.712133pt;}
.y241{bottom:182.044533pt;}
.y21d{bottom:183.075333pt;}
.y66{bottom:183.277200pt;}
.y1d3{bottom:183.362667pt;}
.y186{bottom:185.281600pt;}
.y15e{bottom:186.730133pt;}
.y6{bottom:187.220267pt;}
.y2a2{bottom:188.083867pt;}
.y10a{bottom:189.237867pt;}
.y262{bottom:189.729200pt;}
.y135{bottom:190.854800pt;}
.y90{bottom:194.003200pt;}
.y1ae{bottom:195.246000pt;}
.y1fb{bottom:196.352133pt;}
.y287{bottom:198.349200pt;}
.y5{bottom:198.590933pt;}
.y240{bottom:200.524533pt;}
.y21c{bottom:201.555333pt;}
.y1d2{bottom:201.842667pt;}
.ybd{bottom:202.082400pt;}
.y15d{bottom:202.370133pt;}
.ye9{bottom:205.195467pt;}
.y109{bottom:207.717867pt;}
.y134{bottom:209.334800pt;}
.y8f{bottom:209.643200pt;}
.y1ad{bottom:210.886000pt;}
.y1fa{bottom:211.992133pt;}
.y4{bottom:215.636267pt;}
.y2a1{bottom:215.803867pt;}
.y261{bottom:217.449200pt;}
.ybc{bottom:217.722400pt;}
.y23f{bottom:219.004533pt;}
.y21b{bottom:219.994400pt;}
.y1d1{bottom:220.322667pt;}
.ye8{bottom:223.675467pt;}
.y8e{bottom:225.283200pt;}
.y108{bottom:226.197867pt;}
.y1ac{bottom:226.526000pt;}
.y286{bottom:226.582533pt;}
.y3{bottom:227.006933pt;}
.y1f9{bottom:227.632133pt;}
.ybb{bottom:233.362400pt;}
.y15c{bottom:236.451467pt;}
.y23e{bottom:237.484533pt;}
.y2{bottom:238.377600pt;}
.y21a{bottom:238.474400pt;}
.y1d0{bottom:238.802667pt;}
.y8d{bottom:240.923200pt;}
.ye7{bottom:242.155467pt;}
.y1ab{bottom:242.166000pt;}
.y1f8{bottom:243.272133pt;}
.y2a0{bottom:243.523867pt;}
.y107{bottom:244.677867pt;}
.y260{bottom:245.169200pt;}
.y65{bottom:245.294400pt;}
.y285{bottom:245.575867pt;}
.y133{bottom:246.296933pt;}
.yba{bottom:249.002400pt;}
.y15b{bottom:254.931467pt;}
.y23d{bottom:255.964533pt;}
.y8c{bottom:256.563200pt;}
.y219{bottom:256.954400pt;}
.y1cf{bottom:257.282667pt;}
.y1f7{bottom:258.912133pt;}
.ye6{bottom:260.635467pt;}
.y185{bottom:260.933733pt;}
.y132{bottom:261.936933pt;}
.y29f{bottom:262.003867pt;}
.y106{bottom:263.157867pt;}
.y64{bottom:263.774400pt;}
.yb9{bottom:264.642400pt;}
.y8b{bottom:272.203200pt;}
.y25f{bottom:272.889200pt;}
.y15a{bottom:273.411467pt;}
.y284{bottom:273.809200pt;}
.y23c{bottom:274.444533pt;}
.y1f6{bottom:274.552133pt;}
.y218{bottom:275.434400pt;}
.y1ce{bottom:275.762667pt;}
.y1aa{bottom:276.249067pt;}
.y131{bottom:277.576933pt;}
.y184{bottom:279.413733pt;}
.yb8{bottom:280.282400pt;}
.y105{bottom:281.637867pt;}
.y63{bottom:282.254400pt;}
.y8a{bottom:287.843200pt;}
.y29e{bottom:289.723867pt;}
.y1f5{bottom:290.192133pt;}
.y159{bottom:291.891467pt;}
.y283{bottom:292.802533pt;}
.y3e{bottom:292.804400pt;}
.y30{bottom:292.827067pt;}
.y130{bottom:293.216933pt;}
.y217{bottom:293.914400pt;}
.y1a9{bottom:294.729067pt;}
.yb7{bottom:295.922400pt;}
.y183{bottom:297.893733pt;}
.ye5{bottom:299.497200pt;}
.y104{bottom:300.117867pt;}
.y25e{bottom:300.609200pt;}
.y62{bottom:300.734400pt;}
.y23b{bottom:302.164533pt;}
.y1f4{bottom:305.832133pt;}
.y3d{bottom:307.016400pt;}
.y2f{bottom:307.039067pt;}
.y12f{bottom:308.856933pt;}
.y158{bottom:310.371467pt;}
.y216{bottom:312.394400pt;}
.y1cd{bottom:312.726133pt;}
.y1a8{bottom:313.209067pt;}
.ye4{bottom:315.137200pt;}
.y29d{bottom:317.443867pt;}
.y103{bottom:318.597867pt;}
.y61{bottom:319.214400pt;}
.y23a{bottom:320.644533pt;}
.y282{bottom:321.035867pt;}
.y3c{bottom:321.228400pt;}
.y2e{bottom:321.251067pt;}
.y1f3{bottom:321.472133pt;}
.y89{bottom:321.948533pt;}
.y12e{bottom:324.496933pt;}
.y25d{bottom:328.329200pt;}
.y1cc{bottom:328.366133pt;}
.y157{bottom:328.851467pt;}
.yb6{bottom:330.033067pt;}
.ye3{bottom:330.777200pt;}
.y1a7{bottom:331.689067pt;}
.y182{bottom:334.857067pt;}
.y3b{bottom:335.440400pt;}
.y2d{bottom:335.463067pt;}
.y1f2{bottom:337.112133pt;}
.y60{bottom:337.694400pt;}
.y239{bottom:339.124533pt;}
.y281{bottom:340.029200pt;}
.y215{bottom:340.114400pt;}
.y88{bottom:340.428533pt;}
.y1cb{bottom:344.006133pt;}
.y29c{bottom:345.163867pt;}
.y102{bottom:346.317867pt;}
.ye2{bottom:346.417200pt;}
.y156{bottom:347.331467pt;}
.yb5{bottom:348.513067pt;}
.y3a{bottom:349.652400pt;}
.y2c{bottom:349.675067pt;}
.y1a6{bottom:350.169067pt;}
.y181{bottom:350.497067pt;}
.y1f1{bottom:352.752133pt;}
.y25c{bottom:356.049200pt;}
.y5f{bottom:356.174400pt;}
.y238{bottom:357.604533pt;}
.y12d{bottom:358.594267pt;}
.y214{bottom:358.594400pt;}
.y87{bottom:358.908533pt;}
.y1ca{bottom:359.646133pt;}
.ye1{bottom:362.057200pt;}
.y29b{bottom:363.643867pt;}
.y39{bottom:363.864400pt;}
.y2b{bottom:363.887067pt;}
.y101{bottom:364.797867pt;}
.y155{bottom:365.811467pt;}
.y180{bottom:366.137067pt;}
.yb4{bottom:366.993067pt;}
.y280{bottom:368.262533pt;}
.y1a5{bottom:368.649067pt;}
.y5e{bottom:374.654400pt;}
.y1c9{bottom:375.286133pt;}
.y237{bottom:376.084533pt;}
.y12c{bottom:377.074267pt;}
.y213{bottom:377.074400pt;}
.y86{bottom:377.388533pt;}
.ye0{bottom:377.697200pt;}
.y38{bottom:378.076400pt;}
.y17f{bottom:381.777067pt;}
.y100{bottom:383.277867pt;}
.y25b{bottom:383.769200pt;}
.y154{bottom:384.291467pt;}
.y2a{bottom:385.205067pt;}
.yb3{bottom:385.473067pt;}
.y1f0{bottom:386.857467pt;}
.y1a4{bottom:387.129067pt;}
.y27f{bottom:387.255867pt;}
.y1c8{bottom:390.926133pt;}
.y29a{bottom:391.363867pt;}
.y37{bottom:392.288400pt;}
.y5d{bottom:393.134400pt;}
.ydf{bottom:393.337200pt;}
.y236{bottom:394.564533pt;}
.y12b{bottom:395.554267pt;}
.y212{bottom:395.554400pt;}
.y85{bottom:395.868533pt;}
.y17e{bottom:397.417067pt;}
.yff{bottom:401.757867pt;}
.y25a{bottom:402.249200pt;}
.y153{bottom:402.771467pt;}
.y1ef{bottom:405.337467pt;}
.y1a3{bottom:405.609067pt;}
.y36{bottom:406.500400pt;}
.y1c7{bottom:406.566133pt;}
.yde{bottom:408.977200pt;}
.y299{bottom:409.843867pt;}
.y5c{bottom:411.614400pt;}
.y235{bottom:413.044533pt;}
.y17d{bottom:413.057067pt;}
.y12a{bottom:414.034267pt;}
.y211{bottom:414.034400pt;}
.y84{bottom:414.348533pt;}
.y27e{bottom:415.489200pt;}
.yfe{bottom:420.237867pt;}
.y35{bottom:420.712400pt;}
.y152{bottom:421.251467pt;}
.y1ee{bottom:423.817467pt;}
.y1a2{bottom:424.089067pt;}
.ydd{bottom:424.617200pt;}
.yb2{bottom:426.220533pt;}
.y17c{bottom:428.697067pt;}
.y259{bottom:429.969200pt;}
.y5b{bottom:430.094400pt;}
.y234{bottom:431.524533pt;}
.y129{bottom:432.514267pt;}
.y210{bottom:432.514400pt;}
.y27d{bottom:434.482533pt;}
.y34{bottom:434.924400pt;}
.y298{bottom:437.563867pt;}
.yfd{bottom:438.717867pt;}
.y151{bottom:439.731467pt;}
.ydc{bottom:440.257200pt;}
.y1c6{bottom:440.684800pt;}
.yb1{bottom:441.860533pt;}
.y1ed{bottom:442.297467pt;}
.y1a1{bottom:442.569067pt;}
.y258{bottom:448.449200pt;}
.y5a{bottom:448.574400pt;}
.y33{bottom:449.136400pt;}
.y233{bottom:450.004533pt;}
.y128{bottom:450.994267pt;}
.y20f{bottom:450.994400pt;}
.y83{bottom:455.293200pt;}
.ydb{bottom:455.897200pt;}
.y297{bottom:456.043867pt;}
.yfc{bottom:457.197867pt;}
.yb0{bottom:457.500533pt;}
.y150{bottom:458.211467pt;}
.y1ec{bottom:460.777467pt;}
.y1a0{bottom:461.049067pt;}
.y27c{bottom:462.715867pt;}
.y17b{bottom:462.751067pt;}
.y32{bottom:463.348400pt;}
.y232{bottom:468.484533pt;}
.y127{bottom:469.474267pt;}
.y20e{bottom:469.474400pt;}
.yda{bottom:471.537200pt;}
.yaf{bottom:473.140533pt;}
.y296{bottom:474.523867pt;}
.yfb{bottom:475.677867pt;}
.y257{bottom:476.169200pt;}
.y59{bottom:476.294400pt;}
.y14f{bottom:476.691467pt;}
.y31{bottom:477.560400pt;}
.y1c5{bottom:477.652267pt;}
.y1eb{bottom:479.257467pt;}
.y17a{bottom:481.231067pt;}
.y231{bottom:486.964533pt;}
.y126{bottom:487.954267pt;}
.y20d{bottom:487.954400pt;}
.y19f{bottom:488.769067pt;}
.yae{bottom:488.780533pt;}
.y27b{bottom:490.949200pt;}
.y1c4{bottom:493.292267pt;}
.yfa{bottom:494.157867pt;}
.y256{bottom:494.649200pt;}
.y58{bottom:494.774400pt;}
.y14e{bottom:495.171467pt;}
.y179{bottom:499.711067pt;}
.y295{bottom:502.243867pt;}
.yad{bottom:504.420533pt;}
.y230{bottom:505.444533pt;}
.yd9{bottom:505.631867pt;}
.y125{bottom:506.434267pt;}
.y20c{bottom:506.434400pt;}
.y19e{bottom:507.249067pt;}
.y1c3{bottom:508.932267pt;}
.y27a{bottom:509.942533pt;}
.yf9{bottom:512.637867pt;}
.y57{bottom:513.254400pt;}
.y29{bottom:516.535733pt;}
.y1a{bottom:516.558400pt;}
.y1ea{bottom:518.111200pt;}
.y178{bottom:518.191067pt;}
.yac{bottom:520.060533pt;}
.y294{bottom:520.723867pt;}
.y255{bottom:522.369200pt;}
.y22f{bottom:523.924533pt;}
.yd8{bottom:524.111867pt;}
.y1c2{bottom:524.572267pt;}
.y19d{bottom:525.729067pt;}
.y279{bottom:528.935867pt;}
.y28{bottom:530.747733pt;}
.y19{bottom:530.770400pt;}
.yf8{bottom:531.117867pt;}
.y56{bottom:531.734400pt;}
.y1e9{bottom:533.751200pt;}
.yab{bottom:535.700533pt;}
.y14d{bottom:535.923067pt;}
.y177{bottom:536.671067pt;}
.y82{bottom:539.203867pt;}
.y1c1{bottom:540.212267pt;}
.y254{bottom:540.849200pt;}
.y22e{bottom:542.404533pt;}
.yd7{bottom:542.591867pt;}
.y124{bottom:543.396400pt;}
.y20b{bottom:543.403067pt;}
.y27{bottom:544.959733pt;}
.y18{bottom:544.982400pt;}
.y1e8{bottom:549.391200pt;}
.yf7{bottom:549.597867pt;}
.y55{bottom:550.214400pt;}
.yaa{bottom:551.340533pt;}
.y14c{bottom:551.563067pt;}
.y176{bottom:555.151067pt;}
.y1c0{bottom:555.852267pt;}
.y278{bottom:557.169200pt;}
.y81{bottom:557.683867pt;}
.y123{bottom:559.036400pt;}
.y20a{bottom:559.043067pt;}
.y26{bottom:559.171733pt;}
.y17{bottom:559.194400pt;}
.y22d{bottom:560.884533pt;}
.yd6{bottom:561.071867pt;}
.y19c{bottom:562.689867pt;}
.y1e7{bottom:565.031200pt;}
.y293{bottom:566.923867pt;}
.y14b{bottom:567.203067pt;}
.yf6{bottom:568.077867pt;}
.y253{bottom:568.569200pt;}
.y54{bottom:568.694400pt;}
.y1bf{bottom:571.492267pt;}
.y25{bottom:573.383733pt;}
.y16{bottom:573.406400pt;}
.y175{bottom:573.631067pt;}
.y122{bottom:574.676400pt;}
.y209{bottom:574.683067pt;}
.y277{bottom:576.162533pt;}
.y80{bottom:576.163867pt;}
.y19b{bottom:578.329867pt;}
.y22c{bottom:579.364533pt;}
.yd5{bottom:579.551867pt;}
.y1e6{bottom:580.671200pt;}
.y14a{bottom:582.843067pt;}
.ya9{bottom:585.402533pt;}
.y292{bottom:585.403867pt;}
.y252{bottom:587.049200pt;}
.y1be{bottom:587.132267pt;}
.y53{bottom:587.174400pt;}
.y24{bottom:587.595733pt;}
.y121{bottom:590.316400pt;}
.y208{bottom:590.323067pt;}
.y174{bottom:592.111067pt;}
.y19a{bottom:593.969867pt;}
.y7f{bottom:594.643867pt;}
.y15{bottom:594.724400pt;}
.y276{bottom:595.155867pt;}
.y1e5{bottom:596.311200pt;}
.y22b{bottom:597.844533pt;}
.yd4{bottom:598.031867pt;}
.y149{bottom:598.483067pt;}
.y23{bottom:601.807733pt;}
.y1bd{bottom:602.772267pt;}
.ya8{bottom:603.882533pt;}
.y291{bottom:603.883867pt;}
.y52{bottom:605.654400pt;}
.y120{bottom:605.956400pt;}
.y207{bottom:605.963067pt;}
.yf5{bottom:609.022667pt;}
.y199{bottom:609.609867pt;}
.y173{bottom:610.591067pt;}
.y7e{bottom:613.123867pt;}
.y148{bottom:614.123067pt;}
.y275{bottom:614.149200pt;}
.y251{bottom:614.769200pt;}
.y22{bottom:616.019733pt;}
.y22a{bottom:616.324533pt;}
.yd3{bottom:616.511867pt;}
.y1bc{bottom:618.412267pt;}
.y11f{bottom:621.596400pt;}
.y206{bottom:621.603067pt;}
.ya7{bottom:622.362533pt;}
.y51{bottom:624.134400pt;}
.y198{bottom:625.249867pt;}
.y172{bottom:629.071067pt;}
.y147{bottom:629.763067pt;}
.y21{bottom:630.231733pt;}
.y1e4{bottom:630.427200pt;}
.y7d{bottom:631.603867pt;}
.y229{bottom:634.804533pt;}
.yd2{bottom:634.991867pt;}
.y205{bottom:637.243067pt;}
.ya6{bottom:640.842533pt;}
.y274{bottom:642.382533pt;}
.y250{bottom:642.489200pt;}
.y50{bottom:642.614400pt;}
.y20{bottom:644.443733pt;}
.y146{bottom:645.403067pt;}
.y171{bottom:647.551067pt;}
.y1e3{bottom:648.907200pt;}
.y7c{bottom:650.083867pt;}
.y1bb{bottom:652.512267pt;}
.y204{bottom:652.883067pt;}
.y228{bottom:653.284533pt;}
.yd1{bottom:653.471867pt;}
.y11e{bottom:655.712400pt;}
.y1f{bottom:658.655733pt;}
.ya5{bottom:659.322533pt;}
.y197{bottom:659.327867pt;}
.y24f{bottom:660.969200pt;}
.y145{bottom:661.043067pt;}
.y4f{bottom:661.094400pt;}
.y273{bottom:661.375867pt;}
.y170{bottom:666.031067pt;}
.y203{bottom:668.523067pt;}
.y2ac{bottom:668.562533pt;}
.y7b{bottom:668.563867pt;}
.y1ba{bottom:670.992267pt;}
.y227{bottom:671.764533pt;}
.yd0{bottom:671.951867pt;}
.y1e{bottom:672.867733pt;}
.y11d{bottom:674.192400pt;}
.y144{bottom:676.683067pt;}
.ya4{bottom:677.802533pt;}
.y290{bottom:677.803867pt;}
.y196{bottom:677.807867pt;}
.y4e{bottom:679.574400pt;}
.y202{bottom:684.163067pt;}
.y16f{bottom:684.511067pt;}
.y1e2{bottom:687.014533pt;}
.y2ab{bottom:687.042533pt;}
.y7a{bottom:687.043867pt;}
.y1d{bottom:687.079733pt;}
.yf4{bottom:688.467600pt;}
.y24e{bottom:688.689200pt;}
.y1b9{bottom:689.472267pt;}
.y272{bottom:689.609200pt;}
.y226{bottom:690.244533pt;}
.y143{bottom:692.323067pt;}
.ya3{bottom:696.282533pt;}
.y28f{bottom:696.283867pt;}
.y195{bottom:696.287867pt;}
.y4d{bottom:698.054400pt;}
.y201{bottom:699.803067pt;}
.y1c{bottom:701.291733pt;}
.y1e1{bottom:702.654533pt;}
.yf3{bottom:704.107600pt;}
.y79{bottom:705.523867pt;}
.y24d{bottom:707.169200pt;}
.y1b8{bottom:707.952267pt;}
.y142{bottom:707.963067pt;}
.y271{bottom:708.602533pt;}
.y225{bottom:708.724533pt;}
.ycf{bottom:710.802933pt;}
.y11c{bottom:711.166667pt;}
.y16e{bottom:712.231067pt;}
.ya2{bottom:714.762533pt;}
.y194{bottom:714.767867pt;}
.y1b{bottom:715.503733pt;}
.y4c{bottom:716.534400pt;}
.y1e0{bottom:718.294533pt;}
.yf2{bottom:719.747600pt;}
.y78{bottom:724.003867pt;}
.y1b7{bottom:726.432267pt;}
.yce{bottom:726.442933pt;}
.y11b{bottom:726.806667pt;}
.y16d{bottom:730.711067pt;}
.ya1{bottom:733.242533pt;}
.y193{bottom:733.247867pt;}
.y200{bottom:733.919067pt;}
.y1df{bottom:733.934533pt;}
.y24c{bottom:734.889200pt;}
.yf1{bottom:735.387600pt;}
.y224{bottom:736.444533pt;}
.y270{bottom:736.835867pt;}
.ycd{bottom:742.082933pt;}
.y11a{bottom:742.446667pt;}
.y77{bottom:742.483867pt;}
.y141{bottom:743.961733pt;}
.y1b6{bottom:744.912267pt;}
.y16c{bottom:749.191067pt;}
.y1de{bottom:749.574533pt;}
.yf0{bottom:751.027600pt;}
.ya0{bottom:751.722533pt;}
.y192{bottom:751.727867pt;}
.y1ff{bottom:752.399067pt;}
.y4b{bottom:753.496400pt;}
.y223{bottom:754.924533pt;}
.y26f{bottom:755.829200pt;}
.ycc{bottom:757.722933pt;}
.y119{bottom:758.086667pt;}
.y2aa{bottom:760.962533pt;}
.y28e{bottom:760.963867pt;}
.y140{bottom:762.441733pt;}
.y1b5{bottom:763.392267pt;}
.y1dd{bottom:765.214533pt;}
.yef{bottom:766.667600pt;}
.y16b{bottom:767.671067pt;}
.y4a{bottom:769.136400pt;}
.y76{bottom:770.203867pt;}
.y222{bottom:773.404533pt;}
.y118{bottom:773.726667pt;}
.y24b{bottom:775.833867pt;}
.y9f{bottom:779.442533pt;}
.y191{bottom:779.447867pt;}
.y1dc{bottom:780.854533pt;}
.y13f{bottom:780.921733pt;}
.y1b4{bottom:781.864400pt;}
.yee{bottom:782.307600pt;}
.y26e{bottom:784.062533pt;}
.y49{bottom:784.776400pt;}
.y16a{bottom:786.151067pt;}
.y75{bottom:788.683867pt;}
.y117{bottom:789.366667pt;}
.ycb{bottom:791.828400pt;}
.y221{bottom:791.884533pt;}
.y1db{bottom:796.494533pt;}
.y9e{bottom:797.922533pt;}
.y190{bottom:797.927867pt;}
.y14{bottom:798.152400pt;}
.y13e{bottom:799.401733pt;}
.y1b3{bottom:800.344400pt;}
.y48{bottom:800.416400pt;}
.y26d{bottom:803.055867pt;}
.y169{bottom:804.631067pt;}
.y116{bottom:805.006667pt;}
.y2a9{bottom:807.162533pt;}
.y74{bottom:807.163867pt;}
.yca{bottom:810.308400pt;}
.y220{bottom:810.364533pt;}
.y1da{bottom:812.134533pt;}
.y47{bottom:816.056400pt;}
.y9d{bottom:816.402533pt;}
.y28d{bottom:816.403867pt;}
.y18f{bottom:816.407867pt;}
.y13{bottom:816.621467pt;}
.y13d{bottom:817.881733pt;}
.y1b2{bottom:818.824400pt;}
.y115{bottom:820.646667pt;}
.y26c{bottom:822.049200pt;}
.y168{bottom:823.111067pt;}
.y2a8{bottom:825.642533pt;}
.y73{bottom:825.643867pt;}
.y1d9{bottom:827.774533pt;}
.yc9{bottom:828.788400pt;}
.y21f{bottom:828.844533pt;}
.y46{bottom:831.696400pt;}
.y9c{bottom:834.882533pt;}
.y28c{bottom:834.883867pt;}
.y18e{bottom:834.887867pt;}
.y114{bottom:836.286667pt;}
.y1b1{bottom:837.304400pt;}
.y167{bottom:841.591067pt;}
.y1d8{bottom:843.414533pt;}
.y72{bottom:844.123867pt;}
.yc8{bottom:847.268400pt;}
.y21e{bottom:847.324533pt;}
.y26b{bottom:850.282533pt;}
.y113{bottom:851.926667pt;}
.y9b{bottom:853.362533pt;}
.y24a{bottom:853.363867pt;}
.y18d{bottom:853.367867pt;}
.y12{bottom:856.082800pt;}
.y13c{bottom:858.629200pt;}
.y1d7{bottom:859.054533pt;}
.y166{bottom:860.071067pt;}
.y71{bottom:862.603867pt;}
.yc7{bottom:865.748400pt;}
.y45{bottom:865.804533pt;}
.y112{bottom:867.566667pt;}
.y26a{bottom:869.275867pt;}
.y9a{bottom:871.842533pt;}
.y249{bottom:871.843867pt;}
.y18c{bottom:871.847867pt;}
.y13b{bottom:874.269200pt;}
.y1d6{bottom:874.694533pt;}
.y11{bottom:878.482800pt;}
.y165{bottom:878.551067pt;}
.y70{bottom:881.083867pt;}
.y111{bottom:883.206667pt;}
.yc6{bottom:884.228400pt;}
.y44{bottom:884.284533pt;}
.y269{bottom:888.269200pt;}
.y13a{bottom:889.909200pt;}
.y99{bottom:890.322533pt;}
.y248{bottom:890.323867pt;}
.y18b{bottom:890.327867pt;}
.y164{bottom:897.031067pt;}
.y110{bottom:898.846667pt;}
.y6f{bottom:899.563867pt;}
.y43{bottom:902.764533pt;}
.y139{bottom:905.549200pt;}
.y98{bottom:908.802533pt;}
.y247{bottom:908.803867pt;}
.y18a{bottom:908.807867pt;}
.y10f{bottom:914.486667pt;}
.y163{bottom:915.511067pt;}
.y268{bottom:916.502533pt;}
.y10{bottom:917.936000pt;}
.y2a7{bottom:918.042533pt;}
.y6e{bottom:918.043867pt;}
.yc5{bottom:921.189200pt;}
.y42{bottom:921.244533pt;}
.y97{bottom:927.282533pt;}
.y246{bottom:927.283867pt;}
.y189{bottom:927.287867pt;}
.y10e{bottom:930.126667pt;}
.y267{bottom:935.495867pt;}
.y2a6{bottom:936.522533pt;}
.y6d{bottom:936.523867pt;}
.yc4{bottom:936.829200pt;}
.y41{bottom:939.724533pt;}
.y96{bottom:945.762533pt;}
.y245{bottom:945.763867pt;}
.yf{bottom:946.736000pt;}
.yc3{bottom:952.469200pt;}
.y28b{bottom:955.003867pt;}
.y266{bottom:963.729200pt;}
.y95{bottom:964.242533pt;}
.y6c{bottom:964.243867pt;}
.yc2{bottom:968.109200pt;}
.ye{bottom:975.536000pt;}
.y40{bottom:980.669333pt;}
.y94{bottom:982.722533pt;}
.y6b{bottom:982.723867pt;}
.yc1{bottom:983.749200pt;}
.yd{bottom:1033.547067pt;}
.y3f{bottom:1041.982133pt;}
.yc{bottom:1061.227067pt;}
.yb{bottom:1073.227067pt;}
.hc{height:30.816000pt;}
.h4{height:31.402667pt;}
.h3{height:38.997333pt;}
.h2{height:40.304688pt;}
.h9{height:42.704000pt;}
.h8{height:42.794667pt;}
.hd{height:45.216000pt;}
.h7{height:50.240000pt;}
.hb{height:55.264000pt;}
.he{height:55.285333pt;}
.hf{height:55.295467pt;}
.h10{height:55.427733pt;}
.ha{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x12{left:77.308933pt;}
.xd{left:83.316267pt;}
.x11{left:94.492800pt;}
.x14{left:96.214667pt;}
.x2{left:98.257200pt;}
.xa{left:110.143200pt;}
.x16{left:120.939867pt;}
.x15{left:122.665333pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x10{left:136.062933pt;}
.x13{left:137.788400pt;}
.x7{left:178.760267pt;}
.xe{left:234.502933pt;}
.x6{left:244.314267pt;}
.x9{left:251.897867pt;}
.x8{left:286.662400pt;}
.xc{left:287.582800pt;}
.xb{left:480.452533pt;}
.xf{left:578.123067pt;}
.x5{left:652.369467pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  