
    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_b2e146b9363b00d3c64ceea6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_c199e83642a5e95da76be74b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_100d8ee45eaf54bc9ef87cde.woff')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_a4692bf4b778ec3f6168cd80.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_94171aa3cb0e3e9128fafdbe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_dbfdbdd29341d9ff75535bcc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_eb0802f93244aa0a01908254.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_4fd9992a5406d5cb79b7910e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.127000;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_761b7a5686479672fe013f74.woff')format("woff");}.ff9{font-family:ff9;line-height:0.984048;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_6343a566bdc362a541fee86c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_feb6b2b23862391e2baebc91.woff')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_28e424a4e57c6ff6cd3f2764.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_eb254370593c23513f258127.woff')format("woff");}.ffd{font-family:ffd;line-height:0.902832;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_52bec288ea5c018c3c4a271d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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:fff;src:url('chunks/assets/font_dda6f09faefdbca84965f5b5.woff')format("woff");}.fff{font-family:fff;line-height:0.973633;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,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);}
.m3{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);}
.v5{vertical-align:-22.008600px;}
.v4{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.910200px;}
.v2{vertical-align:18.018000px;}
.v1{vertical-align:21.978000px;}
.ls19{letter-spacing:-1.320000px;}
.lsa{letter-spacing:-1.056000px;}
.ls7{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.726000px;}
.ls1c{letter-spacing:-0.702000px;}
.ls3{letter-spacing:-0.691200px;}
.ls9{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.462000px;}
.lse{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.264000px;}
.ls4{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.094446px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000600px;}
.ls15{letter-spacing:0.010800px;}
.ls14{letter-spacing:0.012600px;}
.ls17{letter-spacing:0.013200px;}
.lsf{letter-spacing:0.018600px;}
.ls11{letter-spacing:0.042600px;}
.ls13{letter-spacing:0.051600px;}
.ls12{letter-spacing:0.196200px;}
.ls10{letter-spacing:0.231600px;}
.ls18{letter-spacing:0.528000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.lsb{letter-spacing:313.955280px;}
.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;}
}
.ws24{word-spacing:-17.928000px;}
.wsad{word-spacing:-16.500000px;}
.wsae{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.wsf0{word-spacing:-13.500000px;}
.wsfc{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.338000px;}
.wsfd{word-spacing:-13.230000px;}
.ws123{word-spacing:-13.014000px;}
.ws7{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.ws9d{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.896000px;}
.ws23{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.892800px;}
.ws4b{word-spacing:-9.619500px;}
.ws0{word-spacing:-9.618000px;}
.ws5{word-spacing:-7.870500px;}
.ws4{word-spacing:-7.776054px;}
.ws9e{word-spacing:-6.996000px;}
.wsd5{word-spacing:-3.960000px;}
.wse1{word-spacing:-3.894000px;}
.wsdc{word-spacing:-3.828000px;}
.wsa7{word-spacing:-3.630000px;}
.ws131{word-spacing:-3.348000px;}
.ws75{word-spacing:-3.300000px;}
.ws56{word-spacing:-3.234000px;}
.wsb3{word-spacing:-3.168000px;}
.ws99{word-spacing:-3.036000px;}
.ws4a{word-spacing:-2.970000px;}
.ws11c{word-spacing:-2.916000px;}
.wsdd{word-spacing:-2.904000px;}
.ws55{word-spacing:-2.838000px;}
.ws8e{word-spacing:-2.772000px;}
.wsd9{word-spacing:-2.706000px;}
.wsbf{word-spacing:-2.640000px;}
.wsa2{word-spacing:-2.574000px;}
.ws114{word-spacing:-2.538000px;}
.ws45{word-spacing:-2.508000px;}
.ws2b{word-spacing:-2.442000px;}
.ws90{word-spacing:-2.376000px;}
.ws12{word-spacing:-2.322000px;}
.ws6c{word-spacing:-2.310000px;}
.ws11f{word-spacing:-2.268000px;}
.ws1c{word-spacing:-2.214000px;}
.ws48{word-spacing:-2.178000px;}
.ws101{word-spacing:-2.160000px;}
.ws46{word-spacing:-2.112000px;}
.ws122{word-spacing:-2.106000px;}
.wsa6{word-spacing:-2.046000px;}
.wscc{word-spacing:-1.998000px;}
.ws5a{word-spacing:-1.980000px;}
.ws132{word-spacing:-1.944000px;}
.ws7f{word-spacing:-1.914000px;}
.ws8a{word-spacing:-1.848000px;}
.wsa4{word-spacing:-1.782000px;}
.ws11e{word-spacing:-1.728000px;}
.ws58{word-spacing:-1.716000px;}
.wsd3{word-spacing:-1.650000px;}
.ws1e{word-spacing:-1.620000px;}
.ws4d{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.566000px;}
.ws66{word-spacing:-1.518000px;}
.ws10f{word-spacing:-1.512000px;}
.ws11{word-spacing:-1.458000px;}
.wsb9{word-spacing:-1.452000px;}
.ws64{word-spacing:-1.386000px;}
.ws1d{word-spacing:-1.350000px;}
.wscf{word-spacing:-1.320000px;}
.ws93{word-spacing:-1.296000px;}
.ws61{word-spacing:-1.254000px;}
.ws94{word-spacing:-1.188000px;}
.ws10c{word-spacing:-1.134000px;}
.ws3a{word-spacing:-1.122000px;}
.ws2c{word-spacing:-1.056000px;}
.ws83{word-spacing:-1.026000px;}
.wse2{word-spacing:-0.990000px;}
.ws28{word-spacing:-0.924000px;}
.ws7b{word-spacing:-0.858000px;}
.wsf6{word-spacing:-0.810000px;}
.ws44{word-spacing:-0.792000px;}
.wsff{word-spacing:-0.756000px;}
.wsd4{word-spacing:-0.726000px;}
.ws7e{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.648000px;}
.wsdb{word-spacing:-0.594000px;}
.ws52{word-spacing:-0.528000px;}
.ws10e{word-spacing:-0.486000px;}
.ws38{word-spacing:-0.462000px;}
.ws9f{word-spacing:-0.432000px;}
.ws39{word-spacing:-0.396000px;}
.ws81{word-spacing:-0.378000px;}
.ws2d{word-spacing:-0.330000px;}
.ws109{word-spacing:-0.270000px;}
.ws6a{word-spacing:-0.264000px;}
.wsb{word-spacing:-0.216000px;}
.ws59{word-spacing:-0.198000px;}
.ws130{word-spacing:-0.162000px;}
.wseb{word-spacing:-0.132000px;}
.ws9{word-spacing:-0.111318px;}
.wsf7{word-spacing:-0.108000px;}
.ws5b{word-spacing:-0.066000px;}
.wsa{word-spacing:0.000000px;}
.wsa0{word-spacing:0.054000px;}
.ws86{word-spacing:0.066000px;}
.wscb{word-spacing:0.108000px;}
.ws80{word-spacing:0.132000px;}
.ws128{word-spacing:0.162000px;}
.wsa8{word-spacing:0.198000px;}
.ws82{word-spacing:0.216000px;}
.wsc2{word-spacing:0.264000px;}
.ws8c{word-spacing:0.330000px;}
.wsbc{word-spacing:0.396000px;}
.ws1a{word-spacing:0.432000px;}
.ws10b{word-spacing:0.486000px;}
.ws37{word-spacing:0.528000px;}
.ws20{word-spacing:0.540000px;}
.ws47{word-spacing:0.594000px;}
.ws71{word-spacing:0.660000px;}
.wsc{word-spacing:0.691200px;}
.wsc5{word-spacing:0.702000px;}
.ws8b{word-spacing:0.726000px;}
.ws12c{word-spacing:0.756000px;}
.wsb4{word-spacing:0.792000px;}
.ws17{word-spacing:0.810000px;}
.ws35{word-spacing:0.858000px;}
.wsca{word-spacing:0.864000px;}
.wsaa{word-spacing:0.924000px;}
.ws121{word-spacing:0.972000px;}
.wsc9{word-spacing:0.990000px;}
.ws16{word-spacing:1.026000px;}
.ws68{word-spacing:1.056000px;}
.ws100{word-spacing:1.080000px;}
.ws26{word-spacing:1.122000px;}
.ws117{word-spacing:1.134000px;}
.ws3e{word-spacing:1.188000px;}
.ws12f{word-spacing:1.242000px;}
.wsb8{word-spacing:1.254000px;}
.ws22{word-spacing:1.296000px;}
.ws42{word-spacing:1.320000px;}
.wsa1{word-spacing:1.386000px;}
.ws129{word-spacing:1.404000px;}
.ws21{word-spacing:1.440000px;}
.ws25{word-spacing:1.452000px;}
.ws127{word-spacing:1.458000px;}
.ws1b{word-spacing:1.512000px;}
.wsb5{word-spacing:1.518000px;}
.ws11b{word-spacing:1.566000px;}
.ws60{word-spacing:1.584000px;}
.ws107{word-spacing:1.620000px;}
.ws5f{word-spacing:1.650000px;}
.ws10{word-spacing:1.674000px;}
.ws5d{word-spacing:1.716000px;}
.ws11d{word-spacing:1.728000px;}
.ws2f{word-spacing:1.782000px;}
.ws18{word-spacing:1.836000px;}
.ws50{word-spacing:1.848000px;}
.ws104{word-spacing:1.890000px;}
.ws6b{word-spacing:1.914000px;}
.wsc6{word-spacing:1.944000px;}
.wsaf{word-spacing:1.980000px;}
.ws84{word-spacing:1.998000px;}
.wsda{word-spacing:2.046000px;}
.ws6d{word-spacing:2.106000px;}
.ws78{word-spacing:2.112000px;}
.ws115{word-spacing:2.160000px;}
.wsd2{word-spacing:2.178000px;}
.ws8f{word-spacing:2.244000px;}
.wsfa{word-spacing:2.268000px;}
.ws98{word-spacing:2.310000px;}
.wse{word-spacing:2.322000px;}
.wse8{word-spacing:2.376000px;}
.wsd{word-spacing:2.430000px;}
.ws32{word-spacing:2.442000px;}
.wse4{word-spacing:2.508000px;}
.ws10a{word-spacing:2.538000px;}
.ws5c{word-spacing:2.574000px;}
.ws12e{word-spacing:2.592000px;}
.ws73{word-spacing:2.640000px;}
.wsac{word-spacing:2.646000px;}
.ws10d{word-spacing:2.700000px;}
.ws2a{word-spacing:2.706000px;}
.wsf2{word-spacing:2.754000px;}
.ws36{word-spacing:2.772000px;}
.ws89{word-spacing:2.838000px;}
.wsde{word-spacing:2.904000px;}
.wsf{word-spacing:2.916000px;}
.ws11a{word-spacing:3.024000px;}
.ws51{word-spacing:3.036000px;}
.ws4f{word-spacing:3.168000px;}
.wsa3{word-spacing:3.234000px;}
.wsfe{word-spacing:3.240000px;}
.ws53{word-spacing:3.300000px;}
.wsee{word-spacing:3.366000px;}
.ws111{word-spacing:3.402000px;}
.ws27{word-spacing:3.432000px;}
.ws110{word-spacing:3.456000px;}
.ws3f{word-spacing:3.498000px;}
.ws29{word-spacing:3.564000px;}
.wsf1{word-spacing:3.618000px;}
.ws54{word-spacing:3.630000px;}
.ws92{word-spacing:3.672000px;}
.wse3{word-spacing:3.696000px;}
.wsf5{word-spacing:3.726000px;}
.ws96{word-spacing:3.762000px;}
.ws116{word-spacing:3.780000px;}
.ws41{word-spacing:3.828000px;}
.wsd6{word-spacing:3.894000px;}
.ws7d{word-spacing:3.960000px;}
.ws113{word-spacing:3.996000px;}
.ws5e{word-spacing:4.026000px;}
.ws103{word-spacing:4.050000px;}
.ws67{word-spacing:4.092000px;}
.ws119{word-spacing:4.104000px;}
.ws4e{word-spacing:4.158000px;}
.wsb2{word-spacing:4.224000px;}
.ws7c{word-spacing:4.290000px;}
.ws13{word-spacing:4.320000px;}
.ws72{word-spacing:4.356000px;}
.ws14{word-spacing:4.374000px;}
.ws49{word-spacing:4.422000px;}
.ws108{word-spacing:4.428000px;}
.ws124{word-spacing:4.482000px;}
.wsa9{word-spacing:4.488000px;}
.ws87{word-spacing:4.554000px;}
.ws3c{word-spacing:4.620000px;}
.ws105{word-spacing:4.644000px;}
.ws79{word-spacing:4.752000px;}
.ws65{word-spacing:4.818000px;}
.wsbe{word-spacing:4.884000px;}
.ws33{word-spacing:4.950000px;}
.wsc8{word-spacing:5.016000px;}
.ws120{word-spacing:5.022000px;}
.wsab{word-spacing:5.082000px;}
.ws76{word-spacing:5.148000px;}
.wsd7{word-spacing:5.280000px;}
.wsbb{word-spacing:5.346000px;}
.ws91{word-spacing:5.412000px;}
.ws30{word-spacing:5.478000px;}
.ws43{word-spacing:5.544000px;}
.wsef{word-spacing:5.610000px;}
.wse0{word-spacing:5.676000px;}
.ws97{word-spacing:5.742000px;}
.ws95{word-spacing:5.808000px;}
.wsd8{word-spacing:5.874000px;}
.wsc0{word-spacing:5.940000px;}
.ws1f{word-spacing:5.994000px;}
.ws6f{word-spacing:6.006000px;}
.ws31{word-spacing:6.138000px;}
.ws12d{word-spacing:6.156000px;}
.ws3b{word-spacing:6.204000px;}
.ws7a{word-spacing:6.270000px;}
.wsc7{word-spacing:6.336000px;}
.ws63{word-spacing:6.468000px;}
.ws62{word-spacing:6.534000px;}
.wsfb{word-spacing:6.588000px;}
.wse7{word-spacing:6.666000px;}
.wsd0{word-spacing:6.732000px;}
.wsa5{word-spacing:6.798000px;}
.ws77{word-spacing:6.864000px;}
.ws85{word-spacing:6.996000px;}
.ws102{word-spacing:7.020000px;}
.wsbd{word-spacing:7.062000px;}
.wsec{word-spacing:7.128000px;}
.ws2e{word-spacing:7.194000px;}
.wsf3{word-spacing:7.236000px;}
.wsf8{word-spacing:7.506000px;}
.wse5{word-spacing:7.590000px;}
.ws34{word-spacing:7.656000px;}
.ws125{word-spacing:7.668000px;}
.ws8d{word-spacing:7.722000px;}
.wsed{word-spacing:7.854000px;}
.wsf9{word-spacing:7.884000px;}
.wsb7{word-spacing:7.920000px;}
.wsba{word-spacing:7.986000px;}
.ws40{word-spacing:8.118000px;}
.ws12a{word-spacing:8.154000px;}
.wsea{word-spacing:8.184000px;}
.ws69{word-spacing:8.250000px;}
.wse9{word-spacing:8.316000px;}
.wsd1{word-spacing:8.382000px;}
.wsf4{word-spacing:8.424000px;}
.ws57{word-spacing:8.448000px;}
.ws70{word-spacing:8.646000px;}
.ws106{word-spacing:8.694000px;}
.ws4c{word-spacing:8.712000px;}
.wsdf{word-spacing:8.778000px;}
.wsc1{word-spacing:8.976000px;}
.ws74{word-spacing:9.042000px;}
.ws6e{word-spacing:9.174000px;}
.ws3d{word-spacing:9.240000px;}
.wse6{word-spacing:9.372000px;}
.wsce{word-spacing:9.636000px;}
.ws88{word-spacing:10.230000px;}
.ws112{word-spacing:10.908000px;}
.ws118{word-spacing:12.528000px;}
.wscd{word-spacing:14.322000px;}
.wsb6{word-spacing:16.434000px;}
.ws126{word-spacing:17.712000px;}
.ws12b{word-spacing:21.168000px;}
.wsc3{word-spacing:102.624000px;}
.wsc4{word-spacing:157.776000px;}
.ws9a{word-spacing:269.664000px;}
.ws9c{word-spacing:287.424000px;}
.ws9b{word-spacing:313.536000px;}
.wsb1{word-spacing:706.860000px;}
.wsb0{word-spacing:794.046000px;}
._7{margin-left:-11.088000px;}
._35{margin-left:-9.811800px;}
._9{margin-left:-8.409000px;}
._8{margin-left:-6.622200px;}
._5{margin-left:-5.305800px;}
._6{margin-left:-4.104000px;}
._2{margin-left:-2.988600px;}
._1{margin-left:-1.101600px;}
._0{width:1.305600px;}
._3{width:2.713200px;}
._b{width:7.022400px;}
._a{width:8.646000px;}
._25{width:25.938000px;}
._4{width:36.369600px;}
._c{width:40.411200px;}
._d{width:42.576000px;}
._34{width:43.724400px;}
._11{width:80.794200px;}
._29{width:98.640000px;}
._2a{width:106.701600px;}
._28{width:133.723200px;}
._2c{width:145.776000px;}
._10{width:148.989600px;}
._2b{width:156.817800px;}
._2d{width:169.776000px;}
._2f{width:181.776000px;}
._2e{width:193.776000px;}
._31{width:205.776000px;}
._32{width:217.776000px;}
._e{width:218.829600px;}
._14{width:233.424000px;}
._30{width:241.056000px;}
._33{width:243.673800px;}
._15{width:254.112000px;}
._1c{width:257.424000px;}
._1b{width:266.112000px;}
._1d{width:278.112000px;}
._21{width:295.248000px;}
._20{width:303.358200px;}
._27{width:305.565600px;}
._f{width:308.592000px;}
._1a{width:314.688000px;}
._17{width:318.966600px;}
._13{width:320.688000px;}
._19{width:328.032000px;}
._18{width:330.048000px;}
._12{width:332.112000px;}
._22{width:333.840000px;}
._16{width:343.248000px;}
._23{width:355.248000px;}
._1e{width:356.736000px;}
._24{width:367.248000px;}
._26{width:411.645600px;}
._1f{width:415.248000px;}
.fc3{color:rgb(67,33,78);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:22.096800px;}
.fsc{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fsa{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y37{bottom:1.204950px;}
.y38{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y6c{bottom:112.871700px;}
.y206{bottom:112.879350px;}
.yd1{bottom:112.959750px;}
.y132{bottom:112.961700px;}
.y1d4{bottom:112.979700px;}
.yed{bottom:112.991700px;}
.y143{bottom:113.011050px;}
.y21a{bottom:113.015850px;}
.y100{bottom:113.020200px;}
.y199{bottom:113.056350px;}
.y16f{bottom:113.062350px;}
.y1b6{bottom:113.069700px;}
.y9a{bottom:113.069850px;}
.yb{bottom:117.205050px;}
.yb2{bottom:120.496350px;}
.ya{bottom:131.601450px;}
.y26e{bottom:133.796850px;}
.y1e1{bottom:133.867350px;}
.y6b{bottom:133.876200px;}
.y202{bottom:133.883850px;}
.yd0{bottom:133.964250px;}
.y131{bottom:133.966200px;}
.y1d3{bottom:133.984200px;}
.yec{bottom:133.996200px;}
.y23f{bottom:134.000850px;}
.y142{bottom:134.015550px;}
.y219{bottom:134.020350px;}
.yff{bottom:134.024700px;}
.y198{bottom:134.060850px;}
.y16e{bottom:134.066850px;}
.y1b5{bottom:134.074200px;}
.y99{bottom:134.074350px;}
.yb1{bottom:140.300850px;}
.y9{bottom:145.997850px;}
.y26d{bottom:154.802850px;}
.y1e0{bottom:154.871850px;}
.y6a{bottom:154.880700px;}
.y201{bottom:154.888350px;}
.ycf{bottom:154.968750px;}
.y130{bottom:154.970700px;}
.y1d2{bottom:154.988700px;}
.yeb{bottom:155.000700px;}
.y23e{bottom:155.006850px;}
.y141{bottom:155.020050px;}
.y218{bottom:155.024850px;}
.yfe{bottom:155.029200px;}
.y98{bottom:155.051850px;}
.y197{bottom:155.065350px;}
.y16d{bottom:155.071350px;}
.y1b4{bottom:155.074200px;}
.y8{bottom:160.397850px;}
.y26c{bottom:175.808850px;}
.y1df{bottom:175.876350px;}
.y69{bottom:175.885200px;}
.y200{bottom:175.892850px;}
.yce{bottom:175.973250px;}
.y12f{bottom:175.975200px;}
.y1d1{bottom:175.993200px;}
.yea{bottom:176.005200px;}
.y23d{bottom:176.012850px;}
.y140{bottom:176.024550px;}
.y217{bottom:176.029350px;}
.yfd{bottom:176.033700px;}
.y1b3{bottom:176.051700px;}
.y97{bottom:176.056350px;}
.y196{bottom:176.069850px;}
.y16c{bottom:176.075850px;}
.y26b{bottom:196.814850px;}
.y1de{bottom:196.880850px;}
.y68{bottom:196.889700px;}
.y1ff{bottom:196.897350px;}
.ycd{bottom:196.977750px;}
.y12e{bottom:196.979700px;}
.y1d0{bottom:196.997700px;}
.ye9{bottom:197.009700px;}
.y23c{bottom:197.018850px;}
.y13f{bottom:197.029050px;}
.y216{bottom:197.033850px;}
.yfc{bottom:197.038200px;}
.y1b2{bottom:197.056200px;}
.y96{bottom:197.060850px;}
.y195{bottom:197.074350px;}
.y33{bottom:203.442900px;}
.y26a{bottom:217.820850px;}
.y1dd{bottom:217.885350px;}
.y67{bottom:217.894200px;}
.y1fe{bottom:217.901850px;}
.ycc{bottom:217.982250px;}
.y12d{bottom:217.984200px;}
.y1cf{bottom:218.002200px;}
.ye8{bottom:218.014200px;}
.y23b{bottom:218.024850px;}
.y13e{bottom:218.033550px;}
.y215{bottom:218.038350px;}
.yfb{bottom:218.042700px;}
.y1b1{bottom:218.060700px;}
.y95{bottom:218.065350px;}
.y16b{bottom:218.068350px;}
.y194{bottom:218.074350px;}
.y32{bottom:221.438400px;}
.y269{bottom:238.826850px;}
.y1dc{bottom:238.889850px;}
.y66{bottom:238.898700px;}
.y1fd{bottom:238.906350px;}
.ycb{bottom:238.986750px;}
.y12c{bottom:238.988700px;}
.y1ce{bottom:239.006700px;}
.ye7{bottom:239.018700px;}
.y23a{bottom:239.030850px;}
.y13d{bottom:239.038050px;}
.y214{bottom:239.042850px;}
.yfa{bottom:239.047200px;}
.y1b0{bottom:239.065200px;}
.y94{bottom:239.069850px;}
.y16a{bottom:239.072850px;}
.y193{bottom:239.074350px;}
.y31{bottom:239.433900px;}
.y30{bottom:257.429400px;}
.y268{bottom:259.832850px;}
.y1db{bottom:259.894350px;}
.y65{bottom:259.903200px;}
.y1fc{bottom:259.910850px;}
.yca{bottom:259.991250px;}
.y12b{bottom:259.993200px;}
.y1cd{bottom:260.011200px;}
.y239{bottom:260.036850px;}
.y13c{bottom:260.042550px;}
.y213{bottom:260.047350px;}
.yf9{bottom:260.051700px;}
.y1af{bottom:260.069700px;}
.y93{bottom:260.074350px;}
.y28{bottom:262.023450px;}
.ye6{bottom:274.378200px;}
.y169{bottom:274.432350px;}
.y2f{bottom:275.424900px;}
.y267{bottom:280.838850px;}
.y1da{bottom:280.898850px;}
.y64{bottom:280.907700px;}
.y1fb{bottom:280.915350px;}
.yc9{bottom:280.995750px;}
.y12a{bottom:280.997700px;}
.y1cc{bottom:281.015700px;}
.y238{bottom:281.042850px;}
.y13b{bottom:281.047050px;}
.y212{bottom:281.051850px;}
.yf8{bottom:281.056200px;}
.y1ae{bottom:281.074200px;}
.y192{bottom:281.074350px;}
.y92{bottom:281.082000px;}
.y27{bottom:281.827950px;}
.y2e{bottom:293.420400px;}
.y266{bottom:301.844850px;}
.y1d9{bottom:301.903350px;}
.y63{bottom:301.912200px;}
.y1fa{bottom:301.919850px;}
.yc8{bottom:302.000250px;}
.y129{bottom:302.002200px;}
.y1cb{bottom:302.020200px;}
.y191{bottom:302.029350px;}
.y237{bottom:302.048850px;}
.y13a{bottom:302.051550px;}
.y211{bottom:302.056350px;}
.yf7{bottom:302.060700px;}
.y1ad{bottom:302.078700px;}
.y2d{bottom:311.415900px;}
.y265{bottom:322.850850px;}
.y26{bottom:322.851750px;}
.y1d8{bottom:322.907850px;}
.y62{bottom:322.916700px;}
.y1f9{bottom:322.924350px;}
.yc7{bottom:323.004750px;}
.y128{bottom:323.006700px;}
.ye5{bottom:323.020200px;}
.y1ca{bottom:323.024700px;}
.y190{bottom:323.033850px;}
.y236{bottom:323.054850px;}
.y139{bottom:323.056050px;}
.y210{bottom:323.060850px;}
.yf6{bottom:323.065200px;}
.y168{bottom:323.074350px;}
.y91{bottom:326.143500px;}
.y1ac{bottom:337.440900px;}
.y25{bottom:342.656250px;}
.y264{bottom:343.856850px;}
.y1d7{bottom:343.912350px;}
.y61{bottom:343.921200px;}
.y1f8{bottom:343.928850px;}
.yc6{bottom:344.009250px;}
.y127{bottom:344.011200px;}
.ye4{bottom:344.024700px;}
.y1c9{bottom:344.029200px;}
.y18f{bottom:344.038350px;}
.y138{bottom:344.060550px;}
.y235{bottom:344.060850px;}
.y20f{bottom:344.065350px;}
.yf5{bottom:344.069700px;}
.y167{bottom:344.069850px;}
.y2c{bottom:346.421400px;}
.y90{bottom:358.441050px;}
.y24{bottom:362.460750px;}
.y2b{bottom:364.421400px;}
.y263{bottom:364.862850px;}
.y1d6{bottom:364.916850px;}
.y60{bottom:364.925700px;}
.y1f7{bottom:364.933350px;}
.yc5{bottom:365.013750px;}
.y126{bottom:365.015700px;}
.ye3{bottom:365.029200px;}
.y1c8{bottom:365.033700px;}
.y18e{bottom:365.042850px;}
.y137{bottom:365.065050px;}
.y234{bottom:365.066850px;}
.y20e{bottom:365.069850px;}
.yf4{bottom:365.074200px;}
.y166{bottom:365.074350px;}
.y23{bottom:382.265250px;}
.y2a{bottom:382.421400px;}
.y262{bottom:385.868850px;}
.y1d5{bottom:385.921350px;}
.y5f{bottom:385.930200px;}
.y1f6{bottom:385.937850px;}
.y125{bottom:386.020200px;}
.ye2{bottom:386.033700px;}
.y1c7{bottom:386.038200px;}
.y18d{bottom:386.047350px;}
.y1ab{bottom:386.056200px;}
.y136{bottom:386.069550px;}
.y233{bottom:386.072850px;}
.y165{bottom:386.074350px;}
.yf3{bottom:386.078700px;}
.yc4{bottom:400.373250px;}
.y29{bottom:400.411950px;}
.y22{bottom:402.069750px;}
.y261{bottom:406.874850px;}
.y8f{bottom:406.925850px;}
.y5e{bottom:406.934700px;}
.y1f5{bottom:406.942350px;}
.y124{bottom:407.024700px;}
.ye1{bottom:407.038200px;}
.y1c6{bottom:407.042700px;}
.y18c{bottom:407.051850px;}
.y1aa{bottom:407.060700px;}
.y164{bottom:407.065350px;}
.y135{bottom:407.074050px;}
.y20d{bottom:407.078850px;}
.y21{bottom:421.874250px;}
.y260{bottom:427.880850px;}
.y8e{bottom:427.930350px;}
.y5d{bottom:427.939200px;}
.y1f4{bottom:427.946850px;}
.y123{bottom:428.029200px;}
.ye0{bottom:428.042700px;}
.y1c5{bottom:428.047200px;}
.y18b{bottom:428.056350px;}
.y1a9{bottom:428.065200px;}
.y163{bottom:428.069850px;}
.y134{bottom:428.078550px;}
.yf2{bottom:429.944550px;}
.y20{bottom:441.678750px;}
.y20c{bottom:442.441050px;}
.y25f{bottom:448.886850px;}
.y8d{bottom:448.934850px;}
.y5c{bottom:448.943700px;}
.y1f3{bottom:448.951350px;}
.yc3{bottom:449.015250px;}
.y122{bottom:449.033700px;}
.ydf{bottom:449.047200px;}
.y1c4{bottom:449.051700px;}
.y18a{bottom:449.060850px;}
.y1a8{bottom:449.069700px;}
.y162{bottom:449.074350px;}
.yf1{bottom:449.749050px;}
.y133{bottom:459.593550px;}
.y1f{bottom:461.483250px;}
.yf0{bottom:469.553550px;}
.y25e{bottom:469.892850px;}
.y8c{bottom:469.939350px;}
.y5b{bottom:469.948200px;}
.y1f2{bottom:469.955850px;}
.yc2{bottom:470.019750px;}
.y121{bottom:470.038200px;}
.yde{bottom:470.051700px;}
.y1c3{bottom:470.056200px;}
.y189{bottom:470.065350px;}
.y161{bottom:470.069850px;}
.y1a7{bottom:470.074200px;}
.y1e{bottom:481.283250px;}
.yef{bottom:489.358050px;}
.y25d{bottom:490.898850px;}
.y8b{bottom:490.943850px;}
.y5a{bottom:490.952700px;}
.y1f1{bottom:490.960350px;}
.yc1{bottom:491.024250px;}
.y20b{bottom:491.038350px;}
.y120{bottom:491.042700px;}
.ydd{bottom:491.056200px;}
.y1c2{bottom:491.060700px;}
.y188{bottom:491.069850px;}
.y160{bottom:491.074350px;}
.y1a6{bottom:491.078700px;}
.y232{bottom:491.078850px;}
.y1d{bottom:501.083250px;}
.yee{bottom:509.162550px;}
.y25c{bottom:511.904850px;}
.y8a{bottom:511.948350px;}
.y59{bottom:511.957200px;}
.y1f0{bottom:511.964850px;}
.yc0{bottom:512.028750px;}
.y20a{bottom:512.042850px;}
.y11f{bottom:512.047200px;}
.ydc{bottom:512.060700px;}
.y1c1{bottom:512.065200px;}
.y15f{bottom:512.074350px;}
.y231{bottom:517.529400px;}
.y146{bottom:520.596000px;}
.y1c{bottom:520.883250px;}
.y25b{bottom:532.910850px;}
.y89{bottom:532.952850px;}
.y58{bottom:532.961700px;}
.y1ef{bottom:532.969350px;}
.ybf{bottom:533.033250px;}
.y15e{bottom:533.038350px;}
.y209{bottom:533.047350px;}
.y11e{bottom:533.051700px;}
.ydb{bottom:533.065200px;}
.y1c0{bottom:533.069700px;}
.y187{bottom:533.074350px;}
.y145{bottom:540.400500px;}
.y1b{bottom:540.638250px;}
.y1a5{bottom:543.730950px;}
.y25a{bottom:553.916850px;}
.y88{bottom:553.957350px;}
.y57{bottom:553.966200px;}
.y1ee{bottom:553.973850px;}
.ybe{bottom:554.037750px;}
.y15d{bottom:554.042850px;}
.y186{bottom:554.051850px;}
.y11d{bottom:554.056200px;}
.yda{bottom:554.069700px;}
.y230{bottom:554.072850px;}
.y1bf{bottom:554.074200px;}
.y144{bottom:560.205000px;}
.y1a{bottom:560.442750px;}
.y1a4{bottom:566.038950px;}
.y259{bottom:574.922850px;}
.y87{bottom:574.961850px;}
.y56{bottom:574.970700px;}
.y1ed{bottom:574.978350px;}
.ybd{bottom:575.042250px;}
.y15c{bottom:575.047350px;}
.y185{bottom:575.056350px;}
.y11c{bottom:575.060700px;}
.yd9{bottom:575.074200px;}
.y22f{bottom:575.078850px;}
.y19{bottom:580.247250px;}
.y1a3{bottom:588.343350px;}
.y258{bottom:595.928850px;}
.y86{bottom:595.966350px;}
.y55{bottom:595.975200px;}
.y1ec{bottom:595.982850px;}
.ybc{bottom:596.046750px;}
.y15b{bottom:596.051850px;}
.y1be{bottom:596.060700px;}
.y184{bottom:596.060850px;}
.y11b{bottom:596.065200px;}
.yd8{bottom:596.078700px;}
.y18{bottom:600.051750px;}
.y22e{bottom:601.529400px;}
.y1a2{bottom:610.651350px;}
.y257{bottom:616.934850px;}
.y85{bottom:616.970850px;}
.y54{bottom:616.979700px;}
.y1eb{bottom:616.987350px;}
.ybb{bottom:617.051250px;}
.y15a{bottom:617.056350px;}
.y1bd{bottom:617.065200px;}
.y183{bottom:617.065350px;}
.y11a{bottom:617.069700px;}
.y17{bottom:619.856250px;}
.y1a1{bottom:633.259350px;}
.y256{bottom:637.940850px;}
.y84{bottom:637.975350px;}
.y53{bottom:637.984200px;}
.y1ea{bottom:637.991850px;}
.y22d{bottom:638.048850px;}
.yba{bottom:638.055750px;}
.y159{bottom:638.060850px;}
.y1bc{bottom:638.069700px;}
.y182{bottom:638.069850px;}
.y119{bottom:638.074200px;}
.y16{bottom:639.660750px;}
.yd7{bottom:644.141850px;}
.y255{bottom:658.946850px;}
.y83{bottom:658.979850px;}
.y52{bottom:658.988700px;}
.y1e9{bottom:658.996350px;}
.y22c{bottom:659.054850px;}
.yb9{bottom:659.060250px;}
.y158{bottom:659.065350px;}
.y1bb{bottom:659.074200px;}
.y181{bottom:659.074350px;}
.y118{bottom:659.078700px;}
.y15{bottom:659.465250px;}
.yd6{bottom:663.946350px;}
.y1a0{bottom:665.553600px;}
.y14{bottom:679.269750px;}
.y254{bottom:679.952850px;}
.yb0{bottom:679.984200px;}
.y82{bottom:679.984350px;}
.y51{bottom:679.993200px;}
.y1e8{bottom:680.000850px;}
.y22b{bottom:680.060850px;}
.yb8{bottom:680.064750px;}
.y157{bottom:680.069850px;}
.y180{bottom:680.074350px;}
.y1ba{bottom:680.078700px;}
.y208{bottom:680.078850px;}
.yd5{bottom:683.750850px;}
.y19f{bottom:685.358100px;}
.y13{bottom:699.074250px;}
.y253{bottom:700.958850px;}
.yaf{bottom:700.988700px;}
.y81{bottom:700.988850px;}
.y50{bottom:700.997700px;}
.y1e7{bottom:701.005350px;}
.y22a{bottom:701.066850px;}
.yb7{bottom:701.069250px;}
.y156{bottom:701.074350px;}
.yd4{bottom:703.555350px;}
.y19e{bottom:705.162600px;}
.y117{bottom:711.891750px;}
.y207{bottom:715.441050px;}
.y12{bottom:718.878750px;}
.y252{bottom:721.964850px;}
.yae{bottom:721.993200px;}
.y80{bottom:721.993350px;}
.y4f{bottom:722.002200px;}
.y1e6{bottom:722.009850px;}
.y17f{bottom:722.056350px;}
.y229{bottom:722.072850px;}
.yb6{bottom:722.073750px;}
.y155{bottom:722.086350px;}
.y1b9{bottom:722.946750px;}
.y19d{bottom:724.967100px;}
.y116{bottom:731.357550px;}
.y11{bottom:738.683250px;}
.y1b8{bottom:742.751250px;}
.y251{bottom:742.970850px;}
.yad{bottom:742.997700px;}
.y7f{bottom:742.997850px;}
.y4e{bottom:743.006700px;}
.y1e5{bottom:743.014350px;}
.y17e{bottom:743.060850px;}
.yb5{bottom:743.078250px;}
.y228{bottom:743.078850px;}
.y115{bottom:750.257550px;}
.y10{bottom:758.478750px;}
.y1b7{bottom:762.555750px;}
.y250{bottom:763.976850px;}
.yac{bottom:764.002200px;}
.y7e{bottom:764.002350px;}
.y4d{bottom:764.011200px;}
.y1e4{bottom:764.018850px;}
.y17d{bottom:764.065350px;}
.y154{bottom:764.078850px;}
.yb4{bottom:764.082750px;}
.y114{bottom:769.157550px;}
.y227{bottom:769.529250px;}
.yf{bottom:778.283250px;}
.y24f{bottom:784.982850px;}
.yab{bottom:785.006700px;}
.y7d{bottom:785.006850px;}
.y4c{bottom:785.015700px;}
.y1e3{bottom:785.023350px;}
.y17c{bottom:785.069850px;}
.y113{bottom:788.057550px;}
.y19c{bottom:790.023900px;}
.y112{bottom:791.957550px;}
.yb3{bottom:796.455750px;}
.ye{bottom:798.087750px;}
.y24e{bottom:805.988850px;}
.yaa{bottom:806.011200px;}
.y7c{bottom:806.011350px;}
.y4b{bottom:806.020200px;}
.y205{bottom:806.027850px;}
.y153{bottom:806.042850px;}
.y226{bottom:806.072850px;}
.y17b{bottom:806.074350px;}
.y111{bottom:806.957550px;}
.y19b{bottom:809.828400px;}
.y1e2{bottom:820.382850px;}
.y110{bottom:825.857550px;}
.y24d{bottom:826.994850px;}
.ya9{bottom:827.015700px;}
.y7b{bottom:827.015850px;}
.y4a{bottom:827.024700px;}
.y204{bottom:827.032350px;}
.y152{bottom:827.047350px;}
.y225{bottom:827.066850px;}
.y17a{bottom:827.078850px;}
.yd{bottom:829.185300px;}
.y19a{bottom:829.632900px;}
.y10f{bottom:844.757550px;}
.y24c{bottom:848.000850px;}
.ya8{bottom:848.020200px;}
.y7a{bottom:848.020350px;}
.y49{bottom:848.029200px;}
.y151{bottom:848.051850px;}
.y224{bottom:848.072850px;}
.yd3{bottom:853.770300px;}
.y203{bottom:862.391850px;}
.y179{bottom:862.441050px;}
.y10e{bottom:863.657550px;}
.y24b{bottom:869.006850px;}
.ya7{bottom:869.024700px;}
.y79{bottom:869.024850px;}
.y48{bottom:869.033700px;}
.y150{bottom:869.056350px;}
.y223{bottom:869.078850px;}
.yd2{bottom:873.574800px;}
.y10d{bottom:882.557550px;}
.y24a{bottom:890.012850px;}
.ya6{bottom:890.029200px;}
.y78{bottom:890.029350px;}
.y47{bottom:890.038200px;}
.y14f{bottom:890.060850px;}
.y222{bottom:895.529250px;}
.y10c{bottom:901.457550px;}
.y7{bottom:908.466750px;}
.y249{bottom:911.018850px;}
.ya5{bottom:911.033700px;}
.y77{bottom:911.033850px;}
.y46{bottom:911.042700px;}
.y178{bottom:911.050350px;}
.y14e{bottom:911.065350px;}
.y10b{bottom:916.457550px;}
.y6{bottom:926.466750px;}
.y248{bottom:932.024850px;}
.ya4{bottom:932.038200px;}
.y76{bottom:932.038350px;}
.y45{bottom:932.047200px;}
.y177{bottom:932.054850px;}
.y14d{bottom:932.069850px;}
.y221{bottom:932.078850px;}
.y10a{bottom:935.357550px;}
.y5{bottom:944.466750px;}
.y247{bottom:953.030850px;}
.ya3{bottom:953.042700px;}
.y75{bottom:953.042850px;}
.y44{bottom:953.051700px;}
.y176{bottom:953.059350px;}
.y14c{bottom:953.074350px;}
.y109{bottom:954.257550px;}
.y220{bottom:958.529250px;}
.y108{bottom:973.176000px;}
.y246{bottom:974.036850px;}
.ya2{bottom:974.047200px;}
.y74{bottom:974.047350px;}
.y43{bottom:974.056200px;}
.y175{bottom:974.063850px;}
.y14b{bottom:974.086350px;}
.y4{bottom:979.474800px;}
.y107{bottom:992.076000px;}
.y245{bottom:995.042850px;}
.ya1{bottom:995.051700px;}
.y73{bottom:995.051850px;}
.y42{bottom:995.060700px;}
.y174{bottom:995.068350px;}
.y21f{bottom:995.078850px;}
.y106{bottom:1010.976000px;}
.y244{bottom:1016.048850px;}
.ya0{bottom:1016.056200px;}
.y72{bottom:1016.056350px;}
.y41{bottom:1016.065200px;}
.y173{bottom:1016.072850px;}
.y14a{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y21e{bottom:1021.529250px;}
.y105{bottom:1029.876000px;}
.y243{bottom:1037.054850px;}
.y9f{bottom:1037.060700px;}
.y71{bottom:1037.060850px;}
.y40{bottom:1037.069700px;}
.y172{bottom:1037.077350px;}
.y104{bottom:1049.076000px;}
.y2{bottom:1049.282550px;}
.y242{bottom:1058.060850px;}
.y9e{bottom:1058.065200px;}
.y70{bottom:1058.065350px;}
.y149{bottom:1058.066850px;}
.y3f{bottom:1058.074200px;}
.y21d{bottom:1058.078850px;}
.y171{bottom:1058.081850px;}
.y241{bottom:1079.066850px;}
.y9d{bottom:1079.069700px;}
.y6f{bottom:1079.069850px;}
.y148{bottom:1079.071350px;}
.y3e{bottom:1079.078700px;}
.y170{bottom:1079.086350px;}
.y103{bottom:1079.673900px;}
.y21c{bottom:1084.192950px;}
.y102{bottom:1099.478400px;}
.y240{bottom:1100.072850px;}
.y9c{bottom:1100.074200px;}
.y6e{bottom:1100.074350px;}
.yc{bottom:1109.815500px;}
.y147{bottom:1110.569850px;}
.y3d{bottom:1111.570800px;}
.y21b{bottom:1113.696900px;}
.y101{bottom:1119.282900px;}
.y9b{bottom:1121.078700px;}
.y6d{bottom:1121.078850px;}
.y36{bottom:1135.732500px;}
.y39{bottom:1152.015600px;}
.y35{bottom:1159.189500px;}
.y34{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h11{height:16.788389px;}
.h1a{height:25.200000px;}
.h18{height:34.320000px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h13{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:41.053711px;}
.h19{height:41.184000px;}
.h21{height:41.198400px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.h9{height:45.615234px;}
.ha{height:46.332000px;}
.hd{height:46.350000px;}
.h24{height:46.356000px;}
.hb{height:46.368000px;}
.h23{height:46.380000px;}
.hc{height:46.530000px;}
.h16{height:50.176758px;}
.h10{height:50.566500px;}
.h4{height:50.836500px;}
.h14{height:54.738281px;}
.h15{height:56.628000px;}
.h1c{height:56.646000px;}
.h1d{height:56.664000px;}
.h1e{height:56.682000px;}
.h22{height:56.700000px;}
.h1f{height:56.718000px;}
.h17{height:56.736000px;}
.h1b{height:56.790000px;}
.h20{height:56.826000px;}
.h3{height:77.545898px;}
.h12{height:80.825130px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.065500px;}
.xd{left:108.285450px;}
.xa{left:111.091350px;}
.xf{left:112.254900px;}
.xe{left:113.802900px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x10{left:206.550900px;}
.x4{left:300.189000px;}
.x18{left:304.438350px;}
.xc{left:317.200500px;}
.x16{left:334.208400px;}
.x11{left:389.175450px;}
.x3{left:396.050700px;}
.x17{left:488.782350px;}
.x12{left:504.531450px;}
.x13{left:519.675450px;}
.x14{left:597.486000px;}
.x15{left:619.279650px;}
.x9{left:651.919500px;}
.x8{left:678.475500px;}
.x19{left:800.519850px;}
.x1{left:807.081450px;}
@media print{
.v5{vertical-align:-19.563200pt;}
.v4{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.142400pt;}
.v2{vertical-align:16.016000pt;}
.v1{vertical-align:19.536000pt;}
.ls19{letter-spacing:-1.173333pt;}
.lsa{letter-spacing:-0.938667pt;}
.ls7{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls1c{letter-spacing:-0.624000pt;}
.ls3{letter-spacing:-0.614400pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.410667pt;}
.lse{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.234667pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.083952pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000533pt;}
.ls15{letter-spacing:0.009600pt;}
.ls14{letter-spacing:0.011200pt;}
.ls17{letter-spacing:0.011733pt;}
.lsf{letter-spacing:0.016533pt;}
.ls11{letter-spacing:0.037867pt;}
.ls13{letter-spacing:0.045867pt;}
.ls12{letter-spacing:0.174400pt;}
.ls10{letter-spacing:0.205867pt;}
.ls18{letter-spacing:0.469333pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.lsb{letter-spacing:279.071360pt;}
.ws24{word-spacing:-15.936000pt;}
.wsad{word-spacing:-14.666667pt;}
.wsae{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf0{word-spacing:-12.000000pt;}
.wsfc{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.856000pt;}
.wsfd{word-spacing:-11.760000pt;}
.ws123{word-spacing:-11.568000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws9d{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws23{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.793600pt;}
.ws4b{word-spacing:-8.550667pt;}
.ws0{word-spacing:-8.549333pt;}
.ws5{word-spacing:-6.996000pt;}
.ws4{word-spacing:-6.912048pt;}
.ws9e{word-spacing:-6.218667pt;}
.wsd5{word-spacing:-3.520000pt;}
.wse1{word-spacing:-3.461333pt;}
.wsdc{word-spacing:-3.402667pt;}
.wsa7{word-spacing:-3.226667pt;}
.ws131{word-spacing:-2.976000pt;}
.ws75{word-spacing:-2.933333pt;}
.ws56{word-spacing:-2.874667pt;}
.wsb3{word-spacing:-2.816000pt;}
.ws99{word-spacing:-2.698667pt;}
.ws4a{word-spacing:-2.640000pt;}
.ws11c{word-spacing:-2.592000pt;}
.wsdd{word-spacing:-2.581333pt;}
.ws55{word-spacing:-2.522667pt;}
.ws8e{word-spacing:-2.464000pt;}
.wsd9{word-spacing:-2.405333pt;}
.wsbf{word-spacing:-2.346667pt;}
.wsa2{word-spacing:-2.288000pt;}
.ws114{word-spacing:-2.256000pt;}
.ws45{word-spacing:-2.229333pt;}
.ws2b{word-spacing:-2.170667pt;}
.ws90{word-spacing:-2.112000pt;}
.ws12{word-spacing:-2.064000pt;}
.ws6c{word-spacing:-2.053333pt;}
.ws11f{word-spacing:-2.016000pt;}
.ws1c{word-spacing:-1.968000pt;}
.ws48{word-spacing:-1.936000pt;}
.ws101{word-spacing:-1.920000pt;}
.ws46{word-spacing:-1.877333pt;}
.ws122{word-spacing:-1.872000pt;}
.wsa6{word-spacing:-1.818667pt;}
.wscc{word-spacing:-1.776000pt;}
.ws5a{word-spacing:-1.760000pt;}
.ws132{word-spacing:-1.728000pt;}
.ws7f{word-spacing:-1.701333pt;}
.ws8a{word-spacing:-1.642667pt;}
.wsa4{word-spacing:-1.584000pt;}
.ws11e{word-spacing:-1.536000pt;}
.ws58{word-spacing:-1.525333pt;}
.wsd3{word-spacing:-1.466667pt;}
.ws1e{word-spacing:-1.440000pt;}
.ws4d{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.392000pt;}
.ws66{word-spacing:-1.349333pt;}
.ws10f{word-spacing:-1.344000pt;}
.ws11{word-spacing:-1.296000pt;}
.wsb9{word-spacing:-1.290667pt;}
.ws64{word-spacing:-1.232000pt;}
.ws1d{word-spacing:-1.200000pt;}
.wscf{word-spacing:-1.173333pt;}
.ws93{word-spacing:-1.152000pt;}
.ws61{word-spacing:-1.114667pt;}
.ws94{word-spacing:-1.056000pt;}
.ws10c{word-spacing:-1.008000pt;}
.ws3a{word-spacing:-0.997333pt;}
.ws2c{word-spacing:-0.938667pt;}
.ws83{word-spacing:-0.912000pt;}
.wse2{word-spacing:-0.880000pt;}
.ws28{word-spacing:-0.821333pt;}
.ws7b{word-spacing:-0.762667pt;}
.wsf6{word-spacing:-0.720000pt;}
.ws44{word-spacing:-0.704000pt;}
.wsff{word-spacing:-0.672000pt;}
.wsd4{word-spacing:-0.645333pt;}
.ws7e{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.576000pt;}
.wsdb{word-spacing:-0.528000pt;}
.ws52{word-spacing:-0.469333pt;}
.ws10e{word-spacing:-0.432000pt;}
.ws38{word-spacing:-0.410667pt;}
.ws9f{word-spacing:-0.384000pt;}
.ws39{word-spacing:-0.352000pt;}
.ws81{word-spacing:-0.336000pt;}
.ws2d{word-spacing:-0.293333pt;}
.ws109{word-spacing:-0.240000pt;}
.ws6a{word-spacing:-0.234667pt;}
.wsb{word-spacing:-0.192000pt;}
.ws59{word-spacing:-0.176000pt;}
.ws130{word-spacing:-0.144000pt;}
.wseb{word-spacing:-0.117333pt;}
.ws9{word-spacing:-0.098949pt;}
.wsf7{word-spacing:-0.096000pt;}
.ws5b{word-spacing:-0.058667pt;}
.wsa{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.048000pt;}
.ws86{word-spacing:0.058667pt;}
.wscb{word-spacing:0.096000pt;}
.ws80{word-spacing:0.117333pt;}
.ws128{word-spacing:0.144000pt;}
.wsa8{word-spacing:0.176000pt;}
.ws82{word-spacing:0.192000pt;}
.wsc2{word-spacing:0.234667pt;}
.ws8c{word-spacing:0.293333pt;}
.wsbc{word-spacing:0.352000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws10b{word-spacing:0.432000pt;}
.ws37{word-spacing:0.469333pt;}
.ws20{word-spacing:0.480000pt;}
.ws47{word-spacing:0.528000pt;}
.ws71{word-spacing:0.586667pt;}
.wsc{word-spacing:0.614400pt;}
.wsc5{word-spacing:0.624000pt;}
.ws8b{word-spacing:0.645333pt;}
.ws12c{word-spacing:0.672000pt;}
.wsb4{word-spacing:0.704000pt;}
.ws17{word-spacing:0.720000pt;}
.ws35{word-spacing:0.762667pt;}
.wsca{word-spacing:0.768000pt;}
.wsaa{word-spacing:0.821333pt;}
.ws121{word-spacing:0.864000pt;}
.wsc9{word-spacing:0.880000pt;}
.ws16{word-spacing:0.912000pt;}
.ws68{word-spacing:0.938667pt;}
.ws100{word-spacing:0.960000pt;}
.ws26{word-spacing:0.997333pt;}
.ws117{word-spacing:1.008000pt;}
.ws3e{word-spacing:1.056000pt;}
.ws12f{word-spacing:1.104000pt;}
.wsb8{word-spacing:1.114667pt;}
.ws22{word-spacing:1.152000pt;}
.ws42{word-spacing:1.173333pt;}
.wsa1{word-spacing:1.232000pt;}
.ws129{word-spacing:1.248000pt;}
.ws21{word-spacing:1.280000pt;}
.ws25{word-spacing:1.290667pt;}
.ws127{word-spacing:1.296000pt;}
.ws1b{word-spacing:1.344000pt;}
.wsb5{word-spacing:1.349333pt;}
.ws11b{word-spacing:1.392000pt;}
.ws60{word-spacing:1.408000pt;}
.ws107{word-spacing:1.440000pt;}
.ws5f{word-spacing:1.466667pt;}
.ws10{word-spacing:1.488000pt;}
.ws5d{word-spacing:1.525333pt;}
.ws11d{word-spacing:1.536000pt;}
.ws2f{word-spacing:1.584000pt;}
.ws18{word-spacing:1.632000pt;}
.ws50{word-spacing:1.642667pt;}
.ws104{word-spacing:1.680000pt;}
.ws6b{word-spacing:1.701333pt;}
.wsc6{word-spacing:1.728000pt;}
.wsaf{word-spacing:1.760000pt;}
.ws84{word-spacing:1.776000pt;}
.wsda{word-spacing:1.818667pt;}
.ws6d{word-spacing:1.872000pt;}
.ws78{word-spacing:1.877333pt;}
.ws115{word-spacing:1.920000pt;}
.wsd2{word-spacing:1.936000pt;}
.ws8f{word-spacing:1.994667pt;}
.wsfa{word-spacing:2.016000pt;}
.ws98{word-spacing:2.053333pt;}
.wse{word-spacing:2.064000pt;}
.wse8{word-spacing:2.112000pt;}
.wsd{word-spacing:2.160000pt;}
.ws32{word-spacing:2.170667pt;}
.wse4{word-spacing:2.229333pt;}
.ws10a{word-spacing:2.256000pt;}
.ws5c{word-spacing:2.288000pt;}
.ws12e{word-spacing:2.304000pt;}
.ws73{word-spacing:2.346667pt;}
.wsac{word-spacing:2.352000pt;}
.ws10d{word-spacing:2.400000pt;}
.ws2a{word-spacing:2.405333pt;}
.wsf2{word-spacing:2.448000pt;}
.ws36{word-spacing:2.464000pt;}
.ws89{word-spacing:2.522667pt;}
.wsde{word-spacing:2.581333pt;}
.wsf{word-spacing:2.592000pt;}
.ws11a{word-spacing:2.688000pt;}
.ws51{word-spacing:2.698667pt;}
.ws4f{word-spacing:2.816000pt;}
.wsa3{word-spacing:2.874667pt;}
.wsfe{word-spacing:2.880000pt;}
.ws53{word-spacing:2.933333pt;}
.wsee{word-spacing:2.992000pt;}
.ws111{word-spacing:3.024000pt;}
.ws27{word-spacing:3.050667pt;}
.ws110{word-spacing:3.072000pt;}
.ws3f{word-spacing:3.109333pt;}
.ws29{word-spacing:3.168000pt;}
.wsf1{word-spacing:3.216000pt;}
.ws54{word-spacing:3.226667pt;}
.ws92{word-spacing:3.264000pt;}
.wse3{word-spacing:3.285333pt;}
.wsf5{word-spacing:3.312000pt;}
.ws96{word-spacing:3.344000pt;}
.ws116{word-spacing:3.360000pt;}
.ws41{word-spacing:3.402667pt;}
.wsd6{word-spacing:3.461333pt;}
.ws7d{word-spacing:3.520000pt;}
.ws113{word-spacing:3.552000pt;}
.ws5e{word-spacing:3.578667pt;}
.ws103{word-spacing:3.600000pt;}
.ws67{word-spacing:3.637333pt;}
.ws119{word-spacing:3.648000pt;}
.ws4e{word-spacing:3.696000pt;}
.wsb2{word-spacing:3.754667pt;}
.ws7c{word-spacing:3.813333pt;}
.ws13{word-spacing:3.840000pt;}
.ws72{word-spacing:3.872000pt;}
.ws14{word-spacing:3.888000pt;}
.ws49{word-spacing:3.930667pt;}
.ws108{word-spacing:3.936000pt;}
.ws124{word-spacing:3.984000pt;}
.wsa9{word-spacing:3.989333pt;}
.ws87{word-spacing:4.048000pt;}
.ws3c{word-spacing:4.106667pt;}
.ws105{word-spacing:4.128000pt;}
.ws79{word-spacing:4.224000pt;}
.ws65{word-spacing:4.282667pt;}
.wsbe{word-spacing:4.341333pt;}
.ws33{word-spacing:4.400000pt;}
.wsc8{word-spacing:4.458667pt;}
.ws120{word-spacing:4.464000pt;}
.wsab{word-spacing:4.517333pt;}
.ws76{word-spacing:4.576000pt;}
.wsd7{word-spacing:4.693333pt;}
.wsbb{word-spacing:4.752000pt;}
.ws91{word-spacing:4.810667pt;}
.ws30{word-spacing:4.869333pt;}
.ws43{word-spacing:4.928000pt;}
.wsef{word-spacing:4.986667pt;}
.wse0{word-spacing:5.045333pt;}
.ws97{word-spacing:5.104000pt;}
.ws95{word-spacing:5.162667pt;}
.wsd8{word-spacing:5.221333pt;}
.wsc0{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.328000pt;}
.ws6f{word-spacing:5.338667pt;}
.ws31{word-spacing:5.456000pt;}
.ws12d{word-spacing:5.472000pt;}
.ws3b{word-spacing:5.514667pt;}
.ws7a{word-spacing:5.573333pt;}
.wsc7{word-spacing:5.632000pt;}
.ws63{word-spacing:5.749333pt;}
.ws62{word-spacing:5.808000pt;}
.wsfb{word-spacing:5.856000pt;}
.wse7{word-spacing:5.925333pt;}
.wsd0{word-spacing:5.984000pt;}
.wsa5{word-spacing:6.042667pt;}
.ws77{word-spacing:6.101333pt;}
.ws85{word-spacing:6.218667pt;}
.ws102{word-spacing:6.240000pt;}
.wsbd{word-spacing:6.277333pt;}
.wsec{word-spacing:6.336000pt;}
.ws2e{word-spacing:6.394667pt;}
.wsf3{word-spacing:6.432000pt;}
.wsf8{word-spacing:6.672000pt;}
.wse5{word-spacing:6.746667pt;}
.ws34{word-spacing:6.805333pt;}
.ws125{word-spacing:6.816000pt;}
.ws8d{word-spacing:6.864000pt;}
.wsed{word-spacing:6.981333pt;}
.wsf9{word-spacing:7.008000pt;}
.wsb7{word-spacing:7.040000pt;}
.wsba{word-spacing:7.098667pt;}
.ws40{word-spacing:7.216000pt;}
.ws12a{word-spacing:7.248000pt;}
.wsea{word-spacing:7.274667pt;}
.ws69{word-spacing:7.333333pt;}
.wse9{word-spacing:7.392000pt;}
.wsd1{word-spacing:7.450667pt;}
.wsf4{word-spacing:7.488000pt;}
.ws57{word-spacing:7.509333pt;}
.ws70{word-spacing:7.685333pt;}
.ws106{word-spacing:7.728000pt;}
.ws4c{word-spacing:7.744000pt;}
.wsdf{word-spacing:7.802667pt;}
.wsc1{word-spacing:7.978667pt;}
.ws74{word-spacing:8.037333pt;}
.ws6e{word-spacing:8.154667pt;}
.ws3d{word-spacing:8.213333pt;}
.wse6{word-spacing:8.330667pt;}
.wsce{word-spacing:8.565333pt;}
.ws88{word-spacing:9.093333pt;}
.ws112{word-spacing:9.696000pt;}
.ws118{word-spacing:11.136000pt;}
.wscd{word-spacing:12.730667pt;}
.wsb6{word-spacing:14.608000pt;}
.ws126{word-spacing:15.744000pt;}
.ws12b{word-spacing:18.816000pt;}
.wsc3{word-spacing:91.221333pt;}
.wsc4{word-spacing:140.245333pt;}
.ws9a{word-spacing:239.701333pt;}
.ws9c{word-spacing:255.488000pt;}
.ws9b{word-spacing:278.698667pt;}
.wsb1{word-spacing:628.320000pt;}
.wsb0{word-spacing:705.818667pt;}
._7{margin-left:-9.856000pt;}
._35{margin-left:-8.721600pt;}
._9{margin-left:-7.474667pt;}
._8{margin-left:-5.886400pt;}
._5{margin-left:-4.716267pt;}
._6{margin-left:-3.648000pt;}
._2{margin-left:-2.656533pt;}
._1{margin-left:-0.979200pt;}
._0{width:1.160533pt;}
._3{width:2.411733pt;}
._b{width:6.242133pt;}
._a{width:7.685333pt;}
._25{width:23.056000pt;}
._4{width:32.328533pt;}
._c{width:35.921067pt;}
._d{width:37.845333pt;}
._34{width:38.866133pt;}
._11{width:71.817067pt;}
._29{width:87.680000pt;}
._2a{width:94.845867pt;}
._28{width:118.865067pt;}
._2c{width:129.578667pt;}
._10{width:132.435200pt;}
._2b{width:139.393600pt;}
._2d{width:150.912000pt;}
._2f{width:161.578667pt;}
._2e{width:172.245333pt;}
._31{width:182.912000pt;}
._32{width:193.578667pt;}
._e{width:194.515200pt;}
._14{width:207.488000pt;}
._30{width:214.272000pt;}
._33{width:216.598933pt;}
._15{width:225.877333pt;}
._1c{width:228.821333pt;}
._1b{width:236.544000pt;}
._1d{width:247.210667pt;}
._21{width:262.442667pt;}
._20{width:269.651733pt;}
._27{width:271.613867pt;}
._f{width:274.304000pt;}
._1a{width:279.722667pt;}
._17{width:283.525867pt;}
._13{width:285.056000pt;}
._19{width:291.584000pt;}
._18{width:293.376000pt;}
._12{width:295.210667pt;}
._22{width:296.746667pt;}
._16{width:305.109333pt;}
._23{width:315.776000pt;}
._1e{width:317.098667pt;}
._24{width:326.442667pt;}
._26{width:365.907200pt;}
._1f{width:369.109333pt;}
.fs9{font-size:19.641600pt;}
.fsc{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fsa{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:1.071067pt;}
.y38{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y6c{bottom:100.330400pt;}
.y206{bottom:100.337200pt;}
.yd1{bottom:100.408667pt;}
.y132{bottom:100.410400pt;}
.y1d4{bottom:100.426400pt;}
.yed{bottom:100.437067pt;}
.y143{bottom:100.454267pt;}
.y21a{bottom:100.458533pt;}
.y100{bottom:100.462400pt;}
.y199{bottom:100.494533pt;}
.y16f{bottom:100.499867pt;}
.y1b6{bottom:100.506400pt;}
.y9a{bottom:100.506533pt;}
.yb{bottom:104.182267pt;}
.yb2{bottom:107.107867pt;}
.ya{bottom:116.979067pt;}
.y26e{bottom:118.930533pt;}
.y1e1{bottom:118.993200pt;}
.y6b{bottom:119.001067pt;}
.y202{bottom:119.007867pt;}
.yd0{bottom:119.079333pt;}
.y131{bottom:119.081067pt;}
.y1d3{bottom:119.097067pt;}
.yec{bottom:119.107733pt;}
.y23f{bottom:119.111867pt;}
.y142{bottom:119.124933pt;}
.y219{bottom:119.129200pt;}
.yff{bottom:119.133067pt;}
.y198{bottom:119.165200pt;}
.y16e{bottom:119.170533pt;}
.y1b5{bottom:119.177067pt;}
.y99{bottom:119.177200pt;}
.yb1{bottom:124.711867pt;}
.y9{bottom:129.775867pt;}
.y26d{bottom:137.602533pt;}
.y1e0{bottom:137.663867pt;}
.y6a{bottom:137.671733pt;}
.y201{bottom:137.678533pt;}
.ycf{bottom:137.750000pt;}
.y130{bottom:137.751733pt;}
.y1d2{bottom:137.767733pt;}
.yeb{bottom:137.778400pt;}
.y23e{bottom:137.783867pt;}
.y141{bottom:137.795600pt;}
.y218{bottom:137.799867pt;}
.yfe{bottom:137.803733pt;}
.y98{bottom:137.823867pt;}
.y197{bottom:137.835867pt;}
.y16d{bottom:137.841200pt;}
.y1b4{bottom:137.843733pt;}
.y8{bottom:142.575867pt;}
.y26c{bottom:156.274533pt;}
.y1df{bottom:156.334533pt;}
.y69{bottom:156.342400pt;}
.y200{bottom:156.349200pt;}
.yce{bottom:156.420667pt;}
.y12f{bottom:156.422400pt;}
.y1d1{bottom:156.438400pt;}
.yea{bottom:156.449067pt;}
.y23d{bottom:156.455867pt;}
.y140{bottom:156.466267pt;}
.y217{bottom:156.470533pt;}
.yfd{bottom:156.474400pt;}
.y1b3{bottom:156.490400pt;}
.y97{bottom:156.494533pt;}
.y196{bottom:156.506533pt;}
.y16c{bottom:156.511867pt;}
.y26b{bottom:174.946533pt;}
.y1de{bottom:175.005200pt;}
.y68{bottom:175.013067pt;}
.y1ff{bottom:175.019867pt;}
.ycd{bottom:175.091333pt;}
.y12e{bottom:175.093067pt;}
.y1d0{bottom:175.109067pt;}
.ye9{bottom:175.119733pt;}
.y23c{bottom:175.127867pt;}
.y13f{bottom:175.136933pt;}
.y216{bottom:175.141200pt;}
.yfc{bottom:175.145067pt;}
.y1b2{bottom:175.161067pt;}
.y96{bottom:175.165200pt;}
.y195{bottom:175.177200pt;}
.y33{bottom:180.838133pt;}
.y26a{bottom:193.618533pt;}
.y1dd{bottom:193.675867pt;}
.y67{bottom:193.683733pt;}
.y1fe{bottom:193.690533pt;}
.ycc{bottom:193.762000pt;}
.y12d{bottom:193.763733pt;}
.y1cf{bottom:193.779733pt;}
.ye8{bottom:193.790400pt;}
.y23b{bottom:193.799867pt;}
.y13e{bottom:193.807600pt;}
.y215{bottom:193.811867pt;}
.yfb{bottom:193.815733pt;}
.y1b1{bottom:193.831733pt;}
.y95{bottom:193.835867pt;}
.y16b{bottom:193.838533pt;}
.y194{bottom:193.843867pt;}
.y32{bottom:196.834133pt;}
.y269{bottom:212.290533pt;}
.y1dc{bottom:212.346533pt;}
.y66{bottom:212.354400pt;}
.y1fd{bottom:212.361200pt;}
.ycb{bottom:212.432667pt;}
.y12c{bottom:212.434400pt;}
.y1ce{bottom:212.450400pt;}
.ye7{bottom:212.461067pt;}
.y23a{bottom:212.471867pt;}
.y13d{bottom:212.478267pt;}
.y214{bottom:212.482533pt;}
.yfa{bottom:212.486400pt;}
.y1b0{bottom:212.502400pt;}
.y94{bottom:212.506533pt;}
.y16a{bottom:212.509200pt;}
.y193{bottom:212.510533pt;}
.y31{bottom:212.830133pt;}
.y30{bottom:228.826133pt;}
.y268{bottom:230.962533pt;}
.y1db{bottom:231.017200pt;}
.y65{bottom:231.025067pt;}
.y1fc{bottom:231.031867pt;}
.yca{bottom:231.103333pt;}
.y12b{bottom:231.105067pt;}
.y1cd{bottom:231.121067pt;}
.y239{bottom:231.143867pt;}
.y13c{bottom:231.148933pt;}
.y213{bottom:231.153200pt;}
.yf9{bottom:231.157067pt;}
.y1af{bottom:231.173067pt;}
.y93{bottom:231.177200pt;}
.y28{bottom:232.909733pt;}
.ye6{bottom:243.891733pt;}
.y169{bottom:243.939867pt;}
.y2f{bottom:244.822133pt;}
.y267{bottom:249.634533pt;}
.y1da{bottom:249.687867pt;}
.y64{bottom:249.695733pt;}
.y1fb{bottom:249.702533pt;}
.yc9{bottom:249.774000pt;}
.y12a{bottom:249.775733pt;}
.y1cc{bottom:249.791733pt;}
.y238{bottom:249.815867pt;}
.y13b{bottom:249.819600pt;}
.y212{bottom:249.823867pt;}
.yf8{bottom:249.827733pt;}
.y1ae{bottom:249.843733pt;}
.y192{bottom:249.843867pt;}
.y92{bottom:249.850667pt;}
.y27{bottom:250.513733pt;}
.y2e{bottom:260.818133pt;}
.y266{bottom:268.306533pt;}
.y1d9{bottom:268.358533pt;}
.y63{bottom:268.366400pt;}
.y1fa{bottom:268.373200pt;}
.yc8{bottom:268.444667pt;}
.y129{bottom:268.446400pt;}
.y1cb{bottom:268.462400pt;}
.y191{bottom:268.470533pt;}
.y237{bottom:268.487867pt;}
.y13a{bottom:268.490267pt;}
.y211{bottom:268.494533pt;}
.yf7{bottom:268.498400pt;}
.y1ad{bottom:268.514400pt;}
.y2d{bottom:276.814133pt;}
.y265{bottom:286.978533pt;}
.y26{bottom:286.979333pt;}
.y1d8{bottom:287.029200pt;}
.y62{bottom:287.037067pt;}
.y1f9{bottom:287.043867pt;}
.yc7{bottom:287.115333pt;}
.y128{bottom:287.117067pt;}
.ye5{bottom:287.129067pt;}
.y1ca{bottom:287.133067pt;}
.y190{bottom:287.141200pt;}
.y236{bottom:287.159867pt;}
.y139{bottom:287.160933pt;}
.y210{bottom:287.165200pt;}
.yf6{bottom:287.169067pt;}
.y168{bottom:287.177200pt;}
.y91{bottom:289.905333pt;}
.y1ac{bottom:299.947467pt;}
.y25{bottom:304.583333pt;}
.y264{bottom:305.650533pt;}
.y1d7{bottom:305.699867pt;}
.y61{bottom:305.707733pt;}
.y1f8{bottom:305.714533pt;}
.yc6{bottom:305.786000pt;}
.y127{bottom:305.787733pt;}
.ye4{bottom:305.799733pt;}
.y1c9{bottom:305.803733pt;}
.y18f{bottom:305.811867pt;}
.y138{bottom:305.831600pt;}
.y235{bottom:305.831867pt;}
.y20f{bottom:305.835867pt;}
.yf5{bottom:305.839733pt;}
.y167{bottom:305.839867pt;}
.y2c{bottom:307.930133pt;}
.y90{bottom:318.614267pt;}
.y24{bottom:322.187333pt;}
.y2b{bottom:323.930133pt;}
.y263{bottom:324.322533pt;}
.y1d6{bottom:324.370533pt;}
.y60{bottom:324.378400pt;}
.y1f7{bottom:324.385200pt;}
.yc5{bottom:324.456667pt;}
.y126{bottom:324.458400pt;}
.ye3{bottom:324.470400pt;}
.y1c8{bottom:324.474400pt;}
.y18e{bottom:324.482533pt;}
.y137{bottom:324.502267pt;}
.y234{bottom:324.503867pt;}
.y20e{bottom:324.506533pt;}
.yf4{bottom:324.510400pt;}
.y166{bottom:324.510533pt;}
.y23{bottom:339.791333pt;}
.y2a{bottom:339.930133pt;}
.y262{bottom:342.994533pt;}
.y1d5{bottom:343.041200pt;}
.y5f{bottom:343.049067pt;}
.y1f6{bottom:343.055867pt;}
.y125{bottom:343.129067pt;}
.ye2{bottom:343.141067pt;}
.y1c7{bottom:343.145067pt;}
.y18d{bottom:343.153200pt;}
.y1ab{bottom:343.161067pt;}
.y136{bottom:343.172933pt;}
.y233{bottom:343.175867pt;}
.y165{bottom:343.177200pt;}
.yf3{bottom:343.181067pt;}
.yc4{bottom:355.887333pt;}
.y29{bottom:355.921733pt;}
.y22{bottom:357.395333pt;}
.y261{bottom:361.666533pt;}
.y8f{bottom:361.711867pt;}
.y5e{bottom:361.719733pt;}
.y1f5{bottom:361.726533pt;}
.y124{bottom:361.799733pt;}
.ye1{bottom:361.811733pt;}
.y1c6{bottom:361.815733pt;}
.y18c{bottom:361.823867pt;}
.y1aa{bottom:361.831733pt;}
.y164{bottom:361.835867pt;}
.y135{bottom:361.843600pt;}
.y20d{bottom:361.847867pt;}
.y21{bottom:374.999333pt;}
.y260{bottom:380.338533pt;}
.y8e{bottom:380.382533pt;}
.y5d{bottom:380.390400pt;}
.y1f4{bottom:380.397200pt;}
.y123{bottom:380.470400pt;}
.ye0{bottom:380.482400pt;}
.y1c5{bottom:380.486400pt;}
.y18b{bottom:380.494533pt;}
.y1a9{bottom:380.502400pt;}
.y163{bottom:380.506533pt;}
.y134{bottom:380.514267pt;}
.yf2{bottom:382.172933pt;}
.y20{bottom:392.603333pt;}
.y20c{bottom:393.280933pt;}
.y25f{bottom:399.010533pt;}
.y8d{bottom:399.053200pt;}
.y5c{bottom:399.061067pt;}
.y1f3{bottom:399.067867pt;}
.yc3{bottom:399.124667pt;}
.y122{bottom:399.141067pt;}
.ydf{bottom:399.153067pt;}
.y1c4{bottom:399.157067pt;}
.y18a{bottom:399.165200pt;}
.y1a8{bottom:399.173067pt;}
.y162{bottom:399.177200pt;}
.yf1{bottom:399.776933pt;}
.y133{bottom:408.527600pt;}
.y1f{bottom:410.207333pt;}
.yf0{bottom:417.380933pt;}
.y25e{bottom:417.682533pt;}
.y8c{bottom:417.723867pt;}
.y5b{bottom:417.731733pt;}
.y1f2{bottom:417.738533pt;}
.yc2{bottom:417.795333pt;}
.y121{bottom:417.811733pt;}
.yde{bottom:417.823733pt;}
.y1c3{bottom:417.827733pt;}
.y189{bottom:417.835867pt;}
.y161{bottom:417.839867pt;}
.y1a7{bottom:417.843733pt;}
.y1e{bottom:427.807333pt;}
.yef{bottom:434.984933pt;}
.y25d{bottom:436.354533pt;}
.y8b{bottom:436.394533pt;}
.y5a{bottom:436.402400pt;}
.y1f1{bottom:436.409200pt;}
.yc1{bottom:436.466000pt;}
.y20b{bottom:436.478533pt;}
.y120{bottom:436.482400pt;}
.ydd{bottom:436.494400pt;}
.y1c2{bottom:436.498400pt;}
.y188{bottom:436.506533pt;}
.y160{bottom:436.510533pt;}
.y1a6{bottom:436.514400pt;}
.y232{bottom:436.514533pt;}
.y1d{bottom:445.407333pt;}
.yee{bottom:452.588933pt;}
.y25c{bottom:455.026533pt;}
.y8a{bottom:455.065200pt;}
.y59{bottom:455.073067pt;}
.y1f0{bottom:455.079867pt;}
.yc0{bottom:455.136667pt;}
.y20a{bottom:455.149200pt;}
.y11f{bottom:455.153067pt;}
.ydc{bottom:455.165067pt;}
.y1c1{bottom:455.169067pt;}
.y15f{bottom:455.177200pt;}
.y231{bottom:460.026133pt;}
.y146{bottom:462.752000pt;}
.y1c{bottom:463.007333pt;}
.y25b{bottom:473.698533pt;}
.y89{bottom:473.735867pt;}
.y58{bottom:473.743733pt;}
.y1ef{bottom:473.750533pt;}
.ybf{bottom:473.807333pt;}
.y15e{bottom:473.811867pt;}
.y209{bottom:473.819867pt;}
.y11e{bottom:473.823733pt;}
.ydb{bottom:473.835733pt;}
.y1c0{bottom:473.839733pt;}
.y187{bottom:473.843867pt;}
.y145{bottom:480.356000pt;}
.y1b{bottom:480.567333pt;}
.y1a5{bottom:483.316400pt;}
.y25a{bottom:492.370533pt;}
.y88{bottom:492.406533pt;}
.y57{bottom:492.414400pt;}
.y1ee{bottom:492.421200pt;}
.ybe{bottom:492.478000pt;}
.y15d{bottom:492.482533pt;}
.y186{bottom:492.490533pt;}
.y11d{bottom:492.494400pt;}
.yda{bottom:492.506400pt;}
.y230{bottom:492.509200pt;}
.y1bf{bottom:492.510400pt;}
.y144{bottom:497.960000pt;}
.y1a{bottom:498.171333pt;}
.y1a4{bottom:503.145733pt;}
.y259{bottom:511.042533pt;}
.y87{bottom:511.077200pt;}
.y56{bottom:511.085067pt;}
.y1ed{bottom:511.091867pt;}
.ybd{bottom:511.148667pt;}
.y15c{bottom:511.153200pt;}
.y185{bottom:511.161200pt;}
.y11c{bottom:511.165067pt;}
.yd9{bottom:511.177067pt;}
.y22f{bottom:511.181200pt;}
.y19{bottom:515.775333pt;}
.y1a3{bottom:522.971867pt;}
.y258{bottom:529.714533pt;}
.y86{bottom:529.747867pt;}
.y55{bottom:529.755733pt;}
.y1ec{bottom:529.762533pt;}
.ybc{bottom:529.819333pt;}
.y15b{bottom:529.823867pt;}
.y1be{bottom:529.831733pt;}
.y184{bottom:529.831867pt;}
.y11b{bottom:529.835733pt;}
.yd8{bottom:529.847733pt;}
.y18{bottom:533.379333pt;}
.y22e{bottom:534.692800pt;}
.y1a2{bottom:542.801200pt;}
.y257{bottom:548.386533pt;}
.y85{bottom:548.418533pt;}
.y54{bottom:548.426400pt;}
.y1eb{bottom:548.433200pt;}
.ybb{bottom:548.490000pt;}
.y15a{bottom:548.494533pt;}
.y1bd{bottom:548.502400pt;}
.y183{bottom:548.502533pt;}
.y11a{bottom:548.506400pt;}
.y17{bottom:550.983333pt;}
.y1a1{bottom:562.897200pt;}
.y256{bottom:567.058533pt;}
.y84{bottom:567.089200pt;}
.y53{bottom:567.097067pt;}
.y1ea{bottom:567.103867pt;}
.y22d{bottom:567.154533pt;}
.yba{bottom:567.160667pt;}
.y159{bottom:567.165200pt;}
.y1bc{bottom:567.173067pt;}
.y182{bottom:567.173200pt;}
.y119{bottom:567.177067pt;}
.y16{bottom:568.587333pt;}
.yd7{bottom:572.570533pt;}
.y255{bottom:585.730533pt;}
.y83{bottom:585.759867pt;}
.y52{bottom:585.767733pt;}
.y1e9{bottom:585.774533pt;}
.y22c{bottom:585.826533pt;}
.yb9{bottom:585.831333pt;}
.y158{bottom:585.835867pt;}
.y1bb{bottom:585.843733pt;}
.y181{bottom:585.843867pt;}
.y118{bottom:585.847733pt;}
.y15{bottom:586.191333pt;}
.yd6{bottom:590.174533pt;}
.y1a0{bottom:591.603200pt;}
.y14{bottom:603.795333pt;}
.y254{bottom:604.402533pt;}
.yb0{bottom:604.430400pt;}
.y82{bottom:604.430533pt;}
.y51{bottom:604.438400pt;}
.y1e8{bottom:604.445200pt;}
.y22b{bottom:604.498533pt;}
.yb8{bottom:604.502000pt;}
.y157{bottom:604.506533pt;}
.y180{bottom:604.510533pt;}
.y1ba{bottom:604.514400pt;}
.y208{bottom:604.514533pt;}
.yd5{bottom:607.778533pt;}
.y19f{bottom:609.207200pt;}
.y13{bottom:621.399333pt;}
.y253{bottom:623.074533pt;}
.yaf{bottom:623.101067pt;}
.y81{bottom:623.101200pt;}
.y50{bottom:623.109067pt;}
.y1e7{bottom:623.115867pt;}
.y22a{bottom:623.170533pt;}
.yb7{bottom:623.172667pt;}
.y156{bottom:623.177200pt;}
.yd4{bottom:625.382533pt;}
.y19e{bottom:626.811200pt;}
.y117{bottom:632.792667pt;}
.y207{bottom:635.947600pt;}
.y12{bottom:639.003333pt;}
.y252{bottom:641.746533pt;}
.yae{bottom:641.771733pt;}
.y80{bottom:641.771867pt;}
.y4f{bottom:641.779733pt;}
.y1e6{bottom:641.786533pt;}
.y17f{bottom:641.827867pt;}
.y229{bottom:641.842533pt;}
.yb6{bottom:641.843333pt;}
.y155{bottom:641.854533pt;}
.y1b9{bottom:642.619333pt;}
.y19d{bottom:644.415200pt;}
.y116{bottom:650.095600pt;}
.y11{bottom:656.607333pt;}
.y1b8{bottom:660.223333pt;}
.y251{bottom:660.418533pt;}
.yad{bottom:660.442400pt;}
.y7f{bottom:660.442533pt;}
.y4e{bottom:660.450400pt;}
.y1e5{bottom:660.457200pt;}
.y17e{bottom:660.498533pt;}
.yb5{bottom:660.514000pt;}
.y228{bottom:660.514533pt;}
.y115{bottom:666.895600pt;}
.y10{bottom:674.203333pt;}
.y1b7{bottom:677.827333pt;}
.y250{bottom:679.090533pt;}
.yac{bottom:679.113067pt;}
.y7e{bottom:679.113200pt;}
.y4d{bottom:679.121067pt;}
.y1e4{bottom:679.127867pt;}
.y17d{bottom:679.169200pt;}
.y154{bottom:679.181200pt;}
.yb4{bottom:679.184667pt;}
.y114{bottom:683.695600pt;}
.y227{bottom:684.026000pt;}
.yf{bottom:691.807333pt;}
.y24f{bottom:697.762533pt;}
.yab{bottom:697.783733pt;}
.y7d{bottom:697.783867pt;}
.y4c{bottom:697.791733pt;}
.y1e3{bottom:697.798533pt;}
.y17c{bottom:697.839867pt;}
.y113{bottom:700.495600pt;}
.y19c{bottom:702.243467pt;}
.y112{bottom:703.962267pt;}
.yb3{bottom:707.960667pt;}
.ye{bottom:709.411333pt;}
.y24e{bottom:716.434533pt;}
.yaa{bottom:716.454400pt;}
.y7c{bottom:716.454533pt;}
.y4b{bottom:716.462400pt;}
.y205{bottom:716.469200pt;}
.y153{bottom:716.482533pt;}
.y226{bottom:716.509200pt;}
.y17b{bottom:716.510533pt;}
.y111{bottom:717.295600pt;}
.y19b{bottom:719.847467pt;}
.y1e2{bottom:729.229200pt;}
.y110{bottom:734.095600pt;}
.y24d{bottom:735.106533pt;}
.ya9{bottom:735.125067pt;}
.y7b{bottom:735.125200pt;}
.y4a{bottom:735.133067pt;}
.y204{bottom:735.139867pt;}
.y152{bottom:735.153200pt;}
.y225{bottom:735.170533pt;}
.y17a{bottom:735.181200pt;}
.yd{bottom:737.053600pt;}
.y19a{bottom:737.451467pt;}
.y10f{bottom:750.895600pt;}
.y24c{bottom:753.778533pt;}
.ya8{bottom:753.795733pt;}
.y7a{bottom:753.795867pt;}
.y49{bottom:753.803733pt;}
.y151{bottom:753.823867pt;}
.y224{bottom:753.842533pt;}
.yd3{bottom:758.906933pt;}
.y203{bottom:766.570533pt;}
.y179{bottom:766.614267pt;}
.y10e{bottom:767.695600pt;}
.y24b{bottom:772.450533pt;}
.ya7{bottom:772.466400pt;}
.y79{bottom:772.466533pt;}
.y48{bottom:772.474400pt;}
.y150{bottom:772.494533pt;}
.y223{bottom:772.514533pt;}
.yd2{bottom:776.510933pt;}
.y10d{bottom:784.495600pt;}
.y24a{bottom:791.122533pt;}
.ya6{bottom:791.137067pt;}
.y78{bottom:791.137200pt;}
.y47{bottom:791.145067pt;}
.y14f{bottom:791.165200pt;}
.y222{bottom:796.026000pt;}
.y10c{bottom:801.295600pt;}
.y7{bottom:807.526000pt;}
.y249{bottom:809.794533pt;}
.ya5{bottom:809.807733pt;}
.y77{bottom:809.807867pt;}
.y46{bottom:809.815733pt;}
.y178{bottom:809.822533pt;}
.y14e{bottom:809.835867pt;}
.y10b{bottom:814.628933pt;}
.y6{bottom:823.526000pt;}
.y248{bottom:828.466533pt;}
.ya4{bottom:828.478400pt;}
.y76{bottom:828.478533pt;}
.y45{bottom:828.486400pt;}
.y177{bottom:828.493200pt;}
.y14d{bottom:828.506533pt;}
.y221{bottom:828.514533pt;}
.y10a{bottom:831.428933pt;}
.y5{bottom:839.526000pt;}
.y247{bottom:847.138533pt;}
.ya3{bottom:847.149067pt;}
.y75{bottom:847.149200pt;}
.y44{bottom:847.157067pt;}
.y176{bottom:847.163867pt;}
.y14c{bottom:847.177200pt;}
.y109{bottom:848.228933pt;}
.y220{bottom:852.026000pt;}
.y108{bottom:865.045333pt;}
.y246{bottom:865.810533pt;}
.ya2{bottom:865.819733pt;}
.y74{bottom:865.819867pt;}
.y43{bottom:865.827733pt;}
.y175{bottom:865.834533pt;}
.y14b{bottom:865.854533pt;}
.y4{bottom:870.644267pt;}
.y107{bottom:881.845333pt;}
.y245{bottom:884.482533pt;}
.ya1{bottom:884.490400pt;}
.y73{bottom:884.490533pt;}
.y42{bottom:884.498400pt;}
.y174{bottom:884.505200pt;}
.y21f{bottom:884.514533pt;}
.y106{bottom:898.645333pt;}
.y244{bottom:903.154533pt;}
.ya0{bottom:903.161067pt;}
.y72{bottom:903.161200pt;}
.y41{bottom:903.169067pt;}
.y173{bottom:903.175867pt;}
.y14a{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y21e{bottom:908.026000pt;}
.y105{bottom:915.445333pt;}
.y243{bottom:921.826533pt;}
.y9f{bottom:921.831733pt;}
.y71{bottom:921.831867pt;}
.y40{bottom:921.839733pt;}
.y172{bottom:921.846533pt;}
.y104{bottom:932.512000pt;}
.y2{bottom:932.695600pt;}
.y242{bottom:940.498533pt;}
.y9e{bottom:940.502400pt;}
.y70{bottom:940.502533pt;}
.y149{bottom:940.503867pt;}
.y3f{bottom:940.510400pt;}
.y21d{bottom:940.514533pt;}
.y171{bottom:940.517200pt;}
.y241{bottom:959.170533pt;}
.y9d{bottom:959.173067pt;}
.y6f{bottom:959.173200pt;}
.y148{bottom:959.174533pt;}
.y3e{bottom:959.181067pt;}
.y170{bottom:959.187867pt;}
.y103{bottom:959.710133pt;}
.y21c{bottom:963.727067pt;}
.y102{bottom:977.314133pt;}
.y240{bottom:977.842533pt;}
.y9c{bottom:977.843733pt;}
.y6e{bottom:977.843867pt;}
.yc{bottom:986.502667pt;}
.y147{bottom:987.173200pt;}
.y3d{bottom:988.062933pt;}
.y21b{bottom:989.952800pt;}
.y101{bottom:994.918133pt;}
.y9b{bottom:996.514400pt;}
.y6d{bottom:996.514533pt;}
.y36{bottom:1009.540000pt;}
.y39{bottom:1024.013867pt;}
.y35{bottom:1030.390667pt;}
.y34{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h11{height:14.923012pt;}
.h1a{height:22.400000pt;}
.h18{height:30.506667pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h13{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:36.492188pt;}
.h19{height:36.608000pt;}
.h21{height:36.620800pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.h9{height:40.546875pt;}
.ha{height:41.184000pt;}
.hd{height:41.200000pt;}
.h24{height:41.205333pt;}
.hb{height:41.216000pt;}
.h23{height:41.226667pt;}
.hc{height:41.360000pt;}
.h16{height:44.601562pt;}
.h10{height:44.948000pt;}
.h4{height:45.188000pt;}
.h14{height:48.656250pt;}
.h15{height:50.336000pt;}
.h1c{height:50.352000pt;}
.h1d{height:50.368000pt;}
.h1e{height:50.384000pt;}
.h22{height:50.400000pt;}
.h1f{height:50.416000pt;}
.h17{height:50.432000pt;}
.h1b{height:50.480000pt;}
.h20{height:50.512000pt;}
.h3{height:68.929688pt;}
.h12{height:71.844560pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.169333pt;}
.xd{left:96.253733pt;}
.xa{left:98.747867pt;}
.xf{left:99.782133pt;}
.xe{left:101.158133pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x10{left:183.600800pt;}
.x4{left:266.834667pt;}
.x18{left:270.611867pt;}
.xc{left:281.956000pt;}
.x16{left:297.074133pt;}
.x11{left:345.933733pt;}
.x3{left:352.045067pt;}
.x17{left:434.473200pt;}
.x12{left:448.472400pt;}
.x13{left:461.933733pt;}
.x14{left:531.098667pt;}
.x15{left:550.470800pt;}
.x9{left:579.484000pt;}
.x8{left:603.089333pt;}
.x19{left:711.573200pt;}
.x1{left:717.405733pt;}
}




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