
    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_af10d3933db030a604cc9a3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_d7a29bc04e7bac8f914be12b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_b51d97dd02ed3dbc3b6715ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_83df02c64704899f2f7f5c5a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_8b4ef140c8c0545a99c98480.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_b54d0f64e3e7f2a62632e1f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_84172485948bf7ac3ab467d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6e89b177a5d7043abd8f7a05.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_95035a59588434c1d3240bd4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_721df28db2f5a56232fee6cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2be5bf204d403b6487a7e2cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_663910b534e410aff29e6155.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_11bdefbfc9485fd1dad8ff82.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_82b5cf7434353dc20694d17c.woff2')format("woff");}.fff{font-family:fff;line-height:0.678000;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(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-17.688000px;}
.v6{vertical-align:-10.545468px;}
.v1{vertical-align:-6.126000px;}
.v2{vertical-align:-1.355400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.349501px;}
.v3{vertical-align:21.756000px;}
.ls9{letter-spacing:-1.263600px;}
.lsd{letter-spacing:-1.200600px;}
.ls11{letter-spacing:-1.199985px;}
.ls10{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.239997px;}
.lse{letter-spacing:-0.239400px;}
.lsb{letter-spacing:-0.238497px;}
.lsa{letter-spacing:-0.237600px;}
.lsf{letter-spacing:-0.237598px;}
.lsc{letter-spacing:-0.212372px;}
.ls18{letter-spacing:-0.211976px;}
.ls1e{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.180000px;}
.ls13{letter-spacing:1.703979px;}
.ls6{letter-spacing:2.721566px;}
.ls7{letter-spacing:2.726366px;}
.ls17{letter-spacing:2.814600px;}
.ls1d{letter-spacing:2.929200px;}
.ls14{letter-spacing:3.062362px;}
.ls16{letter-spacing:3.150600px;}
.ls22{letter-spacing:3.168000px;}
.ls23{letter-spacing:3.174000px;}
.ls28{letter-spacing:3.743953px;}
.ls25{letter-spacing:4.766340px;}
.ls26{letter-spacing:5.102336px;}
.ls27{letter-spacing:7.487906px;}
.ls0{letter-spacing:7.533000px;}
.ls24{letter-spacing:7.828702px;}
.ls5{letter-spacing:9.446282px;}
.ls20{letter-spacing:10.175873px;}
.ls1f{letter-spacing:10.257472px;}
.ls3{letter-spacing:10.387070px;}
.ls1b{letter-spacing:10.934263px;}
.ls19{letter-spacing:10.939063px;}
.ls21{letter-spacing:11.275059px;}
.ls1a{letter-spacing:11.279859px;}
.ls4{letter-spacing:12.243600px;}
.ls15{letter-spacing:16.080600px;}
.ls1{letter-spacing:20.783740px;}
.ls2{letter-spacing:20.788540px;}
.ls1c{letter-spacing:544.458600px;}
.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;}
}
.ws2d{word-spacing:-25.247684px;}
.wsea{word-spacing:-19.994233px;}
.ws102{word-spacing:-13.487831px;}
.ws16{word-spacing:-13.247834px;}
.wsa9{word-spacing:-10.991863px;}
.ws35{word-spacing:-10.799865px;}
.wsd6{word-spacing:-10.463869px;}
.ws69{word-spacing:-4.413563px;}
.wsec{word-spacing:-4.233565px;}
.wse4{word-spacing:-4.082366px;}
.ws11{word-spacing:-3.575955px;}
.ws128{word-spacing:-3.551956px;}
.ws130{word-spacing:-3.518356px;}
.ws14{word-spacing:-3.513556px;}
.ws132{word-spacing:-3.494356px;}
.ws125{word-spacing:-3.484756px;}
.ws144{word-spacing:-3.470357px;}
.ws25{word-spacing:-3.459900px;}
.ws117{word-spacing:-3.427157px;}
.ws10a{word-spacing:-3.407957px;}
.ws1d{word-spacing:-3.402900px;}
.ws21{word-spacing:-3.397200px;}
.ws115{word-spacing:-3.393558px;}
.wse{word-spacing:-3.388758px;}
.ws134{word-spacing:-3.383958px;}
.ws77{word-spacing:-3.374358px;}
.ws145{word-spacing:-3.359958px;}
.ws15{word-spacing:-3.345558px;}
.ws10{word-spacing:-3.340758px;}
.ws12d{word-spacing:-3.331158px;}
.ws116{word-spacing:-3.326358px;}
.ws1a{word-spacing:-3.323100px;}
.ws24{word-spacing:-3.317400px;}
.ws4{word-spacing:-3.315600px;}
.ws129{word-spacing:-3.311959px;}
.ws13a{word-spacing:-3.302359px;}
.ws10e{word-spacing:-3.297559px;}
.ws126{word-spacing:-3.292759px;}
.ws1f{word-spacing:-3.288900px;}
.ws9{word-spacing:-3.283200px;}
.ws137{word-spacing:-3.278359px;}
.wsd{word-spacing:-3.273559px;}
.ws13b{word-spacing:-3.263959px;}
.ws133{word-spacing:-3.259159px;}
.ws26{word-spacing:-3.254700px;}
.ws11c{word-spacing:-3.254359px;}
.ws135{word-spacing:-3.249559px;}
.ws1b{word-spacing:-3.249000px;}
.ws120{word-spacing:-3.244759px;}
.ws13{word-spacing:-3.239960px;}
.ws12{word-spacing:-3.235160px;}
.ws141{word-spacing:-3.230360px;}
.ws10f{word-spacing:-3.215960px;}
.wsc{word-spacing:-3.211160px;}
.ws11b{word-spacing:-3.196760px;}
.ws111{word-spacing:-3.191960px;}
.ws18{word-spacing:-3.186300px;}
.ws6{word-spacing:-3.186000px;}
.ws10b{word-spacing:-3.182360px;}
.ws13e{word-spacing:-3.177560px;}
.ws138{word-spacing:-3.172760px;}
.wse0{word-spacing:-3.167960px;}
.ws17{word-spacing:-3.152100px;}
.ws12e{word-spacing:-3.148761px;}
.ws136{word-spacing:-3.139161px;}
.ws7{word-spacing:-3.137400px;}
.wsa{word-spacing:-3.132000px;}
.ws148{word-spacing:-3.129561px;}
.wsb{word-spacing:-3.126600px;}
.ws2a{word-spacing:-3.124761px;}
.ws20{word-spacing:-3.123600px;}
.ws106{word-spacing:-3.119961px;}
.ws142{word-spacing:-3.115161px;}
.ws1c{word-spacing:-3.112200px;}
.ws13d{word-spacing:-3.105561px;}
.ws13c{word-spacing:-3.086361px;}
.ws113{word-spacing:-3.081561px;}
.ws13f{word-spacing:-3.076762px;}
.ws11d{word-spacing:-3.067162px;}
.ws5{word-spacing:-3.056400px;}
.ws131{word-spacing:-3.052762px;}
.ws143{word-spacing:-3.047962px;}
.ws140{word-spacing:-3.043162px;}
.ws11e{word-spacing:-3.038362px;}
.ws12b{word-spacing:-3.033562px;}
.ws23{word-spacing:-3.032400px;}
.ws101{word-spacing:-3.023962px;}
.ws147{word-spacing:-3.019162px;}
.ws11a{word-spacing:-3.014362px;}
.ws22{word-spacing:-3.009600px;}
.ws14b{word-spacing:-3.004762px;}
.ws8{word-spacing:-3.002400px;}
.ws14c{word-spacing:-2.990363px;}
.ws112{word-spacing:-2.985563px;}
.ws122{word-spacing:-2.980763px;}
.ws118{word-spacing:-2.975963px;}
.ws121{word-spacing:-2.971163px;}
.ws2{word-spacing:-2.970000px;}
.ws123{word-spacing:-2.956763px;}
.ws108{word-spacing:-2.947163px;}
.ws146{word-spacing:-2.942363px;}
.ws105{word-spacing:-2.937563px;}
.ws107{word-spacing:-2.913564px;}
.ws10c{word-spacing:-2.908764px;}
.ws110{word-spacing:-2.894364px;}
.ws124{word-spacing:-2.889564px;}
.ws19{word-spacing:-2.884200px;}
.ws12f{word-spacing:-2.875164px;}
.ws103{word-spacing:-2.855964px;}
.ws109{word-spacing:-2.846364px;}
.ws2c{word-spacing:-2.841564px;}
.ws149{word-spacing:-2.831965px;}
.ws139{word-spacing:-2.827165px;}
.ws12c{word-spacing:-2.812765px;}
.ws104{word-spacing:-2.793565px;}
.ws114{word-spacing:-2.779165px;}
.ws10d{word-spacing:-2.769565px;}
.ws1{word-spacing:-2.764800px;}
.ws127{word-spacing:-2.764765px;}
.ws119{word-spacing:-2.750366px;}
.wsf{word-spacing:-2.745566px;}
.ws1e{word-spacing:-2.736000px;}
.ws14a{word-spacing:-2.721566px;}
.ws3{word-spacing:-2.700000px;}
.ws0{word-spacing:-2.649567px;}
.ws44{word-spacing:-0.916789px;}
.ws4b{word-spacing:-0.897589px;}
.ws3e{word-spacing:-0.892789px;}
.ws3a{word-spacing:-0.878389px;}
.ws7f{word-spacing:-0.859189px;}
.ws34{word-spacing:-0.854389px;}
.ws4e{word-spacing:-0.844789px;}
.ws46{word-spacing:-0.815990px;}
.ws51{word-spacing:-0.801590px;}
.ws38{word-spacing:-0.791990px;}
.ws7e{word-spacing:-0.787190px;}
.ws5e{word-spacing:-0.774000px;}
.ws50{word-spacing:-0.772790px;}
.wsba{word-spacing:-0.758391px;}
.ws3c{word-spacing:-0.743991px;}
.ws49{word-spacing:-0.739191px;}
.ws6b{word-spacing:-0.732000px;}
.ws37{word-spacing:-0.729591px;}
.ws7a{word-spacing:-0.724791px;}
.ws41{word-spacing:-0.715191px;}
.wseb{word-spacing:-0.714000px;}
.ws30{word-spacing:-0.710391px;}
.ws72{word-spacing:-0.708000px;}
.ws4f{word-spacing:-0.705591px;}
.wsc1{word-spacing:-0.686391px;}
.wsb9{word-spacing:-0.681591px;}
.ws80{word-spacing:-0.676792px;}
.ws45{word-spacing:-0.671992px;}
.ws70{word-spacing:-0.666000px;}
.wsc2{word-spacing:-0.662392px;}
.ws39{word-spacing:-0.657592px;}
.ws3d{word-spacing:-0.647992px;}
.ws48{word-spacing:-0.633592px;}
.wsc9{word-spacing:-0.628792px;}
.ws2e{word-spacing:-0.623992px;}
.ws32{word-spacing:-0.619192px;}
.ws94{word-spacing:-0.614392px;}
.ws47{word-spacing:-0.609592px;}
.ws31{word-spacing:-0.604792px;}
.ws6f{word-spacing:-0.600000px;}
.ws91{word-spacing:-0.588000px;}
.wsaf{word-spacing:-0.580793px;}
.ws5d{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.571193px;}
.ws7b{word-spacing:-0.547193px;}
.wsde{word-spacing:-0.546000px;}
.ws4a{word-spacing:-0.542393px;}
.ws93{word-spacing:-0.537593px;}
.ws71{word-spacing:-0.528000px;}
.ws3b{word-spacing:-0.523193px;}
.ws73{word-spacing:-0.522000px;}
.ws97{word-spacing:-0.516000px;}
.ws88{word-spacing:-0.510000px;}
.ws54{word-spacing:-0.504000px;}
.wsbb{word-spacing:-0.498000px;}
.ws40{word-spacing:-0.494394px;}
.ws6e{word-spacing:-0.492000px;}
.ws95{word-spacing:-0.484794px;}
.wsf3{word-spacing:-0.480000px;}
.wsa7{word-spacing:-0.479994px;}
.ws4c{word-spacing:-0.475194px;}
.ws43{word-spacing:-0.470394px;}
.ws7d{word-spacing:-0.460794px;}
.ws9c{word-spacing:-0.456000px;}
.wsc8{word-spacing:-0.451194px;}
.wsae{word-spacing:-0.441594px;}
.ws61{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.431995px;}
.wscb{word-spacing:-0.427195px;}
.ws63{word-spacing:-0.426000px;}
.ws9f{word-spacing:-0.420000px;}
.wsca{word-spacing:-0.417595px;}
.wsc7{word-spacing:-0.407995px;}
.wsa0{word-spacing:-0.402000px;}
.ws2f{word-spacing:-0.398395px;}
.ws5b{word-spacing:-0.396000px;}
.ws82{word-spacing:-0.390000px;}
.wsdf{word-spacing:-0.384000px;}
.ws29{word-spacing:-0.378000px;}
.ws76{word-spacing:-0.366000px;}
.wsad{word-spacing:-0.364795px;}
.ws83{word-spacing:-0.360000px;}
.ws74{word-spacing:-0.354000px;}
.ws6c{word-spacing:-0.348000px;}
.ws33{word-spacing:-0.345596px;}
.wsd3{word-spacing:-0.342000px;}
.wsaa{word-spacing:-0.340796px;}
.ws8b{word-spacing:-0.336000px;}
.ws42{word-spacing:-0.335996px;}
.wsbe{word-spacing:-0.330000px;}
.ws67{word-spacing:-0.324000px;}
.ws84{word-spacing:-0.318000px;}
.wsf0{word-spacing:-0.312000px;}
.wsda{word-spacing:-0.311996px;}
.ws8d{word-spacing:-0.306000px;}
.ws5c{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.294000px;}
.ws6d{word-spacing:-0.288000px;}
.wsd9{word-spacing:-0.287996px;}
.ws81{word-spacing:-0.282000px;}
.ws58{word-spacing:-0.276000px;}
.ws7c{word-spacing:-0.273597px;}
.wsb2{word-spacing:-0.270000px;}
.wsa1{word-spacing:-0.264000px;}
.ws4d{word-spacing:-0.263997px;}
.wsb5{word-spacing:-0.258000px;}
.ws79{word-spacing:-0.254397px;}
.ws55{word-spacing:-0.252000px;}
.wsdd{word-spacing:-0.246000px;}
.ws56{word-spacing:-0.234000px;}
.wsb0{word-spacing:-0.228000px;}
.ws92{word-spacing:-0.220797px;}
.wsbd{word-spacing:-0.216000px;}
.ws68{word-spacing:-0.210000px;}
.ws86{word-spacing:-0.204000px;}
.ws28{word-spacing:-0.198000px;}
.ws57{word-spacing:-0.192000px;}
.wsa5{word-spacing:-0.187198px;}
.wsdc{word-spacing:-0.186000px;}
.ws5f{word-spacing:-0.174000px;}
.wsd8{word-spacing:-0.172798px;}
.ws9d{word-spacing:-0.168000px;}
.wsc5{word-spacing:-0.163198px;}
.ws98{word-spacing:-0.162000px;}
.ws75{word-spacing:-0.156000px;}
.ws60{word-spacing:-0.150000px;}
.wsb4{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.143998px;}
.wsa8{word-spacing:-0.139198px;}
.ws64{word-spacing:-0.138000px;}
.wsa6{word-spacing:-0.134398px;}
.ws9a{word-spacing:-0.132000px;}
.ws85{word-spacing:-0.126000px;}
.ws9e{word-spacing:-0.120000px;}
.wscc{word-spacing:-0.114000px;}
.ws59{word-spacing:-0.102000px;}
.ws8c{word-spacing:-0.096000px;}
.wsab{word-spacing:-0.095999px;}
.ws27{word-spacing:-0.090000px;}
.wsc0{word-spacing:-0.086399px;}
.wsbc{word-spacing:-0.084000px;}
.wsb8{word-spacing:-0.081599px;}
.ws8e{word-spacing:-0.078000px;}
.wsc6{word-spacing:-0.076799px;}
.ws65{word-spacing:-0.072000px;}
.wsa2{word-spacing:-0.067199px;}
.wsbf{word-spacing:-0.048000px;}
.ws89{word-spacing:-0.036000px;}
.ws5a{word-spacing:-0.030000px;}
.wsb7{word-spacing:-0.028800px;}
.ws9b{word-spacing:-0.024000px;}
.ws8f{word-spacing:-0.018000px;}
.wsef{word-spacing:-0.012000px;}
.wsf6{word-spacing:-0.006000px;}
.wsd4{word-spacing:-0.004800px;}
.ws52{word-spacing:0.000000px;}
.wsac{word-spacing:0.004800px;}
.wse1{word-spacing:0.006000px;}
.ws62{word-spacing:0.012000px;}
.wsb1{word-spacing:0.018000px;}
.wsd0{word-spacing:0.024000px;}
.wsd7{word-spacing:0.033600px;}
.ws66{word-spacing:0.042000px;}
.wscf{word-spacing:0.048000px;}
.wsb3{word-spacing:0.060000px;}
.wscd{word-spacing:0.072000px;}
.wsd2{word-spacing:0.096000px;}
.wse3{word-spacing:0.102000px;}
.ws87{word-spacing:0.108000px;}
.wsd1{word-spacing:0.114000px;}
.wsdb{word-spacing:0.120000px;}
.wsb6{word-spacing:0.126000px;}
.wsc3{word-spacing:0.139198px;}
.ws53{word-spacing:0.144000px;}
.ws8a{word-spacing:0.186000px;}
.wsce{word-spacing:0.192000px;}
.wse2{word-spacing:0.216000px;}
.ws96{word-spacing:0.259198px;}
.wsff{word-spacing:0.270000px;}
.wsc4{word-spacing:0.278397px;}
.ws6a{word-spacing:0.295198px;}
.ws99{word-spacing:0.316797px;}
.wsa3{word-spacing:0.331196px;}
.wsd5{word-spacing:0.335996px;}
.wsee{word-spacing:0.336000px;}
.wsfe{word-spacing:0.342000px;}
.wse5{word-spacing:0.348000px;}
.wse9{word-spacing:0.378000px;}
.wse8{word-spacing:0.450000px;}
.wsf1{word-spacing:0.480000px;}
.wsa4{word-spacing:0.518394px;}
.wsf7{word-spacing:0.564000px;}
.wse7{word-spacing:0.600000px;}
.wse6{word-spacing:0.612000px;}
.wsfa{word-spacing:0.648000px;}
.wsf2{word-spacing:0.666000px;}
.wsf8{word-spacing:0.708000px;}
.wsf4{word-spacing:0.762000px;}
.wsf9{word-spacing:0.846000px;}
.wsf5{word-spacing:0.978000px;}
.wsfc{word-spacing:1.014000px;}
.wsfd{word-spacing:1.020000px;}
.wsfb{word-spacing:1.026000px;}
.wsed{word-spacing:1.158000px;}
.ws2b{word-spacing:34.588368px;}
.ws11f{word-spacing:46.842614px;}
.ws12a{word-spacing:46.847414px;}
.ws100{word-spacing:46.909814px;}
._42{margin-left:-26.307000px;}
._44{margin-left:-21.503731px;}
._43{margin-left:-19.914951px;}
._0{margin-left:-1.113586px;}
._6{width:1.755600px;}
._2{width:3.769200px;}
._4{width:9.259084px;}
._3{width:11.044662px;}
._8{width:12.396000px;}
._5{width:13.965000px;}
._9{width:16.434995px;}
._a{width:21.066937px;}
._1{width:25.412400px;}
._3a{width:120.041699px;}
._3b{width:131.268759px;}
._30{width:142.644617px;}
._39{width:150.545318px;}
._31{width:154.063674px;}
._1d{width:165.876327px;}
._3c{width:171.741853px;}
._1e{width:177.391383px;}
._3d{width:178.893764px;}
._24{width:182.498519px;}
._3e{width:183.540106px;}
._3f{width:186.381670px;}
._32{width:188.416845px;}
._2b{width:194.133573px;}
._1f{width:199.845502px;}
._40{width:201.683879px;}
._25{width:205.283834px;}
._33{width:206.647017px;}
._34{width:209.843777px;}
._20{width:217.869277px;}
._35{width:224.469194px;}
._37{width:225.645179px;}
._21{width:232.499494px;}
._2c{width:233.939476px;}
._22{width:247.465707px;}
._2d{width:249.716878px;}
._26{width:256.513594px;}
._2e{width:264.342296px;}
._28{width:271.926201px;}
._27{width:280.292496px;}
._29{width:309.485731px;}
._38{width:320.290396px;}
._36{width:322.450369px;}
._2f{width:326.410320px;}
._1c{width:351.845202px;}
._2a{width:373.593730px;}
._23{width:441.032887px;}
._19{width:517.006337px;}
._17{width:527.652604px;}
._1b{width:528.804590px;}
._f{width:551.023512px;}
._12{width:562.788165px;}
._13{width:572.450444px;}
._c{width:574.399220px;}
._d{width:583.874301px;}
._16{width:757.699329px;}
._15{width:813.066637px;}
._14{width:830.058424px;}
._18{width:845.466232px;}
._1a{width:855.450107px;}
._e{width:925.433232px;}
._11{width:982.230922px;}
._10{width:984.765290px;}
._b{width:1013.790527px;}
._41{width:1547.351858px;}
._7{width:1572.551543px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.995000px;}
.fsb{font-size:33.598800px;}
.fs4{font-size:35.995200px;}
.fsa{font-size:39.995400px;}
.fs9{font-size:41.998800px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:54.000000px;}
.ye4{bottom:117.610387px;}
.y2b{bottom:124.498650px;}
.y50{bottom:124.500064px;}
.y12e{bottom:124.501500px;}
.y1b0{bottom:124.501678px;}
.y162{bottom:125.095500px;}
.y109{bottom:130.537500px;}
.y17d{bottom:131.983500px;}
.yb0{bottom:137.085000px;}
.yfc{bottom:138.445500px;}
.y1af{bottom:138.788699px;}
.y7d{bottom:140.742000px;}
.y4f{bottom:140.997458px;}
.ye8{bottom:141.846946px;}
.y2a{bottom:143.971650px;}
.y12d{bottom:143.974500px;}
.y161{bottom:144.570000px;}
.ye3{bottom:148.988850px;}
.y108{bottom:150.010500px;}
.y17c{bottom:151.542000px;}
.y103{bottom:152.987747px;}
.y1ae{bottom:152.989322px;}
.yaf{bottom:156.558000px;}
.y4d{bottom:157.494852px;}
.y4e{bottom:157.835647px;}
.yfb{bottom:157.918500px;}
.y7c{bottom:160.215000px;}
.ye2{bottom:162.595500px;}
.y12c{bottom:163.534500px;}
.y160{bottom:164.128500px;}
.ye7{bottom:165.061856px;}
.y29{bottom:169.483500px;}
.y107{bottom:169.485000px;}
.y1f0{bottom:170.592956px;}
.y1ad{bottom:172.463878px;}
.y4c{bottom:173.993445px;}
.yae{bottom:176.116500px;}
.y102{bottom:176.287856px;}
.yfa{bottom:177.478500px;}
.y17b{bottom:178.498500px;}
.ye6{bottom:179.348878px;}
.y7b{bottom:179.773500px;}
.y12b{bottom:183.007500px;}
.y15f{bottom:183.603000px;}
.y1ef{bottom:184.794779px;}
.y1ac{bottom:186.749700px;}
.y106{bottom:188.959500px;}
.y101{bottom:190.489679px;}
.y4b{bottom:190.490839px;}
.ye1{bottom:190.744734px;}
.ye5{bottom:193.549500px;}
.yad{bottom:195.591000px;}
.yf9{bottom:196.951500px;}
.y17a{bottom:197.973000px;}
.y1ed{bottom:199.081800px;}
.y7a{bottom:199.248000px;}
.y1ee{bottom:199.336197px;}
.y1ab{bottom:201.036721px;}
.y12a{bottom:202.482000px;}
.y15e{bottom:203.076000px;}
.y100{bottom:204.775500px;}
.y49{bottom:206.988233px;}
.y4a{bottom:207.413028px;}
.y105{bottom:208.518000px;}
.ye0{bottom:209.452500px;}
.yac{bottom:215.064000px;}
.yaa{bottom:215.067000px;}
.yf8{bottom:216.426000px;}
.y179{bottom:217.531500px;}
.y1ec{bottom:218.555157px;}
.y79{bottom:218.722500px;}
.y1aa{bottom:220.510078px;}
.yab{bottom:221.782500px;}
.y129{bottom:222.040500px;}
.y15d{bottom:222.634500px;}
.y48{bottom:223.485627px;}
.y104{bottom:227.991000px;}
.ydf{bottom:228.246000px;}
.y1eb{bottom:232.842178px;}
.ya9{bottom:234.541500px;}
.y1a9{bottom:234.711900px;}
.yf7{bottom:235.900500px;}
.y78{bottom:238.281000px;}
.y47{bottom:239.983020px;}
.y128{bottom:241.515000px;}
.y15c{bottom:242.109000px;}
.y178{bottom:244.489500px;}
.yde{bottom:246.954000px;}
.y1ea{bottom:247.044001px;}
.y1a8{bottom:248.998922px;}
.ya8{bottom:254.100000px;}
.yf6{bottom:255.459000px;}
.y77{bottom:257.754000px;}
.y127{bottom:260.988000px;}
.y15b{bottom:261.583500px;}
.y177{bottom:263.962500px;}
.y46{bottom:265.494701px;}
.ydd{bottom:265.747500px;}
.y1e9{bottom:266.602556px;}
.y28{bottom:266.940150px;}
.y1a7{bottom:268.472278px;}
.ya7{bottom:273.573000px;}
.yf5{bottom:274.932000px;}
.y126{bottom:280.462500px;}
.y1e8{bottom:280.804379px;}
.y15a{bottom:281.142000px;}
.y45{bottom:281.992095px;}
.y112{bottom:282.671437px;}
.y1a6{bottom:282.759300px;}
.y76{bottom:283.266000px;}
.y176{bottom:283.522500px;}
.ydc{bottom:284.457535px;}
.y27{bottom:287.944650px;}
.ya6{bottom:293.047500px;}
.yf4{bottom:294.406500px;}
.y44{bottom:298.489489px;}
.y125{bottom:300.021000px;}
.y1e7{bottom:300.362934px;}
.y159{bottom:300.615000px;}
.y1a5{bottom:302.232656px;}
.yda{bottom:303.250500px;}
.y111{bottom:305.887547px;}
.ydb{bottom:308.523000px;}
.y26{bottom:308.950575px;}
.y175{bottom:310.479000px;}
.ya5{bottom:312.606000px;}
.yf3{bottom:313.965000px;}
.y1e6{bottom:314.564757px;}
.y1a4{bottom:316.519678px;}
.y124{bottom:319.495500px;}
.y110{bottom:320.089369px;}
.y158{bottom:320.089500px;}
.yd9{bottom:321.958500px;}
.y43{bottom:324.001170px;}
.y75{bottom:324.172500px;}
.y1e5{bottom:328.850578px;}
.y25{bottom:329.869575px;}
.y1a3{bottom:330.721500px;}
.ya4{bottom:332.080500px;}
.yf2{bottom:333.439500px;}
.y10f{bottom:334.375191px;}
.y174{bottom:337.522500px;}
.y123{bottom:338.968500px;}
.y157{bottom:339.564000px;}
.y42{bottom:340.499764px;}
.yd8{bottom:340.752625px;}
.y74{bottom:343.647000px;}
.y1e4{bottom:348.325135px;}
.y10e{bottom:348.662212px;}
.y1a2{bottom:350.280056px;}
.y24{bottom:350.874075px;}
.ya3{bottom:351.556500px;}
.yf1{bottom:352.912500px;}
.yef{bottom:352.915500px;}
.y41{bottom:356.997158px;}
.y122{bottom:358.528500px;}
.y156{bottom:359.122500px;}
.yd7{bottom:359.461591px;}
.yf0{bottom:359.631000px;}
.y1e3{bottom:362.610956px;}
.y10d{bottom:362.864035px;}
.y73{bottom:363.205500px;}
.y173{bottom:364.479000px;}
.y1a1{bottom:364.481878px;}
.ya2{bottom:371.115000px;}
.y23{bottom:371.878575px;}
.yee{bottom:372.474000px;}
.y40{bottom:373.494551px;}
.y10c{bottom:377.149856px;}
.y121{bottom:378.001500px;}
.yd6{bottom:378.255756px;}
.y155{bottom:378.597000px;}
.y1e2{bottom:382.085513px;}
.y72{bottom:382.678500px;}
.y1a0{bottom:384.040434px;}
.y3f{bottom:389.991945px;}
.ya1{bottom:390.589500px;}
.y10b{bottom:391.351679px;}
.y172{bottom:391.521000px;}
.yed{bottom:391.947000px;}
.yd5{bottom:392.456379px;}
.y22{bottom:392.883075px;}
.y1e1{bottom:396.372534px;}
.y120{bottom:397.476000px;}
.y154{bottom:398.070000px;}
.y19f{bottom:398.242256px;}
.y71{bottom:402.153000px;}
.y10a{bottom:405.637500px;}
.y3e{bottom:406.489339px;}
.ya0{bottom:410.064000px;}
.y1e0{bottom:410.573156px;}
.y171{bottom:410.995500px;}
.yec{bottom:411.421500px;}
.y19e{bottom:412.528077px;}
.y21{bottom:413.887575px;}
.yd4{bottom:414.736500px;}
.y11f{bottom:417.034500px;}
.y153{bottom:417.628500px;}
.y70{bottom:421.711500px;}
.y9f{bottom:429.622500px;}
.y1df{bottom:430.047713px;}
.y170{bottom:430.468500px;}
.yeb{bottom:430.896000px;}
.y3d{bottom:432.001020px;}
.y19d{bottom:432.002634px;}
.y20{bottom:434.893500px;}
.y11e{bottom:436.509000px;}
.y152{bottom:437.103000px;}
.y6f{bottom:441.186000px;}
.y1de{bottom:444.333534px;}
.y19c{bottom:446.289655px;}
.y9e{bottom:449.095500px;}
.yd3{bottom:449.688000px;}
.yea{bottom:450.454500px;}
.y1f{bottom:455.898000px;}
.y16f{bottom:455.980500px;}
.y11d{bottom:455.982000px;}
.y151{bottom:456.577500px;}
.y3c{bottom:457.512701px;}
.y1dd{bottom:458.620556px;}
.y19b{bottom:460.490278px;}
.y6e{bottom:460.660500px;}
.y9d{bottom:468.570000px;}
.yd2{bottom:469.162500px;}
.ye9{bottom:469.927500px;}
.y1dc{bottom:472.822378px;}
.y11c{bottom:475.540500px;}
.y150{bottom:476.136000px;}
.y1e{bottom:476.902500px;}
.y19a{bottom:479.964834px;}
.y6d{bottom:480.133500px;}
.y3b{bottom:483.024382px;}
.y9c{bottom:488.044500px;}
.yd1{bottom:488.635500px;}
.y1db{bottom:492.295735px;}
.y199{bottom:494.250656px;}
.y14f{bottom:495.609000px;}
.y14d{bottom:495.613500px;}
.y1d{bottom:497.907000px;}
.y16e{bottom:498.162000px;}
.y6c{bottom:499.692000px;}
.y11b{bottom:500.967000px;}
.y14e{bottom:502.242000px;}
.y1da{bottom:506.582756px;}
.y9b{bottom:507.603000px;}
.y3a{bottom:508.536063px;}
.y198{bottom:508.537677px;}
.yd0{bottom:514.147500px;}
.y14c{bottom:515.088000px;}
.y16d{bottom:517.720500px;}
.y1c{bottom:518.911500px;}
.y6b{bottom:519.166500px;}
.y1d9{bottom:520.868578px;}
.yff{bottom:526.904569px;}
.y9a{bottom:527.076000px;}
.y197{bottom:528.011034px;}
.y39{bottom:533.962546px;}
.y14b{bottom:534.646500px;}
.y1d7{bottom:535.070400px;}
.y1d8{bottom:535.495195px;}
.y16c{bottom:537.193500px;}
.y6a{bottom:538.641000px;}
.y1b{bottom:539.916000px;}
.y196{bottom:542.212856px;}
.y11a{bottom:543.913500px;}
.y99{bottom:546.550500px;}
.yfe{bottom:550.120679px;}
.y38{bottom:550.545138px;}
.y14a{bottom:554.119500px;}
.y1d6{bottom:554.544957px;}
.ycf{bottom:556.414500px;}
.y195{bottom:556.499878px;}
.y69{bottom:558.199500px;}
.y1a{bottom:560.920500px;}
.y16b{bottom:562.705500px;}
.y119{bottom:563.388000px;}
.yfd{bottom:564.406500px;}
.y98{bottom:566.109000px;}
.y37{bottom:567.042532px;}
.y1d5{bottom:568.830778px;}
.y149{bottom:573.594000px;}
.yce{bottom:575.889000px;}
.y194{bottom:575.973234px;}
.y68{bottom:577.672500px;}
.y19{bottom:581.925000px;}
.y118{bottom:582.946500px;}
.y1d2{bottom:583.117800px;}
.y1d3{bottom:583.457395px;}
.y36{bottom:583.541126px;}
.y97{bottom:585.583500px;}
.y1d4{bottom:585.668968px;}
.y193{bottom:590.260256px;}
.y148{bottom:593.068500px;}
.ycd{bottom:595.362000px;}
.y35{bottom:600.038520px;}
.y117{bottom:602.419500px;}
.y1d1{bottom:602.591156px;}
.y18{bottom:602.929500px;}
.y67{bottom:603.184425px;}
.y192{bottom:604.462078px;}
.y96{bottom:605.058000px;}
.y147{bottom:612.627000px;}
.y16a{bottom:613.900500px;}
.ycc{bottom:614.922000px;}
.y34{bottom:616.535913px;}
.y1d0{bottom:616.792979px;}
.y116{bottom:621.894000px;}
.y17{bottom:623.934000px;}
.y191{bottom:624.020634px;}
.y95{bottom:624.616500px;}
.y66{bottom:630.141000px;}
.y1cd{bottom:631.080000px;}
.y1ce{bottom:631.419596px;}
.y146{bottom:632.101500px;}
.y33{bottom:633.033307px;}
.y169{bottom:633.375000px;}
.y1cf{bottom:633.716367px;}
.ycb{bottom:634.395000px;}
.y190{bottom:638.222456px;}
.y115{bottom:641.368500px;}
.y94{bottom:644.089500px;}
.y1cc{bottom:650.553357px;}
.y145{bottom:651.574500px;}
.y18f{bottom:652.508278px;}
.yca{bottom:653.869500px;}
.y16{bottom:656.929500px;}
.y32{bottom:657.609000px;}
.y114{bottom:660.927000px;}
.y168{bottom:661.863000px;}
.y93{bottom:663.564000px;}
.y1cb{bottom:664.840378px;}
.y18e{bottom:666.710100px;}
.y65{bottom:671.133000px;}
.yc9{bottom:673.344000px;}
.y1c9{bottom:679.041001px;}
.y1ca{bottom:679.466995px;}
.y113{bottom:680.400000px;}
.y167{bottom:681.421500px;}
.y92{bottom:683.038500px;}
.y18d{bottom:686.268656px;}
.y64{bottom:690.607500px;}
.yc8{bottom:692.902500px;}
.y1c8{bottom:698.600756px;}
.y18c{bottom:700.470478px;}
.y166{bottom:700.896000px;}
.y91{bottom:702.597000px;}
.y63{bottom:710.082000px;}
.yc7{bottom:712.375500px;}
.y1c7{bottom:712.802578px;}
.y18b{bottom:714.757500px;}
.y15{bottom:717.224100px;}
.y165{bottom:720.369000px;}
.y90{bottom:722.070000px;}
.y62{bottom:729.640500px;}
.yc6{bottom:731.850000px;}
.y1c6{bottom:732.361134px;}
.y144{bottom:733.721573px;}
.y18a{bottom:734.230856px;}
.y164{bottom:739.927500px;}
.y31{bottom:744.520500px;}
.y1c5{bottom:746.562956px;}
.y14{bottom:747.242925px;}
.y189{bottom:748.517878px;}
.y61{bottom:749.115000px;}
.yc5{bottom:751.408500px;}
.y143{bottom:760.678036px;}
.y1c4{bottom:760.848778px;}
.y30{bottom:761.782500px;}
.y13{bottom:762.209138px;}
.y187{bottom:762.718500px;}
.y188{bottom:762.972897px;}
.yb4{bottom:763.909247px;}
.y163{bottom:765.439500px;}
.y60{bottom:768.588000px;}
.yc4{bottom:770.883000px;}
.y12{bottom:777.176550px;}
.y142{bottom:778.706611px;}
.y2f{bottom:778.960500px;}
.y1c3{bottom:780.323334px;}
.y186{bottom:783.042000px;}
.yb3{bottom:787.209356px;}
.y5f{bottom:788.062500px;}
.yc3{bottom:790.356000px;}
.y11{bottom:792.227962px;}
.y1c2{bottom:794.609156px;}
.y2e{bottom:796.224000px;}
.y141{bottom:796.735186px;}
.yb2{bottom:801.411179px;}
.y10{bottom:807.195375px;}
.y5e{bottom:807.621000px;}
.y1c0{bottom:808.810978px;}
.y1c1{bottom:811.447345px;}
.y2d{bottom:813.486000px;}
.yb1{bottom:815.697000px;}
.yc2{bottom:815.868000px;}
.yf{bottom:822.246787px;}
.y140{bottom:824.798035px;}
.y5d{bottom:827.095500px;}
.y1bf{bottom:828.369534px;}
.ye{bottom:837.213000px;}
.y1be{bottom:842.571356px;}
.y13f{bottom:843.591000px;}
.y5c{bottom:846.568500px;}
.y8f{bottom:856.086774px;}
.y1bd{bottom:856.858378px;}
.yc1{bottom:858.133500px;}
.y185{bottom:860.089500px;}
.y13e{bottom:862.299000px;}
.y13c{bottom:862.299535px;}
.yd{bottom:864.169500px;}
.yb{bottom:864.171000px;}
.y5b{bottom:866.127000px;}
.y13d{bottom:867.657000px;}
.yc{bottom:870.208500px;}
.y1bc{bottom:871.059000px;}
.y8e{bottom:872.584168px;}
.yc0{bottom:877.608000px;}
.y184{bottom:879.564000px;}
.y9{bottom:880.668000px;}
.y7{bottom:880.668450px;}
.ya{bottom:881.006850px;}
.y13b{bottom:881.092500px;}
.y139{bottom:881.094475px;}
.y5a{bottom:885.601500px;}
.y13a{bottom:886.450500px;}
.y8{bottom:886.705500px;}
.y1bb{bottom:890.618756px;}
.ybf{bottom:897.081000px;}
.y5{bottom:897.250500px;}
.y8d{bottom:898.095849px;}
.y183{bottom:899.122500px;}
.y138{bottom:899.802241px;}
.y6{bottom:903.202500px;}
.y1ba{bottom:904.820578px;}
.y59{bottom:905.076000px;}
.y8c{bottom:914.594442px;}
.ybe{bottom:916.639500px;}
.y137{bottom:918.596406px;}
.y1b9{bottom:919.106400px;}
.y58{bottom:924.634500px;}
.y182{bottom:926.080500px;}
.y8b{bottom:931.091836px;}
.y1b8{bottom:933.308222px;}
.y4{bottom:934.670100px;}
.ybd{bottom:936.114000px;}
.y136{bottom:937.305372px;}
.y57{bottom:944.109000px;}
.y8a{bottom:947.589230px;}
.y1b7{bottom:952.866778px;}
.y181{bottom:953.122500px;}
.ybc{bottom:955.588500px;}
.y135{bottom:956.098337px;}
.y56{bottom:963.582000px;}
.y89{bottom:964.086624px;}
.y1b6{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y134{bottom:974.807303px;}
.ybb{bottom:975.147000px;}
.y180{bottom:980.079000px;}
.y87{bottom:980.584018px;}
.y88{bottom:980.924813px;}
.y1b5{bottom:981.355622px;}
.y55{bottom:983.140500px;}
.y133{bottom:993.600268px;}
.yba{bottom:994.620000px;}
.yb8{bottom:994.621500px;}
.y86{bottom:997.081411px;}
.y1b4{bottom:1000.828978px;}
.yb9{bottom:1001.253000px;}
.y2{bottom:1002.189000px;}
.y54{bottom:1002.615000px;}
.y17f{bottom:1007.122500px;}
.y132{bottom:1012.309235px;}
.y85{bottom:1013.578805px;}
.yb7{bottom:1014.094500px;}
.y1b3{bottom:1015.116000px;}
.y53{bottom:1022.089500px;}
.y131{bottom:1026.596256px;}
.y1b2{bottom:1029.316622px;}
.y83{bottom:1030.076199px;}
.y84{bottom:1030.416995px;}
.yb6{bottom:1033.653000px;}
.y17e{bottom:1034.079000px;}
.y1{bottom:1035.949500px;}
.y130{bottom:1040.796879px;}
.y52{bottom:1041.562500px;}
.y81{bottom:1046.574793px;}
.y82{bottom:1046.914388px;}
.y1b1{bottom:1048.791179px;}
.yb5{bottom:1059.079500px;}
.y51{bottom:1061.121000px;}
.y7f{bottom:1063.072186px;}
.y12f{bottom:1063.077000px;}
.y80{bottom:1063.411782px;}
.y7e{bottom:1118.692500px;}
.h15{height:23.996250px;}
.h1a{height:26.039070px;}
.h4{height:27.932275px;}
.hf{height:29.996550px;}
.ha{height:34.968313px;}
.h11{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hc{height:39.119511px;}
.hb{height:40.559493px;}
.h3{height:41.904000px;}
.h16{height:43.382930px;}
.h19{height:43.384135px;}
.h18{height:43.385070px;}
.h13{height:43.388571px;}
.h14{height:43.391070px;}
.h17{height:43.727070px;}
.h7{height:44.175000px;}
.h9{height:45.000000px;}
.h12{height:46.500000px;}
.hd{height:53.999550px;}
.he{height:54.305070px;}
.h10{height:54.317070px;}
.h8{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:54.000000px;}
.x40{left:65.990250px;}
.x15{left:71.433000px;}
.x1b{left:84.188023px;}
.x20{left:89.971650px;}
.x1d{left:101.621405px;}
.x2a{left:108.084900px;}
.x2b{left:112.422000px;}
.x1e{left:147.796828px;}
.x2f{left:181.813500px;}
.x1a{left:184.278771px;}
.x2c{left:186.151500px;}
.x17{left:189.721521px;}
.x32{left:200.180973px;}
.x1c{left:210.641242px;}
.x31{left:212.341621px;}
.x16{left:225.013080px;}
.x34{left:277.227210px;}
.x30{left:278.248500px;}
.x35{left:288.281471px;}
.x33{left:296.530168px;}
.x1{left:300.018000px;}
.x46{left:307.332000px;}
.x18{left:317.961000px;}
.x1f{left:322.725000px;}
.x48{left:332.247289px;}
.x2d{left:362.353500px;}
.x26{left:365.667304px;}
.x36{left:368.218472px;}
.x2e{left:371.026500px;}
.x25{left:377.827952px;}
.x37{left:379.188735px;}
.x11{left:388.545000px;}
.x12{left:394.072500px;}
.x47{left:421.198577px;}
.x8{left:432.850500px;}
.x9{left:446.712000px;}
.x38{left:459.124536px;}
.x39{left:475.792328px;}
.x2{left:484.213500px;}
.x3{left:498.075000px;}
.x13{left:499.606500px;}
.x4e{left:524.436504px;}
.x28{left:555.814527px;}
.x3a{left:560.321671px;}
.x27{left:564.318821px;}
.x43{left:571.380000px;}
.x3b{left:576.989463px;}
.x44{left:579.969000px;}
.xa{left:581.839500px;}
.xb{left:587.367000px;}
.x21{left:603.694500px;}
.x22{left:616.279500px;}
.x49{left:623.166470px;}
.x19{left:655.143000px;}
.x3c{left:661.517606px;}
.x23{left:667.899000px;}
.x24{left:680.485500px;}
.x3d{left:681.841752px;}
.x4{left:690.264000px;}
.x5{left:695.791500px;}
.x4d{left:708.460204px;}
.x41{left:728.701500px;}
.x45{left:736.780500px;}
.xc{left:739.503000px;}
.x4a{left:740.775800px;}
.xd{left:745.030500px;}
.x4b{left:746.643727px;}
.x29{left:748.257322px;}
.x3e{left:770.027450px;}
.x4c{left:776.831749px;}
.x42{left:779.130000px;}
.x3f{left:790.351595px;}
.xe{left:799.624500px;}
.xf{left:810.424500px;}
.x10{left:815.952000px;}
.x6{left:831.600000px;}
.x7{left:837.213000px;}
@media print{
.v5{vertical-align:-15.722667pt;}
.v6{vertical-align:-9.373749pt;}
.v1{vertical-align:-5.445333pt;}
.v2{vertical-align:-1.204800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.421778pt;}
.v3{vertical-align:19.338667pt;}
.ls9{letter-spacing:-1.123200pt;}
.lsd{letter-spacing:-1.067200pt;}
.ls11{letter-spacing:-1.066653pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.213331pt;}
.lse{letter-spacing:-0.212800pt;}
.lsb{letter-spacing:-0.211997pt;}
.lsa{letter-spacing:-0.211200pt;}
.lsf{letter-spacing:-0.211198pt;}
.lsc{letter-spacing:-0.188775pt;}
.ls18{letter-spacing:-0.188423pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls13{letter-spacing:1.514648pt;}
.ls6{letter-spacing:2.419170pt;}
.ls7{letter-spacing:2.423436pt;}
.ls17{letter-spacing:2.501867pt;}
.ls1d{letter-spacing:2.603733pt;}
.ls14{letter-spacing:2.722099pt;}
.ls16{letter-spacing:2.800533pt;}
.ls22{letter-spacing:2.816000pt;}
.ls23{letter-spacing:2.821333pt;}
.ls28{letter-spacing:3.327958pt;}
.ls25{letter-spacing:4.236747pt;}
.ls26{letter-spacing:4.535410pt;}
.ls27{letter-spacing:6.655917pt;}
.ls0{letter-spacing:6.696000pt;}
.ls24{letter-spacing:6.958846pt;}
.ls5{letter-spacing:8.396695pt;}
.ls20{letter-spacing:9.045220pt;}
.ls1f{letter-spacing:9.117753pt;}
.ls3{letter-spacing:9.232951pt;}
.ls1b{letter-spacing:9.719345pt;}
.ls19{letter-spacing:9.723612pt;}
.ls21{letter-spacing:10.022275pt;}
.ls1a{letter-spacing:10.026541pt;}
.ls4{letter-spacing:10.883200pt;}
.ls15{letter-spacing:14.293867pt;}
.ls1{letter-spacing:18.474436pt;}
.ls2{letter-spacing:18.478702pt;}
.ls1c{letter-spacing:483.963200pt;}
.ws2d{word-spacing:-22.442386pt;}
.wsea{word-spacing:-17.772652pt;}
.ws102{word-spacing:-11.989183pt;}
.ws16{word-spacing:-11.775853pt;}
.wsa9{word-spacing:-9.770545pt;}
.ws35{word-spacing:-9.599880pt;}
.wsd6{word-spacing:-9.301217pt;}
.ws69{word-spacing:-3.923167pt;}
.wsec{word-spacing:-3.763169pt;}
.wse4{word-spacing:-3.628770pt;}
.ws11{word-spacing:-3.178627pt;}
.ws128{word-spacing:-3.157294pt;}
.ws130{word-spacing:-3.127428pt;}
.ws14{word-spacing:-3.123161pt;}
.ws132{word-spacing:-3.106095pt;}
.ws125{word-spacing:-3.097561pt;}
.ws144{word-spacing:-3.084761pt;}
.ws25{word-spacing:-3.075467pt;}
.ws117{word-spacing:-3.046362pt;}
.ws10a{word-spacing:-3.029295pt;}
.ws1d{word-spacing:-3.024800pt;}
.ws21{word-spacing:-3.019733pt;}
.ws115{word-spacing:-3.016496pt;}
.wse{word-spacing:-3.012229pt;}
.ws134{word-spacing:-3.007962pt;}
.ws77{word-spacing:-2.999429pt;}
.ws145{word-spacing:-2.986629pt;}
.ws15{word-spacing:-2.973829pt;}
.ws10{word-spacing:-2.969563pt;}
.ws12d{word-spacing:-2.961030pt;}
.ws116{word-spacing:-2.956763pt;}
.ws1a{word-spacing:-2.953867pt;}
.ws24{word-spacing:-2.948800pt;}
.ws4{word-spacing:-2.947200pt;}
.ws129{word-spacing:-2.943963pt;}
.ws13a{word-spacing:-2.935430pt;}
.ws10e{word-spacing:-2.931163pt;}
.ws126{word-spacing:-2.926897pt;}
.ws1f{word-spacing:-2.923467pt;}
.ws9{word-spacing:-2.918400pt;}
.ws137{word-spacing:-2.914097pt;}
.wsd{word-spacing:-2.909830pt;}
.ws13b{word-spacing:-2.901297pt;}
.ws133{word-spacing:-2.897030pt;}
.ws26{word-spacing:-2.893067pt;}
.ws11c{word-spacing:-2.892764pt;}
.ws135{word-spacing:-2.888497pt;}
.ws1b{word-spacing:-2.888000pt;}
.ws120{word-spacing:-2.884231pt;}
.ws13{word-spacing:-2.879964pt;}
.ws12{word-spacing:-2.875697pt;}
.ws141{word-spacing:-2.871431pt;}
.ws10f{word-spacing:-2.858631pt;}
.wsc{word-spacing:-2.854364pt;}
.ws11b{word-spacing:-2.841564pt;}
.ws111{word-spacing:-2.837298pt;}
.ws18{word-spacing:-2.832267pt;}
.ws6{word-spacing:-2.832000pt;}
.ws10b{word-spacing:-2.828765pt;}
.ws13e{word-spacing:-2.824498pt;}
.ws138{word-spacing:-2.820231pt;}
.wse0{word-spacing:-2.815965pt;}
.ws17{word-spacing:-2.801867pt;}
.ws12e{word-spacing:-2.798898pt;}
.ws136{word-spacing:-2.790365pt;}
.ws7{word-spacing:-2.788800pt;}
.wsa{word-spacing:-2.784000pt;}
.ws148{word-spacing:-2.781832pt;}
.wsb{word-spacing:-2.779200pt;}
.ws2a{word-spacing:-2.777565pt;}
.ws20{word-spacing:-2.776533pt;}
.ws106{word-spacing:-2.773299pt;}
.ws142{word-spacing:-2.769032pt;}
.ws1c{word-spacing:-2.766400pt;}
.ws13d{word-spacing:-2.760499pt;}
.ws13c{word-spacing:-2.743432pt;}
.ws113{word-spacing:-2.739166pt;}
.ws13f{word-spacing:-2.734899pt;}
.ws11d{word-spacing:-2.726366pt;}
.ws5{word-spacing:-2.716800pt;}
.ws131{word-spacing:-2.713566pt;}
.ws143{word-spacing:-2.709299pt;}
.ws140{word-spacing:-2.705033pt;}
.ws11e{word-spacing:-2.700766pt;}
.ws12b{word-spacing:-2.696500pt;}
.ws23{word-spacing:-2.695467pt;}
.ws101{word-spacing:-2.687966pt;}
.ws147{word-spacing:-2.683700pt;}
.ws11a{word-spacing:-2.679433pt;}
.ws22{word-spacing:-2.675200pt;}
.ws14b{word-spacing:-2.670900pt;}
.ws8{word-spacing:-2.668800pt;}
.ws14c{word-spacing:-2.658100pt;}
.ws112{word-spacing:-2.653833pt;}
.ws122{word-spacing:-2.649567pt;}
.ws118{word-spacing:-2.645300pt;}
.ws121{word-spacing:-2.641034pt;}
.ws2{word-spacing:-2.640000pt;}
.ws123{word-spacing:-2.628234pt;}
.ws108{word-spacing:-2.619701pt;}
.ws146{word-spacing:-2.615434pt;}
.ws105{word-spacing:-2.611167pt;}
.ws107{word-spacing:-2.589834pt;}
.ws10c{word-spacing:-2.585568pt;}
.ws110{word-spacing:-2.572768pt;}
.ws124{word-spacing:-2.568501pt;}
.ws19{word-spacing:-2.563733pt;}
.ws12f{word-spacing:-2.555701pt;}
.ws103{word-spacing:-2.538635pt;}
.ws109{word-spacing:-2.530102pt;}
.ws2c{word-spacing:-2.525835pt;}
.ws149{word-spacing:-2.517302pt;}
.ws139{word-spacing:-2.513035pt;}
.ws12c{word-spacing:-2.500235pt;}
.ws104{word-spacing:-2.483169pt;}
.ws114{word-spacing:-2.470369pt;}
.ws10d{word-spacing:-2.461836pt;}
.ws1{word-spacing:-2.457600pt;}
.ws127{word-spacing:-2.457569pt;}
.ws119{word-spacing:-2.444769pt;}
.wsf{word-spacing:-2.440503pt;}
.ws1e{word-spacing:-2.432000pt;}
.ws14a{word-spacing:-2.419170pt;}
.ws3{word-spacing:-2.400000pt;}
.ws0{word-spacing:-2.355171pt;}
.ws44{word-spacing:-0.814923pt;}
.ws4b{word-spacing:-0.797857pt;}
.ws3e{word-spacing:-0.793590pt;}
.ws3a{word-spacing:-0.780790pt;}
.ws7f{word-spacing:-0.763724pt;}
.ws34{word-spacing:-0.759457pt;}
.ws4e{word-spacing:-0.750924pt;}
.ws46{word-spacing:-0.725324pt;}
.ws51{word-spacing:-0.712524pt;}
.ws38{word-spacing:-0.703991pt;}
.ws7e{word-spacing:-0.699725pt;}
.ws5e{word-spacing:-0.688000pt;}
.ws50{word-spacing:-0.686925pt;}
.wsba{word-spacing:-0.674125pt;}
.ws3c{word-spacing:-0.661325pt;}
.ws49{word-spacing:-0.657058pt;}
.ws6b{word-spacing:-0.650667pt;}
.ws37{word-spacing:-0.648525pt;}
.ws7a{word-spacing:-0.644259pt;}
.ws41{word-spacing:-0.635725pt;}
.wseb{word-spacing:-0.634667pt;}
.ws30{word-spacing:-0.631459pt;}
.ws72{word-spacing:-0.629333pt;}
.ws4f{word-spacing:-0.627192pt;}
.wsc1{word-spacing:-0.610126pt;}
.wsb9{word-spacing:-0.605859pt;}
.ws80{word-spacing:-0.601592pt;}
.ws45{word-spacing:-0.597326pt;}
.ws70{word-spacing:-0.592000pt;}
.wsc2{word-spacing:-0.588793pt;}
.ws39{word-spacing:-0.584526pt;}
.ws3d{word-spacing:-0.575993pt;}
.ws48{word-spacing:-0.563193pt;}
.wsc9{word-spacing:-0.558926pt;}
.ws2e{word-spacing:-0.554660pt;}
.ws32{word-spacing:-0.550393pt;}
.ws94{word-spacing:-0.546127pt;}
.ws47{word-spacing:-0.541860pt;}
.ws31{word-spacing:-0.537593pt;}
.ws6f{word-spacing:-0.533333pt;}
.ws91{word-spacing:-0.522667pt;}
.wsaf{word-spacing:-0.516260pt;}
.ws5d{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.507727pt;}
.ws7b{word-spacing:-0.486394pt;}
.wsde{word-spacing:-0.485333pt;}
.ws4a{word-spacing:-0.482127pt;}
.ws93{word-spacing:-0.477861pt;}
.ws71{word-spacing:-0.469333pt;}
.ws3b{word-spacing:-0.465061pt;}
.ws73{word-spacing:-0.464000pt;}
.ws97{word-spacing:-0.458667pt;}
.ws88{word-spacing:-0.453333pt;}
.ws54{word-spacing:-0.448000pt;}
.wsbb{word-spacing:-0.442667pt;}
.ws40{word-spacing:-0.439461pt;}
.ws6e{word-spacing:-0.437333pt;}
.ws95{word-spacing:-0.430928pt;}
.wsf3{word-spacing:-0.426667pt;}
.wsa7{word-spacing:-0.426661pt;}
.ws4c{word-spacing:-0.422395pt;}
.ws43{word-spacing:-0.418128pt;}
.ws7d{word-spacing:-0.409595pt;}
.ws9c{word-spacing:-0.405333pt;}
.wsc8{word-spacing:-0.401062pt;}
.wsae{word-spacing:-0.392528pt;}
.ws61{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.383995pt;}
.wscb{word-spacing:-0.379729pt;}
.ws63{word-spacing:-0.378667pt;}
.ws9f{word-spacing:-0.373333pt;}
.wsca{word-spacing:-0.371195pt;}
.wsc7{word-spacing:-0.362662pt;}
.wsa0{word-spacing:-0.357333pt;}
.ws2f{word-spacing:-0.354129pt;}
.ws5b{word-spacing:-0.352000pt;}
.ws82{word-spacing:-0.346667pt;}
.wsdf{word-spacing:-0.341333pt;}
.ws29{word-spacing:-0.336000pt;}
.ws76{word-spacing:-0.325333pt;}
.wsad{word-spacing:-0.324263pt;}
.ws83{word-spacing:-0.320000pt;}
.ws74{word-spacing:-0.314667pt;}
.ws6c{word-spacing:-0.309333pt;}
.ws33{word-spacing:-0.307196pt;}
.wsd3{word-spacing:-0.304000pt;}
.wsaa{word-spacing:-0.302930pt;}
.ws8b{word-spacing:-0.298667pt;}
.ws42{word-spacing:-0.298663pt;}
.wsbe{word-spacing:-0.293333pt;}
.ws67{word-spacing:-0.288000pt;}
.ws84{word-spacing:-0.282667pt;}
.wsf0{word-spacing:-0.277333pt;}
.wsda{word-spacing:-0.277330pt;}
.ws8d{word-spacing:-0.272000pt;}
.ws5c{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.261333pt;}
.ws6d{word-spacing:-0.256000pt;}
.wsd9{word-spacing:-0.255997pt;}
.ws81{word-spacing:-0.250667pt;}
.ws58{word-spacing:-0.245333pt;}
.ws7c{word-spacing:-0.243197pt;}
.wsb2{word-spacing:-0.240000pt;}
.wsa1{word-spacing:-0.234667pt;}
.ws4d{word-spacing:-0.234664pt;}
.wsb5{word-spacing:-0.229333pt;}
.ws79{word-spacing:-0.226131pt;}
.ws55{word-spacing:-0.224000pt;}
.wsdd{word-spacing:-0.218667pt;}
.ws56{word-spacing:-0.208000pt;}
.wsb0{word-spacing:-0.202667pt;}
.ws92{word-spacing:-0.196264pt;}
.wsbd{word-spacing:-0.192000pt;}
.ws68{word-spacing:-0.186667pt;}
.ws86{word-spacing:-0.181333pt;}
.ws28{word-spacing:-0.176000pt;}
.ws57{word-spacing:-0.170667pt;}
.wsa5{word-spacing:-0.166398pt;}
.wsdc{word-spacing:-0.165333pt;}
.ws5f{word-spacing:-0.154667pt;}
.wsd8{word-spacing:-0.153598pt;}
.ws9d{word-spacing:-0.149333pt;}
.wsc5{word-spacing:-0.145065pt;}
.ws98{word-spacing:-0.144000pt;}
.ws75{word-spacing:-0.138667pt;}
.ws60{word-spacing:-0.133333pt;}
.wsb4{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.127998pt;}
.wsa8{word-spacing:-0.123732pt;}
.ws64{word-spacing:-0.122667pt;}
.wsa6{word-spacing:-0.119465pt;}
.ws9a{word-spacing:-0.117333pt;}
.ws85{word-spacing:-0.112000pt;}
.ws9e{word-spacing:-0.106667pt;}
.wscc{word-spacing:-0.101333pt;}
.ws59{word-spacing:-0.090667pt;}
.ws8c{word-spacing:-0.085333pt;}
.wsab{word-spacing:-0.085332pt;}
.ws27{word-spacing:-0.080000pt;}
.wsc0{word-spacing:-0.076799pt;}
.wsbc{word-spacing:-0.074667pt;}
.wsb8{word-spacing:-0.072532pt;}
.ws8e{word-spacing:-0.069333pt;}
.wsc6{word-spacing:-0.068266pt;}
.ws65{word-spacing:-0.064000pt;}
.wsa2{word-spacing:-0.059733pt;}
.wsbf{word-spacing:-0.042667pt;}
.ws89{word-spacing:-0.032000pt;}
.ws5a{word-spacing:-0.026667pt;}
.wsb7{word-spacing:-0.025600pt;}
.ws9b{word-spacing:-0.021333pt;}
.ws8f{word-spacing:-0.016000pt;}
.wsef{word-spacing:-0.010667pt;}
.wsf6{word-spacing:-0.005333pt;}
.wsd4{word-spacing:-0.004267pt;}
.ws52{word-spacing:0.000000pt;}
.wsac{word-spacing:0.004267pt;}
.wse1{word-spacing:0.005333pt;}
.ws62{word-spacing:0.010667pt;}
.wsb1{word-spacing:0.016000pt;}
.wsd0{word-spacing:0.021333pt;}
.wsd7{word-spacing:0.029866pt;}
.ws66{word-spacing:0.037333pt;}
.wscf{word-spacing:0.042667pt;}
.wsb3{word-spacing:0.053333pt;}
.wscd{word-spacing:0.064000pt;}
.wsd2{word-spacing:0.085333pt;}
.wse3{word-spacing:0.090667pt;}
.ws87{word-spacing:0.096000pt;}
.wsd1{word-spacing:0.101333pt;}
.wsdb{word-spacing:0.106667pt;}
.wsb6{word-spacing:0.112000pt;}
.wsc3{word-spacing:0.123732pt;}
.ws53{word-spacing:0.128000pt;}
.ws8a{word-spacing:0.165333pt;}
.wsce{word-spacing:0.170667pt;}
.wse2{word-spacing:0.192000pt;}
.ws96{word-spacing:0.230398pt;}
.wsff{word-spacing:0.240000pt;}
.wsc4{word-spacing:0.247464pt;}
.ws6a{word-spacing:0.262398pt;}
.ws99{word-spacing:0.281598pt;}
.wsa3{word-spacing:0.294396pt;}
.wsd5{word-spacing:0.298663pt;}
.wsee{word-spacing:0.298667pt;}
.wsfe{word-spacing:0.304000pt;}
.wse5{word-spacing:0.309333pt;}
.wse9{word-spacing:0.336000pt;}
.wse8{word-spacing:0.400000pt;}
.wsf1{word-spacing:0.426667pt;}
.wsa4{word-spacing:0.460794pt;}
.wsf7{word-spacing:0.501333pt;}
.wse7{word-spacing:0.533333pt;}
.wse6{word-spacing:0.544000pt;}
.wsfa{word-spacing:0.576000pt;}
.wsf2{word-spacing:0.592000pt;}
.wsf8{word-spacing:0.629333pt;}
.wsf4{word-spacing:0.677333pt;}
.wsf9{word-spacing:0.752000pt;}
.wsf5{word-spacing:0.869333pt;}
.wsfc{word-spacing:0.901333pt;}
.wsfd{word-spacing:0.906667pt;}
.wsfb{word-spacing:0.912000pt;}
.wsed{word-spacing:1.029333pt;}
.ws2b{word-spacing:30.745216pt;}
.ws11f{word-spacing:41.637880pt;}
.ws12a{word-spacing:41.642146pt;}
.ws100{word-spacing:41.697612pt;}
._42{margin-left:-23.384000pt;}
._44{margin-left:-19.114428pt;}
._43{margin-left:-17.702179pt;}
._0{margin-left:-0.989854pt;}
._6{width:1.560533pt;}
._2{width:3.350400pt;}
._4{width:8.230297pt;}
._3{width:9.817477pt;}
._8{width:11.018667pt;}
._5{width:12.413333pt;}
._9{width:14.608884pt;}
._a{width:18.726166pt;}
._1{width:22.588800pt;}
._3a{width:106.703733pt;}
._3b{width:116.683341pt;}
._30{width:126.795215pt;}
._39{width:133.818061pt;}
._31{width:136.945488pt;}
._1d{width:147.445624pt;}
._3c{width:152.659425pt;}
._1e{width:157.681229pt;}
._3d{width:159.016679pt;}
._24{width:162.220906pt;}
._3e{width:163.146761pt;}
._3f{width:165.672596pt;}
._32{width:167.481640pt;}
._2b{width:172.563176pt;}
._1f{width:177.640446pt;}
._40{width:179.274559pt;}
._25{width:182.474519pt;}
._33{width:183.686237pt;}
._34{width:186.527802pt;}
._20{width:193.661579pt;}
._35{width:199.528173pt;}
._37{width:200.573493pt;}
._21{width:206.666217pt;}
._2c{width:207.946201pt;}
._22{width:219.969517pt;}
._2d{width:221.970559pt;}
._26{width:228.012083pt;}
._2e{width:234.970929pt;}
._28{width:241.712179pt;}
._27{width:249.148886pt;}
._29{width:275.098428pt;}
._38{width:284.702575pt;}
._36{width:286.622551pt;}
._2f{width:290.142507pt;}
._1c{width:312.751291pt;}
._2a{width:332.083316pt;}
._23{width:392.029233pt;}
._19{width:459.561189pt;}
._17{width:469.024537pt;}
._1b{width:470.048524pt;}
._f{width:489.798677pt;}
._12{width:500.256147pt;}
._13{width:508.844839pt;}
._c{width:510.577084pt;}
._d{width:518.999379pt;}
._16{width:673.510514pt;}
._15{width:722.725899pt;}
._14{width:737.829710pt;}
._18{width:751.525539pt;}
._1a{width:760.400095pt;}
._e{width:822.607317pt;}
._11{width:873.094153pt;}
._10{width:875.346925pt;}
._b{width:901.147136pt;}
._41{width:1375.423874pt;}
._7{width:1397.823594pt;}
.fsc{font-size:28.440000pt;}
.fsb{font-size:29.865600pt;}
.fs4{font-size:31.995733pt;}
.fsa{font-size:35.551467pt;}
.fs9{font-size:37.332267pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:48.000000pt;}
.ye4{bottom:104.542566pt;}
.y2b{bottom:110.665467pt;}
.y50{bottom:110.666724pt;}
.y12e{bottom:110.668000pt;}
.y1b0{bottom:110.668158pt;}
.y162{bottom:111.196000pt;}
.y109{bottom:116.033333pt;}
.y17d{bottom:117.318667pt;}
.yb0{bottom:121.853333pt;}
.yfc{bottom:123.062667pt;}
.y1af{bottom:123.367733pt;}
.y7d{bottom:125.104000pt;}
.y4f{bottom:125.331074pt;}
.ye8{bottom:126.086174pt;}
.y2a{bottom:127.974800pt;}
.y12d{bottom:127.977333pt;}
.y161{bottom:128.506667pt;}
.ye3{bottom:132.434533pt;}
.y108{bottom:133.342667pt;}
.y17c{bottom:134.704000pt;}
.y103{bottom:135.989109pt;}
.y1ae{bottom:135.990508pt;}
.yaf{bottom:139.162667pt;}
.y4d{bottom:139.995424pt;}
.y4e{bottom:140.298353pt;}
.yfb{bottom:140.372000pt;}
.y7c{bottom:142.413333pt;}
.ye2{bottom:144.529333pt;}
.y12c{bottom:145.364000pt;}
.y160{bottom:145.892000pt;}
.ye7{bottom:146.721650pt;}
.y29{bottom:150.652000pt;}
.y107{bottom:150.653333pt;}
.y1f0{bottom:151.638183pt;}
.y1ad{bottom:153.301225pt;}
.y4c{bottom:154.660840pt;}
.yae{bottom:156.548000pt;}
.y102{bottom:156.700317pt;}
.yfa{bottom:157.758667pt;}
.y17b{bottom:158.665333pt;}
.ye6{bottom:159.421224pt;}
.y7b{bottom:159.798667pt;}
.y12b{bottom:162.673333pt;}
.y15f{bottom:163.202667pt;}
.y1ef{bottom:164.262025pt;}
.y1ac{bottom:165.999733pt;}
.y106{bottom:167.964000pt;}
.y101{bottom:169.324159pt;}
.y4b{bottom:169.325190pt;}
.ye1{bottom:169.550875pt;}
.ye5{bottom:172.044000pt;}
.yad{bottom:173.858667pt;}
.yf9{bottom:175.068000pt;}
.y17a{bottom:175.976000pt;}
.y1ed{bottom:176.961600pt;}
.y7a{bottom:177.109333pt;}
.y1ee{bottom:177.187731pt;}
.y1ab{bottom:178.699308pt;}
.y12a{bottom:179.984000pt;}
.y15e{bottom:180.512000pt;}
.y100{bottom:182.022667pt;}
.y49{bottom:183.989540pt;}
.y4a{bottom:184.367136pt;}
.y105{bottom:185.349333pt;}
.ye0{bottom:186.180000pt;}
.yac{bottom:191.168000pt;}
.yaa{bottom:191.170667pt;}
.yf8{bottom:192.378667pt;}
.y179{bottom:193.361333pt;}
.y1ec{bottom:194.271250pt;}
.y79{bottom:194.420000pt;}
.y1aa{bottom:196.008958pt;}
.yab{bottom:197.140000pt;}
.y129{bottom:197.369333pt;}
.y15d{bottom:197.897333pt;}
.y48{bottom:198.653890pt;}
.y104{bottom:202.658667pt;}
.ydf{bottom:202.885333pt;}
.y1eb{bottom:206.970825pt;}
.ya9{bottom:208.481333pt;}
.y1a9{bottom:208.632800pt;}
.yf7{bottom:209.689333pt;}
.y78{bottom:211.805333pt;}
.y47{bottom:213.318240pt;}
.y128{bottom:214.680000pt;}
.y15c{bottom:215.208000pt;}
.y178{bottom:217.324000pt;}
.yde{bottom:219.514667pt;}
.y1ea{bottom:219.594667pt;}
.y1a8{bottom:221.332375pt;}
.ya8{bottom:225.866667pt;}
.yf6{bottom:227.074667pt;}
.y77{bottom:229.114667pt;}
.y127{bottom:231.989333pt;}
.y15b{bottom:232.518667pt;}
.y177{bottom:234.633333pt;}
.y46{bottom:235.995290pt;}
.ydd{bottom:236.220000pt;}
.y1e9{bottom:236.980050pt;}
.y28{bottom:237.280133pt;}
.y1a7{bottom:238.642025pt;}
.ya7{bottom:243.176000pt;}
.yf5{bottom:244.384000pt;}
.y126{bottom:249.300000pt;}
.y1e8{bottom:249.603892pt;}
.y15a{bottom:249.904000pt;}
.y45{bottom:250.659640pt;}
.y112{bottom:251.263500pt;}
.y1a6{bottom:251.341600pt;}
.y76{bottom:251.792000pt;}
.y176{bottom:252.020000pt;}
.ydc{bottom:252.851142pt;}
.y27{bottom:255.950800pt;}
.ya6{bottom:260.486667pt;}
.yf4{bottom:261.694667pt;}
.y44{bottom:265.323990pt;}
.y125{bottom:266.685333pt;}
.y1e7{bottom:266.989275pt;}
.y159{bottom:267.213333pt;}
.y1a5{bottom:268.651250pt;}
.yda{bottom:269.556000pt;}
.y111{bottom:271.900042pt;}
.ydb{bottom:274.242667pt;}
.y26{bottom:274.622733pt;}
.y175{bottom:275.981333pt;}
.ya5{bottom:277.872000pt;}
.yf3{bottom:279.080000pt;}
.y1e6{bottom:279.613117pt;}
.y1a4{bottom:281.350824pt;}
.y124{bottom:283.996000pt;}
.y110{bottom:284.523884pt;}
.y158{bottom:284.524000pt;}
.yd9{bottom:286.185333pt;}
.y43{bottom:288.001040pt;}
.y75{bottom:288.153333pt;}
.y1e5{bottom:292.311625pt;}
.y25{bottom:293.217400pt;}
.y1a3{bottom:293.974667pt;}
.ya4{bottom:295.182667pt;}
.yf2{bottom:296.390667pt;}
.y10f{bottom:297.222392pt;}
.y174{bottom:300.020000pt;}
.y123{bottom:301.305333pt;}
.y157{bottom:301.834667pt;}
.y42{bottom:302.666457pt;}
.yd8{bottom:302.891222pt;}
.y74{bottom:305.464000pt;}
.y1e4{bottom:309.622342pt;}
.y10e{bottom:309.921966pt;}
.y1a2{bottom:311.360049pt;}
.y24{bottom:311.888067pt;}
.ya3{bottom:312.494667pt;}
.yf1{bottom:313.700000pt;}
.yef{bottom:313.702667pt;}
.y41{bottom:317.330807pt;}
.y122{bottom:318.692000pt;}
.y156{bottom:319.220000pt;}
.yd7{bottom:319.521414pt;}
.yf0{bottom:319.672000pt;}
.y1e3{bottom:322.320850pt;}
.y10d{bottom:322.545809pt;}
.y73{bottom:322.849333pt;}
.y173{bottom:323.981333pt;}
.y1a1{bottom:323.983892pt;}
.ya2{bottom:329.880000pt;}
.y23{bottom:330.558733pt;}
.yee{bottom:331.088000pt;}
.y40{bottom:331.995157pt;}
.y10c{bottom:335.244317pt;}
.y121{bottom:336.001333pt;}
.yd6{bottom:336.227339pt;}
.y155{bottom:336.530667pt;}
.y1e2{bottom:339.631567pt;}
.y72{bottom:340.158667pt;}
.y1a0{bottom:341.369274pt;}
.y3f{bottom:346.659507pt;}
.ya1{bottom:347.190667pt;}
.y10b{bottom:347.868159pt;}
.y172{bottom:348.018667pt;}
.yed{bottom:348.397333pt;}
.yd5{bottom:348.850114pt;}
.y22{bottom:349.229400pt;}
.y1e1{bottom:352.331141pt;}
.y120{bottom:353.312000pt;}
.y154{bottom:353.840000pt;}
.y19f{bottom:353.993116pt;}
.y71{bottom:357.469333pt;}
.y10a{bottom:360.566667pt;}
.y3e{bottom:361.323857pt;}
.ya0{bottom:364.501333pt;}
.y1e0{bottom:364.953917pt;}
.y171{bottom:365.329333pt;}
.yec{bottom:365.708000pt;}
.y19e{bottom:366.691624pt;}
.y21{bottom:367.900067pt;}
.yd4{bottom:368.654667pt;}
.y11f{bottom:370.697333pt;}
.y153{bottom:371.225333pt;}
.y70{bottom:374.854667pt;}
.y9f{bottom:381.886667pt;}
.y1df{bottom:382.264634pt;}
.y170{bottom:382.638667pt;}
.yeb{bottom:383.018667pt;}
.y3d{bottom:384.000907pt;}
.y19d{bottom:384.002341pt;}
.y20{bottom:386.572000pt;}
.y11e{bottom:388.008000pt;}
.y152{bottom:388.536000pt;}
.y6f{bottom:392.165333pt;}
.y1de{bottom:394.963142pt;}
.y19c{bottom:396.701916pt;}
.y9e{bottom:399.196000pt;}
.yd3{bottom:399.722667pt;}
.yea{bottom:400.404000pt;}
.y1f{bottom:405.242667pt;}
.y16f{bottom:405.316000pt;}
.y11d{bottom:405.317333pt;}
.y151{bottom:405.846667pt;}
.y3c{bottom:406.677957pt;}
.y1dd{bottom:407.662716pt;}
.y19b{bottom:409.324691pt;}
.y6e{bottom:409.476000pt;}
.y9d{bottom:416.506667pt;}
.yd2{bottom:417.033333pt;}
.ye9{bottom:417.713333pt;}
.y1dc{bottom:420.286558pt;}
.y11c{bottom:422.702667pt;}
.y150{bottom:423.232000pt;}
.y1e{bottom:423.913333pt;}
.y19a{bottom:426.635408pt;}
.y6d{bottom:426.785333pt;}
.y3b{bottom:429.355007pt;}
.y9c{bottom:433.817333pt;}
.yd1{bottom:434.342667pt;}
.y1db{bottom:437.596209pt;}
.y199{bottom:439.333916pt;}
.y14f{bottom:440.541333pt;}
.y14d{bottom:440.545333pt;}
.y1d{bottom:442.584000pt;}
.y16e{bottom:442.810667pt;}
.y6c{bottom:444.170667pt;}
.y11b{bottom:445.304000pt;}
.y14e{bottom:446.437333pt;}
.y1da{bottom:450.295783pt;}
.y9b{bottom:451.202667pt;}
.y3a{bottom:452.032056pt;}
.y198{bottom:452.033491pt;}
.yd0{bottom:457.020000pt;}
.y14c{bottom:457.856000pt;}
.y16d{bottom:460.196000pt;}
.y1c{bottom:461.254667pt;}
.y6b{bottom:461.481333pt;}
.y1d9{bottom:462.994291pt;}
.yff{bottom:468.359617pt;}
.y9a{bottom:468.512000pt;}
.y197{bottom:469.343141pt;}
.y39{bottom:474.633374pt;}
.y14b{bottom:475.241333pt;}
.y1d7{bottom:475.618133pt;}
.y1d8{bottom:475.995729pt;}
.y16c{bottom:477.505333pt;}
.y6a{bottom:478.792000pt;}
.y1b{bottom:479.925333pt;}
.y196{bottom:481.966983pt;}
.y11a{bottom:483.478667pt;}
.y99{bottom:485.822667pt;}
.yfe{bottom:488.996159pt;}
.y38{bottom:489.373456pt;}
.y14a{bottom:492.550667pt;}
.y1d6{bottom:492.928850pt;}
.ycf{bottom:494.590667pt;}
.y195{bottom:494.666558pt;}
.y69{bottom:496.177333pt;}
.y1a{bottom:498.596000pt;}
.y16b{bottom:500.182667pt;}
.y119{bottom:500.789333pt;}
.yfd{bottom:501.694667pt;}
.y98{bottom:503.208000pt;}
.y37{bottom:504.037806pt;}
.y1d5{bottom:505.627358pt;}
.y149{bottom:509.861333pt;}
.yce{bottom:511.901333pt;}
.y194{bottom:511.976208pt;}
.y68{bottom:513.486667pt;}
.y19{bottom:517.266667pt;}
.y118{bottom:518.174667pt;}
.y1d2{bottom:518.326933pt;}
.y1d3{bottom:518.628796pt;}
.y36{bottom:518.703223pt;}
.y97{bottom:520.518667pt;}
.y1d4{bottom:520.594638pt;}
.y193{bottom:524.675783pt;}
.y148{bottom:527.172000pt;}
.ycd{bottom:529.210667pt;}
.y35{bottom:533.367573pt;}
.y117{bottom:535.484000pt;}
.y1d1{bottom:535.636583pt;}
.y18{bottom:535.937333pt;}
.y67{bottom:536.163933pt;}
.y192{bottom:537.299625pt;}
.y96{bottom:537.829333pt;}
.y147{bottom:544.557333pt;}
.y16a{bottom:545.689333pt;}
.ycc{bottom:546.597333pt;}
.y34{bottom:548.031923pt;}
.y1d0{bottom:548.260425pt;}
.y116{bottom:552.794667pt;}
.y17{bottom:554.608000pt;}
.y191{bottom:554.685008pt;}
.y95{bottom:555.214667pt;}
.y66{bottom:560.125333pt;}
.y1cd{bottom:560.960000pt;}
.y1ce{bottom:561.261863pt;}
.y146{bottom:561.868000pt;}
.y33{bottom:562.696273pt;}
.y169{bottom:563.000000pt;}
.y1cf{bottom:563.303437pt;}
.ycb{bottom:563.906667pt;}
.y190{bottom:567.308850pt;}
.y115{bottom:570.105333pt;}
.y94{bottom:572.524000pt;}
.y1cc{bottom:578.269650pt;}
.y145{bottom:579.177333pt;}
.y18f{bottom:580.007358pt;}
.yca{bottom:581.217333pt;}
.y16{bottom:583.937333pt;}
.y32{bottom:584.541333pt;}
.y114{bottom:587.490667pt;}
.y168{bottom:588.322667pt;}
.y93{bottom:589.834667pt;}
.y1cb{bottom:590.969225pt;}
.y18e{bottom:592.631200pt;}
.y65{bottom:596.562667pt;}
.yc9{bottom:598.528000pt;}
.y1c9{bottom:603.592000pt;}
.y1ca{bottom:603.970662pt;}
.y113{bottom:604.800000pt;}
.y167{bottom:605.708000pt;}
.y92{bottom:607.145333pt;}
.y18d{bottom:610.016583pt;}
.y64{bottom:613.873333pt;}
.yc8{bottom:615.913333pt;}
.y1c8{bottom:620.978450pt;}
.y18c{bottom:622.640425pt;}
.y166{bottom:623.018667pt;}
.y91{bottom:624.530667pt;}
.y63{bottom:631.184000pt;}
.yc7{bottom:633.222667pt;}
.y1c7{bottom:633.602292pt;}
.y18b{bottom:635.340000pt;}
.y15{bottom:637.532533pt;}
.y165{bottom:640.328000pt;}
.y90{bottom:641.840000pt;}
.y62{bottom:648.569333pt;}
.yc6{bottom:650.533333pt;}
.y1c6{bottom:650.987675pt;}
.y144{bottom:652.196954pt;}
.y18a{bottom:652.649650pt;}
.y164{bottom:657.713333pt;}
.y31{bottom:661.796000pt;}
.y1c5{bottom:663.611517pt;}
.y14{bottom:664.215933pt;}
.y189{bottom:665.349224pt;}
.y61{bottom:665.880000pt;}
.yc5{bottom:667.918667pt;}
.y143{bottom:676.158255pt;}
.y1c4{bottom:676.310025pt;}
.y30{bottom:677.140000pt;}
.y13{bottom:677.519233pt;}
.y187{bottom:677.972000pt;}
.y188{bottom:678.198131pt;}
.yb4{bottom:679.030442pt;}
.y163{bottom:680.390667pt;}
.y60{bottom:683.189333pt;}
.yc4{bottom:685.229333pt;}
.y12{bottom:690.823600pt;}
.y142{bottom:692.183654pt;}
.y2f{bottom:692.409333pt;}
.y1c3{bottom:693.620742pt;}
.y186{bottom:696.037333pt;}
.yb3{bottom:699.741650pt;}
.y5f{bottom:700.500000pt;}
.yc3{bottom:702.538667pt;}
.y11{bottom:704.202633pt;}
.y1c2{bottom:706.319250pt;}
.y2e{bottom:707.754667pt;}
.y141{bottom:708.209054pt;}
.yb2{bottom:712.365492pt;}
.y10{bottom:717.507000pt;}
.y5e{bottom:717.885333pt;}
.y1c0{bottom:718.943092pt;}
.y1c1{bottom:721.286529pt;}
.y2d{bottom:723.098667pt;}
.yb1{bottom:725.064000pt;}
.yc2{bottom:725.216000pt;}
.yf{bottom:730.886033pt;}
.y140{bottom:733.153809pt;}
.y5d{bottom:735.196000pt;}
.y1bf{bottom:736.328475pt;}
.ye{bottom:744.189333pt;}
.y1be{bottom:748.952317pt;}
.y13f{bottom:749.858667pt;}
.y5c{bottom:752.505333pt;}
.y8f{bottom:760.966021pt;}
.y1bd{bottom:761.651891pt;}
.yc1{bottom:762.785333pt;}
.y185{bottom:764.524000pt;}
.y13e{bottom:766.488000pt;}
.y13c{bottom:766.488475pt;}
.yd{bottom:768.150667pt;}
.yb{bottom:768.152000pt;}
.y5b{bottom:769.890667pt;}
.y13d{bottom:771.250667pt;}
.yc{bottom:773.518667pt;}
.y1bc{bottom:774.274667pt;}
.y8e{bottom:775.630371pt;}
.yc0{bottom:780.096000pt;}
.y184{bottom:781.834667pt;}
.y9{bottom:782.816000pt;}
.y7{bottom:782.816400pt;}
.ya{bottom:783.117200pt;}
.y13b{bottom:783.193333pt;}
.y139{bottom:783.195089pt;}
.y5a{bottom:787.201333pt;}
.y13a{bottom:787.956000pt;}
.y8{bottom:788.182667pt;}
.y1bb{bottom:791.661116pt;}
.ybf{bottom:797.405333pt;}
.y5{bottom:797.556000pt;}
.y8d{bottom:798.307421pt;}
.y183{bottom:799.220000pt;}
.y138{bottom:799.824214pt;}
.y6{bottom:802.846667pt;}
.y1ba{bottom:804.284958pt;}
.y59{bottom:804.512000pt;}
.y8c{bottom:812.972838pt;}
.ybe{bottom:814.790667pt;}
.y137{bottom:816.530139pt;}
.y1b9{bottom:816.983466pt;}
.y58{bottom:821.897333pt;}
.y182{bottom:823.182667pt;}
.y8b{bottom:827.637188pt;}
.y1b8{bottom:829.607309pt;}
.y4{bottom:830.817867pt;}
.ybd{bottom:832.101333pt;}
.y136{bottom:833.160331pt;}
.y57{bottom:839.208000pt;}
.y8a{bottom:842.301538pt;}
.y1b7{bottom:846.992691pt;}
.y181{bottom:847.220000pt;}
.ybc{bottom:849.412000pt;}
.y135{bottom:849.865189pt;}
.y56{bottom:856.517333pt;}
.y89{bottom:856.965888pt;}
.y1b6{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y134{bottom:866.495381pt;}
.ybb{bottom:866.797333pt;}
.y180{bottom:871.181333pt;}
.y87{bottom:871.630238pt;}
.y88{bottom:871.933167pt;}
.y1b5{bottom:872.316108pt;}
.y55{bottom:873.902667pt;}
.y133{bottom:883.200239pt;}
.yba{bottom:884.106667pt;}
.yb8{bottom:884.108000pt;}
.y86{bottom:886.294588pt;}
.y1b4{bottom:889.625758pt;}
.yb9{bottom:890.002667pt;}
.y2{bottom:890.834667pt;}
.y54{bottom:891.213333pt;}
.y17f{bottom:895.220000pt;}
.y132{bottom:899.830431pt;}
.y85{bottom:900.958938pt;}
.yb7{bottom:901.417333pt;}
.y1b3{bottom:902.325333pt;}
.y53{bottom:908.524000pt;}
.y131{bottom:912.530005pt;}
.y1b2{bottom:914.948108pt;}
.y83{bottom:915.623288pt;}
.y84{bottom:915.926217pt;}
.yb6{bottom:918.802667pt;}
.y17e{bottom:919.181333pt;}
.y1{bottom:920.844000pt;}
.y130{bottom:925.152781pt;}
.y52{bottom:925.833333pt;}
.y81{bottom:930.288705pt;}
.y82{bottom:930.590567pt;}
.y1b1{bottom:932.258825pt;}
.yb5{bottom:941.404000pt;}
.y51{bottom:943.218667pt;}
.y7f{bottom:944.953055pt;}
.y12f{bottom:944.957333pt;}
.y80{bottom:945.254918pt;}
.y7e{bottom:994.393333pt;}
.h15{height:21.330000pt;}
.h1a{height:23.145840pt;}
.h4{height:24.828689pt;}
.hf{height:26.663600pt;}
.ha{height:31.082945pt;}
.h11{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hc{height:34.772899pt;}
.hb{height:36.052883pt;}
.h3{height:37.248000pt;}
.h16{height:38.562605pt;}
.h19{height:38.563675pt;}
.h18{height:38.564507pt;}
.h13{height:38.567618pt;}
.h14{height:38.569840pt;}
.h17{height:38.868507pt;}
.h7{height:39.266667pt;}
.h9{height:40.000000pt;}
.h12{height:41.333333pt;}
.hd{height:47.999600pt;}
.he{height:48.271173pt;}
.h10{height:48.281840pt;}
.h8{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:48.000000pt;}
.x40{left:58.658000pt;}
.x15{left:63.496000pt;}
.x1b{left:74.833798pt;}
.x20{left:79.974800pt;}
.x1d{left:90.330138pt;}
.x2a{left:96.075467pt;}
.x2b{left:99.930667pt;}
.x1e{left:131.374958pt;}
.x2f{left:161.612000pt;}
.x1a{left:163.803352pt;}
.x2c{left:165.468000pt;}
.x17{left:168.641352pt;}
.x32{left:177.938642pt;}
.x1c{left:187.236660pt;}
.x31{left:188.748107pt;}
.x16{left:200.011627pt;}
.x34{left:246.424186pt;}
.x30{left:247.332000pt;}
.x35{left:256.250197pt;}
.x33{left:263.582372pt;}
.x1{left:266.682667pt;}
.x46{left:273.184000pt;}
.x18{left:282.632000pt;}
.x1f{left:286.866667pt;}
.x48{left:295.330923pt;}
.x2d{left:322.092000pt;}
.x26{left:325.037604pt;}
.x36{left:327.305309pt;}
.x2e{left:329.801333pt;}
.x25{left:335.847069pt;}
.x37{left:337.056653pt;}
.x11{left:345.373333pt;}
.x12{left:350.286667pt;}
.x47{left:374.398735pt;}
.x8{left:384.756000pt;}
.x9{left:397.077333pt;}
.x38{left:408.110699pt;}
.x39{left:422.926513pt;}
.x2{left:430.412000pt;}
.x3{left:442.733333pt;}
.x13{left:444.094667pt;}
.x4e{left:466.165782pt;}
.x28{left:494.057358pt;}
.x3a{left:498.063707pt;}
.x27{left:501.616730pt;}
.x43{left:507.893333pt;}
.x3b{left:512.879522pt;}
.x44{left:515.528000pt;}
.xa{left:517.190667pt;}
.xb{left:522.104000pt;}
.x21{left:536.617333pt;}
.x22{left:547.804000pt;}
.x49{left:553.925751pt;}
.x19{left:582.349333pt;}
.x3c{left:588.015650pt;}
.x23{left:593.688000pt;}
.x24{left:604.876000pt;}
.x3d{left:606.081557pt;}
.x4{left:613.568000pt;}
.x5{left:618.481333pt;}
.x4d{left:629.742404pt;}
.x41{left:647.734667pt;}
.x45{left:654.916000pt;}
.xc{left:657.336000pt;}
.x4a{left:658.467378pt;}
.xd{left:662.249333pt;}
.x4b{left:663.683313pt;}
.x29{left:665.117619pt;}
.x3e{left:684.468844pt;}
.x4c{left:690.517111pt;}
.x42{left:692.560000pt;}
.x3f{left:702.534752pt;}
.xe{left:710.777333pt;}
.xf{left:720.377333pt;}
.x10{left:725.290667pt;}
.x6{left:739.200000pt;}
.x7{left:744.189333pt;}
}




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