
    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_452398c0dbcab613a2559b19.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f8ccefebcbc8c6a7b5ca91d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_a72036533d2175451cf1e553.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d4131c579fd2cffb6ff751b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a39a0cd7d3e3a177ef7268c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_80695a0aaa7ae59c835ce120.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_dd784f1635878b675f814661.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728516;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_a090d2c3d51b25d86c33db61.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1049ad0fa17305bca2b5d709.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.863770;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_45cd18d10549c2a6559f5ed7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.709473;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.028800px;}
.ls3f{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.014400px;}
.ls16{letter-spacing:-0.007200px;}
.ls6{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.003000px;}
.ls1c{letter-spacing:0.005400px;}
.ls17{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.010800px;}
.ls35{letter-spacing:0.011400px;}
.ls1e{letter-spacing:0.014400px;}
.ls44{letter-spacing:0.020400px;}
.ls20{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.028800px;}
.ls49{letter-spacing:0.031800px;}
.lse{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.043200px;}
.ls43{letter-spacing:0.057600px;}
.ls10{letter-spacing:0.110640px;}
.ls1b{letter-spacing:0.116928px;}
.ls34{letter-spacing:0.192096px;}
.ls27{letter-spacing:0.194832px;}
.ls13{letter-spacing:0.200448px;}
.ls21{letter-spacing:0.200520px;}
.ls32{letter-spacing:0.210600px;}
.ls24{letter-spacing:0.221160px;}
.ls1a{letter-spacing:0.224352px;}
.ls18{letter-spacing:0.228096px;}
.ls2{letter-spacing:0.228720px;}
.ls19{letter-spacing:0.230256px;}
.ls4{letter-spacing:0.233856px;}
.ls42{letter-spacing:0.240000px;}
.ls57{letter-spacing:0.242064px;}
.lsc{letter-spacing:0.242208px;}
.ls5{letter-spacing:0.242352px;}
.ls22{letter-spacing:0.243120px;}
.ls26{letter-spacing:0.247968px;}
.ls30{letter-spacing:0.265680px;}
.ls23{letter-spacing:0.270864px;}
.ls2b{letter-spacing:0.271584px;}
.lsf{letter-spacing:0.275616px;}
.lsb{letter-spacing:0.283968px;}
.ls28{letter-spacing:0.302760px;}
.ls2a{letter-spacing:0.303360px;}
.ls12{letter-spacing:0.318384px;}
.ls39{letter-spacing:0.318816px;}
.ls4e{letter-spacing:0.319680px;}
.ls4d{letter-spacing:0.320280px;}
.ls3{letter-spacing:0.356976px;}
.lsd{letter-spacing:0.359136px;}
.ls40{letter-spacing:0.367200px;}
.ls3c{letter-spacing:0.383760px;}
.lsa{letter-spacing:0.394272px;}
.ls31{letter-spacing:0.413280px;}
.ls4a{letter-spacing:0.417240px;}
.ls54{letter-spacing:0.419184px;}
.ls3d{letter-spacing:0.448704px;}
.ls9{letter-spacing:0.452880px;}
.ls2c{letter-spacing:0.460512px;}
.ls29{letter-spacing:0.466416px;}
.ls33{letter-spacing:0.476520px;}
.ls2d{letter-spacing:0.478224px;}
.ls4c{letter-spacing:0.479400px;}
.ls4f{letter-spacing:0.513216px;}
.ls1d{letter-spacing:0.517824px;}
.ls37{letter-spacing:0.519552px;}
.ls2e{letter-spacing:0.525456px;}
.ls55{letter-spacing:0.578592px;}
.ls51{letter-spacing:0.637632px;}
.ls56{letter-spacing:0.702576px;}
.ls50{letter-spacing:0.737712px;}
.ls3e{letter-spacing:0.755712px;}
.ls59{letter-spacing:0.845856px;}
.ls52{letter-spacing:1.115856px;}
.ls3b{letter-spacing:1.529136px;}
.ls41{letter-spacing:1.562400px;}
.ls25{letter-spacing:1.972800px;}
.ls36{letter-spacing:3.118200px;}
.ls58{letter-spacing:4.770432px;}
.ls4b{letter-spacing:4.772400px;}
.ls48{letter-spacing:5.263200px;}
.ls14{letter-spacing:5.305200px;}
.ls38{letter-spacing:5.396256px;}
.ls3a{letter-spacing:9.446400px;}
.ls53{letter-spacing:15.686928px;}
.ls46{letter-spacing:16.200000px;}
.ls1f{letter-spacing:19.893600px;}
.ls47{letter-spacing:21.924000px;}
.ls2f{letter-spacing:27.813744px;}
.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;}
}
.wsce{word-spacing:-27.872784px;}
.wsf7{word-spacing:-21.996000px;}
.ws8{word-spacing:-21.239136px;}
.ws33{word-spacing:-21.080448px;}
.wsde{word-spacing:-21.072096px;}
.ws9b{word-spacing:-19.965600px;}
.ws6e{word-spacing:-18.000000px;}
.wsed{word-spacing:-16.272000px;}
.ws10c{word-spacing:-15.462576px;}
.ws10d{word-spacing:-15.338592px;}
.ws10e{word-spacing:-15.238224px;}
.ws0{word-spacing:-12.122352px;}
.ws27{word-spacing:-11.110176px;}
.wsd6{word-spacing:-9.505440px;}
.wsd3{word-spacing:-5.455296px;}
.wsff{word-spacing:-5.335200px;}
.wsba{word-spacing:-2.044800px;}
.wse9{word-spacing:-1.634400px;}
.wsd7{word-spacing:-1.588176px;}
.ws10f{word-spacing:-0.940896px;}
.ws10b{word-spacing:-0.805392px;}
.ws112{word-spacing:-0.608256px;}
.wscb{word-spacing:-0.584496px;}
.wsd1{word-spacing:-0.578592px;}
.wsd0{word-spacing:-0.537264px;}
.wscd{word-spacing:-0.525456px;}
.wsd2{word-spacing:-0.519552px;}
.wsd9{word-spacing:-0.507744px;}
.ws5{word-spacing:-0.506160px;}
.wscf{word-spacing:-0.472320px;}
.ws7{word-spacing:-0.447552px;}
.wsd8{word-spacing:-0.442800px;}
.wse8{word-spacing:-0.439200px;}
.ws6{word-spacing:-0.410256px;}
.wsd4{word-spacing:-0.377856px;}
.wsc8{word-spacing:-0.330624px;}
.wsb1{word-spacing:-0.318384px;}
.wsbc{word-spacing:-0.307008px;}
.ws62{word-spacing:-0.289872px;}
.ws64{word-spacing:-0.289296px;}
.ws65{word-spacing:-0.283392px;}
.ws63{word-spacing:-0.275616px;}
.wsbf{word-spacing:-0.242352px;}
.wsf4{word-spacing:-0.129600px;}
.ws3e{word-spacing:-0.115200px;}
.ws48{word-spacing:-0.108000px;}
.ws1{word-spacing:-0.100800px;}
.wsab{word-spacing:-0.093600px;}
.wsa0{word-spacing:-0.086400px;}
.ws83{word-spacing:-0.079200px;}
.ws4{word-spacing:-0.072000px;}
.ws5a{word-spacing:-0.064800px;}
.wsc0{word-spacing:-0.059040px;}
.ws3{word-spacing:-0.057600px;}
.wsdf{word-spacing:-0.050400px;}
.ws2{word-spacing:-0.043200px;}
.ws4a{word-spacing:-0.036000px;}
.ws26{word-spacing:0.000000px;}
.wsd5{word-spacing:8.820576px;}
.wsdb{word-spacing:9.511344px;}
.ws10a{word-spacing:9.720000px;}
.ws102{word-spacing:10.778400px;}
.wsbe{word-spacing:10.922400px;}
.wsad{word-spacing:11.131200px;}
.ws36{word-spacing:11.232000px;}
.wsfc{word-spacing:11.260800px;}
.ws56{word-spacing:11.275200px;}
.ws96{word-spacing:11.376000px;}
.ws42{word-spacing:11.383200px;}
.ws6f{word-spacing:11.440800px;}
.ws76{word-spacing:11.469600px;}
.ws3b{word-spacing:11.527200px;}
.ws7e{word-spacing:11.556000px;}
.ws111{word-spacing:11.637600px;}
.ws6a{word-spacing:11.700000px;}
.ws57{word-spacing:11.772000px;}
.wsfb{word-spacing:11.779200px;}
.ws80{word-spacing:11.786400px;}
.ws44{word-spacing:11.836800px;}
.ws74{word-spacing:11.944800px;}
.ws31{word-spacing:11.988000px;}
.ws15{word-spacing:12.024000px;}
.ws95{word-spacing:12.031200px;}
.wsb0{word-spacing:12.175200px;}
.ws94{word-spacing:12.204000px;}
.ws114{word-spacing:12.211200px;}
.wse3{word-spacing:12.261600px;}
.wsc2{word-spacing:12.333600px;}
.ws37{word-spacing:12.369600px;}
.wsb3{word-spacing:12.412800px;}
.ws3f{word-spacing:12.456000px;}
.ws16{word-spacing:12.528000px;}
.ws117{word-spacing:12.600000px;}
.ws3d{word-spacing:12.614400px;}
.ws115{word-spacing:12.621060px;}
.ws116{word-spacing:12.708000px;}
.wsa5{word-spacing:12.744000px;}
.ws6b{word-spacing:12.816000px;}
.ws47{word-spacing:12.852000px;}
.wsf2{word-spacing:13.003200px;}
.ws5d{word-spacing:13.154400px;}
.ws45{word-spacing:13.176000px;}
.ws99{word-spacing:13.212000px;}
.ws60{word-spacing:13.377600px;}
.ws5f{word-spacing:13.384800px;}
.ws61{word-spacing:13.420800px;}
.ws72{word-spacing:13.428000px;}
.ws41{word-spacing:13.435200px;}
.ws3c{word-spacing:13.701600px;}
.ws11{word-spacing:14.184000px;}
.ws84{word-spacing:14.212800px;}
.wsfd{word-spacing:14.234400px;}
.ws71{word-spacing:14.436000px;}
.ws1c{word-spacing:14.522400px;}
.ws4d{word-spacing:14.817600px;}
.wse7{word-spacing:14.846400px;}
.wsda{word-spacing:14.901696px;}
.ws7c{word-spacing:15.004800px;}
.ws9{word-spacing:15.199200px;}
.ws14{word-spacing:15.206400px;}
.ws8e{word-spacing:15.444000px;}
.ws12{word-spacing:15.544800px;}
.ws5e{word-spacing:15.660000px;}
.ws3a{word-spacing:15.667200px;}
.ws79{word-spacing:15.674400px;}
.wsbb{word-spacing:15.976800px;}
.wsae{word-spacing:16.027200px;}
.ws52{word-spacing:16.063200px;}
.wsee{word-spacing:16.120800px;}
.wsec{word-spacing:16.128000px;}
.wsb8{word-spacing:16.149600px;}
.ws35{word-spacing:16.156800px;}
.ws7b{word-spacing:16.178400px;}
.ws69{word-spacing:16.192800px;}
.ws113{word-spacing:16.279200px;}
.ws50{word-spacing:16.300800px;}
.wsc1{word-spacing:16.610400px;}
.ws7a{word-spacing:16.617600px;}
.wsef{word-spacing:16.740000px;}
.ws110{word-spacing:16.848000px;}
.ws78{word-spacing:16.956000px;}
.ws8b{word-spacing:17.035200px;}
.wsb4{word-spacing:17.215200px;}
.wsfe{word-spacing:17.265600px;}
.wse1{word-spacing:17.380800px;}
.ws97{word-spacing:17.424000px;}
.ws91{word-spacing:17.474400px;}
.ws105{word-spacing:17.488800px;}
.ws104{word-spacing:17.496000px;}
.wsc5{word-spacing:17.503200px;}
.ws106{word-spacing:17.539200px;}
.ws34{word-spacing:17.589600px;}
.wsa2{word-spacing:17.748000px;}
.wsa6{word-spacing:17.834400px;}
.ws9e{word-spacing:17.870400px;}
.ws103{word-spacing:18.144000px;}
.wsc4{word-spacing:18.172800px;}
.wsa7{word-spacing:18.223200px;}
.ws88{word-spacing:18.352800px;}
.ws9c{word-spacing:18.576000px;}
.wsf3{word-spacing:18.727200px;}
.ws109{word-spacing:18.784800px;}
.ws43{word-spacing:19.224000px;}
.ws90{word-spacing:19.382400px;}
.ws6c{word-spacing:19.404000px;}
.ws107{word-spacing:19.490400px;}
.ws75{word-spacing:19.605600px;}
.ws93{word-spacing:19.634400px;}
.ws9a{word-spacing:19.821600px;}
.ws73{word-spacing:19.922400px;}
.ws92{word-spacing:20.152800px;}
.ws8f{word-spacing:20.232000px;}
.ws46{word-spacing:20.246400px;}
.ws89{word-spacing:20.296800px;}
.ws67{word-spacing:20.433600px;}
.ws5c{word-spacing:20.563200px;}
.ws4e{word-spacing:20.592000px;}
.ws81{word-spacing:20.649600px;}
.wse4{word-spacing:20.836800px;}
.ws98{word-spacing:20.944800px;}
.ws77{word-spacing:21.067200px;}
.wse5{word-spacing:21.247200px;}
.ws32{word-spacing:21.470400px;}
.ws5b{word-spacing:21.679200px;}
.ws68{word-spacing:21.693600px;}
.wsa3{word-spacing:21.708000px;}
.wsf6{word-spacing:21.852000px;}
.ws54{word-spacing:21.909600px;}
.wsc7{word-spacing:22.104000px;}
.wsb7{word-spacing:22.276800px;}
.ws51{word-spacing:22.341600px;}
.ws2e{word-spacing:22.370400px;}
.ws1a{word-spacing:22.507200px;}
.ws87{word-spacing:22.723200px;}
.ws66{word-spacing:22.766400px;}
.wsb2{word-spacing:23.320800px;}
.ws9d{word-spacing:23.392800px;}
.wsb9{word-spacing:23.450400px;}
.ws4f{word-spacing:23.781600px;}
.ws7d{word-spacing:23.803200px;}
.wsaa{word-spacing:23.810400px;}
.wsc3{word-spacing:23.925600px;}
.ws59{word-spacing:24.120000px;}
.ws9f{word-spacing:24.184800px;}
.ws38{word-spacing:24.206400px;}
.ws53{word-spacing:24.249600px;}
.ws70{word-spacing:24.386400px;}
.wsc6{word-spacing:24.602400px;}
.wsf5{word-spacing:24.746400px;}
.ws86{word-spacing:24.818400px;}
.ws85{word-spacing:24.825600px;}
.ws8d{word-spacing:24.861600px;}
.wsb5{word-spacing:25.192800px;}
.wsa9{word-spacing:25.437600px;}
.wsbd{word-spacing:25.675200px;}
.ws58{word-spacing:25.704000px;}
.ws29{word-spacing:25.776000px;}
.ws1f{word-spacing:25.941600px;}
.ws108{word-spacing:26.560800px;}
.wsca{word-spacing:26.562096px;}
.wsc9{word-spacing:26.579808px;}
.ws20{word-spacing:26.625600px;}
.wscc{word-spacing:26.691984px;}
.wsac{word-spacing:26.740800px;}
.wsaf{word-spacing:27.316800px;}
.wse0{word-spacing:27.345600px;}
.ws7f{word-spacing:27.410400px;}
.wsa1{word-spacing:27.482400px;}
.ws55{word-spacing:27.676800px;}
.ws4c{word-spacing:27.964800px;}
.ws8c{word-spacing:28.807200px;}
.ws39{word-spacing:29.196000px;}
.wsb6{word-spacing:29.872800px;}
.ws6d{word-spacing:30.672000px;}
.ws40{word-spacing:31.723200px;}
.ws28{word-spacing:31.802400px;}
.wsa4{word-spacing:32.284800px;}
.wseb{word-spacing:32.380800px;}
.ws8a{word-spacing:32.450400px;}
.ws1d{word-spacing:32.709600px;}
.wsf0{word-spacing:33.516000px;}
.wsf1{word-spacing:33.553200px;}
.wsa8{word-spacing:34.682400px;}
.ws101{word-spacing:36.036000px;}
.ws100{word-spacing:36.115200px;}
.wse2{word-spacing:38.376000px;}
.ws4b{word-spacing:39.376800px;}
.ws49{word-spacing:39.384000px;}
.wsf8{word-spacing:39.398400px;}
.ws22{word-spacing:41.004000px;}
.ws13{word-spacing:41.371200px;}
.ws17{word-spacing:41.652000px;}
.ws1e{word-spacing:43.077600px;}
.wse6{word-spacing:44.733600px;}
.ws2b{word-spacing:45.244800px;}
.wsa{word-spacing:47.894400px;}
.ws82{word-spacing:48.254400px;}
.ws10{word-spacing:51.602400px;}
.ws2f{word-spacing:52.041600px;}
.ws23{word-spacing:55.440000px;}
.ws21{word-spacing:57.960000px;}
.wsdc{word-spacing:58.048128px;}
.wsdd{word-spacing:58.561776px;}
.wsf{word-spacing:61.300800px;}
.wsb{word-spacing:62.668800px;}
.wsc{word-spacing:63.777600px;}
.wse{word-spacing:65.973600px;}
.ws24{word-spacing:66.442200px;}
.ws25{word-spacing:66.484800px;}
.ws2c{word-spacing:70.560000px;}
.wsd{word-spacing:72.633600px;}
.wsf9{word-spacing:73.929600px;}
.wsfa{word-spacing:73.980000px;}
.ws18{word-spacing:80.100000px;}
.ws1b{word-spacing:82.382400px;}
.wsea{word-spacing:83.980800px;}
.ws19{word-spacing:84.672000px;}
.ws2d{word-spacing:86.076000px;}
.ws2a{word-spacing:89.323200px;}
.ws30{word-spacing:141.840000px;}
._10{margin-left:-27.648828px;}
._11{margin-left:-26.440056px;}
._18{margin-left:-22.884240px;}
._17{margin-left:-21.692940px;}
._e{margin-left:-19.491600px;}
._16{margin-left:-15.977340px;}
._1a{margin-left:-14.492832px;}
._15{margin-left:-9.590424px;}
._14{margin-left:-8.416776px;}
._12{margin-left:-5.138280px;}
._13{margin-left:-4.122000px;}
._f{margin-left:-2.547360px;}
._0{margin-left:-1.065600px;}
._5{width:1.762560px;}
._3{width:3.006720px;}
._4{width:4.016160px;}
._c{width:5.451840px;}
._9{width:7.349760px;}
._a{width:8.682540px;}
._6{width:9.785460px;}
._b{width:10.906680px;}
._1b{width:14.209176px;}
._19{width:16.291872px;}
._d{width:26.935200px;}
._2{width:37.313280px;}
._8{width:41.572800px;}
._1{width:55.206720px;}
._7{width:58.464000px;}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(44,110,158);}
.fc4{color:rgb(142,164,196);}
.fc6{color:rgb(54,52,53);}
.fc3{color:rgb(72,74,74);}
.fc2{color:rgb(120,121,121);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,174,174);}
.fs4{font-size:28.800000px;}
.fs9{font-size:31.680000px;}
.fs8{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fsa{font-size:44.640000px;}
.fs0{font-size:47.520000px;}
.fs7{font-size:50.400000px;}
.fs5{font-size:53.280000px;}
.fs1{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fse{font-size:67.680000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:77.760000px;}
.fs6{font-size:83.520000px;}
.fsf{font-size:95.040000px;}
.y5a{bottom:-9.720000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.960000px;}
.y2{bottom:4.320000px;}
.y3{bottom:13.499958px;}
.y57{bottom:25.154997px;}
.y3f{bottom:25.874997px;}
.y5b{bottom:26.234997px;}
.y58{bottom:38.294955px;}
.y15d{bottom:43.514997px;}
.y309{bottom:44.954997px;}
.y56{bottom:46.034997px;}
.yd8{bottom:46.394997px;}
.y3e{bottom:46.754997px;}
.y184{bottom:48.554997px;}
.y205{bottom:49.634997px;}
.yf5{bottom:50.714997px;}
.y1b8{bottom:51.434997px;}
.y22d{bottom:52.514997px;}
.y244{bottom:53.594997px;}
.y2ad{bottom:55.754997px;}
.y128{bottom:56.114997px;}
.y2da{bottom:57.194997px;}
.yd7{bottom:57.554997px;}
.y308{bottom:60.074997px;}
.y22c{bottom:62.954997px;}
.y243{bottom:63.674997px;}
.y15c{bottom:64.394997px;}
.y1b7{bottom:65.114997px;}
.y9e{bottom:66.194997px;}
.y55{bottom:67.274997px;}
.y3d{bottom:67.994997px;}
.y183{bottom:70.514997px;}
.yf4{bottom:71.594997px;}
.y2ac{bottom:74.474997px;}
.y307{bottom:75.194997px;}
.yd6{bottom:76.634997px;}
.y127{bottom:77.354997px;}
.y2d9{bottom:78.074997px;}
.y22b{bottom:83.834997px;}
.y2ab{bottom:84.554997px;}
.y242{bottom:84.914997px;}
.y15b{bottom:85.274997px;}
.y272{bottom:85.634997px;}
.y1b6{bottom:85.994997px;}
.yd5{bottom:86.714997px;}
.y9d{bottom:87.074997px;}
.y54{bottom:88.154997px;}
.y3c{bottom:88.874997px;}
.y306{bottom:89.954997px;}
.yf3{bottom:91.754997px;}
.y182{bottom:92.474997px;}
.y204{bottom:93.554997px;}
.y126{bottom:98.234997px;}
.y2d8{bottom:98.954997px;}
.y271{bottom:101.474997px;}
.y22a{bottom:102.554997px;}
.y241{bottom:103.274997px;}
.y305{bottom:105.074997px;}
.y2aa{bottom:105.434997px;}
.y15a{bottom:106.514997px;}
.y1b5{bottom:107.234997px;}
.y9c{bottom:107.954997px;}
.y53{bottom:109.034997px;}
.y32d{bottom:109.394997px;}
.y3b{bottom:109.754997px;}
.yf2{bottom:110.474997px;}
.y270{bottom:112.274997px;}
.y203{bottom:112.634997px;}
.y181{bottom:114.434997px;}
.y2d7{bottom:117.674997px;}
.y125{bottom:119.114997px;}
.y304{bottom:120.194997px;}
.y202{bottom:122.714997px;}
.yd4{bottom:126.314997px;}
.y2a9{bottom:126.674997px;}
.y159{bottom:127.394997px;}
.y26f{bottom:127.754997px;}
.y1b4{bottom:128.114997px;}
.y9b{bottom:129.194997px;}
.y52{bottom:130.274997px;}
.y32c{bottom:130.634997px;}
.y3a{bottom:130.994997px;}
.yf1{bottom:132.794997px;}
.y229{bottom:133.514997px;}
.y180{bottom:134.954997px;}
.yd3{bottom:137.475042px;}
.y124{bottom:137.835042px;}
.y201{bottom:143.595042px;}
.yf0{bottom:146.475042px;}
.y2a8{bottom:147.555042px;}
.y2d6{bottom:148.635042px;}
.y158{bottom:148.995042px;}
.y123{bottom:149.355042px;}
.y9a{bottom:150.075042px;}
.y51{bottom:151.155042px;}
.y32b{bottom:151.515042px;}
.y39{bottom:151.875042px;}
.y228{bottom:152.235042px;}
.y17f{bottom:153.315042px;}
.y26e{bottom:155.475042px;}
.yd2{bottom:156.555042px;}
.yef{bottom:157.635042px;}
.y227{bottom:162.675042px;}
.y240{bottom:164.475042px;}
.y200{bottom:164.835042px;}
.y303{bottom:165.195042px;}
.yd1{bottom:166.635042px;}
.y2a7{bottom:168.435042px;}
.y122{bottom:168.795042px;}
.y2d5{bottom:169.875042px;}
.y1b3{bottom:170.235042px;}
.y99{bottom:170.955042px;}
.y50{bottom:172.035042px;}
.y32a{bottom:172.395042px;}
.y38{bottom:172.755042px;}
.y26d{bottom:173.475042px;}
.y17e{bottom:176.715042px;}
.yee{bottom:178.875042px;}
.y302{bottom:179.955042px;}
.y23f{bottom:183.195042px;}
.y226{bottom:183.555042px;}
.y121{bottom:183.915042px;}
.yd0{bottom:185.355042px;}
.y1ff{bottom:185.715042px;}
.y2d4{bottom:188.235042px;}
.y2a6{bottom:189.675042px;}
.y157{bottom:190.035042px;}
.y1b2{bottom:191.115042px;}
.y26c{bottom:191.475042px;}
.y98{bottom:192.195042px;}
.y4f{bottom:193.275042px;}
.y329{bottom:193.635042px;}
.y37{bottom:193.995042px;}
.y301{bottom:195.075042px;}
.ycf{bottom:195.435042px;}
.y17d{bottom:196.875042px;}
.y120{bottom:197.595042px;}
.y2d3{bottom:198.675042px;}
.yed{bottom:199.755042px;}
.y156{bottom:201.555042px;}
.y225{bottom:204.795042px;}
.y1fe{bottom:206.595042px;}
.y26b{bottom:207.675042px;}
.y2a5{bottom:208.035042px;}
.y11f{bottom:209.115042px;}
.y300{bottom:210.195042px;}
.y1b1{bottom:211.995042px;}
.y17c{bottom:212.715042px;}
.y97{bottom:213.075042px;}
.y4e{bottom:214.155042px;}
.y23e{bottom:214.515042px;}
.y36{bottom:214.875042px;}
.yce{bottom:216.315042px;}
.y2a4{bottom:218.115042px;}
.y26a{bottom:218.475042px;}
.y2d2{bottom:219.555042px;}
.yec{bottom:220.635042px;}
.y155{bottom:221.355042px;}
.y2ff{bottom:224.955042px;}
.y224{bottom:225.675042px;}
.y1fd{bottom:227.835042px;}
.y11e{bottom:229.995042px;}
.y1b0{bottom:233.235042px;}
.y17b{bottom:233.595042px;}
.y96{bottom:233.955042px;}
.y269{bottom:234.315042px;}
.y4d{bottom:235.035042px;}
.y328{bottom:235.395042px;}
.y35{bottom:235.755042px;}
.y154{bottom:236.115042px;}
.ycd{bottom:237.555042px;}
.y2d1{bottom:237.915042px;}
.y2a3{bottom:239.355042px;}
.y2fe{bottom:240.075042px;}
.yeb{bottom:241.875042px;}
.y223{bottom:244.035042px;}
.y268{bottom:244.755042px;}
.y2d0{bottom:248.355042px;}
.y1fc{bottom:248.715042px;}
.y153{bottom:249.795042px;}
.y11d{bottom:250.875042px;}
.y23d{bottom:251.595042px;}
.y1af{bottom:254.115042px;}
.y222{bottom:254.475042px;}
.y17a{bottom:254.835042px;}
.y95{bottom:255.195042px;}
.y4c{bottom:256.275042px;}
.y327{bottom:256.635042px;}
.y34{bottom:256.995042px;}
.ycc{bottom:258.435042px;}
.y2a2{bottom:260.235042px;}
.y152{bottom:261.315042px;}
.yea{bottom:261.675042px;}
.y267{bottom:264.195042px;}
.y1fb{bottom:268.875042px;}
.y2cf{bottom:269.235042px;}
.y23c{bottom:269.955042px;}
.y11c{bottom:272.115042px;}
.y221{bottom:272.835042px;}
.y1ae{bottom:274.995042px;}
.ye9{bottom:275.715042px;}
.y94{bottom:276.075042px;}
.ycb{bottom:276.795042px;}
.y4b{bottom:277.155042px;}
.y33{bottom:277.875042px;}
.y326{bottom:278.595042px;}
.y2a1{bottom:281.115042px;}
.y151{bottom:282.195042px;}
.y1fa{bottom:282.915042px;}
.y266{bottom:283.275042px;}
.y23b{bottom:284.715042px;}
.y2fd{bottom:285.075042px;}
.yca{bottom:287.235042px;}
.ye8{bottom:288.675042px;}
.y2ce{bottom:290.115042px;}
.y11b{bottom:292.995042px;}
.y1ad{bottom:294.435042px;}
.y1f9{bottom:295.875042px;}
.y179{bottom:296.595042px;}
.y93{bottom:296.955042px;}
.y4a{bottom:298.035042px;}
.y32{bottom:298.755042px;}
.y2a0{bottom:299.835042px;}
.y2fc{bottom:300.195042px;}
.y23a{bottom:301.995042px;}
.y265{bottom:302.355042px;}
.y150{bottom:303.075042px;}
.y220{bottom:304.155042px;}
.yc9{bottom:308.115042px;}
.y2cd{bottom:308.835042px;}
.ye7{bottom:309.555042px;}
.y29f{bottom:309.915042px;}
.y11a{bottom:311.355042px;}
.y325{bottom:313.875042px;}
.y2fb{bottom:314.955042px;}
.y178{bottom:317.835042px;}
.y92{bottom:318.195042px;}
.y2cc{bottom:318.915042px;}
.y49{bottom:319.275042px;}
.y31{bottom:319.995042px;}
.y1f8{bottom:321.435042px;}
.y21f{bottom:322.515042px;}
.y119{bottom:322.875042px;}
.ye6{bottom:323.235042px;}
.y14f{bottom:324.315042px;}
.yc8{bottom:326.835042px;}
.y1ac{bottom:328.995042px;}
.y2fa{bottom:330.075042px;}
.y29e{bottom:330.795042px;}
.y21e{bottom:333.675042px;}
.ye5{bottom:334.035042px;}
.y324{bottom:335.115042px;}
.y1f7{bottom:336.195042px;}
.yc7{bottom:336.915042px;}
.y177{bottom:338.715042px;}
.y91{bottom:339.075042px;}
.y2cb{bottom:339.795042px;}
.y48{bottom:340.155042px;}
.y264{bottom:340.515042px;}
.y30{bottom:340.875042px;}
.y118{bottom:344.475042px;}
.y14e{bottom:345.195042px;}
.y1ab{bottom:350.235042px;}
.y1f6{bottom:350.595042px;}
.y29d{bottom:352.035042px;}
.y21d{bottom:352.755042px;}
.y323{bottom:355.995042px;}
.yc6{bottom:358.155042px;}
.y176{bottom:359.595042px;}
.y90{bottom:359.955042px;}
.y263{bottom:360.675042px;}
.y47{bottom:361.035042px;}
.y2f{bottom:361.755042px;}
.y21c{bottom:363.915042px;}
.y117{bottom:364.275042px;}
.y1f5{bottom:365.355042px;}
.y14d{bottom:366.075042px;}
.y29c{bottom:370.395042px;}
.y1aa{bottom:371.115042px;}
.y2f9{bottom:375.075042px;}
.y322{bottom:377.595042px;}
.y175{bottom:378.315042px;}
.yc5{bottom:379.035042px;}
.y2ca{bottom:379.395042px;}
.y1f4{bottom:380.475042px;}
.y29b{bottom:380.835042px;}
.y8f{bottom:381.195042px;}
.y46{bottom:382.275042px;}
.y262{bottom:382.635042px;}
.y2e{bottom:382.995042px;}
.y21b{bottom:385.875042px;}
.y14c{bottom:387.315042px;}
.y174{bottom:388.755042px;}
.y2c9{bottom:389.835042px;}
.y2f8{bottom:390.195042px;}
.y1a9{bottom:391.995042px;}
.y116{bottom:392.715042px;}
.yc4{bottom:395.235042px;}
.y1f3{bottom:395.595042px;}
.y321{bottom:398.835042px;}
.y29a{bottom:401.715042px;}
.y8e{bottom:402.075042px;}
.y45{bottom:403.155042px;}
.y2d{bottom:403.875042px;}
.y115{bottom:404.235042px;}
.y21a{bottom:404.955042px;}
.y14b{bottom:408.195042px;}
.y173{bottom:409.635042px;}
.y1f2{bottom:410.355042px;}
.y2c8{bottom:410.715042px;}
.y1a8{bottom:413.235042px;}
.y219{bottom:415.035042px;}
.yc3{bottom:416.115042px;}
.y2f7{bottom:420.075042px;}
.y320{bottom:421.155042px;}
.y299{bottom:422.595042px;}
.y8d{bottom:422.955042px;}
.y44{bottom:424.035042px;}
.y2c{bottom:424.755042px;}
.y114{bottom:425.115042px;}
.y1f1{bottom:425.475042px;}
.y14a{bottom:429.075042px;}
.y172{bottom:430.875042px;}
.y2c7{bottom:431.595042px;}
.y1a7{bottom:434.475042px;}
.yc2{bottom:434.835042px;}
.y2f6{bottom:435.195042px;}
.y218{bottom:435.915042px;}
.y1f0{bottom:440.595042px;}
.y298{bottom:443.835042px;}
.y43{bottom:444.195042px;}
.y2b{bottom:444.915042px;}
.y261{bottom:445.635042px;}
.y113{bottom:445.995042px;}
.y31f{bottom:448.155042px;}
.y2f5{bottom:449.955042px;}
.y149{bottom:450.315042px;}
.y171{bottom:451.755042px;}
.y2c6{bottom:452.835042px;}
.y1a6{bottom:455.355042px;}
.y217{bottom:457.155042px;}
.y42{bottom:461.835042px;}
.y2a{bottom:462.915042px;}
.y297{bottom:464.715042px;}
.y8c{bottom:465.075042px;}
.yc1{bottom:465.795042px;}
.y260{bottom:466.875042px;}
.y112{bottom:467.235042px;}
.y31e{bottom:468.315042px;}
.y1a5{bottom:470.475042px;}
.y148{bottom:471.195042px;}
.y170{bottom:472.635042px;}
.y2c5{bottom:473.715042px;}
.y216{bottom:478.035042px;}
.y2f4{bottom:480.195042px;}
.y41{bottom:482.355042px;}
.y29{bottom:483.435042px;}
.y1ef{bottom:485.594892px;}
.y8b{bottom:485.955042px;}
.y1a4{bottom:486.315042px;}
.yc0{bottom:487.035042px;}
.y25f{bottom:487.755042px;}
.y111{bottom:488.115042px;}
.y147{bottom:492.075042px;}
.y16f{bottom:493.875042px;}
.y2c4{bottom:494.594892px;}
.y2f3{bottom:494.955042px;}
.y40{bottom:496.755042px;}
.y28{bottom:497.835042px;}
.y215{bottom:498.555042px;}
.y1ee{bottom:500.355042px;}
.y31d{bottom:504.315042px;}
.y8a{bottom:504.675042px;}
.y296{bottom:506.835042px;}
.y1a3{bottom:507.555042px;}
.ybf{bottom:507.915042px;}
.y25e{bottom:508.635042px;}
.y110{bottom:508.995042px;}
.y2f2{bottom:510.075042px;}
.y146{bottom:513.315042px;}
.y89{bottom:514.755042px;}
.y1ed{bottom:515.475042px;}
.y2c3{bottom:515.835042px;}
.y214{bottom:516.555042px;}
.y27{bottom:522.315042px;}
.y2f1{bottom:525.195042px;}
.ybe{bottom:526.635042px;}
.y295{bottom:527.715042px;}
.y1a2{bottom:528.435042px;}
.y25d{bottom:529.155042px;}
.y10f{bottom:530.235042px;}
.y1ec{bottom:530.594892px;}
.y145{bottom:534.195042px;}
.y88{bottom:535.635042px;}
.y2c2{bottom:536.715042px;}
.ybd{bottom:537.075042px;}
.y213{bottom:539.235042px;}
.y2f0{bottom:539.955042px;}
.y1eb{bottom:545.355042px;}
.y25c{bottom:546.795042px;}
.y294{bottom:548.594892px;}
.y1a1{bottom:549.315042px;}
.y10e{bottom:551.115042px;}
.y144{bottom:552.915042px;}
.y26{bottom:553.275042px;}
.y2ef{bottom:555.075042px;}
.y212{bottom:556.155042px;}
.y87{bottom:556.875042px;}
.y2c1{bottom:557.594892px;}
.y1ea{bottom:560.475042px;}
.y143{bottom:563.355042px;}
.y25b{bottom:567.675042px;}
.y31c{bottom:569.475042px;}
.y10d{bottom:569.835042px;}
.y2ee{bottom:570.195042px;}
.ybc{bottom:570.555042px;}
.y211{bottom:572.715042px;}
.y1e9{bottom:575.594892px;}
.y2c0{bottom:576.315042px;}
.y86{bottom:577.755042px;}
.y10c{bottom:580.275042px;}
.y25{bottom:583.155042px;}
.ybb{bottom:583.514892px;}
.y2ed{bottom:584.955042px;}
.y25a{bottom:586.395042px;}
.y2bf{bottom:586.755042px;}
.y210{bottom:588.555042px;}
.y1e8{bottom:590.355042px;}
.y293{bottom:590.715042px;}
.y1a0{bottom:591.435042px;}
.y259{bottom:596.475042px;}
.y142{bottom:598.275042px;}
.y85{bottom:598.635042px;}
.y10b{bottom:600.075042px;}
.y24{bottom:602.594892px;}
.yba{bottom:604.395042px;}
.y1e7{bottom:605.475042px;}
.y20f{bottom:606.555042px;}
.y2be{bottom:607.635042px;}
.y292{bottom:611.594892px;}
.y141{bottom:611.955042px;}
.y19f{bottom:612.315042px;}
.y10a{bottom:615.195042px;}
.y16e{bottom:617.355042px;}
.y23{bottom:617.715042px;}
.y84{bottom:619.875042px;}
.y1e6{bottom:620.594892px;}
.y20e{bottom:621.315042px;}
.y140{bottom:623.115042px;}
.yb9{bottom:625.275042px;}
.y16d{bottom:627.434892px;}
.y109{bottom:628.875042px;}
.y2ec{bottom:629.955042px;}
.y31b{bottom:632.475042px;}
.y22{bottom:632.835042px;}
.y19e{bottom:633.555042px;}
.y20d{bottom:634.275042px;}
.y239{bottom:634.635042px;}
.y1e5{bottom:635.355042px;}
.y258{bottom:636.075042px;}
.y108{bottom:640.035042px;}
.y83{bottom:640.755042px;}
.y20c{bottom:642.915042px;}
.y13f{bottom:643.995042px;}
.y2eb{bottom:645.075042px;}
.y257{bottom:646.155042px;}
.yb8{bottom:646.514892px;}
.y21{bottom:647.594892px;}
.y238{bottom:647.955042px;}
.y16c{bottom:648.675042px;}
.y2bd{bottom:649.755042px;}
.y1e4{bottom:650.475042px;}
.y291{bottom:653.715042px;}
.y19d{bottom:654.434892px;}
.y2ea{bottom:660.195042px;}
.y20{bottom:661.275042px;}
.y82{bottom:661.635042px;}
.y13e{bottom:665.235042px;}
.y1e3{bottom:665.594892px;}
.yb7{bottom:667.395042px;}
.y237{bottom:668.835042px;}
.y16b{bottom:669.555042px;}
.y2bc{bottom:670.635042px;}
.y1f{bottom:673.514892px;}
.y290{bottom:674.594892px;}
.y2e9{bottom:674.955042px;}
.y19c{bottom:675.315042px;}
.y1e2{bottom:680.355042px;}
.y107{bottom:682.155042px;}
.y81{bottom:682.875042px;}
.y256{bottom:685.755042px;}
.y13d{bottom:686.115042px;}
.yb6{bottom:688.275042px;}
.y2bb{bottom:689.355042px;}
.y236{bottom:690.075042px;}
.y16a{bottom:690.434892px;}
.y1e1{bottom:695.475042px;}
.y255{bottom:695.835042px;}
.y19b{bottom:696.555042px;}
.y1e{bottom:698.715042px;}
.y2ba{bottom:699.434892px;}
.y106{bottom:703.035042px;}
.y80{bottom:703.755042px;}
.y2e8{bottom:705.195042px;}
.y13c{bottom:706.995042px;}
.yb5{bottom:709.514892px;}
.y1e0{bottom:710.594892px;}
.y235{bottom:710.955042px;}
.y169{bottom:711.675042px;}
.y28f{bottom:716.715042px;}
.y254{bottom:717.075042px;}
.y19a{bottom:717.434892px;}
.y31a{bottom:717.795042px;}
.y2e7{bottom:719.955042px;}
.y2b9{bottom:720.315042px;}
.y1d{bottom:723.915042px;}
.y105{bottom:724.275042px;}
.y7f{bottom:724.635042px;}
.y1df{bottom:725.354892px;}
.y13b{bottom:725.715042px;}
.y1c6{bottom:730.035042px;}
.yb4{bottom:730.395042px;}
.y234{bottom:731.835042px;}
.y168{bottom:732.555042px;}
.y2e6{bottom:735.075042px;}
.y253{bottom:735.434892px;}
.y13a{bottom:736.514892px;}
.y319{bottom:736.875042px;}
.y28e{bottom:737.594892px;}
.y199{bottom:738.315042px;}
.y1de{bottom:740.475042px;}
.y2b8{bottom:741.555042px;}
.y104{bottom:745.155042px;}
.y7e{bottom:745.875042px;}
.y1c{bottom:749.115042px;}
.y2e5{bottom:750.195042px;}
.y1c5{bottom:750.915042px;}
.yb3{bottom:751.275042px;}
.y233{bottom:753.075042px;}
.y167{bottom:753.434892px;}
.y1dd{bottom:755.595042px;}
.y139{bottom:755.955042px;}
.y28d{bottom:758.835042px;}
.y198{bottom:759.554892px;}
.y2b7{bottom:759.915042px;}
.y103{bottom:763.514892px;}
.y2e4{bottom:764.955042px;}
.y7d{bottom:766.755042px;}
.y2b6{bottom:769.995042px;}
.y1dc{bottom:770.354892px;}
.y138{bottom:771.075042px;}
.y1c4{bottom:772.155042px;}
.yb2{bottom:772.514892px;}
.y1b{bottom:772.874892px;}
.y232{bottom:773.955042px;}
.y318{bottom:774.315042px;}
.y166{bottom:774.675042px;}
.y102{bottom:775.034892px;}
.y197{bottom:778.635042px;}
.y28c{bottom:779.714892px;}
.y2e3{bottom:780.075042px;}
.y137{bottom:784.755042px;}
.y1db{bottom:785.475042px;}
.y252{bottom:786.915042px;}
.y7c{bottom:787.275042px;}
.y1a{bottom:787.995042px;}
.y2b5{bottom:791.235042px;}
.y196{bottom:792.315042px;}
.y1c3{bottom:793.034892px;}
.yb1{bottom:793.394892px;}
.y231{bottom:794.115042px;}
.y2e2{bottom:795.194892px;}
.y165{bottom:795.554892px;}
.y136{bottom:796.275042px;}
.y101{bottom:796.635042px;}
.y28b{bottom:800.235042px;}
.y1da{bottom:800.595042px;}
.y19{bottom:803.115042px;}
.y251{bottom:804.915042px;}
.y7b{bottom:805.635042px;}
.y2e1{bottom:811.755042px;}
.y230{bottom:812.115042px;}
.y195{bottom:813.554892px;}
.y1c2{bottom:813.915042px;}
.yb0{bottom:814.275042px;}
.y1d9{bottom:815.354892px;}
.y100{bottom:816.435042px;}
.y317{bottom:816.795042px;}
.y135{bottom:817.155042px;}
.y18{bottom:817.874892px;}
.y28a{bottom:818.235042px;}
.y250{bottom:825.795042px;}
.y7a{bottom:829.755042px;}
.y1d8{bottom:830.475042px;}
.y2e0{bottom:830.835042px;}
.yff{bottom:831.194892px;}
.y17{bottom:832.995042px;}
.y194{bottom:834.435042px;}
.y1c1{bottom:835.155042px;}
.yaf{bottom:835.514892px;}
.y164{bottom:837.675042px;}
.y134{bottom:838.034892px;}
.y2df{bottom:840.915042px;}
.y289{bottom:842.354892px;}
.y22f{bottom:844.874892px;}
.yfe{bottom:845.234892px;}
.y1d7{bottom:845.595042px;}
.y79{bottom:846.315042px;}
.y24f{bottom:846.675042px;}
.y16{bottom:848.115042px;}
.y2b4{bottom:854.234892px;}
.y193{bottom:855.315042px;}
.y1c0{bottom:856.034892px;}
.yae{bottom:856.394892px;}
.y288{bottom:857.475042px;}
.y163{bottom:858.554892px;}
.y133{bottom:859.275042px;}
.y1d6{bottom:860.354892px;}
.y78{bottom:861.075042px;}
.y2de{bottom:861.795042px;}
.y15{bottom:862.874892px;}
.y24e{bottom:867.915042px;}
.y287{bottom:871.514892px;}
.y2b3{bottom:872.595042px;}
.y1d5{bottom:875.475042px;}
.y192{bottom:875.835042px;}
.y1bf{bottom:876.915042px;}
.y6c{bottom:877.275042px;}
.y14{bottom:877.995042px;}
.y132{bottom:880.155042px;}
.y2b2{bottom:883.034892px;}
.y286{bottom:883.755042px;}
.y316{bottom:886.635042px;}
.y162{bottom:888.075042px;}
.y24d{bottom:888.795042px;}
.y1d4{bottom:890.595042px;}
.ye4{bottom:891.675042px;}
.y13{bottom:893.115042px;}
.y191{bottom:893.475042px;}
.y77{bottom:895.275042px;}
.y6b{bottom:898.155042px;}
.yad{bottom:898.514892px;}
.y131{bottom:901.034892px;}
.y315{bottom:901.394892px;}
.y2b1{bottom:903.915042px;}
.y1d3{bottom:905.354892px;}
.ye3{bottom:906.435042px;}
.y12{bottom:907.874892px;}
.y285{bottom:908.234892px;}
.y161{bottom:909.315042px;}
.y24c{bottom:909.675042px;}
.y190{bottom:914.354892px;}
.y76{bottom:916.155042px;}
.y314{bottom:916.514892px;}
.yac{bottom:916.874892px;}
.y6a{bottom:919.034892px;}
.yfd{bottom:919.394892px;}
.y1d2{bottom:920.475042px;}
.y130{bottom:922.275042px;}
.ye2{bottom:922.635042px;}
.y11{bottom:922.995042px;}
.y2b0{bottom:924.795042px;}
.y284{bottom:926.234892px;}
.yab{bottom:926.955042px;}
.y160{bottom:929.115042px;}
.y24b{bottom:930.915042px;}
.y313{bottom:931.635042px;}
.y2dd{bottom:932.714892px;}
.y18f{bottom:935.595042px;}
.y75{bottom:937.034892px;}
.y10{bottom:938.115042px;}
.y69{bottom:940.275042px;}
.y12f{bottom:943.155042px;}
.ye1{bottom:943.514892px;}
.y15f{bottom:943.874892px;}
.y283{bottom:944.234892px;}
.y312{bottom:946.394892px;}
.yaa{bottom:948.194892px;}
.y1d1{bottom:950.354892px;}
.y24a{bottom:951.795042px;}
.y1be{bottom:952.155042px;}
.yf{bottom:952.874892px;}
.y2af{bottom:953.595042px;}
.y18e{bottom:953.955042px;}
.y74{bottom:957.554892px;}
.y15e{bottom:957.915042px;}
.y68{bottom:961.155042px;}
.yfc{bottom:961.514892px;}
.y282{bottom:962.234892px;}
.y12e{bottom:964.034892px;}
.ye0{bottom:964.394892px;}
.y1d0{bottom:965.475042px;}
.ye{bottom:967.995042px;}
.ya9{bottom:969.075042px;}
.y2dc{bottom:972.315042px;}
.y249{bottom:972.675042px;}
.y1bd{bottom:973.034892px;}
.y2ae{bottom:974.475042px;}
.y73{bottom:975.554892px;}
.y311{bottom:975.915042px;}
.y281{bottom:978.435042px;}
.y67{bottom:981.675042px;}
.yfb{bottom:982.394892px;}
.y12d{bottom:982.755042px;}
.yd{bottom:983.115042px;}
.y18d{bottom:985.275042px;}
.ydf{bottom:985.635042px;}
.y280{bottom:989.234892px;}
.ya8{bottom:989.955042px;}
.y72{bottom:990.675042px;}
.y12c{bottom:993.194892px;}
.y1bc{bottom:993.915042px;}
.y66{bottom:997.514892px;}
.yc{bottom:1002.194892px;}
.yfa{bottom:1003.275042px;}
.y27f{bottom:1005.074892px;}
.y71{bottom:1005.435042px;}
.y18c{bottom:1006.155042px;}
.yde{bottom:1006.514892px;}
.y1cf{bottom:1008.315042px;}
.ya7{bottom:1011.194892px;}
.y12b{bottom:1012.995042px;}
.y27e{bottom:1014.795042px;}
.y1bb{bottom:1015.155042px;}
.yb{bottom:1016.234892px;}
.y65{bottom:1018.394892px;}
.y70{bottom:1020.554892px;}
.yf9{bottom:1024.514892px;}
.ya{bottom:1026.315042px;}
.y18b{bottom:1027.034892px;}
.ydd{bottom:1027.394892px;}
.y12a{bottom:1028.115042px;}
.y20b{bottom:1029.915042px;}
.ya6{bottom:1032.074892px;}
.y27d{bottom:1032.795042px;}
.y1ce{bottom:1033.874892px;}
.y248{bottom:1034.234892px;}
.y6f{bottom:1035.675042px;}
.y1ba{bottom:1036.034892px;}
.y64{bottom:1039.635042px;}
.y129{bottom:1041.795042px;}
.y2db{bottom:1042.874892px;}
.y20a{bottom:1043.595042px;}
.yf8{bottom:1045.394892px;}
.y9{bottom:1048.275042px;}
.ydc{bottom:1048.635042px;}
.y6e{bottom:1050.435042px;}
.y27c{bottom:1050.795042px;}
.ya5{bottom:1052.955042px;}
.y247{bottom:1054.394892px;}
.y209{bottom:1054.755042px;}
.y310{bottom:1055.475042px;}
.y1b9{bottom:1056.194892px;}
.y1cd{bottom:1059.795042px;}
.y63{bottom:1060.514892px;}
.y6d{bottom:1065.554892px;}
.yf7{bottom:1066.275042px;}
.y27b{bottom:1066.635042px;}
.y18a{bottom:1069.155042px;}
.ydb{bottom:1069.514892px;}
.y8{bottom:1070.234892px;}
.ya4{bottom:1074.194892px;}
.y30f{bottom:1074.915042px;}
.y22e{bottom:1075.275042px;}
.y208{bottom:1075.995042px;}
.y27a{bottom:1076.354892px;}
.y62{bottom:1081.394892px;}
.yf6{bottom:1084.995042px;}
.y7{bottom:1085.354892px;}
.y1cc{bottom:1085.714892px;}
.yda{bottom:1089.675042px;}
.y189{bottom:1090.755042px;}
.y30e{bottom:1092.194892px;}
.y279{bottom:1094.354892px;}
.ya3{bottom:1095.074892px;}
.y207{bottom:1097.234892px;}
.y61{bottom:1102.635042px;}
.yd9{bottom:1103.354892px;}
.y246{bottom:1107.675042px;}
.y278{bottom:1110.194892px;}
.y1cb{bottom:1111.635042px;}
.y188{bottom:1112.714892px;}
.ya2{bottom:1115.955042px;}
.y206{bottom:1118.115042px;}
.y277{bottom:1119.915042px;}
.y60{bottom:1123.514892px;}
.y30d{bottom:1124.234892px;}
.y245{bottom:1126.755042px;}
.y187{bottom:1134.675042px;}
.ya1{bottom:1137.194892px;}
.y1ca{bottom:1137.554892px;}
.y276{bottom:1137.915042px;}
.y30c{bottom:1138.995042px;}
.y5f{bottom:1144.755042px;}
.y30b{bottom:1154.115042px;}
.y275{bottom:1155.914892px;}
.y186{bottom:1156.635042px;}
.ya0{bottom:1158.074892px;}
.y5e{bottom:1159.874892px;}
.y1c9{bottom:1161.675042px;}
.y6{bottom:1167.795042px;}
.y30a{bottom:1169.234892px;}
.y274{bottom:1173.914892px;}
.y5d{bottom:1174.635042px;}
.y1c8{bottom:1176.435042px;}
.y185{bottom:1178.595042px;}
.y9f{bottom:1178.955042px;}
.y5{bottom:1183.995042px;}
.y5c{bottom:1188.675042px;}
.y1c7{bottom:1189.755042px;}
.y273{bottom:1190.115042px;}
.y4{bottom:1199.115042px;}
.y1{bottom:1207.935000px;}
.h10{height:15.120000px;}
.h2{height:15.120030px;}
.h9{height:19.996875px;}
.h14{height:21.996563px;}
.h13{height:24.996094px;}
.h19{height:26.995781px;}
.h16{height:28.995469px;}
.h15{height:30.995156px;}
.h12{height:31.672266px;}
.h3{height:32.994844px;}
.h11{height:34.015781px;}
.he{height:34.994531px;}
.hf{height:36.994219px;}
.h17{height:39.190078px;}
.h5{height:40.993594px;}
.ha{height:43.940391px;}
.h6{height:44.992969px;}
.h18{height:48.690703px;}
.h1a{height:48.796875px;}
.h1c{height:49.886719px;}
.h7{height:49.992188px;}
.hd{height:52.417969px;}
.h1b{height:53.991563px;}
.h1d{height:55.816172px;}
.hb{height:56.604375px;}
.hc{height:57.990938px;}
.h8{height:59.378906px;}
.h1e{height:78.380156px;}
.h4{height:1235.835000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:22.680000px;}
.w5{width:303.840000px;}
.w4{width:334.080000px;}
.w6{width:335.160000px;}
.w3{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.740000px;}
.x3{left:13.500000px;}
.x4{left:106.560060px;}
.x11{left:111.240150px;}
.x15{left:112.680180px;}
.xa{left:114.135135px;}
.x17{left:120.255255px;}
.x2d{left:125.835210px;}
.x2f{left:126.885120px;}
.x2e{left:130.034895px;}
.x1d{left:131.880255px;}
.x2c{left:135.760980px;}
.x20{left:139.755300px;}
.x1e{left:144.630300px;}
.x18{left:145.755300px;}
.x28{left:147.922800px;}
.x21{left:152.505300px;}
.x19{left:158.505300px;}
.xc{left:160.560000px;}
.x13{left:168.135150px;}
.x16{left:174.255300px;}
.x34{left:175.335150px;}
.x32{left:176.385150px;}
.x22{left:178.005300px;}
.x27{left:182.786100px;}
.x1f{left:184.005300px;}
.xb{left:214.560000px;}
.x25{left:219.685500px;}
.x1c{left:229.254600px;}
.x30{left:278.909850px;}
.x33{left:287.460150px;}
.x2a{left:308.425800px;}
.xd{left:351.541200px;}
.x35{left:353.385150px;}
.x24{left:374.239650px;}
.x1b{left:377.359800px;}
.x23{left:378.546300px;}
.x31{left:379.635150px;}
.x1a{left:381.666450px;}
.x14{left:435.060000px;}
.xf{left:436.140000px;}
.xe{left:452.159850px;}
.x12{left:455.400150px;}
.x10{left:466.380000px;}
.x6{left:544.649100px;}
.x9{left:591.149850px;}
.x8{left:608.407050px;}
.x7{left:632.908800px;}
.x2b{left:651.292200px;}
.x26{left:707.017050px;}
.x1{left:747.540000px;}
.x5{left:751.643100px;}
.x29{left:753.138750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.025600pt;}
.ls3f{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls16{letter-spacing:-0.006400pt;}
.ls6{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.002667pt;}
.ls1c{letter-spacing:0.004800pt;}
.ls17{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.009600pt;}
.ls35{letter-spacing:0.010133pt;}
.ls1e{letter-spacing:0.012800pt;}
.ls44{letter-spacing:0.018133pt;}
.ls20{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.025600pt;}
.ls49{letter-spacing:0.028267pt;}
.lse{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.038400pt;}
.ls43{letter-spacing:0.051200pt;}
.ls10{letter-spacing:0.098347pt;}
.ls1b{letter-spacing:0.103936pt;}
.ls34{letter-spacing:0.170752pt;}
.ls27{letter-spacing:0.173184pt;}
.ls13{letter-spacing:0.178176pt;}
.ls21{letter-spacing:0.178240pt;}
.ls32{letter-spacing:0.187200pt;}
.ls24{letter-spacing:0.196587pt;}
.ls1a{letter-spacing:0.199424pt;}
.ls18{letter-spacing:0.202752pt;}
.ls2{letter-spacing:0.203307pt;}
.ls19{letter-spacing:0.204672pt;}
.ls4{letter-spacing:0.207872pt;}
.ls42{letter-spacing:0.213333pt;}
.ls57{letter-spacing:0.215168pt;}
.lsc{letter-spacing:0.215296pt;}
.ls5{letter-spacing:0.215424pt;}
.ls22{letter-spacing:0.216107pt;}
.ls26{letter-spacing:0.220416pt;}
.ls30{letter-spacing:0.236160pt;}
.ls23{letter-spacing:0.240768pt;}
.ls2b{letter-spacing:0.241408pt;}
.lsf{letter-spacing:0.244992pt;}
.lsb{letter-spacing:0.252416pt;}
.ls28{letter-spacing:0.269120pt;}
.ls2a{letter-spacing:0.269653pt;}
.ls12{letter-spacing:0.283008pt;}
.ls39{letter-spacing:0.283392pt;}
.ls4e{letter-spacing:0.284160pt;}
.ls4d{letter-spacing:0.284693pt;}
.ls3{letter-spacing:0.317312pt;}
.lsd{letter-spacing:0.319232pt;}
.ls40{letter-spacing:0.326400pt;}
.ls3c{letter-spacing:0.341120pt;}
.lsa{letter-spacing:0.350464pt;}
.ls31{letter-spacing:0.367360pt;}
.ls4a{letter-spacing:0.370880pt;}
.ls54{letter-spacing:0.372608pt;}
.ls3d{letter-spacing:0.398848pt;}
.ls9{letter-spacing:0.402560pt;}
.ls2c{letter-spacing:0.409344pt;}
.ls29{letter-spacing:0.414592pt;}
.ls33{letter-spacing:0.423573pt;}
.ls2d{letter-spacing:0.425088pt;}
.ls4c{letter-spacing:0.426133pt;}
.ls4f{letter-spacing:0.456192pt;}
.ls1d{letter-spacing:0.460288pt;}
.ls37{letter-spacing:0.461824pt;}
.ls2e{letter-spacing:0.467072pt;}
.ls55{letter-spacing:0.514304pt;}
.ls51{letter-spacing:0.566784pt;}
.ls56{letter-spacing:0.624512pt;}
.ls50{letter-spacing:0.655744pt;}
.ls3e{letter-spacing:0.671744pt;}
.ls59{letter-spacing:0.751872pt;}
.ls52{letter-spacing:0.991872pt;}
.ls3b{letter-spacing:1.359232pt;}
.ls41{letter-spacing:1.388800pt;}
.ls25{letter-spacing:1.753600pt;}
.ls36{letter-spacing:2.771733pt;}
.ls58{letter-spacing:4.240384pt;}
.ls4b{letter-spacing:4.242133pt;}
.ls48{letter-spacing:4.678400pt;}
.ls14{letter-spacing:4.715733pt;}
.ls38{letter-spacing:4.796672pt;}
.ls3a{letter-spacing:8.396800pt;}
.ls53{letter-spacing:13.943936pt;}
.ls46{letter-spacing:14.400000pt;}
.ls1f{letter-spacing:17.683200pt;}
.ls47{letter-spacing:19.488000pt;}
.ls2f{letter-spacing:24.723328pt;}
.wsce{word-spacing:-24.775808pt;}
.wsf7{word-spacing:-19.552000pt;}
.ws8{word-spacing:-18.879232pt;}
.ws33{word-spacing:-18.738176pt;}
.wsde{word-spacing:-18.730752pt;}
.ws9b{word-spacing:-17.747200pt;}
.ws6e{word-spacing:-16.000000pt;}
.wsed{word-spacing:-14.464000pt;}
.ws10c{word-spacing:-13.744512pt;}
.ws10d{word-spacing:-13.634304pt;}
.ws10e{word-spacing:-13.545088pt;}
.ws0{word-spacing:-10.775424pt;}
.ws27{word-spacing:-9.875712pt;}
.wsd6{word-spacing:-8.449280pt;}
.wsd3{word-spacing:-4.849152pt;}
.wsff{word-spacing:-4.742400pt;}
.wsba{word-spacing:-1.817600pt;}
.wse9{word-spacing:-1.452800pt;}
.wsd7{word-spacing:-1.411712pt;}
.ws10f{word-spacing:-0.836352pt;}
.ws10b{word-spacing:-0.715904pt;}
.ws112{word-spacing:-0.540672pt;}
.wscb{word-spacing:-0.519552pt;}
.wsd1{word-spacing:-0.514304pt;}
.wsd0{word-spacing:-0.477568pt;}
.wscd{word-spacing:-0.467072pt;}
.wsd2{word-spacing:-0.461824pt;}
.wsd9{word-spacing:-0.451328pt;}
.ws5{word-spacing:-0.449920pt;}
.wscf{word-spacing:-0.419840pt;}
.ws7{word-spacing:-0.397824pt;}
.wsd8{word-spacing:-0.393600pt;}
.wse8{word-spacing:-0.390400pt;}
.ws6{word-spacing:-0.364672pt;}
.wsd4{word-spacing:-0.335872pt;}
.wsc8{word-spacing:-0.293888pt;}
.wsb1{word-spacing:-0.283008pt;}
.wsbc{word-spacing:-0.272896pt;}
.ws62{word-spacing:-0.257664pt;}
.ws64{word-spacing:-0.257152pt;}
.ws65{word-spacing:-0.251904pt;}
.ws63{word-spacing:-0.244992pt;}
.wsbf{word-spacing:-0.215424pt;}
.wsf4{word-spacing:-0.115200pt;}
.ws3e{word-spacing:-0.102400pt;}
.ws48{word-spacing:-0.096000pt;}
.ws1{word-spacing:-0.089600pt;}
.wsab{word-spacing:-0.083200pt;}
.wsa0{word-spacing:-0.076800pt;}
.ws83{word-spacing:-0.070400pt;}
.ws4{word-spacing:-0.064000pt;}
.ws5a{word-spacing:-0.057600pt;}
.wsc0{word-spacing:-0.052480pt;}
.ws3{word-spacing:-0.051200pt;}
.wsdf{word-spacing:-0.044800pt;}
.ws2{word-spacing:-0.038400pt;}
.ws4a{word-spacing:-0.032000pt;}
.ws26{word-spacing:0.000000pt;}
.wsd5{word-spacing:7.840512pt;}
.wsdb{word-spacing:8.454528pt;}
.ws10a{word-spacing:8.640000pt;}
.ws102{word-spacing:9.580800pt;}
.wsbe{word-spacing:9.708800pt;}
.wsad{word-spacing:9.894400pt;}
.ws36{word-spacing:9.984000pt;}
.wsfc{word-spacing:10.009600pt;}
.ws56{word-spacing:10.022400pt;}
.ws96{word-spacing:10.112000pt;}
.ws42{word-spacing:10.118400pt;}
.ws6f{word-spacing:10.169600pt;}
.ws76{word-spacing:10.195200pt;}
.ws3b{word-spacing:10.246400pt;}
.ws7e{word-spacing:10.272000pt;}
.ws111{word-spacing:10.344533pt;}
.ws6a{word-spacing:10.400000pt;}
.ws57{word-spacing:10.464000pt;}
.wsfb{word-spacing:10.470400pt;}
.ws80{word-spacing:10.476800pt;}
.ws44{word-spacing:10.521600pt;}
.ws74{word-spacing:10.617600pt;}
.ws31{word-spacing:10.656000pt;}
.ws15{word-spacing:10.688000pt;}
.ws95{word-spacing:10.694400pt;}
.wsb0{word-spacing:10.822400pt;}
.ws94{word-spacing:10.848000pt;}
.ws114{word-spacing:10.854400pt;}
.wse3{word-spacing:10.899200pt;}
.wsc2{word-spacing:10.963200pt;}
.ws37{word-spacing:10.995200pt;}
.wsb3{word-spacing:11.033600pt;}
.ws3f{word-spacing:11.072000pt;}
.ws16{word-spacing:11.136000pt;}
.ws117{word-spacing:11.200000pt;}
.ws3d{word-spacing:11.212800pt;}
.ws115{word-spacing:11.218720pt;}
.ws116{word-spacing:11.296000pt;}
.wsa5{word-spacing:11.328000pt;}
.ws6b{word-spacing:11.392000pt;}
.ws47{word-spacing:11.424000pt;}
.wsf2{word-spacing:11.558400pt;}
.ws5d{word-spacing:11.692800pt;}
.ws45{word-spacing:11.712000pt;}
.ws99{word-spacing:11.744000pt;}
.ws60{word-spacing:11.891200pt;}
.ws5f{word-spacing:11.897600pt;}
.ws61{word-spacing:11.929600pt;}
.ws72{word-spacing:11.936000pt;}
.ws41{word-spacing:11.942400pt;}
.ws3c{word-spacing:12.179200pt;}
.ws11{word-spacing:12.608000pt;}
.ws84{word-spacing:12.633600pt;}
.wsfd{word-spacing:12.652800pt;}
.ws71{word-spacing:12.832000pt;}
.ws1c{word-spacing:12.908800pt;}
.ws4d{word-spacing:13.171200pt;}
.wse7{word-spacing:13.196800pt;}
.wsda{word-spacing:13.245952pt;}
.ws7c{word-spacing:13.337600pt;}
.ws9{word-spacing:13.510400pt;}
.ws14{word-spacing:13.516800pt;}
.ws8e{word-spacing:13.728000pt;}
.ws12{word-spacing:13.817600pt;}
.ws5e{word-spacing:13.920000pt;}
.ws3a{word-spacing:13.926400pt;}
.ws79{word-spacing:13.932800pt;}
.wsbb{word-spacing:14.201600pt;}
.wsae{word-spacing:14.246400pt;}
.ws52{word-spacing:14.278400pt;}
.wsee{word-spacing:14.329600pt;}
.wsec{word-spacing:14.336000pt;}
.wsb8{word-spacing:14.355200pt;}
.ws35{word-spacing:14.361600pt;}
.ws7b{word-spacing:14.380800pt;}
.ws69{word-spacing:14.393600pt;}
.ws113{word-spacing:14.470400pt;}
.ws50{word-spacing:14.489600pt;}
.wsc1{word-spacing:14.764800pt;}
.ws7a{word-spacing:14.771200pt;}
.wsef{word-spacing:14.880000pt;}
.ws110{word-spacing:14.976000pt;}
.ws78{word-spacing:15.072000pt;}
.ws8b{word-spacing:15.142400pt;}
.wsb4{word-spacing:15.302400pt;}
.wsfe{word-spacing:15.347200pt;}
.wse1{word-spacing:15.449600pt;}
.ws97{word-spacing:15.488000pt;}
.ws91{word-spacing:15.532800pt;}
.ws105{word-spacing:15.545600pt;}
.ws104{word-spacing:15.552000pt;}
.wsc5{word-spacing:15.558400pt;}
.ws106{word-spacing:15.590400pt;}
.ws34{word-spacing:15.635200pt;}
.wsa2{word-spacing:15.776000pt;}
.wsa6{word-spacing:15.852800pt;}
.ws9e{word-spacing:15.884800pt;}
.ws103{word-spacing:16.128000pt;}
.wsc4{word-spacing:16.153600pt;}
.wsa7{word-spacing:16.198400pt;}
.ws88{word-spacing:16.313600pt;}
.ws9c{word-spacing:16.512000pt;}
.wsf3{word-spacing:16.646400pt;}
.ws109{word-spacing:16.697600pt;}
.ws43{word-spacing:17.088000pt;}
.ws90{word-spacing:17.228800pt;}
.ws6c{word-spacing:17.248000pt;}
.ws107{word-spacing:17.324800pt;}
.ws75{word-spacing:17.427200pt;}
.ws93{word-spacing:17.452800pt;}
.ws9a{word-spacing:17.619200pt;}
.ws73{word-spacing:17.708800pt;}
.ws92{word-spacing:17.913600pt;}
.ws8f{word-spacing:17.984000pt;}
.ws46{word-spacing:17.996800pt;}
.ws89{word-spacing:18.041600pt;}
.ws67{word-spacing:18.163200pt;}
.ws5c{word-spacing:18.278400pt;}
.ws4e{word-spacing:18.304000pt;}
.ws81{word-spacing:18.355200pt;}
.wse4{word-spacing:18.521600pt;}
.ws98{word-spacing:18.617600pt;}
.ws77{word-spacing:18.726400pt;}
.wse5{word-spacing:18.886400pt;}
.ws32{word-spacing:19.084800pt;}
.ws5b{word-spacing:19.270400pt;}
.ws68{word-spacing:19.283200pt;}
.wsa3{word-spacing:19.296000pt;}
.wsf6{word-spacing:19.424000pt;}
.ws54{word-spacing:19.475200pt;}
.wsc7{word-spacing:19.648000pt;}
.wsb7{word-spacing:19.801600pt;}
.ws51{word-spacing:19.859200pt;}
.ws2e{word-spacing:19.884800pt;}
.ws1a{word-spacing:20.006400pt;}
.ws87{word-spacing:20.198400pt;}
.ws66{word-spacing:20.236800pt;}
.wsb2{word-spacing:20.729600pt;}
.ws9d{word-spacing:20.793600pt;}
.wsb9{word-spacing:20.844800pt;}
.ws4f{word-spacing:21.139200pt;}
.ws7d{word-spacing:21.158400pt;}
.wsaa{word-spacing:21.164800pt;}
.wsc3{word-spacing:21.267200pt;}
.ws59{word-spacing:21.440000pt;}
.ws9f{word-spacing:21.497600pt;}
.ws38{word-spacing:21.516800pt;}
.ws53{word-spacing:21.555200pt;}
.ws70{word-spacing:21.676800pt;}
.wsc6{word-spacing:21.868800pt;}
.wsf5{word-spacing:21.996800pt;}
.ws86{word-spacing:22.060800pt;}
.ws85{word-spacing:22.067200pt;}
.ws8d{word-spacing:22.099200pt;}
.wsb5{word-spacing:22.393600pt;}
.wsa9{word-spacing:22.611200pt;}
.wsbd{word-spacing:22.822400pt;}
.ws58{word-spacing:22.848000pt;}
.ws29{word-spacing:22.912000pt;}
.ws1f{word-spacing:23.059200pt;}
.ws108{word-spacing:23.609600pt;}
.wsca{word-spacing:23.610752pt;}
.wsc9{word-spacing:23.626496pt;}
.ws20{word-spacing:23.667200pt;}
.wscc{word-spacing:23.726208pt;}
.wsac{word-spacing:23.769600pt;}
.wsaf{word-spacing:24.281600pt;}
.wse0{word-spacing:24.307200pt;}
.ws7f{word-spacing:24.364800pt;}
.wsa1{word-spacing:24.428800pt;}
.ws55{word-spacing:24.601600pt;}
.ws4c{word-spacing:24.857600pt;}
.ws8c{word-spacing:25.606400pt;}
.ws39{word-spacing:25.952000pt;}
.wsb6{word-spacing:26.553600pt;}
.ws6d{word-spacing:27.264000pt;}
.ws40{word-spacing:28.198400pt;}
.ws28{word-spacing:28.268800pt;}
.wsa4{word-spacing:28.697600pt;}
.wseb{word-spacing:28.782933pt;}
.ws8a{word-spacing:28.844800pt;}
.ws1d{word-spacing:29.075200pt;}
.wsf0{word-spacing:29.792000pt;}
.wsf1{word-spacing:29.825067pt;}
.wsa8{word-spacing:30.828800pt;}
.ws101{word-spacing:32.032000pt;}
.ws100{word-spacing:32.102400pt;}
.wse2{word-spacing:34.112000pt;}
.ws4b{word-spacing:35.001600pt;}
.ws49{word-spacing:35.008000pt;}
.wsf8{word-spacing:35.020800pt;}
.ws22{word-spacing:36.448000pt;}
.ws13{word-spacing:36.774400pt;}
.ws17{word-spacing:37.024000pt;}
.ws1e{word-spacing:38.291200pt;}
.wse6{word-spacing:39.763200pt;}
.ws2b{word-spacing:40.217600pt;}
.wsa{word-spacing:42.572800pt;}
.ws82{word-spacing:42.892800pt;}
.ws10{word-spacing:45.868800pt;}
.ws2f{word-spacing:46.259200pt;}
.ws23{word-spacing:49.280000pt;}
.ws21{word-spacing:51.520000pt;}
.wsdc{word-spacing:51.598336pt;}
.wsdd{word-spacing:52.054912pt;}
.wsf{word-spacing:54.489600pt;}
.wsb{word-spacing:55.705600pt;}
.wsc{word-spacing:56.691200pt;}
.wse{word-spacing:58.643200pt;}
.ws24{word-spacing:59.059733pt;}
.ws25{word-spacing:59.097600pt;}
.ws2c{word-spacing:62.720000pt;}
.wsd{word-spacing:64.563200pt;}
.wsf9{word-spacing:65.715200pt;}
.wsfa{word-spacing:65.760000pt;}
.ws18{word-spacing:71.200000pt;}
.ws1b{word-spacing:73.228800pt;}
.wsea{word-spacing:74.649600pt;}
.ws19{word-spacing:75.264000pt;}
.ws2d{word-spacing:76.512000pt;}
.ws2a{word-spacing:79.398400pt;}
.ws30{word-spacing:126.080000pt;}
._10{margin-left:-24.576736pt;}
._11{margin-left:-23.502272pt;}
._18{margin-left:-20.341547pt;}
._17{margin-left:-19.282613pt;}
._e{margin-left:-17.325867pt;}
._16{margin-left:-14.202080pt;}
._1a{margin-left:-12.882517pt;}
._15{margin-left:-8.524821pt;}
._14{margin-left:-7.481579pt;}
._12{margin-left:-4.567360pt;}
._13{margin-left:-3.664000pt;}
._f{margin-left:-2.264320pt;}
._0{margin-left:-0.947200pt;}
._5{width:1.566720pt;}
._3{width:2.672640pt;}
._4{width:3.569920pt;}
._c{width:4.846080pt;}
._9{width:6.533120pt;}
._a{width:7.717813pt;}
._6{width:8.698187pt;}
._b{width:9.694827pt;}
._1b{width:12.630379pt;}
._19{width:14.481664pt;}
._d{width:23.942400pt;}
._2{width:33.167360pt;}
._8{width:36.953600pt;}
._1{width:49.072640pt;}
._7{width:51.968000pt;}
.fs4{font-size:25.600000pt;}
.fs9{font-size:28.160000pt;}
.fs8{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fsa{font-size:39.680000pt;}
.fs0{font-size:42.240000pt;}
.fs7{font-size:44.800000pt;}
.fs5{font-size:47.360000pt;}
.fs1{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fse{font-size:60.160000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:69.120000pt;}
.fs6{font-size:74.240000pt;}
.fsf{font-size:84.480000pt;}
.y5a{bottom:-8.640000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.520000pt;}
.y2{bottom:3.840000pt;}
.y3{bottom:11.999963pt;}
.y57{bottom:22.359997pt;}
.y3f{bottom:22.999997pt;}
.y5b{bottom:23.319997pt;}
.y58{bottom:34.039960pt;}
.y15d{bottom:38.679997pt;}
.y309{bottom:39.959997pt;}
.y56{bottom:40.919997pt;}
.yd8{bottom:41.239997pt;}
.y3e{bottom:41.559997pt;}
.y184{bottom:43.159997pt;}
.y205{bottom:44.119997pt;}
.yf5{bottom:45.079997pt;}
.y1b8{bottom:45.719997pt;}
.y22d{bottom:46.679997pt;}
.y244{bottom:47.639997pt;}
.y2ad{bottom:49.559997pt;}
.y128{bottom:49.879997pt;}
.y2da{bottom:50.839997pt;}
.yd7{bottom:51.159997pt;}
.y308{bottom:53.399997pt;}
.y22c{bottom:55.959997pt;}
.y243{bottom:56.599997pt;}
.y15c{bottom:57.239997pt;}
.y1b7{bottom:57.879997pt;}
.y9e{bottom:58.839997pt;}
.y55{bottom:59.799997pt;}
.y3d{bottom:60.439997pt;}
.y183{bottom:62.679997pt;}
.yf4{bottom:63.639997pt;}
.y2ac{bottom:66.199997pt;}
.y307{bottom:66.839997pt;}
.yd6{bottom:68.119997pt;}
.y127{bottom:68.759997pt;}
.y2d9{bottom:69.399997pt;}
.y22b{bottom:74.519997pt;}
.y2ab{bottom:75.159997pt;}
.y242{bottom:75.479997pt;}
.y15b{bottom:75.799997pt;}
.y272{bottom:76.119997pt;}
.y1b6{bottom:76.439997pt;}
.yd5{bottom:77.079997pt;}
.y9d{bottom:77.399997pt;}
.y54{bottom:78.359997pt;}
.y3c{bottom:78.999997pt;}
.y306{bottom:79.959997pt;}
.yf3{bottom:81.559997pt;}
.y182{bottom:82.199997pt;}
.y204{bottom:83.159997pt;}
.y126{bottom:87.319997pt;}
.y2d8{bottom:87.959997pt;}
.y271{bottom:90.199997pt;}
.y22a{bottom:91.159997pt;}
.y241{bottom:91.799997pt;}
.y305{bottom:93.399997pt;}
.y2aa{bottom:93.719997pt;}
.y15a{bottom:94.679997pt;}
.y1b5{bottom:95.319997pt;}
.y9c{bottom:95.959997pt;}
.y53{bottom:96.919997pt;}
.y32d{bottom:97.239997pt;}
.y3b{bottom:97.559997pt;}
.yf2{bottom:98.199997pt;}
.y270{bottom:99.799997pt;}
.y203{bottom:100.119997pt;}
.y181{bottom:101.719997pt;}
.y2d7{bottom:104.599997pt;}
.y125{bottom:105.879997pt;}
.y304{bottom:106.839997pt;}
.y202{bottom:109.079997pt;}
.yd4{bottom:112.279997pt;}
.y2a9{bottom:112.599997pt;}
.y159{bottom:113.239997pt;}
.y26f{bottom:113.559997pt;}
.y1b4{bottom:113.879997pt;}
.y9b{bottom:114.839997pt;}
.y52{bottom:115.799997pt;}
.y32c{bottom:116.119997pt;}
.y3a{bottom:116.439997pt;}
.yf1{bottom:118.039997pt;}
.y229{bottom:118.679997pt;}
.y180{bottom:119.959997pt;}
.yd3{bottom:122.200037pt;}
.y124{bottom:122.520037pt;}
.y201{bottom:127.640037pt;}
.yf0{bottom:130.200037pt;}
.y2a8{bottom:131.160037pt;}
.y2d6{bottom:132.120037pt;}
.y158{bottom:132.440037pt;}
.y123{bottom:132.760037pt;}
.y9a{bottom:133.400037pt;}
.y51{bottom:134.360037pt;}
.y32b{bottom:134.680037pt;}
.y39{bottom:135.000037pt;}
.y228{bottom:135.320037pt;}
.y17f{bottom:136.280037pt;}
.y26e{bottom:138.200037pt;}
.yd2{bottom:139.160037pt;}
.yef{bottom:140.120037pt;}
.y227{bottom:144.600037pt;}
.y240{bottom:146.200037pt;}
.y200{bottom:146.520037pt;}
.y303{bottom:146.840037pt;}
.yd1{bottom:148.120037pt;}
.y2a7{bottom:149.720037pt;}
.y122{bottom:150.040037pt;}
.y2d5{bottom:151.000037pt;}
.y1b3{bottom:151.320037pt;}
.y99{bottom:151.960037pt;}
.y50{bottom:152.920037pt;}
.y32a{bottom:153.240037pt;}
.y38{bottom:153.560037pt;}
.y26d{bottom:154.200037pt;}
.y17e{bottom:157.080037pt;}
.yee{bottom:159.000037pt;}
.y302{bottom:159.960037pt;}
.y23f{bottom:162.840037pt;}
.y226{bottom:163.160037pt;}
.y121{bottom:163.480037pt;}
.yd0{bottom:164.760037pt;}
.y1ff{bottom:165.080037pt;}
.y2d4{bottom:167.320037pt;}
.y2a6{bottom:168.600037pt;}
.y157{bottom:168.920037pt;}
.y1b2{bottom:169.880037pt;}
.y26c{bottom:170.200037pt;}
.y98{bottom:170.840037pt;}
.y4f{bottom:171.800037pt;}
.y329{bottom:172.120037pt;}
.y37{bottom:172.440037pt;}
.y301{bottom:173.400037pt;}
.ycf{bottom:173.720037pt;}
.y17d{bottom:175.000037pt;}
.y120{bottom:175.640037pt;}
.y2d3{bottom:176.600037pt;}
.yed{bottom:177.560037pt;}
.y156{bottom:179.160037pt;}
.y225{bottom:182.040037pt;}
.y1fe{bottom:183.640037pt;}
.y26b{bottom:184.600037pt;}
.y2a5{bottom:184.920037pt;}
.y11f{bottom:185.880037pt;}
.y300{bottom:186.840037pt;}
.y1b1{bottom:188.440037pt;}
.y17c{bottom:189.080037pt;}
.y97{bottom:189.400037pt;}
.y4e{bottom:190.360037pt;}
.y23e{bottom:190.680037pt;}
.y36{bottom:191.000037pt;}
.yce{bottom:192.280037pt;}
.y2a4{bottom:193.880037pt;}
.y26a{bottom:194.200037pt;}
.y2d2{bottom:195.160037pt;}
.yec{bottom:196.120037pt;}
.y155{bottom:196.760037pt;}
.y2ff{bottom:199.960037pt;}
.y224{bottom:200.600037pt;}
.y1fd{bottom:202.520037pt;}
.y11e{bottom:204.440037pt;}
.y1b0{bottom:207.320037pt;}
.y17b{bottom:207.640037pt;}
.y96{bottom:207.960037pt;}
.y269{bottom:208.280037pt;}
.y4d{bottom:208.920037pt;}
.y328{bottom:209.240037pt;}
.y35{bottom:209.560037pt;}
.y154{bottom:209.880037pt;}
.ycd{bottom:211.160037pt;}
.y2d1{bottom:211.480037pt;}
.y2a3{bottom:212.760037pt;}
.y2fe{bottom:213.400037pt;}
.yeb{bottom:215.000037pt;}
.y223{bottom:216.920037pt;}
.y268{bottom:217.560037pt;}
.y2d0{bottom:220.760037pt;}
.y1fc{bottom:221.080037pt;}
.y153{bottom:222.040037pt;}
.y11d{bottom:223.000037pt;}
.y23d{bottom:223.640037pt;}
.y1af{bottom:225.880037pt;}
.y222{bottom:226.200037pt;}
.y17a{bottom:226.520037pt;}
.y95{bottom:226.840037pt;}
.y4c{bottom:227.800037pt;}
.y327{bottom:228.120037pt;}
.y34{bottom:228.440037pt;}
.ycc{bottom:229.720037pt;}
.y2a2{bottom:231.320037pt;}
.y152{bottom:232.280037pt;}
.yea{bottom:232.600037pt;}
.y267{bottom:234.840037pt;}
.y1fb{bottom:239.000037pt;}
.y2cf{bottom:239.320037pt;}
.y23c{bottom:239.960037pt;}
.y11c{bottom:241.880037pt;}
.y221{bottom:242.520037pt;}
.y1ae{bottom:244.440037pt;}
.ye9{bottom:245.080037pt;}
.y94{bottom:245.400037pt;}
.ycb{bottom:246.040037pt;}
.y4b{bottom:246.360037pt;}
.y33{bottom:247.000037pt;}
.y326{bottom:247.640037pt;}
.y2a1{bottom:249.880037pt;}
.y151{bottom:250.840037pt;}
.y1fa{bottom:251.480037pt;}
.y266{bottom:251.800037pt;}
.y23b{bottom:253.080037pt;}
.y2fd{bottom:253.400037pt;}
.yca{bottom:255.320037pt;}
.ye8{bottom:256.600037pt;}
.y2ce{bottom:257.880037pt;}
.y11b{bottom:260.440037pt;}
.y1ad{bottom:261.720037pt;}
.y1f9{bottom:263.000037pt;}
.y179{bottom:263.640037pt;}
.y93{bottom:263.960037pt;}
.y4a{bottom:264.920037pt;}
.y32{bottom:265.560037pt;}
.y2a0{bottom:266.520037pt;}
.y2fc{bottom:266.840037pt;}
.y23a{bottom:268.440037pt;}
.y265{bottom:268.760037pt;}
.y150{bottom:269.400037pt;}
.y220{bottom:270.360037pt;}
.yc9{bottom:273.880037pt;}
.y2cd{bottom:274.520037pt;}
.ye7{bottom:275.160037pt;}
.y29f{bottom:275.480037pt;}
.y11a{bottom:276.760037pt;}
.y325{bottom:279.000037pt;}
.y2fb{bottom:279.960037pt;}
.y178{bottom:282.520037pt;}
.y92{bottom:282.840037pt;}
.y2cc{bottom:283.480037pt;}
.y49{bottom:283.800037pt;}
.y31{bottom:284.440037pt;}
.y1f8{bottom:285.720037pt;}
.y21f{bottom:286.680037pt;}
.y119{bottom:287.000037pt;}
.ye6{bottom:287.320037pt;}
.y14f{bottom:288.280037pt;}
.yc8{bottom:290.520037pt;}
.y1ac{bottom:292.440037pt;}
.y2fa{bottom:293.400037pt;}
.y29e{bottom:294.040037pt;}
.y21e{bottom:296.600037pt;}
.ye5{bottom:296.920037pt;}
.y324{bottom:297.880037pt;}
.y1f7{bottom:298.840037pt;}
.yc7{bottom:299.480037pt;}
.y177{bottom:301.080037pt;}
.y91{bottom:301.400037pt;}
.y2cb{bottom:302.040037pt;}
.y48{bottom:302.360037pt;}
.y264{bottom:302.680037pt;}
.y30{bottom:303.000037pt;}
.y118{bottom:306.200037pt;}
.y14e{bottom:306.840037pt;}
.y1ab{bottom:311.320037pt;}
.y1f6{bottom:311.640037pt;}
.y29d{bottom:312.920037pt;}
.y21d{bottom:313.560037pt;}
.y323{bottom:316.440037pt;}
.yc6{bottom:318.360037pt;}
.y176{bottom:319.640037pt;}
.y90{bottom:319.960037pt;}
.y263{bottom:320.600037pt;}
.y47{bottom:320.920037pt;}
.y2f{bottom:321.560037pt;}
.y21c{bottom:323.480037pt;}
.y117{bottom:323.800037pt;}
.y1f5{bottom:324.760037pt;}
.y14d{bottom:325.400037pt;}
.y29c{bottom:329.240037pt;}
.y1aa{bottom:329.880037pt;}
.y2f9{bottom:333.400037pt;}
.y322{bottom:335.640037pt;}
.y175{bottom:336.280037pt;}
.yc5{bottom:336.920037pt;}
.y2ca{bottom:337.240037pt;}
.y1f4{bottom:338.200037pt;}
.y29b{bottom:338.520037pt;}
.y8f{bottom:338.840037pt;}
.y46{bottom:339.800037pt;}
.y262{bottom:340.120037pt;}
.y2e{bottom:340.440037pt;}
.y21b{bottom:343.000037pt;}
.y14c{bottom:344.280037pt;}
.y174{bottom:345.560037pt;}
.y2c9{bottom:346.520037pt;}
.y2f8{bottom:346.840037pt;}
.y1a9{bottom:348.440037pt;}
.y116{bottom:349.080037pt;}
.yc4{bottom:351.320037pt;}
.y1f3{bottom:351.640037pt;}
.y321{bottom:354.520037pt;}
.y29a{bottom:357.080037pt;}
.y8e{bottom:357.400037pt;}
.y45{bottom:358.360037pt;}
.y2d{bottom:359.000037pt;}
.y115{bottom:359.320037pt;}
.y21a{bottom:359.960037pt;}
.y14b{bottom:362.840037pt;}
.y173{bottom:364.120037pt;}
.y1f2{bottom:364.760037pt;}
.y2c8{bottom:365.080037pt;}
.y1a8{bottom:367.320037pt;}
.y219{bottom:368.920037pt;}
.yc3{bottom:369.880037pt;}
.y2f7{bottom:373.400037pt;}
.y320{bottom:374.360037pt;}
.y299{bottom:375.640037pt;}
.y8d{bottom:375.960037pt;}
.y44{bottom:376.920037pt;}
.y2c{bottom:377.560037pt;}
.y114{bottom:377.880037pt;}
.y1f1{bottom:378.200037pt;}
.y14a{bottom:381.400037pt;}
.y172{bottom:383.000037pt;}
.y2c7{bottom:383.640037pt;}
.y1a7{bottom:386.200037pt;}
.yc2{bottom:386.520037pt;}
.y2f6{bottom:386.840037pt;}
.y218{bottom:387.480037pt;}
.y1f0{bottom:391.640037pt;}
.y298{bottom:394.520037pt;}
.y43{bottom:394.840037pt;}
.y2b{bottom:395.480037pt;}
.y261{bottom:396.120037pt;}
.y113{bottom:396.440037pt;}
.y31f{bottom:398.360037pt;}
.y2f5{bottom:399.960037pt;}
.y149{bottom:400.280037pt;}
.y171{bottom:401.560037pt;}
.y2c6{bottom:402.520037pt;}
.y1a6{bottom:404.760037pt;}
.y217{bottom:406.360037pt;}
.y42{bottom:410.520037pt;}
.y2a{bottom:411.480037pt;}
.y297{bottom:413.080037pt;}
.y8c{bottom:413.400037pt;}
.yc1{bottom:414.040037pt;}
.y260{bottom:415.000037pt;}
.y112{bottom:415.320037pt;}
.y31e{bottom:416.280037pt;}
.y1a5{bottom:418.200037pt;}
.y148{bottom:418.840037pt;}
.y170{bottom:420.120037pt;}
.y2c5{bottom:421.080037pt;}
.y216{bottom:424.920037pt;}
.y2f4{bottom:426.840037pt;}
.y41{bottom:428.760037pt;}
.y29{bottom:429.720037pt;}
.y1ef{bottom:431.639904pt;}
.y8b{bottom:431.960037pt;}
.y1a4{bottom:432.280037pt;}
.yc0{bottom:432.920037pt;}
.y25f{bottom:433.560037pt;}
.y111{bottom:433.880037pt;}
.y147{bottom:437.400037pt;}
.y16f{bottom:439.000037pt;}
.y2c4{bottom:439.639904pt;}
.y2f3{bottom:439.960037pt;}
.y40{bottom:441.560037pt;}
.y28{bottom:442.520037pt;}
.y215{bottom:443.160037pt;}
.y1ee{bottom:444.760037pt;}
.y31d{bottom:448.280037pt;}
.y8a{bottom:448.600037pt;}
.y296{bottom:450.520037pt;}
.y1a3{bottom:451.160037pt;}
.ybf{bottom:451.480037pt;}
.y25e{bottom:452.120037pt;}
.y110{bottom:452.440037pt;}
.y2f2{bottom:453.400037pt;}
.y146{bottom:456.280037pt;}
.y89{bottom:457.560037pt;}
.y1ed{bottom:458.200037pt;}
.y2c3{bottom:458.520037pt;}
.y214{bottom:459.160037pt;}
.y27{bottom:464.280037pt;}
.y2f1{bottom:466.840037pt;}
.ybe{bottom:468.120037pt;}
.y295{bottom:469.080037pt;}
.y1a2{bottom:469.720037pt;}
.y25d{bottom:470.360037pt;}
.y10f{bottom:471.320037pt;}
.y1ec{bottom:471.639904pt;}
.y145{bottom:474.840037pt;}
.y88{bottom:476.120037pt;}
.y2c2{bottom:477.080037pt;}
.ybd{bottom:477.400037pt;}
.y213{bottom:479.320037pt;}
.y2f0{bottom:479.960037pt;}
.y1eb{bottom:484.760037pt;}
.y25c{bottom:486.040037pt;}
.y294{bottom:487.639904pt;}
.y1a1{bottom:488.280037pt;}
.y10e{bottom:489.880037pt;}
.y144{bottom:491.480037pt;}
.y26{bottom:491.800037pt;}
.y2ef{bottom:493.400037pt;}
.y212{bottom:494.360037pt;}
.y87{bottom:495.000037pt;}
.y2c1{bottom:495.639904pt;}
.y1ea{bottom:498.200037pt;}
.y143{bottom:500.760037pt;}
.y25b{bottom:504.600037pt;}
.y31c{bottom:506.200037pt;}
.y10d{bottom:506.520037pt;}
.y2ee{bottom:506.840037pt;}
.ybc{bottom:507.160037pt;}
.y211{bottom:509.080037pt;}
.y1e9{bottom:511.639904pt;}
.y2c0{bottom:512.280037pt;}
.y86{bottom:513.560037pt;}
.y10c{bottom:515.800037pt;}
.y25{bottom:518.360037pt;}
.ybb{bottom:518.679904pt;}
.y2ed{bottom:519.960037pt;}
.y25a{bottom:521.240037pt;}
.y2bf{bottom:521.560037pt;}
.y210{bottom:523.160037pt;}
.y1e8{bottom:524.760037pt;}
.y293{bottom:525.080037pt;}
.y1a0{bottom:525.720037pt;}
.y259{bottom:530.200037pt;}
.y142{bottom:531.800037pt;}
.y85{bottom:532.120037pt;}
.y10b{bottom:533.400037pt;}
.y24{bottom:535.639904pt;}
.yba{bottom:537.240037pt;}
.y1e7{bottom:538.200037pt;}
.y20f{bottom:539.160037pt;}
.y2be{bottom:540.120037pt;}
.y292{bottom:543.639904pt;}
.y141{bottom:543.960037pt;}
.y19f{bottom:544.280037pt;}
.y10a{bottom:546.840037pt;}
.y16e{bottom:548.760037pt;}
.y23{bottom:549.080037pt;}
.y84{bottom:551.000037pt;}
.y1e6{bottom:551.639904pt;}
.y20e{bottom:552.280037pt;}
.y140{bottom:553.880037pt;}
.yb9{bottom:555.800037pt;}
.y16d{bottom:557.719904pt;}
.y109{bottom:559.000037pt;}
.y2ec{bottom:559.960037pt;}
.y31b{bottom:562.200037pt;}
.y22{bottom:562.520037pt;}
.y19e{bottom:563.160037pt;}
.y20d{bottom:563.800037pt;}
.y239{bottom:564.120037pt;}
.y1e5{bottom:564.760037pt;}
.y258{bottom:565.400037pt;}
.y108{bottom:568.920037pt;}
.y83{bottom:569.560037pt;}
.y20c{bottom:571.480037pt;}
.y13f{bottom:572.440037pt;}
.y2eb{bottom:573.400037pt;}
.y257{bottom:574.360037pt;}
.yb8{bottom:574.679904pt;}
.y21{bottom:575.639904pt;}
.y238{bottom:575.960037pt;}
.y16c{bottom:576.600037pt;}
.y2bd{bottom:577.560037pt;}
.y1e4{bottom:578.200037pt;}
.y291{bottom:581.080037pt;}
.y19d{bottom:581.719904pt;}
.y2ea{bottom:586.840037pt;}
.y20{bottom:587.800037pt;}
.y82{bottom:588.120037pt;}
.y13e{bottom:591.320037pt;}
.y1e3{bottom:591.639904pt;}
.yb7{bottom:593.240037pt;}
.y237{bottom:594.520037pt;}
.y16b{bottom:595.160037pt;}
.y2bc{bottom:596.120037pt;}
.y1f{bottom:598.679904pt;}
.y290{bottom:599.639904pt;}
.y2e9{bottom:599.960037pt;}
.y19c{bottom:600.280037pt;}
.y1e2{bottom:604.760037pt;}
.y107{bottom:606.360037pt;}
.y81{bottom:607.000037pt;}
.y256{bottom:609.560037pt;}
.y13d{bottom:609.880037pt;}
.yb6{bottom:611.800037pt;}
.y2bb{bottom:612.760037pt;}
.y236{bottom:613.400037pt;}
.y16a{bottom:613.719904pt;}
.y1e1{bottom:618.200037pt;}
.y255{bottom:618.520037pt;}
.y19b{bottom:619.160037pt;}
.y1e{bottom:621.080037pt;}
.y2ba{bottom:621.719904pt;}
.y106{bottom:624.920037pt;}
.y80{bottom:625.560037pt;}
.y2e8{bottom:626.840037pt;}
.y13c{bottom:628.440037pt;}
.yb5{bottom:630.679904pt;}
.y1e0{bottom:631.639904pt;}
.y235{bottom:631.960037pt;}
.y169{bottom:632.600037pt;}
.y28f{bottom:637.080037pt;}
.y254{bottom:637.400037pt;}
.y19a{bottom:637.719904pt;}
.y31a{bottom:638.040037pt;}
.y2e7{bottom:639.960037pt;}
.y2b9{bottom:640.280037pt;}
.y1d{bottom:643.480037pt;}
.y105{bottom:643.800037pt;}
.y7f{bottom:644.120037pt;}
.y1df{bottom:644.759904pt;}
.y13b{bottom:645.080037pt;}
.y1c6{bottom:648.920037pt;}
.yb4{bottom:649.240037pt;}
.y234{bottom:650.520037pt;}
.y168{bottom:651.160037pt;}
.y2e6{bottom:653.400037pt;}
.y253{bottom:653.719904pt;}
.y13a{bottom:654.679904pt;}
.y319{bottom:655.000037pt;}
.y28e{bottom:655.639904pt;}
.y199{bottom:656.280037pt;}
.y1de{bottom:658.200037pt;}
.y2b8{bottom:659.160037pt;}
.y104{bottom:662.360037pt;}
.y7e{bottom:663.000037pt;}
.y1c{bottom:665.880037pt;}
.y2e5{bottom:666.840037pt;}
.y1c5{bottom:667.480037pt;}
.yb3{bottom:667.800037pt;}
.y233{bottom:669.400037pt;}
.y167{bottom:669.719904pt;}
.y1dd{bottom:671.640037pt;}
.y139{bottom:671.960037pt;}
.y28d{bottom:674.520037pt;}
.y198{bottom:675.159904pt;}
.y2b7{bottom:675.480037pt;}
.y103{bottom:678.679904pt;}
.y2e4{bottom:679.960037pt;}
.y7d{bottom:681.560037pt;}
.y2b6{bottom:684.440037pt;}
.y1dc{bottom:684.759904pt;}
.y138{bottom:685.400037pt;}
.y1c4{bottom:686.360037pt;}
.yb2{bottom:686.679904pt;}
.y1b{bottom:686.999904pt;}
.y232{bottom:687.960037pt;}
.y318{bottom:688.280037pt;}
.y166{bottom:688.600037pt;}
.y102{bottom:688.919904pt;}
.y197{bottom:692.120037pt;}
.y28c{bottom:693.079904pt;}
.y2e3{bottom:693.400037pt;}
.y137{bottom:697.560037pt;}
.y1db{bottom:698.200037pt;}
.y252{bottom:699.480037pt;}
.y7c{bottom:699.800037pt;}
.y1a{bottom:700.440037pt;}
.y2b5{bottom:703.320037pt;}
.y196{bottom:704.280037pt;}
.y1c3{bottom:704.919904pt;}
.yb1{bottom:705.239904pt;}
.y231{bottom:705.880037pt;}
.y2e2{bottom:706.839904pt;}
.y165{bottom:707.159904pt;}
.y136{bottom:707.800037pt;}
.y101{bottom:708.120037pt;}
.y28b{bottom:711.320037pt;}
.y1da{bottom:711.640037pt;}
.y19{bottom:713.880037pt;}
.y251{bottom:715.480037pt;}
.y7b{bottom:716.120037pt;}
.y2e1{bottom:721.560037pt;}
.y230{bottom:721.880037pt;}
.y195{bottom:723.159904pt;}
.y1c2{bottom:723.480037pt;}
.yb0{bottom:723.800037pt;}
.y1d9{bottom:724.759904pt;}
.y100{bottom:725.720037pt;}
.y317{bottom:726.040037pt;}
.y135{bottom:726.360037pt;}
.y18{bottom:726.999904pt;}
.y28a{bottom:727.320037pt;}
.y250{bottom:734.040037pt;}
.y7a{bottom:737.560037pt;}
.y1d8{bottom:738.200037pt;}
.y2e0{bottom:738.520037pt;}
.yff{bottom:738.839904pt;}
.y17{bottom:740.440037pt;}
.y194{bottom:741.720037pt;}
.y1c1{bottom:742.360037pt;}
.yaf{bottom:742.679904pt;}
.y164{bottom:744.600037pt;}
.y134{bottom:744.919904pt;}
.y2df{bottom:747.480037pt;}
.y289{bottom:748.759904pt;}
.y22f{bottom:750.999904pt;}
.yfe{bottom:751.319904pt;}
.y1d7{bottom:751.640037pt;}
.y79{bottom:752.280037pt;}
.y24f{bottom:752.600037pt;}
.y16{bottom:753.880037pt;}
.y2b4{bottom:759.319904pt;}
.y193{bottom:760.280037pt;}
.y1c0{bottom:760.919904pt;}
.yae{bottom:761.239904pt;}
.y288{bottom:762.200037pt;}
.y163{bottom:763.159904pt;}
.y133{bottom:763.800037pt;}
.y1d6{bottom:764.759904pt;}
.y78{bottom:765.400037pt;}
.y2de{bottom:766.040037pt;}
.y15{bottom:766.999904pt;}
.y24e{bottom:771.480037pt;}
.y287{bottom:774.679904pt;}
.y2b3{bottom:775.640037pt;}
.y1d5{bottom:778.200037pt;}
.y192{bottom:778.520037pt;}
.y1bf{bottom:779.480037pt;}
.y6c{bottom:779.800037pt;}
.y14{bottom:780.440037pt;}
.y132{bottom:782.360037pt;}
.y2b2{bottom:784.919904pt;}
.y286{bottom:785.560037pt;}
.y316{bottom:788.120037pt;}
.y162{bottom:789.400037pt;}
.y24d{bottom:790.040037pt;}
.y1d4{bottom:791.640037pt;}
.ye4{bottom:792.600037pt;}
.y13{bottom:793.880037pt;}
.y191{bottom:794.200037pt;}
.y77{bottom:795.800037pt;}
.y6b{bottom:798.360037pt;}
.yad{bottom:798.679904pt;}
.y131{bottom:800.919904pt;}
.y315{bottom:801.239904pt;}
.y2b1{bottom:803.480037pt;}
.y1d3{bottom:804.759904pt;}
.ye3{bottom:805.720037pt;}
.y12{bottom:806.999904pt;}
.y285{bottom:807.319904pt;}
.y161{bottom:808.280037pt;}
.y24c{bottom:808.600037pt;}
.y190{bottom:812.759904pt;}
.y76{bottom:814.360037pt;}
.y314{bottom:814.679904pt;}
.yac{bottom:814.999904pt;}
.y6a{bottom:816.919904pt;}
.yfd{bottom:817.239904pt;}
.y1d2{bottom:818.200037pt;}
.y130{bottom:819.800037pt;}
.ye2{bottom:820.120037pt;}
.y11{bottom:820.440037pt;}
.y2b0{bottom:822.040037pt;}
.y284{bottom:823.319904pt;}
.yab{bottom:823.960037pt;}
.y160{bottom:825.880037pt;}
.y24b{bottom:827.480037pt;}
.y313{bottom:828.120037pt;}
.y2dd{bottom:829.079904pt;}
.y18f{bottom:831.640037pt;}
.y75{bottom:832.919904pt;}
.y10{bottom:833.880037pt;}
.y69{bottom:835.800037pt;}
.y12f{bottom:838.360037pt;}
.ye1{bottom:838.679904pt;}
.y15f{bottom:838.999904pt;}
.y283{bottom:839.319904pt;}
.y312{bottom:841.239904pt;}
.yaa{bottom:842.839904pt;}
.y1d1{bottom:844.759904pt;}
.y24a{bottom:846.040037pt;}
.y1be{bottom:846.360037pt;}
.yf{bottom:846.999904pt;}
.y2af{bottom:847.640037pt;}
.y18e{bottom:847.960037pt;}
.y74{bottom:851.159904pt;}
.y15e{bottom:851.480037pt;}
.y68{bottom:854.360037pt;}
.yfc{bottom:854.679904pt;}
.y282{bottom:855.319904pt;}
.y12e{bottom:856.919904pt;}
.ye0{bottom:857.239904pt;}
.y1d0{bottom:858.200037pt;}
.ye{bottom:860.440037pt;}
.ya9{bottom:861.400037pt;}
.y2dc{bottom:864.280037pt;}
.y249{bottom:864.600037pt;}
.y1bd{bottom:864.919904pt;}
.y2ae{bottom:866.200037pt;}
.y73{bottom:867.159904pt;}
.y311{bottom:867.480037pt;}
.y281{bottom:869.720037pt;}
.y67{bottom:872.600037pt;}
.yfb{bottom:873.239904pt;}
.y12d{bottom:873.560037pt;}
.yd{bottom:873.880037pt;}
.y18d{bottom:875.800037pt;}
.ydf{bottom:876.120037pt;}
.y280{bottom:879.319904pt;}
.ya8{bottom:879.960037pt;}
.y72{bottom:880.600037pt;}
.y12c{bottom:882.839904pt;}
.y1bc{bottom:883.480037pt;}
.y66{bottom:886.679904pt;}
.yc{bottom:890.839904pt;}
.yfa{bottom:891.800037pt;}
.y27f{bottom:893.399904pt;}
.y71{bottom:893.720037pt;}
.y18c{bottom:894.360037pt;}
.yde{bottom:894.679904pt;}
.y1cf{bottom:896.280037pt;}
.ya7{bottom:898.839904pt;}
.y12b{bottom:900.440037pt;}
.y27e{bottom:902.040037pt;}
.y1bb{bottom:902.360037pt;}
.yb{bottom:903.319904pt;}
.y65{bottom:905.239904pt;}
.y70{bottom:907.159904pt;}
.yf9{bottom:910.679904pt;}
.ya{bottom:912.280037pt;}
.y18b{bottom:912.919904pt;}
.ydd{bottom:913.239904pt;}
.y12a{bottom:913.880037pt;}
.y20b{bottom:915.480037pt;}
.ya6{bottom:917.399904pt;}
.y27d{bottom:918.040037pt;}
.y1ce{bottom:918.999904pt;}
.y248{bottom:919.319904pt;}
.y6f{bottom:920.600037pt;}
.y1ba{bottom:920.919904pt;}
.y64{bottom:924.120037pt;}
.y129{bottom:926.040037pt;}
.y2db{bottom:926.999904pt;}
.y20a{bottom:927.640037pt;}
.yf8{bottom:929.239904pt;}
.y9{bottom:931.800037pt;}
.ydc{bottom:932.120037pt;}
.y6e{bottom:933.720037pt;}
.y27c{bottom:934.040037pt;}
.ya5{bottom:935.960037pt;}
.y247{bottom:937.239904pt;}
.y209{bottom:937.560037pt;}
.y310{bottom:938.200037pt;}
.y1b9{bottom:938.839904pt;}
.y1cd{bottom:942.040037pt;}
.y63{bottom:942.679904pt;}
.y6d{bottom:947.159904pt;}
.yf7{bottom:947.800037pt;}
.y27b{bottom:948.120037pt;}
.y18a{bottom:950.360037pt;}
.ydb{bottom:950.679904pt;}
.y8{bottom:951.319904pt;}
.ya4{bottom:954.839904pt;}
.y30f{bottom:955.480037pt;}
.y22e{bottom:955.800037pt;}
.y208{bottom:956.440037pt;}
.y27a{bottom:956.759904pt;}
.y62{bottom:961.239904pt;}
.yf6{bottom:964.440037pt;}
.y7{bottom:964.759904pt;}
.y1cc{bottom:965.079904pt;}
.yda{bottom:968.600037pt;}
.y189{bottom:969.560037pt;}
.y30e{bottom:970.839904pt;}
.y279{bottom:972.759904pt;}
.ya3{bottom:973.399904pt;}
.y207{bottom:975.319904pt;}
.y61{bottom:980.120037pt;}
.yd9{bottom:980.759904pt;}
.y246{bottom:984.600037pt;}
.y278{bottom:986.839904pt;}
.y1cb{bottom:988.120037pt;}
.y188{bottom:989.079904pt;}
.ya2{bottom:991.960037pt;}
.y206{bottom:993.880037pt;}
.y277{bottom:995.480037pt;}
.y60{bottom:998.679904pt;}
.y30d{bottom:999.319904pt;}
.y245{bottom:1001.560037pt;}
.y187{bottom:1008.600037pt;}
.ya1{bottom:1010.839904pt;}
.y1ca{bottom:1011.159904pt;}
.y276{bottom:1011.480037pt;}
.y30c{bottom:1012.440037pt;}
.y5f{bottom:1017.560037pt;}
.y30b{bottom:1025.880037pt;}
.y275{bottom:1027.479904pt;}
.y186{bottom:1028.120037pt;}
.ya0{bottom:1029.399904pt;}
.y5e{bottom:1030.999904pt;}
.y1c9{bottom:1032.600037pt;}
.y6{bottom:1038.040037pt;}
.y30a{bottom:1039.319904pt;}
.y274{bottom:1043.479904pt;}
.y5d{bottom:1044.120037pt;}
.y1c8{bottom:1045.720037pt;}
.y185{bottom:1047.640037pt;}
.y9f{bottom:1047.960037pt;}
.y5{bottom:1052.440037pt;}
.y5c{bottom:1056.600037pt;}
.y1c7{bottom:1057.560037pt;}
.y273{bottom:1057.880037pt;}
.y4{bottom:1065.880037pt;}
.y1{bottom:1073.720000pt;}
.h10{height:13.440000pt;}
.h2{height:13.440027pt;}
.h9{height:17.775000pt;}
.h14{height:19.552500pt;}
.h13{height:22.218750pt;}
.h19{height:23.996250pt;}
.h16{height:25.773750pt;}
.h15{height:27.551250pt;}
.h12{height:28.153125pt;}
.h3{height:29.328750pt;}
.h11{height:30.236250pt;}
.he{height:31.106250pt;}
.hf{height:32.883750pt;}
.h17{height:34.835625pt;}
.h5{height:36.438750pt;}
.ha{height:39.058125pt;}
.h6{height:39.993750pt;}
.h18{height:43.280625pt;}
.h1a{height:43.375000pt;}
.h1c{height:44.343750pt;}
.h7{height:44.437500pt;}
.hd{height:46.593750pt;}
.h1b{height:47.992500pt;}
.h1d{height:49.614375pt;}
.hb{height:50.315000pt;}
.hc{height:51.547500pt;}
.h8{height:52.781250pt;}
.h1e{height:69.671250pt;}
.h4{height:1098.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:20.160000pt;}
.w5{width:270.080000pt;}
.w4{width:296.960000pt;}
.w6{width:297.920000pt;}
.w3{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.213333pt;}
.x3{left:12.000000pt;}
.x4{left:94.720053pt;}
.x11{left:98.880133pt;}
.x15{left:100.160160pt;}
.xa{left:101.453453pt;}
.x17{left:106.893560pt;}
.x2d{left:111.853520pt;}
.x2f{left:112.786773pt;}
.x2e{left:115.586573pt;}
.x1d{left:117.226893pt;}
.x2c{left:120.676427pt;}
.x20{left:124.226933pt;}
.x1e{left:128.560267pt;}
.x18{left:129.560267pt;}
.x28{left:131.486933pt;}
.x21{left:135.560267pt;}
.x19{left:140.893600pt;}
.xc{left:142.720000pt;}
.x13{left:149.453467pt;}
.x16{left:154.893600pt;}
.x34{left:155.853467pt;}
.x32{left:156.786800pt;}
.x22{left:158.226933pt;}
.x27{left:162.476533pt;}
.x1f{left:163.560267pt;}
.xb{left:190.720000pt;}
.x25{left:195.276000pt;}
.x1c{left:203.781867pt;}
.x30{left:247.919867pt;}
.x33{left:255.520133pt;}
.x2a{left:274.156267pt;}
.xd{left:312.481067pt;}
.x35{left:314.120133pt;}
.x24{left:332.657467pt;}
.x1b{left:335.430933pt;}
.x23{left:336.485600pt;}
.x31{left:337.453467pt;}
.x1a{left:339.259067pt;}
.x14{left:386.720000pt;}
.xf{left:387.680000pt;}
.xe{left:401.919867pt;}
.x12{left:404.800133pt;}
.x10{left:414.560000pt;}
.x6{left:484.132533pt;}
.x9{left:525.466533pt;}
.x8{left:540.806267pt;}
.x7{left:562.585600pt;}
.x2b{left:578.926400pt;}
.x26{left:628.459600pt;}
.x1{left:664.480000pt;}
.x5{left:668.127200pt;}
.x29{left:669.456667pt;}
}




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