
    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_7a9d9c1981f930726d361dd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_fb89e457370371c998b44de0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_53240a98f73519146f4d7a9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_aecf4978cc1414b6aafb5099.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9ccc42273c3f54482ce046a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_1f21666762f06ab92a8f78c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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_dd8f1bf2dfb3335e7df215fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.364258;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_640022ba1254a3b171dbc3d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_4ca16f9aecfd83d3bff08694.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.089400px;}
.v1{vertical-align:17.798640px;}
.ls40{letter-spacing:-1.899792px;}
.ls3f{letter-spacing:-0.396792px;}
.ls43{letter-spacing:-0.360720px;}
.ls20{letter-spacing:-0.300600px;}
.ls44{letter-spacing:-0.252504px;}
.ls1d{letter-spacing:-0.246492px;}
.ls57{letter-spacing:-0.222444px;}
.ls56{letter-spacing:-0.192384px;}
.ls5f{letter-spacing:-0.180360px;}
.ls17{letter-spacing:-0.174347px;}
.ls60{letter-spacing:-0.162324px;}
.ls42{letter-spacing:-0.156312px;}
.ls27{letter-spacing:-0.144287px;}
.ls23{letter-spacing:-0.138276px;}
.ls66{letter-spacing:-0.132264px;}
.ls1f{letter-spacing:-0.126252px;}
.ls4e{letter-spacing:-0.102204px;}
.ls2b{letter-spacing:-0.096192px;}
.ls41{letter-spacing:-0.090180px;}
.ls2a{letter-spacing:-0.084168px;}
.ls14{letter-spacing:-0.078156px;}
.ls15{letter-spacing:-0.072143px;}
.ls3c{letter-spacing:-0.070200px;}
.ls25{letter-spacing:-0.066132px;}
.ls1e{letter-spacing:-0.060120px;}
.ls39{letter-spacing:-0.059400px;}
.ls28{letter-spacing:-0.054108px;}
.lse{letter-spacing:-0.048096px;}
.ls37{letter-spacing:-0.043200px;}
.ls24{letter-spacing:-0.042084px;}
.ls3a{letter-spacing:-0.037800px;}
.ls1c{letter-spacing:-0.036072px;}
.ls11{letter-spacing:-0.036000px;}
.ls34{letter-spacing:-0.032400px;}
.ls16{letter-spacing:-0.030060px;}
.ls35{letter-spacing:-0.027000px;}
.ls18{letter-spacing:-0.024048px;}
.lsf{letter-spacing:-0.021600px;}
.ls19{letter-spacing:-0.018036px;}
.ls38{letter-spacing:-0.016200px;}
.ls1b{letter-spacing:-0.012024px;}
.ls36{letter-spacing:-0.010800px;}
.ls1a{letter-spacing:-0.006012px;}
.ls12{letter-spacing:-0.005400px;}
.lsd{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.005400px;}
.ls8{letter-spacing:0.006012px;}
.ls10{letter-spacing:0.007200px;}
.ls68{letter-spacing:0.009576px;}
.ls30{letter-spacing:0.010800px;}
.ls3{letter-spacing:0.012024px;}
.ls4c{letter-spacing:0.014364px;}
.ls2f{letter-spacing:0.016200px;}
.ls4{letter-spacing:0.018036px;}
.ls2e{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.024048px;}
.ls5a{letter-spacing:0.027000px;}
.ls49{letter-spacing:0.028728px;}
.ls7{letter-spacing:0.030060px;}
.ls31{letter-spacing:0.032400px;}
.ls47{letter-spacing:0.033516px;}
.ls5{letter-spacing:0.036072px;}
.ls2c{letter-spacing:0.037800px;}
.ls6{letter-spacing:0.042084px;}
.ls32{letter-spacing:0.043200px;}
.ls48{letter-spacing:0.047880px;}
.lsc{letter-spacing:0.048096px;}
.ls64{letter-spacing:0.048600px;}
.ls4b{letter-spacing:0.052668px;}
.ls62{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.054108px;}
.ls5b{letter-spacing:0.059400px;}
.ls22{letter-spacing:0.060120px;}
.ls5d{letter-spacing:0.064799px;}
.ls1{letter-spacing:0.066132px;}
.ls61{letter-spacing:0.070200px;}
.ls4a{letter-spacing:0.071820px;}
.ls4d{letter-spacing:0.072143px;}
.ls59{letter-spacing:0.075600px;}
.ls13{letter-spacing:0.078156px;}
.ls5e{letter-spacing:0.081000px;}
.lsb{letter-spacing:0.084168px;}
.ls46{letter-spacing:0.084240px;}
.ls63{letter-spacing:0.091800px;}
.ls5c{letter-spacing:0.097200px;}
.ls33{letter-spacing:0.114228px;}
.lsa{letter-spacing:0.120240px;}
.ls45{letter-spacing:0.126252px;}
.ls65{letter-spacing:1.340676px;}
.ls54{letter-spacing:2.056104px;}
.ls3e{letter-spacing:2.416824px;}
.ls29{letter-spacing:3.498984px;}
.ls51{letter-spacing:3.859698px;}
.ls4f{letter-spacing:4.935852px;}
.ls50{letter-spacing:5.657292px;}
.ls52{letter-spacing:6.018012px;}
.ls53{letter-spacing:6.378732px;}
.ls55{letter-spacing:8.176320px;}
.ls2{letter-spacing:28.977840px;}
.ls3b{letter-spacing:30.634200px;}
.ls67{letter-spacing:32.585040px;}
.ls21{letter-spacing:40.881600px;}
.ls0{letter-spacing:42.324480px;}
.ls58{letter-spacing:55.310400px;}
.ls26{letter-spacing:849.495600px;}
.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;}
}
.ws31{word-spacing:-60.120000px;}
.ws0{word-spacing:-15.348636px;}
.ws16d{word-spacing:-15.198337px;}
.ws1{word-spacing:-15.192324px;}
.ws3{word-spacing:-14.573088px;}
.ws2{word-spacing:-14.555052px;}
.ws177{word-spacing:-14.452848px;}
.ws115{word-spacing:-14.308560px;}
.ws16c{word-spacing:-9.370080px;}
.ws99{word-spacing:-8.306640px;}
.ws12d{word-spacing:-3.739464px;}
.ws1a{word-spacing:-3.709404px;}
.wseb{word-spacing:-3.703392px;}
.ws14b{word-spacing:-3.691368px;}
.wsc2{word-spacing:-3.372732px;}
.ws157{word-spacing:-3.354696px;}
.ws13a{word-spacing:-3.348684px;}
.ws30{word-spacing:-3.342672px;}
.ws156{word-spacing:-3.324636px;}
.wsf1{word-spacing:-3.312612px;}
.wsc4{word-spacing:-2.993970px;}
.ws58{word-spacing:-2.987964px;}
.ws8b{word-spacing:-2.975940px;}
.ws8a{word-spacing:-2.951892px;}
.wsc3{word-spacing:-2.939868px;}
.wsd5{word-spacing:-2.927844px;}
.ws8c{word-spacing:-2.825640px;}
.ws127{word-spacing:-2.651400px;}
.ws24{word-spacing:-2.651292px;}
.ws94{word-spacing:-2.645280px;}
.ws111{word-spacing:-2.639268px;}
.wsdb{word-spacing:-2.633256px;}
.ws116{word-spacing:-2.627244px;}
.ws96{word-spacing:-2.615214px;}
.wsdc{word-spacing:-2.579148px;}
.wsae{word-spacing:-2.272536px;}
.ws82{word-spacing:-2.266524px;}
.ws122{word-spacing:-2.262600px;}
.ws83{word-spacing:-2.248488px;}
.ws123{word-spacing:-2.246400px;}
.ws145{word-spacing:-1.954800px;}
.wscd{word-spacing:-1.917828px;}
.ws148{word-spacing:-1.916995px;}
.wse2{word-spacing:-1.911816px;}
.ws158{word-spacing:-1.905804px;}
.ws5a{word-spacing:-1.899792px;}
.ws37{word-spacing:-1.893780px;}
.ws149{word-spacing:-1.884600px;}
.wsf2{word-spacing:-1.881756px;}
.ws7a{word-spacing:-1.875744px;}
.ws14d{word-spacing:-1.581156px;}
.wsad{word-spacing:-1.563120px;}
.ws168{word-spacing:-1.557108px;}
.ws43{word-spacing:-1.551096px;}
.ws84{word-spacing:-1.545084px;}
.ws10e{word-spacing:-1.539072px;}
.wsa1{word-spacing:-1.533054px;}
.wsf9{word-spacing:-1.527048px;}
.ws88{word-spacing:-1.515024px;}
.wsa2{word-spacing:-1.490976px;}
.ws25{word-spacing:-1.478952px;}
.ws14c{word-spacing:-1.472940px;}
.ws89{word-spacing:-1.448892px;}
.ws26{word-spacing:-1.412820px;}
.ws172{word-spacing:-1.220400px;}
.wsfa{word-spacing:-1.214424px;}
.ws5e{word-spacing:-1.202400px;}
.ws40{word-spacing:-1.196388px;}
.wsb6{word-spacing:-1.190376px;}
.ws113{word-spacing:-1.184364px;}
.ws171{word-spacing:-1.182600px;}
.ws3f{word-spacing:-1.178352px;}
.ws4e{word-spacing:-1.172340px;}
.ws70{word-spacing:-1.106208px;}
.wsf{word-spacing:-0.859716px;}
.ws18{word-spacing:-0.847692px;}
.wsd4{word-spacing:-0.835668px;}
.ws167{word-spacing:-0.823644px;}
.ws17{word-spacing:-0.817632px;}
.wsb3{word-spacing:-0.811620px;}
.ws16f{word-spacing:-0.810000px;}
.ws95{word-spacing:-0.805608px;}
.ws60{word-spacing:-0.799596px;}
.ws61{word-spacing:-0.787572px;}
.ws166{word-spacing:-0.781560px;}
.wsb2{word-spacing:-0.775548px;}
.wsc9{word-spacing:-0.757512px;}
.wsca{word-spacing:-0.739476px;}
.ws8f{word-spacing:-0.529056px;}
.ws126{word-spacing:-0.523800px;}
.ws12c{word-spacing:-0.492984px;}
.wsab{word-spacing:-0.486972px;}
.ws36{word-spacing:-0.480960px;}
.wsa8{word-spacing:-0.474948px;}
.ws38{word-spacing:-0.468936px;}
.ws56{word-spacing:-0.462924px;}
.ws6d{word-spacing:-0.456912px;}
.ws6e{word-spacing:-0.450900px;}
.ws81{word-spacing:-0.444888px;}
.ws68{word-spacing:-0.438876px;}
.ws12b{word-spacing:-0.432864px;}
.ws69{word-spacing:-0.426852px;}
.ws80{word-spacing:-0.420840px;}
.wsaa{word-spacing:-0.414828px;}
.wsf5{word-spacing:-0.168336px;}
.ws87{word-spacing:-0.162324px;}
.ws160{word-spacing:-0.156312px;}
.ws2d{word-spacing:-0.150300px;}
.ws144{word-spacing:-0.140400px;}
.ws176{word-spacing:-0.132264px;}
.ws10c{word-spacing:-0.126252px;}
.ws175{word-spacing:-0.124200px;}
.ws8e{word-spacing:-0.120240px;}
.ws14a{word-spacing:-0.118800px;}
.ws59{word-spacing:-0.114228px;}
.ws32{word-spacing:-0.108216px;}
.ws47{word-spacing:-0.102204px;}
.ws46{word-spacing:-0.096192px;}
.ws5c{word-spacing:-0.090180px;}
.ws174{word-spacing:-0.086400px;}
.ws15{word-spacing:-0.084168px;}
.ws129{word-spacing:-0.081000px;}
.ws57{word-spacing:-0.078156px;}
.ws12a{word-spacing:-0.075600px;}
.wsa{word-spacing:-0.072143px;}
.ws1b{word-spacing:-0.066132px;}
.ws3a{word-spacing:-0.060120px;}
.ws5{word-spacing:-0.054108px;}
.wsb4{word-spacing:-0.048096px;}
.wsb5{word-spacing:-0.042084px;}
.ws9{word-spacing:-0.027000px;}
.ws16a{word-spacing:-0.012024px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.072000px;}
.ws16b{word-spacing:0.078156px;}
.wsfd{word-spacing:0.090180px;}
.ws6{word-spacing:0.100800px;}
.ws8{word-spacing:0.115200px;}
.ws114{word-spacing:0.120240px;}
.ws108{word-spacing:0.132264px;}
.ws107{word-spacing:0.174347px;}
.ws4f{word-spacing:0.198396px;}
.wse5{word-spacing:0.210420px;}
.ws12{word-spacing:0.216432px;}
.ws139{word-spacing:0.222444px;}
.ws52{word-spacing:0.228456px;}
.ws155{word-spacing:0.234468px;}
.ws50{word-spacing:0.240480px;}
.ws51{word-spacing:0.252504px;}
.ws10f{word-spacing:0.258516px;}
.wsea{word-spacing:0.264528px;}
.ws41{word-spacing:0.270540px;}
.ws13{word-spacing:0.282564px;}
.wse9{word-spacing:0.294588px;}
.ws15c{word-spacing:0.312624px;}
.ws106{word-spacing:0.565128px;}
.ws48{word-spacing:0.589176px;}
.ws162{word-spacing:0.595188px;}
.ws45{word-spacing:0.607212px;}
.ws3e{word-spacing:0.613224px;}
.wsd6{word-spacing:0.619236px;}
.ws65{word-spacing:0.625248px;}
.wsc1{word-spacing:0.631260px;}
.ws9f{word-spacing:0.637272px;}
.wsa0{word-spacing:0.649296px;}
.ws3d{word-spacing:0.661320px;}
.ws15b{word-spacing:0.691380px;}
.ws1e{word-spacing:0.913824px;}
.ws147{word-spacing:0.950400px;}
.ws92{word-spacing:0.967932px;}
.ws20{word-spacing:0.973944px;}
.ws64{word-spacing:0.979950px;}
.wscb{word-spacing:0.985968px;}
.ws146{word-spacing:0.993600px;}
.ws1f{word-spacing:0.997992px;}
.ws15a{word-spacing:1.004004px;}
.wscc{word-spacing:1.010016px;}
.ws150{word-spacing:1.028052px;}
.ws159{word-spacing:1.112220px;}
.ws6a{word-spacing:1.328652px;}
.ws9b{word-spacing:1.340676px;}
.ws14f{word-spacing:1.346688px;}
.ws11e{word-spacing:1.352700px;}
.wsa9{word-spacing:1.364724px;}
.wsd8{word-spacing:1.370736px;}
.ws4a{word-spacing:1.388772px;}
.ws49{word-spacing:1.406808px;}
.ws11f{word-spacing:1.657800px;}
.ws16e{word-spacing:1.668600px;}
.ws15d{word-spacing:1.677348px;}
.ws13d{word-spacing:1.679400px;}
.ws28{word-spacing:1.683360px;}
.ws44{word-spacing:1.689372px;}
.ws27{word-spacing:1.695384px;}
.wsc7{word-spacing:1.701396px;}
.ws154{word-spacing:1.707408px;}
.ws153{word-spacing:1.713420px;}
.ws100{word-spacing:1.719432px;}
.ws101{word-spacing:1.725444px;}
.wsa6{word-spacing:1.731456px;}
.wsa5{word-spacing:1.749492px;}
.ws173{word-spacing:2.019600px;}
.ws14e{word-spacing:2.026044px;}
.ws109{word-spacing:2.032050px;}
.wsc6{word-spacing:2.044080px;}
.ws21{word-spacing:2.050092px;}
.ws3c{word-spacing:2.062116px;}
.ws130{word-spacing:2.074140px;}
.ws7b{word-spacing:2.080152px;}
.ws73{word-spacing:2.086164px;}
.ws128{word-spacing:2.376000px;}
.ws29{word-spacing:2.386764px;}
.wsb1{word-spacing:2.398788px;}
.ws2f{word-spacing:2.404800px;}
.wsc0{word-spacing:2.410806px;}
.ws121{word-spacing:2.413795px;}
.wsb{word-spacing:2.416824px;}
.wsd3{word-spacing:2.422836px;}
.wse4{word-spacing:2.428848px;}
.ws120{word-spacing:2.430000px;}
.ws85{word-spacing:2.434860px;}
.ws97{word-spacing:2.440872px;}
.wsc{word-spacing:2.446884px;}
.wsbf{word-spacing:2.452896px;}
.ws22{word-spacing:2.663316px;}
.ws135{word-spacing:2.741472px;}
.ws13b{word-spacing:2.747484px;}
.ws7c{word-spacing:2.753496px;}
.ws86{word-spacing:2.759508px;}
.wsc5{word-spacing:2.765520px;}
.ws16{word-spacing:2.771532px;}
.ws72{word-spacing:2.777544px;}
.ws35{word-spacing:2.783556px;}
.ws118{word-spacing:2.795580px;}
.ws71{word-spacing:2.801592px;}
.ws12f{word-spacing:2.819628px;}
.ws1d{word-spacing:3.018024px;}
.ws132{word-spacing:3.090168px;}
.wse3{word-spacing:3.114216px;}
.ws1c{word-spacing:3.126240px;}
.ws170{word-spacing:3.126600px;}
.wsac{word-spacing:3.132252px;}
.wsbc{word-spacing:3.138264px;}
.ws7f{word-spacing:3.144276px;}
.wsa7{word-spacing:3.150288px;}
.wse7{word-spacing:3.156300px;}
.ws117{word-spacing:3.168324px;}
.wsf4{word-spacing:3.180348px;}
.wsa3{word-spacing:3.192372px;}
.wse6{word-spacing:3.198384px;}
.wsa4{word-spacing:3.204396px;}
.wse{word-spacing:3.480948px;}
.ws11{word-spacing:3.486960px;}
.ws98{word-spacing:3.492972px;}
.wsd1{word-spacing:3.498984px;}
.ws169{word-spacing:3.504996px;}
.ws42{word-spacing:3.511008px;}
.ws15f{word-spacing:3.517020px;}
.ws10d{word-spacing:3.523032px;}
.ws15e{word-spacing:3.541068px;}
.ws137{word-spacing:3.577140px;}
.ws136{word-spacing:3.661308px;}
.ws10{word-spacing:3.673332px;}
.ws12e{word-spacing:3.829644px;}
.ws55{word-spacing:3.835656px;}
.ws10a{word-spacing:3.841668px;}
.ws2c{word-spacing:3.847680px;}
.wsbd{word-spacing:3.853692px;}
.ws2b{word-spacing:3.865716px;}
.wsd0{word-spacing:3.871728px;}
.wsd2{word-spacing:3.877740px;}
.ws54{word-spacing:3.883752px;}
.ws5d{word-spacing:3.889758px;}
.wse0{word-spacing:3.901788px;}
.ws53{word-spacing:3.907800px;}
.ws34{word-spacing:3.997980px;}
.wsc8{word-spacing:4.196376px;}
.ws5b{word-spacing:4.214412px;}
.ws131{word-spacing:4.220424px;}
.wse1{word-spacing:4.256496px;}
.ws74{word-spacing:4.527036px;}
.ws75{word-spacing:4.533048px;}
.ws125{word-spacing:4.541400px;}
.ws13c{word-spacing:4.546800px;}
.ws91{word-spacing:4.557096px;}
.ws124{word-spacing:4.557600px;}
.ws76{word-spacing:4.563108px;}
.wsbb{word-spacing:4.569120px;}
.ws134{word-spacing:4.575132px;}
.ws161{word-spacing:4.581144px;}
.ws8d{word-spacing:4.587156px;}
.ws19{word-spacing:4.593168px;}
.wsfc{word-spacing:4.599180px;}
.wsd9{word-spacing:4.617210px;}
.ws90{word-spacing:4.635252px;}
.ws39{word-spacing:4.893768px;}
.ws103{word-spacing:4.923828px;}
.ws151{word-spacing:4.929840px;}
.wsdf{word-spacing:4.941864px;}
.ws33{word-spacing:4.947876px;}
.ws102{word-spacing:4.977936px;}
.wsb7{word-spacing:4.989960px;}
.ws67{word-spacing:5.284548px;}
.ws142{word-spacing:5.286600px;}
.wsce{word-spacing:5.302584px;}
.wsec{word-spacing:5.314608px;}
.ws143{word-spacing:5.329800px;}
.wscf{word-spacing:5.356692px;}
.ws140{word-spacing:5.605200px;}
.ws6f{word-spacing:5.639256px;}
.wsef{word-spacing:5.651280px;}
.ws4b{word-spacing:5.657292px;}
.wsf0{word-spacing:5.675328px;}
.ws141{word-spacing:5.680800px;}
.ws63{word-spacing:5.711400px;}
.ws62{word-spacing:5.801580px;}
.ws165{word-spacing:5.993964px;}
.ws7e{word-spacing:5.999976px;}
.ws11d{word-spacing:6.030036px;}
.ws7d{word-spacing:6.066108px;}
.ws78{word-spacing:6.312600px;}
.ws14{word-spacing:6.348672px;}
.ws152{word-spacing:6.360696px;}
.ws79{word-spacing:6.366708px;}
.wsfb{word-spacing:6.372720px;}
.ws77{word-spacing:6.384744px;}
.ws112{word-spacing:6.408792px;}
.ws13e{word-spacing:6.706800px;}
.ws2e{word-spacing:6.715404px;}
.ws13f{word-spacing:6.723000px;}
.wsd{word-spacing:6.727428px;}
.wsed{word-spacing:6.733440px;}
.ws110{word-spacing:6.739452px;}
.wsba{word-spacing:7.028028px;}
.wsf3{word-spacing:7.058088px;}
.wsda{word-spacing:7.094160px;}
.wsb8{word-spacing:7.100172px;}
.wsf6{word-spacing:7.112196px;}
.wsf7{word-spacing:7.118208px;}
.wsb9{word-spacing:7.190352px;}
.ws138{word-spacing:7.460892px;}
.ws93{word-spacing:7.713396px;}
.ws9e{word-spacing:7.809588px;}
.ws6b{word-spacing:7.851672px;}
.ws6c{word-spacing:7.869708px;}
.wsf8{word-spacing:8.206380px;}
.ws23{word-spacing:8.873712px;}
.wsff{word-spacing:8.885736px;}
.wsde{word-spacing:8.897760px;}
.ws3b{word-spacing:8.909784px;}
.ws10b{word-spacing:9.258480px;}
.ws9d{word-spacing:9.288540px;}
.ws9c{word-spacing:9.294552px;}
.ws2a{word-spacing:9.559080px;}
.ws4d{word-spacing:9.607176px;}
.wsbe{word-spacing:9.631224px;}
.ws4c{word-spacing:9.643248px;}
.ws105{word-spacing:9.967896px;}
.wsd7{word-spacing:10.322604px;}
.ws163{word-spacing:10.683324px;}
.ws164{word-spacing:10.719396px;}
.ws66{word-spacing:10.737432px;}
.ws11b{word-spacing:11.050056px;}
.wsaf{word-spacing:11.080116px;}
.wsee{word-spacing:11.440836px;}
.wsb0{word-spacing:11.446848px;}
.ws119{word-spacing:11.771496px;}
.ws11a{word-spacing:11.789532px;}
.ws133{word-spacing:12.504960px;}
.wsdd{word-spacing:13.587120px;}
.ws11c{word-spacing:13.623192px;}
.wsfe{word-spacing:13.935816px;}
.ws9a{word-spacing:15.030000px;}
.wse8{word-spacing:15.042024px;}
.ws5f{word-spacing:16.088112px;}
.ws104{word-spacing:17.218368px;}
._5{margin-left:-31.644000px;}
._4{margin-left:-30.564000px;}
._d{margin-left:-8.957880px;}
._c{margin-left:-7.334640px;}
._b{margin-left:-6.252480px;}
._a{margin-left:-4.989960px;}
._2{margin-left:-3.547080px;}
._6{margin-left:-2.464920px;}
._0{margin-left:-1.142280px;}
._1{width:1.142280px;}
._7{width:2.765520px;}
._8{width:4.931640px;}
._9{width:5.937120px;}
._3{width:29.916000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs7{font-size:38.880000px;}
.fs0{font-size:47.880000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:2.526000px;}
.y2a{bottom:54.390105px;}
.y2{bottom:71.070300px;}
.y1{bottom:89.430300px;}
.ye3{bottom:104.274450px;}
.y21b{bottom:104.276430px;}
.yc0{bottom:105.043710px;}
.y1bc{bottom:105.120840px;}
.y108{bottom:109.566900px;}
.y29{bottom:112.294620px;}
.y1a1{bottom:112.477950px;}
.y121{bottom:112.560690px;}
.y1e3{bottom:117.758550px;}
.ye2{bottom:119.488320px;}
.y1fe{bottom:120.842220px;}
.ybf{bottom:123.756060px;}
.y52{bottom:123.833190px;}
.y21a{bottom:123.990300px;}
.y107{bottom:128.279250px;}
.y28{bottom:131.006970px;}
.y1a0{bottom:131.190300px;}
.y120{bottom:131.273040px;}
.y219{bottom:134.159520px;}
.ye1{bottom:134.606430px;}
.y1e2{bottom:136.576110px;}
.ybe{bottom:142.468410px;}
.y1bb{bottom:142.545540px;}
.y106{bottom:146.991600px;}
.y183{bottom:147.851130px;}
.y1fd{bottom:148.557540px;}
.y51{bottom:148.587600px;}
.y27{bottom:149.719320px;}
.y165{bottom:150.075480px;}
.y11f{bottom:150.090600px;}
.ye0{bottom:154.320300px;}
.y1e1{bottom:155.288460px;}
.y19f{bottom:158.464800px;}
.ybd{bottom:161.285970px;}
.y1ba{bottom:161.363100px;}
.ydf{bottom:164.423970px;}
.y105{bottom:165.809160px;}
.y182{bottom:166.563480px;}
.y142{bottom:166.578510px;}
.y1fc{bottom:167.269890px;}
.y50{bottom:167.299950px;}
.y26{bottom:168.431670px;}
.y164{bottom:168.787830px;}
.y11e{bottom:168.802950px;}
.y1e0{bottom:174.000810px;}
.y19e{bottom:175.299300px;}
.ybc{bottom:179.998320px;}
.y1b9{bottom:180.075450px;}
.y104{bottom:184.521510px;}
.y141{bottom:185.290860px;}
.y25{bottom:187.249230px;}
.y163{bottom:187.500180px;}
.y218{bottom:187.531050px;}
.y4f{bottom:192.054360px;}
.y19d{bottom:192.214800px;}
.y1df{bottom:192.818370px;}
.y98{bottom:194.086980px;}
.y181{bottom:194.278800px;}
.y1fb{bottom:195.075390px;}
.y11d{bottom:196.518270px;}
.ybb{bottom:198.710670px;}
.y1b8{bottom:198.787800px;}
.y103{bottom:203.233860px;}
.y140{bottom:204.003210px;}
.y24{bottom:205.961580px;}
.y162{bottom:206.212530px;}
.y217{bottom:206.243400px;}
.y19c{bottom:209.049300px;}
.y4e{bottom:210.871920px;}
.y1de{bottom:211.530720px;}
.y97{bottom:212.453640px;}
.y180{bottom:212.991150px;}
.y1fa{bottom:213.787740px;}
.y11c{bottom:215.230620px;}
.y1b7{bottom:217.500150px;}
.y102{bottom:221.946210px;}
.yba{bottom:223.465080px;}
.y23{bottom:224.673930px;}
.y161{bottom:225.030090px;}
.y216{bottom:225.060960px;}
.y19b{bottom:225.964800px;}
.y13f{bottom:228.757620px;}
.y4d{bottom:229.584270px;}
.y1dd{bottom:230.243070px;}
.y96{bottom:230.820300px;}
.y17f{bottom:231.808710px;}
.y1f9{bottom:232.500090px;}
.y11b{bottom:234.048180px;}
.y1b6{bottom:236.317710px;}
.y101{bottom:240.763770px;}
.yb9{bottom:242.177430px;}
.yde{bottom:242.985780px;}
.y22{bottom:243.491490px;}
.y160{bottom:243.742440px;}
.y13e{bottom:247.575180px;}
.y22c{bottom:247.830300px;}
.y4c{bottom:248.296620px;}
.y95{bottom:250.975800px;}
.y19a{bottom:251.790300px;}
.y11a{bottom:252.760530px;}
.y215{bottom:252.776280px;}
.y1b5{bottom:255.030060px;}
.y1f8{bottom:257.254500px;}
.y1dc{bottom:257.958390px;}
.y17e{bottom:259.524030px;}
.yb8{bottom:260.994990px;}
.y21{bottom:262.203840px;}
.y70{bottom:263.461890px;}
.y13d{bottom:266.287530px;}
.y4b{bottom:267.008970px;}
.ydd{bottom:267.740190px;}
.y100{bottom:268.479090px;}
.y199{bottom:268.705800px;}
.y94{bottom:269.160300px;}
.y15f{bottom:271.457760px;}
.y214{bottom:271.488630px;}
.y1b4{bottom:273.742410px;}
.y1f7{bottom:275.966850px;}
.y1db{bottom:276.775950px;}
.y17d{bottom:278.236380px;}
.y22b{bottom:279.510300px;}
.yb7{bottom:279.707340px;}
.y119{bottom:280.475850px;}
.y20{bottom:280.916190px;}
.y6f{bottom:282.715320px;}
.y13c{bottom:284.999880px;}
.y198{bottom:285.540300px;}
.y4a{bottom:285.826530px;}
.ydc{bottom:286.452540px;}
.y93{bottom:287.250300px;}
.y15e{bottom:290.275320px;}
.y1b3{bottom:292.559970px;}
.y1f6{bottom:294.784410px;}
.y1da{bottom:295.488300px;}
.y118{bottom:299.293410px;}
.y213{bottom:299.294130px;}
.y1f{bottom:299.733750px;}
.y6e{bottom:301.532880px;}
.y22a{bottom:302.990790px;}
.yb6{bottom:304.461750px;}
.ydb{bottom:305.164890px;}
.yff{bottom:305.197380px;}
.y17c{bottom:306.041880px;}
.y92{bottom:306.150300px;}
.y15d{bottom:308.987670px;}
.y13b{bottom:309.754290px;}
.y49{bottom:310.580940px;}
.y1b2{bottom:311.272320px;}
.y197{bottom:311.925720px;}
.y1d9{bottom:314.200650px;}
.y117{bottom:318.005760px;}
.y212{bottom:318.006480px;}
.y1e{bottom:318.446100px;}
.y1f5{bottom:319.538820px;}
.y6d{bottom:320.245230px;}
.y229{bottom:321.808350px;}
.yb5{bottom:323.174100px;}
.yda{bottom:323.982450px;}
.yfe{bottom:324.014940px;}
.y91{bottom:324.240300px;}
.y17b{bottom:324.754230px;}
.y13a{bottom:328.571850px;}
.y48{bottom:329.293290px;}
.y196{bottom:330.743280px;}
.y1d8{bottom:333.018210px;}
.y15c{bottom:333.742080px;}
.y116{bottom:336.718110px;}
.y211{bottom:336.718830px;}
.y1d{bottom:337.158450px;}
.y1f4{bottom:338.251170px;}
.y6c{bottom:338.957580px;}
.y1b1{bottom:338.987640px;}
.yb4{bottom:341.991660px;}
.yd9{bottom:342.694800px;}
.yfd{bottom:342.727290px;}
.y90{bottom:343.140300px;}
.y17a{bottom:343.466580px;}
.y139{bottom:347.284200px;}
.y47{bottom:348.005640px;}
.y195{bottom:349.455630px;}
.y228{bottom:349.523670px;}
.y15b{bottom:352.454430px;}
.y1c{bottom:355.976010px;}
.y1f3{bottom:356.963520px;}
.y6b{bottom:357.775140px;}
.y1b0{bottom:357.805200px;}
.yb3{bottom:360.704010px;}
.y1d7{bottom:360.733530px;}
.y8f{bottom:361.230300px;}
.yd8{bottom:361.407150px;}
.yfc{bottom:361.439640px;}
.y115{bottom:361.472520px;}
.y179{bottom:362.284140px;}
.y210{bottom:364.524330px;}
.y138{bottom:365.996550px;}
.y46{bottom:366.823200px;}
.y194{bottom:368.167980px;}
.y227{bottom:368.236020px;}
.y1b{bottom:374.688360px;}
.y1f2{bottom:375.781080px;}
.y6a{bottom:376.487490px;}
.y1af{bottom:376.517550px;}
.y15a{bottom:377.208840px;}
.yb2{bottom:379.416360px;}
.y1d6{bottom:379.445880px;}
.y8e{bottom:380.103300px;}
.yd7{bottom:380.224710px;}
.yfb{bottom:380.257200px;}
.y114{bottom:380.290080px;}
.y20f{bottom:383.236680px;}
.y45{bottom:385.535550px;}
.y193{bottom:386.985540px;}
.y226{bottom:387.053580px;}
.y178{bottom:389.999460px;}
.y1a{bottom:393.400710px;}
.y137{bottom:393.802050px;}
.y1f1{bottom:394.493430px;}
.y1ae{bottom:395.229900px;}
.y159{bottom:396.026400px;}
.y8d{bottom:398.287800px;}
.yfa{bottom:398.969550px;}
.y113{bottom:399.002430px;}
.y69{bottom:401.241900px;}
.y44{bottom:404.247900px;}
.y192{bottom:405.697890px;}
.yb1{bottom:407.221860px;}
.y1d5{bottom:407.251380px;}
.yd6{bottom:407.940030px;}
.y177{bottom:408.711810px;}
.y20e{bottom:410.952000px;}
.y19{bottom:412.113060px;}
.y1f0{bottom:413.205780px;}
.y158{bottom:414.738750px;}
.y225{bottom:414.768900px;}
.y8c{bottom:416.377800px;}
.yf9{bottom:417.681900px;}
.y68{bottom:419.954250px;}
.y136{bottom:421.517370px;}
.y1ad{bottom:423.035400px;}
.y43{bottom:423.065460px;}
.y112{bottom:423.756840px;}
.y191{bottom:424.410240px;}
.y1d4{bottom:425.963730px;}
.y176{bottom:427.529370px;}
.y20d{bottom:429.769560px;}
.y157{bottom:433.451100px;}
.y224{bottom:433.481250px;}
.y8b{bottom:434.467800px;}
.yf8{bottom:436.499460px;}
.y18{bottom:436.867470px;}
.y1ef{bottom:437.960190px;}
.y67{bottom:438.771810px;}
.y1ac{bottom:441.747750px;}
.y42{bottom:441.777810px;}
.y111{bottom:442.469190px;}
.y190{bottom:443.227800px;}
.yb0{bottom:443.940150px;}
.y1d3{bottom:444.676080px;}
.yd5{bottom:445.700640px;}
.y135{bottom:449.232690px;}
.y156{bottom:452.268660px;}
.y223{bottom:452.298810px;}
.y8a{bottom:452.652300px;}
.yf7{bottom:455.211810px;}
.y175{bottom:455.244690px;}
.y17{bottom:455.685030px;}
.y1ee{bottom:456.777750px;}
.y66{bottom:457.484160px;}
.y20c{bottom:457.484880px;}
.y1ab{bottom:460.460100px;}
.y110{bottom:461.286750px;}
.y18f{bottom:461.940150px;}
.yaf{bottom:462.660300px;}
.y1d2{bottom:463.493640px;}
.yd4{bottom:467.208570px;}
.y41{bottom:469.493130px;}
.y89{bottom:470.742300px;}
.y155{bottom:470.981010px;}
.y222{bottom:471.011160px;}
.yf6{bottom:473.924160px;}
.y174{bottom:473.957040px;}
.y16{bottom:474.397380px;}
.y1ed{bottom:475.490100px;}
.y65{bottom:476.196510px;}
.y20b{bottom:476.197230px;}
.y134{bottom:476.948010px;}
.y10f{bottom:479.999100px;}
.yae{bottom:481.532160px;}
.yd3{bottom:485.920920px;}
.y1aa{bottom:488.265600px;}
.y88{bottom:488.926800px;}
.y154{bottom:489.693360px;}
.y18e{bottom:489.723510px;}
.y1d1{bottom:491.208960px;}
.yf5{bottom:492.636510px;}
.y173{bottom:492.669390px;}
.y15{bottom:493.109730px;}
.y1ec{bottom:494.202450px;}
.y64{bottom:494.908860px;}
.y20a{bottom:494.909580px;}
.y10e{bottom:498.711450px;}
.y221{bottom:498.726480px;}
.yad{bottom:500.244510px;}
.yd2{bottom:504.738480px;}
.y133{bottom:504.753510px;}
.y40{bottom:506.301600px;}
.y1a9{bottom:506.977950px;}
.y87{bottom:507.016800px;}
.y18d{bottom:508.435860px;}
.y1d0{bottom:509.921310px;}
.y14{bottom:511.927290px;}
.y1eb{bottom:512.914800px;}
.y63{bottom:513.726420px;}
.y153{bottom:517.408680px;}
.y220{bottom:517.438830px;}
.yac{bottom:518.956860px;}
.yf4{bottom:520.442010px;}
.y172{bottom:520.474890px;}
.y209{bottom:522.715080px;}
.yd1{bottom:523.450830px;}
.y3f{bottom:525.013950px;}
.y86{bottom:525.201300px;}
.y10d{bottom:526.426770px;}
.y18c{bottom:527.253420px;}
.y1cf{bottom:528.633660px;}
.y132{bottom:529.507920px;}
.y13{bottom:530.639640px;}
.y1ea{bottom:531.732360px;}
.y1a8{bottom:534.693270px;}
.y152{bottom:536.226240px;}
.yab{bottom:537.669210px;}
.y171{bottom:539.187240px;}
.y208{bottom:541.427430px;}
.y62{bottom:541.441740px;}
.yd0{bottom:542.163180px;}
.y85{bottom:543.291300px;}
.y3e{bottom:543.726300px;}
.y10c{bottom:545.244330px;}
.y131{bottom:548.220270px;}
.y12{bottom:549.351990px;}
.y1e9{bottom:550.444710px;}
.y1ce{bottom:553.388070px;}
.y1a7{bottom:553.405620px;}
.yaa{bottom:556.486770px;}
.yf3{bottom:557.160300px;}
.y207{bottom:560.139780px;}
.y61{bottom:560.259300px;}
.ycf{bottom:560.980740px;}
.y84{bottom:561.381300px;}
.y3d{bottom:562.438650px;}
.y21f{bottom:563.956680px;}
.y18b{bottom:563.971710px;}
.y170{bottom:566.902560px;}
.y130{bottom:566.932620px;}
.y11{bottom:568.169550px;}
.y1cd{bottom:572.205630px;}
.y1a6{bottom:572.223180px;}
.y151{bottom:572.944530px;}
.ya9{bottom:575.199120px;}
.yf2{bottom:575.880300px;}
.y206{bottom:578.957340px;}
.y83{bottom:579.565800px;}
.yce{bottom:579.693090px;}
.y3c{bottom:581.256210px;}
.y10b{bottom:581.962620px;}
.y18a{bottom:582.684060px;}
.y16f{bottom:585.720120px;}
.y12f{bottom:585.750180px;}
.y10{bottom:586.881900px;}
.y1cc{bottom:590.917980px;}
.y150{bottom:591.656880px;}
.y21e{bottom:591.672000px;}
.ya8{bottom:593.911470px;}
.yf1{bottom:594.690300px;}
.y60{bottom:596.977590px;}
.y82{bottom:597.655800px;}
.ycd{bottom:598.405440px;}
.y3b{bottom:599.968560px;}
.y10a{bottom:600.674970px;}
.y16e{bottom:604.432470px;}
.y12e{bottom:604.462530px;}
.yf{bottom:605.594250px;}
.y205{bottom:606.672660px;}
.y1cb{bottom:609.630330px;}
.y14f{bottom:610.474440px;}
.y189{bottom:610.489560px;}
.ya7{bottom:612.729030px;}
.y5f{bottom:615.689940px;}
.y81{bottom:615.840300px;}
.ycc{bottom:617.223000px;}
.y3a{bottom:618.680910px;}
.yf0{bottom:619.492530px;}
.y12d{bottom:623.174880px;}
.ye{bottom:624.411810px;}
.y204{bottom:625.385010px;}
.y1ca{bottom:628.447890px;}
.y16d{bottom:629.186880px;}
.y188{bottom:629.201910px;}
.ya6{bottom:631.441380px;}
.y5e{bottom:634.402290px;}
.y80{bottom:634.636650px;}
.y14e{bottom:638.189760px;}
.yef{bottom:638.204880px;}
.ycb{bottom:641.977410px;}
.yd{bottom:643.124160px;}
.y203{bottom:644.202570px;}
.y39{bottom:646.486410px;}
.y1c9{bottom:647.160240px;}
.y16c{bottom:647.899230px;}
.ya5{bottom:650.153730px;}
.y12c{bottom:650.980380px;}
.y7f{bottom:652.821150px;}
.y5d{bottom:653.219850px;}
.y14d{bottom:656.902110px;}
.yee{bottom:656.917230px;}
.yca{bottom:660.689760px;}
.yc{bottom:661.836510px;}
.y38{bottom:665.198760px;}
.y1c8{bottom:665.872590px;}
.y16b{bottom:666.716790px;}
.ya4{bottom:668.971290px;}
.y12b{bottom:669.692730px;}
.y7e{bottom:670.911150px;}
.y202{bottom:671.917890px;}
.y5c{bottom:671.932200px;}
.y1e8{bottom:674.908140px;}
.y14c{bottom:675.719670px;}
.yed{bottom:675.734790px;}
.yc9{bottom:679.402110px;}
.y37{bottom:683.911110px;}
.y1c7{bottom:684.690150px;}
.y16a{bottom:685.429140px;}
.ya3{bottom:687.683640px;}
.y7d{bottom:689.095650px;}
.yb{bottom:689.551830px;}
.y201{bottom:690.630240px;}
.y5b{bottom:690.644550px;}
.y1e7{bottom:693.725700px;}
.y14b{bottom:694.432020px;}
.yec{bottom:694.447140px;}
.y1a5{bottom:696.686610px;}
.yc8{bottom:698.219670px;}
.y36{bottom:702.728670px;}
.y187{bottom:703.450110px;}
.y169{bottom:704.141490px;}
.ya2{bottom:706.395990px;}
.y12a{bottom:706.411020px;}
.y7c{bottom:707.185650px;}
.y5a{bottom:709.462110px;}
.y1c6{bottom:711.865650px;}
.y1e6{bottom:712.438050px;}
.yeb{bottom:713.159490px;}
.y200{bottom:715.384650px;}
.y1a4{bottom:715.398960px;}
.yc7{bottom:716.932020px;}
.y35{bottom:721.441020px;}
.y14a{bottom:722.147340px;}
.y186{bottom:722.162460px;}
.y168{bottom:722.959050px;}
.ya1{bottom:725.213550px;}
.y129{bottom:725.228580px;}
.y7b{bottom:725.275650px;}
.ya{bottom:726.360300px;}
.y59{bottom:728.174460px;}
.y1c5{bottom:728.781150px;}
.y1e5{bottom:731.150400px;}
.yea{bottom:731.977050px;}
.y1a3{bottom:734.216520px;}
.yc6{bottom:735.644370px;}
.y34{bottom:740.153370px;}
.y149{bottom:740.964900px;}
.y21d{bottom:740.980020px;}
.y1ff{bottom:743.190150px;}
.y7a{bottom:743.460150px;}
.ya0{bottom:743.925900px;}
.y128{bottom:743.940930px;}
.y1c4{bottom:745.615650px;}
.y58{bottom:746.886810px;}
.y185{bottom:749.967960px;}
.y167{bottom:750.674370px;}
.ye9{bottom:750.689400px;}
.y1a2{bottom:752.928870px;}
.y33{bottom:758.970930px;}
.y148{bottom:759.677250px;}
.y79{bottom:762.360300px;}
.y1c3{bottom:762.531150px;}
.y9f{bottom:762.638250px;}
.y127{bottom:762.653280px;}
.yc5{bottom:763.359690px;}
.y57{bottom:765.704370px;}
.y184{bottom:768.680310px;}
.y21c{bottom:768.695340px;}
.y166{bottom:769.386720px;}
.ye8{bottom:769.401750px;}
.y9{bottom:772.350150px;}
.y32{bottom:777.683280px;}
.y147{bottom:778.389600px;}
.y1c2{bottom:779.365650px;}
.y78{bottom:780.450300px;}
.y9e{bottom:781.350600px;}
.yc4{bottom:782.177250px;}
.y56{bottom:784.416720px;}
.y1e4{bottom:787.392660px;}
.y126{bottom:787.407690px;}
.ye7{bottom:788.114100px;}
.y8{bottom:793.230150px;}
.y1c1{bottom:796.200150px;}
.y31{bottom:796.395630px;}
.y77{bottom:798.540300px;}
.y146{bottom:806.104920px;}
.y9d{bottom:806.105010px;}
.y125{bottom:806.120040px;}
.ye6{bottom:806.931660px;}
.y55{bottom:809.171130px;}
.y1c0{bottom:813.115650px;}
.y30{bottom:815.107980px;}
.y109{bottom:815.919600px;}
.y7{bottom:816.630300px;}
.y76{bottom:817.435650px;}
.yc3{bottom:818.895540px;}
.y145{bottom:824.922480px;}
.y9c{bottom:824.922570px;}
.y124{bottom:824.937600px;}
.ye5{bottom:825.644010px;}
.y54{bottom:827.883480px;}
.y1bf{bottom:829.950150px;}
.y2f{bottom:833.925540px;}
.y75{bottom:835.620150px;}
.y6{bottom:836.430300px;}
.yc2{bottom:837.607890px;}
.y144{bottom:843.634830px;}
.y9b{bottom:843.634920px;}
.y123{bottom:843.649950px;}
.y53{bottom:846.595830px;}
.y1be{bottom:846.865650px;}
.y2e{bottom:852.637890px;}
.ye4{bottom:853.359330px;}
.y74{bottom:853.710150px;}
.y5{bottom:858.930300px;}
.y9a{bottom:862.347270px;}
.y122{bottom:862.362300px;}
.y1bd{bottom:863.700150px;}
.yc1{bottom:865.413390px;}
.y143{bottom:871.350150px;}
.y2d{bottom:871.350240px;}
.y73{bottom:872.610150px;}
.y99{bottom:881.164830px;}
.y4{bottom:881.430300px;}
.y2c{bottom:890.167800px;}
.y72{bottom:890.700150px;}
.y71{bottom:908.430300px;}
.y3{bottom:908.880150px;}
.h7{height:13.200074px;}
.hc{height:26.786953px;}
.hd{height:42.923672px;}
.h2{height:43.671797px;}
.ha{height:44.534180px;}
.h6{height:49.253906px;}
.h9{height:49.581387px;}
.h8{height:49.898438px;}
.h3{height:54.331699px;}
.h4{height:54.836016px;}
.hb{height:61.470437px;}
.he{height:65.419035px;}
.h5{height:65.671875px;}
.h1{height:1021.500000px;}
.h0{height:1021.680000px;}
.w2{width:28.008000px;}
.w3{width:34.683000px;}
.w0{width:689.040000px;}
.w1{width:689.250000px;}
.x0{left:0.000000px;}
.x1{left:98.070000px;}
.x5{left:105.540000px;}
.x4{left:108.690000px;}
.xd{left:118.770000px;}
.x8{left:125.063880px;}
.xa{left:140.634960px;}
.xf{left:143.250000px;}
.xb{left:161.872350px;}
.x12{left:179.071710px;}
.xc{left:199.230000px;}
.x13{left:206.080620px;}
.x6{left:224.970000px;}
.x7{left:281.490000px;}
.x10{left:291.115140px;}
.x3{left:297.060000px;}
.xe{left:305.434500px;}
.x11{left:327.178500px;}
.x9{left:330.516000px;}
.x2{left:344.490000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.412800pt;}
.v1{vertical-align:15.821013pt;}
.ls40{letter-spacing:-1.688704pt;}
.ls3f{letter-spacing:-0.352704pt;}
.ls43{letter-spacing:-0.320640pt;}
.ls20{letter-spacing:-0.267200pt;}
.ls44{letter-spacing:-0.224448pt;}
.ls1d{letter-spacing:-0.219104pt;}
.ls57{letter-spacing:-0.197728pt;}
.ls56{letter-spacing:-0.171008pt;}
.ls5f{letter-spacing:-0.160320pt;}
.ls17{letter-spacing:-0.154975pt;}
.ls60{letter-spacing:-0.144288pt;}
.ls42{letter-spacing:-0.138944pt;}
.ls27{letter-spacing:-0.128255pt;}
.ls23{letter-spacing:-0.122912pt;}
.ls66{letter-spacing:-0.117568pt;}
.ls1f{letter-spacing:-0.112224pt;}
.ls4e{letter-spacing:-0.090848pt;}
.ls2b{letter-spacing:-0.085504pt;}
.ls41{letter-spacing:-0.080160pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls14{letter-spacing:-0.069472pt;}
.ls15{letter-spacing:-0.064127pt;}
.ls3c{letter-spacing:-0.062400pt;}
.ls25{letter-spacing:-0.058784pt;}
.ls1e{letter-spacing:-0.053440pt;}
.ls39{letter-spacing:-0.052800pt;}
.ls28{letter-spacing:-0.048096pt;}
.lse{letter-spacing:-0.042752pt;}
.ls37{letter-spacing:-0.038400pt;}
.ls24{letter-spacing:-0.037408pt;}
.ls3a{letter-spacing:-0.033600pt;}
.ls1c{letter-spacing:-0.032064pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls34{letter-spacing:-0.028800pt;}
.ls16{letter-spacing:-0.026720pt;}
.ls35{letter-spacing:-0.024000pt;}
.ls18{letter-spacing:-0.021376pt;}
.lsf{letter-spacing:-0.019200pt;}
.ls19{letter-spacing:-0.016032pt;}
.ls38{letter-spacing:-0.014400pt;}
.ls1b{letter-spacing:-0.010688pt;}
.ls36{letter-spacing:-0.009600pt;}
.ls1a{letter-spacing:-0.005344pt;}
.ls12{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.004800pt;}
.ls8{letter-spacing:0.005344pt;}
.ls10{letter-spacing:0.006400pt;}
.ls68{letter-spacing:0.008512pt;}
.ls30{letter-spacing:0.009600pt;}
.ls3{letter-spacing:0.010688pt;}
.ls4c{letter-spacing:0.012768pt;}
.ls2f{letter-spacing:0.014400pt;}
.ls4{letter-spacing:0.016032pt;}
.ls2e{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.021376pt;}
.ls5a{letter-spacing:0.024000pt;}
.ls49{letter-spacing:0.025536pt;}
.ls7{letter-spacing:0.026720pt;}
.ls31{letter-spacing:0.028800pt;}
.ls47{letter-spacing:0.029792pt;}
.ls5{letter-spacing:0.032064pt;}
.ls2c{letter-spacing:0.033600pt;}
.ls6{letter-spacing:0.037408pt;}
.ls32{letter-spacing:0.038400pt;}
.ls48{letter-spacing:0.042560pt;}
.lsc{letter-spacing:0.042752pt;}
.ls64{letter-spacing:0.043200pt;}
.ls4b{letter-spacing:0.046816pt;}
.ls62{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.048096pt;}
.ls5b{letter-spacing:0.052800pt;}
.ls22{letter-spacing:0.053440pt;}
.ls5d{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.058784pt;}
.ls61{letter-spacing:0.062400pt;}
.ls4a{letter-spacing:0.063840pt;}
.ls4d{letter-spacing:0.064127pt;}
.ls59{letter-spacing:0.067200pt;}
.ls13{letter-spacing:0.069472pt;}
.ls5e{letter-spacing:0.072000pt;}
.lsb{letter-spacing:0.074816pt;}
.ls46{letter-spacing:0.074880pt;}
.ls63{letter-spacing:0.081600pt;}
.ls5c{letter-spacing:0.086400pt;}
.ls33{letter-spacing:0.101536pt;}
.lsa{letter-spacing:0.106880pt;}
.ls45{letter-spacing:0.112224pt;}
.ls65{letter-spacing:1.191712pt;}
.ls54{letter-spacing:1.827648pt;}
.ls3e{letter-spacing:2.148288pt;}
.ls29{letter-spacing:3.110208pt;}
.ls51{letter-spacing:3.430843pt;}
.ls4f{letter-spacing:4.387424pt;}
.ls50{letter-spacing:5.028704pt;}
.ls52{letter-spacing:5.349344pt;}
.ls53{letter-spacing:5.669984pt;}
.ls55{letter-spacing:7.267840pt;}
.ls2{letter-spacing:25.758080pt;}
.ls3b{letter-spacing:27.230400pt;}
.ls67{letter-spacing:28.964480pt;}
.ls21{letter-spacing:36.339200pt;}
.ls0{letter-spacing:37.621760pt;}
.ls58{letter-spacing:49.164800pt;}
.ls26{letter-spacing:755.107200pt;}
.ws31{word-spacing:-53.440000pt;}
.ws0{word-spacing:-13.643232pt;}
.ws16d{word-spacing:-13.509633pt;}
.ws1{word-spacing:-13.504288pt;}
.ws3{word-spacing:-12.953856pt;}
.ws2{word-spacing:-12.937824pt;}
.ws177{word-spacing:-12.846976pt;}
.ws115{word-spacing:-12.718720pt;}
.ws16c{word-spacing:-8.328960pt;}
.ws99{word-spacing:-7.383680pt;}
.ws12d{word-spacing:-3.323968pt;}
.ws1a{word-spacing:-3.297248pt;}
.wseb{word-spacing:-3.291904pt;}
.ws14b{word-spacing:-3.281216pt;}
.wsc2{word-spacing:-2.997984pt;}
.ws157{word-spacing:-2.981952pt;}
.ws13a{word-spacing:-2.976608pt;}
.ws30{word-spacing:-2.971264pt;}
.ws156{word-spacing:-2.955232pt;}
.wsf1{word-spacing:-2.944544pt;}
.wsc4{word-spacing:-2.661307pt;}
.ws58{word-spacing:-2.655968pt;}
.ws8b{word-spacing:-2.645280pt;}
.ws8a{word-spacing:-2.623904pt;}
.wsc3{word-spacing:-2.613216pt;}
.wsd5{word-spacing:-2.602528pt;}
.ws8c{word-spacing:-2.511680pt;}
.ws127{word-spacing:-2.356800pt;}
.ws24{word-spacing:-2.356704pt;}
.ws94{word-spacing:-2.351360pt;}
.ws111{word-spacing:-2.346016pt;}
.wsdb{word-spacing:-2.340672pt;}
.ws116{word-spacing:-2.335328pt;}
.ws96{word-spacing:-2.324635pt;}
.wsdc{word-spacing:-2.292576pt;}
.wsae{word-spacing:-2.020032pt;}
.ws82{word-spacing:-2.014688pt;}
.ws122{word-spacing:-2.011200pt;}
.ws83{word-spacing:-1.998656pt;}
.ws123{word-spacing:-1.996800pt;}
.ws145{word-spacing:-1.737600pt;}
.wscd{word-spacing:-1.704736pt;}
.ws148{word-spacing:-1.703995pt;}
.wse2{word-spacing:-1.699392pt;}
.ws158{word-spacing:-1.694048pt;}
.ws5a{word-spacing:-1.688704pt;}
.ws37{word-spacing:-1.683360pt;}
.ws149{word-spacing:-1.675200pt;}
.wsf2{word-spacing:-1.672672pt;}
.ws7a{word-spacing:-1.667328pt;}
.ws14d{word-spacing:-1.405472pt;}
.wsad{word-spacing:-1.389440pt;}
.ws168{word-spacing:-1.384096pt;}
.ws43{word-spacing:-1.378752pt;}
.ws84{word-spacing:-1.373408pt;}
.ws10e{word-spacing:-1.368064pt;}
.wsa1{word-spacing:-1.362715pt;}
.wsf9{word-spacing:-1.357376pt;}
.ws88{word-spacing:-1.346688pt;}
.wsa2{word-spacing:-1.325312pt;}
.ws25{word-spacing:-1.314624pt;}
.ws14c{word-spacing:-1.309280pt;}
.ws89{word-spacing:-1.287904pt;}
.ws26{word-spacing:-1.255840pt;}
.ws172{word-spacing:-1.084800pt;}
.wsfa{word-spacing:-1.079488pt;}
.ws5e{word-spacing:-1.068800pt;}
.ws40{word-spacing:-1.063456pt;}
.wsb6{word-spacing:-1.058112pt;}
.ws113{word-spacing:-1.052768pt;}
.ws171{word-spacing:-1.051200pt;}
.ws3f{word-spacing:-1.047424pt;}
.ws4e{word-spacing:-1.042080pt;}
.ws70{word-spacing:-0.983296pt;}
.wsf{word-spacing:-0.764192pt;}
.ws18{word-spacing:-0.753504pt;}
.wsd4{word-spacing:-0.742816pt;}
.ws167{word-spacing:-0.732128pt;}
.ws17{word-spacing:-0.726784pt;}
.wsb3{word-spacing:-0.721440pt;}
.ws16f{word-spacing:-0.720000pt;}
.ws95{word-spacing:-0.716096pt;}
.ws60{word-spacing:-0.710752pt;}
.ws61{word-spacing:-0.700064pt;}
.ws166{word-spacing:-0.694720pt;}
.wsb2{word-spacing:-0.689376pt;}
.wsc9{word-spacing:-0.673344pt;}
.wsca{word-spacing:-0.657312pt;}
.ws8f{word-spacing:-0.470272pt;}
.ws126{word-spacing:-0.465600pt;}
.ws12c{word-spacing:-0.438208pt;}
.wsab{word-spacing:-0.432864pt;}
.ws36{word-spacing:-0.427520pt;}
.wsa8{word-spacing:-0.422176pt;}
.ws38{word-spacing:-0.416832pt;}
.ws56{word-spacing:-0.411488pt;}
.ws6d{word-spacing:-0.406144pt;}
.ws6e{word-spacing:-0.400800pt;}
.ws81{word-spacing:-0.395456pt;}
.ws68{word-spacing:-0.390112pt;}
.ws12b{word-spacing:-0.384768pt;}
.ws69{word-spacing:-0.379424pt;}
.ws80{word-spacing:-0.374080pt;}
.wsaa{word-spacing:-0.368736pt;}
.wsf5{word-spacing:-0.149632pt;}
.ws87{word-spacing:-0.144288pt;}
.ws160{word-spacing:-0.138944pt;}
.ws2d{word-spacing:-0.133600pt;}
.ws144{word-spacing:-0.124800pt;}
.ws176{word-spacing:-0.117568pt;}
.ws10c{word-spacing:-0.112224pt;}
.ws175{word-spacing:-0.110400pt;}
.ws8e{word-spacing:-0.106880pt;}
.ws14a{word-spacing:-0.105600pt;}
.ws59{word-spacing:-0.101536pt;}
.ws32{word-spacing:-0.096192pt;}
.ws47{word-spacing:-0.090848pt;}
.ws46{word-spacing:-0.085504pt;}
.ws5c{word-spacing:-0.080160pt;}
.ws174{word-spacing:-0.076800pt;}
.ws15{word-spacing:-0.074816pt;}
.ws129{word-spacing:-0.072000pt;}
.ws57{word-spacing:-0.069472pt;}
.ws12a{word-spacing:-0.067200pt;}
.wsa{word-spacing:-0.064127pt;}
.ws1b{word-spacing:-0.058784pt;}
.ws3a{word-spacing:-0.053440pt;}
.ws5{word-spacing:-0.048096pt;}
.wsb4{word-spacing:-0.042752pt;}
.wsb5{word-spacing:-0.037408pt;}
.ws9{word-spacing:-0.024000pt;}
.ws16a{word-spacing:-0.010688pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.064000pt;}
.ws16b{word-spacing:0.069472pt;}
.wsfd{word-spacing:0.080160pt;}
.ws6{word-spacing:0.089600pt;}
.ws8{word-spacing:0.102400pt;}
.ws114{word-spacing:0.106880pt;}
.ws108{word-spacing:0.117568pt;}
.ws107{word-spacing:0.154975pt;}
.ws4f{word-spacing:0.176352pt;}
.wse5{word-spacing:0.187040pt;}
.ws12{word-spacing:0.192384pt;}
.ws139{word-spacing:0.197728pt;}
.ws52{word-spacing:0.203072pt;}
.ws155{word-spacing:0.208416pt;}
.ws50{word-spacing:0.213760pt;}
.ws51{word-spacing:0.224448pt;}
.ws10f{word-spacing:0.229792pt;}
.wsea{word-spacing:0.235136pt;}
.ws41{word-spacing:0.240480pt;}
.ws13{word-spacing:0.251168pt;}
.wse9{word-spacing:0.261856pt;}
.ws15c{word-spacing:0.277888pt;}
.ws106{word-spacing:0.502336pt;}
.ws48{word-spacing:0.523712pt;}
.ws162{word-spacing:0.529056pt;}
.ws45{word-spacing:0.539744pt;}
.ws3e{word-spacing:0.545088pt;}
.wsd6{word-spacing:0.550432pt;}
.ws65{word-spacing:0.555776pt;}
.wsc1{word-spacing:0.561120pt;}
.ws9f{word-spacing:0.566464pt;}
.wsa0{word-spacing:0.577152pt;}
.ws3d{word-spacing:0.587840pt;}
.ws15b{word-spacing:0.614560pt;}
.ws1e{word-spacing:0.812288pt;}
.ws147{word-spacing:0.844800pt;}
.ws92{word-spacing:0.860384pt;}
.ws20{word-spacing:0.865728pt;}
.ws64{word-spacing:0.871067pt;}
.wscb{word-spacing:0.876416pt;}
.ws146{word-spacing:0.883200pt;}
.ws1f{word-spacing:0.887104pt;}
.ws15a{word-spacing:0.892448pt;}
.wscc{word-spacing:0.897792pt;}
.ws150{word-spacing:0.913824pt;}
.ws159{word-spacing:0.988640pt;}
.ws6a{word-spacing:1.181024pt;}
.ws9b{word-spacing:1.191712pt;}
.ws14f{word-spacing:1.197056pt;}
.ws11e{word-spacing:1.202400pt;}
.wsa9{word-spacing:1.213088pt;}
.wsd8{word-spacing:1.218432pt;}
.ws4a{word-spacing:1.234464pt;}
.ws49{word-spacing:1.250496pt;}
.ws11f{word-spacing:1.473600pt;}
.ws16e{word-spacing:1.483200pt;}
.ws15d{word-spacing:1.490976pt;}
.ws13d{word-spacing:1.492800pt;}
.ws28{word-spacing:1.496320pt;}
.ws44{word-spacing:1.501664pt;}
.ws27{word-spacing:1.507008pt;}
.wsc7{word-spacing:1.512352pt;}
.ws154{word-spacing:1.517696pt;}
.ws153{word-spacing:1.523040pt;}
.ws100{word-spacing:1.528384pt;}
.ws101{word-spacing:1.533728pt;}
.wsa6{word-spacing:1.539072pt;}
.wsa5{word-spacing:1.555104pt;}
.ws173{word-spacing:1.795200pt;}
.ws14e{word-spacing:1.800928pt;}
.ws109{word-spacing:1.806267pt;}
.wsc6{word-spacing:1.816960pt;}
.ws21{word-spacing:1.822304pt;}
.ws3c{word-spacing:1.832992pt;}
.ws130{word-spacing:1.843680pt;}
.ws7b{word-spacing:1.849024pt;}
.ws73{word-spacing:1.854368pt;}
.ws128{word-spacing:2.112000pt;}
.ws29{word-spacing:2.121568pt;}
.wsb1{word-spacing:2.132256pt;}
.ws2f{word-spacing:2.137600pt;}
.wsc0{word-spacing:2.142939pt;}
.ws121{word-spacing:2.145595pt;}
.wsb{word-spacing:2.148288pt;}
.wsd3{word-spacing:2.153632pt;}
.wse4{word-spacing:2.158976pt;}
.ws120{word-spacing:2.160000pt;}
.ws85{word-spacing:2.164320pt;}
.ws97{word-spacing:2.169664pt;}
.wsc{word-spacing:2.175008pt;}
.wsbf{word-spacing:2.180352pt;}
.ws22{word-spacing:2.367392pt;}
.ws135{word-spacing:2.436864pt;}
.ws13b{word-spacing:2.442208pt;}
.ws7c{word-spacing:2.447552pt;}
.ws86{word-spacing:2.452896pt;}
.wsc5{word-spacing:2.458240pt;}
.ws16{word-spacing:2.463584pt;}
.ws72{word-spacing:2.468928pt;}
.ws35{word-spacing:2.474272pt;}
.ws118{word-spacing:2.484960pt;}
.ws71{word-spacing:2.490304pt;}
.ws12f{word-spacing:2.506336pt;}
.ws1d{word-spacing:2.682688pt;}
.ws132{word-spacing:2.746816pt;}
.wse3{word-spacing:2.768192pt;}
.ws1c{word-spacing:2.778880pt;}
.ws170{word-spacing:2.779200pt;}
.wsac{word-spacing:2.784224pt;}
.wsbc{word-spacing:2.789568pt;}
.ws7f{word-spacing:2.794912pt;}
.wsa7{word-spacing:2.800256pt;}
.wse7{word-spacing:2.805600pt;}
.ws117{word-spacing:2.816288pt;}
.wsf4{word-spacing:2.826976pt;}
.wsa3{word-spacing:2.837664pt;}
.wse6{word-spacing:2.843008pt;}
.wsa4{word-spacing:2.848352pt;}
.wse{word-spacing:3.094176pt;}
.ws11{word-spacing:3.099520pt;}
.ws98{word-spacing:3.104864pt;}
.wsd1{word-spacing:3.110208pt;}
.ws169{word-spacing:3.115552pt;}
.ws42{word-spacing:3.120896pt;}
.ws15f{word-spacing:3.126240pt;}
.ws10d{word-spacing:3.131584pt;}
.ws15e{word-spacing:3.147616pt;}
.ws137{word-spacing:3.179680pt;}
.ws136{word-spacing:3.254496pt;}
.ws10{word-spacing:3.265184pt;}
.ws12e{word-spacing:3.404128pt;}
.ws55{word-spacing:3.409472pt;}
.ws10a{word-spacing:3.414816pt;}
.ws2c{word-spacing:3.420160pt;}
.wsbd{word-spacing:3.425504pt;}
.ws2b{word-spacing:3.436192pt;}
.wsd0{word-spacing:3.441536pt;}
.wsd2{word-spacing:3.446880pt;}
.ws54{word-spacing:3.452224pt;}
.ws5d{word-spacing:3.457563pt;}
.wse0{word-spacing:3.468256pt;}
.ws53{word-spacing:3.473600pt;}
.ws34{word-spacing:3.553760pt;}
.wsc8{word-spacing:3.730112pt;}
.ws5b{word-spacing:3.746144pt;}
.ws131{word-spacing:3.751488pt;}
.wse1{word-spacing:3.783552pt;}
.ws74{word-spacing:4.024032pt;}
.ws75{word-spacing:4.029376pt;}
.ws125{word-spacing:4.036800pt;}
.ws13c{word-spacing:4.041600pt;}
.ws91{word-spacing:4.050752pt;}
.ws124{word-spacing:4.051200pt;}
.ws76{word-spacing:4.056096pt;}
.wsbb{word-spacing:4.061440pt;}
.ws134{word-spacing:4.066784pt;}
.ws161{word-spacing:4.072128pt;}
.ws8d{word-spacing:4.077472pt;}
.ws19{word-spacing:4.082816pt;}
.wsfc{word-spacing:4.088160pt;}
.wsd9{word-spacing:4.104187pt;}
.ws90{word-spacing:4.120224pt;}
.ws39{word-spacing:4.350016pt;}
.ws103{word-spacing:4.376736pt;}
.ws151{word-spacing:4.382080pt;}
.wsdf{word-spacing:4.392768pt;}
.ws33{word-spacing:4.398112pt;}
.ws102{word-spacing:4.424832pt;}
.wsb7{word-spacing:4.435520pt;}
.ws67{word-spacing:4.697376pt;}
.ws142{word-spacing:4.699200pt;}
.wsce{word-spacing:4.713408pt;}
.wsec{word-spacing:4.724096pt;}
.ws143{word-spacing:4.737600pt;}
.wscf{word-spacing:4.761504pt;}
.ws140{word-spacing:4.982400pt;}
.ws6f{word-spacing:5.012672pt;}
.wsef{word-spacing:5.023360pt;}
.ws4b{word-spacing:5.028704pt;}
.wsf0{word-spacing:5.044736pt;}
.ws141{word-spacing:5.049600pt;}
.ws63{word-spacing:5.076800pt;}
.ws62{word-spacing:5.156960pt;}
.ws165{word-spacing:5.327968pt;}
.ws7e{word-spacing:5.333312pt;}
.ws11d{word-spacing:5.360032pt;}
.ws7d{word-spacing:5.392096pt;}
.ws78{word-spacing:5.611200pt;}
.ws14{word-spacing:5.643264pt;}
.ws152{word-spacing:5.653952pt;}
.ws79{word-spacing:5.659296pt;}
.wsfb{word-spacing:5.664640pt;}
.ws77{word-spacing:5.675328pt;}
.ws112{word-spacing:5.696704pt;}
.ws13e{word-spacing:5.961600pt;}
.ws2e{word-spacing:5.969248pt;}
.ws13f{word-spacing:5.976000pt;}
.wsd{word-spacing:5.979936pt;}
.wsed{word-spacing:5.985280pt;}
.ws110{word-spacing:5.990624pt;}
.wsba{word-spacing:6.247136pt;}
.wsf3{word-spacing:6.273856pt;}
.wsda{word-spacing:6.305920pt;}
.wsb8{word-spacing:6.311264pt;}
.wsf6{word-spacing:6.321952pt;}
.wsf7{word-spacing:6.327296pt;}
.wsb9{word-spacing:6.391424pt;}
.ws138{word-spacing:6.631904pt;}
.ws93{word-spacing:6.856352pt;}
.ws9e{word-spacing:6.941856pt;}
.ws6b{word-spacing:6.979264pt;}
.ws6c{word-spacing:6.995296pt;}
.wsf8{word-spacing:7.294560pt;}
.ws23{word-spacing:7.887744pt;}
.wsff{word-spacing:7.898432pt;}
.wsde{word-spacing:7.909120pt;}
.ws3b{word-spacing:7.919808pt;}
.ws10b{word-spacing:8.229760pt;}
.ws9d{word-spacing:8.256480pt;}
.ws9c{word-spacing:8.261824pt;}
.ws2a{word-spacing:8.496960pt;}
.ws4d{word-spacing:8.539712pt;}
.wsbe{word-spacing:8.561088pt;}
.ws4c{word-spacing:8.571776pt;}
.ws105{word-spacing:8.860352pt;}
.wsd7{word-spacing:9.175648pt;}
.ws163{word-spacing:9.496288pt;}
.ws164{word-spacing:9.528352pt;}
.ws66{word-spacing:9.544384pt;}
.ws11b{word-spacing:9.822272pt;}
.wsaf{word-spacing:9.848992pt;}
.wsee{word-spacing:10.169632pt;}
.wsb0{word-spacing:10.174976pt;}
.ws119{word-spacing:10.463552pt;}
.ws11a{word-spacing:10.479584pt;}
.ws133{word-spacing:11.115520pt;}
.wsdd{word-spacing:12.077440pt;}
.ws11c{word-spacing:12.109504pt;}
.wsfe{word-spacing:12.387392pt;}
.ws9a{word-spacing:13.360000pt;}
.wse8{word-spacing:13.370688pt;}
.ws5f{word-spacing:14.300544pt;}
.ws104{word-spacing:15.305216pt;}
._5{margin-left:-28.128000pt;}
._4{margin-left:-27.168000pt;}
._d{margin-left:-7.962560pt;}
._c{margin-left:-6.519680pt;}
._b{margin-left:-5.557760pt;}
._a{margin-left:-4.435520pt;}
._2{margin-left:-3.152960pt;}
._6{margin-left:-2.191040pt;}
._0{margin-left:-1.015360pt;}
._1{width:1.015360pt;}
._7{width:2.458240pt;}
._8{width:4.383680pt;}
._9{width:5.277440pt;}
._3{width:26.592000pt;}
.fs6{font-size:26.560000pt;}
.fs7{font-size:34.560000pt;}
.fs0{font-size:42.560000pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.245333pt;}
.y2a{bottom:48.346760pt;}
.y2{bottom:63.173600pt;}
.y1{bottom:79.493600pt;}
.ye3{bottom:92.688400pt;}
.y21b{bottom:92.690160pt;}
.yc0{bottom:93.372187pt;}
.y1bc{bottom:93.440747pt;}
.y108{bottom:97.392800pt;}
.y29{bottom:99.817440pt;}
.y1a1{bottom:99.980400pt;}
.y121{bottom:100.053947pt;}
.y1e3{bottom:104.674267pt;}
.ye2{bottom:106.211840pt;}
.y1fe{bottom:107.415307pt;}
.ybf{bottom:110.005387pt;}
.y52{bottom:110.073947pt;}
.y21a{bottom:110.213600pt;}
.y107{bottom:114.026000pt;}
.y28{bottom:116.450640pt;}
.y1a0{bottom:116.613600pt;}
.y120{bottom:116.687147pt;}
.y219{bottom:119.252907pt;}
.ye1{bottom:119.650160pt;}
.y1e2{bottom:121.400987pt;}
.ybe{bottom:126.638587pt;}
.y1bb{bottom:126.707147pt;}
.y106{bottom:130.659200pt;}
.y183{bottom:131.423227pt;}
.y1fd{bottom:132.051147pt;}
.y51{bottom:132.077867pt;}
.y27{bottom:133.083840pt;}
.y165{bottom:133.400427pt;}
.y11f{bottom:133.413867pt;}
.ye0{bottom:137.173600pt;}
.y1e1{bottom:138.034187pt;}
.y19f{bottom:140.857600pt;}
.ybd{bottom:143.365307pt;}
.y1ba{bottom:143.433867pt;}
.ydf{bottom:146.154640pt;}
.y105{bottom:147.385920pt;}
.y182{bottom:148.056427pt;}
.y142{bottom:148.069787pt;}
.y1fc{bottom:148.684347pt;}
.y50{bottom:148.711067pt;}
.y26{bottom:149.717040pt;}
.y164{bottom:150.033627pt;}
.y11e{bottom:150.047067pt;}
.y1e0{bottom:154.667387pt;}
.y19e{bottom:155.821600pt;}
.ybc{bottom:159.998507pt;}
.y1b9{bottom:160.067067pt;}
.y104{bottom:164.019120pt;}
.y141{bottom:164.702987pt;}
.y25{bottom:166.443760pt;}
.y163{bottom:166.666827pt;}
.y218{bottom:166.694267pt;}
.y4f{bottom:170.714987pt;}
.y19d{bottom:170.857600pt;}
.y1df{bottom:171.394107pt;}
.y98{bottom:172.521760pt;}
.y181{bottom:172.692267pt;}
.y1fb{bottom:173.400347pt;}
.y11d{bottom:174.682907pt;}
.ybb{bottom:176.631707pt;}
.y1b8{bottom:176.700267pt;}
.y103{bottom:180.652320pt;}
.y140{bottom:181.336187pt;}
.y24{bottom:183.076960pt;}
.y162{bottom:183.300027pt;}
.y217{bottom:183.327467pt;}
.y19c{bottom:185.821600pt;}
.y4e{bottom:187.441707pt;}
.y1de{bottom:188.027307pt;}
.y97{bottom:188.847680pt;}
.y180{bottom:189.325467pt;}
.y1fa{bottom:190.033547pt;}
.y11c{bottom:191.316107pt;}
.y1b7{bottom:193.333467pt;}
.y102{bottom:197.285520pt;}
.yba{bottom:198.635627pt;}
.y23{bottom:199.710160pt;}
.y161{bottom:200.026747pt;}
.y216{bottom:200.054187pt;}
.y19b{bottom:200.857600pt;}
.y13f{bottom:203.340107pt;}
.y4d{bottom:204.074907pt;}
.y1dd{bottom:204.660507pt;}
.y96{bottom:205.173600pt;}
.y17f{bottom:206.052187pt;}
.y1f9{bottom:206.666747pt;}
.y11b{bottom:208.042827pt;}
.y1b6{bottom:210.060187pt;}
.y101{bottom:214.012240pt;}
.yb9{bottom:215.268827pt;}
.yde{bottom:215.987360pt;}
.y22{bottom:216.436880pt;}
.y160{bottom:216.659947pt;}
.y13e{bottom:220.066827pt;}
.y22c{bottom:220.293600pt;}
.y4c{bottom:220.708107pt;}
.y95{bottom:223.089600pt;}
.y19a{bottom:223.813600pt;}
.y11a{bottom:224.676027pt;}
.y215{bottom:224.690027pt;}
.y1b5{bottom:226.693387pt;}
.y1f8{bottom:228.670667pt;}
.y1dc{bottom:229.296347pt;}
.y17e{bottom:230.688027pt;}
.yb8{bottom:231.995547pt;}
.y21{bottom:233.070080pt;}
.y70{bottom:234.188347pt;}
.y13d{bottom:236.700027pt;}
.y4b{bottom:237.341307pt;}
.ydd{bottom:237.991280pt;}
.y100{bottom:238.648080pt;}
.y199{bottom:238.849600pt;}
.y94{bottom:239.253600pt;}
.y15f{bottom:241.295787pt;}
.y214{bottom:241.323227pt;}
.y1b4{bottom:243.326587pt;}
.y1f7{bottom:245.303867pt;}
.y1db{bottom:246.023067pt;}
.y17d{bottom:247.321227pt;}
.y22b{bottom:248.453600pt;}
.yb7{bottom:248.628747pt;}
.y119{bottom:249.311867pt;}
.y20{bottom:249.703280pt;}
.y6f{bottom:251.302507pt;}
.y13c{bottom:253.333227pt;}
.y198{bottom:253.813600pt;}
.y4a{bottom:254.068027pt;}
.ydc{bottom:254.624480pt;}
.y93{bottom:255.333600pt;}
.y15e{bottom:258.022507pt;}
.y1b3{bottom:260.053307pt;}
.y1f6{bottom:262.030587pt;}
.y1da{bottom:262.656267pt;}
.y118{bottom:266.038587pt;}
.y213{bottom:266.039227pt;}
.y1f{bottom:266.430000pt;}
.y6e{bottom:268.029227pt;}
.y22a{bottom:269.325147pt;}
.yb6{bottom:270.632667pt;}
.ydb{bottom:271.257680pt;}
.yff{bottom:271.286560pt;}
.y17c{bottom:272.037227pt;}
.y92{bottom:272.133600pt;}
.y15d{bottom:274.655707pt;}
.y13b{bottom:275.337147pt;}
.y49{bottom:276.071947pt;}
.y1b2{bottom:276.686507pt;}
.y197{bottom:277.267307pt;}
.y1d9{bottom:279.289467pt;}
.y117{bottom:282.671787pt;}
.y212{bottom:282.672427pt;}
.y1e{bottom:283.063200pt;}
.y1f5{bottom:284.034507pt;}
.y6d{bottom:284.662427pt;}
.y229{bottom:286.051867pt;}
.yb5{bottom:287.265867pt;}
.yda{bottom:287.984400pt;}
.yfe{bottom:288.013280pt;}
.y91{bottom:288.213600pt;}
.y17b{bottom:288.670427pt;}
.y13a{bottom:292.063867pt;}
.y48{bottom:292.705147pt;}
.y196{bottom:293.994027pt;}
.y1d8{bottom:296.016187pt;}
.y15c{bottom:296.659627pt;}
.y116{bottom:299.304987pt;}
.y211{bottom:299.305627pt;}
.y1d{bottom:299.696400pt;}
.y1f4{bottom:300.667707pt;}
.y6c{bottom:301.295627pt;}
.y1b1{bottom:301.322347pt;}
.yb4{bottom:303.992587pt;}
.yd9{bottom:304.617600pt;}
.yfd{bottom:304.646480pt;}
.y90{bottom:305.013600pt;}
.y17a{bottom:305.303627pt;}
.y139{bottom:308.697067pt;}
.y47{bottom:309.338347pt;}
.y195{bottom:310.627227pt;}
.y228{bottom:310.687707pt;}
.y15b{bottom:313.292827pt;}
.y1c{bottom:316.423120pt;}
.y1f3{bottom:317.300907pt;}
.y6b{bottom:318.022347pt;}
.y1b0{bottom:318.049067pt;}
.yb3{bottom:320.625787pt;}
.y1d7{bottom:320.652027pt;}
.y8f{bottom:321.093600pt;}
.yd8{bottom:321.250800pt;}
.yfc{bottom:321.279680pt;}
.y115{bottom:321.308907pt;}
.y179{bottom:322.030347pt;}
.y210{bottom:324.021627pt;}
.y138{bottom:325.330267pt;}
.y46{bottom:326.065067pt;}
.y194{bottom:327.260427pt;}
.y227{bottom:327.320907pt;}
.y1b{bottom:333.056320pt;}
.y1f2{bottom:334.027627pt;}
.y6a{bottom:334.655547pt;}
.y1af{bottom:334.682267pt;}
.y15a{bottom:335.296747pt;}
.yb2{bottom:337.258987pt;}
.y1d6{bottom:337.285227pt;}
.y8e{bottom:337.869600pt;}
.yd7{bottom:337.977520pt;}
.yfb{bottom:338.006400pt;}
.y114{bottom:338.035627pt;}
.y20f{bottom:340.654827pt;}
.y45{bottom:342.698267pt;}
.y193{bottom:343.987147pt;}
.y226{bottom:344.047627pt;}
.y178{bottom:346.666187pt;}
.y1a{bottom:349.689520pt;}
.y137{bottom:350.046267pt;}
.y1f1{bottom:350.660827pt;}
.y1ae{bottom:351.315467pt;}
.y159{bottom:352.023467pt;}
.y8d{bottom:354.033600pt;}
.yfa{bottom:354.639600pt;}
.y113{bottom:354.668827pt;}
.y69{bottom:356.659467pt;}
.y44{bottom:359.331467pt;}
.y192{bottom:360.620347pt;}
.yb1{bottom:361.974987pt;}
.y1d5{bottom:362.001227pt;}
.yd6{bottom:362.613360pt;}
.y177{bottom:363.299387pt;}
.y20e{bottom:365.290667pt;}
.y19{bottom:366.322720pt;}
.y1f0{bottom:367.294027pt;}
.y158{bottom:368.656667pt;}
.y225{bottom:368.683467pt;}
.y8c{bottom:370.113600pt;}
.yf9{bottom:371.272800pt;}
.y68{bottom:373.292667pt;}
.y136{bottom:374.682107pt;}
.y1ad{bottom:376.031467pt;}
.y43{bottom:376.058187pt;}
.y112{bottom:376.672747pt;}
.y191{bottom:377.253547pt;}
.y1d4{bottom:378.634427pt;}
.y176{bottom:380.026107pt;}
.y20d{bottom:382.017387pt;}
.y157{bottom:385.289867pt;}
.y224{bottom:385.316667pt;}
.y8b{bottom:386.193600pt;}
.yf8{bottom:387.999520pt;}
.y18{bottom:388.326640pt;}
.y1ef{bottom:389.297947pt;}
.y67{bottom:390.019387pt;}
.y1ac{bottom:392.664667pt;}
.y42{bottom:392.691387pt;}
.y111{bottom:393.305947pt;}
.y190{bottom:393.980267pt;}
.yb0{bottom:394.613467pt;}
.y1d3{bottom:395.267627pt;}
.yd5{bottom:396.178347pt;}
.y135{bottom:399.317947pt;}
.y156{bottom:402.016587pt;}
.y223{bottom:402.043387pt;}
.y8a{bottom:402.357600pt;}
.yf7{bottom:404.632720pt;}
.y175{bottom:404.661947pt;}
.y17{bottom:405.053360pt;}
.y1ee{bottom:406.024667pt;}
.y66{bottom:406.652587pt;}
.y20c{bottom:406.653227pt;}
.y1ab{bottom:409.297867pt;}
.y110{bottom:410.032667pt;}
.y18f{bottom:410.613467pt;}
.yaf{bottom:411.253600pt;}
.y1d2{bottom:411.994347pt;}
.yd4{bottom:415.296507pt;}
.y41{bottom:417.327227pt;}
.y89{bottom:418.437600pt;}
.y155{bottom:418.649787pt;}
.y222{bottom:418.676587pt;}
.yf6{bottom:421.265920pt;}
.y174{bottom:421.295147pt;}
.y16{bottom:421.686560pt;}
.y1ed{bottom:422.657867pt;}
.y65{bottom:423.285787pt;}
.y20b{bottom:423.286427pt;}
.y134{bottom:423.953787pt;}
.y10f{bottom:426.665867pt;}
.yae{bottom:428.028587pt;}
.yd3{bottom:431.929707pt;}
.y1aa{bottom:434.013867pt;}
.y88{bottom:434.601600pt;}
.y154{bottom:435.282987pt;}
.y18e{bottom:435.309787pt;}
.y1d1{bottom:436.630187pt;}
.yf5{bottom:437.899120pt;}
.y173{bottom:437.928347pt;}
.y15{bottom:438.319760pt;}
.y1ec{bottom:439.291067pt;}
.y64{bottom:439.918987pt;}
.y20a{bottom:439.919627pt;}
.y10e{bottom:443.299067pt;}
.y221{bottom:443.312427pt;}
.yad{bottom:444.661787pt;}
.yd2{bottom:448.656427pt;}
.y133{bottom:448.669787pt;}
.y40{bottom:450.045867pt;}
.y1a9{bottom:450.647067pt;}
.y87{bottom:450.681600pt;}
.y18d{bottom:451.942987pt;}
.y1d0{bottom:453.263387pt;}
.y14{bottom:455.046480pt;}
.y1eb{bottom:455.924267pt;}
.y63{bottom:456.645707pt;}
.y153{bottom:459.918827pt;}
.y220{bottom:459.945627pt;}
.yac{bottom:461.294987pt;}
.yf4{bottom:462.615120pt;}
.y172{bottom:462.644347pt;}
.y209{bottom:464.635627pt;}
.yd1{bottom:465.289627pt;}
.y3f{bottom:466.679067pt;}
.y86{bottom:466.845600pt;}
.y10d{bottom:467.934907pt;}
.y18c{bottom:468.669707pt;}
.y1cf{bottom:469.896587pt;}
.y132{bottom:470.673707pt;}
.y13{bottom:471.679680pt;}
.y1ea{bottom:472.650987pt;}
.y1a8{bottom:475.282907pt;}
.y152{bottom:476.645547pt;}
.yab{bottom:477.928187pt;}
.y171{bottom:479.277547pt;}
.y208{bottom:481.268827pt;}
.y62{bottom:481.281547pt;}
.yd0{bottom:481.922827pt;}
.y85{bottom:482.925600pt;}
.y3e{bottom:483.312267pt;}
.y10c{bottom:484.661627pt;}
.y131{bottom:487.306907pt;}
.y12{bottom:488.312880pt;}
.y1e9{bottom:489.284187pt;}
.y1ce{bottom:491.900507pt;}
.y1a7{bottom:491.916107pt;}
.yaa{bottom:494.654907pt;}
.yf3{bottom:495.253600pt;}
.y207{bottom:497.902027pt;}
.y61{bottom:498.008267pt;}
.ycf{bottom:498.649547pt;}
.y84{bottom:499.005600pt;}
.y3d{bottom:499.945467pt;}
.y21f{bottom:501.294827pt;}
.y18b{bottom:501.308187pt;}
.y170{bottom:503.913387pt;}
.y130{bottom:503.940107pt;}
.y11{bottom:505.039600pt;}
.y1cd{bottom:508.627227pt;}
.y1a6{bottom:508.642827pt;}
.y151{bottom:509.284027pt;}
.ya9{bottom:511.288107pt;}
.yf2{bottom:511.893600pt;}
.y206{bottom:514.628747pt;}
.y83{bottom:515.169600pt;}
.yce{bottom:515.282747pt;}
.y3c{bottom:516.672187pt;}
.y10b{bottom:517.300107pt;}
.y18a{bottom:517.941387pt;}
.y16f{bottom:520.640107pt;}
.y12f{bottom:520.666827pt;}
.y10{bottom:521.672800pt;}
.y1cc{bottom:525.260427pt;}
.y150{bottom:525.917227pt;}
.y21e{bottom:525.930667pt;}
.ya8{bottom:527.921307pt;}
.yf1{bottom:528.613600pt;}
.y60{bottom:530.646747pt;}
.y82{bottom:531.249600pt;}
.ycd{bottom:531.915947pt;}
.y3b{bottom:533.305387pt;}
.y10a{bottom:533.933307pt;}
.y16e{bottom:537.273307pt;}
.y12e{bottom:537.300027pt;}
.yf{bottom:538.306000pt;}
.y205{bottom:539.264587pt;}
.y1cb{bottom:541.893627pt;}
.y14f{bottom:542.643947pt;}
.y189{bottom:542.657387pt;}
.ya7{bottom:544.648027pt;}
.y5f{bottom:547.279947pt;}
.y81{bottom:547.413600pt;}
.ycc{bottom:548.642667pt;}
.y3a{bottom:549.938587pt;}
.yf0{bottom:550.660027pt;}
.y12d{bottom:553.933227pt;}
.ye{bottom:555.032720pt;}
.y204{bottom:555.897787pt;}
.y1ca{bottom:558.620347pt;}
.y16d{bottom:559.277227pt;}
.y188{bottom:559.290587pt;}
.ya6{bottom:561.281227pt;}
.y5e{bottom:563.913147pt;}
.y80{bottom:564.121467pt;}
.y14e{bottom:567.279787pt;}
.yef{bottom:567.293227pt;}
.ycb{bottom:570.646587pt;}
.yd{bottom:571.665920pt;}
.y203{bottom:572.624507pt;}
.y39{bottom:574.654587pt;}
.y1c9{bottom:575.253547pt;}
.y16c{bottom:575.910427pt;}
.ya5{bottom:577.914427pt;}
.y12c{bottom:578.649227pt;}
.y7f{bottom:580.285467pt;}
.y5d{bottom:580.639867pt;}
.y14d{bottom:583.912987pt;}
.yee{bottom:583.926427pt;}
.yca{bottom:587.279787pt;}
.yc{bottom:588.299120pt;}
.y38{bottom:591.287787pt;}
.y1c8{bottom:591.886747pt;}
.y16b{bottom:592.637147pt;}
.ya4{bottom:594.641147pt;}
.y12b{bottom:595.282427pt;}
.y7e{bottom:596.365467pt;}
.y202{bottom:597.260347pt;}
.y5c{bottom:597.273067pt;}
.y1e8{bottom:599.918347pt;}
.y14c{bottom:600.639707pt;}
.yed{bottom:600.653147pt;}
.yc9{bottom:603.912987pt;}
.y37{bottom:607.920987pt;}
.y1c7{bottom:608.613467pt;}
.y16a{bottom:609.270347pt;}
.ya3{bottom:611.274347pt;}
.y7d{bottom:612.529467pt;}
.yb{bottom:612.934960pt;}
.y201{bottom:613.893547pt;}
.y5b{bottom:613.906267pt;}
.y1e7{bottom:616.645067pt;}
.y14b{bottom:617.272907pt;}
.yec{bottom:617.286347pt;}
.y1a5{bottom:619.276987pt;}
.yc8{bottom:620.639707pt;}
.y36{bottom:624.647707pt;}
.y187{bottom:625.288987pt;}
.y169{bottom:625.903547pt;}
.ya2{bottom:627.907547pt;}
.y12a{bottom:627.920907pt;}
.y7c{bottom:628.609467pt;}
.y5a{bottom:630.632987pt;}
.y1c6{bottom:632.769467pt;}
.y1e6{bottom:633.278267pt;}
.yeb{bottom:633.919547pt;}
.y200{bottom:635.897467pt;}
.y1a4{bottom:635.910187pt;}
.yc7{bottom:637.272907pt;}
.y35{bottom:641.280907pt;}
.y14a{bottom:641.908747pt;}
.y186{bottom:641.922187pt;}
.y168{bottom:642.630267pt;}
.ya1{bottom:644.634267pt;}
.y129{bottom:644.647627pt;}
.y7b{bottom:644.689467pt;}
.ya{bottom:645.653600pt;}
.y59{bottom:647.266187pt;}
.y1c5{bottom:647.805467pt;}
.y1e5{bottom:649.911467pt;}
.yea{bottom:650.646267pt;}
.y1a3{bottom:652.636907pt;}
.yc6{bottom:653.906107pt;}
.y34{bottom:657.914107pt;}
.y149{bottom:658.635467pt;}
.y21d{bottom:658.648907pt;}
.y1ff{bottom:660.613467pt;}
.y7a{bottom:660.853467pt;}
.ya0{bottom:661.267467pt;}
.y128{bottom:661.280827pt;}
.y1c4{bottom:662.769467pt;}
.y58{bottom:663.899387pt;}
.y185{bottom:666.638187pt;}
.y167{bottom:667.266107pt;}
.ye9{bottom:667.279467pt;}
.y1a2{bottom:669.270107pt;}
.y33{bottom:674.640827pt;}
.y148{bottom:675.268667pt;}
.y79{bottom:677.653600pt;}
.y1c3{bottom:677.805467pt;}
.y9f{bottom:677.900667pt;}
.y127{bottom:677.914027pt;}
.yc5{bottom:678.541947pt;}
.y57{bottom:680.626107pt;}
.y184{bottom:683.271387pt;}
.y21c{bottom:683.284747pt;}
.y166{bottom:683.899307pt;}
.ye8{bottom:683.912667pt;}
.y9{bottom:686.533467pt;}
.y32{bottom:691.274027pt;}
.y147{bottom:691.901867pt;}
.y1c2{bottom:692.769467pt;}
.y78{bottom:693.733600pt;}
.y9e{bottom:694.533867pt;}
.yc4{bottom:695.268667pt;}
.y56{bottom:697.259307pt;}
.y1e4{bottom:699.904587pt;}
.y126{bottom:699.917947pt;}
.ye7{bottom:700.545867pt;}
.y8{bottom:705.093467pt;}
.y1c1{bottom:707.733467pt;}
.y31{bottom:707.907227pt;}
.y77{bottom:709.813600pt;}
.y146{bottom:716.537707pt;}
.y9d{bottom:716.537787pt;}
.y125{bottom:716.551147pt;}
.ye6{bottom:717.272587pt;}
.y55{bottom:719.263227pt;}
.y1c0{bottom:722.769467pt;}
.y30{bottom:724.540427pt;}
.y109{bottom:725.261867pt;}
.y7{bottom:725.893600pt;}
.y76{bottom:726.609467pt;}
.yc3{bottom:727.907147pt;}
.y145{bottom:733.264427pt;}
.y9c{bottom:733.264507pt;}
.y124{bottom:733.277867pt;}
.ye5{bottom:733.905787pt;}
.y54{bottom:735.896427pt;}
.y1bf{bottom:737.733467pt;}
.y2f{bottom:741.267147pt;}
.y75{bottom:742.773467pt;}
.y6{bottom:743.493600pt;}
.yc2{bottom:744.540347pt;}
.y144{bottom:749.897627pt;}
.y9b{bottom:749.897707pt;}
.y123{bottom:749.911067pt;}
.y53{bottom:752.529627pt;}
.y1be{bottom:752.769467pt;}
.y2e{bottom:757.900347pt;}
.ye4{bottom:758.541627pt;}
.y74{bottom:758.853467pt;}
.y5{bottom:763.493600pt;}
.y9a{bottom:766.530907pt;}
.y122{bottom:766.544267pt;}
.y1bd{bottom:767.733467pt;}
.yc1{bottom:769.256347pt;}
.y143{bottom:774.533467pt;}
.y2d{bottom:774.533547pt;}
.y73{bottom:775.653467pt;}
.y99{bottom:783.257627pt;}
.y4{bottom:783.493600pt;}
.y2c{bottom:791.260267pt;}
.y72{bottom:791.733467pt;}
.y71{bottom:807.493600pt;}
.y3{bottom:807.893467pt;}
.h7{height:11.733399pt;}
.hc{height:23.810625pt;}
.hd{height:38.154375pt;}
.h2{height:38.819375pt;}
.ha{height:39.585938pt;}
.h6{height:43.781250pt;}
.h9{height:44.072344pt;}
.h8{height:44.354167pt;}
.h3{height:48.294844pt;}
.h4{height:48.743125pt;}
.hb{height:54.640388pt;}
.he{height:58.150253pt;}
.h5{height:58.375000pt;}
.h1{height:908.000000pt;}
.h0{height:908.160000pt;}
.w2{width:24.896000pt;}
.w3{width:30.829333pt;}
.w0{width:612.480000pt;}
.w1{width:612.666667pt;}
.x0{left:0.000000pt;}
.x1{left:87.173333pt;}
.x5{left:93.813333pt;}
.x4{left:96.613333pt;}
.xd{left:105.573333pt;}
.x8{left:111.167893pt;}
.xa{left:125.008853pt;}
.xf{left:127.333333pt;}
.xb{left:143.886533pt;}
.x12{left:159.174853pt;}
.xc{left:177.093333pt;}
.x13{left:183.182773pt;}
.x6{left:199.973333pt;}
.x7{left:250.213333pt;}
.x10{left:258.769013pt;}
.x3{left:264.053333pt;}
.xe{left:271.497333pt;}
.x11{left:290.825333pt;}
.x9{left:293.792000pt;}
.x2{left:306.213333pt;}
}




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