
    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_720ffc74a5800630ff337bcd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.698000;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_6141e577f411bd30794a4279.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_07b4be6d18c92a664368ad87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_4b2a454f45214a9adc296395.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.178000;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_d1709d3f39e2d0c5a56c6b54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.168000;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_0644b627f78a42abc6bb60a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196000;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_720ffc74a5800630ff337bcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_6a3798947671f4970963c5a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200900;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_0512808d34cbc48d70477586.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7f08b1e5433e7eb7fc6da392.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.193000;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);}
.v3{vertical-align:-19.979919px;}
.v2{vertical-align:-18.581406px;}
.v6{vertical-align:-16.982849px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.058083px;}
.v4{vertical-align:18.581360px;}
.v1{vertical-align:19.980625px;}
.ls6b{letter-spacing:-6.975000px;}
.ls3f{letter-spacing:-3.682800px;}
.ls76{letter-spacing:-1.450800px;}
.ls74{letter-spacing:-1.350000px;}
.ls10{letter-spacing:-1.171800px;}
.ls5b{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.561000px;}
.ls79{letter-spacing:-0.540000px;}
.ls86{letter-spacing:-0.510000px;}
.lsa{letter-spacing:-0.480000px;}
.ls5d{letter-spacing:-0.414000px;}
.ls7a{letter-spacing:-0.360000px;}
.ls85{letter-spacing:-0.357000px;}
.ls59{letter-spacing:-0.349800px;}
.ls58{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.300000px;}
.ls99{letter-spacing:-0.255000px;}
.lsf{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.223200px;}
.ls7b{letter-spacing:-0.209880px;}
.ls8{letter-spacing:-0.204000px;}
.lse{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.167400px;}
.ls83{letter-spacing:-0.139920px;}
.lsc{letter-spacing:-0.120000px;}
.ls3e{letter-spacing:-0.111600px;}
.ls98{letter-spacing:-0.102000px;}
.ls4b{letter-spacing:-0.069960px;}
.ls4a{letter-spacing:-0.060000px;}
.ls26{letter-spacing:-0.055800px;}
.ls69{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000002px;}
.ls35{letter-spacing:0.000011px;}
.ls6{letter-spacing:0.022200px;}
.ls55{letter-spacing:0.027900px;}
.ls6e{letter-spacing:0.030000px;}
.ls65{letter-spacing:0.034980px;}
.ls89{letter-spacing:0.051000px;}
.ls37{letter-spacing:0.055800px;}
.ls42{letter-spacing:0.060000px;}
.ls64{letter-spacing:0.069960px;}
.ls75{letter-spacing:0.104940px;}
.ls21{letter-spacing:0.111600px;}
.ls1{letter-spacing:0.120000px;}
.ls6f{letter-spacing:0.150000px;}
.ls96{letter-spacing:0.153000px;}
.ls8d{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.167400px;}
.ls5c{letter-spacing:0.174900px;}
.ls41{letter-spacing:0.180000px;}
.ls68{letter-spacing:0.210000px;}
.ls92{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.223200px;}
.ls9a{letter-spacing:0.237864px;}
.ls53{letter-spacing:0.240000px;}
.ls81{letter-spacing:0.251100px;}
.ls20{letter-spacing:0.262260px;}
.ls1b{letter-spacing:0.279000px;}
.ls5a{letter-spacing:0.279840px;}
.ls16{letter-spacing:0.300000px;}
.ls8b{letter-spacing:0.306000px;}
.ls6a{letter-spacing:0.314820px;}
.ls4f{letter-spacing:0.330000px;}
.ls31{letter-spacing:0.332956px;}
.ls1c{letter-spacing:0.334800px;}
.ls17{letter-spacing:0.349497px;}
.ls52{letter-spacing:0.349800px;}
.ls87{letter-spacing:0.357000px;}
.ls4e{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.362700px;}
.ls84{letter-spacing:0.390000px;}
.ls39{letter-spacing:0.390600px;}
.ls95{letter-spacing:0.408000px;}
.ls61{letter-spacing:0.418500px;}
.ls18{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.480000px;}
.ls49{letter-spacing:0.489720px;}
.ls7c{letter-spacing:0.502200px;}
.ls6c{letter-spacing:0.510000px;}
.ls5{letter-spacing:0.519429px;}
.ls4d{letter-spacing:0.540000px;}
.ls46{letter-spacing:0.558000px;}
.ls30{letter-spacing:0.570000px;}
.ls3{letter-spacing:0.600000px;}
.ls93{letter-spacing:0.612000px;}
.ls2c{letter-spacing:0.639566px;}
.ls2f{letter-spacing:0.654874px;}
.ls12{letter-spacing:0.660000px;}
.ls97{letter-spacing:0.663000px;}
.ls3b{letter-spacing:0.664620px;}
.ls2e{letter-spacing:0.699321px;}
.ls8c{letter-spacing:0.714000px;}
.ls67{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.732600px;}
.ls48{letter-spacing:0.769560px;}
.ls15{letter-spacing:0.780000px;}
.ls91{letter-spacing:0.839520px;}
.ls28{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.900000px;}
.ls4c{letter-spacing:0.960000px;}
.ls94{letter-spacing:0.994500px;}
.ls14{letter-spacing:1.020000px;}
.ls13{letter-spacing:1.050000px;}
.ls2b{letter-spacing:1.080000px;}
.ls8e{letter-spacing:1.119360px;}
.ls2{letter-spacing:1.140000px;}
.ls29{letter-spacing:1.200000px;}
.ls40{letter-spacing:1.320000px;}
.ls88{letter-spacing:1.350000px;}
.ls8a{letter-spacing:1.404000px;}
.ls2a{letter-spacing:1.500000px;}
.ls7e{letter-spacing:1.512000px;}
.ls6d{letter-spacing:1.566000px;}
.ls2d{letter-spacing:1.680000px;}
.ls57{letter-spacing:1.830233px;}
.ls51{letter-spacing:1.836000px;}
.ls90{letter-spacing:1.920000px;}
.ls63{letter-spacing:1.944000px;}
.ls23{letter-spacing:2.052000px;}
.ls1d{letter-spacing:2.092931px;}
.ls11{letter-spacing:2.214000px;}
.ls3a{letter-spacing:2.376000px;}
.ls80{letter-spacing:3.264300px;}
.ls60{letter-spacing:3.292200px;}
.ls44{letter-spacing:3.348000px;}
.ls56{letter-spacing:3.375900px;}
.ls7d{letter-spacing:3.403800px;}
.ls50{letter-spacing:3.515400px;}
.ls1a{letter-spacing:3.571200px;}
.ls73{letter-spacing:3.627000px;}
.ls25{letter-spacing:3.682800px;}
.ls47{letter-spacing:3.705135px;}
.ls66{letter-spacing:3.738600px;}
.ls77{letter-spacing:3.906000px;}
.ls8f{letter-spacing:4.020015px;}
.ls5e{letter-spacing:26.728181px;}
.ls71{letter-spacing:30.131998px;}
.ls70{letter-spacing:30.299379px;}
.ls82{letter-spacing:30.355203px;}
.ls7f{letter-spacing:30.522584px;}
.ls62{letter-spacing:30.745790px;}
.ls78{letter-spacing:30.968996px;}
.ls38{letter-spacing:32.308206px;}
.ls72{letter-spacing:33.591592px;}
.ls54{letter-spacing:35.767778px;}
.ls5f{letter-spacing:36.158388px;}
.ls45{letter-spacing:36.381593px;}
.ls43{letter-spacing:41.738412px;}
.ls36{letter-spacing:50.499002px;}
.ls22{letter-spacing:51.168596px;}
.ls33{letter-spacing:51.391801px;}
.ls34{letter-spacing:54.851396px;}
.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;}
}
.wse5{word-spacing:-15.903000px;}
.wsae{word-spacing:-15.735600px;}
.ws26{word-spacing:-15.568200px;}
.ws88{word-spacing:-15.512400px;}
.wse6{word-spacing:-15.400800px;}
.wsa0{word-spacing:-15.372900px;}
.ws6b{word-spacing:-15.345000px;}
.wsaf{word-spacing:-15.289200px;}
.wsf6{word-spacing:-15.261300px;}
.ws49{word-spacing:-15.174000px;}
.wsab{word-spacing:-14.742000px;}
.ws86{word-spacing:-14.634000px;}
.wsc8{word-spacing:-14.364000px;}
.ws113{word-spacing:-14.310000px;}
.ws10c{word-spacing:-14.202000px;}
.ws69{word-spacing:-13.380000px;}
.ws115{word-spacing:-12.600000px;}
.ws114{word-spacing:-12.540000px;}
.ws11a{word-spacing:-12.291000px;}
.wse3{word-spacing:-12.258000px;}
.ws6{word-spacing:-11.997000px;}
.ws4b{word-spacing:-11.941200px;}
.wsa1{word-spacing:-11.215800px;}
.wsd6{word-spacing:-11.160000px;}
.wsb0{word-spacing:-11.104200px;}
.ws4{word-spacing:-10.825200px;}
.ws2{word-spacing:-10.710000px;}
.ws11d{word-spacing:-10.659000px;}
.wsd5{word-spacing:-10.546200px;}
.ws102{word-spacing:-10.455000px;}
.ws9d{word-spacing:-10.320000px;}
.ws11b{word-spacing:-9.486000px;}
.ws5{word-spacing:-8.901000px;}
.ws9f{word-spacing:-8.487000px;}
.ws4c{word-spacing:-8.314200px;}
.ws68{word-spacing:-8.080380px;}
.ws4a{word-spacing:-7.975440px;}
.ws87{word-spacing:-7.660620px;}
.wsbd{word-spacing:-7.625640px;}
.ws9c{word-spacing:-7.590660px;}
.ws9e{word-spacing:-7.485720px;}
.wsd4{word-spacing:-7.415760px;}
.wsac{word-spacing:-7.380780px;}
.wsad{word-spacing:-7.345800px;}
.ws25{word-spacing:-7.310820px;}
.ws6a{word-spacing:-7.240860px;}
.wsf5{word-spacing:-7.170900px;}
.wse4{word-spacing:-7.100940px;}
.ws3{word-spacing:-6.994251px;}
.ws9b{word-spacing:-6.961020px;}
.ws11c{word-spacing:-6.452061px;}
.wsb8{word-spacing:-3.292200px;}
.wsea{word-spacing:-2.520000px;}
.wsfb{word-spacing:-2.399400px;}
.wsf8{word-spacing:-2.220000px;}
.ws30{word-spacing:-2.160000px;}
.ws27{word-spacing:-2.052000px;}
.ws33{word-spacing:-2.040000px;}
.wsd2{word-spacing:-1.980000px;}
.ws6f{word-spacing:-1.920000px;}
.ws60{word-spacing:-1.897200px;}
.ws124{word-spacing:-1.887000px;}
.ws14{word-spacing:-1.860000px;}
.ws7d{word-spacing:-1.841400px;}
.ws95{word-spacing:-1.800000px;}
.ws48{word-spacing:-1.785600px;}
.wsfa{word-spacing:-1.729800px;}
.wsb2{word-spacing:-1.680000px;}
.ws47{word-spacing:-1.674000px;}
.ws123{word-spacing:-1.632000px;}
.ws5c{word-spacing:-1.620000px;}
.wsf1{word-spacing:-1.562400px;}
.ws1b{word-spacing:-1.560000px;}
.wsb{word-spacing:-1.530000px;}
.wscd{word-spacing:-1.500000px;}
.ws129{word-spacing:-1.479000px;}
.wsa4{word-spacing:-1.440000px;}
.ws8d{word-spacing:-1.380000px;}
.wse2{word-spacing:-1.339200px;}
.ws5d{word-spacing:-1.320000px;}
.wse1{word-spacing:-1.283400px;}
.wsd{word-spacing:-1.275000px;}
.ws8b{word-spacing:-1.260000px;}
.wsce{word-spacing:-1.200000px;}
.wsfc{word-spacing:-1.171800px;}
.wsc1{word-spacing:-1.140000px;}
.ws111{word-spacing:-1.119360px;}
.ws20{word-spacing:-1.116000px;}
.ws72{word-spacing:-1.080000px;}
.ws128{word-spacing:-1.071000px;}
.ws22{word-spacing:-1.060200px;}
.ws15{word-spacing:-1.020000px;}
.ws23{word-spacing:-1.004400px;}
.ws55{word-spacing:-0.960000px;}
.wsf0{word-spacing:-0.948600px;}
.wsd3{word-spacing:-0.900000px;}
.ws38{word-spacing:-0.840000px;}
.ws117{word-spacing:-0.839520px;}
.ws35{word-spacing:-0.780000px;}
.ws0{word-spacing:-0.754800px;}
.ws65{word-spacing:-0.725400px;}
.wsc6{word-spacing:-0.720000px;}
.ws10a{word-spacing:-0.714000px;}
.ws12f{word-spacing:-0.663000px;}
.wscf{word-spacing:-0.660000px;}
.wsec{word-spacing:-0.558000px;}
.wsa3{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.489720px;}
.wsb6{word-spacing:-0.480000px;}
.ws12a{word-spacing:-0.459000px;}
.ws119{word-spacing:-0.446400px;}
.ws37{word-spacing:-0.420000px;}
.ws82{word-spacing:-0.390600px;}
.wsca{word-spacing:-0.360000px;}
.ws127{word-spacing:-0.357000px;}
.ws3e{word-spacing:-0.334800px;}
.ws90{word-spacing:-0.300000px;}
.wsde{word-spacing:-0.279000px;}
.ws107{word-spacing:-0.255000px;}
.ws1c{word-spacing:-0.240000px;}
.ws24{word-spacing:-0.223200px;}
.ws9{word-spacing:-0.204000px;}
.wsc5{word-spacing:-0.180000px;}
.ws9a{word-spacing:-0.167400px;}
.ws36{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.111600px;}
.wsd9{word-spacing:-0.104940px;}
.ws121{word-spacing:-0.102000px;}
.ws8e{word-spacing:-0.060000px;}
.ws63{word-spacing:-0.055800px;}
.ws1{word-spacing:-0.044400px;}
.ws7{word-spacing:0.000000px;}
.ws66{word-spacing:0.055800px;}
.ws1e{word-spacing:0.060000px;}
.ws10f{word-spacing:0.102000px;}
.wsb9{word-spacing:0.111600px;}
.ws39{word-spacing:0.120000px;}
.ws62{word-spacing:0.167400px;}
.ws50{word-spacing:0.180000px;}
.ws8{word-spacing:0.204000px;}
.wsa9{word-spacing:0.223200px;}
.wsb3{word-spacing:0.240000px;}
.ws29{word-spacing:0.300000px;}
.wsc{word-spacing:0.306000px;}
.wsaa{word-spacing:0.334800px;}
.ws54{word-spacing:0.360000px;}
.ws80{word-spacing:0.390600px;}
.ws1a{word-spacing:0.420000px;}
.wsdd{word-spacing:0.446400px;}
.ws106{word-spacing:0.459000px;}
.wsf{word-spacing:0.480000px;}
.wsf4{word-spacing:0.502200px;}
.ws10e{word-spacing:0.510000px;}
.ws31{word-spacing:0.540000px;}
.wsfe{word-spacing:0.558000px;}
.ws70{word-spacing:0.600000px;}
.wsfd{word-spacing:0.613800px;}
.ws59{word-spacing:0.660000px;}
.ws32{word-spacing:0.720000px;}
.ws41{word-spacing:0.725400px;}
.ws10b{word-spacing:0.765000px;}
.ws51{word-spacing:0.780000px;}
.ws7f{word-spacing:0.781200px;}
.ws109{word-spacing:0.816000px;}
.ws7e{word-spacing:0.837000px;}
.ws12{word-spacing:0.840000px;}
.wscb{word-spacing:0.900000px;}
.wsa{word-spacing:0.969000px;}
.ws3f{word-spacing:1.004400px;}
.ws74{word-spacing:1.020000px;}
.ws100{word-spacing:1.060200px;}
.ws13{word-spacing:1.080000px;}
.wsf2{word-spacing:1.116000px;}
.wsf9{word-spacing:1.140000px;}
.ws112{word-spacing:1.171800px;}
.ws105{word-spacing:1.173000px;}
.ws4f{word-spacing:1.200000px;}
.ws99{word-spacing:1.227600px;}
.ws21{word-spacing:1.283400px;}
.wsbc{word-spacing:1.339200px;}
.wsc4{word-spacing:1.380000px;}
.ws77{word-spacing:1.395000px;}
.ws5e{word-spacing:1.440000px;}
.ws7b{word-spacing:1.450800px;}
.wsd1{word-spacing:1.500000px;}
.ws78{word-spacing:1.506600px;}
.ws19{word-spacing:1.560000px;}
.ws7a{word-spacing:1.562400px;}
.ws12e{word-spacing:1.581000px;}
.ws34{word-spacing:1.620000px;}
.ws3b{word-spacing:1.674000px;}
.wsa7{word-spacing:1.680000px;}
.ws5f{word-spacing:1.740000px;}
.ws64{word-spacing:1.785600px;}
.ws18{word-spacing:1.800000px;}
.ws42{word-spacing:1.841400px;}
.wse{word-spacing:1.860000px;}
.ws43{word-spacing:1.897200px;}
.ws2a{word-spacing:1.920000px;}
.wsdf{word-spacing:1.953000px;}
.ws56{word-spacing:1.980000px;}
.ws97{word-spacing:2.040000px;}
.wsff{word-spacing:2.064600px;}
.ws5b{word-spacing:2.100000px;}
.ws12c{word-spacing:2.142000px;}
.ws5a{word-spacing:2.160000px;}
.ws3c{word-spacing:2.176200px;}
.ws1f{word-spacing:2.220000px;}
.ws84{word-spacing:2.232000px;}
.ws2d{word-spacing:2.280000px;}
.ws91{word-spacing:2.340000px;}
.ws3d{word-spacing:2.343600px;}
.ws85{word-spacing:2.399400px;}
.wsdb{word-spacing:2.400000px;}
.ws40{word-spacing:2.455200px;}
.ws2f{word-spacing:2.460000px;}
.ws98{word-spacing:2.520000px;}
.ws122{word-spacing:2.550000px;}
.ws61{word-spacing:2.566800px;}
.ws52{word-spacing:2.580000px;}
.ws75{word-spacing:2.622600px;}
.ws96{word-spacing:2.640000px;}
.ws7c{word-spacing:2.678400px;}
.ws12b{word-spacing:2.754000px;}
.ws94{word-spacing:2.760000px;}
.ws76{word-spacing:2.790000px;}
.ws57{word-spacing:2.820000px;}
.ws44{word-spacing:2.845800px;}
.wsc2{word-spacing:2.880000px;}
.wsef{word-spacing:2.901600px;}
.ws11f{word-spacing:2.907000px;}
.ws17{word-spacing:2.940000px;}
.ws83{word-spacing:2.957400px;}
.ws118{word-spacing:3.000000px;}
.ws104{word-spacing:3.060000px;}
.wsba{word-spacing:3.069000px;}
.ws16{word-spacing:3.120000px;}
.ws130{word-spacing:3.162000px;}
.ws71{word-spacing:3.180000px;}
.ws79{word-spacing:3.180600px;}
.ws12d{word-spacing:3.213000px;}
.ws67{word-spacing:3.236400px;}
.wsb5{word-spacing:3.240000px;}
.wsbb{word-spacing:3.292200px;}
.wsb4{word-spacing:3.300000px;}
.ws2e{word-spacing:3.360000px;}
.ws73{word-spacing:3.420000px;}
.ws92{word-spacing:3.480000px;}
.ws2b{word-spacing:3.540000px;}
.ws4e{word-spacing:3.600000px;}
.wsa6{word-spacing:3.660000px;}
.ws6d{word-spacing:3.720000px;}
.wsbf{word-spacing:3.780000px;}
.wsa5{word-spacing:3.840000px;}
.ws11{word-spacing:3.900000px;}
.wsd0{word-spacing:4.080000px;}
.wsed{word-spacing:4.240800px;}
.ws2c{word-spacing:4.260000px;}
.ws131{word-spacing:4.284000px;}
.ws93{word-spacing:4.320000px;}
.ws1d{word-spacing:4.380000px;}
.ws81{word-spacing:4.408200px;}
.wsee{word-spacing:4.519800px;}
.wse9{word-spacing:4.620000px;}
.wse8{word-spacing:4.860000px;}
.ws132{word-spacing:4.896000px;}
.ws8c{word-spacing:4.920000px;}
.ws125{word-spacing:4.998000px;}
.ws120{word-spacing:5.151000px;}
.wsc0{word-spacing:5.160000px;}
.wsda{word-spacing:5.220000px;}
.ws53{word-spacing:5.400000px;}
.wscc{word-spacing:5.460000px;}
.wsd8{word-spacing:5.760000px;}
.wsc3{word-spacing:5.820000px;}
.ws10{word-spacing:5.940000px;}
.ws8f{word-spacing:6.060000px;}
.wsc7{word-spacing:6.193800px;}
.ws58{word-spacing:6.780000px;}
.ws8a{word-spacing:8.040000px;}
.ws126{word-spacing:8.211000px;}
.wseb{word-spacing:26.393399px;}
.wsdc{word-spacing:28.960201px;}
.wse0{word-spacing:29.964601px;}
.wsb7{word-spacing:30.187801px;}
.wsf3{word-spacing:30.745801px;}
.ws101{word-spacing:33.814801px;}
.wsa8{word-spacing:39.617999px;}
.ws3a{word-spacing:51.559202px;}
.ws45{word-spacing:51.838202px;}
.ws4d{word-spacing:1041.983974px;}
.wsb1{word-spacing:1042.416046px;}
.ws89{word-spacing:1042.523987px;}
.ws103{word-spacing:1042.524000px;}
.wsc9{word-spacing:1042.794044px;}
.ws116{word-spacing:1042.848015px;}
.ws10d{word-spacing:1042.956000px;}
.wse7{word-spacing:1044.900021px;}
.ws28{word-spacing:1689.336022px;}
.ws6c{word-spacing:1689.660049px;}
.wsf7{word-spacing:1690.794044px;}
.ws108{word-spacing:1691.118000px;}
.ws11e{word-spacing:1693.331989px;}
.ws110{word-spacing:1693.440033px;}
.wsbe{word-spacing:1693.925972px;}
.wsa2{word-spacing:1694.412014px;}
.wsd7{word-spacing:1696.517990px;}
._1b{margin-left:-1045.703638px;}
._1a{margin-left:-1044.470072px;}
._10{margin-left:-1043.384174px;}
._b{margin-left:-1042.015906px;}
._a{margin-left:-48.136778px;}
._13{margin-left:-35.689216px;}
._1e{margin-left:-33.202207px;}
._19{margin-left:-27.453008px;}
._16{margin-left:-25.358405px;}
._1c{margin-left:-20.144394px;}
._1d{margin-left:-18.541827px;}
._15{margin-left:-14.640044px;}
._14{margin-left:-9.723664px;}
._9{margin-left:-7.420790px;}
._6{margin-left:-5.676000px;}
._2{margin-left:-3.849600px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.080000px;}
._0{width:1.249860px;}
._4{width:2.279340px;}
._c{width:3.336000px;}
._5{width:4.341000px;}
._e{width:5.926251px;}
._18{width:6.975007px;}
._20{width:27.620393px;}
._17{width:30.744599px;}
._f{width:33.200390px;}
._12{width:34.483811px;}
._11{width:37.497000px;}
._1f{width:38.700000px;}
._d{width:53.568006px;}
._8{width:58.477797px;}
._7{width:62.105392px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(123,121,121);}
.fs0{font-size:22.200000px;}
.fsa{font-size:29.733001px;}
.fs6{font-size:32.531399px;}
.fs5{font-size:34.980000px;}
.fs8{font-size:41.400001px;}
.fs3{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:55.800001px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y176{bottom:1.492500px;}
.y175{bottom:8.990550px;}
.ycc{bottom:90.566102px;}
.y10c{bottom:90.567152px;}
.y1c0{bottom:90.570599px;}
.y27{bottom:90.571345px;}
.ye2{bottom:90.571505px;}
.y54{bottom:90.575704px;}
.y97{bottom:90.580201px;}
.y12b{bottom:91.318005px;}
.y1a1{bottom:91.845300px;}
.y18b{bottom:97.795500px;}
.y1bf{bottom:107.966249px;}
.y26{bottom:107.966995px;}
.ye1{bottom:107.967155px;}
.y146{bottom:107.971354px;}
.y53{bottom:107.975702px;}
.y96{bottom:107.975851px;}
.y158{bottom:107.976000px;}
.y1a0{bottom:109.096050px;}
.y12a{bottom:109.768005px;}
.y18a{bottom:115.046250px;}
.y145{bottom:125.367004px;}
.ycb{bottom:125.370445px;}
.y52{bottom:125.371352px;}
.y25{bottom:125.371501px;}
.y157{bottom:125.371650px;}
.y6d{bottom:125.375849px;}
.y95{bottom:125.380196px;}
.ye0{bottom:125.384556px;}
.y19f{bottom:126.346800px;}
.y129{bottom:128.218005px;}
.y10b{bottom:128.218024px;}
.y189{bottom:132.297000px;}
.yca{bottom:142.766095px;}
.y51{bottom:142.767002px;}
.ybc{bottom:142.767151px;}
.y156{bottom:142.767300px;}
.y172{bottom:142.770595px;}
.y6c{bottom:142.771500px;}
.y94{bottom:142.775846px;}
.y144{bottom:142.775995px;}
.ydf{bottom:142.780206px;}
.y128{bottom:146.668005px;}
.y10a{bottom:146.668024px;}
.y24{bottom:147.412502px;}
.y188{bottom:149.547750px;}
.y6b{bottom:160.167149px;}
.y93{bottom:160.171496px;}
.y143{bottom:160.171646px;}
.y155{bottom:160.171805px;}
.yc9{bottom:160.175695px;}
.y50{bottom:160.175856px;}
.y171{bottom:160.180192px;}
.y127{bottom:165.118005px;}
.y109{bottom:165.118024px;}
.y1bd{bottom:165.118223px;}
.y187{bottom:166.798500px;}
.y92{bottom:177.567146px;}
.y142{bottom:177.567295px;}
.y154{bottom:177.567455px;}
.yc8{bottom:177.571345px;}
.y4f{bottom:177.571505px;}
.y170{bottom:177.575842px;}
.y6a{bottom:177.576002px;}
.y126{bottom:183.568006px;}
.y108{bottom:183.568024px;}
.ybb{bottom:183.568028px;}
.y23{bottom:183.568046px;}
.y91{bottom:194.966260px;}
.yc7{bottom:194.966995px;}
.y4e{bottom:194.967155px;}
.y69{bottom:194.970757px;}
.y16f{bottom:194.971492px;}
.y153{bottom:194.971950px;}
.yde{bottom:194.980210px;}
.y141{bottom:194.980347px;}
.y19a{bottom:200.106600px;}
.y125{bottom:202.018006px;}
.y107{bottom:202.018024px;}
.yba{bottom:202.018028px;}
.y22{bottom:202.018046px;}
.y1bc{bottom:202.018223px;}
.y68{bottom:212.366407px;}
.y16e{bottom:212.367142px;}
.y152{bottom:212.371798px;}
.y90{bottom:212.375860px;}
.y140{bottom:212.375997px;}
.yc6{bottom:212.380357px;}
.y4d{bottom:212.389052px;}
.y199{bottom:217.357350px;}
.y124{bottom:220.468006px;}
.y106{bottom:220.468024px;}
.yb9{bottom:220.468028px;}
.y21{bottom:220.468046px;}
.y1bb{bottom:220.468223px;}
.y151{bottom:229.767448px;}
.y8f{bottom:229.770592px;}
.ydd{bottom:229.771510px;}
.y13f{bottom:229.771647px;}
.y67{bottom:229.776007px;}
.y16d{bottom:229.778529px;}
.y4c{bottom:229.784702px;}
.y198{bottom:234.608100px;}
.y123{bottom:238.918006px;}
.y105{bottom:238.918025px;}
.yb8{bottom:238.918028px;}
.y20{bottom:238.918046px;}
.y1ba{bottom:238.918223px;}
.y8e{bottom:247.166242px;}
.ydc{bottom:247.167160px;}
.y13e{bottom:247.167297px;}
.y150{bottom:247.171196px;}
.y66{bottom:247.171657px;}
.y16c{bottom:247.174179px;}
.y4b{bottom:247.180352px;}
.y197{bottom:251.858850px;}
.y122{bottom:257.368006px;}
.y104{bottom:257.368025px;}
.yb7{bottom:257.368028px;}
.y1f{bottom:257.368046px;}
.y1b9{bottom:257.368224px;}
.y65{bottom:264.567307px;}
.y13d{bottom:264.567444px;}
.y8d{bottom:264.575842px;}
.y4a{bottom:264.576002px;}
.y14f{bottom:264.580796px;}
.y16b{bottom:264.597729px;}
.y196{bottom:269.109600px;}
.y121{bottom:275.818006px;}
.y103{bottom:275.818025px;}
.yb6{bottom:275.818029px;}
.y1e{bottom:275.818046px;}
.y1b8{bottom:275.818224px;}
.ydb{bottom:281.967453px;}
.y13c{bottom:281.967590px;}
.y49{bottom:281.971652px;}
.y64{bottom:281.971789px;}
.yc5{bottom:281.976149px;}
.y8c{bottom:281.980210px;}
.y14e{bottom:281.980805px;}
.y16a{bottom:281.993379px;}
.y120{bottom:294.268007px;}
.y102{bottom:294.268025px;}
.yb5{bottom:294.268029px;}
.y1d{bottom:294.268046px;}
.y1b7{bottom:294.268224px;}
.y63{bottom:299.367439px;}
.yc4{bottom:299.371798px;}
.y8b{bottom:299.375860px;}
.y48{bottom:299.375997px;}
.y14d{bottom:299.376455px;}
.y169{bottom:299.389029px;}
.y195{bottom:303.611100px;}
.y11f{bottom:312.718007px;}
.y101{bottom:312.718025px;}
.yb4{bottom:312.718029px;}
.y1c{bottom:312.718047px;}
.y1b6{bottom:312.718224px;}
.yc3{bottom:316.767448px;}
.y8a{bottom:316.771510px;}
.y47{bottom:316.771647px;}
.y62{bottom:316.771945px;}
.y14c{bottom:316.772105px;}
.y168{bottom:316.784679px;}
.y1e1{bottom:318.571813px;}
.y194{bottom:320.861850px;}
.y11e{bottom:331.168007px;}
.y100{bottom:331.168025px;}
.yda{bottom:331.168028px;}
.yb3{bottom:331.168029px;}
.y1b{bottom:331.168047px;}
.y13b{bottom:331.168057px;}
.y1b5{bottom:331.168224px;}
.y89{bottom:334.167160px;}
.y46{bottom:334.167297px;}
.y61{bottom:334.167595px;}
.y14b{bottom:334.167755px;}
.y167{bottom:334.180329px;}
.y1e0{bottom:335.822563px;}
.y193{bottom:338.112600px;}
.y11d{bottom:349.618007px;}
.yff{bottom:349.618025px;}
.yd9{bottom:349.618028px;}
.yb2{bottom:349.618029px;}
.y1a{bottom:349.618047px;}
.y13a{bottom:349.618199px;}
.y1b4{bottom:349.618224px;}
.y88{bottom:351.567444px;}
.y166{bottom:351.575979px;}
.y60{bottom:351.576437px;}
.y1df{bottom:353.073314px;}
.y192{bottom:355.363350px;}
.y11c{bottom:368.068007px;}
.yfe{bottom:368.068026px;}
.yd8{bottom:368.068028px;}
.yb1{bottom:368.068029px;}
.y19{bottom:368.068047px;}
.y1b3{bottom:368.068224px;}
.y165{bottom:368.970757px;}
.y5f{bottom:368.972087px;}
.y1de{bottom:370.324064px;}
.y191{bottom:372.614100px;}
.y164{bottom:386.366407px;}
.y5e{bottom:386.367737px;}
.y11b{bottom:386.518007px;}
.yfd{bottom:386.518026px;}
.yd7{bottom:386.518028px;}
.yb0{bottom:386.518029px;}
.y18{bottom:386.518047px;}
.y45{bottom:386.518066px;}
.y1b2{bottom:386.518225px;}
.y163{bottom:403.776007px;}
.y1dd{bottom:404.825565px;}
.y11a{bottom:404.968007px;}
.yfc{bottom:404.968026px;}
.yd6{bottom:404.968029px;}
.yaf{bottom:404.968030px;}
.y17{bottom:404.968047px;}
.yc2{bottom:404.968057px;}
.y44{bottom:404.968066px;}
.y87{bottom:404.968081px;}
.y1b1{bottom:404.968225px;}
.y190{bottom:407.115600px;}
.y162{bottom:421.171657px;}
.y1dc{bottom:422.076316px;}
.y119{bottom:423.418008px;}
.yfb{bottom:423.418026px;}
.yd5{bottom:423.418029px;}
.yae{bottom:423.418030px;}
.y16{bottom:423.418047px;}
.yc1{bottom:423.418057px;}
.y1be{bottom:423.418063px;}
.y43{bottom:423.418066px;}
.y86{bottom:423.418081px;}
.y1b0{bottom:423.418225px;}
.y18f{bottom:424.366350px;}
.y161{bottom:438.567307px;}
.y1db{bottom:439.327066px;}
.y18e{bottom:441.617100px;}
.y118{bottom:441.868008px;}
.yfa{bottom:441.868026px;}
.yd4{bottom:441.868029px;}
.y15{bottom:441.868048px;}
.yad{bottom:441.868063px;}
.y42{bottom:441.868066px;}
.y85{bottom:441.868082px;}
.y1af{bottom:441.868225px;}
.y1da{bottom:456.577817px;}
.y18d{bottom:458.867850px;}
.y117{bottom:460.318008px;}
.yf9{bottom:460.318026px;}
.yd3{bottom:460.318029px;}
.y14{bottom:460.318048px;}
.yac{bottom:460.318063px;}
.y41{bottom:460.318066px;}
.y84{bottom:460.318082px;}
.y1ae{bottom:460.318225px;}
.y1d9{bottom:473.809759px;}
.y18c{bottom:476.118600px;}
.y116{bottom:478.768008px;}
.yf8{bottom:478.768026px;}
.y5d{bottom:478.768029px;}
.y160{bottom:478.768038px;}
.y13{bottom:478.768048px;}
.yab{bottom:478.768063px;}
.y83{bottom:478.768082px;}
.y40{bottom:478.768184px;}
.y1ad{bottom:478.768225px;}
.y1d8{bottom:491.060509px;}
.y115{bottom:497.218008px;}
.yf7{bottom:497.218027px;}
.y5c{bottom:497.218030px;}
.y15f{bottom:497.218038px;}
.y12{bottom:497.218048px;}
.y139{bottom:497.218055px;}
.yaa{bottom:497.218064px;}
.y82{bottom:497.218082px;}
.y3f{bottom:497.218184px;}
.y1ac{bottom:497.218185px;}
.y1d7{bottom:508.311260px;}
.y114{bottom:515.668008px;}
.yf6{bottom:515.668027px;}
.y14a{bottom:515.668029px;}
.y5b{bottom:515.668039px;}
.y138{bottom:515.668056px;}
.ya9{bottom:515.668064px;}
.y81{bottom:515.668082px;}
.y3e{bottom:515.668184px;}
.y1ab{bottom:515.668226px;}
.y1d6{bottom:525.562011px;}
.y113{bottom:534.118008px;}
.yf5{bottom:534.118027px;}
.y149{bottom:534.118029px;}
.y5a{bottom:534.118039px;}
.y137{bottom:534.118056px;}
.ya8{bottom:534.118064px;}
.y80{bottom:534.118082px;}
.y3d{bottom:534.118184px;}
.y1aa{bottom:534.118226px;}
.y1d5{bottom:542.812761px;}
.y11{bottom:547.310534px;}
.y112{bottom:552.568009px;}
.yf4{bottom:552.568027px;}
.y148{bottom:552.568029px;}
.y15e{bottom:552.568038px;}
.y136{bottom:552.568056px;}
.ya7{bottom:552.568064px;}
.y7f{bottom:552.568082px;}
.y3c{bottom:552.568184px;}
.y1a9{bottom:552.568227px;}
.y1d4{bottom:560.063512px;}
.y10{bottom:564.561284px;}
.y111{bottom:571.018009px;}
.yf3{bottom:571.018027px;}
.y147{bottom:571.018029px;}
.y15d{bottom:571.018038px;}
.y135{bottom:571.018056px;}
.ya6{bottom:571.018064px;}
.y7e{bottom:571.018083px;}
.y3b{bottom:571.018185px;}
.y1a8{bottom:571.018204px;}
.y1d3{bottom:577.314262px;}
.y110{bottom:589.468009px;}
.yf2{bottom:589.468027px;}
.yd2{bottom:589.468029px;}
.y15c{bottom:589.468038px;}
.y134{bottom:589.468056px;}
.ya5{bottom:589.468064px;}
.y59{bottom:589.468066px;}
.y7d{bottom:589.468083px;}
.y3a{bottom:589.468185px;}
.y1a7{bottom:589.468229px;}
.y1d2{bottom:594.565013px;}
.yf{bottom:599.062785px;}
.y10f{bottom:607.918009px;}
.yf1{bottom:607.918028px;}
.yd1{bottom:607.918029px;}
.y15b{bottom:607.918039px;}
.y133{bottom:607.918056px;}
.ya4{bottom:607.918064px;}
.y58{bottom:607.918066px;}
.y7c{bottom:607.918083px;}
.y39{bottom:607.918185px;}
.y1a6{bottom:607.918229px;}
.y1d1{bottom:611.815763px;}
.ye{bottom:616.313536px;}
.y10e{bottom:626.368009px;}
.yf0{bottom:626.368028px;}
.yd0{bottom:626.368029px;}
.y15a{bottom:626.368039px;}
.y186{bottom:626.368050px;}
.y132{bottom:626.368056px;}
.ya3{bottom:626.368065px;}
.y57{bottom:626.368066px;}
.y7b{bottom:626.368083px;}
.y38{bottom:626.368185px;}
.y1a5{bottom:626.368229px;}
.y1d0{bottom:629.066514px;}
.yd{bottom:633.564286px;}
.y10d{bottom:644.818009px;}
.yef{bottom:644.818028px;}
.ycf{bottom:644.818029px;}
.y185{bottom:644.818050px;}
.y131{bottom:644.818057px;}
.ya2{bottom:644.818065px;}
.y56{bottom:644.818066px;}
.y7a{bottom:644.818083px;}
.y37{bottom:644.818185px;}
.y1a4{bottom:644.818229px;}
.y1cf{bottom:646.317264px;}
.yc{bottom:650.815037px;}
.y55{bottom:663.268010px;}
.yee{bottom:663.268028px;}
.yce{bottom:663.268029px;}
.y184{bottom:663.268050px;}
.y130{bottom:663.268057px;}
.ya1{bottom:663.268065px;}
.y79{bottom:663.268083px;}
.y36{bottom:663.268185px;}
.y1a3{bottom:663.268229px;}
.y1ce{bottom:663.568015px;}
.yb{bottom:668.065787px;}
.y1cd{bottom:680.818765px;}
.y35{bottom:681.718010px;}
.yed{bottom:681.718028px;}
.ycd{bottom:681.718030px;}
.y183{bottom:681.718050px;}
.y12f{bottom:681.718057px;}
.ya0{bottom:681.718065px;}
.y78{bottom:681.718084px;}
.y1a2{bottom:681.718230px;}
.ya{bottom:685.316538px;}
.y1cc{bottom:698.069516px;}
.y34{bottom:700.168010px;}
.yec{bottom:700.168028px;}
.y182{bottom:700.168050px;}
.y12e{bottom:700.168057px;}
.y9f{bottom:700.168065px;}
.y77{bottom:700.168084px;}
.y9{bottom:702.567288px;}
.y1cb{bottom:715.320266px;}
.y33{bottom:718.618010px;}
.yeb{bottom:718.618028px;}
.y181{bottom:718.618050px;}
.y9e{bottom:718.618065px;}
.y76{bottom:718.618084px;}
.y12d{bottom:718.618231px;}
.y8{bottom:719.818039px;}
.y1ca{bottom:732.571017px;}
.y32{bottom:737.068010px;}
.yea{bottom:737.068029px;}
.y180{bottom:737.068050px;}
.y9d{bottom:737.068065px;}
.y75{bottom:737.068084px;}
.y12c{bottom:737.068231px;}
.y1c9{bottom:749.821767px;}
.y31{bottom:755.518010px;}
.ye9{bottom:755.518029px;}
.y17f{bottom:755.518050px;}
.y9c{bottom:755.518066px;}
.y74{bottom:755.518084px;}
.yc0{bottom:755.518230px;}
.y1c8{bottom:767.072518px;}
.y7{bottom:768.803741px;}
.y30{bottom:773.968010px;}
.ye8{bottom:773.968029px;}
.y17e{bottom:773.968050px;}
.y9b{bottom:773.968066px;}
.y73{bottom:773.968084px;}
.ybf{bottom:773.968230px;}
.y1c7{bottom:784.323268px;}
.y2f{bottom:792.418011px;}
.ye7{bottom:792.418029px;}
.y17d{bottom:792.418050px;}
.y9a{bottom:792.418066px;}
.y72{bottom:792.418084px;}
.ybe{bottom:792.418231px;}
.y1c6{bottom:801.574019px;}
.y6{bottom:810.839739px;}
.y2e{bottom:810.868011px;}
.ye6{bottom:810.868029px;}
.y17c{bottom:810.868050px;}
.y99{bottom:810.868066px;}
.y71{bottom:810.868085px;}
.ybd{bottom:810.868231px;}
.y1c5{bottom:818.824769px;}
.y2d{bottom:829.318011px;}
.ye5{bottom:829.318029px;}
.y17b{bottom:829.318050px;}
.y98{bottom:829.318066px;}
.y70{bottom:829.318231px;}
.y1c4{bottom:836.075520px;}
.y5{bottom:839.327740px;}
.y2c{bottom:847.768011px;}
.ye4{bottom:847.768029px;}
.y17a{bottom:847.768050px;}
.y159{bottom:847.768066px;}
.y6f{bottom:847.768231px;}
.y1c3{bottom:853.326270px;}
.y19e{bottom:853.708800px;}
.y174{bottom:855.898500px;}
.y2{bottom:857.391019px;}
.y1{bottom:864.889069px;}
.y2b{bottom:866.218011px;}
.ye3{bottom:866.218030px;}
.y179{bottom:866.218050px;}
.y6e{bottom:866.218231px;}
.y4{bottom:867.815741px;}
.y1c2{bottom:870.577021px;}
.y19d{bottom:870.959550px;}
.y2a{bottom:884.668011px;}
.y178{bottom:884.668050px;}
.y19c{bottom:888.210300px;}
.y3{bottom:896.303741px;}
.y29{bottom:903.118011px;}
.y177{bottom:903.118050px;}
.y1c1{bottom:905.078522px;}
.y19b{bottom:905.461050px;}
.y173{bottom:955.942350px;}
.y28{bottom:955.942383px;}
.h2{height:15.295800px;}
.h9{height:31.861795px;}
.h1f{height:45.543000px;}
.h1e{height:46.104000px;}
.h6{height:46.512000px;}
.h24{height:46.587234px;}
.h25{height:47.073000px;}
.h5{height:48.195000px;}
.h12{height:49.829401px;}
.ha{height:50.443201px;}
.h1c{height:50.446691px;}
.h11{height:50.446782px;}
.h16{height:50.446828px;}
.h13{height:50.446874px;}
.hb{height:50.868000px;}
.h15{height:54.719965px;}
.h7{height:54.720000px;}
.hd{height:54.720003px;}
.h19{height:54.720074px;}
.h17{height:54.720080px;}
.h21{height:54.720092px;}
.h10{height:54.720148px;}
.h22{height:54.720160px;}
.h14{height:54.720222px;}
.he{height:54.720225px;}
.h1b{height:54.720295px;}
.hf{height:54.720478px;}
.h1a{height:54.720608px;}
.h8{height:54.720614px;}
.h18{height:54.720626px;}
.hc{height:54.720703px;}
.h23{height:55.380000px;}
.h20{height:56.700000px;}
.h1d{height:59.125500px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:26.181600px;}
.w3{width:26.182500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.xc{left:2.136900px;}
.xb{left:5.206050px;}
.xa{left:23.409450px;}
.x2{left:25.546350px;}
.x1{left:28.615499px;}
.x3{left:72.283499px;}
.x5{left:80.787449px;}
.x4{left:93.538500px;}
.x8{left:102.037191px;}
.x9{left:227.387993px;}
.x10{left:354.614250px;}
.xd{left:360.675750px;}
.xf{left:363.649650px;}
.xe{left:649.086000px;}
.x7{left:651.223498px;}
.x6{left:654.292648px;}
@media print{
.v3{vertical-align:-17.759928pt;}
.v2{vertical-align:-16.516805pt;}
.v6{vertical-align:-15.095866pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.162741pt;}
.v4{vertical-align:16.516764pt;}
.v1{vertical-align:17.760556pt;}
.ls6b{letter-spacing:-6.200000pt;}
.ls3f{letter-spacing:-3.273600pt;}
.ls76{letter-spacing:-1.289600pt;}
.ls74{letter-spacing:-1.200000pt;}
.ls10{letter-spacing:-1.041600pt;}
.ls5b{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.498667pt;}
.ls79{letter-spacing:-0.480000pt;}
.ls86{letter-spacing:-0.453333pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls5d{letter-spacing:-0.368000pt;}
.ls7a{letter-spacing:-0.320000pt;}
.ls85{letter-spacing:-0.317333pt;}
.ls59{letter-spacing:-0.310933pt;}
.ls58{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.266667pt;}
.ls99{letter-spacing:-0.226667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.198400pt;}
.ls7b{letter-spacing:-0.186560pt;}
.ls8{letter-spacing:-0.181333pt;}
.lse{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.148800pt;}
.ls83{letter-spacing:-0.124373pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls3e{letter-spacing:-0.099200pt;}
.ls98{letter-spacing:-0.090667pt;}
.ls4b{letter-spacing:-0.062187pt;}
.ls4a{letter-spacing:-0.053333pt;}
.ls26{letter-spacing:-0.049600pt;}
.ls69{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000002pt;}
.ls35{letter-spacing:0.000010pt;}
.ls6{letter-spacing:0.019733pt;}
.ls55{letter-spacing:0.024800pt;}
.ls6e{letter-spacing:0.026667pt;}
.ls65{letter-spacing:0.031093pt;}
.ls89{letter-spacing:0.045333pt;}
.ls37{letter-spacing:0.049600pt;}
.ls42{letter-spacing:0.053333pt;}
.ls64{letter-spacing:0.062187pt;}
.ls75{letter-spacing:0.093280pt;}
.ls21{letter-spacing:0.099200pt;}
.ls1{letter-spacing:0.106667pt;}
.ls6f{letter-spacing:0.133333pt;}
.ls96{letter-spacing:0.136000pt;}
.ls8d{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.148800pt;}
.ls5c{letter-spacing:0.155467pt;}
.ls41{letter-spacing:0.160000pt;}
.ls68{letter-spacing:0.186667pt;}
.ls92{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.198400pt;}
.ls9a{letter-spacing:0.211435pt;}
.ls53{letter-spacing:0.213333pt;}
.ls81{letter-spacing:0.223200pt;}
.ls20{letter-spacing:0.233120pt;}
.ls1b{letter-spacing:0.248000pt;}
.ls5a{letter-spacing:0.248747pt;}
.ls16{letter-spacing:0.266667pt;}
.ls8b{letter-spacing:0.272000pt;}
.ls6a{letter-spacing:0.279840pt;}
.ls4f{letter-spacing:0.293333pt;}
.ls31{letter-spacing:0.295961pt;}
.ls1c{letter-spacing:0.297600pt;}
.ls17{letter-spacing:0.310664pt;}
.ls52{letter-spacing:0.310933pt;}
.ls87{letter-spacing:0.317333pt;}
.ls4e{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.322400pt;}
.ls84{letter-spacing:0.346667pt;}
.ls39{letter-spacing:0.347200pt;}
.ls95{letter-spacing:0.362667pt;}
.ls61{letter-spacing:0.372000pt;}
.ls18{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.426667pt;}
.ls49{letter-spacing:0.435307pt;}
.ls7c{letter-spacing:0.446400pt;}
.ls6c{letter-spacing:0.453333pt;}
.ls5{letter-spacing:0.461714pt;}
.ls4d{letter-spacing:0.480000pt;}
.ls46{letter-spacing:0.496000pt;}
.ls30{letter-spacing:0.506667pt;}
.ls3{letter-spacing:0.533333pt;}
.ls93{letter-spacing:0.544000pt;}
.ls2c{letter-spacing:0.568503pt;}
.ls2f{letter-spacing:0.582110pt;}
.ls12{letter-spacing:0.586667pt;}
.ls97{letter-spacing:0.589333pt;}
.ls3b{letter-spacing:0.590773pt;}
.ls2e{letter-spacing:0.621619pt;}
.ls8c{letter-spacing:0.634667pt;}
.ls67{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.651200pt;}
.ls48{letter-spacing:0.684053pt;}
.ls15{letter-spacing:0.693333pt;}
.ls91{letter-spacing:0.746240pt;}
.ls28{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.800000pt;}
.ls4c{letter-spacing:0.853333pt;}
.ls94{letter-spacing:0.884000pt;}
.ls14{letter-spacing:0.906667pt;}
.ls13{letter-spacing:0.933333pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls8e{letter-spacing:0.994987pt;}
.ls2{letter-spacing:1.013333pt;}
.ls29{letter-spacing:1.066667pt;}
.ls40{letter-spacing:1.173333pt;}
.ls88{letter-spacing:1.200000pt;}
.ls8a{letter-spacing:1.248000pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls7e{letter-spacing:1.344000pt;}
.ls6d{letter-spacing:1.392000pt;}
.ls2d{letter-spacing:1.493333pt;}
.ls57{letter-spacing:1.626874pt;}
.ls51{letter-spacing:1.632000pt;}
.ls90{letter-spacing:1.706667pt;}
.ls63{letter-spacing:1.728000pt;}
.ls23{letter-spacing:1.824000pt;}
.ls1d{letter-spacing:1.860383pt;}
.ls11{letter-spacing:1.968000pt;}
.ls3a{letter-spacing:2.112000pt;}
.ls80{letter-spacing:2.901600pt;}
.ls60{letter-spacing:2.926400pt;}
.ls44{letter-spacing:2.976000pt;}
.ls56{letter-spacing:3.000800pt;}
.ls7d{letter-spacing:3.025600pt;}
.ls50{letter-spacing:3.124800pt;}
.ls1a{letter-spacing:3.174400pt;}
.ls73{letter-spacing:3.224000pt;}
.ls25{letter-spacing:3.273600pt;}
.ls47{letter-spacing:3.293454pt;}
.ls66{letter-spacing:3.323200pt;}
.ls77{letter-spacing:3.472000pt;}
.ls8f{letter-spacing:3.573347pt;}
.ls5e{letter-spacing:23.758383pt;}
.ls71{letter-spacing:26.783998pt;}
.ls70{letter-spacing:26.932781pt;}
.ls82{letter-spacing:26.982403pt;}
.ls7f{letter-spacing:27.131186pt;}
.ls62{letter-spacing:27.329591pt;}
.ls78{letter-spacing:27.527996pt;}
.ls38{letter-spacing:28.718405pt;}
.ls72{letter-spacing:29.859193pt;}
.ls54{letter-spacing:31.793580pt;}
.ls5f{letter-spacing:32.140789pt;}
.ls45{letter-spacing:32.339194pt;}
.ls43{letter-spacing:37.100811pt;}
.ls36{letter-spacing:44.888002pt;}
.ls22{letter-spacing:45.483196pt;}
.ls33{letter-spacing:45.681601pt;}
.ls34{letter-spacing:48.756796pt;}
.wse5{word-spacing:-14.136000pt;}
.wsae{word-spacing:-13.987200pt;}
.ws26{word-spacing:-13.838400pt;}
.ws88{word-spacing:-13.788800pt;}
.wse6{word-spacing:-13.689600pt;}
.wsa0{word-spacing:-13.664800pt;}
.ws6b{word-spacing:-13.640000pt;}
.wsaf{word-spacing:-13.590400pt;}
.wsf6{word-spacing:-13.565600pt;}
.ws49{word-spacing:-13.488000pt;}
.wsab{word-spacing:-13.104000pt;}
.ws86{word-spacing:-13.008000pt;}
.wsc8{word-spacing:-12.768000pt;}
.ws113{word-spacing:-12.720000pt;}
.ws10c{word-spacing:-12.624000pt;}
.ws69{word-spacing:-11.893333pt;}
.ws115{word-spacing:-11.200000pt;}
.ws114{word-spacing:-11.146667pt;}
.ws11a{word-spacing:-10.925333pt;}
.wse3{word-spacing:-10.896000pt;}
.ws6{word-spacing:-10.664000pt;}
.ws4b{word-spacing:-10.614400pt;}
.wsa1{word-spacing:-9.969600pt;}
.wsd6{word-spacing:-9.920000pt;}
.wsb0{word-spacing:-9.870400pt;}
.ws4{word-spacing:-9.622400pt;}
.ws2{word-spacing:-9.520000pt;}
.ws11d{word-spacing:-9.474667pt;}
.wsd5{word-spacing:-9.374400pt;}
.ws102{word-spacing:-9.293333pt;}
.ws9d{word-spacing:-9.173333pt;}
.ws11b{word-spacing:-8.432000pt;}
.ws5{word-spacing:-7.912000pt;}
.ws9f{word-spacing:-7.544000pt;}
.ws4c{word-spacing:-7.390400pt;}
.ws68{word-spacing:-7.182560pt;}
.ws4a{word-spacing:-7.089280pt;}
.ws87{word-spacing:-6.809440pt;}
.wsbd{word-spacing:-6.778347pt;}
.ws9c{word-spacing:-6.747253pt;}
.ws9e{word-spacing:-6.653973pt;}
.wsd4{word-spacing:-6.591787pt;}
.wsac{word-spacing:-6.560693pt;}
.wsad{word-spacing:-6.529600pt;}
.ws25{word-spacing:-6.498507pt;}
.ws6a{word-spacing:-6.436320pt;}
.wsf5{word-spacing:-6.374133pt;}
.wse4{word-spacing:-6.311947pt;}
.ws3{word-spacing:-6.217112pt;}
.ws9b{word-spacing:-6.187573pt;}
.ws11c{word-spacing:-5.735165pt;}
.wsb8{word-spacing:-2.926400pt;}
.wsea{word-spacing:-2.240000pt;}
.wsfb{word-spacing:-2.132800pt;}
.wsf8{word-spacing:-1.973333pt;}
.ws30{word-spacing:-1.920000pt;}
.ws27{word-spacing:-1.824000pt;}
.ws33{word-spacing:-1.813333pt;}
.wsd2{word-spacing:-1.760000pt;}
.ws6f{word-spacing:-1.706667pt;}
.ws60{word-spacing:-1.686400pt;}
.ws124{word-spacing:-1.677333pt;}
.ws14{word-spacing:-1.653333pt;}
.ws7d{word-spacing:-1.636800pt;}
.ws95{word-spacing:-1.600000pt;}
.ws48{word-spacing:-1.587200pt;}
.wsfa{word-spacing:-1.537600pt;}
.wsb2{word-spacing:-1.493333pt;}
.ws47{word-spacing:-1.488000pt;}
.ws123{word-spacing:-1.450667pt;}
.ws5c{word-spacing:-1.440000pt;}
.wsf1{word-spacing:-1.388800pt;}
.ws1b{word-spacing:-1.386667pt;}
.wsb{word-spacing:-1.360000pt;}
.wscd{word-spacing:-1.333333pt;}
.ws129{word-spacing:-1.314667pt;}
.wsa4{word-spacing:-1.280000pt;}
.ws8d{word-spacing:-1.226667pt;}
.wse2{word-spacing:-1.190400pt;}
.ws5d{word-spacing:-1.173333pt;}
.wse1{word-spacing:-1.140800pt;}
.wsd{word-spacing:-1.133333pt;}
.ws8b{word-spacing:-1.120000pt;}
.wsce{word-spacing:-1.066667pt;}
.wsfc{word-spacing:-1.041600pt;}
.wsc1{word-spacing:-1.013333pt;}
.ws111{word-spacing:-0.994987pt;}
.ws20{word-spacing:-0.992000pt;}
.ws72{word-spacing:-0.960000pt;}
.ws128{word-spacing:-0.952000pt;}
.ws22{word-spacing:-0.942400pt;}
.ws15{word-spacing:-0.906667pt;}
.ws23{word-spacing:-0.892800pt;}
.ws55{word-spacing:-0.853333pt;}
.wsf0{word-spacing:-0.843200pt;}
.wsd3{word-spacing:-0.800000pt;}
.ws38{word-spacing:-0.746667pt;}
.ws117{word-spacing:-0.746240pt;}
.ws35{word-spacing:-0.693333pt;}
.ws0{word-spacing:-0.670933pt;}
.ws65{word-spacing:-0.644800pt;}
.wsc6{word-spacing:-0.640000pt;}
.ws10a{word-spacing:-0.634667pt;}
.ws12f{word-spacing:-0.589333pt;}
.wscf{word-spacing:-0.586667pt;}
.wsec{word-spacing:-0.496000pt;}
.wsa3{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.435307pt;}
.wsb6{word-spacing:-0.426667pt;}
.ws12a{word-spacing:-0.408000pt;}
.ws119{word-spacing:-0.396800pt;}
.ws37{word-spacing:-0.373333pt;}
.ws82{word-spacing:-0.347200pt;}
.wsca{word-spacing:-0.320000pt;}
.ws127{word-spacing:-0.317333pt;}
.ws3e{word-spacing:-0.297600pt;}
.ws90{word-spacing:-0.266667pt;}
.wsde{word-spacing:-0.248000pt;}
.ws107{word-spacing:-0.226667pt;}
.ws1c{word-spacing:-0.213333pt;}
.ws24{word-spacing:-0.198400pt;}
.ws9{word-spacing:-0.181333pt;}
.wsc5{word-spacing:-0.160000pt;}
.ws9a{word-spacing:-0.148800pt;}
.ws36{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.099200pt;}
.wsd9{word-spacing:-0.093280pt;}
.ws121{word-spacing:-0.090667pt;}
.ws8e{word-spacing:-0.053333pt;}
.ws63{word-spacing:-0.049600pt;}
.ws1{word-spacing:-0.039467pt;}
.ws7{word-spacing:0.000000pt;}
.ws66{word-spacing:0.049600pt;}
.ws1e{word-spacing:0.053333pt;}
.ws10f{word-spacing:0.090667pt;}
.wsb9{word-spacing:0.099200pt;}
.ws39{word-spacing:0.106667pt;}
.ws62{word-spacing:0.148800pt;}
.ws50{word-spacing:0.160000pt;}
.ws8{word-spacing:0.181333pt;}
.wsa9{word-spacing:0.198400pt;}
.wsb3{word-spacing:0.213333pt;}
.ws29{word-spacing:0.266667pt;}
.wsc{word-spacing:0.272000pt;}
.wsaa{word-spacing:0.297600pt;}
.ws54{word-spacing:0.320000pt;}
.ws80{word-spacing:0.347200pt;}
.ws1a{word-spacing:0.373333pt;}
.wsdd{word-spacing:0.396800pt;}
.ws106{word-spacing:0.408000pt;}
.wsf{word-spacing:0.426667pt;}
.wsf4{word-spacing:0.446400pt;}
.ws10e{word-spacing:0.453333pt;}
.ws31{word-spacing:0.480000pt;}
.wsfe{word-spacing:0.496000pt;}
.ws70{word-spacing:0.533333pt;}
.wsfd{word-spacing:0.545600pt;}
.ws59{word-spacing:0.586667pt;}
.ws32{word-spacing:0.640000pt;}
.ws41{word-spacing:0.644800pt;}
.ws10b{word-spacing:0.680000pt;}
.ws51{word-spacing:0.693333pt;}
.ws7f{word-spacing:0.694400pt;}
.ws109{word-spacing:0.725333pt;}
.ws7e{word-spacing:0.744000pt;}
.ws12{word-spacing:0.746667pt;}
.wscb{word-spacing:0.800000pt;}
.wsa{word-spacing:0.861333pt;}
.ws3f{word-spacing:0.892800pt;}
.ws74{word-spacing:0.906667pt;}
.ws100{word-spacing:0.942400pt;}
.ws13{word-spacing:0.960000pt;}
.wsf2{word-spacing:0.992000pt;}
.wsf9{word-spacing:1.013333pt;}
.ws112{word-spacing:1.041600pt;}
.ws105{word-spacing:1.042667pt;}
.ws4f{word-spacing:1.066667pt;}
.ws99{word-spacing:1.091200pt;}
.ws21{word-spacing:1.140800pt;}
.wsbc{word-spacing:1.190400pt;}
.wsc4{word-spacing:1.226667pt;}
.ws77{word-spacing:1.240000pt;}
.ws5e{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.289600pt;}
.wsd1{word-spacing:1.333333pt;}
.ws78{word-spacing:1.339200pt;}
.ws19{word-spacing:1.386667pt;}
.ws7a{word-spacing:1.388800pt;}
.ws12e{word-spacing:1.405333pt;}
.ws34{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.488000pt;}
.wsa7{word-spacing:1.493333pt;}
.ws5f{word-spacing:1.546667pt;}
.ws64{word-spacing:1.587200pt;}
.ws18{word-spacing:1.600000pt;}
.ws42{word-spacing:1.636800pt;}
.wse{word-spacing:1.653333pt;}
.ws43{word-spacing:1.686400pt;}
.ws2a{word-spacing:1.706667pt;}
.wsdf{word-spacing:1.736000pt;}
.ws56{word-spacing:1.760000pt;}
.ws97{word-spacing:1.813333pt;}
.wsff{word-spacing:1.835200pt;}
.ws5b{word-spacing:1.866667pt;}
.ws12c{word-spacing:1.904000pt;}
.ws5a{word-spacing:1.920000pt;}
.ws3c{word-spacing:1.934400pt;}
.ws1f{word-spacing:1.973333pt;}
.ws84{word-spacing:1.984000pt;}
.ws2d{word-spacing:2.026667pt;}
.ws91{word-spacing:2.080000pt;}
.ws3d{word-spacing:2.083200pt;}
.ws85{word-spacing:2.132800pt;}
.wsdb{word-spacing:2.133333pt;}
.ws40{word-spacing:2.182400pt;}
.ws2f{word-spacing:2.186667pt;}
.ws98{word-spacing:2.240000pt;}
.ws122{word-spacing:2.266667pt;}
.ws61{word-spacing:2.281600pt;}
.ws52{word-spacing:2.293333pt;}
.ws75{word-spacing:2.331200pt;}
.ws96{word-spacing:2.346667pt;}
.ws7c{word-spacing:2.380800pt;}
.ws12b{word-spacing:2.448000pt;}
.ws94{word-spacing:2.453333pt;}
.ws76{word-spacing:2.480000pt;}
.ws57{word-spacing:2.506667pt;}
.ws44{word-spacing:2.529600pt;}
.wsc2{word-spacing:2.560000pt;}
.wsef{word-spacing:2.579200pt;}
.ws11f{word-spacing:2.584000pt;}
.ws17{word-spacing:2.613333pt;}
.ws83{word-spacing:2.628800pt;}
.ws118{word-spacing:2.666667pt;}
.ws104{word-spacing:2.720000pt;}
.wsba{word-spacing:2.728000pt;}
.ws16{word-spacing:2.773333pt;}
.ws130{word-spacing:2.810667pt;}
.ws71{word-spacing:2.826667pt;}
.ws79{word-spacing:2.827200pt;}
.ws12d{word-spacing:2.856000pt;}
.ws67{word-spacing:2.876800pt;}
.wsb5{word-spacing:2.880000pt;}
.wsbb{word-spacing:2.926400pt;}
.wsb4{word-spacing:2.933333pt;}
.ws2e{word-spacing:2.986667pt;}
.ws73{word-spacing:3.040000pt;}
.ws92{word-spacing:3.093333pt;}
.ws2b{word-spacing:3.146667pt;}
.ws4e{word-spacing:3.200000pt;}
.wsa6{word-spacing:3.253333pt;}
.ws6d{word-spacing:3.306667pt;}
.wsbf{word-spacing:3.360000pt;}
.wsa5{word-spacing:3.413333pt;}
.ws11{word-spacing:3.466667pt;}
.wsd0{word-spacing:3.626667pt;}
.wsed{word-spacing:3.769600pt;}
.ws2c{word-spacing:3.786667pt;}
.ws131{word-spacing:3.808000pt;}
.ws93{word-spacing:3.840000pt;}
.ws1d{word-spacing:3.893333pt;}
.ws81{word-spacing:3.918400pt;}
.wsee{word-spacing:4.017600pt;}
.wse9{word-spacing:4.106667pt;}
.wse8{word-spacing:4.320000pt;}
.ws132{word-spacing:4.352000pt;}
.ws8c{word-spacing:4.373333pt;}
.ws125{word-spacing:4.442667pt;}
.ws120{word-spacing:4.578667pt;}
.wsc0{word-spacing:4.586667pt;}
.wsda{word-spacing:4.640000pt;}
.ws53{word-spacing:4.800000pt;}
.wscc{word-spacing:4.853333pt;}
.wsd8{word-spacing:5.120000pt;}
.wsc3{word-spacing:5.173333pt;}
.ws10{word-spacing:5.280000pt;}
.ws8f{word-spacing:5.386667pt;}
.wsc7{word-spacing:5.505600pt;}
.ws58{word-spacing:6.026667pt;}
.ws8a{word-spacing:7.146667pt;}
.ws126{word-spacing:7.298667pt;}
.wseb{word-spacing:23.460800pt;}
.wsdc{word-spacing:25.742401pt;}
.wse0{word-spacing:26.635201pt;}
.wsb7{word-spacing:26.833601pt;}
.wsf3{word-spacing:27.329601pt;}
.ws101{word-spacing:30.057601pt;}
.wsa8{word-spacing:35.215999pt;}
.ws3a{word-spacing:45.830402pt;}
.ws45{word-spacing:46.078402pt;}
.ws4d{word-spacing:926.207977pt;}
.wsb1{word-spacing:926.592041pt;}
.ws89{word-spacing:926.687988pt;}
.ws103{word-spacing:926.688000pt;}
.wsc9{word-spacing:926.928039pt;}
.ws116{word-spacing:926.976013pt;}
.ws10d{word-spacing:927.072000pt;}
.wse7{word-spacing:928.800018pt;}
.ws28{word-spacing:1501.632019pt;}
.ws6c{word-spacing:1501.920044pt;}
.wsf7{word-spacing:1502.928039pt;}
.ws108{word-spacing:1503.216000pt;}
.ws11e{word-spacing:1505.183990pt;}
.ws110{word-spacing:1505.280029pt;}
.wsbe{word-spacing:1505.711975pt;}
.wsa2{word-spacing:1506.144012pt;}
.wsd7{word-spacing:1508.015991pt;}
._1b{margin-left:-929.514345pt;}
._1a{margin-left:-928.417842pt;}
._10{margin-left:-927.452599pt;}
._b{margin-left:-926.236360pt;}
._a{margin-left:-42.788247pt;}
._13{margin-left:-31.723747pt;}
._1e{margin-left:-29.513073pt;}
._19{margin-left:-24.402674pt;}
._16{margin-left:-22.540805pt;}
._1c{margin-left:-17.906128pt;}
._1d{margin-left:-16.481624pt;}
._15{margin-left:-13.013373pt;}
._14{margin-left:-8.643257pt;}
._9{margin-left:-6.596258pt;}
._6{margin-left:-5.045333pt;}
._2{margin-left:-3.421867pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.960000pt;}
._0{width:1.110987pt;}
._4{width:2.026080pt;}
._c{width:2.965333pt;}
._5{width:3.858667pt;}
._e{width:5.267778pt;}
._18{width:6.200007pt;}
._20{width:24.551460pt;}
._17{width:27.328533pt;}
._f{width:29.511458pt;}
._12{width:30.652277pt;}
._11{width:33.330666pt;}
._1f{width:34.400000pt;}
._d{width:47.616005pt;}
._8{width:51.980264pt;}
._7{width:55.204793pt;}
.fs0{font-size:19.733334pt;}
.fsa{font-size:26.429334pt;}
.fs6{font-size:28.916799pt;}
.fs5{font-size:31.093333pt;}
.fs8{font-size:36.800001pt;}
.fs3{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:49.600001pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y176{bottom:1.326667pt;}
.y175{bottom:7.991600pt;}
.ycc{bottom:80.503202pt;}
.y10c{bottom:80.504135pt;}
.y1c0{bottom:80.507199pt;}
.y27{bottom:80.507862pt;}
.ye2{bottom:80.508005pt;}
.y54{bottom:80.511737pt;}
.y97{bottom:80.515734pt;}
.y12b{bottom:81.171560pt;}
.y1a1{bottom:81.640267pt;}
.y18b{bottom:86.929333pt;}
.y1bf{bottom:95.969999pt;}
.y26{bottom:95.970662pt;}
.ye1{bottom:95.970805pt;}
.y146{bottom:95.974537pt;}
.y53{bottom:95.978402pt;}
.y96{bottom:95.978534pt;}
.y158{bottom:95.978666pt;}
.y1a0{bottom:96.974267pt;}
.y12a{bottom:97.571560pt;}
.y18a{bottom:102.263333pt;}
.y145{bottom:111.437337pt;}
.ycb{bottom:111.440396pt;}
.y52{bottom:111.441202pt;}
.y25{bottom:111.441334pt;}
.y157{bottom:111.441466pt;}
.y6d{bottom:111.445199pt;}
.y95{bottom:111.449063pt;}
.ye0{bottom:111.452938pt;}
.y19f{bottom:112.308267pt;}
.y129{bottom:113.971560pt;}
.y10b{bottom:113.971577pt;}
.y189{bottom:117.597333pt;}
.yca{bottom:126.903196pt;}
.y51{bottom:126.904002pt;}
.ybc{bottom:126.904134pt;}
.y156{bottom:126.904266pt;}
.y172{bottom:126.907195pt;}
.y6c{bottom:126.908000pt;}
.y94{bottom:126.911863pt;}
.y144{bottom:126.911996pt;}
.ydf{bottom:126.915738pt;}
.y128{bottom:130.371560pt;}
.y10a{bottom:130.371577pt;}
.y24{bottom:131.033335pt;}
.y188{bottom:132.931333pt;}
.y6b{bottom:142.370799pt;}
.y93{bottom:142.374663pt;}
.y143{bottom:142.374797pt;}
.y155{bottom:142.374938pt;}
.yc9{bottom:142.378396pt;}
.y50{bottom:142.378538pt;}
.y171{bottom:142.382393pt;}
.y127{bottom:146.771560pt;}
.y109{bottom:146.771577pt;}
.y1bd{bottom:146.771753pt;}
.y187{bottom:148.265333pt;}
.y92{bottom:157.837463pt;}
.y142{bottom:157.837596pt;}
.y154{bottom:157.837738pt;}
.yc8{bottom:157.841196pt;}
.y4f{bottom:157.841338pt;}
.y170{bottom:157.845193pt;}
.y6a{bottom:157.845335pt;}
.y126{bottom:163.171561pt;}
.y108{bottom:163.171577pt;}
.ybb{bottom:163.171580pt;}
.y23{bottom:163.171596pt;}
.y91{bottom:173.303342pt;}
.yc7{bottom:173.303996pt;}
.y4e{bottom:173.304138pt;}
.y69{bottom:173.307339pt;}
.y16f{bottom:173.307993pt;}
.y153{bottom:173.308400pt;}
.yde{bottom:173.315742pt;}
.y141{bottom:173.315864pt;}
.y19a{bottom:177.872533pt;}
.y125{bottom:179.571561pt;}
.y107{bottom:179.571577pt;}
.yba{bottom:179.571580pt;}
.y22{bottom:179.571596pt;}
.y1bc{bottom:179.571754pt;}
.y68{bottom:188.770139pt;}
.y16e{bottom:188.770793pt;}
.y152{bottom:188.774932pt;}
.y90{bottom:188.778542pt;}
.y140{bottom:188.778664pt;}
.yc6{bottom:188.782539pt;}
.y4d{bottom:188.790269pt;}
.y199{bottom:193.206533pt;}
.y124{bottom:195.971561pt;}
.y106{bottom:195.971577pt;}
.yb9{bottom:195.971581pt;}
.y21{bottom:195.971596pt;}
.y1bb{bottom:195.971754pt;}
.y151{bottom:204.237732pt;}
.y8f{bottom:204.240526pt;}
.ydd{bottom:204.241342pt;}
.y13f{bottom:204.241464pt;}
.y67{bottom:204.245339pt;}
.y16d{bottom:204.247582pt;}
.y4c{bottom:204.253069pt;}
.y198{bottom:208.540533pt;}
.y123{bottom:212.371561pt;}
.y105{bottom:212.371577pt;}
.yb8{bottom:212.371581pt;}
.y20{bottom:212.371596pt;}
.y1ba{bottom:212.371754pt;}
.y8e{bottom:219.703326pt;}
.ydc{bottom:219.704142pt;}
.y13e{bottom:219.704264pt;}
.y150{bottom:219.707730pt;}
.y66{bottom:219.708139pt;}
.y16c{bottom:219.710382pt;}
.y4b{bottom:219.715869pt;}
.y197{bottom:223.874533pt;}
.y122{bottom:228.771561pt;}
.y104{bottom:228.771577pt;}
.yb7{bottom:228.771581pt;}
.y1f{bottom:228.771597pt;}
.y1b9{bottom:228.771754pt;}
.y65{bottom:235.170939pt;}
.y13d{bottom:235.171061pt;}
.y8d{bottom:235.178526pt;}
.y4a{bottom:235.178668pt;}
.y14f{bottom:235.182930pt;}
.y16b{bottom:235.197982pt;}
.y196{bottom:239.208533pt;}
.y121{bottom:245.171561pt;}
.y103{bottom:245.171578pt;}
.yb6{bottom:245.171581pt;}
.y1e{bottom:245.171597pt;}
.y1b8{bottom:245.171754pt;}
.ydb{bottom:250.637736pt;}
.y13c{bottom:250.637858pt;}
.y49{bottom:250.641468pt;}
.y64{bottom:250.641590pt;}
.yc5{bottom:250.645465pt;}
.y8c{bottom:250.649076pt;}
.y14e{bottom:250.649605pt;}
.y16a{bottom:250.660782pt;}
.y120{bottom:261.571561pt;}
.y102{bottom:261.571578pt;}
.yb5{bottom:261.571581pt;}
.y1d{bottom:261.571597pt;}
.y1b7{bottom:261.571755pt;}
.y63{bottom:266.104390pt;}
.yc4{bottom:266.108265pt;}
.y8b{bottom:266.111876pt;}
.y48{bottom:266.111998pt;}
.y14d{bottom:266.112405pt;}
.y169{bottom:266.123582pt;}
.y195{bottom:269.876533pt;}
.y11f{bottom:277.971561pt;}
.y101{bottom:277.971578pt;}
.yb4{bottom:277.971581pt;}
.y1c{bottom:277.971597pt;}
.y1b6{bottom:277.971755pt;}
.yc3{bottom:281.571065pt;}
.y8a{bottom:281.574676pt;}
.y47{bottom:281.574798pt;}
.y62{bottom:281.575062pt;}
.y14c{bottom:281.575205pt;}
.y168{bottom:281.586382pt;}
.y1e1{bottom:283.174945pt;}
.y194{bottom:285.210533pt;}
.y11e{bottom:294.371562pt;}
.y100{bottom:294.371578pt;}
.yda{bottom:294.371580pt;}
.yb3{bottom:294.371581pt;}
.y1b{bottom:294.371597pt;}
.y13b{bottom:294.371606pt;}
.y1b5{bottom:294.371755pt;}
.y89{bottom:297.037476pt;}
.y46{bottom:297.037598pt;}
.y61{bottom:297.037862pt;}
.y14b{bottom:297.038005pt;}
.y167{bottom:297.049181pt;}
.y1e0{bottom:298.508945pt;}
.y193{bottom:300.544533pt;}
.y11d{bottom:310.771562pt;}
.yff{bottom:310.771578pt;}
.yd9{bottom:310.771581pt;}
.yb2{bottom:310.771581pt;}
.y1a{bottom:310.771597pt;}
.y13a{bottom:310.771732pt;}
.y1b4{bottom:310.771755pt;}
.y88{bottom:312.504395pt;}
.y166{bottom:312.511981pt;}
.y60{bottom:312.512388pt;}
.y1df{bottom:313.842946pt;}
.y192{bottom:315.878533pt;}
.y11c{bottom:327.171562pt;}
.yfe{bottom:327.171578pt;}
.yd8{bottom:327.171581pt;}
.yb1{bottom:327.171582pt;}
.y19{bottom:327.171597pt;}
.y1b3{bottom:327.171755pt;}
.y165{bottom:327.974006pt;}
.y5f{bottom:327.975188pt;}
.y1de{bottom:329.176946pt;}
.y191{bottom:331.212533pt;}
.y164{bottom:343.436806pt;}
.y5e{bottom:343.437988pt;}
.y11b{bottom:343.571562pt;}
.yfd{bottom:343.571578pt;}
.yd7{bottom:343.571581pt;}
.yb0{bottom:343.571582pt;}
.y18{bottom:343.571598pt;}
.y45{bottom:343.571614pt;}
.y1b2{bottom:343.571755pt;}
.y163{bottom:358.912006pt;}
.y1dd{bottom:359.844947pt;}
.y11a{bottom:359.971562pt;}
.yfc{bottom:359.971579pt;}
.yd6{bottom:359.971581pt;}
.yaf{bottom:359.971582pt;}
.y17{bottom:359.971598pt;}
.yc2{bottom:359.971606pt;}
.y44{bottom:359.971614pt;}
.y87{bottom:359.971628pt;}
.y1b1{bottom:359.971755pt;}
.y190{bottom:361.880533pt;}
.y162{bottom:374.374806pt;}
.y1dc{bottom:375.178948pt;}
.y119{bottom:376.371562pt;}
.yfb{bottom:376.371579pt;}
.yd5{bottom:376.371581pt;}
.yae{bottom:376.371582pt;}
.y16{bottom:376.371598pt;}
.yc1{bottom:376.371606pt;}
.y1be{bottom:376.371612pt;}
.y43{bottom:376.371614pt;}
.y86{bottom:376.371628pt;}
.y1b0{bottom:376.371755pt;}
.y18f{bottom:377.214533pt;}
.y161{bottom:389.837606pt;}
.y1db{bottom:390.512948pt;}
.y18e{bottom:392.548533pt;}
.y118{bottom:392.771562pt;}
.yfa{bottom:392.771579pt;}
.yd4{bottom:392.771581pt;}
.y15{bottom:392.771598pt;}
.yad{bottom:392.771612pt;}
.y42{bottom:392.771614pt;}
.y85{bottom:392.771628pt;}
.y1af{bottom:392.771756pt;}
.y1da{bottom:405.846948pt;}
.y18d{bottom:407.882533pt;}
.y117{bottom:409.171563pt;}
.yf9{bottom:409.171579pt;}
.yd3{bottom:409.171582pt;}
.y14{bottom:409.171598pt;}
.yac{bottom:409.171612pt;}
.y41{bottom:409.171614pt;}
.y84{bottom:409.171628pt;}
.y1ae{bottom:409.171756pt;}
.y1d9{bottom:421.164230pt;}
.y18c{bottom:423.216533pt;}
.y116{bottom:425.571563pt;}
.yf8{bottom:425.571579pt;}
.y5d{bottom:425.571582pt;}
.y160{bottom:425.571589pt;}
.y13{bottom:425.571598pt;}
.yab{bottom:425.571612pt;}
.y83{bottom:425.571628pt;}
.y40{bottom:425.571719pt;}
.y1ad{bottom:425.571756pt;}
.y1d8{bottom:436.498231pt;}
.y115{bottom:441.971563pt;}
.yf7{bottom:441.971579pt;}
.y5c{bottom:441.971582pt;}
.y15f{bottom:441.971589pt;}
.y12{bottom:441.971598pt;}
.y139{bottom:441.971605pt;}
.yaa{bottom:441.971612pt;}
.y82{bottom:441.971628pt;}
.y3f{bottom:441.971719pt;}
.y1ac{bottom:441.971720pt;}
.y1d7{bottom:451.832231pt;}
.y114{bottom:458.371563pt;}
.yf6{bottom:458.371579pt;}
.y14a{bottom:458.371581pt;}
.y5b{bottom:458.371590pt;}
.y138{bottom:458.371605pt;}
.ya9{bottom:458.371612pt;}
.y81{bottom:458.371629pt;}
.y3e{bottom:458.371719pt;}
.y1ab{bottom:458.371757pt;}
.y1d6{bottom:467.166232pt;}
.y113{bottom:474.771563pt;}
.yf5{bottom:474.771579pt;}
.y149{bottom:474.771581pt;}
.y5a{bottom:474.771590pt;}
.y137{bottom:474.771605pt;}
.ya8{bottom:474.771612pt;}
.y80{bottom:474.771629pt;}
.y3d{bottom:474.771719pt;}
.y1aa{bottom:474.771757pt;}
.y1d5{bottom:482.500232pt;}
.y11{bottom:486.498252pt;}
.y112{bottom:491.171563pt;}
.yf4{bottom:491.171580pt;}
.y148{bottom:491.171582pt;}
.y15e{bottom:491.171589pt;}
.y136{bottom:491.171605pt;}
.ya7{bottom:491.171612pt;}
.y7f{bottom:491.171629pt;}
.y3c{bottom:491.171719pt;}
.y1a9{bottom:491.171757pt;}
.y1d4{bottom:497.834232pt;}
.y10{bottom:501.832253pt;}
.y111{bottom:507.571563pt;}
.yf3{bottom:507.571580pt;}
.y147{bottom:507.571582pt;}
.y15d{bottom:507.571590pt;}
.y135{bottom:507.571605pt;}
.ya6{bottom:507.571613pt;}
.y7e{bottom:507.571629pt;}
.y3b{bottom:507.571720pt;}
.y1a8{bottom:507.571737pt;}
.y1d3{bottom:513.168233pt;}
.y110{bottom:523.971563pt;}
.yf2{bottom:523.971580pt;}
.yd2{bottom:523.971581pt;}
.y15c{bottom:523.971590pt;}
.y134{bottom:523.971606pt;}
.ya5{bottom:523.971613pt;}
.y59{bottom:523.971614pt;}
.y7d{bottom:523.971629pt;}
.y3a{bottom:523.971720pt;}
.y1a7{bottom:523.971759pt;}
.y1d2{bottom:528.502233pt;}
.yf{bottom:532.500254pt;}
.y10f{bottom:540.371564pt;}
.yf1{bottom:540.371580pt;}
.yd1{bottom:540.371581pt;}
.y15b{bottom:540.371590pt;}
.y133{bottom:540.371606pt;}
.ya4{bottom:540.371613pt;}
.y58{bottom:540.371614pt;}
.y7c{bottom:540.371629pt;}
.y39{bottom:540.371720pt;}
.y1a6{bottom:540.371759pt;}
.y1d1{bottom:543.836234pt;}
.ye{bottom:547.834254pt;}
.y10e{bottom:556.771564pt;}
.yf0{bottom:556.771580pt;}
.yd0{bottom:556.771581pt;}
.y15a{bottom:556.771590pt;}
.y186{bottom:556.771600pt;}
.y132{bottom:556.771606pt;}
.ya3{bottom:556.771613pt;}
.y57{bottom:556.771614pt;}
.y7b{bottom:556.771629pt;}
.y38{bottom:556.771720pt;}
.y1a5{bottom:556.771759pt;}
.y1d0{bottom:559.170234pt;}
.yd{bottom:563.168255pt;}
.y10d{bottom:573.171564pt;}
.yef{bottom:573.171580pt;}
.ycf{bottom:573.171582pt;}
.y185{bottom:573.171600pt;}
.y131{bottom:573.171606pt;}
.ya2{bottom:573.171613pt;}
.y56{bottom:573.171614pt;}
.y7a{bottom:573.171630pt;}
.y37{bottom:573.171720pt;}
.y1a4{bottom:573.171759pt;}
.y1cf{bottom:574.504235pt;}
.yc{bottom:578.502255pt;}
.y55{bottom:589.571565pt;}
.yee{bottom:589.571580pt;}
.yce{bottom:589.571582pt;}
.y184{bottom:589.571600pt;}
.y130{bottom:589.571606pt;}
.ya1{bottom:589.571613pt;}
.y79{bottom:589.571630pt;}
.y36{bottom:589.571720pt;}
.y1a3{bottom:589.571759pt;}
.y1ce{bottom:589.838235pt;}
.yb{bottom:593.836255pt;}
.y1cd{bottom:605.172236pt;}
.y35{bottom:605.971564pt;}
.yed{bottom:605.971581pt;}
.ycd{bottom:605.971582pt;}
.y183{bottom:605.971600pt;}
.y12f{bottom:605.971606pt;}
.ya0{bottom:605.971613pt;}
.y78{bottom:605.971630pt;}
.y1a2{bottom:605.971760pt;}
.ya{bottom:609.170256pt;}
.y1cc{bottom:620.506236pt;}
.y34{bottom:622.371564pt;}
.yec{bottom:622.371581pt;}
.y182{bottom:622.371600pt;}
.y12e{bottom:622.371606pt;}
.y9f{bottom:622.371614pt;}
.y77{bottom:622.371630pt;}
.y9{bottom:624.504256pt;}
.y1cb{bottom:635.840237pt;}
.y33{bottom:638.771564pt;}
.yeb{bottom:638.771581pt;}
.y181{bottom:638.771600pt;}
.y9e{bottom:638.771614pt;}
.y76{bottom:638.771630pt;}
.y12d{bottom:638.771761pt;}
.y8{bottom:639.838257pt;}
.y1ca{bottom:651.174237pt;}
.y32{bottom:655.171565pt;}
.yea{bottom:655.171581pt;}
.y180{bottom:655.171600pt;}
.y9d{bottom:655.171614pt;}
.y75{bottom:655.171630pt;}
.y12c{bottom:655.171761pt;}
.y1c9{bottom:666.508237pt;}
.y31{bottom:671.571565pt;}
.ye9{bottom:671.571581pt;}
.y17f{bottom:671.571600pt;}
.y9c{bottom:671.571614pt;}
.y74{bottom:671.571630pt;}
.yc0{bottom:671.571760pt;}
.y1c8{bottom:681.842238pt;}
.y7{bottom:683.381104pt;}
.y30{bottom:687.971565pt;}
.ye8{bottom:687.971581pt;}
.y17e{bottom:687.971600pt;}
.y9b{bottom:687.971614pt;}
.y73{bottom:687.971630pt;}
.ybf{bottom:687.971760pt;}
.y1c7{bottom:697.176238pt;}
.y2f{bottom:704.371565pt;}
.ye7{bottom:704.371581pt;}
.y17d{bottom:704.371600pt;}
.y9a{bottom:704.371614pt;}
.y72{bottom:704.371631pt;}
.ybe{bottom:704.371761pt;}
.y1c6{bottom:712.510239pt;}
.y6{bottom:720.746435pt;}
.y2e{bottom:720.771565pt;}
.ye6{bottom:720.771581pt;}
.y17c{bottom:720.771600pt;}
.y99{bottom:720.771614pt;}
.y71{bottom:720.771631pt;}
.ybd{bottom:720.771761pt;}
.y1c5{bottom:727.844239pt;}
.y2d{bottom:737.171565pt;}
.ye5{bottom:737.171582pt;}
.y17b{bottom:737.171600pt;}
.y98{bottom:737.171614pt;}
.y70{bottom:737.171761pt;}
.y1c4{bottom:743.178240pt;}
.y5{bottom:746.069102pt;}
.y2c{bottom:753.571565pt;}
.ye4{bottom:753.571582pt;}
.y17a{bottom:753.571600pt;}
.y159{bottom:753.571615pt;}
.y6f{bottom:753.571761pt;}
.y1c3{bottom:758.512240pt;}
.y19e{bottom:758.852267pt;}
.y174{bottom:760.798667pt;}
.y2{bottom:762.125350pt;}
.y1{bottom:768.790283pt;}
.y2b{bottom:769.971565pt;}
.ye3{bottom:769.971582pt;}
.y179{bottom:769.971600pt;}
.y6e{bottom:769.971761pt;}
.y4{bottom:771.391770pt;}
.y1c2{bottom:773.846241pt;}
.y19d{bottom:774.186267pt;}
.y2a{bottom:786.371566pt;}
.y178{bottom:786.371600pt;}
.y19c{bottom:789.520267pt;}
.y3{bottom:796.714437pt;}
.y29{bottom:802.771566pt;}
.y177{bottom:802.771600pt;}
.y1c1{bottom:804.514242pt;}
.y19b{bottom:804.854267pt;}
.y173{bottom:849.726533pt;}
.y28{bottom:849.726562pt;}
.h2{height:13.596267pt;}
.h9{height:28.321596pt;}
.h1f{height:40.482667pt;}
.h1e{height:40.981333pt;}
.h6{height:41.344000pt;}
.h24{height:41.410875pt;}
.h25{height:41.842667pt;}
.h5{height:42.840000pt;}
.h12{height:44.292801pt;}
.ha{height:44.838401pt;}
.h1c{height:44.841503pt;}
.h11{height:44.841584pt;}
.h16{height:44.841625pt;}
.h13{height:44.841666pt;}
.hb{height:45.216000pt;}
.h15{height:48.639969pt;}
.h7{height:48.640000pt;}
.hd{height:48.640003pt;}
.h19{height:48.640066pt;}
.h17{height:48.640071pt;}
.h21{height:48.640082pt;}
.h10{height:48.640131pt;}
.h22{height:48.640143pt;}
.h14{height:48.640197pt;}
.he{height:48.640200pt;}
.h1b{height:48.640263pt;}
.hf{height:48.640425pt;}
.h1a{height:48.640541pt;}
.h8{height:48.640546pt;}
.h18{height:48.640557pt;}
.hc{height:48.640625pt;}
.h23{height:49.226667pt;}
.h20{height:50.400000pt;}
.h1d{height:52.556000pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:23.272533pt;}
.w3{width:23.273333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.899467pt;}
.xb{left:4.627600pt;}
.xa{left:20.808400pt;}
.x2{left:22.707866pt;}
.x1{left:25.436000pt;}
.x3{left:64.251999pt;}
.x5{left:71.811066pt;}
.x4{left:83.145333pt;}
.x8{left:90.699725pt;}
.x9{left:202.122660pt;}
.x10{left:315.212667pt;}
.xd{left:320.600667pt;}
.xf{left:323.244133pt;}
.xe{left:576.965333pt;}
.x7{left:578.865332pt;}
.x6{left:581.593465pt;}
}




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