
    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_d67f2cc593169f78764a4760.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_640df65cf0739a08fbe8d8ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ddd14e79b87f986054880863.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.844000;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_381c9f1933504338bea905ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bc7bf20e6e70ff50a3ecbd00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.525000;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_f4ac92f05bd29e08c92e2a5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.525000;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_d2658bf2dbf92befec3acffd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_2ed08cca10dcb1bf7d53d002.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_0bed69e312b5fbed595d9d64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.848000;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_73429a64189a6d2b754df42f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.648000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bb5a881d5c09de1075c1f177.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3b22a67f4d313b8251094c86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.839000;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);}
.v6{vertical-align:-57.570000px;}
.v1{vertical-align:-19.530000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.274000px;}
.v3{vertical-align:21.696000px;}
.v8{vertical-align:31.500000px;}
.v4{vertical-align:40.470000px;}
.v5{vertical-align:111.720000px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000054px;}
.ls1e{letter-spacing:0.000235px;}
.ls1{letter-spacing:0.000960px;}
.ls1c{letter-spacing:0.001261px;}
.ls25{letter-spacing:0.001702px;}
.ls26{letter-spacing:0.002368px;}
.ls21{letter-spacing:0.002383px;}
.ls2{letter-spacing:0.002640px;}
.ls29{letter-spacing:0.003979px;}
.lsb{letter-spacing:0.004718px;}
.ls1f{letter-spacing:0.005108px;}
.lse{letter-spacing:0.177634px;}
.ls14{letter-spacing:0.183634px;}
.ls6{letter-spacing:0.535261px;}
.ls5{letter-spacing:0.541261px;}
.ls2a{letter-spacing:1.496725px;}
.lsc{letter-spacing:2.688017px;}
.ls12{letter-spacing:2.694017px;}
.ls13{letter-spacing:2.984725px;}
.ls0{letter-spacing:2.989200px;}
.lsd{letter-spacing:2.990725px;}
.lsf{letter-spacing:3.527108px;}
.ls28{letter-spacing:7.176712px;}
.ls17{letter-spacing:7.814725px;}
.ls18{letter-spacing:10.804718px;}
.ls15{letter-spacing:13.172725px;}
.ls2f{letter-spacing:13.282200px;}
.ls2c{letter-spacing:13.282718px;}
.lsa{letter-spacing:14.940322px;}
.ls22{letter-spacing:14.944200px;}
.ls1a{letter-spacing:14.944718px;}
.ls19{letter-spacing:14.947261px;}
.ls36{letter-spacing:15.652718px;}
.ls1b{letter-spacing:16.126718px;}
.ls16{letter-spacing:16.162718px;}
.ls2b{letter-spacing:16.273702px;}
.ls10{letter-spacing:16.604725px;}
.ls2e{letter-spacing:16.606718px;}
.ls32{letter-spacing:17.364322px;}
.ls11{letter-spacing:18.094718px;}
.ls35{letter-spacing:18.958718px;}
.ls34{letter-spacing:19.872322px;}
.ls20{letter-spacing:20.341702px;}
.ls30{letter-spacing:20.452718px;}
.ls7{letter-spacing:20.598322px;}
.ls8{letter-spacing:20.604322px;}
.ls1d{letter-spacing:23.214322px;}
.ls24{letter-spacing:23.776718px;}
.ls9{letter-spacing:24.087527px;}
.ls2d{letter-spacing:26.050200px;}
.ls27{letter-spacing:26.566718px;}
.ls31{letter-spacing:26.806200px;}
.ls33{letter-spacing:29.314200px;}
.ls4{letter-spacing:125.770200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-57.623678px;}
.ws8b{word-spacing:-29.887800px;}
.wsfa{word-spacing:-18.944143px;}
.ws35{word-spacing:-16.617617px;}
.ws12{word-spacing:-14.955955px;}
.ws42{word-spacing:-14.943900px;}
.wse6{word-spacing:-11.632298px;}
.wsc6{word-spacing:-10.913082px;}
.wse7{word-spacing:-10.460700px;}
.ws79{word-spacing:-3.466985px;}
.ws100{word-spacing:-3.407209px;}
.wsa2{word-spacing:-3.227882px;}
.ws78{word-spacing:-3.168107px;}
.wsa7{word-spacing:-3.108331px;}
.ws7b{word-spacing:-3.048556px;}
.ws25{word-spacing:-2.929004px;}
.wsdd{word-spacing:-2.809453px;}
.ws15{word-spacing:-2.797517px;}
.ws5b{word-spacing:-2.749678px;}
.wse0{word-spacing:-2.689902px;}
.wsa0{word-spacing:-2.510575px;}
.wsd6{word-spacing:-2.391024px;}
.ws63{word-spacing:-2.211697px;}
.wsb0{word-spacing:-2.151922px;}
.wsef{word-spacing:-2.092146px;}
.ws76{word-spacing:-1.972595px;}
.ws65{word-spacing:-1.853044px;}
.ws66{word-spacing:-1.793268px;}
.wsf2{word-spacing:-1.613941px;}
.ws33{word-spacing:-1.554166px;}
.ws5c{word-spacing:-1.494390px;}
.wscf{word-spacing:-1.434614px;}
.ws4b{word-spacing:-1.374839px;}
.ws45{word-spacing:-1.315063px;}
.wsa6{word-spacing:-1.255288px;}
.wsfd{word-spacing:-1.135736px;}
.ws97{word-spacing:-1.075961px;}
.ws61{word-spacing:-0.956410px;}
.ws41{word-spacing:-0.896634px;}
.ws50{word-spacing:-0.836858px;}
.ws52{word-spacing:-0.777083px;}
.ws69{word-spacing:-0.597756px;}
.ws16{word-spacing:-0.537984px;}
.ws68{word-spacing:-0.537980px;}
.ws58{word-spacing:-0.418429px;}
.ws8d{word-spacing:-0.358654px;}
.ws3e{word-spacing:-0.298878px;}
.wsd0{word-spacing:-0.179327px;}
.ws3b{word-spacing:-0.059776px;}
.ws9a{word-spacing:-0.027011px;}
.ws2{word-spacing:0.000000px;}
.wse4{word-spacing:0.000581px;}
.wsbb{word-spacing:0.004208px;}
.wsab{word-spacing:0.004534px;}
.ws7d{word-spacing:0.005683px;}
.ws7a{word-spacing:0.006242px;}
.wsf8{word-spacing:0.059776px;}
.ws46{word-spacing:0.119551px;}
.ws4e{word-spacing:0.179327px;}
.ws55{word-spacing:0.239102px;}
.ws24{word-spacing:0.298878px;}
.wsea{word-spacing:0.399713px;}
.wseb{word-spacing:0.418429px;}
.wsf5{word-spacing:0.537980px;}
.ws7e{word-spacing:0.595514px;}
.ws59{word-spacing:0.597756px;}
.ws38{word-spacing:0.657532px;}
.ws44{word-spacing:0.717307px;}
.ws8c{word-spacing:0.777083px;}
.ws81{word-spacing:0.836858px;}
.wsb{word-spacing:0.860774px;}
.ws2b{word-spacing:0.896634px;}
.ws4c{word-spacing:1.075961px;}
.wsce{word-spacing:1.135736px;}
.ws6d{word-spacing:1.195512px;}
.ws36{word-spacing:1.255288px;}
.ws62{word-spacing:1.315063px;}
.wsae{word-spacing:1.374839px;}
.wsdf{word-spacing:1.434614px;}
.ws93{word-spacing:1.494390px;}
.wsbe{word-spacing:1.554166px;}
.wsf7{word-spacing:1.613941px;}
.ws1c{word-spacing:1.667750px;}
.ws28{word-spacing:1.733492px;}
.wsc9{word-spacing:1.793268px;}
.ws3d{word-spacing:1.853044px;}
.ws60{word-spacing:1.972595px;}
.wsfe{word-spacing:2.032032px;}
.ws31{word-spacing:2.032370px;}
.wsbd{word-spacing:2.092146px;}
.wse1{word-spacing:2.151922px;}
.wsa9{word-spacing:2.211697px;}
.ws7{word-spacing:2.259533px;}
.wsa5{word-spacing:2.271473px;}
.ws56{word-spacing:2.331248px;}
.ws54{word-spacing:2.391024px;}
.wsf3{word-spacing:2.450800px;}
.wsaf{word-spacing:2.507776px;}
.ws26{word-spacing:2.510575px;}
.ws37{word-spacing:2.570351px;}
.wsd2{word-spacing:2.630126px;}
.ws3f{word-spacing:2.689902px;}
.ws1a{word-spacing:2.797517px;}
.wsba{word-spacing:2.809453px;}
.wsf4{word-spacing:2.869229px;}
.wsca{word-spacing:2.988780px;}
.ws14{word-spacing:3.012710px;}
.ws75{word-spacing:3.048556px;}
.ws29{word-spacing:3.168107px;}
.wsfb{word-spacing:3.227882px;}
.ws6f{word-spacing:3.287658px;}
.ws4a{word-spacing:3.347434px;}
.ws77{word-spacing:3.407209px;}
.ws2a{word-spacing:3.466985px;}
.wsbf{word-spacing:3.526760px;}
.ws3{word-spacing:3.586536px;}
.wsac{word-spacing:3.587251px;}
.wsaa{word-spacing:3.587412px;}
.wsad{word-spacing:3.587990px;}
.ws94{word-spacing:3.590497px;}
.wsa3{word-spacing:3.590543px;}
.wsa4{word-spacing:3.591283px;}
.wscc{word-spacing:3.646312px;}
.ws82{word-spacing:3.706087px;}
.ws83{word-spacing:3.708709px;}
.ws84{word-spacing:3.710134px;}
.wsd4{word-spacing:3.765863px;}
.ws3a{word-spacing:3.825638px;}
.ws3c{word-spacing:3.885414px;}
.wse2{word-spacing:3.901225px;}
.ws47{word-spacing:3.945190px;}
.wsb1{word-spacing:3.979609px;}
.ws1e{word-spacing:4.004965px;}
.ws8e{word-spacing:4.124516px;}
.ws5{word-spacing:4.142477px;}
.wsff{word-spacing:4.184292px;}
.ws32{word-spacing:4.244068px;}
.ws5d{word-spacing:4.303843px;}
.wsd3{word-spacing:4.363619px;}
.ws11{word-spacing:4.411469px;}
.wsa1{word-spacing:4.423394px;}
.wsfc{word-spacing:4.436683px;}
.wsd{word-spacing:4.519066px;}
.ws87{word-spacing:4.662497px;}
.ws27{word-spacing:4.722272px;}
.wsb8{word-spacing:4.841824px;}
.wsb9{word-spacing:4.901599px;}
.ws1b{word-spacing:5.057050px;}
.wsf9{word-spacing:5.080926px;}
.ws48{word-spacing:5.260253px;}
.ws96{word-spacing:5.379804px;}
.wse{word-spacing:5.487437px;}
.ws4d{word-spacing:5.499355px;}
.wsd7{word-spacing:5.559131px;}
.ws74{word-spacing:5.618906px;}
.ws73{word-spacing:5.658242px;}
.ws72{word-spacing:5.678682px;}
.wsc{word-spacing:5.702630px;}
.ws40{word-spacing:5.738458px;}
.ws0{word-spacing:5.883133px;}
.ws1f{word-spacing:5.917784px;}
.ws5a{word-spacing:5.977560px;}
.ws64{word-spacing:6.037336px;}
.ws8a{word-spacing:6.097111px;}
.ws89{word-spacing:6.102326px;}
.ws88{word-spacing:6.156887px;}
.ws34{word-spacing:6.216662px;}
.wsdc{word-spacing:6.276438px;}
.ws91{word-spacing:6.336214px;}
.ws92{word-spacing:6.395989px;}
.ws57{word-spacing:6.515540px;}
.ws8{word-spacing:6.617203px;}
.ws70{word-spacing:6.635092px;}
.wsd9{word-spacing:6.694867px;}
.wsdb{word-spacing:6.754643px;}
.ws51{word-spacing:6.814418px;}
.wsc1{word-spacing:6.874194px;}
.ws8f{word-spacing:6.920750px;}
.ws49{word-spacing:6.933970px;}
.ws90{word-spacing:6.948558px;}
.ws5e{word-spacing:6.993745px;}
.ws17{word-spacing:7.047590px;}
.ws9f{word-spacing:7.053521px;}
.ws4f{word-spacing:7.113296px;}
.wsf{word-spacing:7.155187px;}
.ws39{word-spacing:7.173072px;}
.wsb4{word-spacing:7.232848px;}
.wsc0{word-spacing:7.352399px;}
.wscb{word-spacing:7.412174px;}
.wse9{word-spacing:7.469494px;}
.wsc5{word-spacing:7.471950px;}
.wse8{word-spacing:7.475494px;}
.ws101{word-spacing:7.511040px;}
.ws102{word-spacing:7.531726px;}
.wsbc{word-spacing:7.591501px;}
.ws6{word-spacing:7.639373px;}
.ws9e{word-spacing:7.830604px;}
.ws9{word-spacing:7.854566px;}
.ws6a{word-spacing:7.950155px;}
.ws86{word-spacing:8.069706px;}
.ws6e{word-spacing:8.129482px;}
.wsda{word-spacing:8.189257px;}
.wsc2{word-spacing:8.249033px;}
.wsc3{word-spacing:8.262242px;}
.ws5f{word-spacing:8.308808px;}
.wsd5{word-spacing:8.368584px;}
.ws7f{word-spacing:8.425480px;}
.ws80{word-spacing:8.428360px;}
.wsd8{word-spacing:8.488135px;}
.wscd{word-spacing:8.547911px;}
.ws21{word-spacing:8.667462px;}
.ws23{word-spacing:8.787013px;}
.ws53{word-spacing:8.846789px;}
.ws71{word-spacing:9.026116px;}
.wse5{word-spacing:9.131494px;}
.ws19{word-spacing:9.414720px;}
.ws7c{word-spacing:9.564096px;}
.ws6b{word-spacing:9.623872px;}
.ws6c{word-spacing:9.683647px;}
.ws95{word-spacing:9.803198px;}
.wse3{word-spacing:9.878431px;}
.wsf0{word-spacing:10.042301px;}
.wsf6{word-spacing:10.221628px;}
.ws13{word-spacing:10.221696px;}
.ws10{word-spacing:10.329293px;}
.wsc4{word-spacing:11.178037px;}
.ws67{word-spacing:11.357364px;}
.ws20{word-spacing:11.895344px;}
.wsde{word-spacing:11.955120px;}
.wsa{word-spacing:12.104640px;}
.wsf1{word-spacing:12.552876px;}
.ws103{word-spacing:12.732203px;}
.wsa8{word-spacing:13.270183px;}
.wsb2{word-spacing:14.948400px;}
.ws98{word-spacing:15.729999px;}
.ws1d{word-spacing:16.899811px;}
.ws22{word-spacing:17.514251px;}
.ws1{word-spacing:18.682923px;}
.wsb3{word-spacing:19.008641px;}
.ws43{word-spacing:20.102598px;}
.wsd1{word-spacing:21.339889px;}
.ws18{word-spacing:22.032010px;}
.ws4{word-spacing:33.383904px;}
.ws85{word-spacing:35.832597px;}
.ws2f{word-spacing:56.785514px;}
.wsec{word-spacing:56.786820px;}
.wsee{word-spacing:104.069320px;}
.wsed{word-spacing:132.283403px;}
.wsc7{word-spacing:176.640777px;}
.ws2e{word-spacing:179.716500px;}
.wsc8{word-spacing:180.764609px;}
.ws30{word-spacing:210.229480px;}
.ws2c{word-spacing:277.835683px;}
.wsb7{word-spacing:279.690032px;}
.ws9c{word-spacing:405.371743px;}
.wsb5{word-spacing:426.319579px;}
.ws99{word-spacing:448.496327px;}
.wsb6{word-spacing:454.414111px;}
.ws9b{word-spacing:500.022894px;}
.ws9d{word-spacing:567.334517px;}
._53{margin-left:-7.597676px;}
._22{margin-left:-6.528607px;}
._3b{margin-left:-5.475346px;}
._4{margin-left:-4.432425px;}
._2{margin-left:-3.287658px;}
._5{margin-left:-2.205734px;}
._1{margin-left:-1.192527px;}
._1f{width:1.135740px;}
._1e{width:3.042464px;}
._f{width:12.212237px;}
._11{width:13.954742px;}
._2f{width:14.976398px;}
._10{width:16.569907px;}
._20{width:18.112007px;}
._14{width:19.128192px;}
._b{width:20.679542px;}
._c{width:22.380134px;}
._6{width:23.886490px;}
._e{width:25.661837px;}
._23{width:26.662808px;}
._15{width:28.333634px;}
._8{width:29.535322px;}
._1c{width:31.023536px;}
._a{width:33.247411px;}
._9{width:34.753766px;}
._13{width:36.821770px;}
._24{width:38.196608px;}
._1d{width:39.212794px;}
._43{width:40.527857px;}
._3c{width:41.723369px;}
._21{width:43.044478px;}
._d{width:47.826778px;}
._4a{width:51.607141px;}
._7{width:53.161781px;}
._12{width:54.729961px;}
._3d{width:56.594642px;}
._3{width:62.160654px;}
._0{width:64.793967px;}
._2a{width:70.834086px;}
._16{width:72.443260px;}
._29{width:94.031786px;}
._38{width:105.608575px;}
._2e{width:113.274762px;}
._2b{width:118.176361px;}
._50{width:122.360653px;}
._19{width:131.570251px;}
._42{width:144.716728px;}
._52{width:146.868649px;}
._2c{width:175.381610px;}
._4d{width:191.677691px;}
._51{width:213.637994px;}
._2d{width:214.722986px;}
._4c{width:223.958400px;}
._1a{width:225.172878px;}
._1b{width:229.127098px;}
._26{width:232.420599px;}
._39{width:243.107365px;}
._36{width:244.551010px;}
._4e{width:247.530760px;}
._3a{width:251.535725px;}
._37{width:255.310618px;}
._45{width:256.978372px;}
._47{width:262.474660px;}
._4f{width:266.838278px;}
._41{width:270.365039px;}
._25{width:273.473370px;}
._28{width:280.048686px;}
._17{width:296.186792px;}
._46{width:306.648828px;}
._31{width:319.692975px;}
._40{width:339.884062px;}
._35{width:357.631452px;}
._3e{width:377.243812px;}
._27{width:413.237753px;}
._44{width:419.284120px;}
._48{width:471.683297px;}
._18{width:478.451434px;}
._3f{width:497.572094px;}
._30{width:508.803944px;}
._33{width:523.096276px;}
._34{width:540.610526px;}
._32{width:623.579059px;}
._4b{width:762.890215px;}
._49{width:880.891353px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:43.652327px;}
.fs4{font-size:51.108000px;}
.fs3{font-size:53.798400px;}
.fs6{font-size:56.787000px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:68.144400px;}
.fs0{font-size:79.501800px;}
.y0{bottom:0.000000px;}
.y4d{bottom:46.960500px;}
.y2d{bottom:97.984500px;}
.y9f{bottom:115.678500px;}
.y146{bottom:115.840500px;}
.y2c{bottom:115.917000px;}
.y122{bottom:127.462500px;}
.y2b{bottom:133.849500px;}
.y8e{bottom:139.405500px;}
.y1b8{bottom:139.566000px;}
.y173{bottom:148.389000px;}
.y69{bottom:151.782000px;}
.y2a{bottom:151.783500px;}
.y1fe{bottom:153.277500px;}
.y100{bottom:156.483000px;}
.y121{bottom:156.940500px;}
.y8d{bottom:157.338000px;}
.y1b7{bottom:157.498500px;}
.y29{bottom:169.716000px;}
.y1fd{bottom:171.210000px;}
.yff{bottom:179.115000px;}
.y8c{bottom:180.828000px;}
.y1b6{bottom:181.147500px;}
.y120{bottom:186.009000px;}
.y28{bottom:187.648500px;}
.y172{bottom:193.654500px;}
.y1d9{bottom:198.279000px;}
.ydd{bottom:198.436500px;}
.y8b{bottom:198.760500px;}
.y1b5{bottom:199.080000px;}
.yfe{bottom:201.748500px;}
.y13d{bottom:202.192500px;}
.y1fc{bottom:203.992500px;}
.y27{bottom:205.581000px;}
.y171{bottom:211.587000px;}
.y11f{bottom:215.913000px;}
.y1d8{bottom:216.213000px;}
.y8a{bottom:222.249000px;}
.y1b4{bottom:222.729000px;}
.y26{bottom:223.513500px;}
.yfd{bottom:224.380500px;}
.y170{bottom:229.519500px;}
.y1d7{bottom:234.145500px;}
.ydc{bottom:238.680000px;}
.y89{bottom:240.181500px;}
.y1b3{bottom:240.661500px;}
.y25{bottom:241.446000px;}
.yfc{bottom:247.014000px;}
.y16f{bottom:247.452000px;}
.y13c{bottom:247.461000px;}
.y1d6{bottom:252.078000px;}
.y1fb{bottom:253.069500px;}
.ydb{bottom:256.612500px;}
.ybe{bottom:258.462000px;}
.y11e{bottom:258.610500px;}
.y192{bottom:259.378500px;}
.y24{bottom:259.380000px;}
.y1b2{bottom:264.310500px;}
.y13b{bottom:265.393500px;}
.y16e{bottom:265.734000px;}
.y88{bottom:269.220000px;}
.yfb{bottom:269.646000px;}
.y1fa{bottom:271.002000px;}
.yda{bottom:274.545000px;}
.y11d{bottom:276.543000px;}
.y23{bottom:277.312500px;}
.ybd{bottom:282.468000px;}
.y13a{bottom:283.327500px;}
.y1d5{bottom:283.476000px;}
.y16d{bottom:283.668000px;}
.yfa{bottom:287.580000px;}
.y9e{bottom:288.126000px;}
.y1f9{bottom:288.936000px;}
.yd9{bottom:292.477500px;}
.y4c{bottom:293.557500px;}
.y1b1{bottom:293.989500px;}
.y11c{bottom:294.477000px;}
.y191{bottom:295.245000px;}
.y168{bottom:299.622000px;}
.ybc{bottom:300.400500px;}
.y139{bottom:301.260000px;}
.y16c{bottom:301.600500px;}
.yf9{bottom:305.512500px;}
.y9d{bottom:306.058500px;}
.y22{bottom:307.726500px;}
.y68{bottom:309.232500px;}
.yd8{bottom:310.410000px;}
.y87{bottom:311.050500px;}
.y11b{bottom:312.409500px;}
.y1f8{bottom:314.389500px;}
.y167{bottom:317.554500px;}
.y138{bottom:319.192500px;}
.y190{bottom:322.512000px;}
.yf8{bottom:323.445000px;}
.ybb{bottom:324.406500px;}
.y1d4{bottom:328.291500px;}
.yd7{bottom:328.344000px;}
.y86{bottom:328.983000px;}
.y1f7{bottom:332.322000px;}
.y16b{bottom:334.072500px;}
.y166{bottom:335.487000px;}
.y1b0{bottom:336.460500px;}
.y137{bottom:337.125000px;}
.y4b{bottom:340.527000px;}
.yf7{bottom:341.377500px;}
.yba{bottom:342.340500px;}
.y1d3{bottom:346.224000px;}
.yd6{bottom:346.276500px;}
.y85{bottom:346.915500px;}
.y1f6{bottom:350.254500px;}
.y11a{bottom:353.244000px;}
.y165{bottom:353.421000px;}
.y1af{bottom:354.393000px;}
.y67{bottom:356.934000px;}
.y4a{bottom:358.459500px;}
.yf6{bottom:359.310000px;}
.y18f{bottom:362.571000px;}
.yd5{bottom:364.209000px;}
.y84{bottom:364.849500px;}
.y9c{bottom:365.881500px;}
.yb9{bottom:366.346500px;}
.y153{bottom:368.974500px;}
.y136{bottom:369.601500px;}
.y119{bottom:371.178000px;}
.y1ae{bottom:372.325500px;}
.y1d2{bottom:373.635000px;}
.y66{bottom:374.866500px;}
.y1f5{bottom:375.193500px;}
.y21{bottom:376.104000px;}
.y49{bottom:376.393500px;}
.y18e{bottom:380.503500px;}
.y83{bottom:382.782000px;}
.yb8{bottom:384.279000px;}
.yf5{bottom:384.925500px;}
.y118{bottom:389.110500px;}
.y1ad{bottom:390.258000px;}
.y1d1{bottom:391.567500px;}
.y20{bottom:392.542500px;}
.y65{bottom:392.799000px;}
.y1f4{bottom:393.126000px;}
.y164{bottom:394.215000px;}
.y48{bottom:394.326000px;}
.yd4{bottom:396.112500px;}
.y16a{bottom:397.192500px;}
.y18d{bottom:398.436000px;}
.y82{bottom:400.714500px;}
.y117{bottom:407.043000px;}
.y1ac{bottom:408.190500px;}
.yb7{bottom:408.285000px;}
.y1f{bottom:408.981000px;}
.y64{bottom:410.731500px;}
.y1f3{bottom:411.058500px;}
.y163{bottom:412.147500px;}
.y47{bottom:412.258500px;}
.y18c{bottom:416.368500px;}
.y135{bottom:417.859500px;}
.y1d0{bottom:420.729000px;}
.yf4{bottom:423.331500px;}
.y116{bottom:424.975500px;}
.y1e{bottom:425.419500px;}
.y1ab{bottom:426.124500px;}
.yb6{bottom:426.219000px;}
.y63{bottom:428.664000px;}
.y81{bottom:429.753000px;}
.y162{bottom:430.080000px;}
.y46{bottom:430.881000px;}
.y18b{bottom:434.302500px;}
.y134{bottom:435.792000px;}
.y1f2{bottom:435.997500px;}
.yd3{bottom:437.563500px;}
.yf3{bottom:441.264000px;}
.y1d{bottom:441.858000px;}
.y115{bottom:442.908000px;}
.y1aa{bottom:444.057000px;}
.y62{bottom:446.596500px;}
.y45{bottom:448.815000px;}
.y1cf{bottom:449.892000px;}
.yb5{bottom:450.225000px;}
.y18a{bottom:452.235000px;}
.y133{bottom:453.724500px;}
.y1f1{bottom:453.931500px;}
.yf2{bottom:459.196500px;}
.y114{bottom:460.840500px;}
.y161{bottom:461.983500px;}
.y1a9{bottom:461.989500px;}
.y61{bottom:464.530500px;}
.y1c{bottom:465.021000px;}
.y44{bottom:466.747500px;}
.yb4{bottom:468.157500px;}
.y189{bottom:470.167500px;}
.y132{bottom:471.658500px;}
.y1f0{bottom:471.864000px;}
.y80{bottom:474.573000px;}
.yf1{bottom:477.130500px;}
.y1ce{bottom:477.303000px;}
.y113{bottom:478.774500px;}
.yd2{bottom:479.076000px;}
.y1a8{bottom:479.922000px;}
.y1b{bottom:481.459500px;}
.y60{bottom:482.463000px;}
.y43{bottom:484.680000px;}
.y188{bottom:488.100000px;}
.y131{bottom:489.591000px;}
.yb3{bottom:492.163500px;}
.y7f{bottom:492.505500px;}
.y160{bottom:493.366500px;}
.y1ef{bottom:496.803000px;}
.yd1{bottom:497.008500px;}
.y1a7{bottom:497.854500px;}
.y1a{bottom:497.898000px;}
.y5f{bottom:500.395500px;}
.y42{bottom:502.612500px;}
.yf0{bottom:502.744500px;}
.y9b{bottom:504.951000px;}
.y187{bottom:506.032500px;}
.y1cd{bottom:506.464500px;}
.y130{bottom:507.523500px;}
.yb2{bottom:510.096000px;}
.y7e{bottom:510.438000px;}
.y112{bottom:510.676500px;}
.y15f{bottom:511.299000px;}
.y19{bottom:514.336500px;}
.y1ee{bottom:514.735500px;}
.yd0{bottom:514.942500px;}
.y5e{bottom:518.328000px;}
.y41{bottom:520.545000px;}
.y9a{bottom:522.885000px;}
.y186{bottom:523.965000px;}
.y1a6{bottom:527.533500px;}
.y7d{bottom:528.370500px;}
.y15e{bottom:529.233000px;}
.y18{bottom:530.775000px;}
.y1ed{bottom:532.668000px;}
.ycf{bottom:532.875000px;}
.yb1{bottom:534.103500px;}
.y5d{bottom:536.260500px;}
.y1cc{bottom:537.093000px;}
.y40{bottom:538.477500px;}
.y12f{bottom:540.000000px;}
.y185{bottom:541.899000px;}
.y111{bottom:542.101500px;}
.yef{bottom:544.140000px;}
.y7c{bottom:546.303000px;}
.y15d{bottom:547.165500px;}
.y17{bottom:547.213500px;}
.y1cb{bottom:547.344000px;}
.y213{bottom:553.776000px;}
.y5c{bottom:554.194500px;}
.yce{bottom:556.284000px;}
.y3f{bottom:556.411500px;}
.y1ec{bottom:558.121500px;}
.yb0{bottom:558.157500px;}
.y184{bottom:559.831500px;}
.y110{bottom:560.035500px;}
.yee{bottom:562.072500px;}
.y16{bottom:563.652000px;}
.y7b{bottom:564.235500px;}
.y1a5{bottom:570.004500px;}
.y212{bottom:571.708500px;}
.y3e{bottom:574.344000px;}
.yaf{bottom:576.138000px;}
.y15c{bottom:576.987000px;}
.y183{bottom:577.764000px;}
.ycd{bottom:579.693000px;}
.yed{bottom:580.005000px;}
.y15{bottom:580.090500px;}
.y7a{bottom:582.169500px;}
.y99{bottom:582.870000px;}
.y12e{bottom:585.268500px;}
.y5b{bottom:586.114500px;}
.y1a4{bottom:587.937000px;}
.y211{bottom:589.641000px;}
.y10f{bottom:589.939500px;}
.y1ca{bottom:590.211000px;}
.y1eb{bottom:591.418500px;}
.y3d{bottom:592.276500px;}
.yae{bottom:594.070500px;}
.y182{bottom:595.696500px;}
.y14{bottom:596.527500px;}
.y79{bottom:600.102000px;}
.yec{bottom:602.638500px;}
.ycc{bottom:603.102000px;}
.y12d{bottom:603.202500px;}
.y1a3{bottom:605.869500px;}
.y152{bottom:607.272585px;}
.y210{bottom:609.067500px;}
.y3c{bottom:610.209000px;}
.yad{bottom:612.004500px;}
.y13{bottom:612.966000px;}
.y181{bottom:613.629000px;}
.y78{bottom:618.034500px;}
.y15b{bottom:619.602000px;}
.y1c9{bottom:620.487000px;}
.y151{bottom:620.805219px;}
.y12c{bottom:621.135000px;}
.y1a2{bottom:623.802000px;}
.yeb{bottom:625.270500px;}
.ycb{bottom:626.512500px;}
.y20f{bottom:627.001500px;}
.y1c6{bottom:627.339000px;}
.y3b{bottom:628.141500px;}
.y12{bottom:629.404500px;}
.yac{bottom:629.937000px;}
.y5a{bottom:630.826500px;}
.y180{bottom:631.561500px;}
.y10e{bottom:632.637000px;}
.y150{bottom:634.336757px;}
.y77{bottom:635.967000px;}
.y1ea{bottom:637.507500px;}
.y15a{bottom:637.534500px;}
.y1c4{bottom:637.591500px;}
.y1a1{bottom:641.736000px;}
.yca{bottom:644.445000px;}
.y20e{bottom:644.934000px;}
.y11{bottom:645.843000px;}
.y3a{bottom:646.075500px;}
.y12b{bottom:646.096500px;}
.yea{bottom:647.904000px;}
.yab{bottom:647.917500px;}
.y59{bottom:648.759000px;}
.y17f{bottom:649.495500px;}
.y10d{bottom:650.569500px;}
.y1c8{bottom:652.882500px;}
.y76{bottom:653.899500px;}
.y1e9{bottom:655.440000px;}
.y159{bottom:655.467000px;}
.y1c7{bottom:655.870500px;}
.y1a0{bottom:659.668500px;}
.y1c5{bottom:662.100000px;}
.y10{bottom:662.281500px;}
.y14f{bottom:663.291000px;}
.y39{bottom:664.008000px;}
.y20d{bottom:664.360500px;}
.yaa{bottom:665.850000px;}
.y58{bottom:666.691500px;}
.yc9{bottom:667.854000px;}
.ye9{bottom:670.536000px;}
.y12a{bottom:670.707000px;}
.y75{bottom:671.832000px;}
.y1e8{bottom:673.372500px;}
.y158{bottom:673.399500px;}
.y17e{bottom:676.762500px;}
.yf{bottom:678.720000px;}
.y10c{bottom:680.047500px;}
.y20c{bottom:682.293000px;}
.ya9{bottom:683.782500px;}
.y57{bottom:684.864000px;}
.yc8{bottom:685.786500px;}
.y19f{bottom:689.347500px;}
.y1c3{bottom:689.731500px;}
.y74{bottom:689.766000px;}
.y1e7{bottom:691.305000px;}
.y157{bottom:691.332000px;}
.ye8{bottom:693.169500px;}
.ye{bottom:695.158500px;}
.y129{bottom:695.668500px;}
.y1c0{bottom:696.585000px;}
.y10b{bottom:697.980000px;}
.y38{bottom:698.185500px;}
.y20b{bottom:700.225500px;}
.ya8{bottom:701.715000px;}
.y56{bottom:702.796500px;}
.y1bf{bottom:706.836000px;}
.y73{bottom:707.698500px;}
.yc7{bottom:709.195500px;}
.y1e6{bottom:709.237500px;}
.y156{bottom:709.266000px;}
.yd{bottom:711.597000px;}
.y14e{bottom:712.302000px;}
.y98{bottom:713.344500px;}
.y128{bottom:713.601000px;}
.y17d{bottom:716.821500px;}
.ye7{bottom:718.783500px;}
.y20a{bottom:719.653500px;}
.y55{bottom:720.729000px;}
.y1c2{bottom:722.127000px;}
.y1c1{bottom:725.116500px;}
.y72{bottom:725.631000px;}
.yc6{bottom:727.128000px;}
.y155{bottom:727.198500px;}
.y10a{bottom:727.458000px;}
.y1e5{bottom:727.686000px;}
.yc{bottom:728.035500px;}
.y14d{bottom:730.236000px;}
.y127{bottom:731.535000px;}
.y19e{bottom:731.817000px;}
.ya7{bottom:732.681000px;}
.y17c{bottom:734.754000px;}
.y97{bottom:737.470500px;}
.y209{bottom:737.586000px;}
.y54{bottom:738.661500px;}
.y71{bottom:743.563500px;}
.yb{bottom:744.474000px;}
.yc5{bottom:745.062000px;}
.y109{bottom:745.392000px;}
.y1e4{bottom:745.618500px;}
.y14c{bottom:748.168500px;}
.y19d{bottom:749.751000px;}
.y17b{bottom:752.686500px;}
.y208{bottom:755.518500px;}
.y53{bottom:756.595500px;}
.ye6{bottom:757.191000px;}
.y1be{bottom:757.663500px;}
.ya{bottom:760.911000px;}
.y70{bottom:761.496000px;}
.yc4{bottom:762.994500px;}
.y1e3{bottom:763.551000px;}
.y126{bottom:764.011500px;}
.y145{bottom:764.289000px;}
.y14b{bottom:766.101000px;}
.y37{bottom:767.211000px;}
.y19c{bottom:767.683500px;}
.y17a{bottom:770.619000px;}
.y52{bottom:774.528000px;}
.y108{bottom:774.870000px;}
.y207{bottom:774.946500px;}
.ye5{bottom:775.123500px;}
.y1bd{bottom:775.596000px;}
.y96{bottom:775.623000px;}
.ya6{bottom:776.437500px;}
.y9{bottom:777.349500px;}
.y6f{bottom:779.428500px;}
.y154{bottom:780.468000px;}
.yc3{bottom:780.927000px;}
.y1e2{bottom:781.483500px;}
.y19b{bottom:785.616000px;}
.y36{bottom:785.742000px;}
.y179{bottom:788.551500px;}
.y51{bottom:792.460500px;}
.y107{bottom:792.802500px;}
.y206{bottom:792.879000px;}
.ye4{bottom:793.056000px;}
.y95{bottom:793.555500px;}
.y8{bottom:793.788000px;}
.y144{bottom:794.113500px;}
.ya5{bottom:794.370000px;}
.y1bc{bottom:795.279000px;}
.y6e{bottom:797.362500px;}
.yc2{bottom:798.859500px;}
.y1e1{bottom:799.416000px;}
.y19a{bottom:803.548500px;}
.y35{bottom:804.273000px;}
.y169{bottom:809.071500px;}
.y125{bottom:809.280000px;}
.y7{bottom:810.226500px;}
.y50{bottom:810.393000px;}
.y205{bottom:810.811500px;}
.ye3{bottom:810.988500px;}
.y94{bottom:811.489500px;}
.ya4{bottom:812.304000px;}
.y1bb{bottom:813.211500px;}
.y6d{bottom:815.295000px;}
.y178{bottom:815.818500px;}
.yc1{bottom:816.792000px;}
.y1e0{bottom:817.348500px;}
.y143{bottom:820.821000px;}
.y199{bottom:821.481000px;}
.y106{bottom:821.869500px;}
.y34{bottom:822.802500px;}
.y124{bottom:827.212500px;}
.y4f{bottom:828.325500px;}
.y93{bottom:829.422000px;}
.ya3{bottom:830.236500px;}
.y204{bottom:830.238000px;}
.y1ba{bottom:831.145500px;}
.y6c{bottom:833.227500px;}
.yc0{bottom:834.724500px;}
.y1df{bottom:835.282500px;}
.ye2{bottom:835.767000px;}
.y198{bottom:839.415000px;}
.y14a{bottom:839.767500px;}
.y6{bottom:844.764000px;}
.y105{bottom:845.575500px;}
.ya2{bottom:848.169000px;}
.y203{bottom:848.172000px;}
.y6b{bottom:851.160000px;}
.y1de{bottom:853.729500px;}
.y33{bottom:855.304500px;}
.y197{bottom:857.347500px;}
.y177{bottom:858.867000px;}
.y123{bottom:859.689000px;}
.y4e{bottom:860.245500px;}
.y142{bottom:860.319000px;}
.y92{bottom:861.324000px;}
.ye1{bottom:863.098500px;}
.ybf{bottom:863.446500px;}
.y104{bottom:863.508000px;}
.y5{bottom:863.791500px;}
.ya1{bottom:866.101500px;}
.y202{bottom:866.104500px;}
.y6a{bottom:869.092500px;}
.y1b9{bottom:870.622500px;}
.y1dd{bottom:871.662000px;}
.y196{bottom:875.280000px;}
.y176{bottom:876.799500px;}
.y141{bottom:878.251500px;}
.y4{bottom:881.725500px;}
.y201{bottom:885.531000px;}
.y32{bottom:887.026500px;}
.y103{bottom:887.214000px;}
.y1dc{bottom:889.594500px;}
.ye0{bottom:890.431500px;}
.y91{bottom:891.808500px;}
.y195{bottom:893.212500px;}
.y140{bottom:896.185500px;}
.ya0{bottom:897.067500px;}
.y175{bottom:899.845500px;}
.y200{bottom:903.463500px;}
.y31{bottom:904.959000px;}
.y102{bottom:905.146500px;}
.y1db{bottom:907.527000px;}
.y90{bottom:909.741000px;}
.y194{bottom:911.145000px;}
.y13f{bottom:914.118000px;}
.ydf{bottom:915.210000px;}
.y174{bottom:917.778000px;}
.y1ff{bottom:921.397500px;}
.y30{bottom:922.891500px;}
.y149{bottom:925.282500px;}
.y1da{bottom:925.459500px;}
.y8f{bottom:927.673500px;}
.y101{bottom:928.852500px;}
.y193{bottom:929.077500px;}
.y3{bottom:929.545500px;}
.y13e{bottom:932.050500px;}
.yde{bottom:933.142500px;}
.y2f{bottom:940.824000px;}
.y148{bottom:943.215000px;}
.y2{bottom:953.455500px;}
.y2e{bottom:958.756500px;}
.y147{bottom:961.147500px;}
.y1{bottom:977.365500px;}
.h12{height:3.347434px;}
.h4{height:24.675533px;}
.h17{height:26.361040px;}
.h11{height:28.704161px;}
.h13{height:28.787846px;}
.hd{height:30.032801px;}
.hc{height:30.294715px;}
.h6{height:37.013299px;}
.h7{height:37.336090px;}
.h5{height:37.871028px;}
.hb{height:40.109428px;}
.h10{height:41.006062px;}
.h3{height:41.125613px;}
.h9{height:41.484266px;}
.ha{height:42.079167px;}
.h15{height:46.061846px;}
.he{height:50.400161px;}
.h8{height:50.495000px;}
.h2{height:58.910834px;}
.h16{height:66.831040px;}
.hf{height:81.595613px;}
.h14{height:115.067434px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.x24{left:92.511000px;}
.xa{left:94.006500px;}
.x8{left:98.488500px;}
.xd{left:103.719000px;}
.x6{left:107.455500px;}
.x4{left:108.633000px;}
.x12{left:116.421000px;}
.x5{left:122.142000px;}
.xc{left:127.618500px;}
.x13{left:147.375000px;}
.x2{left:148.819500px;}
.x3{left:151.597500px;}
.x9{left:160.756500px;}
.x23{left:168.139500px;}
.xe{left:197.508000px;}
.x22{left:206.526000px;}
.xb{left:212.773500px;}
.xf{left:226.062000px;}
.x14{left:227.904000px;}
.x11{left:234.258000px;}
.x1b{left:280.636500px;}
.x15{left:316.398000px;}
.x20{left:321.288000px;}
.x1c{left:326.347500px;}
.x1d{left:342.174000px;}
.x10{left:353.946000px;}
.x1f{left:356.419500px;}
.x7{left:357.681000px;}
.x16{left:359.259000px;}
.x1e{left:361.200000px;}
.x18{left:371.016000px;}
.x19{left:373.504500px;}
.x21{left:375.415500px;}
.x17{left:378.285000px;}
.x1a{left:393.651000px;}
@media print{
.v6{vertical-align:-51.173333pt;}
.v1{vertical-align:-17.360000pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.354667pt;}
.v3{vertical-align:19.285333pt;}
.v8{vertical-align:28.000000pt;}
.v4{vertical-align:35.973333pt;}
.v5{vertical-align:99.306667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000048pt;}
.ls1e{letter-spacing:0.000209pt;}
.ls1{letter-spacing:0.000853pt;}
.ls1c{letter-spacing:0.001121pt;}
.ls25{letter-spacing:0.001513pt;}
.ls26{letter-spacing:0.002105pt;}
.ls21{letter-spacing:0.002118pt;}
.ls2{letter-spacing:0.002347pt;}
.ls29{letter-spacing:0.003537pt;}
.lsb{letter-spacing:0.004194pt;}
.ls1f{letter-spacing:0.004541pt;}
.lse{letter-spacing:0.157897pt;}
.ls14{letter-spacing:0.163230pt;}
.ls6{letter-spacing:0.475788pt;}
.ls5{letter-spacing:0.481121pt;}
.ls2a{letter-spacing:1.330422pt;}
.lsc{letter-spacing:2.389348pt;}
.ls12{letter-spacing:2.394682pt;}
.ls13{letter-spacing:2.653089pt;}
.ls0{letter-spacing:2.657067pt;}
.lsd{letter-spacing:2.658422pt;}
.lsf{letter-spacing:3.135207pt;}
.ls28{letter-spacing:6.379299pt;}
.ls17{letter-spacing:6.946422pt;}
.ls18{letter-spacing:9.604194pt;}
.ls15{letter-spacing:11.709089pt;}
.ls2f{letter-spacing:11.806400pt;}
.ls2c{letter-spacing:11.806861pt;}
.lsa{letter-spacing:13.280286pt;}
.ls22{letter-spacing:13.283733pt;}
.ls1a{letter-spacing:13.284194pt;}
.ls19{letter-spacing:13.286454pt;}
.ls36{letter-spacing:13.913527pt;}
.ls1b{letter-spacing:14.334861pt;}
.ls16{letter-spacing:14.366861pt;}
.ls2b{letter-spacing:14.465513pt;}
.ls10{letter-spacing:14.759756pt;}
.ls2e{letter-spacing:14.761527pt;}
.ls32{letter-spacing:15.434953pt;}
.ls11{letter-spacing:16.084194pt;}
.ls35{letter-spacing:16.852194pt;}
.ls34{letter-spacing:17.664286pt;}
.ls20{letter-spacing:18.081513pt;}
.ls30{letter-spacing:18.180194pt;}
.ls7{letter-spacing:18.309619pt;}
.ls8{letter-spacing:18.314953pt;}
.ls1d{letter-spacing:20.634953pt;}
.ls24{letter-spacing:21.134861pt;}
.ls9{letter-spacing:21.411135pt;}
.ls2d{letter-spacing:23.155733pt;}
.ls27{letter-spacing:23.614861pt;}
.ls31{letter-spacing:23.827733pt;}
.ls33{letter-spacing:26.057067pt;}
.ls4{letter-spacing:111.795733pt;}
.ws2d{word-spacing:-51.221047pt;}
.ws8b{word-spacing:-26.566933pt;}
.wsfa{word-spacing:-16.839238pt;}
.ws35{word-spacing:-14.771215pt;}
.ws12{word-spacing:-13.294182pt;}
.ws42{word-spacing:-13.283467pt;}
.wse6{word-spacing:-10.339821pt;}
.wsc6{word-spacing:-9.700517pt;}
.wse7{word-spacing:-9.298400pt;}
.ws79{word-spacing:-3.081764pt;}
.ws100{word-spacing:-3.028630pt;}
.wsa2{word-spacing:-2.869229pt;}
.ws78{word-spacing:-2.816095pt;}
.wsa7{word-spacing:-2.762961pt;}
.ws7b{word-spacing:-2.709827pt;}
.ws25{word-spacing:-2.603559pt;}
.wsdd{word-spacing:-2.497292pt;}
.ws15{word-spacing:-2.486682pt;}
.ws5b{word-spacing:-2.444158pt;}
.wse0{word-spacing:-2.391024pt;}
.wsa0{word-spacing:-2.231622pt;}
.wsd6{word-spacing:-2.125355pt;}
.ws63{word-spacing:-1.965953pt;}
.wsb0{word-spacing:-1.912819pt;}
.wsef{word-spacing:-1.859685pt;}
.ws76{word-spacing:-1.753418pt;}
.ws65{word-spacing:-1.647150pt;}
.ws66{word-spacing:-1.594016pt;}
.wsf2{word-spacing:-1.434614pt;}
.ws33{word-spacing:-1.381481pt;}
.ws5c{word-spacing:-1.328347pt;}
.wscf{word-spacing:-1.275213pt;}
.ws4b{word-spacing:-1.222079pt;}
.ws45{word-spacing:-1.168945pt;}
.wsa6{word-spacing:-1.115811pt;}
.wsfd{word-spacing:-1.009543pt;}
.ws97{word-spacing:-0.956410pt;}
.ws61{word-spacing:-0.850142pt;}
.ws41{word-spacing:-0.797008pt;}
.ws50{word-spacing:-0.743874pt;}
.ws52{word-spacing:-0.690740pt;}
.ws69{word-spacing:-0.531339pt;}
.ws16{word-spacing:-0.478208pt;}
.ws68{word-spacing:-0.478205pt;}
.ws58{word-spacing:-0.371937pt;}
.ws8d{word-spacing:-0.318803pt;}
.ws3e{word-spacing:-0.265669pt;}
.wsd0{word-spacing:-0.159402pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws9a{word-spacing:-0.024010pt;}
.ws2{word-spacing:0.000000pt;}
.wse4{word-spacing:0.000516pt;}
.wsbb{word-spacing:0.003741pt;}
.wsab{word-spacing:0.004030pt;}
.ws7d{word-spacing:0.005052pt;}
.ws7a{word-spacing:0.005549pt;}
.wsf8{word-spacing:0.053134pt;}
.ws46{word-spacing:0.106268pt;}
.ws4e{word-spacing:0.159402pt;}
.ws55{word-spacing:0.212535pt;}
.ws24{word-spacing:0.265669pt;}
.wsea{word-spacing:0.355300pt;}
.wseb{word-spacing:0.371937pt;}
.wsf5{word-spacing:0.478205pt;}
.ws7e{word-spacing:0.529346pt;}
.ws59{word-spacing:0.531339pt;}
.ws38{word-spacing:0.584473pt;}
.ws44{word-spacing:0.637606pt;}
.ws8c{word-spacing:0.690740pt;}
.ws81{word-spacing:0.743874pt;}
.wsb{word-spacing:0.765133pt;}
.ws2b{word-spacing:0.797008pt;}
.ws4c{word-spacing:0.956410pt;}
.wsce{word-spacing:1.009543pt;}
.ws6d{word-spacing:1.062677pt;}
.ws36{word-spacing:1.115811pt;}
.ws62{word-spacing:1.168945pt;}
.wsae{word-spacing:1.222079pt;}
.wsdf{word-spacing:1.275213pt;}
.ws93{word-spacing:1.328347pt;}
.wsbe{word-spacing:1.381481pt;}
.wsf7{word-spacing:1.434614pt;}
.ws1c{word-spacing:1.482445pt;}
.ws28{word-spacing:1.540882pt;}
.wsc9{word-spacing:1.594016pt;}
.ws3d{word-spacing:1.647150pt;}
.ws60{word-spacing:1.753418pt;}
.wsfe{word-spacing:1.806251pt;}
.ws31{word-spacing:1.806551pt;}
.wsbd{word-spacing:1.859685pt;}
.wse1{word-spacing:1.912819pt;}
.wsa9{word-spacing:1.965953pt;}
.ws7{word-spacing:2.008474pt;}
.wsa5{word-spacing:2.019087pt;}
.ws56{word-spacing:2.072221pt;}
.ws54{word-spacing:2.125355pt;}
.wsf3{word-spacing:2.178489pt;}
.wsaf{word-spacing:2.229134pt;}
.ws26{word-spacing:2.231622pt;}
.ws37{word-spacing:2.284756pt;}
.wsd2{word-spacing:2.337890pt;}
.ws3f{word-spacing:2.391024pt;}
.ws1a{word-spacing:2.486682pt;}
.wsba{word-spacing:2.497292pt;}
.wsf4{word-spacing:2.550426pt;}
.wsca{word-spacing:2.656693pt;}
.ws14{word-spacing:2.677965pt;}
.ws75{word-spacing:2.709827pt;}
.ws29{word-spacing:2.816095pt;}
.wsfb{word-spacing:2.869229pt;}
.ws6f{word-spacing:2.922363pt;}
.ws4a{word-spacing:2.975497pt;}
.ws77{word-spacing:3.028630pt;}
.ws2a{word-spacing:3.081764pt;}
.wsbf{word-spacing:3.134898pt;}
.ws3{word-spacing:3.188032pt;}
.wsac{word-spacing:3.188668pt;}
.wsaa{word-spacing:3.188811pt;}
.wsad{word-spacing:3.189325pt;}
.ws94{word-spacing:3.191553pt;}
.wsa3{word-spacing:3.191594pt;}
.wsa4{word-spacing:3.192252pt;}
.wscc{word-spacing:3.241166pt;}
.ws82{word-spacing:3.294300pt;}
.ws83{word-spacing:3.296630pt;}
.ws84{word-spacing:3.297897pt;}
.wsd4{word-spacing:3.347434pt;}
.ws3a{word-spacing:3.400567pt;}
.ws3c{word-spacing:3.453701pt;}
.wse2{word-spacing:3.467756pt;}
.ws47{word-spacing:3.506835pt;}
.wsb1{word-spacing:3.537430pt;}
.ws1e{word-spacing:3.559969pt;}
.ws8e{word-spacing:3.666237pt;}
.ws5{word-spacing:3.682202pt;}
.wsff{word-spacing:3.719371pt;}
.ws32{word-spacing:3.772505pt;}
.ws5d{word-spacing:3.825638pt;}
.wsd3{word-spacing:3.878772pt;}
.ws11{word-spacing:3.921306pt;}
.wsa1{word-spacing:3.931906pt;}
.wsfc{word-spacing:3.943718pt;}
.wsd{word-spacing:4.016947pt;}
.ws87{word-spacing:4.144442pt;}
.ws27{word-spacing:4.197575pt;}
.wsb8{word-spacing:4.303843pt;}
.wsb9{word-spacing:4.356977pt;}
.ws1b{word-spacing:4.495155pt;}
.wsf9{word-spacing:4.516379pt;}
.ws48{word-spacing:4.675780pt;}
.ws96{word-spacing:4.782048pt;}
.wse{word-spacing:4.877722pt;}
.ws4d{word-spacing:4.888316pt;}
.wsd7{word-spacing:4.941450pt;}
.ws74{word-spacing:4.994583pt;}
.ws73{word-spacing:5.029549pt;}
.ws72{word-spacing:5.047717pt;}
.wsc{word-spacing:5.069005pt;}
.ws40{word-spacing:5.100851pt;}
.ws0{word-spacing:5.229452pt;}
.ws1f{word-spacing:5.260253pt;}
.ws5a{word-spacing:5.313387pt;}
.ws64{word-spacing:5.366521pt;}
.ws8a{word-spacing:5.419654pt;}
.ws89{word-spacing:5.424290pt;}
.ws88{word-spacing:5.472788pt;}
.ws34{word-spacing:5.525922pt;}
.wsdc{word-spacing:5.579056pt;}
.ws91{word-spacing:5.632190pt;}
.ws92{word-spacing:5.685324pt;}
.ws57{word-spacing:5.791591pt;}
.ws8{word-spacing:5.881958pt;}
.ws70{word-spacing:5.897859pt;}
.wsd9{word-spacing:5.950993pt;}
.wsdb{word-spacing:6.004127pt;}
.ws51{word-spacing:6.057261pt;}
.wsc1{word-spacing:6.110395pt;}
.ws8f{word-spacing:6.151778pt;}
.ws49{word-spacing:6.163529pt;}
.ws90{word-spacing:6.176496pt;}
.ws5e{word-spacing:6.216662pt;}
.ws17{word-spacing:6.264525pt;}
.ws9f{word-spacing:6.269796pt;}
.ws4f{word-spacing:6.322930pt;}
.wsf{word-spacing:6.360166pt;}
.ws39{word-spacing:6.376064pt;}
.wsb4{word-spacing:6.429198pt;}
.wsc0{word-spacing:6.535466pt;}
.wscb{word-spacing:6.588599pt;}
.wse9{word-spacing:6.639550pt;}
.wsc5{word-spacing:6.641733pt;}
.wse8{word-spacing:6.644883pt;}
.ws101{word-spacing:6.676480pt;}
.ws102{word-spacing:6.694867pt;}
.wsbc{word-spacing:6.748001pt;}
.ws6{word-spacing:6.790554pt;}
.ws9e{word-spacing:6.960537pt;}
.ws9{word-spacing:6.981837pt;}
.ws6a{word-spacing:7.066804pt;}
.ws86{word-spacing:7.173072pt;}
.ws6e{word-spacing:7.226206pt;}
.wsda{word-spacing:7.279340pt;}
.wsc2{word-spacing:7.332474pt;}
.wsc3{word-spacing:7.344215pt;}
.ws5f{word-spacing:7.385607pt;}
.wsd5{word-spacing:7.438741pt;}
.ws7f{word-spacing:7.489315pt;}
.ws80{word-spacing:7.491875pt;}
.wsd8{word-spacing:7.545009pt;}
.wscd{word-spacing:7.598143pt;}
.ws21{word-spacing:7.704411pt;}
.ws23{word-spacing:7.810678pt;}
.ws53{word-spacing:7.863812pt;}
.ws71{word-spacing:8.023214pt;}
.wse5{word-spacing:8.116883pt;}
.ws19{word-spacing:8.368640pt;}
.ws7c{word-spacing:8.501419pt;}
.ws6b{word-spacing:8.554553pt;}
.ws6c{word-spacing:8.607686pt;}
.ws95{word-spacing:8.713954pt;}
.wse3{word-spacing:8.780828pt;}
.wsf0{word-spacing:8.926490pt;}
.wsf6{word-spacing:9.085891pt;}
.ws13{word-spacing:9.085952pt;}
.ws10{word-spacing:9.181594pt;}
.wsc4{word-spacing:9.936033pt;}
.ws67{word-spacing:10.095435pt;}
.ws20{word-spacing:10.573639pt;}
.wsde{word-spacing:10.626773pt;}
.wsa{word-spacing:10.759680pt;}
.wsf1{word-spacing:11.158112pt;}
.ws103{word-spacing:11.317514pt;}
.wsa8{word-spacing:11.795718pt;}
.wsb2{word-spacing:13.287467pt;}
.ws98{word-spacing:13.982221pt;}
.ws1d{word-spacing:15.022054pt;}
.ws22{word-spacing:15.568223pt;}
.ws1{word-spacing:16.607043pt;}
.wsb3{word-spacing:16.896570pt;}
.ws43{word-spacing:17.868976pt;}
.wsd1{word-spacing:18.968790pt;}
.ws18{word-spacing:19.584009pt;}
.ws4{word-spacing:29.674581pt;}
.ws85{word-spacing:31.851197pt;}
.ws2f{word-spacing:50.476013pt;}
.wsec{word-spacing:50.477173pt;}
.wsee{word-spacing:92.506062pt;}
.wsed{word-spacing:117.585247pt;}
.wsc7{word-spacing:157.014024pt;}
.ws2e{word-spacing:159.748000pt;}
.wsc8{word-spacing:160.679653pt;}
.ws30{word-spacing:186.870649pt;}
.ws2c{word-spacing:246.965052pt;}
.wsb7{word-spacing:248.613362pt;}
.ws9c{word-spacing:360.330438pt;}
.wsb5{word-spacing:378.950737pt;}
.ws99{word-spacing:398.663402pt;}
.wsb6{word-spacing:403.923654pt;}
.ws9b{word-spacing:444.464795pt;}
.ws9d{word-spacing:504.297348pt;}
._53{margin-left:-6.753490pt;}
._22{margin-left:-5.803206pt;}
._3b{margin-left:-4.866974pt;}
._4{margin-left:-3.939933pt;}
._2{margin-left:-2.922363pt;}
._5{margin-left:-1.960653pt;}
._1{margin-left:-1.060024pt;}
._1f{width:1.009547pt;}
._1e{width:2.704412pt;}
._f{width:10.855322pt;}
._11{width:12.404215pt;}
._2f{width:13.312354pt;}
._10{width:14.728806pt;}
._20{width:16.099562pt;}
._14{width:17.002837pt;}
._b{width:18.381815pt;}
._c{width:19.893453pt;}
._6{width:21.232435pt;}
._e{width:22.810522pt;}
._23{width:23.700274pt;}
._15{width:25.185453pt;}
._8{width:26.253619pt;}
._1c{width:27.576477pt;}
._a{width:29.553254pt;}
._9{width:30.892237pt;}
._13{width:32.730462pt;}
._24{width:33.952541pt;}
._1d{width:34.855817pt;}
._43{width:36.024762pt;}
._3c{width:37.087439pt;}
._21{width:38.261758pt;}
._d{width:42.512691pt;}
._4a{width:45.873014pt;}
._7{width:47.254917pt;}
._12{width:48.648854pt;}
._3d{width:50.306349pt;}
._3{width:55.253915pt;}
._0{width:57.594637pt;}
._2a{width:62.963632pt;}
._16{width:64.394009pt;}
._29{width:83.583810pt;}
._38{width:93.874289pt;}
._2e{width:100.688677pt;}
._2b{width:105.045654pt;}
._50{width:108.765025pt;}
._19{width:116.951334pt;}
._42{width:128.637091pt;}
._52{width:130.549910pt;}
._2c{width:155.894765pt;}
._4d{width:170.380170pt;}
._51{width:189.900439pt;}
._2d{width:190.864876pt;}
._4c{width:199.074134pt;}
._1a{width:200.153669pt;}
._1b{width:203.668532pt;}
._26{width:206.596088pt;}
._39{width:216.095436pt;}
._36{width:217.378676pt;}
._4e{width:220.027342pt;}
._3a{width:223.587311pt;}
._37{width:226.942772pt;}
._45{width:228.425220pt;}
._47{width:233.310809pt;}
._4f{width:237.189581pt;}
._41{width:240.324479pt;}
._25{width:243.087440pt;}
._28{width:248.932165pt;}
._17{width:263.277149pt;}
._46{width:272.576736pt;}
._31{width:284.171533pt;}
._40{width:302.119166pt;}
._35{width:317.894624pt;}
._3e{width:335.327833pt;}
._27{width:367.322447pt;}
._44{width:372.696995pt;}
._48{width:419.274042pt;}
._18{width:425.290163pt;}
._3f{width:442.286306pt;}
._30{width:452.270173pt;}
._33{width:464.974467pt;}
._34{width:480.542690pt;}
._32{width:554.292497pt;}
._4b{width:678.124636pt;}
._49{width:783.014536pt;}
.fs2{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:38.802069pt;}
.fs4{font-size:45.429333pt;}
.fs3{font-size:47.820800pt;}
.fs6{font-size:50.477333pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:60.572800pt;}
.fs0{font-size:70.668267pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:41.742667pt;}
.y2d{bottom:87.097333pt;}
.y9f{bottom:102.825333pt;}
.y146{bottom:102.969333pt;}
.y2c{bottom:103.037333pt;}
.y122{bottom:113.300000pt;}
.y2b{bottom:118.977333pt;}
.y8e{bottom:123.916000pt;}
.y1b8{bottom:124.058667pt;}
.y173{bottom:131.901333pt;}
.y69{bottom:134.917333pt;}
.y2a{bottom:134.918667pt;}
.y1fe{bottom:136.246667pt;}
.y100{bottom:139.096000pt;}
.y121{bottom:139.502667pt;}
.y8d{bottom:139.856000pt;}
.y1b7{bottom:139.998667pt;}
.y29{bottom:150.858667pt;}
.y1fd{bottom:152.186667pt;}
.yff{bottom:159.213333pt;}
.y8c{bottom:160.736000pt;}
.y1b6{bottom:161.020000pt;}
.y120{bottom:165.341333pt;}
.y28{bottom:166.798667pt;}
.y172{bottom:172.137333pt;}
.y1d9{bottom:176.248000pt;}
.ydd{bottom:176.388000pt;}
.y8b{bottom:176.676000pt;}
.y1b5{bottom:176.960000pt;}
.yfe{bottom:179.332000pt;}
.y13d{bottom:179.726667pt;}
.y1fc{bottom:181.326667pt;}
.y27{bottom:182.738667pt;}
.y171{bottom:188.077333pt;}
.y11f{bottom:191.922667pt;}
.y1d8{bottom:192.189333pt;}
.y8a{bottom:197.554667pt;}
.y1b4{bottom:197.981333pt;}
.y26{bottom:198.678667pt;}
.yfd{bottom:199.449333pt;}
.y170{bottom:204.017333pt;}
.y1d7{bottom:208.129333pt;}
.ydc{bottom:212.160000pt;}
.y89{bottom:213.494667pt;}
.y1b3{bottom:213.921333pt;}
.y25{bottom:214.618667pt;}
.yfc{bottom:219.568000pt;}
.y16f{bottom:219.957333pt;}
.y13c{bottom:219.965333pt;}
.y1d6{bottom:224.069333pt;}
.y1fb{bottom:224.950667pt;}
.ydb{bottom:228.100000pt;}
.ybe{bottom:229.744000pt;}
.y11e{bottom:229.876000pt;}
.y192{bottom:230.558667pt;}
.y24{bottom:230.560000pt;}
.y1b2{bottom:234.942667pt;}
.y13b{bottom:235.905333pt;}
.y16e{bottom:236.208000pt;}
.y88{bottom:239.306667pt;}
.yfb{bottom:239.685333pt;}
.y1fa{bottom:240.890667pt;}
.yda{bottom:244.040000pt;}
.y11d{bottom:245.816000pt;}
.y23{bottom:246.500000pt;}
.ybd{bottom:251.082667pt;}
.y13a{bottom:251.846667pt;}
.y1d5{bottom:251.978667pt;}
.y16d{bottom:252.149333pt;}
.yfa{bottom:255.626667pt;}
.y9e{bottom:256.112000pt;}
.y1f9{bottom:256.832000pt;}
.yd9{bottom:259.980000pt;}
.y4c{bottom:260.940000pt;}
.y1b1{bottom:261.324000pt;}
.y11c{bottom:261.757333pt;}
.y191{bottom:262.440000pt;}
.y168{bottom:266.330667pt;}
.ybc{bottom:267.022667pt;}
.y139{bottom:267.786667pt;}
.y16c{bottom:268.089333pt;}
.yf9{bottom:271.566667pt;}
.y9d{bottom:272.052000pt;}
.y22{bottom:273.534667pt;}
.y68{bottom:274.873333pt;}
.yd8{bottom:275.920000pt;}
.y87{bottom:276.489333pt;}
.y11b{bottom:277.697333pt;}
.y1f8{bottom:279.457333pt;}
.y167{bottom:282.270667pt;}
.y138{bottom:283.726667pt;}
.y190{bottom:286.677333pt;}
.yf8{bottom:287.506667pt;}
.ybb{bottom:288.361333pt;}
.y1d4{bottom:291.814667pt;}
.yd7{bottom:291.861333pt;}
.y86{bottom:292.429333pt;}
.y1f7{bottom:295.397333pt;}
.y16b{bottom:296.953333pt;}
.y166{bottom:298.210667pt;}
.y1b0{bottom:299.076000pt;}
.y137{bottom:299.666667pt;}
.y4b{bottom:302.690667pt;}
.yf7{bottom:303.446667pt;}
.yba{bottom:304.302667pt;}
.y1d3{bottom:307.754667pt;}
.yd6{bottom:307.801333pt;}
.y85{bottom:308.369333pt;}
.y1f6{bottom:311.337333pt;}
.y11a{bottom:313.994667pt;}
.y165{bottom:314.152000pt;}
.y1af{bottom:315.016000pt;}
.y67{bottom:317.274667pt;}
.y4a{bottom:318.630667pt;}
.yf6{bottom:319.386667pt;}
.y18f{bottom:322.285333pt;}
.yd5{bottom:323.741333pt;}
.y84{bottom:324.310667pt;}
.y9c{bottom:325.228000pt;}
.yb9{bottom:325.641333pt;}
.y153{bottom:327.977333pt;}
.y136{bottom:328.534667pt;}
.y119{bottom:329.936000pt;}
.y1ae{bottom:330.956000pt;}
.y1d2{bottom:332.120000pt;}
.y66{bottom:333.214667pt;}
.y1f5{bottom:333.505333pt;}
.y21{bottom:334.314667pt;}
.y49{bottom:334.572000pt;}
.y18e{bottom:338.225333pt;}
.y83{bottom:340.250667pt;}
.yb8{bottom:341.581333pt;}
.yf5{bottom:342.156000pt;}
.y118{bottom:345.876000pt;}
.y1ad{bottom:346.896000pt;}
.y1d1{bottom:348.060000pt;}
.y20{bottom:348.926667pt;}
.y65{bottom:349.154667pt;}
.y1f4{bottom:349.445333pt;}
.y164{bottom:350.413333pt;}
.y48{bottom:350.512000pt;}
.yd4{bottom:352.100000pt;}
.y16a{bottom:353.060000pt;}
.y18d{bottom:354.165333pt;}
.y82{bottom:356.190667pt;}
.y117{bottom:361.816000pt;}
.y1ac{bottom:362.836000pt;}
.yb7{bottom:362.920000pt;}
.y1f{bottom:363.538667pt;}
.y64{bottom:365.094667pt;}
.y1f3{bottom:365.385333pt;}
.y163{bottom:366.353333pt;}
.y47{bottom:366.452000pt;}
.y18c{bottom:370.105333pt;}
.y135{bottom:371.430667pt;}
.y1d0{bottom:373.981333pt;}
.yf4{bottom:376.294667pt;}
.y116{bottom:377.756000pt;}
.y1e{bottom:378.150667pt;}
.y1ab{bottom:378.777333pt;}
.yb6{bottom:378.861333pt;}
.y63{bottom:381.034667pt;}
.y81{bottom:382.002667pt;}
.y162{bottom:382.293333pt;}
.y46{bottom:383.005333pt;}
.y18b{bottom:386.046667pt;}
.y134{bottom:387.370667pt;}
.y1f2{bottom:387.553333pt;}
.yd3{bottom:388.945333pt;}
.yf3{bottom:392.234667pt;}
.y1d{bottom:392.762667pt;}
.y115{bottom:393.696000pt;}
.y1aa{bottom:394.717333pt;}
.y62{bottom:396.974667pt;}
.y45{bottom:398.946667pt;}
.y1cf{bottom:399.904000pt;}
.yb5{bottom:400.200000pt;}
.y18a{bottom:401.986667pt;}
.y133{bottom:403.310667pt;}
.y1f1{bottom:403.494667pt;}
.yf2{bottom:408.174667pt;}
.y114{bottom:409.636000pt;}
.y161{bottom:410.652000pt;}
.y1a9{bottom:410.657333pt;}
.y61{bottom:412.916000pt;}
.y1c{bottom:413.352000pt;}
.y44{bottom:414.886667pt;}
.yb4{bottom:416.140000pt;}
.y189{bottom:417.926667pt;}
.y132{bottom:419.252000pt;}
.y1f0{bottom:419.434667pt;}
.y80{bottom:421.842667pt;}
.yf1{bottom:424.116000pt;}
.y1ce{bottom:424.269333pt;}
.y113{bottom:425.577333pt;}
.yd2{bottom:425.845333pt;}
.y1a8{bottom:426.597333pt;}
.y1b{bottom:427.964000pt;}
.y60{bottom:428.856000pt;}
.y43{bottom:430.826667pt;}
.y188{bottom:433.866667pt;}
.y131{bottom:435.192000pt;}
.yb3{bottom:437.478667pt;}
.y7f{bottom:437.782667pt;}
.y160{bottom:438.548000pt;}
.y1ef{bottom:441.602667pt;}
.yd1{bottom:441.785333pt;}
.y1a7{bottom:442.537333pt;}
.y1a{bottom:442.576000pt;}
.y5f{bottom:444.796000pt;}
.y42{bottom:446.766667pt;}
.yf0{bottom:446.884000pt;}
.y9b{bottom:448.845333pt;}
.y187{bottom:449.806667pt;}
.y1cd{bottom:450.190667pt;}
.y130{bottom:451.132000pt;}
.yb2{bottom:453.418667pt;}
.y7e{bottom:453.722667pt;}
.y112{bottom:453.934667pt;}
.y15f{bottom:454.488000pt;}
.y19{bottom:457.188000pt;}
.y1ee{bottom:457.542667pt;}
.yd0{bottom:457.726667pt;}
.y5e{bottom:460.736000pt;}
.y41{bottom:462.706667pt;}
.y9a{bottom:464.786667pt;}
.y186{bottom:465.746667pt;}
.y1a6{bottom:468.918667pt;}
.y7d{bottom:469.662667pt;}
.y15e{bottom:470.429333pt;}
.y18{bottom:471.800000pt;}
.y1ed{bottom:473.482667pt;}
.ycf{bottom:473.666667pt;}
.yb1{bottom:474.758667pt;}
.y5d{bottom:476.676000pt;}
.y1cc{bottom:477.416000pt;}
.y40{bottom:478.646667pt;}
.y12f{bottom:480.000000pt;}
.y185{bottom:481.688000pt;}
.y111{bottom:481.868000pt;}
.yef{bottom:483.680000pt;}
.y7c{bottom:485.602667pt;}
.y15d{bottom:486.369333pt;}
.y17{bottom:486.412000pt;}
.y1cb{bottom:486.528000pt;}
.y213{bottom:492.245333pt;}
.y5c{bottom:492.617333pt;}
.yce{bottom:494.474667pt;}
.y3f{bottom:494.588000pt;}
.y1ec{bottom:496.108000pt;}
.yb0{bottom:496.140000pt;}
.y184{bottom:497.628000pt;}
.y110{bottom:497.809333pt;}
.yee{bottom:499.620000pt;}
.y16{bottom:501.024000pt;}
.y7b{bottom:501.542667pt;}
.y1a5{bottom:506.670667pt;}
.y212{bottom:508.185333pt;}
.y3e{bottom:510.528000pt;}
.yaf{bottom:512.122667pt;}
.y15c{bottom:512.877333pt;}
.y183{bottom:513.568000pt;}
.ycd{bottom:515.282667pt;}
.yed{bottom:515.560000pt;}
.y15{bottom:515.636000pt;}
.y7a{bottom:517.484000pt;}
.y99{bottom:518.106667pt;}
.y12e{bottom:520.238667pt;}
.y5b{bottom:520.990667pt;}
.y1a4{bottom:522.610667pt;}
.y211{bottom:524.125333pt;}
.y10f{bottom:524.390667pt;}
.y1ca{bottom:524.632000pt;}
.y1eb{bottom:525.705333pt;}
.y3d{bottom:526.468000pt;}
.yae{bottom:528.062667pt;}
.y182{bottom:529.508000pt;}
.y14{bottom:530.246667pt;}
.y79{bottom:533.424000pt;}
.yec{bottom:535.678667pt;}
.ycc{bottom:536.090667pt;}
.y12d{bottom:536.180000pt;}
.y1a3{bottom:538.550667pt;}
.y152{bottom:539.797854pt;}
.y210{bottom:541.393333pt;}
.y3c{bottom:542.408000pt;}
.yad{bottom:544.004000pt;}
.y13{bottom:544.858667pt;}
.y181{bottom:545.448000pt;}
.y78{bottom:549.364000pt;}
.y15b{bottom:550.757333pt;}
.y1c9{bottom:551.544000pt;}
.y151{bottom:551.826861pt;}
.y12c{bottom:552.120000pt;}
.y1a2{bottom:554.490667pt;}
.yeb{bottom:555.796000pt;}
.ycb{bottom:556.900000pt;}
.y20f{bottom:557.334667pt;}
.y1c6{bottom:557.634667pt;}
.y3b{bottom:558.348000pt;}
.y12{bottom:559.470667pt;}
.yac{bottom:559.944000pt;}
.y5a{bottom:560.734667pt;}
.y180{bottom:561.388000pt;}
.y10e{bottom:562.344000pt;}
.y150{bottom:563.854895pt;}
.y77{bottom:565.304000pt;}
.y1ea{bottom:566.673333pt;}
.y15a{bottom:566.697333pt;}
.y1c4{bottom:566.748000pt;}
.y1a1{bottom:570.432000pt;}
.yca{bottom:572.840000pt;}
.y20e{bottom:573.274667pt;}
.y11{bottom:574.082667pt;}
.y3a{bottom:574.289333pt;}
.y12b{bottom:574.308000pt;}
.yea{bottom:575.914667pt;}
.yab{bottom:575.926667pt;}
.y59{bottom:576.674667pt;}
.y17f{bottom:577.329333pt;}
.y10d{bottom:578.284000pt;}
.y1c8{bottom:580.340000pt;}
.y76{bottom:581.244000pt;}
.y1e9{bottom:582.613333pt;}
.y159{bottom:582.637333pt;}
.y1c7{bottom:582.996000pt;}
.y1a0{bottom:586.372000pt;}
.y1c5{bottom:588.533333pt;}
.y10{bottom:588.694667pt;}
.y14f{bottom:589.592000pt;}
.y39{bottom:590.229333pt;}
.y20d{bottom:590.542667pt;}
.yaa{bottom:591.866667pt;}
.y58{bottom:592.614667pt;}
.yc9{bottom:593.648000pt;}
.ye9{bottom:596.032000pt;}
.y12a{bottom:596.184000pt;}
.y75{bottom:597.184000pt;}
.y1e8{bottom:598.553333pt;}
.y158{bottom:598.577333pt;}
.y17e{bottom:601.566667pt;}
.yf{bottom:603.306667pt;}
.y10c{bottom:604.486667pt;}
.y20c{bottom:606.482667pt;}
.ya9{bottom:607.806667pt;}
.y57{bottom:608.768000pt;}
.yc8{bottom:609.588000pt;}
.y19f{bottom:612.753333pt;}
.y1c3{bottom:613.094667pt;}
.y74{bottom:613.125333pt;}
.y1e7{bottom:614.493333pt;}
.y157{bottom:614.517333pt;}
.ye8{bottom:616.150667pt;}
.ye{bottom:617.918667pt;}
.y129{bottom:618.372000pt;}
.y1c0{bottom:619.186667pt;}
.y10b{bottom:620.426667pt;}
.y38{bottom:620.609333pt;}
.y20b{bottom:622.422667pt;}
.ya8{bottom:623.746667pt;}
.y56{bottom:624.708000pt;}
.y1bf{bottom:628.298667pt;}
.y73{bottom:629.065333pt;}
.yc7{bottom:630.396000pt;}
.y1e6{bottom:630.433333pt;}
.y156{bottom:630.458667pt;}
.yd{bottom:632.530667pt;}
.y14e{bottom:633.157333pt;}
.y98{bottom:634.084000pt;}
.y128{bottom:634.312000pt;}
.y17d{bottom:637.174667pt;}
.ye7{bottom:638.918667pt;}
.y20a{bottom:639.692000pt;}
.y55{bottom:640.648000pt;}
.y1c2{bottom:641.890667pt;}
.y1c1{bottom:644.548000pt;}
.y72{bottom:645.005333pt;}
.yc6{bottom:646.336000pt;}
.y155{bottom:646.398667pt;}
.y10a{bottom:646.629333pt;}
.y1e5{bottom:646.832000pt;}
.yc{bottom:647.142667pt;}
.y14d{bottom:649.098667pt;}
.y127{bottom:650.253333pt;}
.y19e{bottom:650.504000pt;}
.ya7{bottom:651.272000pt;}
.y17c{bottom:653.114667pt;}
.y97{bottom:655.529333pt;}
.y209{bottom:655.632000pt;}
.y54{bottom:656.588000pt;}
.y71{bottom:660.945333pt;}
.yb{bottom:661.754667pt;}
.yc5{bottom:662.277333pt;}
.y109{bottom:662.570667pt;}
.y1e4{bottom:662.772000pt;}
.y14c{bottom:665.038667pt;}
.y19d{bottom:666.445333pt;}
.y17b{bottom:669.054667pt;}
.y208{bottom:671.572000pt;}
.y53{bottom:672.529333pt;}
.ye6{bottom:673.058667pt;}
.y1be{bottom:673.478667pt;}
.ya{bottom:676.365333pt;}
.y70{bottom:676.885333pt;}
.yc4{bottom:678.217333pt;}
.y1e3{bottom:678.712000pt;}
.y126{bottom:679.121333pt;}
.y145{bottom:679.368000pt;}
.y14b{bottom:680.978667pt;}
.y37{bottom:681.965333pt;}
.y19c{bottom:682.385333pt;}
.y17a{bottom:684.994667pt;}
.y52{bottom:688.469333pt;}
.y108{bottom:688.773333pt;}
.y207{bottom:688.841333pt;}
.ye5{bottom:688.998667pt;}
.y1bd{bottom:689.418667pt;}
.y96{bottom:689.442667pt;}
.ya6{bottom:690.166667pt;}
.y9{bottom:690.977333pt;}
.y6f{bottom:692.825333pt;}
.y154{bottom:693.749333pt;}
.yc3{bottom:694.157333pt;}
.y1e2{bottom:694.652000pt;}
.y19b{bottom:698.325333pt;}
.y36{bottom:698.437333pt;}
.y179{bottom:700.934667pt;}
.y51{bottom:704.409333pt;}
.y107{bottom:704.713333pt;}
.y206{bottom:704.781333pt;}
.ye4{bottom:704.938667pt;}
.y95{bottom:705.382667pt;}
.y8{bottom:705.589333pt;}
.y144{bottom:705.878667pt;}
.ya5{bottom:706.106667pt;}
.y1bc{bottom:706.914667pt;}
.y6e{bottom:708.766667pt;}
.yc2{bottom:710.097333pt;}
.y1e1{bottom:710.592000pt;}
.y19a{bottom:714.265333pt;}
.y35{bottom:714.909333pt;}
.y169{bottom:719.174667pt;}
.y125{bottom:719.360000pt;}
.y7{bottom:720.201333pt;}
.y50{bottom:720.349333pt;}
.y205{bottom:720.721333pt;}
.ye3{bottom:720.878667pt;}
.y94{bottom:721.324000pt;}
.ya4{bottom:722.048000pt;}
.y1bb{bottom:722.854667pt;}
.y6d{bottom:724.706667pt;}
.y178{bottom:725.172000pt;}
.yc1{bottom:726.037333pt;}
.y1e0{bottom:726.532000pt;}
.y143{bottom:729.618667pt;}
.y199{bottom:730.205333pt;}
.y106{bottom:730.550667pt;}
.y34{bottom:731.380000pt;}
.y124{bottom:735.300000pt;}
.y4f{bottom:736.289333pt;}
.y93{bottom:737.264000pt;}
.ya3{bottom:737.988000pt;}
.y204{bottom:737.989333pt;}
.y1ba{bottom:738.796000pt;}
.y6c{bottom:740.646667pt;}
.yc0{bottom:741.977333pt;}
.y1df{bottom:742.473333pt;}
.ye2{bottom:742.904000pt;}
.y198{bottom:746.146667pt;}
.y14a{bottom:746.460000pt;}
.y6{bottom:750.901333pt;}
.y105{bottom:751.622667pt;}
.ya2{bottom:753.928000pt;}
.y203{bottom:753.930667pt;}
.y6b{bottom:756.586667pt;}
.y1de{bottom:758.870667pt;}
.y33{bottom:760.270667pt;}
.y197{bottom:762.086667pt;}
.y177{bottom:763.437333pt;}
.y123{bottom:764.168000pt;}
.y4e{bottom:764.662667pt;}
.y142{bottom:764.728000pt;}
.y92{bottom:765.621333pt;}
.ye1{bottom:767.198667pt;}
.ybf{bottom:767.508000pt;}
.y104{bottom:767.562667pt;}
.y5{bottom:767.814667pt;}
.ya1{bottom:769.868000pt;}
.y202{bottom:769.870667pt;}
.y6a{bottom:772.526667pt;}
.y1b9{bottom:773.886667pt;}
.y1dd{bottom:774.810667pt;}
.y196{bottom:778.026667pt;}
.y176{bottom:779.377333pt;}
.y141{bottom:780.668000pt;}
.y4{bottom:783.756000pt;}
.y201{bottom:787.138667pt;}
.y32{bottom:788.468000pt;}
.y103{bottom:788.634667pt;}
.y1dc{bottom:790.750667pt;}
.ye0{bottom:791.494667pt;}
.y91{bottom:792.718667pt;}
.y195{bottom:793.966667pt;}
.y140{bottom:796.609333pt;}
.ya0{bottom:797.393333pt;}
.y175{bottom:799.862667pt;}
.y200{bottom:803.078667pt;}
.y31{bottom:804.408000pt;}
.y102{bottom:804.574667pt;}
.y1db{bottom:806.690667pt;}
.y90{bottom:808.658667pt;}
.y194{bottom:809.906667pt;}
.y13f{bottom:812.549333pt;}
.ydf{bottom:813.520000pt;}
.y174{bottom:815.802667pt;}
.y1ff{bottom:819.020000pt;}
.y30{bottom:820.348000pt;}
.y149{bottom:822.473333pt;}
.y1da{bottom:822.630667pt;}
.y8f{bottom:824.598667pt;}
.y101{bottom:825.646667pt;}
.y193{bottom:825.846667pt;}
.y3{bottom:826.262667pt;}
.y13e{bottom:828.489333pt;}
.yde{bottom:829.460000pt;}
.y2f{bottom:836.288000pt;}
.y148{bottom:838.413333pt;}
.y2{bottom:847.516000pt;}
.y2e{bottom:852.228000pt;}
.y147{bottom:854.353333pt;}
.y1{bottom:868.769333pt;}
.h12{height:2.975497pt;}
.h4{height:21.933807pt;}
.h17{height:23.432035pt;}
.h11{height:25.514810pt;}
.h13{height:25.589197pt;}
.hd{height:26.695823pt;}
.hc{height:26.928636pt;}
.h6{height:32.900710pt;}
.h7{height:33.187635pt;}
.h5{height:33.663136pt;}
.hb{height:35.652825pt;}
.h10{height:36.449833pt;}
.h3{height:36.556100pt;}
.h9{height:36.874903pt;}
.ha{height:37.403704pt;}
.h15{height:40.943863pt;}
.he{height:44.800143pt;}
.h8{height:44.884445pt;}
.h2{height:52.365186pt;}
.h16{height:59.405369pt;}
.hf{height:72.529434pt;}
.h14{height:102.282163pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.x24{left:82.232000pt;}
.xa{left:83.561333pt;}
.x8{left:87.545333pt;}
.xd{left:92.194667pt;}
.x6{left:95.516000pt;}
.x4{left:96.562667pt;}
.x12{left:103.485333pt;}
.x5{left:108.570667pt;}
.xc{left:113.438667pt;}
.x13{left:131.000000pt;}
.x2{left:132.284000pt;}
.x3{left:134.753333pt;}
.x9{left:142.894667pt;}
.x23{left:149.457333pt;}
.xe{left:175.562667pt;}
.x22{left:183.578667pt;}
.xb{left:189.132000pt;}
.xf{left:200.944000pt;}
.x14{left:202.581333pt;}
.x11{left:208.229333pt;}
.x1b{left:249.454667pt;}
.x15{left:281.242667pt;}
.x20{left:285.589333pt;}
.x1c{left:290.086667pt;}
.x1d{left:304.154667pt;}
.x10{left:314.618667pt;}
.x1f{left:316.817333pt;}
.x7{left:317.938667pt;}
.x16{left:319.341333pt;}
.x1e{left:321.066667pt;}
.x18{left:329.792000pt;}
.x19{left:332.004000pt;}
.x21{left:333.702667pt;}
.x17{left:336.253333pt;}
.x1a{left:349.912000pt;}
}




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