
    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_f876d76c766292a324e5859d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_4f03a256b097d9d38da0a504.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_123edc1af838479894f018d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_fcb39c40ce37fbf590f975ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_455e4dbf30087cf8bb88d07f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.903809;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_eb67d76454d7fab731c8b1e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:23.354520px;}
.v1{vertical-align:30.281160px;}
.ls5d{letter-spacing:-2.848320px;}
.ls4b{letter-spacing:-2.583360px;}
.ls15{letter-spacing:-2.538000px;}
.ls3f{letter-spacing:-2.376000px;}
.ls1d{letter-spacing:-2.322000px;}
.ls54{letter-spacing:-2.268000px;}
.ls3b{letter-spacing:-2.185920px;}
.ls57{letter-spacing:-2.053440px;}
.ls59{letter-spacing:-1.920960px;}
.ls55{letter-spacing:-1.912320px;}
.ls8{letter-spacing:-1.881360px;}
.ls3e{letter-spacing:-1.854720px;}
.ls4d{letter-spacing:-1.782000px;}
.ls5{letter-spacing:-1.736640px;}
.ls1b{letter-spacing:-1.728000px;}
.ls49{letter-spacing:-1.722240px;}
.ls13{letter-spacing:-1.674000px;}
.ls2a{letter-spacing:-1.673280px;}
.lsf{letter-spacing:-1.620000px;}
.ls4f{letter-spacing:-1.589760px;}
.lsd{letter-spacing:-1.566000px;}
.lsb{letter-spacing:-1.532160px;}
.ls20{letter-spacing:-1.512000px;}
.ls29{letter-spacing:-1.494000px;}
.lse{letter-spacing:-1.458000px;}
.ls2f{letter-spacing:-1.457280px;}
.ls22{letter-spacing:-1.404000px;}
.ls23{letter-spacing:-1.350000px;}
.lsc{letter-spacing:-1.324800px;}
.ls53{letter-spacing:-1.314720px;}
.ls14{letter-spacing:-1.296000px;}
.ls2b{letter-spacing:-1.254960px;}
.ls6{letter-spacing:-1.254240px;}
.ls10{letter-spacing:-1.242000px;}
.ls44{letter-spacing:-1.192320px;}
.ls2c{letter-spacing:-1.157760px;}
.ls1c{letter-spacing:-1.134000px;}
.ls30{letter-spacing:-1.126080px;}
.ls11{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-1.075680px;}
.ls7{letter-spacing:-1.061280px;}
.ls58{letter-spacing:-1.059840px;}
.lsa{letter-spacing:-1.053360px;}
.ls1f{letter-spacing:-1.026000px;}
.ls1e{letter-spacing:-0.972000px;}
.ls36{letter-spacing:-0.918000px;}
.ls9{letter-spacing:-0.916560px;}
.ls24{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.810000px;}
.ls2e{letter-spacing:-0.756000px;}
.ls42{letter-spacing:-0.728640px;}
.ls2d{letter-spacing:-0.648000px;}
.ls52{letter-spacing:-0.597600px;}
.ls5c{letter-spacing:-0.596160px;}
.ls12{letter-spacing:-0.594000px;}
.ls37{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.132480px;}
.ls34{letter-spacing:0.162000px;}
.ls41{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.378000px;}
.ls4a{letter-spacing:0.688896px;}
.ls38{letter-spacing:0.728640px;}
.ls3c{letter-spacing:1.457280px;}
.ls3a{letter-spacing:2.185920px;}
.ls4e{letter-spacing:2.212416px;}
.ls33{letter-spacing:2.848320px;}
.ls3d{letter-spacing:3.078000px;}
.ls48{letter-spacing:3.576960px;}
.ls4c{letter-spacing:3.780000px;}
.ls40{letter-spacing:4.305600px;}
.ls32{letter-spacing:5.034240px;}
.ls51{letter-spacing:5.762880px;}
.ls46{letter-spacing:5.769504px;}
.ls43{letter-spacing:6.266304px;}
.ls39{letter-spacing:7.220160px;}
.ls1{letter-spacing:7.236000px;}
.ls50{letter-spacing:7.942176px;}
.ls5b{letter-spacing:7.948800px;}
.ls45{letter-spacing:9.293472px;}
.ls28{letter-spacing:9.339840px;}
.ls27{letter-spacing:9.478944px;}
.ls47{letter-spacing:13.711680px;}
.ls5a{letter-spacing:14.374080px;}
.ls56{letter-spacing:23.780160px;}
.ls3{letter-spacing:53.460000px;}
.ls31{letter-spacing:1000.262880px;}
.ls0{letter-spacing:1082.360880px;}
.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;}
}
.ws55{word-spacing:-66.240000px;}
.ws2{word-spacing:-21.641760px;}
.ws3{word-spacing:-20.588400px;}
.ws5{word-spacing:-16.560000px;}
.wsed{word-spacing:-15.963840px;}
.wsef{word-spacing:-15.831360px;}
.wse7{word-spacing:-15.500160px;}
.ws57{word-spacing:-15.433920px;}
.ws56{word-spacing:-15.235200px;}
.ws54{word-spacing:-15.102720px;}
.wsee{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.940000px;}
.wsd2{word-spacing:-14.837760px;}
.ws9c{word-spacing:-14.705280px;}
.wse9{word-spacing:-14.639040px;}
.ws9b{word-spacing:-14.374080px;}
.ws4{word-spacing:-14.319360px;}
.wse8{word-spacing:-13.976640px;}
.wsf{word-spacing:-13.864320px;}
.ws18{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.906000px;}
.wsd9{word-spacing:-12.582000px;}
.ws9{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.204000px;}
.ws9d{word-spacing:-12.096000px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:-12.042000px;}
.ws52{word-spacing:-12.011760px;}
.wsc{word-spacing:-11.934000px;}
.wsa{word-spacing:-11.880000px;}
.wsb{word-spacing:-11.826000px;}
.wse1{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.998720px;}
.wse{word-spacing:-10.962000px;}
.ws16{word-spacing:-10.854000px;}
.ws53{word-spacing:-10.746000px;}
.ws15{word-spacing:-10.638000px;}
.ws11{word-spacing:-10.584000px;}
.ws14{word-spacing:-10.530000px;}
.ws13{word-spacing:-10.476000px;}
.ws7a{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.882000px;}
.ws17{word-spacing:-9.000000px;}
.wsc3{word-spacing:-4.305600px;}
.ws9e{word-spacing:-3.709440px;}
.ws9f{word-spacing:-3.576960px;}
.ws20{word-spacing:-3.543120px;}
.ws28{word-spacing:-3.078000px;}
.ws85{word-spacing:-2.980800px;}
.wsb0{word-spacing:-2.862000px;}
.ws75{word-spacing:-2.848320px;}
.wsaf{word-spacing:-2.538000px;}
.ws50{word-spacing:-2.484000px;}
.wsa9{word-spacing:-2.322000px;}
.ws69{word-spacing:-2.252160px;}
.wsdf{word-spacing:-2.160000px;}
.ws73{word-spacing:-2.119680px;}
.wsde{word-spacing:-2.106000px;}
.ws42{word-spacing:-2.052000px;}
.ws41{word-spacing:-1.836000px;}
.wsae{word-spacing:-1.782000px;}
.wsaa{word-spacing:-1.620000px;}
.ws66{word-spacing:-1.523520px;}
.wsdc{word-spacing:-1.404000px;}
.ws65{word-spacing:-1.391040px;}
.ws4a{word-spacing:-1.296000px;}
.ws4b{word-spacing:-1.242000px;}
.ws3f{word-spacing:-1.134000px;}
.wsac{word-spacing:-1.080000px;}
.wsf4{word-spacing:-0.993600px;}
.ws4f{word-spacing:-0.918000px;}
.ws6b{word-spacing:-0.861120px;}
.ws74{word-spacing:-0.728640px;}
.wsa8{word-spacing:-0.702000px;}
.wse2{word-spacing:-0.657360px;}
.ws45{word-spacing:-0.594000px;}
.ws34{word-spacing:-0.486000px;}
.ws36{word-spacing:-0.432000px;}
.ws1f{word-spacing:-0.383040px;}
.ws5f{word-spacing:-0.378000px;}
.ws89{word-spacing:-0.331200px;}
.ws4e{word-spacing:-0.324000px;}
.ws3c{word-spacing:-0.270000px;}
.wscd{word-spacing:-0.264960px;}
.wse6{word-spacing:-0.179280px;}
.ws2e{word-spacing:-0.162000px;}
.ws22{word-spacing:-0.132480px;}
.ws5a{word-spacing:-0.096480px;}
.ws19{word-spacing:0.000000px;}
.wsb2{word-spacing:0.054000px;}
.wse3{word-spacing:0.059760px;}
.wse0{word-spacing:0.132480px;}
.ws4d{word-spacing:0.162000px;}
.ws7b{word-spacing:0.239040px;}
.ws46{word-spacing:0.270000px;}
.ws21{word-spacing:0.287280px;}
.ws3b{word-spacing:0.324000px;}
.ws93{word-spacing:0.378000px;}
.wsc2{word-spacing:0.397440px;}
.ws1a{word-spacing:0.482400px;}
.wse4{word-spacing:0.537840px;}
.ws8b{word-spacing:0.540000px;}
.wsb8{word-spacing:0.594000px;}
.ws70{word-spacing:0.596160px;}
.wsc7{word-spacing:0.702000px;}
.ws59{word-spacing:0.717120px;}
.ws8c{word-spacing:0.728640px;}
.ws39{word-spacing:0.756000px;}
.ws1d{word-spacing:0.916560px;}
.wsc6{word-spacing:0.918000px;}
.ws3a{word-spacing:0.972000px;}
.ws4c{word-spacing:1.026000px;}
.ws1e{word-spacing:1.053360px;}
.ws1b{word-spacing:1.061280px;}
.ws2a{word-spacing:1.080000px;}
.ws8e{word-spacing:1.126080px;}
.ws58{word-spacing:1.135440px;}
.ws25{word-spacing:1.242000px;}
.ws29{word-spacing:1.296000px;}
.ws62{word-spacing:1.324800px;}
.ws49{word-spacing:1.404000px;}
.ws78{word-spacing:1.457280px;}
.wsc8{word-spacing:1.458000px;}
.ws40{word-spacing:1.512000px;}
.ws23{word-spacing:1.566000px;}
.wsec{word-spacing:1.589760px;}
.wsa2{word-spacing:1.620000px;}
.ws38{word-spacing:1.674000px;}
.ws31{word-spacing:1.728000px;}
.ws47{word-spacing:1.782000px;}
.wscc{word-spacing:1.854720px;}
.ws1c{word-spacing:1.881360px;}
.wse5{word-spacing:1.912320px;}
.wsa7{word-spacing:1.998000px;}
.ws64{word-spacing:2.053440px;}
.ws63{word-spacing:2.185920px;}
.wsa5{word-spacing:2.376000px;}
.ws35{word-spacing:2.430000px;}
.ws48{word-spacing:2.484000px;}
.wsb1{word-spacing:2.538000px;}
.wsd4{word-spacing:2.583360px;}
.wsa3{word-spacing:2.700000px;}
.ws98{word-spacing:2.782080px;}
.wsf0{word-spacing:2.848320px;}
.ws88{word-spacing:2.914560px;}
.wscf{word-spacing:3.402000px;}
.ws7c{word-spacing:3.510720px;}
.ws5c{word-spacing:3.564000px;}
.ws7d{word-spacing:3.643200px;}
.ws33{word-spacing:3.726000px;}
.ws32{word-spacing:3.888000px;}
.ws2d{word-spacing:3.942000px;}
.wsa6{word-spacing:4.158000px;}
.ws91{word-spacing:4.239360px;}
.ws68{word-spacing:4.371840px;}
.ws5b{word-spacing:4.482000px;}
.ws2b{word-spacing:4.698000px;}
.wsf3{word-spacing:4.703040px;}
.wsa4{word-spacing:4.860000px;}
.ws86{word-spacing:4.901760px;}
.ws2c{word-spacing:5.022000px;}
.ws8f{word-spacing:5.034240px;}
.wsd7{word-spacing:5.400000px;}
.wsd1{word-spacing:5.562000px;}
.wsb3{word-spacing:5.630400px;}
.ws97{word-spacing:5.762880px;}
.ws37{word-spacing:5.994000px;}
.wsd8{word-spacing:6.102000px;}
.wsb7{word-spacing:6.318000px;}
.ws60{word-spacing:6.359040px;}
.ws6f{word-spacing:6.491520px;}
.wsf1{word-spacing:6.888960px;}
.wsdb{word-spacing:7.020000px;}
.ws61{word-spacing:7.087680px;}
.wsa0{word-spacing:7.220160px;}
.ws44{word-spacing:7.452000px;}
.ws3d{word-spacing:7.506000px;}
.ws3e{word-spacing:7.560000px;}
.wsbe{word-spacing:7.617600px;}
.ws8d{word-spacing:7.816320px;}
.wsa1{word-spacing:7.948800px;}
.wsea{word-spacing:8.081280px;}
.ws90{word-spacing:8.544960px;}
.wsb9{word-spacing:8.677440px;}
.ws26{word-spacing:9.180000px;}
.ws83{word-spacing:9.273600px;}
.wsba{word-spacing:9.406080px;}
.ws24{word-spacing:9.720000px;}
.ws6e{word-spacing:9.936000px;}
.ws87{word-spacing:10.068480px;}
.ws30{word-spacing:10.314000px;}
.ws27{word-spacing:10.422000px;}
.ws51{word-spacing:10.476000px;}
.ws71{word-spacing:10.664640px;}
.ws72{word-spacing:10.797120px;}
.wsc4{word-spacing:11.340000px;}
.ws79{word-spacing:11.393280px;}
.wsbd{word-spacing:11.525760px;}
.wsc5{word-spacing:11.880000px;}
.wsda{word-spacing:12.121920px;}
.ws6a{word-spacing:12.254400px;}
.ws5d{word-spacing:12.528000px;}
.wsc1{word-spacing:12.718080px;}
.ws7e{word-spacing:12.850560px;}
.ws7f{word-spacing:12.983040px;}
.ws43{word-spacing:13.230000px;}
.ws5e{word-spacing:13.284000px;}
.ws99{word-spacing:13.579200px;}
.ws67{word-spacing:13.711680px;}
.ws76{word-spacing:14.307840px;}
.ws77{word-spacing:14.440320px;}
.wsad{word-spacing:15.036480px;}
.ws92{word-spacing:15.168960px;}
.wsf2{word-spacing:15.500160px;}
.ws95{word-spacing:15.698880px;}
.ws96{word-spacing:15.831360px;}
.ws94{word-spacing:16.427520px;}
.wsce{word-spacing:16.560000px;}
.ws80{word-spacing:17.156160px;}
.wsc0{word-spacing:17.288640px;}
.ws2f{word-spacing:17.550000px;}
.ws84{word-spacing:17.884800px;}
.wsb4{word-spacing:18.017280px;}
.wsab{word-spacing:18.360000px;}
.wsd3{word-spacing:18.745920px;}
.ws6c{word-spacing:19.342080px;}
.ws6d{word-spacing:19.474560px;}
.wscb{word-spacing:20.070720px;}
.wsbf{word-spacing:20.203200px;}
.wsd6{word-spacing:20.931840px;}
.ws9a{word-spacing:22.190400px;}
.ws82{word-spacing:22.919040px;}
.wsd5{word-spacing:23.051520px;}
.wsc9{word-spacing:24.376320px;}
.wsca{word-spacing:24.508800px;}
.wseb{word-spacing:25.237440px;}
.wsb5{word-spacing:25.833600px;}
.wsb6{word-spacing:25.966080px;}
.wsbc{word-spacing:26.628480px;}
.wsd0{word-spacing:27.953280px;}
.wsbb{word-spacing:28.085760px;}
.ws81{word-spacing:28.814400px;}
.wsdd{word-spacing:30.271680px;}
.ws8a{word-spacing:41.664960px;}
._c{margin-left:-4.838544px;}
._4{margin-left:-3.610368px;}
._1{margin-left:-1.794528px;}
._0{width:1.090224px;}
._2{width:2.180520px;}
._a{width:3.512304px;}
._b{width:5.014800px;}
._6{width:6.461856px;}
._3{width:8.612136px;}
._e{width:10.941120px;}
._10{width:14.476176px;}
._5{width:18.028080px;}
._d{width:24.514272px;}
._11{width:45.457632px;}
._f{width:53.701776px;}
._7{width:242.082000px;}
._9{width:516.386160px;}
._8{width:860.947776px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y255{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y266{bottom:4.860000px;}
.y25d{bottom:9.539850px;}
.y260{bottom:9.540000px;}
.y3{bottom:45.363060px;}
.y252{bottom:46.620000px;}
.y2{bottom:59.220000px;}
.y102{bottom:96.799500px;}
.ye7{bottom:96.817500px;}
.y1a5{bottom:96.822000px;}
.y1db{bottom:96.826500px;}
.y2e{bottom:96.831000px;}
.y83{bottom:96.835500px;}
.y123{bottom:99.254010px;}
.y8d{bottom:101.340000px;}
.y59{bottom:102.200400px;}
.yb5{bottom:107.302170px;}
.y2bb{bottom:108.800640px;}
.y1a8{bottom:108.875370px;}
.y2a7{bottom:108.879690px;}
.y134{bottom:108.891930px;}
.yd3{bottom:112.275000px;}
.y101{bottom:112.284000px;}
.ye6{bottom:112.302000px;}
.y1a4{bottom:112.306500px;}
.y1da{bottom:112.311000px;}
.y2d{bottom:112.315500px;}
.y8c{bottom:112.320000px;}
.y24d{bottom:115.406640px;}
.y82{bottom:116.820000px;}
.y122{bottom:118.148970px;}
.y11d{bottom:120.169290px;}
.y58{bottom:121.277520px;}
.yb4{bottom:126.379290px;}
.y2ba{bottom:127.695600px;}
.yd2{bottom:127.759500px;}
.y100{bottom:127.768500px;}
.y1a7{bottom:127.770330px;}
.y2a6{bottom:127.774650px;}
.ye5{bottom:127.786500px;}
.y133{bottom:127.786890px;}
.y1a3{bottom:127.791000px;}
.y1d9{bottom:127.795500px;}
.y2c{bottom:127.800000px;}
.y27d{bottom:131.580000px;}
.y1c1{bottom:132.300000px;}
.y227{bottom:132.866640px;}
.y24c{bottom:134.301600px;}
.y121{bottom:137.226090px;}
.y11c{bottom:139.064250px;}
.yad{bottom:139.883760px;}
.y57{bottom:140.172480px;}
.y205{bottom:143.315280px;}
.yd1{bottom:143.419500px;}
.yff{bottom:143.428500px;}
.y1c0{bottom:143.437500px;}
.ye4{bottom:143.446500px;}
.y1a2{bottom:143.451000px;}
.y1d8{bottom:143.455500px;}
.y231{bottom:143.460000px;}
.y81{bottom:146.523600px;}
.y2b9{bottom:146.590560px;}
.y16e{bottom:146.665290px;}
.y2a5{bottom:146.669610px;}
.y132{bottom:146.681850px;}
.y2b{bottom:147.960000px;}
.y1c9{bottom:148.884330px;}
.yb3{bottom:150.325050px;}
.y27c{bottom:150.474420px;}
.y226{bottom:151.943760px;}
.y24b{bottom:153.196560px;}
.y120{bottom:156.121050px;}
.y11b{bottom:158.141370px;}
.yd0{bottom:158.904000px;}
.yfe{bottom:158.913000px;}
.y1bf{bottom:158.922000px;}
.ye3{bottom:158.931000px;}
.y1a1{bottom:158.935500px;}
.y2a{bottom:158.940000px;}
.yac{bottom:158.960880px;}
.y56{bottom:159.067440px;}
.y204{bottom:162.210240px;}
.y1d7{bottom:163.440000px;}
.y24e{bottom:165.592650px;}
.y80{bottom:165.600720px;}
.y2b8{bottom:165.667680px;}
.y16d{bottom:165.742410px;}
.y2a4{bottom:165.746730px;}
.y131{bottom:165.758970px;}
.y27b{bottom:167.760000px;}
.y1c8{bottom:167.961450px;}
.y98{bottom:167.978010px;}
.y225{bottom:170.838720px;}
.y214{bottom:171.549360px;}
.y24a{bottom:172.273680px;}
.ycf{bottom:174.388500px;}
.yfd{bottom:174.397500px;}
.y1be{bottom:174.406500px;}
.ye2{bottom:174.415500px;}
.y1d6{bottom:174.420000px;}
.y11f{bottom:175.198170px;}
.y11a{bottom:177.036330px;}
.yab{bottom:177.855840px;}
.y55{bottom:178.144560px;}
.y187{bottom:178.294890px;}
.y1a0{bottom:178.920000px;}
.y203{bottom:181.105200px;}
.y27a{bottom:182.160000px;}
.y1a6{bottom:184.289610px;}
.y7f{bottom:184.495680px;}
.y2b7{bottom:184.562640px;}
.y16c{bottom:184.637370px;}
.y2a3{bottom:184.641690px;}
.y130{bottom:184.653930px;}
.y1c7{bottom:186.856410px;}
.y97{bottom:187.055130px;}
.y29{bottom:188.446500px;}
.yce{bottom:189.873000px;}
.yfc{bottom:189.882000px;}
.y1bd{bottom:189.891000px;}
.ye1{bottom:189.900000px;}
.y224{bottom:189.915840px;}
.y213{bottom:190.444320px;}
.y249{bottom:191.168640px;}
.y147{bottom:194.400000px;}
.y119{bottom:195.931290px;}
.yaa{bottom:196.750800px;}
.y54{bottom:197.039520px;}
.y186{bottom:197.372010px;}
.y11e{bottom:199.143930px;}
.y202{bottom:200.182320px;}
.y7e{bottom:203.572800px;}
.y230{bottom:203.618880px;}
.y2b6{bottom:203.639760px;}
.y16b{bottom:203.714490px;}
.y2a2{bottom:203.718810px;}
.y12f{bottom:203.731050px;}
.y279{bottom:204.660000px;}
.y28{bottom:205.011000px;}
.ycd{bottom:205.533000px;}
.yfb{bottom:205.542000px;}
.y20f{bottom:205.546500px;}
.y1bc{bottom:205.551000px;}
.y146{bottom:205.560000px;}
.y96{bottom:205.950090px;}
.ye0{bottom:210.060000px;}
.y248{bottom:210.245760px;}
.y1c6{bottom:210.802170px;}
.y19f{bottom:211.155840px;}
.y223{bottom:213.861600px;}
.y212{bottom:214.390080px;}
.y118{bottom:215.008410px;}
.ya9{bottom:215.827920px;}
.y53{bottom:216.116640px;}
.y185{bottom:216.266970px;}
.y201{bottom:219.077280px;}
.ycc{bottom:221.017500px;}
.yfa{bottom:221.026500px;}
.y20e{bottom:221.031000px;}
.y1bb{bottom:221.035500px;}
.ydf{bottom:221.040000px;}
.y27{bottom:221.575500px;}
.y7d{bottom:222.160320px;}
.y22f{bottom:222.513840px;}
.y1fb{bottom:222.521760px;}
.y2b5{bottom:222.534720px;}
.y145{bottom:222.550560px;}
.y1d5{bottom:222.584400px;}
.y16a{bottom:222.609450px;}
.y2a1{bottom:222.613770px;}
.y12e{bottom:222.626010px;}
.y95{bottom:225.027210px;}
.y278{bottom:227.160000px;}
.y247{bottom:229.140720px;}
.y19e{bottom:230.232960px;}
.y117{bottom:233.903370px;}
.ya8{bottom:234.722880px;}
.y52{bottom:235.011600px;}
.y184{bottom:235.161930px;}
.ycb{bottom:236.502000px;}
.yf9{bottom:236.511000px;}
.y20d{bottom:236.515500px;}
.y26{bottom:237.951000px;}
.y200{bottom:238.154400px;}
.y1ba{bottom:241.020000px;}
.y22e{bottom:241.408800px;}
.y1fa{bottom:241.416720px;}
.y7c{bottom:241.419600px;}
.y2b4{bottom:241.429680px;}
.y144{bottom:241.445520px;}
.y1d4{bottom:241.479360px;}
.y169{bottom:241.504410px;}
.y2a0{bottom:241.508730px;}
.y12d{bottom:241.520970px;}
.y94{bottom:243.922170px;}
.yde{bottom:246.456000px;}
.y246{bottom:248.035680px;}
.y19d{bottom:249.127920px;}
.y277{bottom:249.660000px;}
.yca{bottom:251.986500px;}
.yf8{bottom:251.995500px;}
.y116{bottom:252.980490px;}
.ya7{bottom:253.841610px;}
.y51{bottom:254.088720px;}
.y183{bottom:254.239050px;}
.y25{bottom:254.515500px;}
.y1b9{bottom:256.500000px;}
.y1ff{bottom:257.049360px;}
.y22d{bottom:260.485920px;}
.y1f9{bottom:260.493840px;}
.y7b{bottom:260.496720px;}
.y2b3{bottom:260.506800px;}
.y143{bottom:260.522640px;}
.y1d3{bottom:260.556480px;}
.y168{bottom:260.581530px;}
.y29f{bottom:260.585850px;}
.y12c{bottom:260.598090px;}
.y93{bottom:262.817130px;}
.ydd{bottom:265.350960px;}
.y245{bottom:267.112800px;}
.yc9{bottom:267.471000px;}
.y1b8{bottom:267.480000px;}
.y19c{bottom:268.205040px;}
.y24{bottom:271.080000px;}
.y115{bottom:271.875450px;}
.yf7{bottom:271.980000px;}
.y276{bottom:272.160000px;}
.ya6{bottom:272.736570px;}
.y50{bottom:272.983680px;}
.y182{bottom:273.134010px;}
.y1fe{bottom:275.944320px;}
.y22c{bottom:279.380880px;}
.y1f8{bottom:279.388800px;}
.y7a{bottom:279.391680px;}
.y2b2{bottom:279.401760px;}
.y142{bottom:279.417600px;}
.y1d2{bottom:279.451440px;}
.y167{bottom:279.476490px;}
.y29e{bottom:279.480810px;}
.y12b{bottom:279.493050px;}
.y92{bottom:281.894250px;}
.yc8{bottom:283.131000px;}
.ydc{bottom:284.428080px;}
.y244{bottom:285.719610px;}
.y19b{bottom:287.176890px;}
.y23{bottom:287.455500px;}
.yf6{bottom:287.640000px;}
.y114{bottom:290.770410px;}
.ya5{bottom:291.631530px;}
.y4f{bottom:291.878640px;}
.y181{bottom:292.211130px;}
.y275{bottom:294.660000px;}
.y1fd{bottom:295.021440px;}
.y20c{bottom:298.445040px;}
.y1b7{bottom:298.452960px;}
.y22b{bottom:298.458000px;}
.y1f7{bottom:298.465920px;}
.y79{bottom:298.468800px;}
.y2b1{bottom:298.478880px;}
.y141{bottom:298.494720px;}
.y1d1{bottom:298.528560px;}
.y166{bottom:298.553610px;}
.y29d{bottom:298.557930px;}
.y12a{bottom:298.570170px;}
.yf5{bottom:298.611000px;}
.yc7{bottom:298.615500px;}
.y91{bottom:300.789210px;}
.ydb{bottom:303.323040px;}
.y22{bottom:304.020000px;}
.y243{bottom:305.161050px;}
.y19a{bottom:306.071850px;}
.y113{bottom:309.847530px;}
.ya4{bottom:310.708650px;}
.y4e{bottom:310.955760px;}
.y180{bottom:311.106090px;}
.yf4{bottom:314.095500px;}
.y274{bottom:317.160000px;}
.y1b6{bottom:317.347920px;}
.y22a{bottom:317.352960px;}
.y1f6{bottom:317.360880px;}
.y78{bottom:317.363760px;}
.y20b{bottom:317.368800px;}
.y2b0{bottom:317.373840px;}
.y140{bottom:317.389680px;}
.y1d0{bottom:317.423520px;}
.y165{bottom:317.448570px;}
.y29c{bottom:317.452890px;}
.y129{bottom:317.465130px;}
.yc6{bottom:318.600000px;}
.y1fc{bottom:318.967200px;}
.y90{bottom:319.866330px;}
.y21{bottom:320.395500px;}
.yda{bottom:322.218000px;}
.y242{bottom:324.056010px;}
.y199{bottom:325.148970px;}
.y112{bottom:328.742490px;}
.ya3{bottom:329.603610px;}
.y4d{bottom:329.850720px;}
.y17f{bottom:330.001050px;}
.yc5{bottom:334.080000px;}
.y1b5{bottom:336.425040px;}
.y229{bottom:336.430080px;}
.y1f5{bottom:336.438000px;}
.y77{bottom:336.440880px;}
.y20a{bottom:336.445920px;}
.y2af{bottom:336.450960px;}
.y13f{bottom:336.466800px;}
.y1cf{bottom:336.500640px;}
.y164{bottom:336.525690px;}
.y29b{bottom:336.530010px;}
.y128{bottom:336.542250px;}
.y8f{bottom:338.761290px;}
.y273{bottom:339.660000px;}
.y241{bottom:342.950970px;}
.y198{bottom:344.043930px;}
.yc4{bottom:345.240000px;}
.y20{bottom:345.775500px;}
.yd9{bottom:346.163760px;}
.y111{bottom:347.819610px;}
.ya2{bottom:348.680730px;}
.y4c{bottom:348.927840px;}
.y17e{bottom:349.078170px;}
.y228{bottom:355.325040px;}
.y1f4{bottom:355.332960px;}
.y76{bottom:355.335840px;}
.y1b4{bottom:355.340880px;}
.y2ae{bottom:355.345920px;}
.y13e{bottom:355.361760px;}
.y1ce{bottom:355.395600px;}
.y163{bottom:355.420650px;}
.y29a{bottom:355.424970px;}
.y127{bottom:355.437210px;}
.y240{bottom:362.028090px;}
.y272{bottom:362.160000px;}
.y8e{bottom:362.707050px;}
.y197{bottom:363.121050px;}
.y110{bottom:366.714570px;}
.ya1{bottom:367.575690px;}
.y4b{bottom:367.822800px;}
.y17d{bottom:367.973130px;}
.y1f{bottom:371.331000px;}
.yb2{bottom:372.626490px;}
.y1f3{bottom:374.227920px;}
.y75{bottom:374.230800px;}
.yc3{bottom:374.235840px;}
.y2ad{bottom:374.240880px;}
.y13d{bottom:374.256720px;}
.y1cd{bottom:374.290560px;}
.y162{bottom:374.315610px;}
.y299{bottom:374.319930px;}
.y126{bottom:374.332170px;}
.y23f{bottom:380.923050px;}
.y196{bottom:382.016010px;}
.y271{bottom:384.660000px;}
.y10f{bottom:385.791690px;}
.ya0{bottom:386.470650px;}
.y4a{bottom:386.717760px;}
.y17c{bottom:387.050250px;}
.y1e{bottom:387.895500px;}
.yb1{bottom:391.521450px;}
.yf3{bottom:393.305040px;}
.y74{bottom:393.307920px;}
.yc2{bottom:393.312960px;}
.y2ac{bottom:393.318000px;}
.y13c{bottom:393.333840px;}
.y1cc{bottom:393.367680px;}
.y161{bottom:393.392730px;}
.y298{bottom:393.397050px;}
.y125{bottom:393.409290px;}
.y23e{bottom:400.000170px;}
.y195{bottom:401.093130px;}
.y1d{bottom:404.271000px;}
.y10e{bottom:404.686650px;}
.y9f{bottom:405.547770px;}
.y49{bottom:405.794880px;}
.y17b{bottom:405.945210px;}
.y270{bottom:407.160000px;}
.yb0{bottom:410.416410px;}
.y73{bottom:412.202880px;}
.yc1{bottom:412.207920px;}
.y2ab{bottom:412.212960px;}
.y1f2{bottom:412.216560px;}
.y13b{bottom:412.228800px;}
.y8b{bottom:412.233840px;}
.yf2{bottom:412.254720px;}
.y1cb{bottom:412.262640px;}
.y160{bottom:412.287690px;}
.y297{bottom:412.292010px;}
.y124{bottom:412.304250px;}
.y23d{bottom:418.895130px;}
.y194{bottom:419.988090px;}
.y1c{bottom:420.835500px;}
.y10d{bottom:423.581610px;}
.y9e{bottom:424.442730px;}
.y48{bottom:424.689840px;}
.y17a{bottom:424.840170px;}
.yaf{bottom:429.493530px;}
.y26f{bottom:429.660000px;}
.yc0{bottom:431.285040px;}
.y2aa{bottom:431.290080px;}
.y1f1{bottom:431.293680px;}
.y13a{bottom:431.305920px;}
.y8a{bottom:431.310960px;}
.yf1{bottom:431.331840px;}
.y1ca{bottom:431.339760px;}
.y15f{bottom:431.364810px;}
.y296{bottom:431.369130px;}
.y72{bottom:431.381370px;}
.y1b{bottom:437.400000px;}
.y23c{bottom:437.972250px;}
.y193{bottom:438.883050px;}
.y1c5{bottom:440.654970px;}
.y10c{bottom:442.658730px;}
.y9d{bottom:443.519850px;}
.y47{bottom:443.766960px;}
.y179{bottom:443.917290px;}
.y2a9{bottom:450.185040px;}
.y211{bottom:450.187920px;}
.y1f0{bottom:450.188640px;}
.y209{bottom:450.195840px;}
.y139{bottom:450.200880px;}
.y89{bottom:450.205920px;}
.ybf{bottom:450.221760px;}
.yf0{bottom:450.226800px;}
.y1b3{bottom:450.234720px;}
.y15e{bottom:450.259770px;}
.y295{bottom:450.264090px;}
.y71{bottom:450.276330px;}
.y26e{bottom:452.160000px;}
.yae{bottom:453.439290px;}
.y1a{bottom:453.775500px;}
.y23b{bottom:456.867210px;}
.y192{bottom:457.960170px;}
.y1c4{bottom:459.732090px;}
.y10b{bottom:461.553690px;}
.y9c{bottom:462.414810px;}
.y46{bottom:462.661920px;}
.y178{bottom:462.812250px;}
.y2a8{bottom:469.080000px;}
.y210{bottom:469.082880px;}
.y1ef{bottom:469.083600px;}
.y208{bottom:469.090800px;}
.y138{bottom:469.095840px;}
.y88{bottom:469.100880px;}
.ybe{bottom:469.116720px;}
.yef{bottom:469.121760px;}
.y1b2{bottom:469.129680px;}
.y15d{bottom:469.154730px;}
.y294{bottom:469.159050px;}
.y70{bottom:469.171290px;}
.y19{bottom:470.340000px;}
.y26d{bottom:474.660000px;}
.y23a{bottom:475.762170px;}
.y191{bottom:476.855130px;}
.y1c3{bottom:478.627050px;}
.y10a{bottom:480.630810px;}
.y9b{bottom:481.491930px;}
.y45{bottom:481.556880px;}
.y177{bottom:481.889370px;}
.y18{bottom:486.715500px;}
.y1ee{bottom:488.160720px;}
.y207{bottom:488.167920px;}
.y137{bottom:488.172960px;}
.y87{bottom:488.178000px;}
.ybd{bottom:488.193840px;}
.yee{bottom:488.198880px;}
.y1b1{bottom:488.206800px;}
.y15c{bottom:488.231850px;}
.y293{bottom:488.236170px;}
.y6f{bottom:488.248410px;}
.y239{bottom:494.839290px;}
.y190{bottom:495.932250px;}
.y26c{bottom:497.160000px;}
.y1c2{bottom:498.068490px;}
.y109{bottom:499.525770px;}
.y9a{bottom:500.386890px;}
.y44{bottom:500.634000px;}
.y176{bottom:500.784330px;}
.y17{bottom:503.280000px;}
.y1ed{bottom:507.055680px;}
.y206{bottom:507.062880px;}
.y136{bottom:507.067920px;}
.y86{bottom:507.072960px;}
.ybc{bottom:507.088800px;}
.yed{bottom:507.093840px;}
.y1b0{bottom:507.101760px;}
.y15b{bottom:507.126810px;}
.y292{bottom:507.131130px;}
.y6e{bottom:507.143370px;}
.y238{bottom:513.734250px;}
.y18f{bottom:514.827210px;}
.y108{bottom:518.420730px;}
.y43{bottom:519.528960px;}
.y16{bottom:519.655500px;}
.y26b{bottom:519.660000px;}
.y175{bottom:519.679290px;}
.y99{bottom:524.332650px;}
.y1ec{bottom:526.132800px;}
.y135{bottom:526.145040px;}
.y85{bottom:526.150080px;}
.ybb{bottom:526.165920px;}
.yec{bottom:526.170960px;}
.y1af{bottom:526.178880px;}
.y15a{bottom:526.203930px;}
.y291{bottom:526.208250px;}
.y6d{bottom:526.220490px;}
.y237{bottom:532.811370px;}
.y18e{bottom:533.722170px;}
.y15{bottom:536.220000px;}
.y107{bottom:537.497850px;}
.y42{bottom:538.606080px;}
.y174{bottom:538.756410px;}
.y26a{bottom:542.160000px;}
.y1eb{bottom:544.683600px;}
.y84{bottom:545.045040px;}
.yba{bottom:545.060880px;}
.yeb{bottom:545.065920px;}
.y1ae{bottom:545.073840px;}
.y159{bottom:545.098890px;}
.y290{bottom:545.103210px;}
.y6c{bottom:545.115450px;}
.y236{bottom:551.706330px;}
.y18d{bottom:552.799290px;}
.y14{bottom:553.320000px;}
.y106{bottom:556.392810px;}
.y41{bottom:557.501040px;}
.y173{bottom:557.651370px;}
.y1ea{bottom:563.942880px;}
.yb9{bottom:563.955840px;}
.yd8{bottom:563.960880px;}
.y1ad{bottom:563.968800px;}
.y158{bottom:563.993850px;}
.y222{bottom:563.996880px;}
.y28f{bottom:563.998170px;}
.y6b{bottom:564.010410px;}
.y269{bottom:564.660000px;}
.y235{bottom:570.601290px;}
.y18c{bottom:571.694250px;}
.y13{bottom:573.300000px;}
.y105{bottom:575.469930px;}
.y40{bottom:576.396000px;}
.y172{bottom:576.728490px;}
.yb8{bottom:583.032960px;}
.yd7{bottom:583.038000px;}
.y1ac{bottom:583.045920px;}
.y157{bottom:583.070970px;}
.y221{bottom:583.074000px;}
.y28e{bottom:583.075290px;}
.y1e9{bottom:583.077600px;}
.y6a{bottom:583.087530px;}
.y268{bottom:587.160000px;}
.y234{bottom:589.678410px;}
.y12{bottom:590.215500px;}
.y18b{bottom:590.771370px;}
.y104{bottom:594.364890px;}
.y3f{bottom:595.473120px;}
.y171{bottom:595.623450px;}
.yb7{bottom:601.927920px;}
.yd6{bottom:601.932960px;}
.y1ab{bottom:601.940880px;}
.y156{bottom:601.965930px;}
.y220{bottom:601.968960px;}
.y28d{bottom:601.970250px;}
.y1e8{bottom:601.972560px;}
.y69{bottom:601.982490px;}
.y11{bottom:605.875500px;}
.y233{bottom:608.573370px;}
.y267{bottom:609.660000px;}
.y18a{bottom:609.666330px;}
.y3e{bottom:614.368080px;}
.y170{bottom:614.700570px;}
.y103{bottom:618.310650px;}
.yd5{bottom:620.645760px;}
.yb6{bottom:621.005040px;}
.yea{bottom:621.010080px;}
.y1aa{bottom:621.018000px;}
.y155{bottom:621.043050px;}
.y21f{bottom:621.046080px;}
.y28c{bottom:621.047370px;}
.y1e7{bottom:621.049680px;}
.y68{bottom:621.059610px;}
.y10{bottom:621.360000px;}
.y189{bottom:628.561290px;}
.y265{bottom:632.160000px;}
.y232{bottom:632.519130px;}
.y3d{bottom:633.445200px;}
.y16f{bottom:634.142010px;}
.yf{bottom:636.840000px;}
.yd4{bottom:639.905040px;}
.y1a9{bottom:639.912960px;}
.y154{bottom:639.938010px;}
.y21e{bottom:639.941040px;}
.y28b{bottom:639.942330px;}
.y1e6{bottom:639.944640px;}
.y67{bottom:639.954570px;}
.y264{bottom:649.980000px;}
.ye{bottom:652.311000px;}
.y3c{bottom:652.340160px;}
.y188{bottom:652.507050px;}
.ye9{bottom:658.807920px;}
.y153{bottom:658.832970px;}
.y21d{bottom:658.836000px;}
.y28a{bottom:658.837290px;}
.y1e5{bottom:658.839600px;}
.y66{bottom:658.849530px;}
.yd{bottom:667.971000px;}
.y3b{bottom:671.417280px;}
.y263{bottom:672.480000px;}
.ye8{bottom:677.885040px;}
.y152{bottom:677.910090px;}
.y21c{bottom:677.913120px;}
.y289{bottom:677.914410px;}
.y1e4{bottom:677.916720px;}
.y65{bottom:677.926650px;}
.yc{bottom:683.455500px;}
.y3a{bottom:690.312240px;}
.y262{bottom:694.980000px;}
.y151{bottom:696.805050px;}
.y21b{bottom:696.808080px;}
.y288{bottom:696.809370px;}
.y1e3{bottom:696.811680px;}
.y64{bottom:696.821610px;}
.yb{bottom:698.940000px;}
.y39{bottom:709.207200px;}
.ya{bottom:715.320000px;}
.y150{bottom:715.882170px;}
.y21a{bottom:715.885200px;}
.y287{bottom:715.886490px;}
.y1e2{bottom:715.888800px;}
.y63{bottom:715.898730px;}
.y261{bottom:717.480000px;}
.y38{bottom:727.920720px;}
.y14f{bottom:734.777130px;}
.y219{bottom:734.780160px;}
.y286{bottom:734.781450px;}
.y1e1{bottom:734.783760px;}
.y62{bottom:734.793690px;}
.y25f{bottom:739.980000px;}
.y37{bottom:747.180000px;}
.y9{bottom:748.800000px;}
.y14e{bottom:753.672090px;}
.y218{bottom:753.675120px;}
.y285{bottom:753.676410px;}
.y1e0{bottom:753.678720px;}
.y61{bottom:753.688650px;}
.y25e{bottom:762.480000px;}
.y36{bottom:771.659850px;}
.y14d{bottom:772.749210px;}
.y217{bottom:772.752240px;}
.y284{bottom:772.753530px;}
.y1df{bottom:772.755840px;}
.y60{bottom:772.765770px;}
.y8{bottom:774.349560px;}
.y25c{bottom:784.980000px;}
.y35{bottom:788.215500px;}
.y14c{bottom:791.644170px;}
.y216{bottom:791.647200px;}
.y283{bottom:791.648490px;}
.y1de{bottom:791.650800px;}
.y5f{bottom:791.660730px;}
.y7{bottom:803.700000px;}
.y34{bottom:804.779850px;}
.y251{bottom:807.480000px;}
.y215{bottom:810.373530px;}
.y14b{bottom:810.721290px;}
.y282{bottom:810.725610px;}
.y1dd{bottom:810.727920px;}
.y5e{bottom:810.737850px;}
.y254{bottom:822.955500px;}
.y258{bottom:828.720000px;}
.y14a{bottom:829.616250px;}
.y281{bottom:829.620570px;}
.y1dc{bottom:829.622880px;}
.y5d{bottom:829.632810px;}
.y6{bottom:829.979850px;}
.y33{bottom:830.159850px;}
.y253{bottom:838.440000px;}
.y25b{bottom:838.979850px;}
.y259{bottom:843.120000px;}
.y256{bottom:844.380000px;}
.y32{bottom:846.724350px;}
.y149{bottom:848.693370px;}
.y280{bottom:848.697690px;}
.y5c{bottom:848.709930px;}
.y5{bottom:849.409560px;}
.y257{bottom:855.000000px;}
.y25a{bottom:860.760000px;}
.y31{bottom:863.099850px;}
.y148{bottom:867.240570px;}
.y27f{bottom:867.592650px;}
.y5b{bottom:867.604890px;}
.y250{bottom:870.654420px;}
.y4{bottom:878.760000px;}
.y27e{bottom:886.139850px;}
.y5a{bottom:886.499850px;}
.y24f{bottom:887.940000px;}
.y30{bottom:888.479850px;}
.y2f{bottom:938.159850px;}
.y1{bottom:940.319850px;}
.h2e{height:17.098500px;}
.h2b{height:21.780000px;}
.h2d{height:21.781500px;}
.he{height:31.587891px;}
.h6{height:37.415039px;}
.hd{height:37.469039px;}
.hf{height:41.405977px;}
.h3{height:42.327773px;}
.h2{height:47.381836px;}
.h9{height:47.417836px;}
.ha{height:47.513672px;}
.h2c{height:49.587891px;}
.hb{height:52.435898px;}
.h10{height:52.436498px;}
.h21{height:52.525898px;}
.h8{height:58.121719px;}
.h12{height:58.283437px;}
.h11{height:58.833281px;}
.h2a{height:58.860000px;}
.h1d{height:59.820793px;}
.h29{height:59.984953px;}
.h13{height:59.996473px;}
.h27{height:60.048313px;}
.h25{height:60.079993px;}
.h1e{height:60.094393px;}
.h1c{height:60.100153px;}
.h14{height:60.120313px;}
.h23{height:60.171553px;}
.h28{height:60.174433px;}
.h1b{height:60.183073px;}
.h16{height:60.183673px;}
.h19{height:60.203833px;}
.h17{height:60.234913px;}
.h15{height:60.235513px;}
.h26{height:60.286753px;}
.h1f{height:60.318433px;}
.h24{height:60.335713px;}
.h18{height:60.338593px;}
.h20{height:60.350113px;}
.h22{height:60.361633px;}
.h1a{height:60.370273px;}
.hc{height:63.175781px;}
.h4{height:66.349336px;}
.h7{height:73.915664px;}
.h5{height:74.181473px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w2{width:49.861500px;}
.w5{width:55.800000px;}
.w4{width:55.801500px;}
.w3{width:63.180000px;}
.w6{width:65.520000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x27{left:7.740000px;}
.x3c{left:12.600000px;}
.x39{left:13.680000px;}
.x3b{left:19.260000px;}
.x29{left:20.520000px;}
.x3e{left:22.500000px;}
.x40{left:28.620000px;}
.x2a{left:36.360000px;}
.x3f{left:45.000000px;}
.x3d{left:52.380000px;}
.x3a{left:55.440000px;}
.x26{left:87.120000px;}
.x1{left:95.760000px;}
.x8{left:97.391520px;}
.xd{left:100.264320px;}
.x41{left:101.700000px;}
.x10{left:102.780000px;}
.x19{left:109.620000px;}
.x1a{left:110.696400px;}
.x13{left:114.820560px;}
.x3{left:117.000000px;}
.x21{left:122.222880px;}
.xb{left:124.375680px;}
.xf{left:125.627040px;}
.x4{left:127.800000px;}
.x1d{left:129.044880px;}
.x22{left:131.749920px;}
.x16{left:133.565040px;}
.x28{left:137.700000px;}
.xe{left:160.012800px;}
.xa{left:166.680000px;}
.x6{left:169.560000px;}
.x23{left:171.174960px;}
.x2b{left:174.060000px;}
.x11{left:185.580000px;}
.x24{left:193.680000px;}
.x20{left:198.183600px;}
.x2c{left:201.600000px;}
.x42{left:219.965040px;}
.x2d{left:237.960000px;}
.x25{left:240.659460px;}
.x14{left:246.042000px;}
.x1f{left:251.075520px;}
.x9{left:253.088640px;}
.x2e{left:265.500000px;}
.x1b{left:274.673520px;}
.x2f{left:286.020000px;}
.x30{left:329.400000px;}
.xc{left:361.448640px;}
.x5{left:369.360000px;}
.x31{left:393.300000px;}
.x32{left:429.660000px;}
.x33{left:449.820000px;}
.x34{left:486.180000px;}
.x35{left:506.340000px;}
.x36{left:526.860000px;}
.x2{left:547.394940px;}
.x37{left:570.240000px;}
.x1c{left:592.012800px;}
.x1e{left:593.801280px;}
.x38{left:606.600000px;}
.x15{left:614.866320px;}
.x18{left:618.482160px;}
.x17{left:620.296560px;}
.x7{left:627.129360px;}
.x12{left:631.259280px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:20.759573pt;}
.v1{vertical-align:26.916587pt;}
.ls5d{letter-spacing:-2.531840pt;}
.ls4b{letter-spacing:-2.296320pt;}
.ls15{letter-spacing:-2.256000pt;}
.ls3f{letter-spacing:-2.112000pt;}
.ls1d{letter-spacing:-2.064000pt;}
.ls54{letter-spacing:-2.016000pt;}
.ls3b{letter-spacing:-1.943040pt;}
.ls57{letter-spacing:-1.825280pt;}
.ls59{letter-spacing:-1.707520pt;}
.ls55{letter-spacing:-1.699840pt;}
.ls8{letter-spacing:-1.672320pt;}
.ls3e{letter-spacing:-1.648640pt;}
.ls4d{letter-spacing:-1.584000pt;}
.ls5{letter-spacing:-1.543680pt;}
.ls1b{letter-spacing:-1.536000pt;}
.ls49{letter-spacing:-1.530880pt;}
.ls13{letter-spacing:-1.488000pt;}
.ls2a{letter-spacing:-1.487360pt;}
.lsf{letter-spacing:-1.440000pt;}
.ls4f{letter-spacing:-1.413120pt;}
.lsd{letter-spacing:-1.392000pt;}
.lsb{letter-spacing:-1.361920pt;}
.ls20{letter-spacing:-1.344000pt;}
.ls29{letter-spacing:-1.328000pt;}
.lse{letter-spacing:-1.296000pt;}
.ls2f{letter-spacing:-1.295360pt;}
.ls22{letter-spacing:-1.248000pt;}
.ls23{letter-spacing:-1.200000pt;}
.lsc{letter-spacing:-1.177600pt;}
.ls53{letter-spacing:-1.168640pt;}
.ls14{letter-spacing:-1.152000pt;}
.ls2b{letter-spacing:-1.115520pt;}
.ls6{letter-spacing:-1.114880pt;}
.ls10{letter-spacing:-1.104000pt;}
.ls44{letter-spacing:-1.059840pt;}
.ls2c{letter-spacing:-1.029120pt;}
.ls1c{letter-spacing:-1.008000pt;}
.ls30{letter-spacing:-1.000960pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.956160pt;}
.ls7{letter-spacing:-0.943360pt;}
.ls58{letter-spacing:-0.942080pt;}
.lsa{letter-spacing:-0.936320pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls1e{letter-spacing:-0.864000pt;}
.ls36{letter-spacing:-0.816000pt;}
.ls9{letter-spacing:-0.814720pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.720000pt;}
.ls2e{letter-spacing:-0.672000pt;}
.ls42{letter-spacing:-0.647680pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls52{letter-spacing:-0.531200pt;}
.ls5c{letter-spacing:-0.529920pt;}
.ls12{letter-spacing:-0.528000pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.117760pt;}
.ls34{letter-spacing:0.144000pt;}
.ls41{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.336000pt;}
.ls4a{letter-spacing:0.612352pt;}
.ls38{letter-spacing:0.647680pt;}
.ls3c{letter-spacing:1.295360pt;}
.ls3a{letter-spacing:1.943040pt;}
.ls4e{letter-spacing:1.966592pt;}
.ls33{letter-spacing:2.531840pt;}
.ls3d{letter-spacing:2.736000pt;}
.ls48{letter-spacing:3.179520pt;}
.ls4c{letter-spacing:3.360000pt;}
.ls40{letter-spacing:3.827200pt;}
.ls32{letter-spacing:4.474880pt;}
.ls51{letter-spacing:5.122560pt;}
.ls46{letter-spacing:5.128448pt;}
.ls43{letter-spacing:5.570048pt;}
.ls39{letter-spacing:6.417920pt;}
.ls1{letter-spacing:6.432000pt;}
.ls50{letter-spacing:7.059712pt;}
.ls5b{letter-spacing:7.065600pt;}
.ls45{letter-spacing:8.260864pt;}
.ls28{letter-spacing:8.302080pt;}
.ls27{letter-spacing:8.425728pt;}
.ls47{letter-spacing:12.188160pt;}
.ls5a{letter-spacing:12.776960pt;}
.ls56{letter-spacing:21.137920pt;}
.ls3{letter-spacing:47.520000pt;}
.ls31{letter-spacing:889.122560pt;}
.ls0{letter-spacing:962.098560pt;}
.ws55{word-spacing:-58.880000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws3{word-spacing:-18.300800pt;}
.ws5{word-spacing:-14.720000pt;}
.wsed{word-spacing:-14.190080pt;}
.wsef{word-spacing:-14.072320pt;}
.wse7{word-spacing:-13.777920pt;}
.ws57{word-spacing:-13.719040pt;}
.ws56{word-spacing:-13.542400pt;}
.ws54{word-spacing:-13.424640pt;}
.wsee{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.280000pt;}
.wsd2{word-spacing:-13.189120pt;}
.ws9c{word-spacing:-13.071360pt;}
.wse9{word-spacing:-13.012480pt;}
.ws9b{word-spacing:-12.776960pt;}
.ws4{word-spacing:-12.728320pt;}
.wse8{word-spacing:-12.423680pt;}
.wsf{word-spacing:-12.323840pt;}
.ws18{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.472000pt;}
.wsd9{word-spacing:-11.184000pt;}
.ws9{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.848000pt;}
.ws9d{word-spacing:-10.752000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.704000pt;}
.ws52{word-spacing:-10.677120pt;}
.wsc{word-spacing:-10.608000pt;}
.wsa{word-spacing:-10.560000pt;}
.wsb{word-spacing:-10.512000pt;}
.wse1{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.776640pt;}
.wse{word-spacing:-9.744000pt;}
.ws16{word-spacing:-9.648000pt;}
.ws53{word-spacing:-9.552000pt;}
.ws15{word-spacing:-9.456000pt;}
.ws11{word-spacing:-9.408000pt;}
.ws14{word-spacing:-9.360000pt;}
.ws13{word-spacing:-9.312000pt;}
.ws7a{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.784000pt;}
.ws17{word-spacing:-8.000000pt;}
.wsc3{word-spacing:-3.827200pt;}
.ws9e{word-spacing:-3.297280pt;}
.ws9f{word-spacing:-3.179520pt;}
.ws20{word-spacing:-3.149440pt;}
.ws28{word-spacing:-2.736000pt;}
.ws85{word-spacing:-2.649600pt;}
.wsb0{word-spacing:-2.544000pt;}
.ws75{word-spacing:-2.531840pt;}
.wsaf{word-spacing:-2.256000pt;}
.ws50{word-spacing:-2.208000pt;}
.wsa9{word-spacing:-2.064000pt;}
.ws69{word-spacing:-2.001920pt;}
.wsdf{word-spacing:-1.920000pt;}
.ws73{word-spacing:-1.884160pt;}
.wsde{word-spacing:-1.872000pt;}
.ws42{word-spacing:-1.824000pt;}
.ws41{word-spacing:-1.632000pt;}
.wsae{word-spacing:-1.584000pt;}
.wsaa{word-spacing:-1.440000pt;}
.ws66{word-spacing:-1.354240pt;}
.wsdc{word-spacing:-1.248000pt;}
.ws65{word-spacing:-1.236480pt;}
.ws4a{word-spacing:-1.152000pt;}
.ws4b{word-spacing:-1.104000pt;}
.ws3f{word-spacing:-1.008000pt;}
.wsac{word-spacing:-0.960000pt;}
.wsf4{word-spacing:-0.883200pt;}
.ws4f{word-spacing:-0.816000pt;}
.ws6b{word-spacing:-0.765440pt;}
.ws74{word-spacing:-0.647680pt;}
.wsa8{word-spacing:-0.624000pt;}
.wse2{word-spacing:-0.584320pt;}
.ws45{word-spacing:-0.528000pt;}
.ws34{word-spacing:-0.432000pt;}
.ws36{word-spacing:-0.384000pt;}
.ws1f{word-spacing:-0.340480pt;}
.ws5f{word-spacing:-0.336000pt;}
.ws89{word-spacing:-0.294400pt;}
.ws4e{word-spacing:-0.288000pt;}
.ws3c{word-spacing:-0.240000pt;}
.wscd{word-spacing:-0.235520pt;}
.wse6{word-spacing:-0.159360pt;}
.ws2e{word-spacing:-0.144000pt;}
.ws22{word-spacing:-0.117760pt;}
.ws5a{word-spacing:-0.085760pt;}
.ws19{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.048000pt;}
.wse3{word-spacing:0.053120pt;}
.wse0{word-spacing:0.117760pt;}
.ws4d{word-spacing:0.144000pt;}
.ws7b{word-spacing:0.212480pt;}
.ws46{word-spacing:0.240000pt;}
.ws21{word-spacing:0.255360pt;}
.ws3b{word-spacing:0.288000pt;}
.ws93{word-spacing:0.336000pt;}
.wsc2{word-spacing:0.353280pt;}
.ws1a{word-spacing:0.428800pt;}
.wse4{word-spacing:0.478080pt;}
.ws8b{word-spacing:0.480000pt;}
.wsb8{word-spacing:0.528000pt;}
.ws70{word-spacing:0.529920pt;}
.wsc7{word-spacing:0.624000pt;}
.ws59{word-spacing:0.637440pt;}
.ws8c{word-spacing:0.647680pt;}
.ws39{word-spacing:0.672000pt;}
.ws1d{word-spacing:0.814720pt;}
.wsc6{word-spacing:0.816000pt;}
.ws3a{word-spacing:0.864000pt;}
.ws4c{word-spacing:0.912000pt;}
.ws1e{word-spacing:0.936320pt;}
.ws1b{word-spacing:0.943360pt;}
.ws2a{word-spacing:0.960000pt;}
.ws8e{word-spacing:1.000960pt;}
.ws58{word-spacing:1.009280pt;}
.ws25{word-spacing:1.104000pt;}
.ws29{word-spacing:1.152000pt;}
.ws62{word-spacing:1.177600pt;}
.ws49{word-spacing:1.248000pt;}
.ws78{word-spacing:1.295360pt;}
.wsc8{word-spacing:1.296000pt;}
.ws40{word-spacing:1.344000pt;}
.ws23{word-spacing:1.392000pt;}
.wsec{word-spacing:1.413120pt;}
.wsa2{word-spacing:1.440000pt;}
.ws38{word-spacing:1.488000pt;}
.ws31{word-spacing:1.536000pt;}
.ws47{word-spacing:1.584000pt;}
.wscc{word-spacing:1.648640pt;}
.ws1c{word-spacing:1.672320pt;}
.wse5{word-spacing:1.699840pt;}
.wsa7{word-spacing:1.776000pt;}
.ws64{word-spacing:1.825280pt;}
.ws63{word-spacing:1.943040pt;}
.wsa5{word-spacing:2.112000pt;}
.ws35{word-spacing:2.160000pt;}
.ws48{word-spacing:2.208000pt;}
.wsb1{word-spacing:2.256000pt;}
.wsd4{word-spacing:2.296320pt;}
.wsa3{word-spacing:2.400000pt;}
.ws98{word-spacing:2.472960pt;}
.wsf0{word-spacing:2.531840pt;}
.ws88{word-spacing:2.590720pt;}
.wscf{word-spacing:3.024000pt;}
.ws7c{word-spacing:3.120640pt;}
.ws5c{word-spacing:3.168000pt;}
.ws7d{word-spacing:3.238400pt;}
.ws33{word-spacing:3.312000pt;}
.ws32{word-spacing:3.456000pt;}
.ws2d{word-spacing:3.504000pt;}
.wsa6{word-spacing:3.696000pt;}
.ws91{word-spacing:3.768320pt;}
.ws68{word-spacing:3.886080pt;}
.ws5b{word-spacing:3.984000pt;}
.ws2b{word-spacing:4.176000pt;}
.wsf3{word-spacing:4.180480pt;}
.wsa4{word-spacing:4.320000pt;}
.ws86{word-spacing:4.357120pt;}
.ws2c{word-spacing:4.464000pt;}
.ws8f{word-spacing:4.474880pt;}
.wsd7{word-spacing:4.800000pt;}
.wsd1{word-spacing:4.944000pt;}
.wsb3{word-spacing:5.004800pt;}
.ws97{word-spacing:5.122560pt;}
.ws37{word-spacing:5.328000pt;}
.wsd8{word-spacing:5.424000pt;}
.wsb7{word-spacing:5.616000pt;}
.ws60{word-spacing:5.652480pt;}
.ws6f{word-spacing:5.770240pt;}
.wsf1{word-spacing:6.123520pt;}
.wsdb{word-spacing:6.240000pt;}
.ws61{word-spacing:6.300160pt;}
.wsa0{word-spacing:6.417920pt;}
.ws44{word-spacing:6.624000pt;}
.ws3d{word-spacing:6.672000pt;}
.ws3e{word-spacing:6.720000pt;}
.wsbe{word-spacing:6.771200pt;}
.ws8d{word-spacing:6.947840pt;}
.wsa1{word-spacing:7.065600pt;}
.wsea{word-spacing:7.183360pt;}
.ws90{word-spacing:7.595520pt;}
.wsb9{word-spacing:7.713280pt;}
.ws26{word-spacing:8.160000pt;}
.ws83{word-spacing:8.243200pt;}
.wsba{word-spacing:8.360960pt;}
.ws24{word-spacing:8.640000pt;}
.ws6e{word-spacing:8.832000pt;}
.ws87{word-spacing:8.949760pt;}
.ws30{word-spacing:9.168000pt;}
.ws27{word-spacing:9.264000pt;}
.ws51{word-spacing:9.312000pt;}
.ws71{word-spacing:9.479680pt;}
.ws72{word-spacing:9.597440pt;}
.wsc4{word-spacing:10.080000pt;}
.ws79{word-spacing:10.127360pt;}
.wsbd{word-spacing:10.245120pt;}
.wsc5{word-spacing:10.560000pt;}
.wsda{word-spacing:10.775040pt;}
.ws6a{word-spacing:10.892800pt;}
.ws5d{word-spacing:11.136000pt;}
.wsc1{word-spacing:11.304960pt;}
.ws7e{word-spacing:11.422720pt;}
.ws7f{word-spacing:11.540480pt;}
.ws43{word-spacing:11.760000pt;}
.ws5e{word-spacing:11.808000pt;}
.ws99{word-spacing:12.070400pt;}
.ws67{word-spacing:12.188160pt;}
.ws76{word-spacing:12.718080pt;}
.ws77{word-spacing:12.835840pt;}
.wsad{word-spacing:13.365760pt;}
.ws92{word-spacing:13.483520pt;}
.wsf2{word-spacing:13.777920pt;}
.ws95{word-spacing:13.954560pt;}
.ws96{word-spacing:14.072320pt;}
.ws94{word-spacing:14.602240pt;}
.wsce{word-spacing:14.720000pt;}
.ws80{word-spacing:15.249920pt;}
.wsc0{word-spacing:15.367680pt;}
.ws2f{word-spacing:15.600000pt;}
.ws84{word-spacing:15.897600pt;}
.wsb4{word-spacing:16.015360pt;}
.wsab{word-spacing:16.320000pt;}
.wsd3{word-spacing:16.663040pt;}
.ws6c{word-spacing:17.192960pt;}
.ws6d{word-spacing:17.310720pt;}
.wscb{word-spacing:17.840640pt;}
.wsbf{word-spacing:17.958400pt;}
.wsd6{word-spacing:18.606080pt;}
.ws9a{word-spacing:19.724800pt;}
.ws82{word-spacing:20.372480pt;}
.wsd5{word-spacing:20.490240pt;}
.wsc9{word-spacing:21.667840pt;}
.wsca{word-spacing:21.785600pt;}
.wseb{word-spacing:22.433280pt;}
.wsb5{word-spacing:22.963200pt;}
.wsb6{word-spacing:23.080960pt;}
.wsbc{word-spacing:23.669760pt;}
.wsd0{word-spacing:24.847360pt;}
.wsbb{word-spacing:24.965120pt;}
.ws81{word-spacing:25.612800pt;}
.wsdd{word-spacing:26.908160pt;}
.ws8a{word-spacing:37.035520pt;}
._c{margin-left:-4.300928pt;}
._4{margin-left:-3.209216pt;}
._1{margin-left:-1.595136pt;}
._0{width:0.969088pt;}
._2{width:1.938240pt;}
._a{width:3.122048pt;}
._b{width:4.457600pt;}
._6{width:5.743872pt;}
._3{width:7.655232pt;}
._e{width:9.725440pt;}
._10{width:12.867712pt;}
._5{width:16.024960pt;}
._d{width:21.790464pt;}
._11{width:40.406784pt;}
._f{width:47.734912pt;}
._7{width:215.184000pt;}
._9{width:459.009920pt;}
._8{width:765.286912pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y255{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y266{bottom:4.320000pt;}
.y25d{bottom:8.479867pt;}
.y260{bottom:8.480000pt;}
.y3{bottom:40.322720pt;}
.y252{bottom:41.440000pt;}
.y2{bottom:52.640000pt;}
.y102{bottom:86.044000pt;}
.ye7{bottom:86.060000pt;}
.y1a5{bottom:86.064000pt;}
.y1db{bottom:86.068000pt;}
.y2e{bottom:86.072000pt;}
.y83{bottom:86.076000pt;}
.y123{bottom:88.225787pt;}
.y8d{bottom:90.080000pt;}
.y59{bottom:90.844800pt;}
.yb5{bottom:95.379707pt;}
.y2bb{bottom:96.711680pt;}
.y1a8{bottom:96.778107pt;}
.y2a7{bottom:96.781947pt;}
.y134{bottom:96.792827pt;}
.yd3{bottom:99.800000pt;}
.y101{bottom:99.808000pt;}
.ye6{bottom:99.824000pt;}
.y1a4{bottom:99.828000pt;}
.y1da{bottom:99.832000pt;}
.y2d{bottom:99.836000pt;}
.y8c{bottom:99.840000pt;}
.y24d{bottom:102.583680pt;}
.y82{bottom:103.840000pt;}
.y122{bottom:105.021307pt;}
.y11d{bottom:106.817147pt;}
.y58{bottom:107.802240pt;}
.yb4{bottom:112.337147pt;}
.y2ba{bottom:113.507200pt;}
.yd2{bottom:113.564000pt;}
.y100{bottom:113.572000pt;}
.y1a7{bottom:113.573627pt;}
.y2a6{bottom:113.577467pt;}
.ye5{bottom:113.588000pt;}
.y133{bottom:113.588347pt;}
.y1a3{bottom:113.592000pt;}
.y1d9{bottom:113.596000pt;}
.y2c{bottom:113.600000pt;}
.y27d{bottom:116.960000pt;}
.y1c1{bottom:117.600000pt;}
.y227{bottom:118.103680pt;}
.y24c{bottom:119.379200pt;}
.y121{bottom:121.978747pt;}
.y11c{bottom:123.612667pt;}
.yad{bottom:124.341120pt;}
.y57{bottom:124.597760pt;}
.y205{bottom:127.391360pt;}
.yd1{bottom:127.484000pt;}
.yff{bottom:127.492000pt;}
.y1c0{bottom:127.500000pt;}
.ye4{bottom:127.508000pt;}
.y1a2{bottom:127.512000pt;}
.y1d8{bottom:127.516000pt;}
.y231{bottom:127.520000pt;}
.y81{bottom:130.243200pt;}
.y2b9{bottom:130.302720pt;}
.y16e{bottom:130.369147pt;}
.y2a5{bottom:130.372987pt;}
.y132{bottom:130.383867pt;}
.y2b{bottom:131.520000pt;}
.y1c9{bottom:132.341627pt;}
.yb3{bottom:133.622267pt;}
.y27c{bottom:133.755040pt;}
.y226{bottom:135.061120pt;}
.y24b{bottom:136.174720pt;}
.y120{bottom:138.774267pt;}
.y11b{bottom:140.570107pt;}
.yd0{bottom:141.248000pt;}
.yfe{bottom:141.256000pt;}
.y1bf{bottom:141.264000pt;}
.ye3{bottom:141.272000pt;}
.y1a1{bottom:141.276000pt;}
.y2a{bottom:141.280000pt;}
.yac{bottom:141.298560pt;}
.y56{bottom:141.393280pt;}
.y204{bottom:144.186880pt;}
.y1d7{bottom:145.280000pt;}
.y24e{bottom:147.193467pt;}
.y80{bottom:147.200640pt;}
.y2b8{bottom:147.260160pt;}
.y16d{bottom:147.326587pt;}
.y2a4{bottom:147.330427pt;}
.y131{bottom:147.341307pt;}
.y27b{bottom:149.120000pt;}
.y1c8{bottom:149.299067pt;}
.y98{bottom:149.313787pt;}
.y225{bottom:151.856640pt;}
.y214{bottom:152.488320pt;}
.y24a{bottom:153.132160pt;}
.ycf{bottom:155.012000pt;}
.yfd{bottom:155.020000pt;}
.y1be{bottom:155.028000pt;}
.ye2{bottom:155.036000pt;}
.y1d6{bottom:155.040000pt;}
.y11f{bottom:155.731707pt;}
.y11a{bottom:157.365627pt;}
.yab{bottom:158.094080pt;}
.y55{bottom:158.350720pt;}
.y187{bottom:158.484347pt;}
.y1a0{bottom:159.040000pt;}
.y203{bottom:160.982400pt;}
.y27a{bottom:161.920000pt;}
.y1a6{bottom:163.812987pt;}
.y7f{bottom:163.996160pt;}
.y2b7{bottom:164.055680pt;}
.y16c{bottom:164.122107pt;}
.y2a3{bottom:164.125947pt;}
.y130{bottom:164.136827pt;}
.y1c7{bottom:166.094587pt;}
.y97{bottom:166.271227pt;}
.y29{bottom:167.508000pt;}
.yce{bottom:168.776000pt;}
.yfc{bottom:168.784000pt;}
.y1bd{bottom:168.792000pt;}
.ye1{bottom:168.800000pt;}
.y224{bottom:168.814080pt;}
.y213{bottom:169.283840pt;}
.y249{bottom:169.927680pt;}
.y147{bottom:172.800000pt;}
.y119{bottom:174.161147pt;}
.yaa{bottom:174.889600pt;}
.y54{bottom:175.146240pt;}
.y186{bottom:175.441787pt;}
.y11e{bottom:177.016827pt;}
.y202{bottom:177.939840pt;}
.y7e{bottom:180.953600pt;}
.y230{bottom:180.994560pt;}
.y2b6{bottom:181.013120pt;}
.y16b{bottom:181.079547pt;}
.y2a2{bottom:181.083387pt;}
.y12f{bottom:181.094267pt;}
.y279{bottom:181.920000pt;}
.y28{bottom:182.232000pt;}
.ycd{bottom:182.696000pt;}
.yfb{bottom:182.704000pt;}
.y20f{bottom:182.708000pt;}
.y1bc{bottom:182.712000pt;}
.y146{bottom:182.720000pt;}
.y96{bottom:183.066747pt;}
.ye0{bottom:186.720000pt;}
.y248{bottom:186.885120pt;}
.y1c6{bottom:187.379707pt;}
.y19f{bottom:187.694080pt;}
.y223{bottom:190.099200pt;}
.y212{bottom:190.568960pt;}
.y118{bottom:191.118587pt;}
.ya9{bottom:191.847040pt;}
.y53{bottom:192.103680pt;}
.y185{bottom:192.237307pt;}
.y201{bottom:194.735360pt;}
.ycc{bottom:196.460000pt;}
.yfa{bottom:196.468000pt;}
.y20e{bottom:196.472000pt;}
.y1bb{bottom:196.476000pt;}
.ydf{bottom:196.480000pt;}
.y27{bottom:196.956000pt;}
.y7d{bottom:197.475840pt;}
.y22f{bottom:197.790080pt;}
.y1fb{bottom:197.797120pt;}
.y2b5{bottom:197.808640pt;}
.y145{bottom:197.822720pt;}
.y1d5{bottom:197.852800pt;}
.y16a{bottom:197.875067pt;}
.y2a1{bottom:197.878907pt;}
.y12e{bottom:197.889787pt;}
.y95{bottom:200.024187pt;}
.y278{bottom:201.920000pt;}
.y247{bottom:203.680640pt;}
.y19e{bottom:204.651520pt;}
.y117{bottom:207.914107pt;}
.ya8{bottom:208.642560pt;}
.y52{bottom:208.899200pt;}
.y184{bottom:209.032827pt;}
.ycb{bottom:210.224000pt;}
.yf9{bottom:210.232000pt;}
.y20d{bottom:210.236000pt;}
.y26{bottom:211.512000pt;}
.y200{bottom:211.692800pt;}
.y1ba{bottom:214.240000pt;}
.y22e{bottom:214.585600pt;}
.y1fa{bottom:214.592640pt;}
.y7c{bottom:214.595200pt;}
.y2b4{bottom:214.604160pt;}
.y144{bottom:214.618240pt;}
.y1d4{bottom:214.648320pt;}
.y169{bottom:214.670587pt;}
.y2a0{bottom:214.674427pt;}
.y12d{bottom:214.685307pt;}
.y94{bottom:216.819707pt;}
.yde{bottom:219.072000pt;}
.y246{bottom:220.476160pt;}
.y19d{bottom:221.447040pt;}
.y277{bottom:221.920000pt;}
.yca{bottom:223.988000pt;}
.yf8{bottom:223.996000pt;}
.y116{bottom:224.871547pt;}
.ya7{bottom:225.636987pt;}
.y51{bottom:225.856640pt;}
.y183{bottom:225.990267pt;}
.y25{bottom:226.236000pt;}
.y1b9{bottom:228.000000pt;}
.y1ff{bottom:228.488320pt;}
.y22d{bottom:231.543040pt;}
.y1f9{bottom:231.550080pt;}
.y7b{bottom:231.552640pt;}
.y2b3{bottom:231.561600pt;}
.y143{bottom:231.575680pt;}
.y1d3{bottom:231.605760pt;}
.y168{bottom:231.628027pt;}
.y29f{bottom:231.631867pt;}
.y12c{bottom:231.642747pt;}
.y93{bottom:233.615227pt;}
.ydd{bottom:235.867520pt;}
.y245{bottom:237.433600pt;}
.yc9{bottom:237.752000pt;}
.y1b8{bottom:237.760000pt;}
.y19c{bottom:238.404480pt;}
.y24{bottom:240.960000pt;}
.y115{bottom:241.667067pt;}
.yf7{bottom:241.760000pt;}
.y276{bottom:241.920000pt;}
.ya6{bottom:242.432507pt;}
.y50{bottom:242.652160pt;}
.y182{bottom:242.785787pt;}
.y1fe{bottom:245.283840pt;}
.y22c{bottom:248.338560pt;}
.y1f8{bottom:248.345600pt;}
.y7a{bottom:248.348160pt;}
.y2b2{bottom:248.357120pt;}
.y142{bottom:248.371200pt;}
.y1d2{bottom:248.401280pt;}
.y167{bottom:248.423547pt;}
.y29e{bottom:248.427387pt;}
.y12b{bottom:248.438267pt;}
.y92{bottom:250.572667pt;}
.yc8{bottom:251.672000pt;}
.ydc{bottom:252.824960pt;}
.y244{bottom:253.972987pt;}
.y19b{bottom:255.268347pt;}
.y23{bottom:255.516000pt;}
.yf6{bottom:255.680000pt;}
.y114{bottom:258.462587pt;}
.ya5{bottom:259.228027pt;}
.y4f{bottom:259.447680pt;}
.y181{bottom:259.743227pt;}
.y275{bottom:261.920000pt;}
.y1fd{bottom:262.241280pt;}
.y20c{bottom:265.284480pt;}
.y1b7{bottom:265.291520pt;}
.y22b{bottom:265.296000pt;}
.y1f7{bottom:265.303040pt;}
.y79{bottom:265.305600pt;}
.y2b1{bottom:265.314560pt;}
.y141{bottom:265.328640pt;}
.y1d1{bottom:265.358720pt;}
.y166{bottom:265.380987pt;}
.y29d{bottom:265.384827pt;}
.y12a{bottom:265.395707pt;}
.yf5{bottom:265.432000pt;}
.yc7{bottom:265.436000pt;}
.y91{bottom:267.368187pt;}
.ydb{bottom:269.620480pt;}
.y22{bottom:270.240000pt;}
.y243{bottom:271.254267pt;}
.y19a{bottom:272.063867pt;}
.y113{bottom:275.420027pt;}
.ya4{bottom:276.185467pt;}
.y4e{bottom:276.405120pt;}
.y180{bottom:276.538747pt;}
.yf4{bottom:279.196000pt;}
.y274{bottom:281.920000pt;}
.y1b6{bottom:282.087040pt;}
.y22a{bottom:282.091520pt;}
.y1f6{bottom:282.098560pt;}
.y78{bottom:282.101120pt;}
.y20b{bottom:282.105600pt;}
.y2b0{bottom:282.110080pt;}
.y140{bottom:282.124160pt;}
.y1d0{bottom:282.154240pt;}
.y165{bottom:282.176507pt;}
.y29c{bottom:282.180347pt;}
.y129{bottom:282.191227pt;}
.yc6{bottom:283.200000pt;}
.y1fc{bottom:283.526400pt;}
.y90{bottom:284.325627pt;}
.y21{bottom:284.796000pt;}
.yda{bottom:286.416000pt;}
.y242{bottom:288.049787pt;}
.y199{bottom:289.021307pt;}
.y112{bottom:292.215547pt;}
.ya3{bottom:292.980987pt;}
.y4d{bottom:293.200640pt;}
.y17f{bottom:293.334267pt;}
.yc5{bottom:296.960000pt;}
.y1b5{bottom:299.044480pt;}
.y229{bottom:299.048960pt;}
.y1f5{bottom:299.056000pt;}
.y77{bottom:299.058560pt;}
.y20a{bottom:299.063040pt;}
.y2af{bottom:299.067520pt;}
.y13f{bottom:299.081600pt;}
.y1cf{bottom:299.111680pt;}
.y164{bottom:299.133947pt;}
.y29b{bottom:299.137787pt;}
.y128{bottom:299.148667pt;}
.y8f{bottom:301.121147pt;}
.y273{bottom:301.920000pt;}
.y241{bottom:304.845307pt;}
.y198{bottom:305.816827pt;}
.yc4{bottom:306.880000pt;}
.y20{bottom:307.356000pt;}
.yd9{bottom:307.701120pt;}
.y111{bottom:309.172987pt;}
.ya2{bottom:309.938427pt;}
.y4c{bottom:310.158080pt;}
.y17e{bottom:310.291707pt;}
.y228{bottom:315.844480pt;}
.y1f4{bottom:315.851520pt;}
.y76{bottom:315.854080pt;}
.y1b4{bottom:315.858560pt;}
.y2ae{bottom:315.863040pt;}
.y13e{bottom:315.877120pt;}
.y1ce{bottom:315.907200pt;}
.y163{bottom:315.929467pt;}
.y29a{bottom:315.933307pt;}
.y127{bottom:315.944187pt;}
.y240{bottom:321.802747pt;}
.y272{bottom:321.920000pt;}
.y8e{bottom:322.406267pt;}
.y197{bottom:322.774267pt;}
.y110{bottom:325.968507pt;}
.ya1{bottom:326.733947pt;}
.y4b{bottom:326.953600pt;}
.y17d{bottom:327.087227pt;}
.y1f{bottom:330.072000pt;}
.yb2{bottom:331.223547pt;}
.y1f3{bottom:332.647040pt;}
.y75{bottom:332.649600pt;}
.yc3{bottom:332.654080pt;}
.y2ad{bottom:332.658560pt;}
.y13d{bottom:332.672640pt;}
.y1cd{bottom:332.702720pt;}
.y162{bottom:332.724987pt;}
.y299{bottom:332.728827pt;}
.y126{bottom:332.739707pt;}
.y23f{bottom:338.598267pt;}
.y196{bottom:339.569787pt;}
.y271{bottom:341.920000pt;}
.y10f{bottom:342.925947pt;}
.ya0{bottom:343.529467pt;}
.y4a{bottom:343.749120pt;}
.y17c{bottom:344.044667pt;}
.y1e{bottom:344.796000pt;}
.yb1{bottom:348.019067pt;}
.yf3{bottom:349.604480pt;}
.y74{bottom:349.607040pt;}
.yc2{bottom:349.611520pt;}
.y2ac{bottom:349.616000pt;}
.y13c{bottom:349.630080pt;}
.y1cc{bottom:349.660160pt;}
.y161{bottom:349.682427pt;}
.y298{bottom:349.686267pt;}
.y125{bottom:349.697147pt;}
.y23e{bottom:355.555707pt;}
.y195{bottom:356.527227pt;}
.y1d{bottom:359.352000pt;}
.y10e{bottom:359.721467pt;}
.y9f{bottom:360.486907pt;}
.y49{bottom:360.706560pt;}
.y17b{bottom:360.840187pt;}
.y270{bottom:361.920000pt;}
.yb0{bottom:364.814587pt;}
.y73{bottom:366.402560pt;}
.yc1{bottom:366.407040pt;}
.y2ab{bottom:366.411520pt;}
.y1f2{bottom:366.414720pt;}
.y13b{bottom:366.425600pt;}
.y8b{bottom:366.430080pt;}
.yf2{bottom:366.448640pt;}
.y1cb{bottom:366.455680pt;}
.y160{bottom:366.477947pt;}
.y297{bottom:366.481787pt;}
.y124{bottom:366.492667pt;}
.y23d{bottom:372.351227pt;}
.y194{bottom:373.322747pt;}
.y1c{bottom:374.076000pt;}
.y10d{bottom:376.516987pt;}
.y9e{bottom:377.282427pt;}
.y48{bottom:377.502080pt;}
.y17a{bottom:377.635707pt;}
.yaf{bottom:381.772027pt;}
.y26f{bottom:381.920000pt;}
.yc0{bottom:383.364480pt;}
.y2aa{bottom:383.368960pt;}
.y1f1{bottom:383.372160pt;}
.y13a{bottom:383.383040pt;}
.y8a{bottom:383.387520pt;}
.yf1{bottom:383.406080pt;}
.y1ca{bottom:383.413120pt;}
.y15f{bottom:383.435387pt;}
.y296{bottom:383.439227pt;}
.y72{bottom:383.450107pt;}
.y1b{bottom:388.800000pt;}
.y23c{bottom:389.308667pt;}
.y193{bottom:390.118267pt;}
.y1c5{bottom:391.693307pt;}
.y10c{bottom:393.474427pt;}
.y9d{bottom:394.239867pt;}
.y47{bottom:394.459520pt;}
.y179{bottom:394.593147pt;}
.y2a9{bottom:400.164480pt;}
.y211{bottom:400.167040pt;}
.y1f0{bottom:400.167680pt;}
.y209{bottom:400.174080pt;}
.y139{bottom:400.178560pt;}
.y89{bottom:400.183040pt;}
.ybf{bottom:400.197120pt;}
.yf0{bottom:400.201600pt;}
.y1b3{bottom:400.208640pt;}
.y15e{bottom:400.230907pt;}
.y295{bottom:400.234747pt;}
.y71{bottom:400.245627pt;}
.y26e{bottom:401.920000pt;}
.yae{bottom:403.057147pt;}
.y1a{bottom:403.356000pt;}
.y23b{bottom:406.104187pt;}
.y192{bottom:407.075707pt;}
.y1c4{bottom:408.650747pt;}
.y10b{bottom:410.269947pt;}
.y9c{bottom:411.035387pt;}
.y46{bottom:411.255040pt;}
.y178{bottom:411.388667pt;}
.y2a8{bottom:416.960000pt;}
.y210{bottom:416.962560pt;}
.y1ef{bottom:416.963200pt;}
.y208{bottom:416.969600pt;}
.y138{bottom:416.974080pt;}
.y88{bottom:416.978560pt;}
.ybe{bottom:416.992640pt;}
.yef{bottom:416.997120pt;}
.y1b2{bottom:417.004160pt;}
.y15d{bottom:417.026427pt;}
.y294{bottom:417.030267pt;}
.y70{bottom:417.041147pt;}
.y19{bottom:418.080000pt;}
.y26d{bottom:421.920000pt;}
.y23a{bottom:422.899707pt;}
.y191{bottom:423.871227pt;}
.y1c3{bottom:425.446267pt;}
.y10a{bottom:427.227387pt;}
.y9b{bottom:427.992827pt;}
.y45{bottom:428.050560pt;}
.y177{bottom:428.346107pt;}
.y18{bottom:432.636000pt;}
.y1ee{bottom:433.920640pt;}
.y207{bottom:433.927040pt;}
.y137{bottom:433.931520pt;}
.y87{bottom:433.936000pt;}
.ybd{bottom:433.950080pt;}
.yee{bottom:433.954560pt;}
.y1b1{bottom:433.961600pt;}
.y15c{bottom:433.983867pt;}
.y293{bottom:433.987707pt;}
.y6f{bottom:433.998587pt;}
.y239{bottom:439.857147pt;}
.y190{bottom:440.828667pt;}
.y26c{bottom:441.920000pt;}
.y1c2{bottom:442.727547pt;}
.y109{bottom:444.022907pt;}
.y9a{bottom:444.788347pt;}
.y44{bottom:445.008000pt;}
.y176{bottom:445.141627pt;}
.y17{bottom:447.360000pt;}
.y1ed{bottom:450.716160pt;}
.y206{bottom:450.722560pt;}
.y136{bottom:450.727040pt;}
.y86{bottom:450.731520pt;}
.ybc{bottom:450.745600pt;}
.yed{bottom:450.750080pt;}
.y1b0{bottom:450.757120pt;}
.y15b{bottom:450.779387pt;}
.y292{bottom:450.783227pt;}
.y6e{bottom:450.794107pt;}
.y238{bottom:456.652667pt;}
.y18f{bottom:457.624187pt;}
.y108{bottom:460.818427pt;}
.y43{bottom:461.803520pt;}
.y16{bottom:461.916000pt;}
.y26b{bottom:461.920000pt;}
.y175{bottom:461.937147pt;}
.y99{bottom:466.073467pt;}
.y1ec{bottom:467.673600pt;}
.y135{bottom:467.684480pt;}
.y85{bottom:467.688960pt;}
.ybb{bottom:467.703040pt;}
.yec{bottom:467.707520pt;}
.y1af{bottom:467.714560pt;}
.y15a{bottom:467.736827pt;}
.y291{bottom:467.740667pt;}
.y6d{bottom:467.751547pt;}
.y237{bottom:473.610107pt;}
.y18e{bottom:474.419707pt;}
.y15{bottom:476.640000pt;}
.y107{bottom:477.775867pt;}
.y42{bottom:478.760960pt;}
.y174{bottom:478.894587pt;}
.y26a{bottom:481.920000pt;}
.y1eb{bottom:484.163200pt;}
.y84{bottom:484.484480pt;}
.yba{bottom:484.498560pt;}
.yeb{bottom:484.503040pt;}
.y1ae{bottom:484.510080pt;}
.y159{bottom:484.532347pt;}
.y290{bottom:484.536187pt;}
.y6c{bottom:484.547067pt;}
.y236{bottom:490.405627pt;}
.y18d{bottom:491.377147pt;}
.y14{bottom:491.840000pt;}
.y106{bottom:494.571387pt;}
.y41{bottom:495.556480pt;}
.y173{bottom:495.690107pt;}
.y1ea{bottom:501.282560pt;}
.yb9{bottom:501.294080pt;}
.yd8{bottom:501.298560pt;}
.y1ad{bottom:501.305600pt;}
.y158{bottom:501.327867pt;}
.y222{bottom:501.330560pt;}
.y28f{bottom:501.331707pt;}
.y6b{bottom:501.342587pt;}
.y269{bottom:501.920000pt;}
.y235{bottom:507.201147pt;}
.y18c{bottom:508.172667pt;}
.y13{bottom:509.600000pt;}
.y105{bottom:511.528827pt;}
.y40{bottom:512.352000pt;}
.y172{bottom:512.647547pt;}
.yb8{bottom:518.251520pt;}
.yd7{bottom:518.256000pt;}
.y1ac{bottom:518.263040pt;}
.y157{bottom:518.285307pt;}
.y221{bottom:518.288000pt;}
.y28e{bottom:518.289147pt;}
.y1e9{bottom:518.291200pt;}
.y6a{bottom:518.300027pt;}
.y268{bottom:521.920000pt;}
.y234{bottom:524.158587pt;}
.y12{bottom:524.636000pt;}
.y18b{bottom:525.130107pt;}
.y104{bottom:528.324347pt;}
.y3f{bottom:529.309440pt;}
.y171{bottom:529.443067pt;}
.yb7{bottom:535.047040pt;}
.yd6{bottom:535.051520pt;}
.y1ab{bottom:535.058560pt;}
.y156{bottom:535.080827pt;}
.y220{bottom:535.083520pt;}
.y28d{bottom:535.084667pt;}
.y1e8{bottom:535.086720pt;}
.y69{bottom:535.095547pt;}
.y11{bottom:538.556000pt;}
.y233{bottom:540.954107pt;}
.y267{bottom:541.920000pt;}
.y18a{bottom:541.925627pt;}
.y3e{bottom:546.104960pt;}
.y170{bottom:546.400507pt;}
.y103{bottom:549.609467pt;}
.yd5{bottom:551.685120pt;}
.yb6{bottom:552.004480pt;}
.yea{bottom:552.008960pt;}
.y1aa{bottom:552.016000pt;}
.y155{bottom:552.038267pt;}
.y21f{bottom:552.040960pt;}
.y28c{bottom:552.042107pt;}
.y1e7{bottom:552.044160pt;}
.y68{bottom:552.052987pt;}
.y10{bottom:552.320000pt;}
.y189{bottom:558.721147pt;}
.y265{bottom:561.920000pt;}
.y232{bottom:562.239227pt;}
.y3d{bottom:563.062400pt;}
.y16f{bottom:563.681787pt;}
.yf{bottom:566.080000pt;}
.yd4{bottom:568.804480pt;}
.y1a9{bottom:568.811520pt;}
.y154{bottom:568.833787pt;}
.y21e{bottom:568.836480pt;}
.y28b{bottom:568.837627pt;}
.y1e6{bottom:568.839680pt;}
.y67{bottom:568.848507pt;}
.y264{bottom:577.760000pt;}
.ye{bottom:579.832000pt;}
.y3c{bottom:579.857920pt;}
.y188{bottom:580.006267pt;}
.ye9{bottom:585.607040pt;}
.y153{bottom:585.629307pt;}
.y21d{bottom:585.632000pt;}
.y28a{bottom:585.633147pt;}
.y1e5{bottom:585.635200pt;}
.y66{bottom:585.644027pt;}
.yd{bottom:593.752000pt;}
.y3b{bottom:596.815360pt;}
.y263{bottom:597.760000pt;}
.ye8{bottom:602.564480pt;}
.y152{bottom:602.586747pt;}
.y21c{bottom:602.589440pt;}
.y289{bottom:602.590587pt;}
.y1e4{bottom:602.592640pt;}
.y65{bottom:602.601467pt;}
.yc{bottom:607.516000pt;}
.y3a{bottom:613.610880pt;}
.y262{bottom:617.760000pt;}
.y151{bottom:619.382267pt;}
.y21b{bottom:619.384960pt;}
.y288{bottom:619.386107pt;}
.y1e3{bottom:619.388160pt;}
.y64{bottom:619.396987pt;}
.yb{bottom:621.280000pt;}
.y39{bottom:630.406400pt;}
.ya{bottom:635.840000pt;}
.y150{bottom:636.339707pt;}
.y21a{bottom:636.342400pt;}
.y287{bottom:636.343547pt;}
.y1e2{bottom:636.345600pt;}
.y63{bottom:636.354427pt;}
.y261{bottom:637.760000pt;}
.y38{bottom:647.040640pt;}
.y14f{bottom:653.135227pt;}
.y219{bottom:653.137920pt;}
.y286{bottom:653.139067pt;}
.y1e1{bottom:653.141120pt;}
.y62{bottom:653.149947pt;}
.y25f{bottom:657.760000pt;}
.y37{bottom:664.160000pt;}
.y9{bottom:665.600000pt;}
.y14e{bottom:669.930747pt;}
.y218{bottom:669.933440pt;}
.y285{bottom:669.934587pt;}
.y1e0{bottom:669.936640pt;}
.y61{bottom:669.945467pt;}
.y25e{bottom:677.760000pt;}
.y36{bottom:685.919867pt;}
.y14d{bottom:686.888187pt;}
.y217{bottom:686.890880pt;}
.y284{bottom:686.892027pt;}
.y1df{bottom:686.894080pt;}
.y60{bottom:686.902907pt;}
.y8{bottom:688.310720pt;}
.y25c{bottom:697.760000pt;}
.y35{bottom:700.636000pt;}
.y14c{bottom:703.683707pt;}
.y216{bottom:703.686400pt;}
.y283{bottom:703.687547pt;}
.y1de{bottom:703.689600pt;}
.y5f{bottom:703.698427pt;}
.y7{bottom:714.400000pt;}
.y34{bottom:715.359867pt;}
.y251{bottom:717.760000pt;}
.y215{bottom:720.332027pt;}
.y14b{bottom:720.641147pt;}
.y282{bottom:720.644987pt;}
.y1dd{bottom:720.647040pt;}
.y5e{bottom:720.655867pt;}
.y254{bottom:731.516000pt;}
.y258{bottom:736.640000pt;}
.y14a{bottom:737.436667pt;}
.y281{bottom:737.440507pt;}
.y1dc{bottom:737.442560pt;}
.y5d{bottom:737.451387pt;}
.y6{bottom:737.759867pt;}
.y33{bottom:737.919867pt;}
.y253{bottom:745.280000pt;}
.y25b{bottom:745.759867pt;}
.y259{bottom:749.440000pt;}
.y256{bottom:750.560000pt;}
.y32{bottom:752.643867pt;}
.y149{bottom:754.394107pt;}
.y280{bottom:754.397947pt;}
.y5c{bottom:754.408827pt;}
.y5{bottom:755.030720pt;}
.y257{bottom:760.000000pt;}
.y25a{bottom:765.120000pt;}
.y31{bottom:767.199867pt;}
.y148{bottom:770.880507pt;}
.y27f{bottom:771.193467pt;}
.y5b{bottom:771.204347pt;}
.y250{bottom:773.915040pt;}
.y4{bottom:781.120000pt;}
.y27e{bottom:787.679867pt;}
.y5a{bottom:787.999867pt;}
.y24f{bottom:789.280000pt;}
.y30{bottom:789.759867pt;}
.y2f{bottom:833.919867pt;}
.y1{bottom:835.839867pt;}
.h2e{height:15.198667pt;}
.h2b{height:19.360000pt;}
.h2d{height:19.361333pt;}
.he{height:28.078125pt;}
.h6{height:33.257812pt;}
.hd{height:33.305813pt;}
.hf{height:36.805312pt;}
.h3{height:37.624687pt;}
.h2{height:42.117188pt;}
.h9{height:42.149188pt;}
.ha{height:42.234375pt;}
.h2c{height:44.078125pt;}
.hb{height:46.609688pt;}
.h10{height:46.610221pt;}
.h21{height:46.689688pt;}
.h8{height:51.663750pt;}
.h12{height:51.807500pt;}
.h11{height:52.296250pt;}
.h2a{height:52.320000pt;}
.h1d{height:53.174038pt;}
.h29{height:53.319958pt;}
.h13{height:53.330198pt;}
.h27{height:53.376278pt;}
.h25{height:53.404438pt;}
.h1e{height:53.417238pt;}
.h1c{height:53.422358pt;}
.h14{height:53.440278pt;}
.h23{height:53.485825pt;}
.h28{height:53.488385pt;}
.h1b{height:53.496065pt;}
.h16{height:53.496598pt;}
.h19{height:53.514518pt;}
.h17{height:53.542145pt;}
.h15{height:53.542678pt;}
.h26{height:53.588225pt;}
.h1f{height:53.616385pt;}
.h24{height:53.631745pt;}
.h18{height:53.634305pt;}
.h20{height:53.644545pt;}
.h22{height:53.654785pt;}
.h1a{height:53.662465pt;}
.hc{height:56.156250pt;}
.h4{height:58.977187pt;}
.h7{height:65.702812pt;}
.h5{height:65.939087pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w2{width:44.321333pt;}
.w5{width:49.600000pt;}
.w4{width:49.601333pt;}
.w3{width:56.160000pt;}
.w6{width:58.240000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x27{left:6.880000pt;}
.x3c{left:11.200000pt;}
.x39{left:12.160000pt;}
.x3b{left:17.120000pt;}
.x29{left:18.240000pt;}
.x3e{left:20.000000pt;}
.x40{left:25.440000pt;}
.x2a{left:32.320000pt;}
.x3f{left:40.000000pt;}
.x3d{left:46.560000pt;}
.x3a{left:49.280000pt;}
.x26{left:77.440000pt;}
.x1{left:85.120000pt;}
.x8{left:86.570240pt;}
.xd{left:89.123840pt;}
.x41{left:90.400000pt;}
.x10{left:91.360000pt;}
.x19{left:97.440000pt;}
.x1a{left:98.396800pt;}
.x13{left:102.062720pt;}
.x3{left:104.000000pt;}
.x21{left:108.642560pt;}
.xb{left:110.556160pt;}
.xf{left:111.668480pt;}
.x4{left:113.600000pt;}
.x1d{left:114.706560pt;}
.x22{left:117.111040pt;}
.x16{left:118.724480pt;}
.x28{left:122.400000pt;}
.xe{left:142.233600pt;}
.xa{left:148.160000pt;}
.x6{left:150.720000pt;}
.x23{left:152.155520pt;}
.x2b{left:154.720000pt;}
.x11{left:164.960000pt;}
.x24{left:172.160000pt;}
.x20{left:176.163200pt;}
.x2c{left:179.200000pt;}
.x42{left:195.524480pt;}
.x2d{left:211.520000pt;}
.x25{left:213.919520pt;}
.x14{left:218.704000pt;}
.x1f{left:223.178240pt;}
.x9{left:224.967680pt;}
.x2e{left:236.000000pt;}
.x1b{left:244.154240pt;}
.x2f{left:254.240000pt;}
.x30{left:292.800000pt;}
.xc{left:321.287680pt;}
.x5{left:328.320000pt;}
.x31{left:349.600000pt;}
.x32{left:381.920000pt;}
.x33{left:399.840000pt;}
.x34{left:432.160000pt;}
.x35{left:450.080000pt;}
.x36{left:468.320000pt;}
.x2{left:486.573280pt;}
.x37{left:506.880000pt;}
.x1c{left:526.233600pt;}
.x1e{left:527.823360pt;}
.x38{left:539.200000pt;}
.x15{left:546.547840pt;}
.x18{left:549.761920pt;}
.x17{left:551.374720pt;}
.x7{left:557.448320pt;}
.x12{left:561.119360pt;}
}




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