
    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_df1c88832415bcf32b414578.woff')format("woff");}.ff1{font-family:ff1;line-height:1.186035;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_bce9658f3d6235ab18e12a98.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_a69a211a4d345bc5f44630cb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.143555;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_00f095106b6e3d95e369a646.woff')format("woff");}.ff4{font-family:ff4;line-height:1.160156;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_01f5e853d3f56ecefe56f44d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.173340;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_d7e10bd6b892d3913222d876.woff')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_69ca4a30cdcc5bbd5b2e7622.woff')format("woff");}.ff7{font-family:ff7;line-height:0.876465;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_7c00f0d93cd34afeb9f8bebe.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:26.975880px;}
.ls26{letter-spacing:-0.894240px;}
.ls3c{letter-spacing:-0.819000px;}
.ls3e{letter-spacing:-0.756000px;}
.ls3b{letter-spacing:-0.693000px;}
.ls3d{letter-spacing:-0.630000px;}
.ls45{letter-spacing:-0.408960px;}
.ls6f{letter-spacing:-0.378000px;}
.ls41{letter-spacing:-0.357840px;}
.ls76{letter-spacing:-0.324000px;}
.ls40{letter-spacing:-0.315000px;}
.ls2a{letter-spacing:-0.255600px;}
.ls18{letter-spacing:-0.240480px;}
.ls42{letter-spacing:-0.204480px;}
.ls1f{letter-spacing:-0.189000px;}
.ls32{letter-spacing:-0.170640px;}
.ls12{letter-spacing:-0.162000px;}
.ls50{letter-spacing:-0.153360px;}
.lsf{letter-spacing:-0.131760px;}
.ls1e{letter-spacing:-0.126000px;}
.ls39{letter-spacing:-0.113760px;}
.ls8{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.102240px;}
.lsc{letter-spacing:-0.077760px;}
.lse{letter-spacing:-0.065880px;}
.ls1d{letter-spacing:-0.063000px;}
.ls3a{letter-spacing:-0.056880px;}
.ls1c{letter-spacing:-0.054000px;}
.ls28{letter-spacing:-0.051120px;}
.lsb{letter-spacing:-0.038880px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015336px;}
.ls73{letter-spacing:0.032400px;}
.ls19{letter-spacing:0.045000px;}
.ls11{letter-spacing:0.051120px;}
.ls14{letter-spacing:0.054000px;}
.ls33{letter-spacing:0.056880px;}
.ls16{letter-spacing:0.063000px;}
.ls10{letter-spacing:0.065880px;}
.ls4c{letter-spacing:0.069300px;}
.ls21{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.077760px;}
.ls5{letter-spacing:0.097200px;}
.ls43{letter-spacing:0.102240px;}
.ls69{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.113760px;}
.ls67{letter-spacing:0.118800px;}
.ls22{letter-spacing:0.120240px;}
.ls31{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.131760px;}
.ls3{letter-spacing:0.143640px;}
.ls2b{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.155520px;}
.ls1b{letter-spacing:0.162000px;}
.ls52{letter-spacing:0.170640px;}
.ls36{letter-spacing:0.177120px;}
.ls0{letter-spacing:0.189000px;}
.ls29{letter-spacing:0.204480px;}
.ls63{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.225000px;}
.ls71{letter-spacing:0.232200px;}
.ls2{letter-spacing:0.233280px;}
.ls5b{letter-spacing:0.252000px;}
.ls70{letter-spacing:0.270000px;}
.ls1a{letter-spacing:0.272160px;}
.ls62{letter-spacing:0.318600px;}
.ls13{letter-spacing:0.324000px;}
.ls75{letter-spacing:0.340200px;}
.ls27{letter-spacing:0.378000px;}
.ls6b{letter-spacing:0.405000px;}
.ls30{letter-spacing:0.408960px;}
.ls61{letter-spacing:0.409500px;}
.ls6d{letter-spacing:0.550800px;}
.ls58{letter-spacing:0.625680px;}
.ls24{letter-spacing:0.667800px;}
.ls6c{letter-spacing:0.702000px;}
.ls4f{letter-spacing:0.710568px;}
.ls5f{letter-spacing:0.882000px;}
.ls57{letter-spacing:0.966960px;}
.ls68{letter-spacing:1.026000px;}
.ls5e{letter-spacing:1.073520px;}
.ls56{letter-spacing:1.251360px;}
.ls37{letter-spacing:1.308240px;}
.ls5d{letter-spacing:1.482480px;}
.ls74{letter-spacing:1.782000px;}
.ls47{letter-spacing:1.789200px;}
.ls23{letter-spacing:1.827000px;}
.ls25{letter-spacing:1.840320px;}
.ls4d{letter-spacing:1.934100px;}
.ls34{letter-spacing:2.047680px;}
.ls72{letter-spacing:2.106000px;}
.ls4a{letter-spacing:2.198160px;}
.ls2e{letter-spacing:2.205000px;}
.ls6a{letter-spacing:2.430000px;}
.ls66{letter-spacing:2.484000px;}
.ls2d{letter-spacing:2.520000px;}
.ls48{letter-spacing:2.556000px;}
.ls7{letter-spacing:3.186000px;}
.ls46{letter-spacing:3.276000px;}
.ls77{letter-spacing:3.564000px;}
.ls4e{letter-spacing:3.565800px;}
.ls5a{letter-spacing:3.591000px;}
.ls6e{letter-spacing:3.888000px;}
.ls38{letter-spacing:3.969000px;}
.ls6{letter-spacing:4.266000px;}
.ls51{letter-spacing:4.347000px;}
.ls49{letter-spacing:4.406544px;}
.ls5c{letter-spacing:4.428900px;}
.ls17{letter-spacing:4.680900px;}
.ls2f{letter-spacing:5.040000px;}
.ls4b{letter-spacing:6.111000px;}
.ls15{letter-spacing:6.226200px;}
.ls64{letter-spacing:6.426000px;}
.ls59{letter-spacing:6.489000px;}
.ls60{letter-spacing:7.245000px;}
.ls53{letter-spacing:7.560000px;}
.ls2c{letter-spacing:7.786800px;}
.ls3f{letter-spacing:7.938000px;}
.ls55{letter-spacing:8.038800px;}
.ls54{letter-spacing:8.316000px;}
.ls65{letter-spacing:70.524000px;}
.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;}
}
.ws10c{word-spacing:-54.270000px;}
.ws10d{word-spacing:-54.000000px;}
.wsef{word-spacing:-17.514000px;}
.ws8f{word-spacing:-17.451000px;}
.ws71{word-spacing:-17.325000px;}
.ws2b{word-spacing:-17.262000px;}
.ws2a{word-spacing:-17.199000px;}
.ws2d{word-spacing:-17.136000px;}
.ws2c{word-spacing:-17.073000px;}
.ws4f{word-spacing:-16.593120px;}
.ws26{word-spacing:-16.232400px;}
.wsd3{word-spacing:-15.698880px;}
.wsd1{word-spacing:-15.642000px;}
.ws8e{word-spacing:-15.585120px;}
.ws8d{word-spacing:-15.528240px;}
.wsd2{word-spacing:-15.414480px;}
.ws3{word-spacing:-15.225840px;}
.ws127{word-spacing:-15.066000px;}
.ws29{word-spacing:-14.958000px;}
.wsf7{word-spacing:-14.904000px;}
.ws8{word-spacing:-14.850000px;}
.ws7{word-spacing:-14.796000px;}
.ws0{word-spacing:-14.688000px;}
.ws28{word-spacing:-14.634000px;}
.ws126{word-spacing:-14.472000px;}
.ws51{word-spacing:-14.211360px;}
.ws6{word-spacing:-14.058000px;}
.ws5{word-spacing:-14.022216px;}
.ws4{word-spacing:-14.006880px;}
.ws50{word-spacing:-13.955760px;}
.wsb8{word-spacing:-13.904640px;}
.wsc4{word-spacing:-13.853520px;}
.wsa6{word-spacing:-13.802400px;}
.wsa5{word-spacing:-13.649040px;}
.wsa7{word-spacing:-13.597920px;}
.ws27{word-spacing:-10.925280px;}
.ws1{word-spacing:-10.653120px;}
.ws2{word-spacing:-10.575360px;}
.wsa9{word-spacing:-4.284000px;}
.ws97{word-spacing:-3.906000px;}
.ws96{word-spacing:-3.780000px;}
.ws75{word-spacing:-3.591000px;}
.wse9{word-spacing:-3.578400px;}
.wsc5{word-spacing:-3.465000px;}
.wsd5{word-spacing:-3.412800px;}
.wsd6{word-spacing:-3.355920px;}
.ws102{word-spacing:-3.294000px;}
.ws6d{word-spacing:-3.220560px;}
.ws4b{word-spacing:-3.213000px;}
.ws101{word-spacing:-3.186000px;}
.ws3c{word-spacing:-3.087000px;}
.ws128{word-spacing:-2.916000px;}
.ws69{word-spacing:-2.862720px;}
.ws5b{word-spacing:-2.835000px;}
.ws117{word-spacing:-2.808000px;}
.ws116{word-spacing:-2.754000px;}
.ws82{word-spacing:-2.709000px;}
.ws135{word-spacing:-2.700000px;}
.ws5e{word-spacing:-2.520000px;}
.wsb3{word-spacing:-2.504880px;}
.ws85{word-spacing:-2.445840px;}
.ws134{word-spacing:-2.430000px;}
.ws73{word-spacing:-2.394000px;}
.ws9a{word-spacing:-2.332080px;}
.ws111{word-spacing:-2.214000px;}
.ws10a{word-spacing:-2.160000px;}
.ws81{word-spacing:-2.142000px;}
.ws110{word-spacing:-2.106000px;}
.wsc2{word-spacing:-2.095920px;}
.ws10f{word-spacing:-2.052000px;}
.wse3{word-spacing:-2.016000px;}
.ws11c{word-spacing:-1.944000px;}
.ws88{word-spacing:-1.933920px;}
.ws16{word-spacing:-1.836000px;}
.ws55{word-spacing:-1.764000px;}
.ws8b{word-spacing:-1.738080px;}
.ws12d{word-spacing:-1.728000px;}
.wsca{word-spacing:-1.706400px;}
.wsa0{word-spacing:-1.701000px;}
.ws83{word-spacing:-1.638000px;}
.ws11b{word-spacing:-1.620000px;}
.ws11a{word-spacing:-1.458000px;}
.ws76{word-spacing:-1.386000px;}
.ws67{word-spacing:-1.380240px;}
.ws119{word-spacing:-1.350000px;}
.wsf3{word-spacing:-1.323000px;}
.ws78{word-spacing:-1.260000px;}
.wscb{word-spacing:-1.251360px;}
.ws23{word-spacing:-1.134000px;}
.ws38{word-spacing:-1.071000px;}
.ws136{word-spacing:-1.026000px;}
.wsbf{word-spacing:-1.022400px;}
.ws72{word-spacing:-0.945000px;}
.wsd9{word-spacing:-0.853200px;}
.wse1{word-spacing:-0.817920px;}
.wsfc{word-spacing:-0.810000px;}
.wsb4{word-spacing:-0.766800px;}
.wsfd{word-spacing:-0.702000px;}
.ws9c{word-spacing:-0.693000px;}
.wsad{word-spacing:-0.664560px;}
.ws84{word-spacing:-0.625680px;}
.ws58{word-spacing:-0.567000px;}
.wsc0{word-spacing:-0.460080px;}
.ws18{word-spacing:-0.378000px;}
.ws8c{word-spacing:-0.357840px;}
.ws20{word-spacing:-0.324000px;}
.ws74{word-spacing:-0.315000px;}
.ws15{word-spacing:-0.306720px;}
.wscd{word-spacing:-0.284400px;}
.ws107{word-spacing:-0.270000px;}
.wse6{word-spacing:-0.252000px;}
.ws53{word-spacing:-0.233280px;}
.ws93{word-spacing:-0.227520px;}
.ws19{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.189000px;}
.ws91{word-spacing:-0.170640px;}
.ws106{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.143640px;}
.ws30{word-spacing:-0.135000px;}
.ws12{word-spacing:-0.131760px;}
.ws7f{word-spacing:-0.126000px;}
.wsa{word-spacing:-0.116640px;}
.ws100{word-spacing:-0.108000px;}
.wsb1{word-spacing:-0.102240px;}
.ws52{word-spacing:-0.090000px;}
.ws2e{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.065880px;}
.ws22{word-spacing:-0.054000px;}
.wsc3{word-spacing:-0.051120px;}
.ws9{word-spacing:0.000000px;}
.wsb{word-spacing:0.038880px;}
.ws14{word-spacing:0.051120px;}
.ws36{word-spacing:0.054000px;}
.ws9b{word-spacing:0.056880px;}
.ws77{word-spacing:0.063000px;}
.ws10{word-spacing:0.065880px;}
.wsb5{word-spacing:0.102240px;}
.wsfb{word-spacing:0.108000px;}
.ws5c{word-spacing:0.126000px;}
.wse{word-spacing:0.131760px;}
.wsd{word-spacing:0.155520px;}
.ws24{word-spacing:0.162000px;}
.ws87{word-spacing:0.170640px;}
.wsf{word-spacing:0.197640px;}
.wsc{word-spacing:0.233280px;}
.ws6b{word-spacing:0.255600px;}
.ws13e{word-spacing:0.270000px;}
.ws2f{word-spacing:0.288000px;}
.wsaa{word-spacing:0.315000px;}
.ws61{word-spacing:0.378000px;}
.ws92{word-spacing:0.398160px;}
.wsaf{word-spacing:0.408960px;}
.wsfe{word-spacing:0.432000px;}
.ws63{word-spacing:0.504000px;}
.ws12c{word-spacing:0.540000px;}
.wsc9{word-spacing:0.568800px;}
.wsde{word-spacing:0.625680px;}
.wsa1{word-spacing:0.630000px;}
.ws108{word-spacing:0.702000px;}
.ws5d{word-spacing:0.756000px;}
.wsae{word-spacing:0.766800px;}
.wsdd{word-spacing:0.796320px;}
.ws109{word-spacing:0.810000px;}
.wsf2{word-spacing:0.819000px;}
.ws11f{word-spacing:0.864000px;}
.ws4e{word-spacing:0.882000px;}
.ws99{word-spacing:0.910080px;}
.wsdc{word-spacing:0.966960px;}
.ws1d{word-spacing:1.026000px;}
.wsf6{word-spacing:1.071000px;}
.wsdb{word-spacing:1.080720px;}
.ws66{word-spacing:1.124640px;}
.ws39{word-spacing:1.134000px;}
.ws98{word-spacing:1.137600px;}
.ws1c{word-spacing:1.188000px;}
.ws95{word-spacing:1.260000px;}
.wsee{word-spacing:1.329120px;}
.ws13c{word-spacing:1.350000px;}
.ws40{word-spacing:1.386000px;}
.ws31{word-spacing:1.404000px;}
.ws3f{word-spacing:1.449000px;}
.ws65{word-spacing:1.482480px;}
.ws43{word-spacing:1.575000px;}
.wsd8{word-spacing:1.649520px;}
.wsd7{word-spacing:1.706400px;}
.ws59{word-spacing:1.764000px;}
.ws32{word-spacing:1.782000px;}
.ws42{word-spacing:1.827000px;}
.ws6a{word-spacing:1.840320px;}
.ws12b{word-spacing:1.890000px;}
.wsff{word-spacing:1.944000px;}
.ws54{word-spacing:1.953000px;}
.ws90{word-spacing:1.990800px;}
.ws104{word-spacing:2.052000px;}
.ws103{word-spacing:2.106000px;}
.ws113{word-spacing:2.160000px;}
.wsbe{word-spacing:2.198160px;}
.ws45{word-spacing:2.205000px;}
.ws112{word-spacing:2.214000px;}
.wsc1{word-spacing:2.249280px;}
.wsa2{word-spacing:2.268000px;}
.ws4c{word-spacing:2.331000px;}
.wsf8{word-spacing:2.430000px;}
.wsfa{word-spacing:2.484000px;}
.ws3b{word-spacing:2.520000px;}
.wsb6{word-spacing:2.556000px;}
.wsf9{word-spacing:2.592000px;}
.wsbc{word-spacing:2.607120px;}
.ws3a{word-spacing:2.646000px;}
.ws17{word-spacing:2.862000px;}
.ws49{word-spacing:2.898000px;}
.wse7{word-spacing:2.913840px;}
.wsc8{word-spacing:2.957760px;}
.ws48{word-spacing:3.024000px;}
.ws125{word-spacing:3.186000px;}
.ws68{word-spacing:3.271680px;}
.ws5f{word-spacing:3.276000px;}
.ws25{word-spacing:3.348000px;}
.ws60{word-spacing:3.402000px;}
.ws120{word-spacing:3.510000px;}
.ws13d{word-spacing:3.564000px;}
.ws121{word-spacing:3.618000px;}
.wse0{word-spacing:3.629520px;}
.ws44{word-spacing:3.654000px;}
.ws122{word-spacing:3.672000px;}
.wsa3{word-spacing:3.717000px;}
.ws21{word-spacing:3.726000px;}
.ws5a{word-spacing:3.780000px;}
.wsdf{word-spacing:3.936240px;}
.wsa4{word-spacing:3.969000px;}
.ws70{word-spacing:3.987360px;}
.ws118{word-spacing:4.050000px;}
.ws4d{word-spacing:4.095000px;}
.ws10b{word-spacing:4.104000px;}
.ws1a{word-spacing:4.266000px;}
.ws114{word-spacing:4.320000px;}
.wsbd{word-spacing:4.345200px;}
.ws7c{word-spacing:4.347000px;}
.ws115{word-spacing:4.374000px;}
.ws12a{word-spacing:4.428000px;}
.ws80{word-spacing:4.473000px;}
.ws138{word-spacing:4.644000px;}
.wse4{word-spacing:4.662000px;}
.wsb2{word-spacing:4.703040px;}
.ws47{word-spacing:4.725000px;}
.ws137{word-spacing:4.806000px;}
.ws7b{word-spacing:4.851000px;}
.ws124{word-spacing:4.860000px;}
.ws1e{word-spacing:5.022000px;}
.ws46{word-spacing:5.040000px;}
.ws8a{word-spacing:5.060880px;}
.ws1f{word-spacing:5.130000px;}
.ws37{word-spacing:5.166000px;}
.ws123{word-spacing:5.184000px;}
.ws89{word-spacing:5.232960px;}
.ws35{word-spacing:5.346000px;}
.wsf0{word-spacing:5.418000px;}
.wse5{word-spacing:5.418720px;}
.ws129{word-spacing:5.508000px;}
.wscf{word-spacing:5.544000px;}
.ws1b{word-spacing:5.724000px;}
.wsb7{word-spacing:5.776560px;}
.wsea{word-spacing:5.796000px;}
.wsd4{word-spacing:5.858640px;}
.ws105{word-spacing:5.886000px;}
.ws41{word-spacing:5.922000px;}
.wsda{word-spacing:5.972400px;}
.ws6e{word-spacing:5.981040px;}
.ws33{word-spacing:6.102000px;}
.ws6c{word-spacing:6.134400px;}
.ws13b{word-spacing:6.156000px;}
.wsba{word-spacing:6.174000px;}
.ws34{word-spacing:6.264000px;}
.wsb9{word-spacing:6.300000px;}
.wse8{word-spacing:6.338880px;}
.ws94{word-spacing:6.426000px;}
.ws3e{word-spacing:6.489000px;}
.wsb0{word-spacing:6.543360px;}
.ws3d{word-spacing:6.615000px;}
.ws11e{word-spacing:6.804000px;}
.ws11d{word-spacing:6.858000px;}
.wsab{word-spacing:6.867000px;}
.ws6f{word-spacing:6.901200px;}
.wsd0{word-spacing:6.993000px;}
.ws133{word-spacing:7.020000px;}
.ws86{word-spacing:7.053120px;}
.ws132{word-spacing:7.182000px;}
.wsce{word-spacing:7.245000px;}
.wscc{word-spacing:7.280640px;}
.ws131{word-spacing:7.290000px;}
.ws57{word-spacing:7.371000px;}
.ws12f{word-spacing:7.506000px;}
.ws79{word-spacing:7.560000px;}
.ws12e{word-spacing:7.614000px;}
.ws130{word-spacing:7.668000px;}
.ws7d{word-spacing:7.686000px;}
.wsac{word-spacing:7.938000px;}
.wsc7{word-spacing:8.064000px;}
.ws56{word-spacing:8.316000px;}
.wsc6{word-spacing:8.442000px;}
.ws10e{word-spacing:8.586000px;}
.wsec{word-spacing:8.694000px;}
.wse2{word-spacing:8.820000px;}
.ws4a{word-spacing:9.387000px;}
.wsf5{word-spacing:9.765000px;}
.wsa8{word-spacing:10.080000px;}
.ws7e{word-spacing:10.206000px;}
.wsed{word-spacing:10.836000px;}
.ws9d{word-spacing:10.899000px;}
.wseb{word-spacing:10.962000px;}
.wsf1{word-spacing:11.529000px;}
.wsbb{word-spacing:11.907000px;}
.ws7a{word-spacing:12.033000px;}
.ws9e{word-spacing:13.293000px;}
.ws9f{word-spacing:13.797000px;}
.wsf4{word-spacing:15.498000px;}
.ws64{word-spacing:18.396000px;}
.ws139{word-spacing:35.586000px;}
.ws13a{word-spacing:35.694000px;}
._5{margin-left:-3.285720px;}
._9{margin-left:-2.205000px;}
._1{margin-left:-1.119960px;}
._0{width:1.474200px;}
._2{width:3.294000px;}
._3{width:5.166000px;}
._7{width:6.552000px;}
._6{width:7.648200px;}
._a{width:9.234000px;}
._8{width:10.861200px;}
._4{width:28.882800px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.120000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:2.970000px;}
.y2c{bottom:44.817120px;}
.y1{bottom:45.630000px;}
.y2b{bottom:56.520000px;}
.yee{bottom:96.480000px;}
.yc7{bottom:96.490440px;}
.y1d9{bottom:96.493320px;}
.y1fc{bottom:96.496050px;}
.y155{bottom:96.498540px;}
.y1c8{bottom:96.506640px;}
.y1bc{bottom:96.509520px;}
.y18e{bottom:96.514740px;}
.y80{bottom:96.517080px;}
.y139{bottom:96.541380px;}
.y119{bottom:96.559920px;}
.y1e5{bottom:105.770250px;}
.ya6{bottom:107.581500px;}
.y29{bottom:108.135000px;}
.yd{bottom:110.970000px;}
.yc6{bottom:111.877560px;}
.y1d8{bottom:111.880440px;}
.y1fb{bottom:111.883170px;}
.y154{bottom:111.885660px;}
.y1c7{bottom:111.893760px;}
.y1bb{bottom:111.896640px;}
.y18d{bottom:111.901860px;}
.y7f{bottom:111.904200px;}
.y138{bottom:111.928500px;}
.y118{bottom:111.947040px;}
.yed{bottom:113.760000px;}
.y16{bottom:114.120000px;}
.y206{bottom:114.763500px;}
.y27a{bottom:116.185350px;}
.y28{bottom:123.889500px;}
.y1e4{bottom:124.670250px;}
.ya5{bottom:126.481500px;}
.yc5{bottom:127.175220px;}
.y1d7{bottom:127.178100px;}
.y1fa{bottom:127.180830px;}
.y153{bottom:127.183320px;}
.y1c6{bottom:127.191420px;}
.y1ba{bottom:127.194300px;}
.y18c{bottom:127.199520px;}
.y7e{bottom:127.201860px;}
.y137{bottom:127.226160px;}
.y117{bottom:127.244700px;}
.y22a{bottom:129.865500px;}
.y279{bottom:133.465350px;}
.y205{bottom:133.663500px;}
.yec{bottom:136.356750px;}
.y27{bottom:139.644000px;}
.y252{bottom:141.659850px;}
.yc4{bottom:142.562340px;}
.y1d6{bottom:142.565220px;}
.y1f9{bottom:142.567950px;}
.y152{bottom:142.570440px;}
.y1c5{bottom:142.578540px;}
.y1b9{bottom:142.581420px;}
.y18b{bottom:142.586640px;}
.y7d{bottom:142.588980px;}
.y136{bottom:142.613280px;}
.y116{bottom:142.631820px;}
.y1e3{bottom:143.570250px;}
.ya4{bottom:145.381500px;}
.y278{bottom:150.745350px;}
.y229{bottom:151.560000px;}
.y204{bottom:152.563500px;}
.yeb{bottom:155.256750px;}
.y26{bottom:155.398500px;}
.yc3{bottom:157.860000px;}
.y1d5{bottom:157.862880px;}
.y1f8{bottom:157.865610px;}
.y151{bottom:157.868100px;}
.y1c4{bottom:157.876200px;}
.y1b8{bottom:157.879080px;}
.y18a{bottom:157.884300px;}
.y7c{bottom:157.886640px;}
.y135{bottom:157.910940px;}
.y115{bottom:157.929480px;}
.y251{bottom:158.939850px;}
.y1e2{bottom:162.470250px;}
.ya3{bottom:164.281500px;}
.y277{bottom:167.930850px;}
.y53{bottom:170.106750px;}
.y203{bottom:171.463500px;}
.y25{bottom:172.678500px;}
.y1d4{bottom:173.250000px;}
.y1f7{bottom:173.252730px;}
.y150{bottom:173.255220px;}
.y1c3{bottom:173.263320px;}
.y1b7{bottom:173.266200px;}
.y189{bottom:173.271420px;}
.y7b{bottom:173.273760px;}
.y134{bottom:173.298060px;}
.y114{bottom:173.316600px;}
.y228{bottom:173.335500px;}
.yea{bottom:174.156750px;}
.yc2{bottom:175.139850px;}
.y250{bottom:180.715350px;}
.y1e1{bottom:181.370250px;}
.ya2{bottom:183.181500px;}
.y1f6{bottom:188.639850px;}
.y14f{bottom:188.642340px;}
.y1c2{bottom:188.650440px;}
.y1b6{bottom:188.653320px;}
.y188{bottom:188.658540px;}
.y7a{bottom:188.660880px;}
.y133{bottom:188.685180px;}
.y113{bottom:188.703720px;}
.y52{bottom:189.006750px;}
.y276{bottom:189.706350px;}
.y24{bottom:189.864000px;}
.y202{bottom:190.363500px;}
.y1d3{bottom:190.530000px;}
.y227{bottom:190.615500px;}
.ye9{bottom:193.056750px;}
.y24f{bottom:197.995350px;}
.yc1{bottom:201.156480px;}
.ya1{bottom:202.081500px;}
.y14e{bottom:203.940000px;}
.y1c1{bottom:203.948100px;}
.y1b5{bottom:203.950980px;}
.y187{bottom:203.956200px;}
.y79{bottom:203.958540px;}
.y132{bottom:203.982840px;}
.y112{bottom:204.001380px;}
.y23{bottom:205.618500px;}
.y1f5{bottom:205.830000px;}
.y275{bottom:206.986350px;}
.y51{bottom:207.906750px;}
.y1a2{bottom:209.250000px;}
.y1e0{bottom:209.263500px;}
.y16d{bottom:211.050000px;}
.ye8{bottom:211.956750px;}
.y226{bottom:212.310000px;}
.y1c0{bottom:219.335220px;}
.y1b4{bottom:219.338100px;}
.y186{bottom:219.343320px;}
.y78{bottom:219.345660px;}
.y131{bottom:219.369960px;}
.y111{bottom:219.388500px;}
.y24e{bottom:219.689850px;}
.yc0{bottom:220.054860px;}
.ya0{bottom:220.981500px;}
.y14d{bottom:221.220000px;}
.y22{bottom:221.373000px;}
.y274{bottom:224.171850px;}
.y50{bottom:226.806750px;}
.y1a1{bottom:228.150000px;}
.y1df{bottom:228.163500px;}
.y1d2{bottom:229.050000px;}
.y225{bottom:229.590000px;}
.y16c{bottom:229.950000px;}
.y1f4{bottom:229.974750px;}
.ye7{bottom:230.856750px;}
.y1bf{bottom:234.632880px;}
.y1b3{bottom:234.635760px;}
.y185{bottom:234.640980px;}
.y77{bottom:234.643320px;}
.y130{bottom:234.667620px;}
.y110{bottom:234.686160px;}
.y24d{bottom:236.969850px;}
.y21{bottom:237.127500px;}
.ybf{bottom:238.953240px;}
.y9f{bottom:239.881500px;}
.y4f{bottom:245.706750px;}
.y273{bottom:245.947350px;}
.y224{bottom:246.870000px;}
.y1a0{bottom:247.050000px;}
.y1de{bottom:247.063500px;}
.y1d1{bottom:247.963500px;}
.y16b{bottom:248.850000px;}
.y1f3{bottom:248.874750px;}
.ye6{bottom:249.756750px;}
.y1be{bottom:250.020000px;}
.y1b2{bottom:250.022880px;}
.y184{bottom:250.028100px;}
.y76{bottom:250.030440px;}
.y12f{bottom:250.054740px;}
.y10f{bottom:250.073280px;}
.y20{bottom:252.882000px;}
.y24c{bottom:254.249850px;}
.ybe{bottom:257.851620px;}
.y4e{bottom:264.606750px;}
.y1b1{bottom:265.410000px;}
.y183{bottom:265.415220px;}
.y75{bottom:265.417560px;}
.y12e{bottom:265.441860px;}
.y10e{bottom:265.460400px;}
.y19f{bottom:265.950000px;}
.y14c{bottom:265.956750px;}
.y1dd{bottom:265.963500px;}
.y1d0{bottom:266.863500px;}
.y1bd{bottom:267.300000px;}
.y272{bottom:267.641850px;}
.y16a{bottom:267.756750px;}
.y9e{bottom:267.774750px;}
.y223{bottom:268.564500px;}
.y1f{bottom:268.636500px;}
.ye5{bottom:268.656750px;}
.y24b{bottom:275.944350px;}
.ybd{bottom:276.750000px;}
.y182{bottom:280.712880px;}
.y74{bottom:280.715220px;}
.y12d{bottom:280.739520px;}
.y10d{bottom:280.758060px;}
.y1b0{bottom:282.600000px;}
.y4d{bottom:283.506750px;}
.y1e{bottom:284.391000px;}
.y19e{bottom:284.850000px;}
.y14b{bottom:284.856750px;}
.y1dc{bottom:284.863500px;}
.y271{bottom:284.921850px;}
.y1cf{bottom:285.763500px;}
.y222{bottom:285.844500px;}
.y169{bottom:286.656750px;}
.y9d{bottom:286.674750px;}
.y24a{bottom:293.224350px;}
.y181{bottom:296.100000px;}
.y73{bottom:296.102340px;}
.y12c{bottom:296.126640px;}
.y10c{bottom:296.145180px;}
.ye4{bottom:296.550000px;}
.y1d{bottom:300.145500px;}
.y4c{bottom:302.406750px;}
.y19d{bottom:303.750000px;}
.y14a{bottom:303.756750px;}
.y1db{bottom:303.763500px;}
.y1ce{bottom:304.663500px;}
.y1af{bottom:304.670250px;}
.y168{bottom:305.556750px;}
.y9c{bottom:305.574750px;}
.y270{bottom:306.697350px;}
.y221{bottom:307.620000px;}
.y72{bottom:311.400000px;}
.y12b{bottom:311.424300px;}
.y10b{bottom:311.442840px;}
.y180{bottom:313.290000px;}
.ybc{bottom:313.650000px;}
.y249{bottom:314.918850px;}
.ye3{bottom:315.450000px;}
.y1c{bottom:315.900000px;}
.y4b{bottom:321.306750px;}
.y19c{bottom:322.650000px;}
.y149{bottom:322.656750px;}
.y1da{bottom:322.663500px;}
.y1cd{bottom:323.563500px;}
.y1ae{bottom:323.570250px;}
.y167{bottom:324.456750px;}
.y9b{bottom:324.474750px;}
.y220{bottom:324.900000px;}
.y12a{bottom:326.811420px;}
.y10a{bottom:326.829960px;}
.y26f{bottom:328.391850px;}
.y71{bottom:328.680000px;}
.ybb{bottom:332.550000px;}
.ye2{bottom:334.350000px;}
.y248{bottom:336.694350px;}
.y4a{bottom:340.206750px;}
.y1b{bottom:341.286750px;}
.y148{bottom:341.556750px;}
.y19b{bottom:341.563500px;}
.y21f{bottom:342.085500px;}
.y129{bottom:342.109080px;}
.y109{bottom:342.127620px;}
.y17f{bottom:342.450000px;}
.y1cc{bottom:342.463500px;}
.y1ad{bottom:342.470250px;}
.y166{bottom:343.356750px;}
.y9a{bottom:343.374750px;}
.y26e{bottom:345.671850px;}
.yba{bottom:351.450000px;}
.y70{bottom:351.456750px;}
.ye1{bottom:353.250000px;}
.y247{bottom:353.974350px;}
.y128{bottom:357.496200px;}
.y108{bottom:357.514740px;}
.y49{bottom:359.106750px;}
.y147{bottom:360.456750px;}
.y19a{bottom:360.463500px;}
.y17e{bottom:361.350000px;}
.y99{bottom:362.274750px;}
.y21e{bottom:363.861000px;}
.y26d{bottom:367.447350px;}
.y1a{bottom:369.180000px;}
.yb9{bottom:370.350000px;}
.y6f{bottom:370.356750px;}
.y1ac{bottom:370.363500px;}
.y165{bottom:371.250000px;}
.ye0{bottom:372.150000px;}
.y127{bottom:372.883320px;}
.y107{bottom:372.901860px;}
.y246{bottom:375.668850px;}
.y146{bottom:379.356750px;}
.y199{bottom:379.363500px;}
.y17d{bottom:380.250000px;}
.y21d{bottom:381.141000px;}
.y98{bottom:381.174750px;}
.y48{bottom:387.000000px;}
.y126{bottom:388.180980px;}
.y106{bottom:388.199520px;}
.y26c{bottom:389.141850px;}
.yb8{bottom:389.250000px;}
.y6e{bottom:389.256750px;}
.y164{bottom:390.150000px;}
.ydf{bottom:391.050000px;}
.y245{bottom:392.948850px;}
.yc{bottom:393.300000px;}
.y145{bottom:398.256750px;}
.y198{bottom:398.263500px;}
.y17c{bottom:399.150000px;}
.y21c{bottom:402.835500px;}
.y125{bottom:403.568100px;}
.y105{bottom:403.586640px;}
.y47{bottom:405.900000px;}
.y26b{bottom:406.421850px;}
.y201{bottom:407.256750px;}
.y6d{bottom:408.156750px;}
.yb7{bottom:408.163500px;}
.y163{bottom:409.050000px;}
.y1f2{bottom:409.068000px;}
.yde{bottom:409.950000px;}
.y244{bottom:410.228850px;}
.y14{bottom:411.673320px;}
.y144{bottom:417.156750px;}
.y197{bottom:417.163500px;}
.y17b{bottom:418.050000px;}
.y97{bottom:418.077000px;}
.y124{bottom:418.865760px;}
.y104{bottom:418.884300px;}
.y26a{bottom:423.701850px;}
.y21b{bottom:424.611000px;}
.y46{bottom:424.800000px;}
.y1ab{bottom:426.150000px;}
.y200{bottom:426.156750px;}
.y13{bottom:426.970980px;}
.y6c{bottom:427.056750px;}
.yb6{bottom:427.063500px;}
.y162{bottom:427.950000px;}
.y1f1{bottom:427.968000px;}
.ydd{bottom:428.850000px;}
.y243{bottom:431.923350px;}
.y123{bottom:434.252880px;}
.y103{bottom:434.271420px;}
.y143{bottom:436.056750px;}
.y196{bottom:436.063500px;}
.y17a{bottom:436.950000px;}
.y96{bottom:436.977000px;}
.y21a{bottom:441.891000px;}
.y12{bottom:442.358100px;}
.y45{bottom:443.700000px;}
.y1aa{bottom:445.050000px;}
.y1ff{bottom:445.056750px;}
.y269{bottom:445.396350px;}
.y6b{bottom:445.956750px;}
.yb5{bottom:445.963500px;}
.y161{bottom:446.850000px;}
.y1f0{bottom:446.868000px;}
.ydc{bottom:447.750000px;}
.y122{bottom:449.640000px;}
.y102{bottom:449.658540px;}
.y242{bottom:453.698850px;}
.y142{bottom:454.956750px;}
.y195{bottom:454.963500px;}
.y11{bottom:457.745220px;}
.y44{bottom:462.600000px;}
.y268{bottom:462.676350px;}
.y219{bottom:463.585500px;}
.y1a9{bottom:463.950000px;}
.y1fe{bottom:463.956750px;}
.y19{bottom:464.034420px;}
.y1cb{bottom:464.856750px;}
.yb4{bottom:464.863500px;}
.y95{bottom:464.870250px;}
.y101{bottom:464.956200px;}
.y160{bottom:465.750000px;}
.y1ef{bottom:465.768000px;}
.y121{bottom:466.830000px;}
.y241{bottom:470.978850px;}
.y10{bottom:473.042880px;}
.y141{bottom:473.856750px;}
.y6a{bottom:473.863350px;}
.y194{bottom:473.863500px;}
.y179{bottom:473.864580px;}
.y18{bottom:478.530090px;}
.y100{bottom:480.343320px;}
.y218{bottom:480.865500px;}
.y43{bottom:481.500000px;}
.y1a8{bottom:482.850000px;}
.y1fd{bottom:482.856750px;}
.yb3{bottom:483.763500px;}
.y267{bottom:484.451850px;}
.y15f{bottom:484.650000px;}
.ydb{bottom:484.654860px;}
.y1ee{bottom:484.668000px;}
.yf{bottom:488.430000px;}
.y240{bottom:492.673350px;}
.y140{bottom:492.756750px;}
.y178{bottom:492.762960px;}
.y69{bottom:492.763350px;}
.y94{bottom:492.763500px;}
.y17{bottom:492.930000px;}
.yff{bottom:495.640980px;}
.y266{bottom:501.731850px;}
.y1a7{bottom:501.750000px;}
.y193{bottom:501.756750px;}
.y217{bottom:502.560000px;}
.y15e{bottom:503.550000px;}
.yda{bottom:503.553240px;}
.y1ed{bottom:503.568000px;}
.ye{bottom:504.270000px;}
.y42{bottom:509.393250px;}
.y23f{bottom:509.953350px;}
.yfe{bottom:511.028100px;}
.yb2{bottom:511.656750px;}
.y177{bottom:511.661340px;}
.y68{bottom:511.663350px;}
.y93{bottom:511.663500px;}
.y13f{bottom:520.650000px;}
.y192{bottom:520.656750px;}
.y15d{bottom:522.450000px;}
.yd9{bottom:522.451620px;}
.y1ec{bottom:522.468000px;}
.y265{bottom:523.426350px;}
.y216{bottom:524.335500px;}
.yfd{bottom:526.325760px;}
.y41{bottom:528.293250px;}
.yb1{bottom:530.556750px;}
.y176{bottom:530.559720px;}
.y67{bottom:530.563350px;}
.y92{bottom:530.563500px;}
.y23e{bottom:531.728850px;}
.y120{bottom:532.350000px;}
.y13e{bottom:539.550000px;}
.y191{bottom:539.556750px;}
.y264{bottom:540.706350px;}
.yd8{bottom:541.350000px;}
.y1eb{bottom:541.368000px;}
.y215{bottom:541.615500px;}
.yfc{bottom:541.712880px;}
.y40{bottom:547.193250px;}
.yb0{bottom:549.456750px;}
.y175{bottom:549.458100px;}
.y66{bottom:549.463350px;}
.y91{bottom:549.463500px;}
.y11f{bottom:551.250000px;}
.y23d{bottom:553.423350px;}
.yfb{bottom:557.100000px;}
.y13d{bottom:558.450000px;}
.y190{bottom:558.456750px;}
.y15c{bottom:559.359720px;}
.y263{bottom:562.400850px;}
.y214{bottom:563.310000px;}
.y3f{bottom:566.093250px;}
.y174{bottom:568.356480px;}
.yaf{bottom:568.356750px;}
.y65{bottom:568.363350px;}
.y90{bottom:568.363500px;}
.y1ea{bottom:569.261250px;}
.y11e{bottom:570.150000px;}
.y23c{bottom:570.703350px;}
.yfa{bottom:574.290000px;}
.y13c{bottom:577.350000px;}
.y18f{bottom:577.356750px;}
.yd7{bottom:578.256750px;}
.y15b{bottom:578.258100px;}
.y262{bottom:579.680850px;}
.y213{bottom:580.590000px;}
.y3e{bottom:584.993250px;}
.y173{bottom:587.254860px;}
.yae{bottom:587.256750px;}
.y64{bottom:587.263350px;}
.y8f{bottom:587.263500px;}
.y1e9{bottom:588.161250px;}
.yb{bottom:588.874860px;}
.y11d{bottom:589.050000px;}
.y23b{bottom:592.478850px;}
.yf9{bottom:596.250000px;}
.y13b{bottom:596.256750px;}
.y15a{bottom:597.156480px;}
.yd6{bottom:597.156750px;}
.y261{bottom:601.456350px;}
.y212{bottom:602.365500px;}
.y3d{bottom:603.893250px;}
.y1a6{bottom:605.250000px;}
.y172{bottom:606.153240px;}
.y63{bottom:606.163350px;}
.y8e{bottom:606.163500px;}
.y1e8{bottom:607.061250px;}
.y11c{bottom:607.974750px;}
.y23a{bottom:609.758850px;}
.ya{bottom:611.735220px;}
.yad{bottom:615.150000px;}
.yf8{bottom:615.156750px;}
.y159{bottom:616.054860px;}
.yd5{bottom:616.056750px;}
.y260{bottom:618.736350px;}
.y3c{bottom:622.793250px;}
.y211{bottom:624.060000px;}
.y1a5{bottom:624.150000px;}
.y171{bottom:625.051620px;}
.y62{bottom:625.063350px;}
.y8d{bottom:625.063500px;}
.y1e7{bottom:625.961250px;}
.y239{bottom:626.944350px;}
.yac{bottom:634.050000px;}
.yf7{bottom:634.056750px;}
.y9{bottom:634.595580px;}
.y158{bottom:634.953240px;}
.y11b{bottom:635.868000px;}
.y25f{bottom:640.430850px;}
.y210{bottom:641.340000px;}
.y3b{bottom:641.693250px;}
.y1a4{bottom:643.050000px;}
.yd4{bottom:643.950000px;}
.y61{bottom:643.963350px;}
.y8c{bottom:643.963500px;}
.y1e6{bottom:644.861250px;}
.y238{bottom:648.719850px;}
.yab{bottom:652.950000px;}
.yf6{bottom:652.956750px;}
.y157{bottom:653.851620px;}
.y25e{bottom:657.710850px;}
.y3a{bottom:660.593250px;}
.y1a3{bottom:661.950000px;}
.yd3{bottom:662.850000px;}
.y60{bottom:662.863350px;}
.y8b{bottom:662.863500px;}
.y20f{bottom:663.115500px;}
.y237{bottom:670.414350px;}
.yaa{bottom:671.850000px;}
.yf5{bottom:671.856750px;}
.y156{bottom:672.750000px;}
.y11a{bottom:672.770250px;}
.y8{bottom:675.546030px;}
.y25d{bottom:679.405350px;}
.y39{bottom:679.493250px;}
.y170{bottom:680.850000px;}
.yd2{bottom:681.750000px;}
.y8a{bottom:681.763500px;}
.y20e{bottom:684.810000px;}
.y236{bottom:687.694350px;}
.ya9{bottom:690.750000px;}
.y5f{bottom:690.756600px;}
.yf4{bottom:690.756750px;}
.y25c{bottom:696.685350px;}
.y7{bottom:698.851080px;}
.y16f{bottom:699.750000px;}
.yd1{bottom:700.650000px;}
.y89{bottom:700.663500px;}
.y20d{bottom:702.090000px;}
.y235{bottom:709.469850px;}
.ya8{bottom:709.650000px;}
.y5e{bottom:709.656600px;}
.yf3{bottom:709.656750px;}
.y25b{bottom:713.965350px;}
.y38{bottom:716.490000px;}
.y16e{bottom:718.650000px;}
.yd0{bottom:719.550000px;}
.y6{bottom:722.156130px;}
.y20c{bottom:723.865500px;}
.y5d{bottom:728.556600px;}
.y88{bottom:728.556750px;}
.y234{bottom:731.164350px;}
.y25a{bottom:735.659850px;}
.y13a{bottom:737.550000px;}
.ycf{bottom:738.450000px;}
.y20b{bottom:741.145500px;}
.y37{bottom:743.661000px;}
.y5{bottom:745.560000px;}
.y5c{bottom:747.456600px;}
.y87{bottom:747.456750px;}
.y233{bottom:752.939850px;}
.yf2{bottom:756.450000px;}
.yce{bottom:757.350000px;}
.y259{bottom:757.435350px;}
.y36{bottom:760.941000px;}
.y20a{bottom:762.840000px;}
.y5b{bottom:766.356600px;}
.y86{bottom:766.356750px;}
.y232{bottom:770.219850px;}
.y258{bottom:774.715350px;}
.yf1{bottom:775.350000px;}
.ycd{bottom:776.250000px;}
.y35{bottom:778.221000px;}
.y209{bottom:780.120000px;}
.y5a{bottom:785.256600px;}
.y85{bottom:785.256750px;}
.y231{bottom:787.499850px;}
.y257{bottom:791.995350px;}
.yf0{bottom:794.250000px;}
.ycc{bottom:795.150000px;}
.y34{bottom:795.406500px;}
.y208{bottom:797.400000px;}
.y59{bottom:804.156600px;}
.y84{bottom:804.156750px;}
.y230{bottom:809.194350px;}
.y33{bottom:812.686500px;}
.yef{bottom:813.150000px;}
.y256{bottom:813.689850px;}
.ycb{bottom:814.050000px;}
.y58{bottom:823.056600px;}
.y83{bottom:823.056750px;}
.y32{bottom:829.966500px;}
.y22f{bottom:830.969850px;}
.ya7{bottom:832.050000px;}
.yca{bottom:832.950000px;}
.y207{bottom:832.963500px;}
.y255{bottom:835.465350px;}
.y57{bottom:841.956600px;}
.y1ca{bottom:841.956750px;}
.y31{bottom:847.152000px;}
.y22e{bottom:848.249850px;}
.y82{bottom:850.950000px;}
.yc9{bottom:851.850000px;}
.y254{bottom:852.745350px;}
.y56{bottom:860.856600px;}
.y1c9{bottom:860.856750px;}
.y30{bottom:862.906500px;}
.y81{bottom:869.850000px;}
.y22d{bottom:869.944350px;}
.y253{bottom:874.439850px;}
.y2f{bottom:878.661000px;}
.y4{bottom:885.957840px;}
.y55{bottom:888.750000px;}
.yc8{bottom:888.751620px;}
.y22c{bottom:891.719850px;}
.y2e{bottom:894.415500px;}
.y3{bottom:899.458920px;}
.y54{bottom:907.650000px;}
.y22b{bottom:908.999850px;}
.y2d{bottom:910.170000px;}
.y2{bottom:912.960000px;}
.y2a{bottom:950.760000px;}
.h3{height:36.696797px;}
.h4{height:37.646016px;}
.hf{height:38.234531px;}
.hc{height:46.360371px;}
.ha{height:47.085117px;}
.h12{height:47.988281px;}
.hb{height:49.497539px;}
.h15{height:50.271328px;}
.h17{height:52.233398px;}
.h2{height:52.286133px;}
.h16{height:53.103516px;}
.h13{height:55.074727px;}
.he{height:58.211895px;}
.h9{height:59.121914px;}
.h14{height:60.938965px;}
.hd{height:61.000488px;}
.h10{height:61.954102px;}
.h5{height:63.692578px;}
.h7{height:63.724746px;}
.h6{height:65.210411px;}
.h11{height:69.714844px;}
.h8{height:125.731500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:133.290000px;}
.w2{width:393.300000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x9{left:67.410000px;}
.x1{left:97.830000px;}
.xc{left:105.930000px;}
.x2{left:117.720000px;}
.xf{left:119.160000px;}
.x4{left:126.893790px;}
.x14{left:140.400000px;}
.xb{left:141.930000px;}
.x6{left:148.854600px;}
.xa{left:178.110000px;}
.x7{left:205.906680px;}
.x3{left:263.512440px;}
.x13{left:313.830000px;}
.x5{left:316.611720px;}
.x11{left:365.494320px;}
.x10{left:401.400000px;}
.xd{left:491.130000px;}
.xe{left:499.230000px;}
.x12{left:625.140000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:23.978560pt;}
.ls26{letter-spacing:-0.794880pt;}
.ls3c{letter-spacing:-0.728000pt;}
.ls3e{letter-spacing:-0.672000pt;}
.ls3b{letter-spacing:-0.616000pt;}
.ls3d{letter-spacing:-0.560000pt;}
.ls45{letter-spacing:-0.363520pt;}
.ls6f{letter-spacing:-0.336000pt;}
.ls41{letter-spacing:-0.318080pt;}
.ls76{letter-spacing:-0.288000pt;}
.ls40{letter-spacing:-0.280000pt;}
.ls2a{letter-spacing:-0.227200pt;}
.ls18{letter-spacing:-0.213760pt;}
.ls42{letter-spacing:-0.181760pt;}
.ls1f{letter-spacing:-0.168000pt;}
.ls32{letter-spacing:-0.151680pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls50{letter-spacing:-0.136320pt;}
.lsf{letter-spacing:-0.117120pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls39{letter-spacing:-0.101120pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.090880pt;}
.lsc{letter-spacing:-0.069120pt;}
.lse{letter-spacing:-0.058560pt;}
.ls1d{letter-spacing:-0.056000pt;}
.ls3a{letter-spacing:-0.050560pt;}
.ls1c{letter-spacing:-0.048000pt;}
.ls28{letter-spacing:-0.045440pt;}
.lsb{letter-spacing:-0.034560pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013632pt;}
.ls73{letter-spacing:0.028800pt;}
.ls19{letter-spacing:0.040000pt;}
.ls11{letter-spacing:0.045440pt;}
.ls14{letter-spacing:0.048000pt;}
.ls33{letter-spacing:0.050560pt;}
.ls16{letter-spacing:0.056000pt;}
.ls10{letter-spacing:0.058560pt;}
.ls4c{letter-spacing:0.061600pt;}
.ls21{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069120pt;}
.ls5{letter-spacing:0.086400pt;}
.ls43{letter-spacing:0.090880pt;}
.ls69{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.101120pt;}
.ls67{letter-spacing:0.105600pt;}
.ls22{letter-spacing:0.106880pt;}
.ls31{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.117120pt;}
.ls3{letter-spacing:0.127680pt;}
.ls2b{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.138240pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls52{letter-spacing:0.151680pt;}
.ls36{letter-spacing:0.157440pt;}
.ls0{letter-spacing:0.168000pt;}
.ls29{letter-spacing:0.181760pt;}
.ls63{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.200000pt;}
.ls71{letter-spacing:0.206400pt;}
.ls2{letter-spacing:0.207360pt;}
.ls5b{letter-spacing:0.224000pt;}
.ls70{letter-spacing:0.240000pt;}
.ls1a{letter-spacing:0.241920pt;}
.ls62{letter-spacing:0.283200pt;}
.ls13{letter-spacing:0.288000pt;}
.ls75{letter-spacing:0.302400pt;}
.ls27{letter-spacing:0.336000pt;}
.ls6b{letter-spacing:0.360000pt;}
.ls30{letter-spacing:0.363520pt;}
.ls61{letter-spacing:0.364000pt;}
.ls6d{letter-spacing:0.489600pt;}
.ls58{letter-spacing:0.556160pt;}
.ls24{letter-spacing:0.593600pt;}
.ls6c{letter-spacing:0.624000pt;}
.ls4f{letter-spacing:0.631616pt;}
.ls5f{letter-spacing:0.784000pt;}
.ls57{letter-spacing:0.859520pt;}
.ls68{letter-spacing:0.912000pt;}
.ls5e{letter-spacing:0.954240pt;}
.ls56{letter-spacing:1.112320pt;}
.ls37{letter-spacing:1.162880pt;}
.ls5d{letter-spacing:1.317760pt;}
.ls74{letter-spacing:1.584000pt;}
.ls47{letter-spacing:1.590400pt;}
.ls23{letter-spacing:1.624000pt;}
.ls25{letter-spacing:1.635840pt;}
.ls4d{letter-spacing:1.719200pt;}
.ls34{letter-spacing:1.820160pt;}
.ls72{letter-spacing:1.872000pt;}
.ls4a{letter-spacing:1.953920pt;}
.ls2e{letter-spacing:1.960000pt;}
.ls6a{letter-spacing:2.160000pt;}
.ls66{letter-spacing:2.208000pt;}
.ls2d{letter-spacing:2.240000pt;}
.ls48{letter-spacing:2.272000pt;}
.ls7{letter-spacing:2.832000pt;}
.ls46{letter-spacing:2.912000pt;}
.ls77{letter-spacing:3.168000pt;}
.ls4e{letter-spacing:3.169600pt;}
.ls5a{letter-spacing:3.192000pt;}
.ls6e{letter-spacing:3.456000pt;}
.ls38{letter-spacing:3.528000pt;}
.ls6{letter-spacing:3.792000pt;}
.ls51{letter-spacing:3.864000pt;}
.ls49{letter-spacing:3.916928pt;}
.ls5c{letter-spacing:3.936800pt;}
.ls17{letter-spacing:4.160800pt;}
.ls2f{letter-spacing:4.480000pt;}
.ls4b{letter-spacing:5.432000pt;}
.ls15{letter-spacing:5.534400pt;}
.ls64{letter-spacing:5.712000pt;}
.ls59{letter-spacing:5.768000pt;}
.ls60{letter-spacing:6.440000pt;}
.ls53{letter-spacing:6.720000pt;}
.ls2c{letter-spacing:6.921600pt;}
.ls3f{letter-spacing:7.056000pt;}
.ls55{letter-spacing:7.145600pt;}
.ls54{letter-spacing:7.392000pt;}
.ls65{letter-spacing:62.688000pt;}
.ws10c{word-spacing:-48.240000pt;}
.ws10d{word-spacing:-48.000000pt;}
.wsef{word-spacing:-15.568000pt;}
.ws8f{word-spacing:-15.512000pt;}
.ws71{word-spacing:-15.400000pt;}
.ws2b{word-spacing:-15.344000pt;}
.ws2a{word-spacing:-15.288000pt;}
.ws2d{word-spacing:-15.232000pt;}
.ws2c{word-spacing:-15.176000pt;}
.ws4f{word-spacing:-14.749440pt;}
.ws26{word-spacing:-14.428800pt;}
.wsd3{word-spacing:-13.954560pt;}
.wsd1{word-spacing:-13.904000pt;}
.ws8e{word-spacing:-13.853440pt;}
.ws8d{word-spacing:-13.802880pt;}
.wsd2{word-spacing:-13.701760pt;}
.ws3{word-spacing:-13.534080pt;}
.ws127{word-spacing:-13.392000pt;}
.ws29{word-spacing:-13.296000pt;}
.wsf7{word-spacing:-13.248000pt;}
.ws8{word-spacing:-13.200000pt;}
.ws7{word-spacing:-13.152000pt;}
.ws0{word-spacing:-13.056000pt;}
.ws28{word-spacing:-13.008000pt;}
.ws126{word-spacing:-12.864000pt;}
.ws51{word-spacing:-12.632320pt;}
.ws6{word-spacing:-12.496000pt;}
.ws5{word-spacing:-12.464192pt;}
.ws4{word-spacing:-12.450560pt;}
.ws50{word-spacing:-12.405120pt;}
.wsb8{word-spacing:-12.359680pt;}
.wsc4{word-spacing:-12.314240pt;}
.wsa6{word-spacing:-12.268800pt;}
.wsa5{word-spacing:-12.132480pt;}
.wsa7{word-spacing:-12.087040pt;}
.ws27{word-spacing:-9.711360pt;}
.ws1{word-spacing:-9.469440pt;}
.ws2{word-spacing:-9.400320pt;}
.wsa9{word-spacing:-3.808000pt;}
.ws97{word-spacing:-3.472000pt;}
.ws96{word-spacing:-3.360000pt;}
.ws75{word-spacing:-3.192000pt;}
.wse9{word-spacing:-3.180800pt;}
.wsc5{word-spacing:-3.080000pt;}
.wsd5{word-spacing:-3.033600pt;}
.wsd6{word-spacing:-2.983040pt;}
.ws102{word-spacing:-2.928000pt;}
.ws6d{word-spacing:-2.862720pt;}
.ws4b{word-spacing:-2.856000pt;}
.ws101{word-spacing:-2.832000pt;}
.ws3c{word-spacing:-2.744000pt;}
.ws128{word-spacing:-2.592000pt;}
.ws69{word-spacing:-2.544640pt;}
.ws5b{word-spacing:-2.520000pt;}
.ws117{word-spacing:-2.496000pt;}
.ws116{word-spacing:-2.448000pt;}
.ws82{word-spacing:-2.408000pt;}
.ws135{word-spacing:-2.400000pt;}
.ws5e{word-spacing:-2.240000pt;}
.wsb3{word-spacing:-2.226560pt;}
.ws85{word-spacing:-2.174080pt;}
.ws134{word-spacing:-2.160000pt;}
.ws73{word-spacing:-2.128000pt;}
.ws9a{word-spacing:-2.072960pt;}
.ws111{word-spacing:-1.968000pt;}
.ws10a{word-spacing:-1.920000pt;}
.ws81{word-spacing:-1.904000pt;}
.ws110{word-spacing:-1.872000pt;}
.wsc2{word-spacing:-1.863040pt;}
.ws10f{word-spacing:-1.824000pt;}
.wse3{word-spacing:-1.792000pt;}
.ws11c{word-spacing:-1.728000pt;}
.ws88{word-spacing:-1.719040pt;}
.ws16{word-spacing:-1.632000pt;}
.ws55{word-spacing:-1.568000pt;}
.ws8b{word-spacing:-1.544960pt;}
.ws12d{word-spacing:-1.536000pt;}
.wsca{word-spacing:-1.516800pt;}
.wsa0{word-spacing:-1.512000pt;}
.ws83{word-spacing:-1.456000pt;}
.ws11b{word-spacing:-1.440000pt;}
.ws11a{word-spacing:-1.296000pt;}
.ws76{word-spacing:-1.232000pt;}
.ws67{word-spacing:-1.226880pt;}
.ws119{word-spacing:-1.200000pt;}
.wsf3{word-spacing:-1.176000pt;}
.ws78{word-spacing:-1.120000pt;}
.wscb{word-spacing:-1.112320pt;}
.ws23{word-spacing:-1.008000pt;}
.ws38{word-spacing:-0.952000pt;}
.ws136{word-spacing:-0.912000pt;}
.wsbf{word-spacing:-0.908800pt;}
.ws72{word-spacing:-0.840000pt;}
.wsd9{word-spacing:-0.758400pt;}
.wse1{word-spacing:-0.727040pt;}
.wsfc{word-spacing:-0.720000pt;}
.wsb4{word-spacing:-0.681600pt;}
.wsfd{word-spacing:-0.624000pt;}
.ws9c{word-spacing:-0.616000pt;}
.wsad{word-spacing:-0.590720pt;}
.ws84{word-spacing:-0.556160pt;}
.ws58{word-spacing:-0.504000pt;}
.wsc0{word-spacing:-0.408960pt;}
.ws18{word-spacing:-0.336000pt;}
.ws8c{word-spacing:-0.318080pt;}
.ws20{word-spacing:-0.288000pt;}
.ws74{word-spacing:-0.280000pt;}
.ws15{word-spacing:-0.272640pt;}
.wscd{word-spacing:-0.252800pt;}
.ws107{word-spacing:-0.240000pt;}
.wse6{word-spacing:-0.224000pt;}
.ws53{word-spacing:-0.207360pt;}
.ws93{word-spacing:-0.202240pt;}
.ws19{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.168000pt;}
.ws91{word-spacing:-0.151680pt;}
.ws106{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.127680pt;}
.ws30{word-spacing:-0.120000pt;}
.ws12{word-spacing:-0.117120pt;}
.ws7f{word-spacing:-0.112000pt;}
.wsa{word-spacing:-0.103680pt;}
.ws100{word-spacing:-0.096000pt;}
.wsb1{word-spacing:-0.090880pt;}
.ws52{word-spacing:-0.080000pt;}
.ws2e{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.058560pt;}
.ws22{word-spacing:-0.048000pt;}
.wsc3{word-spacing:-0.045440pt;}
.ws9{word-spacing:0.000000pt;}
.wsb{word-spacing:0.034560pt;}
.ws14{word-spacing:0.045440pt;}
.ws36{word-spacing:0.048000pt;}
.ws9b{word-spacing:0.050560pt;}
.ws77{word-spacing:0.056000pt;}
.ws10{word-spacing:0.058560pt;}
.wsb5{word-spacing:0.090880pt;}
.wsfb{word-spacing:0.096000pt;}
.ws5c{word-spacing:0.112000pt;}
.wse{word-spacing:0.117120pt;}
.wsd{word-spacing:0.138240pt;}
.ws24{word-spacing:0.144000pt;}
.ws87{word-spacing:0.151680pt;}
.wsf{word-spacing:0.175680pt;}
.wsc{word-spacing:0.207360pt;}
.ws6b{word-spacing:0.227200pt;}
.ws13e{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.256000pt;}
.wsaa{word-spacing:0.280000pt;}
.ws61{word-spacing:0.336000pt;}
.ws92{word-spacing:0.353920pt;}
.wsaf{word-spacing:0.363520pt;}
.wsfe{word-spacing:0.384000pt;}
.ws63{word-spacing:0.448000pt;}
.ws12c{word-spacing:0.480000pt;}
.wsc9{word-spacing:0.505600pt;}
.wsde{word-spacing:0.556160pt;}
.wsa1{word-spacing:0.560000pt;}
.ws108{word-spacing:0.624000pt;}
.ws5d{word-spacing:0.672000pt;}
.wsae{word-spacing:0.681600pt;}
.wsdd{word-spacing:0.707840pt;}
.ws109{word-spacing:0.720000pt;}
.wsf2{word-spacing:0.728000pt;}
.ws11f{word-spacing:0.768000pt;}
.ws4e{word-spacing:0.784000pt;}
.ws99{word-spacing:0.808960pt;}
.wsdc{word-spacing:0.859520pt;}
.ws1d{word-spacing:0.912000pt;}
.wsf6{word-spacing:0.952000pt;}
.wsdb{word-spacing:0.960640pt;}
.ws66{word-spacing:0.999680pt;}
.ws39{word-spacing:1.008000pt;}
.ws98{word-spacing:1.011200pt;}
.ws1c{word-spacing:1.056000pt;}
.ws95{word-spacing:1.120000pt;}
.wsee{word-spacing:1.181440pt;}
.ws13c{word-spacing:1.200000pt;}
.ws40{word-spacing:1.232000pt;}
.ws31{word-spacing:1.248000pt;}
.ws3f{word-spacing:1.288000pt;}
.ws65{word-spacing:1.317760pt;}
.ws43{word-spacing:1.400000pt;}
.wsd8{word-spacing:1.466240pt;}
.wsd7{word-spacing:1.516800pt;}
.ws59{word-spacing:1.568000pt;}
.ws32{word-spacing:1.584000pt;}
.ws42{word-spacing:1.624000pt;}
.ws6a{word-spacing:1.635840pt;}
.ws12b{word-spacing:1.680000pt;}
.wsff{word-spacing:1.728000pt;}
.ws54{word-spacing:1.736000pt;}
.ws90{word-spacing:1.769600pt;}
.ws104{word-spacing:1.824000pt;}
.ws103{word-spacing:1.872000pt;}
.ws113{word-spacing:1.920000pt;}
.wsbe{word-spacing:1.953920pt;}
.ws45{word-spacing:1.960000pt;}
.ws112{word-spacing:1.968000pt;}
.wsc1{word-spacing:1.999360pt;}
.wsa2{word-spacing:2.016000pt;}
.ws4c{word-spacing:2.072000pt;}
.wsf8{word-spacing:2.160000pt;}
.wsfa{word-spacing:2.208000pt;}
.ws3b{word-spacing:2.240000pt;}
.wsb6{word-spacing:2.272000pt;}
.wsf9{word-spacing:2.304000pt;}
.wsbc{word-spacing:2.317440pt;}
.ws3a{word-spacing:2.352000pt;}
.ws17{word-spacing:2.544000pt;}
.ws49{word-spacing:2.576000pt;}
.wse7{word-spacing:2.590080pt;}
.wsc8{word-spacing:2.629120pt;}
.ws48{word-spacing:2.688000pt;}
.ws125{word-spacing:2.832000pt;}
.ws68{word-spacing:2.908160pt;}
.ws5f{word-spacing:2.912000pt;}
.ws25{word-spacing:2.976000pt;}
.ws60{word-spacing:3.024000pt;}
.ws120{word-spacing:3.120000pt;}
.ws13d{word-spacing:3.168000pt;}
.ws121{word-spacing:3.216000pt;}
.wse0{word-spacing:3.226240pt;}
.ws44{word-spacing:3.248000pt;}
.ws122{word-spacing:3.264000pt;}
.wsa3{word-spacing:3.304000pt;}
.ws21{word-spacing:3.312000pt;}
.ws5a{word-spacing:3.360000pt;}
.wsdf{word-spacing:3.498880pt;}
.wsa4{word-spacing:3.528000pt;}
.ws70{word-spacing:3.544320pt;}
.ws118{word-spacing:3.600000pt;}
.ws4d{word-spacing:3.640000pt;}
.ws10b{word-spacing:3.648000pt;}
.ws1a{word-spacing:3.792000pt;}
.ws114{word-spacing:3.840000pt;}
.wsbd{word-spacing:3.862400pt;}
.ws7c{word-spacing:3.864000pt;}
.ws115{word-spacing:3.888000pt;}
.ws12a{word-spacing:3.936000pt;}
.ws80{word-spacing:3.976000pt;}
.ws138{word-spacing:4.128000pt;}
.wse4{word-spacing:4.144000pt;}
.wsb2{word-spacing:4.180480pt;}
.ws47{word-spacing:4.200000pt;}
.ws137{word-spacing:4.272000pt;}
.ws7b{word-spacing:4.312000pt;}
.ws124{word-spacing:4.320000pt;}
.ws1e{word-spacing:4.464000pt;}
.ws46{word-spacing:4.480000pt;}
.ws8a{word-spacing:4.498560pt;}
.ws1f{word-spacing:4.560000pt;}
.ws37{word-spacing:4.592000pt;}
.ws123{word-spacing:4.608000pt;}
.ws89{word-spacing:4.651520pt;}
.ws35{word-spacing:4.752000pt;}
.wsf0{word-spacing:4.816000pt;}
.wse5{word-spacing:4.816640pt;}
.ws129{word-spacing:4.896000pt;}
.wscf{word-spacing:4.928000pt;}
.ws1b{word-spacing:5.088000pt;}
.wsb7{word-spacing:5.134720pt;}
.wsea{word-spacing:5.152000pt;}
.wsd4{word-spacing:5.207680pt;}
.ws105{word-spacing:5.232000pt;}
.ws41{word-spacing:5.264000pt;}
.wsda{word-spacing:5.308800pt;}
.ws6e{word-spacing:5.316480pt;}
.ws33{word-spacing:5.424000pt;}
.ws6c{word-spacing:5.452800pt;}
.ws13b{word-spacing:5.472000pt;}
.wsba{word-spacing:5.488000pt;}
.ws34{word-spacing:5.568000pt;}
.wsb9{word-spacing:5.600000pt;}
.wse8{word-spacing:5.634560pt;}
.ws94{word-spacing:5.712000pt;}
.ws3e{word-spacing:5.768000pt;}
.wsb0{word-spacing:5.816320pt;}
.ws3d{word-spacing:5.880000pt;}
.ws11e{word-spacing:6.048000pt;}
.ws11d{word-spacing:6.096000pt;}
.wsab{word-spacing:6.104000pt;}
.ws6f{word-spacing:6.134400pt;}
.wsd0{word-spacing:6.216000pt;}
.ws133{word-spacing:6.240000pt;}
.ws86{word-spacing:6.269440pt;}
.ws132{word-spacing:6.384000pt;}
.wsce{word-spacing:6.440000pt;}
.wscc{word-spacing:6.471680pt;}
.ws131{word-spacing:6.480000pt;}
.ws57{word-spacing:6.552000pt;}
.ws12f{word-spacing:6.672000pt;}
.ws79{word-spacing:6.720000pt;}
.ws12e{word-spacing:6.768000pt;}
.ws130{word-spacing:6.816000pt;}
.ws7d{word-spacing:6.832000pt;}
.wsac{word-spacing:7.056000pt;}
.wsc7{word-spacing:7.168000pt;}
.ws56{word-spacing:7.392000pt;}
.wsc6{word-spacing:7.504000pt;}
.ws10e{word-spacing:7.632000pt;}
.wsec{word-spacing:7.728000pt;}
.wse2{word-spacing:7.840000pt;}
.ws4a{word-spacing:8.344000pt;}
.wsf5{word-spacing:8.680000pt;}
.wsa8{word-spacing:8.960000pt;}
.ws7e{word-spacing:9.072000pt;}
.wsed{word-spacing:9.632000pt;}
.ws9d{word-spacing:9.688000pt;}
.wseb{word-spacing:9.744000pt;}
.wsf1{word-spacing:10.248000pt;}
.wsbb{word-spacing:10.584000pt;}
.ws7a{word-spacing:10.696000pt;}
.ws9e{word-spacing:11.816000pt;}
.ws9f{word-spacing:12.264000pt;}
.wsf4{word-spacing:13.776000pt;}
.ws64{word-spacing:16.352000pt;}
.ws139{word-spacing:31.632000pt;}
.ws13a{word-spacing:31.728000pt;}
._5{margin-left:-2.920640pt;}
._9{margin-left:-1.960000pt;}
._1{margin-left:-0.995520pt;}
._0{width:1.310400pt;}
._2{width:2.928000pt;}
._3{width:4.592000pt;}
._7{width:5.824000pt;}
._6{width:6.798400pt;}
._a{width:8.208000pt;}
._8{width:9.654400pt;}
._4{width:25.673600pt;}
.fsa{font-size:29.440000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:2.640000pt;}
.y2c{bottom:39.837440pt;}
.y1{bottom:40.560000pt;}
.y2b{bottom:50.240000pt;}
.yee{bottom:85.760000pt;}
.yc7{bottom:85.769280pt;}
.y1d9{bottom:85.771840pt;}
.y1fc{bottom:85.774267pt;}
.y155{bottom:85.776480pt;}
.y1c8{bottom:85.783680pt;}
.y1bc{bottom:85.786240pt;}
.y18e{bottom:85.790880pt;}
.y80{bottom:85.792960pt;}
.y139{bottom:85.814560pt;}
.y119{bottom:85.831040pt;}
.y1e5{bottom:94.018000pt;}
.ya6{bottom:95.628000pt;}
.y29{bottom:96.120000pt;}
.yd{bottom:98.640000pt;}
.yc6{bottom:99.446720pt;}
.y1d8{bottom:99.449280pt;}
.y1fb{bottom:99.451707pt;}
.y154{bottom:99.453920pt;}
.y1c7{bottom:99.461120pt;}
.y1bb{bottom:99.463680pt;}
.y18d{bottom:99.468320pt;}
.y7f{bottom:99.470400pt;}
.y138{bottom:99.492000pt;}
.y118{bottom:99.508480pt;}
.yed{bottom:101.120000pt;}
.y16{bottom:101.440000pt;}
.y206{bottom:102.012000pt;}
.y27a{bottom:103.275867pt;}
.y28{bottom:110.124000pt;}
.y1e4{bottom:110.818000pt;}
.ya5{bottom:112.428000pt;}
.yc5{bottom:113.044640pt;}
.y1d7{bottom:113.047200pt;}
.y1fa{bottom:113.049627pt;}
.y153{bottom:113.051840pt;}
.y1c6{bottom:113.059040pt;}
.y1ba{bottom:113.061600pt;}
.y18c{bottom:113.066240pt;}
.y7e{bottom:113.068320pt;}
.y137{bottom:113.089920pt;}
.y117{bottom:113.106400pt;}
.y22a{bottom:115.436000pt;}
.y279{bottom:118.635867pt;}
.y205{bottom:118.812000pt;}
.yec{bottom:121.206000pt;}
.y27{bottom:124.128000pt;}
.y252{bottom:125.919867pt;}
.yc4{bottom:126.722080pt;}
.y1d6{bottom:126.724640pt;}
.y1f9{bottom:126.727067pt;}
.y152{bottom:126.729280pt;}
.y1c5{bottom:126.736480pt;}
.y1b9{bottom:126.739040pt;}
.y18b{bottom:126.743680pt;}
.y7d{bottom:126.745760pt;}
.y136{bottom:126.767360pt;}
.y116{bottom:126.783840pt;}
.y1e3{bottom:127.618000pt;}
.ya4{bottom:129.228000pt;}
.y278{bottom:133.995867pt;}
.y229{bottom:134.720000pt;}
.y204{bottom:135.612000pt;}
.yeb{bottom:138.006000pt;}
.y26{bottom:138.132000pt;}
.yc3{bottom:140.320000pt;}
.y1d5{bottom:140.322560pt;}
.y1f8{bottom:140.324987pt;}
.y151{bottom:140.327200pt;}
.y1c4{bottom:140.334400pt;}
.y1b8{bottom:140.336960pt;}
.y18a{bottom:140.341600pt;}
.y7c{bottom:140.343680pt;}
.y135{bottom:140.365280pt;}
.y115{bottom:140.381760pt;}
.y251{bottom:141.279867pt;}
.y1e2{bottom:144.418000pt;}
.ya3{bottom:146.028000pt;}
.y277{bottom:149.271867pt;}
.y53{bottom:151.206000pt;}
.y203{bottom:152.412000pt;}
.y25{bottom:153.492000pt;}
.y1d4{bottom:154.000000pt;}
.y1f7{bottom:154.002427pt;}
.y150{bottom:154.004640pt;}
.y1c3{bottom:154.011840pt;}
.y1b7{bottom:154.014400pt;}
.y189{bottom:154.019040pt;}
.y7b{bottom:154.021120pt;}
.y134{bottom:154.042720pt;}
.y114{bottom:154.059200pt;}
.y228{bottom:154.076000pt;}
.yea{bottom:154.806000pt;}
.yc2{bottom:155.679867pt;}
.y250{bottom:160.635867pt;}
.y1e1{bottom:161.218000pt;}
.ya2{bottom:162.828000pt;}
.y1f6{bottom:167.679867pt;}
.y14f{bottom:167.682080pt;}
.y1c2{bottom:167.689280pt;}
.y1b6{bottom:167.691840pt;}
.y188{bottom:167.696480pt;}
.y7a{bottom:167.698560pt;}
.y133{bottom:167.720160pt;}
.y113{bottom:167.736640pt;}
.y52{bottom:168.006000pt;}
.y276{bottom:168.627867pt;}
.y24{bottom:168.768000pt;}
.y202{bottom:169.212000pt;}
.y1d3{bottom:169.360000pt;}
.y227{bottom:169.436000pt;}
.ye9{bottom:171.606000pt;}
.y24f{bottom:175.995867pt;}
.yc1{bottom:178.805760pt;}
.ya1{bottom:179.628000pt;}
.y14e{bottom:181.280000pt;}
.y1c1{bottom:181.287200pt;}
.y1b5{bottom:181.289760pt;}
.y187{bottom:181.294400pt;}
.y79{bottom:181.296480pt;}
.y132{bottom:181.318080pt;}
.y112{bottom:181.334560pt;}
.y23{bottom:182.772000pt;}
.y1f5{bottom:182.960000pt;}
.y275{bottom:183.987867pt;}
.y51{bottom:184.806000pt;}
.y1a2{bottom:186.000000pt;}
.y1e0{bottom:186.012000pt;}
.y16d{bottom:187.600000pt;}
.ye8{bottom:188.406000pt;}
.y226{bottom:188.720000pt;}
.y1c0{bottom:194.964640pt;}
.y1b4{bottom:194.967200pt;}
.y186{bottom:194.971840pt;}
.y78{bottom:194.973920pt;}
.y131{bottom:194.995520pt;}
.y111{bottom:195.012000pt;}
.y24e{bottom:195.279867pt;}
.yc0{bottom:195.604320pt;}
.ya0{bottom:196.428000pt;}
.y14d{bottom:196.640000pt;}
.y22{bottom:196.776000pt;}
.y274{bottom:199.263867pt;}
.y50{bottom:201.606000pt;}
.y1a1{bottom:202.800000pt;}
.y1df{bottom:202.812000pt;}
.y1d2{bottom:203.600000pt;}
.y225{bottom:204.080000pt;}
.y16c{bottom:204.400000pt;}
.y1f4{bottom:204.422000pt;}
.ye7{bottom:205.206000pt;}
.y1bf{bottom:208.562560pt;}
.y1b3{bottom:208.565120pt;}
.y185{bottom:208.569760pt;}
.y77{bottom:208.571840pt;}
.y130{bottom:208.593440pt;}
.y110{bottom:208.609920pt;}
.y24d{bottom:210.639867pt;}
.y21{bottom:210.780000pt;}
.ybf{bottom:212.402880pt;}
.y9f{bottom:213.228000pt;}
.y4f{bottom:218.406000pt;}
.y273{bottom:218.619867pt;}
.y224{bottom:219.440000pt;}
.y1a0{bottom:219.600000pt;}
.y1de{bottom:219.612000pt;}
.y1d1{bottom:220.412000pt;}
.y16b{bottom:221.200000pt;}
.y1f3{bottom:221.222000pt;}
.ye6{bottom:222.006000pt;}
.y1be{bottom:222.240000pt;}
.y1b2{bottom:222.242560pt;}
.y184{bottom:222.247200pt;}
.y76{bottom:222.249280pt;}
.y12f{bottom:222.270880pt;}
.y10f{bottom:222.287360pt;}
.y20{bottom:224.784000pt;}
.y24c{bottom:225.999867pt;}
.ybe{bottom:229.201440pt;}
.y4e{bottom:235.206000pt;}
.y1b1{bottom:235.920000pt;}
.y183{bottom:235.924640pt;}
.y75{bottom:235.926720pt;}
.y12e{bottom:235.948320pt;}
.y10e{bottom:235.964800pt;}
.y19f{bottom:236.400000pt;}
.y14c{bottom:236.406000pt;}
.y1dd{bottom:236.412000pt;}
.y1d0{bottom:237.212000pt;}
.y1bd{bottom:237.600000pt;}
.y272{bottom:237.903867pt;}
.y16a{bottom:238.006000pt;}
.y9e{bottom:238.022000pt;}
.y223{bottom:238.724000pt;}
.y1f{bottom:238.788000pt;}
.ye5{bottom:238.806000pt;}
.y24b{bottom:245.283867pt;}
.ybd{bottom:246.000000pt;}
.y182{bottom:249.522560pt;}
.y74{bottom:249.524640pt;}
.y12d{bottom:249.546240pt;}
.y10d{bottom:249.562720pt;}
.y1b0{bottom:251.200000pt;}
.y4d{bottom:252.006000pt;}
.y1e{bottom:252.792000pt;}
.y19e{bottom:253.200000pt;}
.y14b{bottom:253.206000pt;}
.y1dc{bottom:253.212000pt;}
.y271{bottom:253.263867pt;}
.y1cf{bottom:254.012000pt;}
.y222{bottom:254.084000pt;}
.y169{bottom:254.806000pt;}
.y9d{bottom:254.822000pt;}
.y24a{bottom:260.643867pt;}
.y181{bottom:263.200000pt;}
.y73{bottom:263.202080pt;}
.y12c{bottom:263.223680pt;}
.y10c{bottom:263.240160pt;}
.ye4{bottom:263.600000pt;}
.y1d{bottom:266.796000pt;}
.y4c{bottom:268.806000pt;}
.y19d{bottom:270.000000pt;}
.y14a{bottom:270.006000pt;}
.y1db{bottom:270.012000pt;}
.y1ce{bottom:270.812000pt;}
.y1af{bottom:270.818000pt;}
.y168{bottom:271.606000pt;}
.y9c{bottom:271.622000pt;}
.y270{bottom:272.619867pt;}
.y221{bottom:273.440000pt;}
.y72{bottom:276.800000pt;}
.y12b{bottom:276.821600pt;}
.y10b{bottom:276.838080pt;}
.y180{bottom:278.480000pt;}
.ybc{bottom:278.800000pt;}
.y249{bottom:279.927867pt;}
.ye3{bottom:280.400000pt;}
.y1c{bottom:280.800000pt;}
.y4b{bottom:285.606000pt;}
.y19c{bottom:286.800000pt;}
.y149{bottom:286.806000pt;}
.y1da{bottom:286.812000pt;}
.y1cd{bottom:287.612000pt;}
.y1ae{bottom:287.618000pt;}
.y167{bottom:288.406000pt;}
.y9b{bottom:288.422000pt;}
.y220{bottom:288.800000pt;}
.y12a{bottom:290.499040pt;}
.y10a{bottom:290.515520pt;}
.y26f{bottom:291.903867pt;}
.y71{bottom:292.160000pt;}
.ybb{bottom:295.600000pt;}
.ye2{bottom:297.200000pt;}
.y248{bottom:299.283867pt;}
.y4a{bottom:302.406000pt;}
.y1b{bottom:303.366000pt;}
.y148{bottom:303.606000pt;}
.y19b{bottom:303.612000pt;}
.y21f{bottom:304.076000pt;}
.y129{bottom:304.096960pt;}
.y109{bottom:304.113440pt;}
.y17f{bottom:304.400000pt;}
.y1cc{bottom:304.412000pt;}
.y1ad{bottom:304.418000pt;}
.y166{bottom:305.206000pt;}
.y9a{bottom:305.222000pt;}
.y26e{bottom:307.263867pt;}
.yba{bottom:312.400000pt;}
.y70{bottom:312.406000pt;}
.ye1{bottom:314.000000pt;}
.y247{bottom:314.643867pt;}
.y128{bottom:317.774400pt;}
.y108{bottom:317.790880pt;}
.y49{bottom:319.206000pt;}
.y147{bottom:320.406000pt;}
.y19a{bottom:320.412000pt;}
.y17e{bottom:321.200000pt;}
.y99{bottom:322.022000pt;}
.y21e{bottom:323.432000pt;}
.y26d{bottom:326.619867pt;}
.y1a{bottom:328.160000pt;}
.yb9{bottom:329.200000pt;}
.y6f{bottom:329.206000pt;}
.y1ac{bottom:329.212000pt;}
.y165{bottom:330.000000pt;}
.ye0{bottom:330.800000pt;}
.y127{bottom:331.451840pt;}
.y107{bottom:331.468320pt;}
.y246{bottom:333.927867pt;}
.y146{bottom:337.206000pt;}
.y199{bottom:337.212000pt;}
.y17d{bottom:338.000000pt;}
.y21d{bottom:338.792000pt;}
.y98{bottom:338.822000pt;}
.y48{bottom:344.000000pt;}
.y126{bottom:345.049760pt;}
.y106{bottom:345.066240pt;}
.y26c{bottom:345.903867pt;}
.yb8{bottom:346.000000pt;}
.y6e{bottom:346.006000pt;}
.y164{bottom:346.800000pt;}
.ydf{bottom:347.600000pt;}
.y245{bottom:349.287867pt;}
.yc{bottom:349.600000pt;}
.y145{bottom:354.006000pt;}
.y198{bottom:354.012000pt;}
.y17c{bottom:354.800000pt;}
.y21c{bottom:358.076000pt;}
.y125{bottom:358.727200pt;}
.y105{bottom:358.743680pt;}
.y47{bottom:360.800000pt;}
.y26b{bottom:361.263867pt;}
.y201{bottom:362.006000pt;}
.y6d{bottom:362.806000pt;}
.yb7{bottom:362.812000pt;}
.y163{bottom:363.600000pt;}
.y1f2{bottom:363.616000pt;}
.yde{bottom:364.400000pt;}
.y244{bottom:364.647867pt;}
.y14{bottom:365.931840pt;}
.y144{bottom:370.806000pt;}
.y197{bottom:370.812000pt;}
.y17b{bottom:371.600000pt;}
.y97{bottom:371.624000pt;}
.y124{bottom:372.325120pt;}
.y104{bottom:372.341600pt;}
.y26a{bottom:376.623867pt;}
.y21b{bottom:377.432000pt;}
.y46{bottom:377.600000pt;}
.y1ab{bottom:378.800000pt;}
.y200{bottom:378.806000pt;}
.y13{bottom:379.529760pt;}
.y6c{bottom:379.606000pt;}
.yb6{bottom:379.612000pt;}
.y162{bottom:380.400000pt;}
.y1f1{bottom:380.416000pt;}
.ydd{bottom:381.200000pt;}
.y243{bottom:383.931867pt;}
.y123{bottom:386.002560pt;}
.y103{bottom:386.019040pt;}
.y143{bottom:387.606000pt;}
.y196{bottom:387.612000pt;}
.y17a{bottom:388.400000pt;}
.y96{bottom:388.424000pt;}
.y21a{bottom:392.792000pt;}
.y12{bottom:393.207200pt;}
.y45{bottom:394.400000pt;}
.y1aa{bottom:395.600000pt;}
.y1ff{bottom:395.606000pt;}
.y269{bottom:395.907867pt;}
.y6b{bottom:396.406000pt;}
.yb5{bottom:396.412000pt;}
.y161{bottom:397.200000pt;}
.y1f0{bottom:397.216000pt;}
.ydc{bottom:398.000000pt;}
.y122{bottom:399.680000pt;}
.y102{bottom:399.696480pt;}
.y242{bottom:403.287867pt;}
.y142{bottom:404.406000pt;}
.y195{bottom:404.412000pt;}
.y11{bottom:406.884640pt;}
.y44{bottom:411.200000pt;}
.y268{bottom:411.267867pt;}
.y219{bottom:412.076000pt;}
.y1a9{bottom:412.400000pt;}
.y1fe{bottom:412.406000pt;}
.y19{bottom:412.475040pt;}
.y1cb{bottom:413.206000pt;}
.yb4{bottom:413.212000pt;}
.y95{bottom:413.218000pt;}
.y101{bottom:413.294400pt;}
.y160{bottom:414.000000pt;}
.y1ef{bottom:414.016000pt;}
.y121{bottom:414.960000pt;}
.y241{bottom:418.647867pt;}
.y10{bottom:420.482560pt;}
.y141{bottom:421.206000pt;}
.y6a{bottom:421.211867pt;}
.y194{bottom:421.212000pt;}
.y179{bottom:421.212960pt;}
.y18{bottom:425.360080pt;}
.y100{bottom:426.971840pt;}
.y218{bottom:427.436000pt;}
.y43{bottom:428.000000pt;}
.y1a8{bottom:429.200000pt;}
.y1fd{bottom:429.206000pt;}
.yb3{bottom:430.012000pt;}
.y267{bottom:430.623867pt;}
.y15f{bottom:430.800000pt;}
.ydb{bottom:430.804320pt;}
.y1ee{bottom:430.816000pt;}
.yf{bottom:434.160000pt;}
.y240{bottom:437.931867pt;}
.y140{bottom:438.006000pt;}
.y178{bottom:438.011520pt;}
.y69{bottom:438.011867pt;}
.y94{bottom:438.012000pt;}
.y17{bottom:438.160000pt;}
.yff{bottom:440.569760pt;}
.y266{bottom:445.983867pt;}
.y1a7{bottom:446.000000pt;}
.y193{bottom:446.006000pt;}
.y217{bottom:446.720000pt;}
.y15e{bottom:447.600000pt;}
.yda{bottom:447.602880pt;}
.y1ed{bottom:447.616000pt;}
.ye{bottom:448.240000pt;}
.y42{bottom:452.794000pt;}
.y23f{bottom:453.291867pt;}
.yfe{bottom:454.247200pt;}
.yb2{bottom:454.806000pt;}
.y177{bottom:454.810080pt;}
.y68{bottom:454.811867pt;}
.y93{bottom:454.812000pt;}
.y13f{bottom:462.800000pt;}
.y192{bottom:462.806000pt;}
.y15d{bottom:464.400000pt;}
.yd9{bottom:464.401440pt;}
.y1ec{bottom:464.416000pt;}
.y265{bottom:465.267867pt;}
.y216{bottom:466.076000pt;}
.yfd{bottom:467.845120pt;}
.y41{bottom:469.594000pt;}
.yb1{bottom:471.606000pt;}
.y176{bottom:471.608640pt;}
.y67{bottom:471.611867pt;}
.y92{bottom:471.612000pt;}
.y23e{bottom:472.647867pt;}
.y120{bottom:473.200000pt;}
.y13e{bottom:479.600000pt;}
.y191{bottom:479.606000pt;}
.y264{bottom:480.627867pt;}
.yd8{bottom:481.200000pt;}
.y1eb{bottom:481.216000pt;}
.y215{bottom:481.436000pt;}
.yfc{bottom:481.522560pt;}
.y40{bottom:486.394000pt;}
.yb0{bottom:488.406000pt;}
.y175{bottom:488.407200pt;}
.y66{bottom:488.411867pt;}
.y91{bottom:488.412000pt;}
.y11f{bottom:490.000000pt;}
.y23d{bottom:491.931867pt;}
.yfb{bottom:495.200000pt;}
.y13d{bottom:496.400000pt;}
.y190{bottom:496.406000pt;}
.y15c{bottom:497.208640pt;}
.y263{bottom:499.911867pt;}
.y214{bottom:500.720000pt;}
.y3f{bottom:503.194000pt;}
.y174{bottom:505.205760pt;}
.yaf{bottom:505.206000pt;}
.y65{bottom:505.211867pt;}
.y90{bottom:505.212000pt;}
.y1ea{bottom:506.010000pt;}
.y11e{bottom:506.800000pt;}
.y23c{bottom:507.291867pt;}
.yfa{bottom:510.480000pt;}
.y13c{bottom:513.200000pt;}
.y18f{bottom:513.206000pt;}
.yd7{bottom:514.006000pt;}
.y15b{bottom:514.007200pt;}
.y262{bottom:515.271867pt;}
.y213{bottom:516.080000pt;}
.y3e{bottom:519.994000pt;}
.y173{bottom:522.004320pt;}
.yae{bottom:522.006000pt;}
.y64{bottom:522.011867pt;}
.y8f{bottom:522.012000pt;}
.y1e9{bottom:522.810000pt;}
.yb{bottom:523.444320pt;}
.y11d{bottom:523.600000pt;}
.y23b{bottom:526.647867pt;}
.yf9{bottom:530.000000pt;}
.y13b{bottom:530.006000pt;}
.y15a{bottom:530.805760pt;}
.yd6{bottom:530.806000pt;}
.y261{bottom:534.627867pt;}
.y212{bottom:535.436000pt;}
.y3d{bottom:536.794000pt;}
.y1a6{bottom:538.000000pt;}
.y172{bottom:538.802880pt;}
.y63{bottom:538.811867pt;}
.y8e{bottom:538.812000pt;}
.y1e8{bottom:539.610000pt;}
.y11c{bottom:540.422000pt;}
.y23a{bottom:542.007867pt;}
.ya{bottom:543.764640pt;}
.yad{bottom:546.800000pt;}
.yf8{bottom:546.806000pt;}
.y159{bottom:547.604320pt;}
.yd5{bottom:547.606000pt;}
.y260{bottom:549.987867pt;}
.y3c{bottom:553.594000pt;}
.y211{bottom:554.720000pt;}
.y1a5{bottom:554.800000pt;}
.y171{bottom:555.601440pt;}
.y62{bottom:555.611867pt;}
.y8d{bottom:555.612000pt;}
.y1e7{bottom:556.410000pt;}
.y239{bottom:557.283867pt;}
.yac{bottom:563.600000pt;}
.yf7{bottom:563.606000pt;}
.y9{bottom:564.084960pt;}
.y158{bottom:564.402880pt;}
.y11b{bottom:565.216000pt;}
.y25f{bottom:569.271867pt;}
.y210{bottom:570.080000pt;}
.y3b{bottom:570.394000pt;}
.y1a4{bottom:571.600000pt;}
.yd4{bottom:572.400000pt;}
.y61{bottom:572.411867pt;}
.y8c{bottom:572.412000pt;}
.y1e6{bottom:573.210000pt;}
.y238{bottom:576.639867pt;}
.yab{bottom:580.400000pt;}
.yf6{bottom:580.406000pt;}
.y157{bottom:581.201440pt;}
.y25e{bottom:584.631867pt;}
.y3a{bottom:587.194000pt;}
.y1a3{bottom:588.400000pt;}
.yd3{bottom:589.200000pt;}
.y60{bottom:589.211867pt;}
.y8b{bottom:589.212000pt;}
.y20f{bottom:589.436000pt;}
.y237{bottom:595.923867pt;}
.yaa{bottom:597.200000pt;}
.yf5{bottom:597.206000pt;}
.y156{bottom:598.000000pt;}
.y11a{bottom:598.018000pt;}
.y8{bottom:600.485360pt;}
.y25d{bottom:603.915867pt;}
.y39{bottom:603.994000pt;}
.y170{bottom:605.200000pt;}
.yd2{bottom:606.000000pt;}
.y8a{bottom:606.012000pt;}
.y20e{bottom:608.720000pt;}
.y236{bottom:611.283867pt;}
.ya9{bottom:614.000000pt;}
.y5f{bottom:614.005867pt;}
.yf4{bottom:614.006000pt;}
.y25c{bottom:619.275867pt;}
.y7{bottom:621.200960pt;}
.y16f{bottom:622.000000pt;}
.yd1{bottom:622.800000pt;}
.y89{bottom:622.812000pt;}
.y20d{bottom:624.080000pt;}
.y235{bottom:630.639867pt;}
.ya8{bottom:630.800000pt;}
.y5e{bottom:630.805867pt;}
.yf3{bottom:630.806000pt;}
.y25b{bottom:634.635867pt;}
.y38{bottom:636.880000pt;}
.y16e{bottom:638.800000pt;}
.yd0{bottom:639.600000pt;}
.y6{bottom:641.916560pt;}
.y20c{bottom:643.436000pt;}
.y5d{bottom:647.605867pt;}
.y88{bottom:647.606000pt;}
.y234{bottom:649.923867pt;}
.y25a{bottom:653.919867pt;}
.y13a{bottom:655.600000pt;}
.ycf{bottom:656.400000pt;}
.y20b{bottom:658.796000pt;}
.y37{bottom:661.032000pt;}
.y5{bottom:662.720000pt;}
.y5c{bottom:664.405867pt;}
.y87{bottom:664.406000pt;}
.y233{bottom:669.279867pt;}
.yf2{bottom:672.400000pt;}
.yce{bottom:673.200000pt;}
.y259{bottom:673.275867pt;}
.y36{bottom:676.392000pt;}
.y20a{bottom:678.080000pt;}
.y5b{bottom:681.205867pt;}
.y86{bottom:681.206000pt;}
.y232{bottom:684.639867pt;}
.y258{bottom:688.635867pt;}
.yf1{bottom:689.200000pt;}
.ycd{bottom:690.000000pt;}
.y35{bottom:691.752000pt;}
.y209{bottom:693.440000pt;}
.y5a{bottom:698.005867pt;}
.y85{bottom:698.006000pt;}
.y231{bottom:699.999867pt;}
.y257{bottom:703.995867pt;}
.yf0{bottom:706.000000pt;}
.ycc{bottom:706.800000pt;}
.y34{bottom:707.028000pt;}
.y208{bottom:708.800000pt;}
.y59{bottom:714.805867pt;}
.y84{bottom:714.806000pt;}
.y230{bottom:719.283867pt;}
.y33{bottom:722.388000pt;}
.yef{bottom:722.800000pt;}
.y256{bottom:723.279867pt;}
.ycb{bottom:723.600000pt;}
.y58{bottom:731.605867pt;}
.y83{bottom:731.606000pt;}
.y32{bottom:737.748000pt;}
.y22f{bottom:738.639867pt;}
.ya7{bottom:739.600000pt;}
.yca{bottom:740.400000pt;}
.y207{bottom:740.412000pt;}
.y255{bottom:742.635867pt;}
.y57{bottom:748.405867pt;}
.y1ca{bottom:748.406000pt;}
.y31{bottom:753.024000pt;}
.y22e{bottom:753.999867pt;}
.y82{bottom:756.400000pt;}
.yc9{bottom:757.200000pt;}
.y254{bottom:757.995867pt;}
.y56{bottom:765.205867pt;}
.y1c9{bottom:765.206000pt;}
.y30{bottom:767.028000pt;}
.y81{bottom:773.200000pt;}
.y22d{bottom:773.283867pt;}
.y253{bottom:777.279867pt;}
.y2f{bottom:781.032000pt;}
.y4{bottom:787.518080pt;}
.y55{bottom:790.000000pt;}
.yc8{bottom:790.001440pt;}
.y22c{bottom:792.639867pt;}
.y2e{bottom:795.036000pt;}
.y3{bottom:799.519040pt;}
.y54{bottom:806.800000pt;}
.y22b{bottom:807.999867pt;}
.y2d{bottom:809.040000pt;}
.y2{bottom:811.520000pt;}
.y2a{bottom:845.120000pt;}
.h3{height:32.619375pt;}
.h4{height:33.463125pt;}
.hf{height:33.986250pt;}
.hc{height:41.209219pt;}
.ha{height:41.853437pt;}
.h12{height:42.656250pt;}
.hb{height:43.997812pt;}
.h15{height:44.685625pt;}
.h17{height:46.429688pt;}
.h2{height:46.476562pt;}
.h16{height:47.203125pt;}
.h13{height:48.955312pt;}
.he{height:51.743906pt;}
.h9{height:52.552812pt;}
.h14{height:54.167969pt;}
.hd{height:54.222656pt;}
.h10{height:55.070312pt;}
.h5{height:56.615625pt;}
.h7{height:56.644219pt;}
.h6{height:57.964810pt;}
.h11{height:61.968750pt;}
.h8{height:111.761333pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:118.480000pt;}
.w2{width:349.600000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x9{left:59.920000pt;}
.x1{left:86.960000pt;}
.xc{left:94.160000pt;}
.x2{left:104.640000pt;}
.xf{left:105.920000pt;}
.x4{left:112.794480pt;}
.x14{left:124.800000pt;}
.xb{left:126.160000pt;}
.x6{left:132.315200pt;}
.xa{left:158.320000pt;}
.x7{left:183.028160pt;}
.x3{left:234.233280pt;}
.x13{left:278.960000pt;}
.x5{left:281.432640pt;}
.x11{left:324.883840pt;}
.x10{left:356.800000pt;}
.xd{left:436.560000pt;}
.xe{left:443.760000pt;}
.x12{left:555.680000pt;}
}




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