
    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_cd46e83cc804a8688b092666.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_a7f807559285b24ddd686025.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_565ece286cf447e0eac1cf19.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_08405fa2143a96e60d58167d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_2e79b105387cbf34d4145032.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_6cce28e4bb22a434e489f4b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_7b1e65aceddab458aeec5730.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.259000;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_3e49fb9fb3f67e6132ce5ffd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_2e995c9e51f9b181145054c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.441000;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_33473877552b8c735aa131d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.499000;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_5bcfa2ec7dd966a0f607582f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.500000;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_df0a124c9e518a2897640f09.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.364000;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:-20.304000px;}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.646000px;}
.v6{vertical-align:19.194000px;}
.v3{vertical-align:22.404000px;}
.v8{vertical-align:24.084000px;}
.v5{vertical-align:36.324000px;}
.v7{vertical-align:45.234000px;}
.v9{vertical-align:49.920000px;}
.vf{vertical-align:85.332000px;}
.ve{vertical-align:105.636000px;}
.vc{vertical-align:121.818000px;}
.vb{vertical-align:132.576000px;}
.vd{vertical-align:161.196000px;}
.va{vertical-align:185.244000px;}
.ls1{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.001190px;}
.ls2e{letter-spacing:0.007910px;}
.ls18{letter-spacing:0.276211px;}
.ls31{letter-spacing:0.506237px;}
.ls1c{letter-spacing:1.147699px;}
.ls1d{letter-spacing:1.219430px;}
.ls22{letter-spacing:1.653341px;}
.ls12{letter-spacing:1.998899px;}
.ls30{letter-spacing:2.030237px;}
.ls2d{letter-spacing:2.080205px;}
.ls15{letter-spacing:2.158243px;}
.ls14{letter-spacing:2.177290px;}
.ls26{letter-spacing:2.300237px;}
.ls28{letter-spacing:2.316394px;}
.ls23{letter-spacing:3.050951px;}
.ls6{letter-spacing:3.229046px;}
.lsb{letter-spacing:3.257741px;}
.lsd{letter-spacing:3.668700px;}
.ls9{letter-spacing:3.674700px;}
.ls5{letter-spacing:3.801754px;}
.ls20{letter-spacing:5.633808px;}
.ls17{letter-spacing:6.814464px;}
.ls35{letter-spacing:8.572477px;}
.ls2f{letter-spacing:8.791910px;}
.ls25{letter-spacing:10.617187px;}
.ls4{letter-spacing:14.943900px;}
.ls1f{letter-spacing:15.350477px;}
.ls34{letter-spacing:15.871025px;}
.ls13{letter-spacing:15.877025px;}
.ls2c{letter-spacing:15.924326px;}
.ls2b{letter-spacing:15.996058px;}
.lsc{letter-spacing:17.932800px;}
.ls11{letter-spacing:18.004531px;}
.ls8{letter-spacing:18.721843px;}
.ls1e{letter-spacing:18.793574px;}
.lsf{letter-spacing:18.865306px;}
.ls7{letter-spacing:18.926700px;}
.lse{letter-spacing:18.932700px;}
.ls21{letter-spacing:19.367424px;}
.lsa{letter-spacing:19.510886px;}
.ls2a{letter-spacing:19.869542px;}
.ls1b{letter-spacing:19.941274px;}
.ls19{letter-spacing:20.873779px;}
.ls10{letter-spacing:21.304166px;}
.ls0{letter-spacing:21.519300px;}
.ls27{letter-spacing:21.982477px;}
.ls16{letter-spacing:22.258477px;}
.ls24{letter-spacing:26.530973px;}
.ls32{letter-spacing:27.082502px;}
.ls2{letter-spacing:30.700954px;}
.ls1a{letter-spacing:34.000589px;}
.ls3{letter-spacing:35.148288px;}
.ls29{letter-spacing:84.748973px;}
.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;}
}
.ws81{word-spacing:-92.963635px;}
.wsdd{word-spacing:-74.361300px;}
.ws1{word-spacing:-61.987500px;}
.ws80{word-spacing:-47.844710px;}
.ws13{word-spacing:-35.865600px;}
.wsdb{word-spacing:-35.220019px;}
.wsd8{word-spacing:-35.085934px;}
.ws0{word-spacing:-30.993750px;}
.ws78{word-spacing:-29.887800px;}
.ws88{word-spacing:-27.903437px;}
.ws82{word-spacing:-27.401318px;}
.ws2{word-spacing:-25.823100px;}
.wsd6{word-spacing:-25.751501px;}
.wsdc{word-spacing:-25.617466px;}
.ws84{word-spacing:-25.536307px;}
.ws7f{word-spacing:-25.464576px;}
.wsa4{word-spacing:-25.105920px;}
.wsa3{word-spacing:-24.962458px;}
.wsb1{word-spacing:-24.675533px;}
.ws9{word-spacing:-24.101683px;}
.wsa9{word-spacing:-23.886490px;}
.ws72{word-spacing:-23.599565px;}
.ws66{word-spacing:-23.527834px;}
.wsd0{word-spacing:-23.240909px;}
.wsd1{word-spacing:-23.097446px;}
.ws26{word-spacing:-22.882253px;}
.ws70{word-spacing:-22.810522px;}
.wsae{word-spacing:-22.738790px;}
.wsda{word-spacing:-22.667059px;}
.ws3a{word-spacing:-22.451866px;}
.ws9e{word-spacing:-22.308403px;}
.wscb{word-spacing:-22.093210px;}
.ws57{word-spacing:-21.806285px;}
.ws31{word-spacing:-21.734554px;}
.wsdf{word-spacing:-21.662822px;}
.wsad{word-spacing:-21.591091px;}
.ws6e{word-spacing:-21.519360px;}
.ws3{word-spacing:-21.519300px;}
.ws48{word-spacing:-21.447629px;}
.wsa8{word-spacing:-21.375898px;}
.ws96{word-spacing:-21.304166px;}
.wsa2{word-spacing:-21.232435px;}
.ws61{word-spacing:-21.088973px;}
.ws90{word-spacing:-20.945510px;}
.ws8a{word-spacing:-20.586854px;}
.wsc7{word-spacing:-20.515123px;}
.wsb0{word-spacing:-20.443392px;}
.ws2a{word-spacing:-20.371661px;}
.ws91{word-spacing:-20.299930px;}
.wsce{word-spacing:-20.228198px;}
.wsa5{word-spacing:-20.156467px;}
.ws1a{word-spacing:-20.084736px;}
.wsbc{word-spacing:-20.013005px;}
.ws64{word-spacing:-19.941274px;}
.ws6f{word-spacing:-19.797811px;}
.wsd3{word-spacing:-19.582618px;}
.ws56{word-spacing:-19.439155px;}
.ws11{word-spacing:-19.367424px;}
.ws37{word-spacing:-19.295693px;}
.ws15{word-spacing:-19.223962px;}
.ws16{word-spacing:-19.152230px;}
.ws68{word-spacing:-19.080499px;}
.ws7e{word-spacing:-19.008768px;}
.ws76{word-spacing:-18.937037px;}
.ws65{word-spacing:-18.793574px;}
.ws6b{word-spacing:-18.721843px;}
.ws67{word-spacing:-18.650112px;}
.ws83{word-spacing:-18.578381px;}
.wsbd{word-spacing:-18.506650px;}
.ws1c{word-spacing:-18.363187px;}
.ws41{word-spacing:-18.291456px;}
.ws63{word-spacing:-18.219725px;}
.ws44{word-spacing:-18.147994px;}
.ws5b{word-spacing:-18.076262px;}
.ws3c{word-spacing:-18.004531px;}
.ws6{word-spacing:-17.932800px;}
.ws9d{word-spacing:-17.861069px;}
.ws42{word-spacing:-17.789338px;}
.wsaa{word-spacing:-17.717606px;}
.ws32{word-spacing:-17.645875px;}
.ws8f{word-spacing:-17.502413px;}
.ws6d{word-spacing:-17.430682px;}
.wsb6{word-spacing:-17.358950px;}
.wsc9{word-spacing:-17.287219px;}
.ws4e{word-spacing:-17.215488px;}
.ws2d{word-spacing:-17.072026px;}
.wsb7{word-spacing:-17.000294px;}
.wsb8{word-spacing:-16.928563px;}
.wsc5{word-spacing:-16.856832px;}
.wsa{word-spacing:-16.641638px;}
.ws4f{word-spacing:-16.426445px;}
.ws8d{word-spacing:-16.354714px;}
.ws79{word-spacing:-16.318739px;}
.ws21{word-spacing:-16.282982px;}
.ws7b{word-spacing:-16.139520px;}
.ws4b{word-spacing:-16.067789px;}
.ws2e{word-spacing:-15.996058px;}
.ws38{word-spacing:-15.924326px;}
.ws5d{word-spacing:-15.852595px;}
.ws5a{word-spacing:-15.780864px;}
.wscf{word-spacing:-15.709133px;}
.ws40{word-spacing:-15.637402px;}
.wsc8{word-spacing:-15.565670px;}
.ws7a{word-spacing:-15.541656px;}
.ws30{word-spacing:-15.493939px;}
.wsd9{word-spacing:-15.476669px;}
.wse{word-spacing:-15.422208px;}
.ws9a{word-spacing:-15.350477px;}
.ws98{word-spacing:-15.302554px;}
.wsd4{word-spacing:-15.278746px;}
.ws1d{word-spacing:-15.207014px;}
.wsc1{word-spacing:-15.135283px;}
.wsb2{word-spacing:-15.063552px;}
.ws77{word-spacing:-14.943900px;}
.ws2f{word-spacing:-14.920090px;}
.ws35{word-spacing:-14.848358px;}
.ws4c{word-spacing:-14.776627px;}
.ws4d{word-spacing:-14.704896px;}
.ws5c{word-spacing:-14.633165px;}
.wsca{word-spacing:-14.489702px;}
.ws8{word-spacing:-14.346240px;}
.wsd2{word-spacing:-14.274509px;}
.wsf{word-spacing:-14.202778px;}
.ws19{word-spacing:-14.131046px;}
.ws5e{word-spacing:-14.059315px;}
.ws8e{word-spacing:-13.915853px;}
.wsd{word-spacing:-13.844122px;}
.ws62{word-spacing:-13.772390px;}
.wsbb{word-spacing:-13.700659px;}
.ws95{word-spacing:-13.628928px;}
.ws53{word-spacing:-13.557197px;}
.ws39{word-spacing:-13.413734px;}
.wsc3{word-spacing:-13.198541px;}
.ws46{word-spacing:-13.126810px;}
.wsd7{word-spacing:-13.108405px;}
.ws1b{word-spacing:-13.055078px;}
.ws74{word-spacing:-12.983347px;}
.wsb3{word-spacing:-12.911616px;}
.ws6c{word-spacing:-12.768154px;}
.ws22{word-spacing:-12.696422px;}
.ws9f{word-spacing:-12.624691px;}
.ws92{word-spacing:-12.552960px;}
.ws3e{word-spacing:-12.481229px;}
.wsa0{word-spacing:-12.409498px;}
.ws7{word-spacing:-12.337766px;}
.ws3f{word-spacing:-12.266035px;}
.ws12{word-spacing:-12.194304px;}
.ws8c{word-spacing:-12.050842px;}
.ws36{word-spacing:-11.979110px;}
.ws4{word-spacing:-11.964731px;}
.ws1e{word-spacing:-11.907379px;}
.wsa7{word-spacing:-11.835648px;}
.wsba{word-spacing:-11.763917px;}
.wsa1{word-spacing:-11.692186px;}
.ws94{word-spacing:-11.620454px;}
.wsb4{word-spacing:-11.548723px;}
.ws93{word-spacing:-11.476992px;}
.ws9b{word-spacing:-11.405261px;}
.wsab{word-spacing:-11.333530px;}
.ws60{word-spacing:-11.261798px;}
.ws47{word-spacing:-11.190067px;}
.wsc0{word-spacing:-11.118336px;}
.ws55{word-spacing:-11.046605px;}
.ws54{word-spacing:-10.974874px;}
.wsde{word-spacing:-10.831411px;}
.ws9c{word-spacing:-10.687949px;}
.wsac{word-spacing:-10.616218px;}
.ws43{word-spacing:-10.544486px;}
.ws18{word-spacing:-10.472755px;}
.ws1f{word-spacing:-10.401024px;}
.ws5f{word-spacing:-10.329293px;}
.ws10{word-spacing:-10.257562px;}
.wsc{word-spacing:-10.042368px;}
.ws86{word-spacing:-9.970637px;}
.ws28{word-spacing:-9.898906px;}
.ws29{word-spacing:-9.827174px;}
.ws27{word-spacing:-9.683712px;}
.ws50{word-spacing:-9.540250px;}
.ws45{word-spacing:-9.468518px;}
.ws97{word-spacing:-9.325056px;}
.ws34{word-spacing:-9.181594px;}
.ws3d{word-spacing:-9.109862px;}
.ws3b{word-spacing:-8.966400px;}
.ws20{word-spacing:-8.822938px;}
.ws7c{word-spacing:-8.607744px;}
.wse0{word-spacing:-8.536013px;}
.wsc4{word-spacing:-8.464282px;}
.wsc2{word-spacing:-8.392550px;}
.ws7d{word-spacing:-8.308808px;}
.wsbf{word-spacing:-8.177357px;}
.wsbe{word-spacing:-8.105626px;}
.ws6a{word-spacing:-7.818701px;}
.ws24{word-spacing:-7.746970px;}
.ws25{word-spacing:-7.675238px;}
.wscd{word-spacing:-7.603507px;}
.ws52{word-spacing:-7.388314px;}
.ws2b{word-spacing:-7.244851px;}
.ws59{word-spacing:-7.173120px;}
.ws49{word-spacing:-7.101389px;}
.ws4a{word-spacing:-7.029658px;}
.wsc6{word-spacing:-6.957926px;}
.wsaf{word-spacing:-6.886195px;}
.ws23{word-spacing:-6.814464px;}
.ws99{word-spacing:-6.599270px;}
.ws71{word-spacing:-6.527539px;}
.ws58{word-spacing:-6.168883px;}
.wsb{word-spacing:-6.097152px;}
.ws33{word-spacing:-5.810227px;}
.wscc{word-spacing:-5.738496px;}
.wsa6{word-spacing:-5.164646px;}
.ws17{word-spacing:-5.092915px;}
.ws73{word-spacing:-4.949453px;}
.wsb9{word-spacing:-4.877722px;}
.ws51{word-spacing:-4.734259px;}
.ws69{word-spacing:-4.088678px;}
.wsd5{word-spacing:-3.945216px;}
.ws75{word-spacing:-3.873485px;}
.ws8b{word-spacing:-3.801754px;}
.wsb5{word-spacing:-1.362893px;}
.ws14{word-spacing:-0.717312px;}
.ws5{word-spacing:0.000000px;}
.ws89{word-spacing:15.207014px;}
.ws85{word-spacing:17.861069px;}
.ws87{word-spacing:19.797811px;}
.ws2c{word-spacing:35.865600px;}
._36{margin-left:-14.909940px;}
._3{margin-left:-8.058375px;}
._6{margin-left:-7.056543px;}
._26{margin-left:-5.964462px;}
._2{margin-left:-4.959000px;}
._1{margin-left:-3.719250px;}
._0{margin-left:-1.859625px;}
._4{width:1.343163px;}
._7{width:2.376087px;}
._1a{width:3.855511px;}
._35{width:5.021184px;}
._37{width:6.065966px;}
._34{width:7.173120px;}
._38{width:8.935720px;}
._b{width:12.863186px;}
._25{width:14.079045px;}
._23{width:15.820324px;}
._16{width:16.840673px;}
._5a{width:17.888485px;}
._40{width:19.379953px;}
._10{width:21.729167px;}
._a{width:22.906733px;}
._e{width:23.947448px;}
._8{width:25.190180px;}
._17{width:26.466998px;}
._12{width:27.539395px;}
._41{width:28.681708px;}
._c{width:29.696717px;}
._5{width:31.436107px;}
._d{width:32.852890px;}
._1b{width:34.066934px;}
._21{width:35.148288px;}
._9{width:36.654643px;}
._f{width:38.236301px;}
._15{width:40.169472px;}
._59{width:41.526979px;}
._13{width:42.536602px;}
._18{width:43.971226px;}
._1f{width:45.418437px;}
._11{width:47.848282px;}
._22{width:49.042596px;}
._14{width:51.547802px;}
._1e{width:53.622620px;}
._24{width:56.380723px;}
._20{width:57.510581px;}
._19{width:59.339572px;}
._1c{width:61.733632px;}
._5b{width:70.352149px;}
._1d{width:71.731200px;}
._56{width:94.996591px;}
._61{width:96.247892px;}
._2c{width:102.546226px;}
._54{width:106.110866px;}
._39{width:132.243325px;}
._44{width:150.570076px;}
._48{width:157.918850px;}
._3b{width:172.516137px;}
._45{width:174.135499px;}
._3a{width:175.401308px;}
._29{width:180.434616px;}
._2a{width:192.240251px;}
._28{width:207.094534px;}
._4e{width:209.073710px;}
._4a{width:215.191125px;}
._52{width:218.360267px;}
._51{width:231.837908px;}
._46{width:240.575342px;}
._5d{width:242.279683px;}
._53{width:255.549866px;}
._3f{width:283.952659px;}
._42{width:285.436993px;}
._50{width:287.051608px;}
._57{width:291.406050px;}
._4f{width:300.223125px;}
._33{width:314.821067px;}
._31{width:318.108725px;}
._55{width:327.923700px;}
._3c{width:360.438692px;}
._3d{width:363.362756px;}
._27{width:375.377843px;}
._4d{width:391.297659px;}
._58{width:397.681825px;}
._47{width:399.685517px;}
._5e{width:401.877940px;}
._4b{width:406.416226px;}
._3e{width:417.982850px;}
._2b{width:435.674167px;}
._4c{width:472.406567px;}
._49{width:482.713825px;}
._60{width:488.067774px;}
._32{width:493.746456px;}
._5f{width:494.957726px;}
._2f{width:507.418050px;}
._5c{width:512.883824px;}
._43{width:545.674434px;}
._30{width:603.255355px;}
._2e{width:643.497497px;}
._2d{width:666.839575px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:52.602600px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.fs6{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y41{bottom:36.168000px;}
.y28{bottom:81.000000px;}
.y13e{bottom:81.223500px;}
.y109{bottom:84.882000px;}
.y16c{bottom:95.242500px;}
.y239{bottom:95.392500px;}
.y27{bottom:113.503500px;}
.y13d{bottom:113.727000px;}
.y1eb{bottom:115.554000px;}
.y108{bottom:117.385500px;}
.y185{bottom:121.891500px;}
.y16b{bottom:122.142000px;}
.y238{bottom:127.896000px;}
.y124{bottom:130.465500px;}
.y26{bottom:146.005500px;}
.yab{bottom:146.007000px;}
.y86{bottom:146.013000px;}
.y13c{bottom:146.230500px;}
.y1ea{bottom:148.057500px;}
.y184{bottom:148.791000px;}
.y1b2{bottom:148.996500px;}
.y16a{bottom:149.041500px;}
.y107{bottom:149.889000px;}
.y123{bottom:157.363500px;}
.y237{bottom:160.398000px;}
.y1f7{bottom:166.965000px;}
.y20e{bottom:177.843000px;}
.y40{bottom:178.509000px;}
.y85{bottom:178.516500px;}
.y13b{bottom:178.734000px;}
.yaa{bottom:178.920000px;}
.y25{bottom:179.988000px;}
.y1e9{bottom:180.561000px;}
.y183{bottom:181.293000px;}
.y1b1{bottom:181.500000px;}
.y169{bottom:181.545000px;}
.y106{bottom:182.392500px;}
.y1c9{bottom:185.484000px;}
.y158{bottom:189.073500px;}
.y122{bottom:189.867000px;}
.y1d7{bottom:190.087500px;}
.y236{bottom:192.901500px;}
.y1f6{bottom:199.468500px;}
.y182{bottom:208.192500px;}
.y168{bottom:208.443000px;}
.y1e4{bottom:210.106500px;}
.y20d{bottom:210.346500px;}
.y3f{bottom:211.012500px;}
.y84{bottom:211.018500px;}
.y13a{bottom:211.236000px;}
.y24{bottom:212.491500px;}
.y1b0{bottom:214.003500px;}
.y105{bottom:217.749000px;}
.y1c8{bottom:217.987500px;}
.y157{bottom:221.577000px;}
.y121{bottom:222.370500px;}
.ya9{bottom:223.836000px;}
.y222{bottom:225.324000px;}
.y235{bottom:225.405000px;}
.y19a{bottom:227.238000px;}
.y1e8{bottom:228.811500px;}
.y1f5{bottom:231.972000px;}
.y167{bottom:240.946500px;}
.y1e3{bottom:242.610000px;}
.y20c{bottom:242.848500px;}
.y3e{bottom:243.516000px;}
.y139{bottom:243.739500px;}
.y23{bottom:244.993500px;}
.y1d6{bottom:246.339000px;}
.y1af{bottom:246.505500px;}
.yd7{bottom:247.239000px;}
.y181{bottom:249.678000px;}
.y104{bottom:250.252500px;}
.y1c7{bottom:250.491000px;}
.yf1{bottom:250.824000px;}
.y6c{bottom:251.239500px;}
.y156{bottom:254.080500px;}
.y120{bottom:254.874000px;}
.y83{bottom:255.114000px;}
.yc0{bottom:261.736500px;}
.y1f4{bottom:264.474000px;}
.y166{bottom:267.846000px;}
.y234{bottom:269.487000px;}
.y20b{bottom:275.352000px;}
.y3d{bottom:276.018000px;}
.y180{bottom:276.577500px;}
.y22{bottom:277.497000px;}
.y138{bottom:278.059500px;}
.y1d5{bottom:278.842500px;}
.y57{bottom:279.412500px;}
.y1ae{bottom:282.000000px;}
.yf0{bottom:283.326000px;}
.y6b{bottom:283.743000px;}
.ya8{bottom:283.954500px;}
.y11f{bottom:287.376000px;}
.y93{bottom:287.598000px;}
.y221{bottom:291.199500px;}
.y103{bottom:294.318000px;}
.y155{bottom:298.161000px;}
.y165{bottom:300.349500px;}
.y1c6{bottom:300.861000px;}
.yd6{bottom:304.830000px;}
.y1e7{bottom:305.548500px;}
.y1e2{bottom:306.711000px;}
.y20a{bottom:307.855500px;}
.y3c{bottom:308.521500px;}
.y1f3{bottom:309.001500px;}
.y21{bottom:310.000500px;}
.y1d4{bottom:311.344500px;}
.y56{bottom:311.916000px;}
.y137{bottom:312.378000px;}
.y102{bottom:312.472500px;}
.y82{bottom:312.747000px;}
.y199{bottom:313.161000px;}
.y11e{bottom:314.275500px;}
.y1ad{bottom:314.503500px;}
.y100{bottom:315.357000px;}
.yef{bottom:315.829500px;}
.y6a{bottom:316.245000px;}
.ya7{bottom:316.867500px;}
.ybf{bottom:322.672500px;}
.y220{bottom:323.703000px;}
.y233{bottom:327.076500px;}
.y17f{bottom:327.196500px;}
.y1e6{bottom:327.217500px;}
.y164{bottom:327.247500px;}
.y101{bottom:327.496500px;}
.yd5{bottom:337.332000px;}
.y1e1{bottom:339.213000px;}
.y198{bottom:340.060500px;}
.y209{bottom:340.359000px;}
.y1d3{bottom:343.848000px;}
.y20{bottom:343.983000px;}
.y55{bottom:344.419500px;}
.y136{bottom:344.881500px;}
.y92{bottom:345.067500px;}
.y81{bottom:345.250500px;}
.y1ac{bottom:347.007000px;}
.y69{bottom:348.748500px;}
.y1e5{bottom:348.886500px;}
.ya6{bottom:349.371000px;}
.y3b{bottom:351.582000px;}
.ybe{bottom:355.174500px;}
.y11d{bottom:355.761000px;}
.y21f{bottom:356.206500px;}
.y232{bottom:359.580000px;}
.yee{bottom:359.911500px;}
.y1f2{bottom:367.941000px;}
.y163{bottom:368.734500px;}
.yd4{bottom:369.835500px;}
.y154{bottom:369.994500px;}
.y1e0{bottom:371.716500px;}
.y17e{bottom:371.763000px;}
.y197{bottom:372.562500px;}
.y1d2{bottom:376.351500px;}
.y1f{bottom:376.485000px;}
.y54{bottom:376.923000px;}
.y135{bottom:377.385000px;}
.y1c5{bottom:377.520000px;}
.y91{bottom:377.571000px;}
.y80{bottom:377.752500px;}
.y68{bottom:381.252000px;}
.ya5{bottom:381.874500px;}
.y3a{bottom:384.084000px;}
.y208{bottom:386.665500px;}
.y9{bottom:387.556500px;}
.ybd{bottom:387.678000px;}
.y21e{bottom:388.710000px;}
.y231{bottom:392.083500px;}
.y162{bottom:395.632500px;}
.y153{bottom:396.894000px;}
.y1ab{bottom:397.168500px;}
.y196{bottom:399.462000px;}
.y1f1{bottom:400.444500px;}
.yd3{bottom:402.339000px;}
.y274{bottom:402.391500px;}
.y1df{bottom:404.220000px;}
.y17d{bottom:404.266500px;}
.y11c{bottom:406.380000px;}
.y1d1{bottom:408.855000px;}
.y1e{bottom:408.988500px;}
.y53{bottom:409.425000px;}
.y134{bottom:409.887000px;}
.y1c4{bottom:410.023500px;}
.y90{bottom:410.073000px;}
.yff{bottom:410.115000px;}
.y7f{bottom:410.256000px;}
.y67{bottom:413.755500px;}
.ya4{bottom:414.787500px;}
.y39{bottom:416.587500px;}
.ybc{bottom:420.181500px;}
.y21d{bottom:421.212000px;}
.y152{bottom:423.793500px;}
.y230{bottom:424.587000px;}
.yed{bottom:431.745000px;}
.y195{bottom:431.965500px;}
.y1f0{bottom:432.946500px;}
.yd2{bottom:434.842500px;}
.y273{bottom:434.895000px;}
.y1de{bottom:436.723500px;}
.y1d0{bottom:441.357000px;}
.y1d{bottom:441.492000px;}
.y52{bottom:441.928500px;}
.y1c3{bottom:442.527000px;}
.y8f{bottom:442.576500px;}
.y8{bottom:442.600500px;}
.yfe{bottom:442.618500px;}
.y7e{bottom:442.759500px;}
.y161{bottom:446.251500px;}
.y17c{bottom:448.348500px;}
.y38{bottom:449.091000px;}
.y151{bottom:450.693000px;}
.y11b{bottom:450.946500px;}
.y207{bottom:451.006500px;}
.y133{bottom:457.662000px;}
.yec{bottom:458.644500px;}
.y194{bottom:458.865000px;}
.ya3{bottom:459.703500px;}
.ybb{bottom:464.730000px;}
.y1ef{bottom:465.450000px;}
.yd1{bottom:467.344500px;}
.y1dd{bottom:469.225500px;}
.y1aa{bottom:473.197500px;}
.y66{bottom:473.539500px;}
.y1c{bottom:473.995500px;}
.y272{bottom:474.870000px;}
.y1c2{bottom:475.029000px;}
.y8e{bottom:475.080000px;}
.y7d{bottom:475.263000px;}
.y150{bottom:477.591000px;}
.y51{bottom:477.826500px;}
.y37{bottom:481.593000px;}
.y22f{bottom:482.176500px;}
.y7{bottom:482.950500px;}
.y11a{bottom:483.450000px;}
.y206{bottom:483.508500px;}
.yeb{bottom:485.544000px;}
.y21c{bottom:487.089000px;}
.y160{bottom:489.048000px;}
.y193{bottom:491.367000px;}
.y1cf{bottom:491.614500px;}
.yfd{bottom:492.502500px;}
.yd0{bottom:499.848000px;}
.y1a9{bottom:505.701000px;}
.y1b{bottom:506.497500px;}
.y271{bottom:507.373500px;}
.y1c1{bottom:507.532500px;}
.y8d{bottom:507.583500px;}
.y14f{bottom:510.094500px;}
.y50{bottom:510.330000px;}
.yea{bottom:512.442000px;}
.y36{bottom:514.096500px;}
.y22e{bottom:514.680000px;}
.y205{bottom:516.012000px;}
.y192{bottom:518.266500px;}
.y21b{bottom:519.592500px;}
.ya2{bottom:519.822000px;}
.y17b{bottom:520.182000px;}
.y15f{bottom:521.551500px;}
.yba{bottom:523.735500px;}
.y7c{bottom:525.534000px;}
.y132{bottom:526.449000px;}
.y1ee{bottom:526.470000px;}
.y119{bottom:527.532000px;}
.ycf{bottom:532.351500px;}
.y1dc{bottom:533.326500px;}
.y14e{bottom:536.994000px;}
.y1a{bottom:539.001000px;}
.y8c{bottom:540.085500px;}
.y1a8{bottom:541.194000px;}
.y1c0{bottom:543.129000px;}
.y6{bottom:544.818000px;}
.ye9{bottom:544.945500px;}
.y35{bottom:546.600000px;}
.y17a{bottom:547.081500px;}
.y22d{bottom:547.183500px;}
.y270{bottom:547.348500px;}
.y1ed{bottom:548.137500px;}
.y204{bottom:548.515500px;}
.y1ce{bottom:549.795000px;}
.y191{bottom:550.770000px;}
.y21a{bottom:552.096000px;}
.ya1{bottom:552.735000px;}
.y15e{bottom:554.053500px;}
.yb9{bottom:556.239000px;}
.y131{bottom:558.952500px;}
.y4f{bottom:561.313500px;}
.y14d{bottom:563.893500px;}
.yce{bottom:564.855000px;}
.y1db{bottom:565.830000px;}
.y262{bottom:567.540000px;}
.y1ec{bottom:569.806500px;}
.ye8{bottom:571.845000px;}
.y19{bottom:572.983500px;}
.y1a7{bottom:573.697500px;}
.y1bf{bottom:575.631000px;}
.y190{bottom:577.669500px;}
.y65{bottom:578.751000px;}
.y179{bottom:579.583500px;}
.y22c{bottom:579.685500px;}
.y26f{bottom:579.852000px;}
.y203{bottom:581.019000px;}
.yfc{bottom:581.932500px;}
.y1cd{bottom:582.298500px;}
.y8b{bottom:584.167500px;}
.y219{bottom:584.598000px;}
.y7b{bottom:585.094500px;}
.y118{bottom:585.123000px;}
.y5{bottom:585.166500px;}
.ya0{bottom:585.238500px;}
.yb8{bottom:588.742500px;}
.y130{bottom:591.454500px;}
.y261{bottom:594.439500px;}
.y14c{bottom:596.395500px;}
.ycd{bottom:597.357000px;}
.y1da{bottom:598.332000px;}
.ye7{bottom:598.744500px;}
.y15d{bottom:599.095500px;}
.y18{bottom:605.485500px;}
.y1a6{bottom:606.201000px;}
.y178{bottom:606.483000px;}
.y1be{bottom:608.134500px;}
.yfb{bottom:608.830500px;}
.y64{bottom:611.254500px;}
.y26e{bottom:612.355500px;}
.y202{bottom:613.521000px;}
.y1cc{bottom:614.802000px;}
.y7a{bottom:617.598000px;}
.y117{bottom:617.625000px;}
.y9f{bottom:617.742000px;}
.y34{bottom:618.319500px;}
.y18f{bottom:619.155000px;}
.yb7{bottom:621.474000px;}
.y14b{bottom:623.295000px;}
.y12f{bottom:623.958000px;}
.y4{bottom:625.515000px;}
.ye6{bottom:625.642500px;}
.y260{bottom:626.943000px;}
.y8a{bottom:628.249500px;}
.y1d9{bottom:630.835500px;}
.y22b{bottom:637.276500px;}
.y17{bottom:637.989000px;}
.y1a5{bottom:638.703000px;}
.y177{bottom:638.986500px;}
.y4e{bottom:639.832500px;}
.yfa{bottom:641.334000px;}
.ycc{bottom:641.439000px;}
.y63{bottom:643.756500px;}
.y1cb{bottom:647.305500px;}
.y79{bottom:650.101500px;}
.y116{bottom:650.128500px;}
.y14a{bottom:650.194500px;}
.y218{bottom:650.475000px;}
.y9e{bottom:650.655000px;}
.y26d{bottom:652.330500px;}
.y25f{bottom:653.841000px;}
.yb6{bottom:653.977500px;}
.y12e{bottom:656.461500px;}
.ye5{bottom:658.146000px;}
.y1bd{bottom:658.504500px;}
.y253{bottom:663.960000px;}
.y3{bottom:665.863500px;}
.y176{bottom:665.886000px;}
.y201{bottom:666.004500px;}
.yf9{bottom:668.233500px;}
.y18e{bottom:669.774000px;}
.y22a{bottom:669.780000px;}
.y16{bottom:670.492500px;}
.y4d{bottom:672.336000px;}
.y15c{bottom:673.837500px;}
.y1a4{bottom:674.197500px;}
.y78{bottom:682.611000px;}
.y115{bottom:682.632000px;}
.y149{bottom:682.698000px;}
.y217{bottom:682.978500px;}
.y9d{bottom:683.158500px;}
.y62{bottom:683.983500px;}
.y26c{bottom:684.832500px;}
.ye4{bottom:685.045500px;}
.y89{bottom:685.720500px;}
.y25e{bottom:686.344500px;}
.yb5{bottom:686.481000px;}
.y1ca{bottom:691.387500px;}
.y252{bottom:692.278500px;}
.y175{bottom:692.784000px;}
.ycb{bottom:699.030000px;}
.yf8{bottom:700.737000px;}
.y229{bottom:702.283500px;}
.y15{bottom:702.996000px;}
.y4c{bottom:704.839500px;}
.y1a3{bottom:706.701000px;}
.y148{bottom:709.596000px;}
.y12d{bottom:710.410500px;}
.y251{bottom:710.431500px;}
.y23a{bottom:710.748000px;}
.ye3{bottom:711.945000px;}
.y25d{bottom:713.244000px;}
.y24f{bottom:713.316000px;}
.y77{bottom:715.114500px;}
.y114{bottom:715.135500px;}
.y216{bottom:715.480500px;}
.y61{bottom:716.487000px;}
.y26b{bottom:717.336000px;}
.y88{bottom:718.222500px;}
.yb4{bottom:718.984500px;}
.y250{bottom:721.570500px;}
.y18d{bottom:723.481500px;}
.y174{bottom:725.287500px;}
.yf7{bottom:727.635000px;}
.y9c{bottom:728.074500px;}
.yca{bottom:731.533500px;}
.y200{bottom:732.274500px;}
.y15b{bottom:733.239000px;}
.y228{bottom:734.785500px;}
.y1bc{bottom:735.163500px;}
.y147{bottom:736.495500px;}
.y14{bottom:736.977000px;}
.y4b{bottom:737.341500px;}
.ye2{bottom:738.843000px;}
.y1d8{bottom:739.156500px;}
.y1a2{bottom:739.203000px;}
.y33{bottom:742.923000px;}
.y25c{bottom:745.747500px;}
.y76{bottom:747.618000px;}
.y113{bottom:747.637500px;}
.y215{bottom:747.984000px;}
.y60{bottom:748.990500px;}
.y26a{bottom:749.839500px;}
.y173{bottom:752.187000px;}
.y24e{bottom:752.502000px;}
.y18c{bottom:755.985000px;}
.y2{bottom:760.011000px;}
.yf6{bottom:760.138500px;}
.y146{bottom:763.395000px;}
.yb3{bottom:763.533000px;}
.yc9{bottom:764.035500px;}
.y1ff{bottom:764.778000px;}
.y24c{bottom:764.803500px;}
.ye1{bottom:765.742500px;}
.y1bb{bottom:767.667000px;}
.y13{bottom:769.480500px;}
.y4a{bottom:769.845000px;}
.y1a1{bottom:771.706500px;}
.y25b{bottom:772.645500px;}
.y32{bottom:775.426500px;}
.y24d{bottom:776.944500px;}
.y87{bottom:777.682500px;}
.y265{bottom:778.249500px;}
.y227{bottom:778.867500px;}
.y75{bottom:780.120000px;}
.y112{bottom:780.141000px;}
.y12c{bottom:781.128000px;}
.y5f{bottom:781.494000px;}
.y172{bottom:784.690500px;}
.yf5{bottom:787.038000px;}
.y9b{bottom:788.193000px;}
.y18b{bottom:788.488500px;}
.y269{bottom:789.814500px;}
.y145{bottom:790.294500px;}
.y15a{bottom:792.642000px;}
.y214{bottom:794.799000px;}
.yc8{bottom:796.539000px;}
.y1fe{bottom:797.280000px;}
.ye0{bottom:798.246000px;}
.y24b{bottom:800.086500px;}
.y1ba{bottom:800.170500px;}
.y12{bottom:801.984000px;}
.y49{bottom:802.348500px;}
.y25a{bottom:805.149000px;}
.y31{bottom:807.930000px;}
.y171{bottom:811.588500px;}
.y249{bottom:812.388000px;}
.y74{bottom:812.623500px;}
.y111{bottom:812.644500px;}
.y12b{bottom:813.630000px;}
.y1{bottom:816.051000px;}
.yf4{bottom:819.541500px;}
.y9a{bottom:821.106000px;}
.y5e{bottom:821.721000px;}
.y1a0{bottom:821.869500px;}
.y268{bottom:822.318000px;}
.yb2{bottom:822.538500px;}
.y144{bottom:822.796500px;}
.ydf{bottom:825.145500px;}
.y24a{bottom:825.955500px;}
.yc7{bottom:829.042500px;}
.y1fd{bottom:829.783500px;}
.y259{bottom:832.048500px;}
.y11{bottom:834.487500px;}
.y48{bottom:834.852000px;}
.y1b9{bottom:835.767000px;}
.y226{bottom:836.458500px;}
.y18a{bottom:837.216000px;}
.y264{bottom:837.652500px;}
.y30{bottom:840.432000px;}
.y170{bottom:844.092000px;}
.y73{bottom:845.127000px;}
.y110{bottom:845.148000px;}
.y12a{bottom:846.133500px;}
.yf3{bottom:846.439500px;}
.y143{bottom:849.696000px;}
.yde{bottom:852.043500px;}
.y248{bottom:853.404000px;}
.y99{bottom:853.609500px;}
.y5d{bottom:854.223000px;}
.y267{bottom:854.820000px;}
.yb1{bottom:855.271500px;}
.y213{bottom:860.674500px;}
.yc6{bottom:861.546000px;}
.y258{bottom:864.552000px;}
.y10{bottom:866.989500px;}
.y1b8{bottom:868.269000px;}
.y225{bottom:868.962000px;}
.y47{bottom:870.748500px;}
.y16f{bottom:870.991500px;}
.y1fc{bottom:876.091500px;}
.y142{bottom:876.595500px;}
.y72{bottom:877.630500px;}
.y10f{bottom:877.650000px;}
.y129{bottom:878.637000px;}
.ydd{bottom:878.943000px;}
.y2f{bottom:883.492500px;}
.y247{bottom:884.058000px;}
.y98{bottom:886.113000px;}
.yb0{bottom:887.773500px;}
.y257{bottom:891.450000px;}
.y244{bottom:892.759500px;}
.y212{bottom:893.178000px;}
.yc5{bottom:894.048000px;}
.y5c{bottom:894.450000px;}
.y263{bottom:897.054000px;}
.y19f{bottom:897.898500px;}
.y1b7{bottom:900.772500px;}
.yf{bottom:900.972000px;}
.y224{bottom:901.464000px;}
.y46{bottom:903.252000px;}
.y141{bottom:903.495000px;}
.y242{bottom:905.062500px;}
.yf2{bottom:905.842500px;}
.y71{bottom:910.132500px;}
.y10e{bottom:910.153500px;}
.ydc{bottom:911.446500px;}
.y16e{bottom:912.477000px;}
.y2e{bottom:915.996000px;}
.y243{bottom:917.202000px;}
.y97{bottom:918.616500px;}
.yaf{bottom:920.277000px;}
.y189{bottom:923.140500px;}
.y246{bottom:923.412000px;}
.y256{bottom:923.953500px;}
.y211{bottom:925.681500px;}
.y128{bottom:926.410500px;}
.yc4{bottom:926.551500px;}
.y5b{bottom:926.953500px;}
.y245{bottom:926.998500px;}
.y19e{bottom:930.400500px;}
.y1b6{bottom:933.276000px;}
.ye{bottom:933.475500px;}
.y223{bottom:933.967500px;}
.y45{bottom:935.755500px;}
.ydb{bottom:938.346000px;}
.y1fb{bottom:940.431000px;}
.y70{bottom:942.636000px;}
.y10d{bottom:942.657000px;}
.y241{bottom:943.494000px;}
.y140{bottom:944.980500px;}
.y266{bottom:947.100000px;}
.y2d{bottom:948.498000px;}
.y240{bottom:949.515000px;}
.y188{bottom:950.038500px;}
.y96{bottom:951.529500px;}
.yae{bottom:952.780500px;}
.y210{bottom:958.185000px;}
.yc3{bottom:959.055000px;}
.y5a{bottom:959.457000px;}
.y19d{bottom:962.904000px;}
.y16d{bottom:963.096000px;}
.y23c{bottom:963.198000px;}
.yda{bottom:965.244000px;}
.y255{bottom:965.439000px;}
.y1b5{bottom:965.779500px;}
.yd{bottom:965.977500px;}
.y44{bottom:968.259000px;}
.y23e{bottom:971.452500px;}
.y23f{bottom:971.503500px;}
.y1fa{bottom:972.934500px;}
.y6f{bottom:975.139500px;}
.y10c{bottom:975.160500px;}
.y23d{bottom:976.251000px;}
.y2c{bottom:981.001500px;}
.y187{bottom:982.542000px;}
.y95{bottom:984.031500px;}
.yad{bottom:985.513500px;}
.y20f{bottom:990.687000px;}
.yc2{bottom:991.558500px;}
.y59{bottom:991.960500px;}
.yd9{bottom:992.143500px;}
.y19c{bottom:995.407500px;}
.y13f{bottom:995.599500px;}
.yc{bottom:998.481000px;}
.y43{bottom:1000.761000px;}
.y1b4{bottom:1001.374500px;}
.y1f9{bottom:1005.438000px;}
.y159{bottom:1006.731000px;}
.y6e{bottom:1007.649000px;}
.y10b{bottom:1007.662500px;}
.y127{bottom:1009.441500px;}
.y2b{bottom:1013.505000px;}
.y254{bottom:1016.058000px;}
.yc1{bottom:1024.060500px;}
.y58{bottom:1024.462500px;}
.y19b{bottom:1027.911000px;}
.y94{bottom:1028.947500px;}
.yac{bottom:1030.062000px;}
.yb{bottom:1030.984500px;}
.y42{bottom:1033.264500px;}
.yd8{bottom:1033.629000px;}
.y1b3{bottom:1033.878000px;}
.y23b{bottom:1033.990500px;}
.y126{bottom:1036.339500px;}
.y1f8{bottom:1037.940000px;}
.y6d{bottom:1040.152500px;}
.y10a{bottom:1040.166000px;}
.y186{bottom:1050.927000px;}
.y2a{bottom:1056.564000px;}
.y125{bottom:1077.826500px;}
.ya{bottom:1084.248000px;}
.y29{bottom:1089.067500px;}
.h14{height:4.016947px;}
.hb{height:15.886589px;}
.h11{height:35.927576px;}
.hd{height:40.826735px;}
.h7{height:41.125613px;}
.h6{height:41.484266px;}
.h8{height:42.859105px;}
.h9{height:48.992410px;}
.h5{height:49.351066px;}
.h4{height:49.781453px;}
.ha{height:51.431270px;}
.h3{height:59.221114px;}
.hc{height:71.396410px;}
.h2{height:71.684926px;}
.hf{height:72.251576px;}
.h12{height:72.257576px;}
.h10{height:81.161576px;}
.h13{height:85.847576px;}
.h1{height:86.038650px;}
.he{height:103.213484px;}
.h17{height:121.522589px;}
.h16{height:154.454947px;}
.h15{height:189.260947px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:81.000000px;}
.xc{left:102.669000px;}
.xb{left:107.338500px;}
.x10{left:109.842000px;}
.x1{left:122.472000px;}
.xd{left:124.897500px;}
.x12{left:129.669000px;}
.xe{left:134.338500px;}
.x15{left:136.842000px;}
.x26{left:140.559000px;}
.x18{left:141.585000px;}
.x8{left:143.148000px;}
.x51{left:146.469000px;}
.x13{left:151.897500px;}
.x4e{left:154.621500px;}
.x29{left:156.930000px;}
.x4f{left:160.155000px;}
.x24{left:167.559000px;}
.x2f{left:173.559000px;}
.x28{left:174.906000px;}
.x3b{left:176.230500px;}
.x33{left:178.189500px;}
.x1d{left:189.751500px;}
.x20{left:190.924500px;}
.x2c{left:213.772500px;}
.x17{left:219.747000px;}
.x32{left:222.391500px;}
.x7{left:225.943500px;}
.x4c{left:229.675500px;}
.x36{left:246.969000px;}
.x23{left:267.090000px;}
.x1f{left:275.421000px;}
.x19{left:278.572500px;}
.x6{left:280.978500px;}
.x30{left:296.680500px;}
.x2a{left:302.421000px;}
.x4{left:312.117000px;}
.x2d{left:317.941500px;}
.x14{left:320.716500px;}
.x4a{left:322.591500px;}
.x39{left:328.570500px;}
.x47{left:339.942000px;}
.x44{left:342.570000px;}
.x5{left:343.611000px;}
.x34{left:344.941500px;}
.x50{left:348.166500px;}
.x3e{left:351.634500px;}
.x3c{left:353.571000px;}
.x37{left:355.570500px;}
.x27{left:367.764000px;}
.x4d{left:375.166500px;}
.x3d{left:380.571000px;}
.x3{left:381.706500px;}
.x25{left:394.764000px;}
.x9{left:397.494000px;}
.x2{left:409.567500px;}
.x3f{left:411.781500px;}
.x45{left:413.485500px;}
.x48{left:415.233000px;}
.x42{left:419.580000px;}
.x40{left:421.918500px;}
.x49{left:425.206500px;}
.x43{left:429.270000px;}
.x46{left:431.955000px;}
.x4b{left:435.339000px;}
.x16{left:436.533000px;}
.x11{left:441.016500px;}
.x31{left:442.173000px;}
.x1a{left:445.324500px;}
.x21{left:461.275500px;}
.x1c{left:463.533000px;}
.xf{left:468.016500px;}
.x41{left:471.357000px;}
.x3a{left:474.063000px;}
.x22{left:475.501500px;}
.x2e{left:484.692000px;}
.x38{left:501.063000px;}
.x1e{left:505.953000px;}
.x35{left:511.692000px;}
.x2b{left:532.953000px;}
.x1b{left:612.076500px;}
@media print{
.v2{vertical-align:-18.048000pt;}
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.352000pt;}
.v6{vertical-align:17.061333pt;}
.v3{vertical-align:19.914667pt;}
.v8{vertical-align:21.408000pt;}
.v5{vertical-align:32.288000pt;}
.v7{vertical-align:40.208000pt;}
.v9{vertical-align:44.373333pt;}
.vf{vertical-align:75.850667pt;}
.ve{vertical-align:93.898667pt;}
.vc{vertical-align:108.282667pt;}
.vb{vertical-align:117.845333pt;}
.vd{vertical-align:143.285333pt;}
.va{vertical-align:164.661333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.001058pt;}
.ls2e{letter-spacing:0.007031pt;}
.ls18{letter-spacing:0.245521pt;}
.ls31{letter-spacing:0.449988pt;}
.ls1c{letter-spacing:1.020177pt;}
.ls1d{letter-spacing:1.083938pt;}
.ls22{letter-spacing:1.469636pt;}
.ls12{letter-spacing:1.776799pt;}
.ls30{letter-spacing:1.804655pt;}
.ls2d{letter-spacing:1.849071pt;}
.ls15{letter-spacing:1.918438pt;}
.ls14{letter-spacing:1.935369pt;}
.ls26{letter-spacing:2.044655pt;}
.ls28{letter-spacing:2.059017pt;}
.ls23{letter-spacing:2.711956pt;}
.ls6{letter-spacing:2.870263pt;}
.lsb{letter-spacing:2.895770pt;}
.lsd{letter-spacing:3.261067pt;}
.ls9{letter-spacing:3.266400pt;}
.ls5{letter-spacing:3.379337pt;}
.ls20{letter-spacing:5.007829pt;}
.ls17{letter-spacing:6.057301pt;}
.ls35{letter-spacing:7.619980pt;}
.ls2f{letter-spacing:7.815031pt;}
.ls25{letter-spacing:9.437500pt;}
.ls4{letter-spacing:13.283467pt;}
.ls1f{letter-spacing:13.644868pt;}
.ls34{letter-spacing:14.107578pt;}
.ls13{letter-spacing:14.112911pt;}
.ls2c{letter-spacing:14.154957pt;}
.ls2b{letter-spacing:14.218718pt;}
.lsc{letter-spacing:15.940267pt;}
.ls11{letter-spacing:16.004028pt;}
.ls8{letter-spacing:16.641638pt;}
.ls1e{letter-spacing:16.705399pt;}
.lsf{letter-spacing:16.769161pt;}
.ls7{letter-spacing:16.823733pt;}
.lse{letter-spacing:16.829067pt;}
.ls21{letter-spacing:17.215488pt;}
.lsa{letter-spacing:17.343010pt;}
.ls2a{letter-spacing:17.661815pt;}
.ls1b{letter-spacing:17.725577pt;}
.ls19{letter-spacing:18.554470pt;}
.ls10{letter-spacing:18.937037pt;}
.ls0{letter-spacing:19.128267pt;}
.ls27{letter-spacing:19.539980pt;}
.ls16{letter-spacing:19.785313pt;}
.ls24{letter-spacing:23.583087pt;}
.ls32{letter-spacing:24.073335pt;}
.ls2{letter-spacing:27.289737pt;}
.ls1a{letter-spacing:30.222746pt;}
.ls3{letter-spacing:31.242923pt;}
.ls29{letter-spacing:75.332420pt;}
.ws81{word-spacing:-82.634342pt;}
.wsdd{word-spacing:-66.098933pt;}
.ws1{word-spacing:-55.100000pt;}
.ws80{word-spacing:-42.528631pt;}
.ws13{word-spacing:-31.880533pt;}
.wsdb{word-spacing:-31.306684pt;}
.wsd8{word-spacing:-31.187497pt;}
.ws0{word-spacing:-27.550000pt;}
.ws78{word-spacing:-26.566933pt;}
.ws88{word-spacing:-24.803055pt;}
.ws82{word-spacing:-24.356727pt;}
.ws2{word-spacing:-22.953867pt;}
.wsd6{word-spacing:-22.890223pt;}
.wsdc{word-spacing:-22.771081pt;}
.ws84{word-spacing:-22.698940pt;}
.ws7f{word-spacing:-22.635179pt;}
.wsa4{word-spacing:-22.316373pt;}
.wsa3{word-spacing:-22.188851pt;}
.wsb1{word-spacing:-21.933807pt;}
.ws9{word-spacing:-21.423718pt;}
.wsa9{word-spacing:-21.232435pt;}
.ws72{word-spacing:-20.977391pt;}
.ws66{word-spacing:-20.913630pt;}
.wsd0{word-spacing:-20.658586pt;}
.wsd1{word-spacing:-20.531063pt;}
.ws26{word-spacing:-20.339780pt;}
.ws70{word-spacing:-20.276019pt;}
.wsae{word-spacing:-20.212258pt;}
.wsda{word-spacing:-20.148497pt;}
.ws3a{word-spacing:-19.957214pt;}
.ws9e{word-spacing:-19.829692pt;}
.wscb{word-spacing:-19.638409pt;}
.ws57{word-spacing:-19.383364pt;}
.ws31{word-spacing:-19.319603pt;}
.wsdf{word-spacing:-19.255842pt;}
.wsad{word-spacing:-19.192081pt;}
.ws6e{word-spacing:-19.128320pt;}
.ws3{word-spacing:-19.128267pt;}
.ws48{word-spacing:-19.064559pt;}
.wsa8{word-spacing:-19.000798pt;}
.ws96{word-spacing:-18.937037pt;}
.wsa2{word-spacing:-18.873276pt;}
.ws61{word-spacing:-18.745754pt;}
.ws90{word-spacing:-18.618231pt;}
.ws8a{word-spacing:-18.299426pt;}
.wsc7{word-spacing:-18.235665pt;}
.wsb0{word-spacing:-18.171904pt;}
.ws2a{word-spacing:-18.108143pt;}
.ws91{word-spacing:-18.044382pt;}
.wsce{word-spacing:-17.980621pt;}
.wsa5{word-spacing:-17.916860pt;}
.ws1a{word-spacing:-17.853099pt;}
.wsbc{word-spacing:-17.789338pt;}
.ws64{word-spacing:-17.725577pt;}
.ws6f{word-spacing:-17.598054pt;}
.wsd3{word-spacing:-17.406771pt;}
.ws56{word-spacing:-17.279249pt;}
.ws11{word-spacing:-17.215488pt;}
.ws37{word-spacing:-17.151727pt;}
.ws15{word-spacing:-17.087966pt;}
.ws16{word-spacing:-17.024205pt;}
.ws68{word-spacing:-16.960444pt;}
.ws7e{word-spacing:-16.896683pt;}
.ws76{word-spacing:-16.832922pt;}
.ws65{word-spacing:-16.705399pt;}
.ws6b{word-spacing:-16.641638pt;}
.ws67{word-spacing:-16.577877pt;}
.ws83{word-spacing:-16.514116pt;}
.wsbd{word-spacing:-16.450355pt;}
.ws1c{word-spacing:-16.322833pt;}
.ws41{word-spacing:-16.259072pt;}
.ws63{word-spacing:-16.195311pt;}
.ws44{word-spacing:-16.131550pt;}
.ws5b{word-spacing:-16.067789pt;}
.ws3c{word-spacing:-16.004028pt;}
.ws6{word-spacing:-15.940267pt;}
.ws9d{word-spacing:-15.876506pt;}
.ws42{word-spacing:-15.812745pt;}
.wsaa{word-spacing:-15.748983pt;}
.ws32{word-spacing:-15.685222pt;}
.ws8f{word-spacing:-15.557700pt;}
.ws6d{word-spacing:-15.493939pt;}
.wsb6{word-spacing:-15.430178pt;}
.wsc9{word-spacing:-15.366417pt;}
.ws4e{word-spacing:-15.302656pt;}
.ws2d{word-spacing:-15.175134pt;}
.wsb7{word-spacing:-15.111373pt;}
.wsb8{word-spacing:-15.047612pt;}
.wsc5{word-spacing:-14.983851pt;}
.wsa{word-spacing:-14.792567pt;}
.ws4f{word-spacing:-14.601284pt;}
.ws8d{word-spacing:-14.537523pt;}
.ws79{word-spacing:-14.505546pt;}
.ws21{word-spacing:-14.473762pt;}
.ws7b{word-spacing:-14.346240pt;}
.ws4b{word-spacing:-14.282479pt;}
.ws2e{word-spacing:-14.218718pt;}
.ws38{word-spacing:-14.154957pt;}
.ws5d{word-spacing:-14.091196pt;}
.ws5a{word-spacing:-14.027435pt;}
.wscf{word-spacing:-13.963674pt;}
.ws40{word-spacing:-13.899913pt;}
.wsc8{word-spacing:-13.836151pt;}
.ws7a{word-spacing:-13.814805pt;}
.ws30{word-spacing:-13.772390pt;}
.wsd9{word-spacing:-13.757039pt;}
.wse{word-spacing:-13.708629pt;}
.ws9a{word-spacing:-13.644868pt;}
.ws98{word-spacing:-13.602270pt;}
.wsd4{word-spacing:-13.581107pt;}
.ws1d{word-spacing:-13.517346pt;}
.wsc1{word-spacing:-13.453585pt;}
.wsb2{word-spacing:-13.389824pt;}
.ws77{word-spacing:-13.283467pt;}
.ws2f{word-spacing:-13.262302pt;}
.ws35{word-spacing:-13.198541pt;}
.ws4c{word-spacing:-13.134780pt;}
.ws4d{word-spacing:-13.071019pt;}
.ws5c{word-spacing:-13.007258pt;}
.wsca{word-spacing:-12.879735pt;}
.ws8{word-spacing:-12.752213pt;}
.wsd2{word-spacing:-12.688452pt;}
.wsf{word-spacing:-12.624691pt;}
.ws19{word-spacing:-12.560930pt;}
.ws5e{word-spacing:-12.497169pt;}
.ws8e{word-spacing:-12.369647pt;}
.wsd{word-spacing:-12.305886pt;}
.ws62{word-spacing:-12.242125pt;}
.wsbb{word-spacing:-12.178364pt;}
.ws95{word-spacing:-12.114603pt;}
.ws53{word-spacing:-12.050842pt;}
.ws39{word-spacing:-11.923319pt;}
.wsc3{word-spacing:-11.732036pt;}
.ws46{word-spacing:-11.668275pt;}
.wsd7{word-spacing:-11.651916pt;}
.ws1b{word-spacing:-11.604514pt;}
.ws74{word-spacing:-11.540753pt;}
.wsb3{word-spacing:-11.476992pt;}
.ws6c{word-spacing:-11.349470pt;}
.ws22{word-spacing:-11.285709pt;}
.ws9f{word-spacing:-11.221948pt;}
.ws92{word-spacing:-11.158187pt;}
.ws3e{word-spacing:-11.094426pt;}
.wsa0{word-spacing:-11.030665pt;}
.ws7{word-spacing:-10.966903pt;}
.ws3f{word-spacing:-10.903142pt;}
.ws12{word-spacing:-10.839381pt;}
.ws8c{word-spacing:-10.711859pt;}
.ws36{word-spacing:-10.648098pt;}
.ws4{word-spacing:-10.635316pt;}
.ws1e{word-spacing:-10.584337pt;}
.wsa7{word-spacing:-10.520576pt;}
.wsba{word-spacing:-10.456815pt;}
.wsa1{word-spacing:-10.393054pt;}
.ws94{word-spacing:-10.329293pt;}
.wsb4{word-spacing:-10.265532pt;}
.ws93{word-spacing:-10.201771pt;}
.ws9b{word-spacing:-10.138010pt;}
.wsab{word-spacing:-10.074249pt;}
.ws60{word-spacing:-10.010487pt;}
.ws47{word-spacing:-9.946726pt;}
.wsc0{word-spacing:-9.882965pt;}
.ws55{word-spacing:-9.819204pt;}
.ws54{word-spacing:-9.755443pt;}
.wsde{word-spacing:-9.627921pt;}
.ws9c{word-spacing:-9.500399pt;}
.wsac{word-spacing:-9.436638pt;}
.ws43{word-spacing:-9.372877pt;}
.ws18{word-spacing:-9.309116pt;}
.ws1f{word-spacing:-9.245355pt;}
.ws5f{word-spacing:-9.181594pt;}
.ws10{word-spacing:-9.117833pt;}
.wsc{word-spacing:-8.926549pt;}
.ws86{word-spacing:-8.862788pt;}
.ws28{word-spacing:-8.799027pt;}
.ws29{word-spacing:-8.735266pt;}
.ws27{word-spacing:-8.607744pt;}
.ws50{word-spacing:-8.480222pt;}
.ws45{word-spacing:-8.416461pt;}
.ws97{word-spacing:-8.288939pt;}
.ws34{word-spacing:-8.161417pt;}
.ws3d{word-spacing:-8.097655pt;}
.ws3b{word-spacing:-7.970133pt;}
.ws20{word-spacing:-7.842611pt;}
.ws7c{word-spacing:-7.651328pt;}
.wse0{word-spacing:-7.587567pt;}
.wsc4{word-spacing:-7.523806pt;}
.wsc2{word-spacing:-7.460045pt;}
.ws7d{word-spacing:-7.385607pt;}
.wsbf{word-spacing:-7.268762pt;}
.wsbe{word-spacing:-7.205001pt;}
.ws6a{word-spacing:-6.949956pt;}
.ws24{word-spacing:-6.886195pt;}
.ws25{word-spacing:-6.822434pt;}
.wscd{word-spacing:-6.758673pt;}
.ws52{word-spacing:-6.567390pt;}
.ws2b{word-spacing:-6.439868pt;}
.ws59{word-spacing:-6.376107pt;}
.ws49{word-spacing:-6.312346pt;}
.ws4a{word-spacing:-6.248585pt;}
.wsc6{word-spacing:-6.184823pt;}
.wsaf{word-spacing:-6.121062pt;}
.ws23{word-spacing:-6.057301pt;}
.ws99{word-spacing:-5.866018pt;}
.ws71{word-spacing:-5.802257pt;}
.ws58{word-spacing:-5.483452pt;}
.wsb{word-spacing:-5.419691pt;}
.ws33{word-spacing:-5.164646pt;}
.wscc{word-spacing:-5.100885pt;}
.wsa6{word-spacing:-4.590797pt;}
.ws17{word-spacing:-4.527036pt;}
.ws73{word-spacing:-4.399514pt;}
.wsb9{word-spacing:-4.335753pt;}
.ws51{word-spacing:-4.208230pt;}
.ws69{word-spacing:-3.634381pt;}
.wsd5{word-spacing:-3.506859pt;}
.ws75{word-spacing:-3.443098pt;}
.ws8b{word-spacing:-3.379337pt;}
.wsb5{word-spacing:-1.211460pt;}
.ws14{word-spacing:-0.637611pt;}
.ws5{word-spacing:0.000000pt;}
.ws89{word-spacing:13.517346pt;}
.ws85{word-spacing:15.876506pt;}
.ws87{word-spacing:17.598054pt;}
.ws2c{word-spacing:31.880533pt;}
._36{margin-left:-13.253280pt;}
._3{margin-left:-7.163000pt;}
._6{margin-left:-6.272483pt;}
._26{margin-left:-5.301744pt;}
._2{margin-left:-4.408000pt;}
._1{margin-left:-3.306000pt;}
._0{margin-left:-1.653000pt;}
._4{width:1.193923pt;}
._7{width:2.112077pt;}
._1a{width:3.427121pt;}
._35{width:4.463275pt;}
._37{width:5.391970pt;}
._34{width:6.376107pt;}
._38{width:7.942862pt;}
._b{width:11.433943pt;}
._25{width:12.514707pt;}
._23{width:14.062510pt;}
._16{width:14.969487pt;}
._5a{width:15.900876pt;}
._40{width:17.226625pt;}
._10{width:19.314815pt;}
._a{width:20.361541pt;}
._e{width:21.286621pt;}
._8{width:22.391271pt;}
._17{width:23.526220pt;}
._12{width:24.479462pt;}
._41{width:25.494851pt;}
._c{width:26.397082pt;}
._5{width:27.943206pt;}
._d{width:29.202569pt;}
._1b{width:30.281719pt;}
._21{width:31.242923pt;}
._9{width:32.581905pt;}
._f{width:33.987823pt;}
._15{width:35.706197pt;}
._59{width:36.912870pt;}
._13{width:37.810313pt;}
._18{width:39.085534pt;}
._1f{width:40.371944pt;}
._11{width:42.531806pt;}
._22{width:43.593419pt;}
._14{width:45.820268pt;}
._1e{width:47.664551pt;}
._24{width:50.116198pt;}
._20{width:51.120516pt;}
._19{width:52.746286pt;}
._1c{width:54.874340pt;}
._5b{width:62.535243pt;}
._1d{width:63.761067pt;}
._56{width:84.441414pt;}
._61{width:85.553682pt;}
._2c{width:91.152201pt;}
._54{width:94.320770pt;}
._39{width:117.549622pt;}
._44{width:133.840068pt;}
._48{width:140.372311pt;}
._3b{width:153.347677pt;}
._45{width:154.787110pt;}
._3a{width:155.912274pt;}
._29{width:160.386325pt;}
._2a{width:170.880223pt;}
._28{width:184.084030pt;}
._4e{width:185.843298pt;}
._4a{width:191.281000pt;}
._52{width:194.098015pt;}
._51{width:206.078141pt;}
._46{width:213.844748pt;}
._5d{width:215.359718pt;}
._53{width:227.155437pt;}
._3f{width:252.402364pt;}
._42{width:253.721771pt;}
._50{width:255.156985pt;}
._57{width:259.027600pt;}
._4f{width:266.865000pt;}
._33{width:279.840948pt;}
._31{width:282.763311pt;}
._55{width:291.487733pt;}
._3c{width:320.389948pt;}
._3d{width:322.989116pt;}
._27{width:333.669194pt;}
._4d{width:347.820141pt;}
._58{width:353.494956pt;}
._47{width:355.276015pt;}
._5e{width:357.224836pt;}
._4b{width:361.258867pt;}
._3e{width:371.540311pt;}
._2b{width:387.265926pt;}
._4c{width:419.916948pt;}
._49{width:429.078956pt;}
._60{width:433.838021pt;}
._32{width:438.885739pt;}
._5f{width:439.962423pt;}
._2f{width:451.038267pt;}
._5c{width:455.896733pt;}
._43{width:485.043941pt;}
._30{width:536.226982pt;}
._2e{width:571.997775pt;}
._2d{width:592.746289pt;}
.fs5{font-size:46.757867pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.fs6{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:32.149333pt;}
.y28{bottom:72.000000pt;}
.y13e{bottom:72.198667pt;}
.y109{bottom:75.450667pt;}
.y16c{bottom:84.660000pt;}
.y239{bottom:84.793333pt;}
.y27{bottom:100.892000pt;}
.y13d{bottom:101.090667pt;}
.y1eb{bottom:102.714667pt;}
.y108{bottom:104.342667pt;}
.y185{bottom:108.348000pt;}
.y16b{bottom:108.570667pt;}
.y238{bottom:113.685333pt;}
.y124{bottom:115.969333pt;}
.y26{bottom:129.782667pt;}
.yab{bottom:129.784000pt;}
.y86{bottom:129.789333pt;}
.y13c{bottom:129.982667pt;}
.y1ea{bottom:131.606667pt;}
.y184{bottom:132.258667pt;}
.y1b2{bottom:132.441333pt;}
.y16a{bottom:132.481333pt;}
.y107{bottom:133.234667pt;}
.y123{bottom:139.878667pt;}
.y237{bottom:142.576000pt;}
.y1f7{bottom:148.413333pt;}
.y20e{bottom:158.082667pt;}
.y40{bottom:158.674667pt;}
.y85{bottom:158.681333pt;}
.y13b{bottom:158.874667pt;}
.yaa{bottom:159.040000pt;}
.y25{bottom:159.989333pt;}
.y1e9{bottom:160.498667pt;}
.y183{bottom:161.149333pt;}
.y1b1{bottom:161.333333pt;}
.y169{bottom:161.373333pt;}
.y106{bottom:162.126667pt;}
.y1c9{bottom:164.874667pt;}
.y158{bottom:168.065333pt;}
.y122{bottom:168.770667pt;}
.y1d7{bottom:168.966667pt;}
.y236{bottom:171.468000pt;}
.y1f6{bottom:177.305333pt;}
.y182{bottom:185.060000pt;}
.y168{bottom:185.282667pt;}
.y1e4{bottom:186.761333pt;}
.y20d{bottom:186.974667pt;}
.y3f{bottom:187.566667pt;}
.y84{bottom:187.572000pt;}
.y13a{bottom:187.765333pt;}
.y24{bottom:188.881333pt;}
.y1b0{bottom:190.225333pt;}
.y105{bottom:193.554667pt;}
.y1c8{bottom:193.766667pt;}
.y157{bottom:196.957333pt;}
.y121{bottom:197.662667pt;}
.ya9{bottom:198.965333pt;}
.y222{bottom:200.288000pt;}
.y235{bottom:200.360000pt;}
.y19a{bottom:201.989333pt;}
.y1e8{bottom:203.388000pt;}
.y1f5{bottom:206.197333pt;}
.y167{bottom:214.174667pt;}
.y1e3{bottom:215.653333pt;}
.y20c{bottom:215.865333pt;}
.y3e{bottom:216.458667pt;}
.y139{bottom:216.657333pt;}
.y23{bottom:217.772000pt;}
.y1d6{bottom:218.968000pt;}
.y1af{bottom:219.116000pt;}
.yd7{bottom:219.768000pt;}
.y181{bottom:221.936000pt;}
.y104{bottom:222.446667pt;}
.y1c7{bottom:222.658667pt;}
.yf1{bottom:222.954667pt;}
.y6c{bottom:223.324000pt;}
.y156{bottom:225.849333pt;}
.y120{bottom:226.554667pt;}
.y83{bottom:226.768000pt;}
.yc0{bottom:232.654667pt;}
.y1f4{bottom:235.088000pt;}
.y166{bottom:238.085333pt;}
.y234{bottom:239.544000pt;}
.y20b{bottom:244.757333pt;}
.y3d{bottom:245.349333pt;}
.y180{bottom:245.846667pt;}
.y22{bottom:246.664000pt;}
.y138{bottom:247.164000pt;}
.y1d5{bottom:247.860000pt;}
.y57{bottom:248.366667pt;}
.y1ae{bottom:250.666667pt;}
.yf0{bottom:251.845333pt;}
.y6b{bottom:252.216000pt;}
.ya8{bottom:252.404000pt;}
.y11f{bottom:255.445333pt;}
.y93{bottom:255.642667pt;}
.y221{bottom:258.844000pt;}
.y103{bottom:261.616000pt;}
.y155{bottom:265.032000pt;}
.y165{bottom:266.977333pt;}
.y1c6{bottom:267.432000pt;}
.yd6{bottom:270.960000pt;}
.y1e7{bottom:271.598667pt;}
.y1e2{bottom:272.632000pt;}
.y20a{bottom:273.649333pt;}
.y3c{bottom:274.241333pt;}
.y1f3{bottom:274.668000pt;}
.y21{bottom:275.556000pt;}
.y1d4{bottom:276.750667pt;}
.y56{bottom:277.258667pt;}
.y137{bottom:277.669333pt;}
.y102{bottom:277.753333pt;}
.y82{bottom:277.997333pt;}
.y199{bottom:278.365333pt;}
.y11e{bottom:279.356000pt;}
.y1ad{bottom:279.558667pt;}
.y100{bottom:280.317333pt;}
.yef{bottom:280.737333pt;}
.y6a{bottom:281.106667pt;}
.ya7{bottom:281.660000pt;}
.ybf{bottom:286.820000pt;}
.y220{bottom:287.736000pt;}
.y233{bottom:290.734667pt;}
.y17f{bottom:290.841333pt;}
.y1e6{bottom:290.860000pt;}
.y164{bottom:290.886667pt;}
.y101{bottom:291.108000pt;}
.yd5{bottom:299.850667pt;}
.y1e1{bottom:301.522667pt;}
.y198{bottom:302.276000pt;}
.y209{bottom:302.541333pt;}
.y1d3{bottom:305.642667pt;}
.y20{bottom:305.762667pt;}
.y55{bottom:306.150667pt;}
.y136{bottom:306.561333pt;}
.y92{bottom:306.726667pt;}
.y81{bottom:306.889333pt;}
.y1ac{bottom:308.450667pt;}
.y69{bottom:309.998667pt;}
.y1e5{bottom:310.121333pt;}
.ya6{bottom:310.552000pt;}
.y3b{bottom:312.517333pt;}
.ybe{bottom:315.710667pt;}
.y11d{bottom:316.232000pt;}
.y21f{bottom:316.628000pt;}
.y232{bottom:319.626667pt;}
.yee{bottom:319.921333pt;}
.y1f2{bottom:327.058667pt;}
.y163{bottom:327.764000pt;}
.yd4{bottom:328.742667pt;}
.y154{bottom:328.884000pt;}
.y1e0{bottom:330.414667pt;}
.y17e{bottom:330.456000pt;}
.y197{bottom:331.166667pt;}
.y1d2{bottom:334.534667pt;}
.y1f{bottom:334.653333pt;}
.y54{bottom:335.042667pt;}
.y135{bottom:335.453333pt;}
.y1c5{bottom:335.573333pt;}
.y91{bottom:335.618667pt;}
.y80{bottom:335.780000pt;}
.y68{bottom:338.890667pt;}
.ya5{bottom:339.444000pt;}
.y3a{bottom:341.408000pt;}
.y208{bottom:343.702667pt;}
.y9{bottom:344.494667pt;}
.ybd{bottom:344.602667pt;}
.y21e{bottom:345.520000pt;}
.y231{bottom:348.518667pt;}
.y162{bottom:351.673333pt;}
.y153{bottom:352.794667pt;}
.y1ab{bottom:353.038667pt;}
.y196{bottom:355.077333pt;}
.y1f1{bottom:355.950667pt;}
.yd3{bottom:357.634667pt;}
.y274{bottom:357.681333pt;}
.y1df{bottom:359.306667pt;}
.y17d{bottom:359.348000pt;}
.y11c{bottom:361.226667pt;}
.y1d1{bottom:363.426667pt;}
.y1e{bottom:363.545333pt;}
.y53{bottom:363.933333pt;}
.y134{bottom:364.344000pt;}
.y1c4{bottom:364.465333pt;}
.y90{bottom:364.509333pt;}
.yff{bottom:364.546667pt;}
.y7f{bottom:364.672000pt;}
.y67{bottom:367.782667pt;}
.ya4{bottom:368.700000pt;}
.y39{bottom:370.300000pt;}
.ybc{bottom:373.494667pt;}
.y21d{bottom:374.410667pt;}
.y152{bottom:376.705333pt;}
.y230{bottom:377.410667pt;}
.yed{bottom:383.773333pt;}
.y195{bottom:383.969333pt;}
.y1f0{bottom:384.841333pt;}
.yd2{bottom:386.526667pt;}
.y273{bottom:386.573333pt;}
.y1de{bottom:388.198667pt;}
.y1d0{bottom:392.317333pt;}
.y1d{bottom:392.437333pt;}
.y52{bottom:392.825333pt;}
.y1c3{bottom:393.357333pt;}
.y8f{bottom:393.401333pt;}
.y8{bottom:393.422667pt;}
.yfe{bottom:393.438667pt;}
.y7e{bottom:393.564000pt;}
.y161{bottom:396.668000pt;}
.y17c{bottom:398.532000pt;}
.y38{bottom:399.192000pt;}
.y151{bottom:400.616000pt;}
.y11b{bottom:400.841333pt;}
.y207{bottom:400.894667pt;}
.y133{bottom:406.810667pt;}
.yec{bottom:407.684000pt;}
.y194{bottom:407.880000pt;}
.ya3{bottom:408.625333pt;}
.ybb{bottom:413.093333pt;}
.y1ef{bottom:413.733333pt;}
.yd1{bottom:415.417333pt;}
.y1dd{bottom:417.089333pt;}
.y1aa{bottom:420.620000pt;}
.y66{bottom:420.924000pt;}
.y1c{bottom:421.329333pt;}
.y272{bottom:422.106667pt;}
.y1c2{bottom:422.248000pt;}
.y8e{bottom:422.293333pt;}
.y7d{bottom:422.456000pt;}
.y150{bottom:424.525333pt;}
.y51{bottom:424.734667pt;}
.y37{bottom:428.082667pt;}
.y22f{bottom:428.601333pt;}
.y7{bottom:429.289333pt;}
.y11a{bottom:429.733333pt;}
.y206{bottom:429.785333pt;}
.yeb{bottom:431.594667pt;}
.y21c{bottom:432.968000pt;}
.y160{bottom:434.709333pt;}
.y193{bottom:436.770667pt;}
.y1cf{bottom:436.990667pt;}
.yfd{bottom:437.780000pt;}
.yd0{bottom:444.309333pt;}
.y1a9{bottom:449.512000pt;}
.y1b{bottom:450.220000pt;}
.y271{bottom:450.998667pt;}
.y1c1{bottom:451.140000pt;}
.y8d{bottom:451.185333pt;}
.y14f{bottom:453.417333pt;}
.y50{bottom:453.626667pt;}
.yea{bottom:455.504000pt;}
.y36{bottom:456.974667pt;}
.y22e{bottom:457.493333pt;}
.y205{bottom:458.677333pt;}
.y192{bottom:460.681333pt;}
.y21b{bottom:461.860000pt;}
.ya2{bottom:462.064000pt;}
.y17b{bottom:462.384000pt;}
.y15f{bottom:463.601333pt;}
.yba{bottom:465.542667pt;}
.y7c{bottom:467.141333pt;}
.y132{bottom:467.954667pt;}
.y1ee{bottom:467.973333pt;}
.y119{bottom:468.917333pt;}
.ycf{bottom:473.201333pt;}
.y1dc{bottom:474.068000pt;}
.y14e{bottom:477.328000pt;}
.y1a{bottom:479.112000pt;}
.y8c{bottom:480.076000pt;}
.y1a8{bottom:481.061333pt;}
.y1c0{bottom:482.781333pt;}
.y6{bottom:484.282667pt;}
.ye9{bottom:484.396000pt;}
.y35{bottom:485.866667pt;}
.y17a{bottom:486.294667pt;}
.y22d{bottom:486.385333pt;}
.y270{bottom:486.532000pt;}
.y1ed{bottom:487.233333pt;}
.y204{bottom:487.569333pt;}
.y1ce{bottom:488.706667pt;}
.y191{bottom:489.573333pt;}
.y21a{bottom:490.752000pt;}
.ya1{bottom:491.320000pt;}
.y15e{bottom:492.492000pt;}
.yb9{bottom:494.434667pt;}
.y131{bottom:496.846667pt;}
.y4f{bottom:498.945333pt;}
.y14d{bottom:501.238667pt;}
.yce{bottom:502.093333pt;}
.y1db{bottom:502.960000pt;}
.y262{bottom:504.480000pt;}
.y1ec{bottom:506.494667pt;}
.ye8{bottom:508.306667pt;}
.y19{bottom:509.318667pt;}
.y1a7{bottom:509.953333pt;}
.y1bf{bottom:511.672000pt;}
.y190{bottom:513.484000pt;}
.y65{bottom:514.445333pt;}
.y179{bottom:515.185333pt;}
.y22c{bottom:515.276000pt;}
.y26f{bottom:515.424000pt;}
.y203{bottom:516.461333pt;}
.yfc{bottom:517.273333pt;}
.y1cd{bottom:517.598667pt;}
.y8b{bottom:519.260000pt;}
.y219{bottom:519.642667pt;}
.y7b{bottom:520.084000pt;}
.y118{bottom:520.109333pt;}
.y5{bottom:520.148000pt;}
.ya0{bottom:520.212000pt;}
.yb8{bottom:523.326667pt;}
.y130{bottom:525.737333pt;}
.y261{bottom:528.390667pt;}
.y14c{bottom:530.129333pt;}
.ycd{bottom:530.984000pt;}
.y1da{bottom:531.850667pt;}
.ye7{bottom:532.217333pt;}
.y15d{bottom:532.529333pt;}
.y18{bottom:538.209333pt;}
.y1a6{bottom:538.845333pt;}
.y178{bottom:539.096000pt;}
.y1be{bottom:540.564000pt;}
.yfb{bottom:541.182667pt;}
.y64{bottom:543.337333pt;}
.y26e{bottom:544.316000pt;}
.y202{bottom:545.352000pt;}
.y1cc{bottom:546.490667pt;}
.y7a{bottom:548.976000pt;}
.y117{bottom:549.000000pt;}
.y9f{bottom:549.104000pt;}
.y34{bottom:549.617333pt;}
.y18f{bottom:550.360000pt;}
.yb7{bottom:552.421333pt;}
.y14b{bottom:554.040000pt;}
.y12f{bottom:554.629333pt;}
.y4{bottom:556.013333pt;}
.ye6{bottom:556.126667pt;}
.y260{bottom:557.282667pt;}
.y8a{bottom:558.444000pt;}
.y1d9{bottom:560.742667pt;}
.y22b{bottom:566.468000pt;}
.y17{bottom:567.101333pt;}
.y1a5{bottom:567.736000pt;}
.y177{bottom:567.988000pt;}
.y4e{bottom:568.740000pt;}
.yfa{bottom:570.074667pt;}
.ycc{bottom:570.168000pt;}
.y63{bottom:572.228000pt;}
.y1cb{bottom:575.382667pt;}
.y79{bottom:577.868000pt;}
.y116{bottom:577.892000pt;}
.y14a{bottom:577.950667pt;}
.y218{bottom:578.200000pt;}
.y9e{bottom:578.360000pt;}
.y26d{bottom:579.849333pt;}
.y25f{bottom:581.192000pt;}
.yb6{bottom:581.313333pt;}
.y12e{bottom:583.521333pt;}
.ye5{bottom:585.018667pt;}
.y1bd{bottom:585.337333pt;}
.y253{bottom:590.186667pt;}
.y3{bottom:591.878667pt;}
.y176{bottom:591.898667pt;}
.y201{bottom:592.004000pt;}
.yf9{bottom:593.985333pt;}
.y18e{bottom:595.354667pt;}
.y22a{bottom:595.360000pt;}
.y16{bottom:595.993333pt;}
.y4d{bottom:597.632000pt;}
.y15c{bottom:598.966667pt;}
.y1a4{bottom:599.286667pt;}
.y78{bottom:606.765333pt;}
.y115{bottom:606.784000pt;}
.y149{bottom:606.842667pt;}
.y217{bottom:607.092000pt;}
.y9d{bottom:607.252000pt;}
.y62{bottom:607.985333pt;}
.y26c{bottom:608.740000pt;}
.ye4{bottom:608.929333pt;}
.y89{bottom:609.529333pt;}
.y25e{bottom:610.084000pt;}
.yb5{bottom:610.205333pt;}
.y1ca{bottom:614.566667pt;}
.y252{bottom:615.358667pt;}
.y175{bottom:615.808000pt;}
.ycb{bottom:621.360000pt;}
.yf8{bottom:622.877333pt;}
.y229{bottom:624.252000pt;}
.y15{bottom:624.885333pt;}
.y4c{bottom:626.524000pt;}
.y1a3{bottom:628.178667pt;}
.y148{bottom:630.752000pt;}
.y12d{bottom:631.476000pt;}
.y251{bottom:631.494667pt;}
.y23a{bottom:631.776000pt;}
.ye3{bottom:632.840000pt;}
.y25d{bottom:633.994667pt;}
.y24f{bottom:634.058667pt;}
.y77{bottom:635.657333pt;}
.y114{bottom:635.676000pt;}
.y216{bottom:635.982667pt;}
.y61{bottom:636.877333pt;}
.y26b{bottom:637.632000pt;}
.y88{bottom:638.420000pt;}
.yb4{bottom:639.097333pt;}
.y250{bottom:641.396000pt;}
.y18d{bottom:643.094667pt;}
.y174{bottom:644.700000pt;}
.yf7{bottom:646.786667pt;}
.y9c{bottom:647.177333pt;}
.yca{bottom:650.252000pt;}
.y200{bottom:650.910667pt;}
.y15b{bottom:651.768000pt;}
.y228{bottom:653.142667pt;}
.y1bc{bottom:653.478667pt;}
.y147{bottom:654.662667pt;}
.y14{bottom:655.090667pt;}
.y4b{bottom:655.414667pt;}
.ye2{bottom:656.749333pt;}
.y1d8{bottom:657.028000pt;}
.y1a2{bottom:657.069333pt;}
.y33{bottom:660.376000pt;}
.y25c{bottom:662.886667pt;}
.y76{bottom:664.549333pt;}
.y113{bottom:664.566667pt;}
.y215{bottom:664.874667pt;}
.y60{bottom:665.769333pt;}
.y26a{bottom:666.524000pt;}
.y173{bottom:668.610667pt;}
.y24e{bottom:668.890667pt;}
.y18c{bottom:671.986667pt;}
.y2{bottom:675.565333pt;}
.yf6{bottom:675.678667pt;}
.y146{bottom:678.573333pt;}
.yb3{bottom:678.696000pt;}
.yc9{bottom:679.142667pt;}
.y1ff{bottom:679.802667pt;}
.y24c{bottom:679.825333pt;}
.ye1{bottom:680.660000pt;}
.y1bb{bottom:682.370667pt;}
.y13{bottom:683.982667pt;}
.y4a{bottom:684.306667pt;}
.y1a1{bottom:685.961333pt;}
.y25b{bottom:686.796000pt;}
.y32{bottom:689.268000pt;}
.y24d{bottom:690.617333pt;}
.y87{bottom:691.273333pt;}
.y265{bottom:691.777333pt;}
.y227{bottom:692.326667pt;}
.y75{bottom:693.440000pt;}
.y112{bottom:693.458667pt;}
.y12c{bottom:694.336000pt;}
.y5f{bottom:694.661333pt;}
.y172{bottom:697.502667pt;}
.yf5{bottom:699.589333pt;}
.y9b{bottom:700.616000pt;}
.y18b{bottom:700.878667pt;}
.y269{bottom:702.057333pt;}
.y145{bottom:702.484000pt;}
.y15a{bottom:704.570667pt;}
.y214{bottom:706.488000pt;}
.yc8{bottom:708.034667pt;}
.y1fe{bottom:708.693333pt;}
.ye0{bottom:709.552000pt;}
.y24b{bottom:711.188000pt;}
.y1ba{bottom:711.262667pt;}
.y12{bottom:712.874667pt;}
.y49{bottom:713.198667pt;}
.y25a{bottom:715.688000pt;}
.y31{bottom:718.160000pt;}
.y171{bottom:721.412000pt;}
.y249{bottom:722.122667pt;}
.y74{bottom:722.332000pt;}
.y111{bottom:722.350667pt;}
.y12b{bottom:723.226667pt;}
.y1{bottom:725.378667pt;}
.yf4{bottom:728.481333pt;}
.y9a{bottom:729.872000pt;}
.y5e{bottom:730.418667pt;}
.y1a0{bottom:730.550667pt;}
.y268{bottom:730.949333pt;}
.yb2{bottom:731.145333pt;}
.y144{bottom:731.374667pt;}
.ydf{bottom:733.462667pt;}
.y24a{bottom:734.182667pt;}
.yc7{bottom:736.926667pt;}
.y1fd{bottom:737.585333pt;}
.y259{bottom:739.598667pt;}
.y11{bottom:741.766667pt;}
.y48{bottom:742.090667pt;}
.y1b9{bottom:742.904000pt;}
.y226{bottom:743.518667pt;}
.y18a{bottom:744.192000pt;}
.y264{bottom:744.580000pt;}
.y30{bottom:747.050667pt;}
.y170{bottom:750.304000pt;}
.y73{bottom:751.224000pt;}
.y110{bottom:751.242667pt;}
.y12a{bottom:752.118667pt;}
.yf3{bottom:752.390667pt;}
.y143{bottom:755.285333pt;}
.yde{bottom:757.372000pt;}
.y248{bottom:758.581333pt;}
.y99{bottom:758.764000pt;}
.y5d{bottom:759.309333pt;}
.y267{bottom:759.840000pt;}
.yb1{bottom:760.241333pt;}
.y213{bottom:765.044000pt;}
.yc6{bottom:765.818667pt;}
.y258{bottom:768.490667pt;}
.y10{bottom:770.657333pt;}
.y1b8{bottom:771.794667pt;}
.y225{bottom:772.410667pt;}
.y47{bottom:773.998667pt;}
.y16f{bottom:774.214667pt;}
.y1fc{bottom:778.748000pt;}
.y142{bottom:779.196000pt;}
.y72{bottom:780.116000pt;}
.y10f{bottom:780.133333pt;}
.y129{bottom:781.010667pt;}
.ydd{bottom:781.282667pt;}
.y2f{bottom:785.326667pt;}
.y247{bottom:785.829333pt;}
.y98{bottom:787.656000pt;}
.yb0{bottom:789.132000pt;}
.y257{bottom:792.400000pt;}
.y244{bottom:793.564000pt;}
.y212{bottom:793.936000pt;}
.yc5{bottom:794.709333pt;}
.y5c{bottom:795.066667pt;}
.y263{bottom:797.381333pt;}
.y19f{bottom:798.132000pt;}
.y1b7{bottom:800.686667pt;}
.yf{bottom:800.864000pt;}
.y224{bottom:801.301333pt;}
.y46{bottom:802.890667pt;}
.y141{bottom:803.106667pt;}
.y242{bottom:804.500000pt;}
.yf2{bottom:805.193333pt;}
.y71{bottom:809.006667pt;}
.y10e{bottom:809.025333pt;}
.ydc{bottom:810.174667pt;}
.y16e{bottom:811.090667pt;}
.y2e{bottom:814.218667pt;}
.y243{bottom:815.290667pt;}
.y97{bottom:816.548000pt;}
.yaf{bottom:818.024000pt;}
.y189{bottom:820.569333pt;}
.y246{bottom:820.810667pt;}
.y256{bottom:821.292000pt;}
.y211{bottom:822.828000pt;}
.y128{bottom:823.476000pt;}
.yc4{bottom:823.601333pt;}
.y5b{bottom:823.958667pt;}
.y245{bottom:823.998667pt;}
.y19e{bottom:827.022667pt;}
.y1b6{bottom:829.578667pt;}
.ye{bottom:829.756000pt;}
.y223{bottom:830.193333pt;}
.y45{bottom:831.782667pt;}
.ydb{bottom:834.085333pt;}
.y1fb{bottom:835.938667pt;}
.y70{bottom:837.898667pt;}
.y10d{bottom:837.917333pt;}
.y241{bottom:838.661333pt;}
.y140{bottom:839.982667pt;}
.y266{bottom:841.866667pt;}
.y2d{bottom:843.109333pt;}
.y240{bottom:844.013333pt;}
.y188{bottom:844.478667pt;}
.y96{bottom:845.804000pt;}
.yae{bottom:846.916000pt;}
.y210{bottom:851.720000pt;}
.yc3{bottom:852.493333pt;}
.y5a{bottom:852.850667pt;}
.y19d{bottom:855.914667pt;}
.y16d{bottom:856.085333pt;}
.y23c{bottom:856.176000pt;}
.yda{bottom:857.994667pt;}
.y255{bottom:858.168000pt;}
.y1b5{bottom:858.470667pt;}
.yd{bottom:858.646667pt;}
.y44{bottom:860.674667pt;}
.y23e{bottom:863.513333pt;}
.y23f{bottom:863.558667pt;}
.y1fa{bottom:864.830667pt;}
.y6f{bottom:866.790667pt;}
.y10c{bottom:866.809333pt;}
.y23d{bottom:867.778667pt;}
.y2c{bottom:872.001333pt;}
.y187{bottom:873.370667pt;}
.y95{bottom:874.694667pt;}
.yad{bottom:876.012000pt;}
.y20f{bottom:880.610667pt;}
.yc2{bottom:881.385333pt;}
.y59{bottom:881.742667pt;}
.yd9{bottom:881.905333pt;}
.y19c{bottom:884.806667pt;}
.y13f{bottom:884.977333pt;}
.yc{bottom:887.538667pt;}
.y43{bottom:889.565333pt;}
.y1b4{bottom:890.110667pt;}
.y1f9{bottom:893.722667pt;}
.y159{bottom:894.872000pt;}
.y6e{bottom:895.688000pt;}
.y10b{bottom:895.700000pt;}
.y127{bottom:897.281333pt;}
.y2b{bottom:900.893333pt;}
.y254{bottom:903.162667pt;}
.yc1{bottom:910.276000pt;}
.y58{bottom:910.633333pt;}
.y19b{bottom:913.698667pt;}
.y94{bottom:914.620000pt;}
.yac{bottom:915.610667pt;}
.yb{bottom:916.430667pt;}
.y42{bottom:918.457333pt;}
.yd8{bottom:918.781333pt;}
.y1b3{bottom:919.002667pt;}
.y23b{bottom:919.102667pt;}
.y126{bottom:921.190667pt;}
.y1f8{bottom:922.613333pt;}
.y6d{bottom:924.580000pt;}
.y10a{bottom:924.592000pt;}
.y186{bottom:934.157333pt;}
.y2a{bottom:939.168000pt;}
.y125{bottom:958.068000pt;}
.ya{bottom:963.776000pt;}
.y29{bottom:968.060000pt;}
.h14{height:3.570620pt;}
.hb{height:14.121412pt;}
.h11{height:31.935623pt;}
.hd{height:36.290431pt;}
.h7{height:36.556100pt;}
.h6{height:36.874903pt;}
.h8{height:38.096982pt;}
.h9{height:43.548809pt;}
.h5{height:43.867614pt;}
.h4{height:44.250180pt;}
.ha{height:45.716685pt;}
.h3{height:52.640990pt;}
.hc{height:63.463475pt;}
.h2{height:63.719934pt;}
.hf{height:64.223623pt;}
.h12{height:64.228956pt;}
.h10{height:72.143623pt;}
.h13{height:76.308956pt;}
.h1{height:76.478800pt;}
.he{height:91.745319pt;}
.h17{height:108.020079pt;}
.h16{height:137.293286pt;}
.h15{height:168.231953pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:72.000000pt;}
.xc{left:91.261333pt;}
.xb{left:95.412000pt;}
.x10{left:97.637333pt;}
.x1{left:108.864000pt;}
.xd{left:111.020000pt;}
.x12{left:115.261333pt;}
.xe{left:119.412000pt;}
.x15{left:121.637333pt;}
.x26{left:124.941333pt;}
.x18{left:125.853333pt;}
.x8{left:127.242667pt;}
.x51{left:130.194667pt;}
.x13{left:135.020000pt;}
.x4e{left:137.441333pt;}
.x29{left:139.493333pt;}
.x4f{left:142.360000pt;}
.x24{left:148.941333pt;}
.x2f{left:154.274667pt;}
.x28{left:155.472000pt;}
.x3b{left:156.649333pt;}
.x33{left:158.390667pt;}
.x1d{left:168.668000pt;}
.x20{left:169.710667pt;}
.x2c{left:190.020000pt;}
.x17{left:195.330667pt;}
.x32{left:197.681333pt;}
.x7{left:200.838667pt;}
.x4c{left:204.156000pt;}
.x36{left:219.528000pt;}
.x23{left:237.413333pt;}
.x1f{left:244.818667pt;}
.x19{left:247.620000pt;}
.x6{left:249.758667pt;}
.x30{left:263.716000pt;}
.x2a{left:268.818667pt;}
.x4{left:277.437333pt;}
.x2d{left:282.614667pt;}
.x14{left:285.081333pt;}
.x4a{left:286.748000pt;}
.x39{left:292.062667pt;}
.x47{left:302.170667pt;}
.x44{left:304.506667pt;}
.x5{left:305.432000pt;}
.x34{left:306.614667pt;}
.x50{left:309.481333pt;}
.x3e{left:312.564000pt;}
.x3c{left:314.285333pt;}
.x37{left:316.062667pt;}
.x27{left:326.901333pt;}
.x4d{left:333.481333pt;}
.x3d{left:338.285333pt;}
.x3{left:339.294667pt;}
.x25{left:350.901333pt;}
.x9{left:353.328000pt;}
.x2{left:364.060000pt;}
.x3f{left:366.028000pt;}
.x45{left:367.542667pt;}
.x48{left:369.096000pt;}
.x42{left:372.960000pt;}
.x40{left:375.038667pt;}
.x49{left:377.961333pt;}
.x43{left:381.573333pt;}
.x46{left:383.960000pt;}
.x4b{left:386.968000pt;}
.x16{left:388.029333pt;}
.x11{left:392.014667pt;}
.x31{left:393.042667pt;}
.x1a{left:395.844000pt;}
.x21{left:410.022667pt;}
.x1c{left:412.029333pt;}
.xf{left:416.014667pt;}
.x41{left:418.984000pt;}
.x3a{left:421.389333pt;}
.x22{left:422.668000pt;}
.x2e{left:430.837333pt;}
.x38{left:445.389333pt;}
.x1e{left:449.736000pt;}
.x35{left:454.837333pt;}
.x2b{left:473.736000pt;}
.x1b{left:544.068000pt;}
}




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