
    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_b49b9dbc0531b5cee4ccb8de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_bec16bf02650256788aedfc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_797c5adc469d9df2d2ba9366.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_1631b7a005773663cec1e07c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909000;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_33b8760e5362505451d11c39.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690000;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_8136e5193ca3a7e800ad347e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_8094100fa1057ee7267666cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_72d78ae3dc9198ae5650bf86.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4a76e2da124355a1e5ed4b62.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_e657a8eaf2fb3b3e36d2831c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.281289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281289,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.524400px;}
.v3{vertical-align:-8.163600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.519082px;}
.v4{vertical-align:51.363192px;}
.ls4d{letter-spacing:-6.726262px;}
.ls50{letter-spacing:-5.861690px;}
.ls4f{letter-spacing:-5.524561px;}
.ls4e{letter-spacing:-4.350048px;}
.ls51{letter-spacing:-0.016313px;}
.ls33{letter-spacing:-0.010875px;}
.ls47{letter-spacing:-0.009595px;}
.ls7{letter-spacing:-0.007037px;}
.ls8{letter-spacing:-0.005438px;}
.ls48{letter-spacing:-0.004798px;}
.ls41{letter-spacing:-0.004051px;}
.ls34{letter-spacing:-0.003806px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004798px;}
.lsb{letter-spacing:0.006077px;}
.ls46{letter-spacing:0.009595px;}
.ls42{letter-spacing:0.010235px;}
.ls1d{letter-spacing:0.024600px;}
.ls27{letter-spacing:0.027188px;}
.ls2f{letter-spacing:0.037200px;}
.ls31{letter-spacing:0.046502px;}
.ls1b{letter-spacing:0.052503px;}
.ls1e{letter-spacing:0.053103px;}
.ls18{letter-spacing:0.053613px;}
.ls23{letter-spacing:0.054713px;}
.ls29{letter-spacing:0.072927px;}
.ls22{letter-spacing:0.073710px;}
.ls3b{letter-spacing:0.152252px;}
.ls20{letter-spacing:0.152338px;}
.ls36{letter-spacing:0.157689px;}
.ls12{letter-spacing:0.224859px;}
.ls10{letter-spacing:0.230937px;}
.ls2c{letter-spacing:0.243509px;}
.ls28{letter-spacing:0.261323px;}
.lsd{letter-spacing:0.316019px;}
.ls52{letter-spacing:0.418692px;}
.ls3a{letter-spacing:1.290309px;}
.ls39{letter-spacing:2.074390px;}
.ls26{letter-spacing:3.034053px;}
.ls1f{letter-spacing:3.078900px;}
.ls1c{letter-spacing:3.079500px;}
.ls17{letter-spacing:3.893293px;}
.ls37{letter-spacing:4.350006px;}
.ls3c{letter-spacing:5.133646px;}
.ls3e{letter-spacing:5.134246px;}
.ls43{letter-spacing:6.386815px;}
.ls44{letter-spacing:6.829575px;}
.ls4c{letter-spacing:7.166704px;}
.ls5{letter-spacing:7.647566px;}
.ls40{letter-spacing:7.712068px;}
.ls4b{letter-spacing:12.063401px;}
.ls25{letter-spacing:12.212760px;}
.ls1a{letter-spacing:12.218197px;}
.ls3d{letter-spacing:12.272573px;}
.ls24{letter-spacing:14.985300px;}
.ls35{letter-spacing:15.121854px;}
.ls1{letter-spacing:15.284359px;}
.ls19{letter-spacing:15.324900px;}
.ls3f{letter-spacing:15.807005px;}
.ls3{letter-spacing:15.873855px;}
.ls21{letter-spacing:16.255806px;}
.ls4a{letter-spacing:16.299265px;}
.ls49{letter-spacing:16.639593px;}
.ls2d{letter-spacing:16.815834px;}
.ls2e{letter-spacing:17.156161px;}
.lse{letter-spacing:17.660576px;}
.ls14{letter-spacing:18.000903px;}
.ls16{letter-spacing:18.347100px;}
.ls45{letter-spacing:18.936804px;}
.ls30{letter-spacing:18.998100px;}
.ls2b{letter-spacing:19.416910px;}
.ls38{letter-spacing:19.542591px;}
.ls11{letter-spacing:20.383197px;}
.lsf{letter-spacing:20.723525px;}
.ls13{letter-spacing:21.063852px;}
.ls32{letter-spacing:21.379500px;}
.ls2a{letter-spacing:21.659426px;}
.ls15{letter-spacing:22.428900px;}
.ls2{letter-spacing:24.716298px;}
.lsa{letter-spacing:27.309000px;}
.ls6{letter-spacing:27.375000px;}
.ls9{letter-spacing:27.871500px;}
.lsc{letter-spacing:29.142300px;}
.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;}
}
.ws84{word-spacing:-15.176230px;}
.ws12{word-spacing:-0.060773px;}
.ws81{word-spacing:-0.054376px;}
.wsd5{word-spacing:-0.052775px;}
.wsd3{word-spacing:-0.051176px;}
.ws82{word-spacing:-0.048938px;}
.ws80{word-spacing:-0.043500px;}
.ws86{word-spacing:-0.038062px;}
.ws83{word-spacing:-0.034256px;}
.ws0{word-spacing:0.000000px;}
.ws1f{word-spacing:7.901845px;}
.ws13c{word-spacing:9.667982px;}
.ws10e{word-spacing:10.516241px;}
.ws123{word-spacing:10.614117px;}
.ws142{word-spacing:10.706556px;}
.ws133{word-spacing:10.728306px;}
.ws117{word-spacing:10.793557px;}
.ws125{word-spacing:10.940371px;}
.ws113{word-spacing:10.951246px;}
.wse9{word-spacing:11.807189px;}
.wsf6{word-spacing:11.898346px;}
.wsec{word-spacing:11.965514px;}
.wsf0{word-spacing:12.003895px;}
.wsf4{word-spacing:12.047075px;}
.wsee{word-spacing:12.167018px;}
.wsd1{word-spacing:12.517747px;}
.wsd0{word-spacing:12.599630px;}
.wsd4{word-spacing:12.614983px;}
.wsc7{word-spacing:12.640571px;}
.wsc9{word-spacing:12.655924px;}
.wsd2{word-spacing:12.707100px;}
.wscf{word-spacing:12.845276px;}
.ws124{word-spacing:13.071894px;}
.ws14d{word-spacing:13.093644px;}
.ws122{word-spacing:13.218708px;}
.ws119{word-spacing:13.436211px;}
.ws10f{word-spacing:13.452523px;}
.wsc6{word-spacing:13.534087px;}
.wsb{word-spacing:13.539524px;}
.ws145{word-spacing:13.555837px;}
.ws70{word-spacing:13.561275px;}
.ws140{word-spacing:13.566712px;}
.ws4d{word-spacing:13.577587px;}
.ws151{word-spacing:13.593900px;}
.ws13a{word-spacing:13.610213px;}
.ws11f{word-spacing:13.621088px;}
.wsc5{word-spacing:13.626525px;}
.ws120{word-spacing:13.648276px;}
.ws154{word-spacing:13.686339px;}
.ws4a{word-spacing:13.767902px;}
.wse5{word-spacing:13.773339px;}
.wsd8{word-spacing:13.860340px;}
.ws130{word-spacing:13.876653px;}
.ws136{word-spacing:13.903841px;}
.ws24{word-spacing:13.931029px;}
.wsfd{word-spacing:14.129285px;}
.ws137{word-spacing:14.192032px;}
.ws138{word-spacing:14.213782px;}
.wsfc{word-spacing:14.215644px;}
.ws7{word-spacing:14.251845px;}
.ws139{word-spacing:14.344283px;}
.wsd6{word-spacing:14.345183px;}
.ws9{word-spacing:14.485660px;}
.ws13f{word-spacing:14.529160px;}
.ws25{word-spacing:14.536854px;}
.ws13d{word-spacing:14.621599px;}
.ws4b{word-spacing:14.642995px;}
.ws96{word-spacing:14.652322px;}
.ws13e{word-spacing:14.773851px;}
.ws72{word-spacing:14.871727px;}
.ws13b{word-spacing:14.926102px;}
.ws101{word-spacing:14.950109px;}
.ws4{word-spacing:14.953290px;}
.ws9c{word-spacing:14.992650px;}
.ws3c{word-spacing:15.023036px;}
.wsa2{word-spacing:15.041268px;}
.ws95{word-spacing:15.053423px;}
.ws21{word-spacing:15.059447px;}
.ws4f{word-spacing:15.059500px;}
.wsae{word-spacing:15.077732px;}
.ws93{word-spacing:15.108118px;}
.ws33{word-spacing:15.132427px;}
.ws67{word-spacing:15.138504px;}
.ws16{word-spacing:15.193200px;}
.ws7f{word-spacing:15.223586px;}
.ws52{word-spacing:15.357287px;}
.ws7a{word-spacing:15.363364px;}
.wsc0{word-spacing:15.387673px;}
.ws28{word-spacing:15.393750px;}
.wsa3{word-spacing:15.563914px;}
.ws14{word-spacing:15.576069px;}
.ws20{word-spacing:15.597388px;}
.ws97{word-spacing:15.606455px;}
.ws30{word-spacing:15.624687px;}
.wsb9{word-spacing:15.673305px;}
.ws15{word-spacing:15.691537px;}
.wsa8{word-spacing:15.697614px;}
.wsd7{word-spacing:15.698140px;}
.ws3a{word-spacing:15.734078px;}
.ws34{word-spacing:15.746232px;}
.wsb1{word-spacing:15.758387px;}
.wsfe{word-spacing:15.837274px;}
.ws14e{word-spacing:15.861363px;}
.wsb2{word-spacing:15.861701px;}
.ws19{word-spacing:15.904242px;}
.ws14f{word-spacing:15.953801px;}
.wsaf{word-spacing:15.971092px;}
.ws1a{word-spacing:16.062251px;}
.wsaa{word-spacing:16.074406px;}
.ws74{word-spacing:16.086560px;}
.ws85{word-spacing:16.118003px;}
.wsa9{word-spacing:16.129101px;}
.ws98{word-spacing:16.153410px;}
.wsa7{word-spacing:16.171642px;}
.ws75{word-spacing:16.183797px;}
.ws150{word-spacing:16.220241px;}
.wsa{word-spacing:16.258304px;}
.wsda{word-spacing:16.311420px;}
.wsad{word-spacing:16.341806px;}
.ws3d{word-spacing:16.414733px;}
.ws87{word-spacing:16.458203px;}
.ws13{word-spacing:16.578820px;}
.ws66{word-spacing:16.597052px;}
.ws27{word-spacing:16.615284px;}
.wsa4{word-spacing:16.724675px;}
.ws11e{word-spacing:16.725935px;}
.ws11{word-spacing:16.761138px;}
.wsc4{word-spacing:16.809756px;}
.ws38{word-spacing:16.864452px;}
.ws14c{word-spacing:16.943437px;}
.wse{word-spacing:16.992075px;}
.ws68{word-spacing:17.010307px;}
.ws141{word-spacing:17.025000px;}
.ws14a{word-spacing:17.046751px;}
.ws14b{word-spacing:17.144627px;}
.ws3f{word-spacing:17.204780px;}
.ws2{word-spacing:17.226233px;}
.wsa6{word-spacing:17.247321px;}
.ws149{word-spacing:17.307753px;}
.ws6f{word-spacing:17.356692px;}
.wse3{word-spacing:17.362789px;}
.ws71{word-spacing:17.405630px;}
.ws10{word-spacing:17.435716px;}
.ws10b{word-spacing:17.453948px;}
.ws1{word-spacing:17.479560px;}
.ws32{word-spacing:17.514721px;}
.ws1b{word-spacing:17.660576px;}
.wsc3{word-spacing:17.703117px;}
.ws55{word-spacing:17.715271px;}
.ws73{word-spacing:17.733503px;}
.ws36{word-spacing:17.745658px;}
.ws121{word-spacing:17.748196px;}
.ws60{word-spacing:17.788199px;}
.ws102{word-spacing:17.855049px;}
.ws100{word-spacing:17.940131px;}
.ws56{word-spacing:17.964440px;}
.ws112{word-spacing:17.987448px;}
.wsc2{word-spacing:18.013058px;}
.ws118{word-spacing:18.090762px;}
.ws7b{word-spacing:18.098140px;}
.wsdd{word-spacing:18.116372px;}
.ws6a{word-spacing:18.128526px;}
.ws31{word-spacing:18.195376px;}
.ws37{word-spacing:18.201454px;}
.ws114{word-spacing:18.215826px;}
.ws9a{word-spacing:18.280458px;}
.ws6e{word-spacing:18.298690px;}
.wsd{word-spacing:18.304767px;}
.ws110{word-spacing:18.324577px;}
.ws99{word-spacing:18.353386px;}
.ws148{word-spacing:18.357203px;}
.ws3{word-spacing:18.383772px;}
.ws6b{word-spacing:18.468854px;}
.ws127{word-spacing:18.482266px;}
.ws69{word-spacing:18.511395px;}
.ws116{word-spacing:18.514892px;}
.ws9e{word-spacing:18.566090px;}
.wsdb{word-spacing:18.639018px;}
.ws8{word-spacing:18.639956px;}
.ws5{word-spacing:18.678019px;}
.wse0{word-spacing:18.766641px;}
.ws26{word-spacing:18.790950px;}
.wsb8{word-spacing:18.894264px;}
.ws4e{word-spacing:19.003655px;}
.ws11a{word-spacing:19.009710px;}
.wsb0{word-spacing:19.021886px;}
.ws11d{word-spacing:19.064085px;}
.ws143{word-spacing:19.096711px;}
.ws53{word-spacing:19.131277px;}
.ws146{word-spacing:19.172837px;}
.ws54{word-spacing:19.216359px;}
.ws147{word-spacing:19.319651px;}
.ws8d{word-spacing:19.319673px;}
.ws144{word-spacing:19.374026px;}
.wse4{word-spacing:19.374369px;}
.ws11c{word-spacing:19.428402px;}
.ws131{word-spacing:19.439277px;}
.wsdc{word-spacing:19.447296px;}
.ws57{word-spacing:19.526301px;}
.ws115{word-spacing:19.542591px;}
.ws11b{word-spacing:19.596966px;}
.ws8f{word-spacing:19.623537px;}
.ws134{word-spacing:19.673092px;}
.ws8c{word-spacing:19.732928px;}
.wse1{word-spacing:19.739005px;}
.ws40{word-spacing:19.781546px;}
.ws135{word-spacing:19.787281px;}
.ws23{word-spacing:19.798156px;}
.ws132{word-spacing:19.825344px;}
.wsb3{word-spacing:19.921324px;}
.ws2d{word-spacing:19.927401px;}
.ws4c{word-spacing:20.026533px;}
.ws2e{word-spacing:20.079333px;}
.ws111{word-spacing:20.146160px;}
.ws5c{word-spacing:20.243420px;}
.ws5d{word-spacing:20.267729px;}
.ws59{word-spacing:20.322424px;}
.ws78{word-spacing:20.395352px;}
.wsff{word-spacing:20.462202px;}
.ws61{word-spacing:20.468279px;}
.wsc{word-spacing:20.480434px;}
.ws48{word-spacing:20.504743px;}
.ws63{word-spacing:20.535129px;}
.ws35{word-spacing:20.547284px;}
.wsd9{word-spacing:20.577670px;}
.ws153{word-spacing:20.651853px;}
.ws79{word-spacing:20.699216px;}
.ws5a{word-spacing:20.735679px;}
.ws58{word-spacing:20.808607px;}
.ws39{word-spacing:20.832916px;}
.wsc1{word-spacing:20.851148px;}
.ws152{word-spacing:20.874793px;}
.ws5e{word-spacing:21.003080px;}
.ws29{word-spacing:21.130703px;}
.ws77{word-spacing:21.148934px;}
.ws94{word-spacing:21.156360px;}
.wsba{word-spacing:21.161089px;}
.ws62{word-spacing:21.173244px;}
.ws50{word-spacing:21.191475px;}
.ws5f{word-spacing:21.203630px;}
.ws1c{word-spacing:21.227939px;}
.ws12f{word-spacing:21.255422px;}
.ws8a{word-spacing:21.361639px;}
.ws89{word-spacing:21.379871px;}
.ws1d{word-spacing:21.416335px;}
.ws7c{word-spacing:21.483185px;}
.ws91{word-spacing:21.496560px;}
.wsbc{word-spacing:21.513571px;}
.wsbb{word-spacing:21.531803px;}
.ws88{word-spacing:21.574344px;}
.ws12c{word-spacing:21.597988px;}
.ws103{word-spacing:21.671580px;}
.ws44{word-spacing:21.829590px;}
.ws12d{word-spacing:22.038431px;}
.ws2a{word-spacing:22.133454px;}
.ws7e{word-spacing:22.169917px;}
.wsbd{word-spacing:22.279308px;}
.ws12e{word-spacing:22.315746px;}
.ws64{word-spacing:22.352236px;}
.ws7d{word-spacing:22.364390px;}
.wsb5{word-spacing:22.546709px;}
.ws109{word-spacing:22.619636px;}
.wsac{word-spacing:22.650023px;}
.wsbf{word-spacing:22.704718px;}
.ws22{word-spacing:22.745313px;}
.wsa1{word-spacing:22.801955px;}
.ws108{word-spacing:22.808032px;}
.ws47{word-spacing:22.814109px;}
.wsa0{word-spacing:22.850573px;}
.wsab{word-spacing:22.874882px;}
.wsb4{word-spacing:22.959964px;}
.wsdf{word-spacing:23.026814px;}
.ws43{word-spacing:23.069355px;}
.ws41{word-spacing:23.105819px;}
.ws2f{word-spacing:23.172669px;}
.ws105{word-spacing:23.190900px;}
.ws90{word-spacing:23.525151px;}
.ws8e{word-spacing:23.536560px;}
.ws106{word-spacing:23.616310px;}
.ws92{word-spacing:23.640619px;}
.wsde{word-spacing:23.798628px;}
.ws6d{word-spacing:23.944483px;}
.ws42{word-spacing:23.980947px;}
.ws18{word-spacing:24.406356px;}
.wsb6{word-spacing:24.503593px;}
.ws3b{word-spacing:24.546134px;}
.wsf{word-spacing:24.631216px;}
.ws65{word-spacing:24.637293px;}
.ws5b{word-spacing:24.661602px;}
.ws17{word-spacing:24.673757px;}
.ws10d{word-spacing:24.778961px;}
.ws9b{word-spacing:24.862152px;}
.wsa5{word-spacing:24.916848px;}
.ws51{word-spacing:24.971544px;}
.ws10c{word-spacing:25.067152px;}
.wsb7{word-spacing:25.129553px;}
.ws10a{word-spacing:25.141707px;}
.wsbe{word-spacing:25.159939px;}
.ws49{word-spacing:25.299717px;}
.ws2b{word-spacing:25.767667px;}
.ws2c{word-spacing:25.864904px;}
.ws1e{word-spacing:25.907445px;}
.ws76{word-spacing:26.448323px;}
.ws12b{word-spacing:26.529855px;}
.ws12a{word-spacing:26.823483px;}
.ws128{word-spacing:26.834359px;}
.ws129{word-spacing:26.883297px;}
.ws3e{word-spacing:27.086437px;}
.ws126{word-spacing:27.253051px;}
.ws45{word-spacing:27.402456px;}
.ws46{word-spacing:27.603006px;}
.ws9d{word-spacing:28.216811px;}
.ws104{word-spacing:28.289738px;}
.ws107{word-spacing:28.350511px;}
.ws6c{word-spacing:28.964316px;}
.ws6{word-spacing:29.379137px;}
.ws9f{word-spacing:29.991377px;}
.wse2{word-spacing:31.832793px;}
.ws8b{word-spacing:31.960416px;}
.wsf7{word-spacing:47.727719px;}
.wsef{word-spacing:65.426508px;}
.wsf8{word-spacing:77.406414px;}
.wsf2{word-spacing:79.776488px;}
.wseb{word-spacing:82.616738px;}
.wsfb{word-spacing:89.942857px;}
.wsf9{word-spacing:97.705568px;}
.wsf3{word-spacing:103.784279px;}
.wsea{word-spacing:113.418101px;}
.wsca{word-spacing:129.660527px;}
.wscd{word-spacing:136.994105px;}
.wscc{word-spacing:155.171962px;}
.wscb{word-spacing:155.258962px;}
.wse8{word-spacing:162.407620px;}
.wsce{word-spacing:175.453170px;}
.wsf5{word-spacing:290.113331px;}
.wsf1{word-spacing:305.422855px;}
.wsed{word-spacing:320.228619px;}
.wsfa{word-spacing:323.035285px;}
.wsc8{word-spacing:452.788317px;}
.wse7{word-spacing:500.176703px;}
.wse6{word-spacing:1198.537624px;}
._1a{margin-left:-1886.150983px;}
._15{margin-left:-1597.026578px;}
._5f{margin-left:-6.720824px;}
._10{margin-left:-5.380927px;}
._6{margin-left:-4.090009px;}
._e{margin-left:-2.625385px;}
._9{margin-left:-1.485646px;}
._0{width:1.435516px;}
._19{width:2.708192px;}
._14{width:4.582276px;}
._5d{width:6.396484px;}
._d{width:7.772841px;}
._17{width:10.524571px;}
._60{width:11.538502px;}
._c{width:12.849919px;}
._5e{width:14.496535px;}
._3{width:15.502484px;}
._12{width:17.040693px;}
._4{width:18.432390px;}
._1{width:19.754655px;}
._b{width:21.157546px;}
._7{width:22.376545px;}
._a{width:24.159079px;}
._5{width:25.864904px;}
._8{width:27.165442px;}
._f{width:28.203379px;}
._18{width:29.371494px;}
._2{width:30.586275px;}
._16{width:33.242722px;}
._4b{width:44.679669px;}
._52{width:50.235279px;}
._57{width:59.093517px;}
._51{width:61.530759px;}
._49{width:62.758975px;}
._53{width:68.919248px;}
._54{width:70.963077px;}
._46{width:73.827315px;}
._55{width:79.838859px;}
._3a{width:80.875166px;}
._56{width:82.228123px;}
._4c{width:86.752373px;}
._5b{width:90.233871px;}
._5a{width:91.919517px;}
._4a{width:95.100406px;}
._59{width:99.744599px;}
._50{width:110.606637px;}
._47{width:113.322146px;}
._1c{width:126.201002px;}
._44{width:130.812987px;}
._32{width:137.050399px;}
._39{width:144.089925px;}
._38{width:155.631889px;}
._1e{width:162.735834px;}
._30{width:164.184126px;}
._37{width:165.841437px;}
._25{width:180.657810px;}
._22{width:188.329152px;}
._36{width:240.296489px;}
._3d{width:242.020985px;}
._41{width:259.340755px;}
._3c{width:278.761925px;}
._45{width:281.141594px;}
._2f{width:284.852960px;}
._40{width:295.395620px;}
._3f{width:298.562116px;}
._3b{width:305.134992px;}
._2e{width:311.004100px;}
._2d{width:314.351891px;}
._48{width:318.160802px;}
._3e{width:326.748721px;}
._26{width:340.485421px;}
._2c{width:344.883731px;}
._4f{width:368.309722px;}
._20{width:422.078310px;}
._28{width:427.824469px;}
._1d{width:434.729116px;}
._1f{width:448.229450px;}
._34{width:453.080022px;}
._58{width:480.203795px;}
._2b{width:485.874810px;}
._2a{width:512.036186px;}
._35{width:519.967298px;}
._21{width:534.405390px;}
._31{width:576.647727px;}
._13{width:604.972050px;}
._29{width:642.028884px;}
._27{width:692.007281px;}
._11{width:711.020783px;}
._1b{width:712.439187px;}
._43{width:725.535207px;}
._24{width:739.414268px;}
._5c{width:768.940180px;}
._33{width:788.536206px;}
._23{width:798.310899px;}
._42{width:818.658952px;}
._4e{width:941.979547px;}
._4d{width:1034.657104px;}
.fc2{color:transparent;}
.fc1{color:rgb(191,50,65);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.184000px;}
.fse{font-size:38.062200px;}
.fsc{font-size:39.325020px;}
.fsa{font-size:39.501000px;}
.fs10{font-size:40.509600px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:42.540000px;}
.fs9{font-size:44.779800px;}
.fs8{font-size:47.977200px;}
.fs11{font-size:51.176400px;}
.fs7{font-size:54.375600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.771000px;}
.fs6{font-size:60.772800px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:70.368600px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:7.836915px;}
.y44{bottom:8.370000px;}
.y6f{bottom:10.290000px;}
.y71{bottom:21.298712px;}
.y45{bottom:22.747500px;}
.y6c{bottom:47.792100px;}
.y5{bottom:66.525004px;}
.y141{bottom:76.532864px;}
.y96{bottom:76.535166px;}
.y6e{bottom:76.535579px;}
.yb9{bottom:76.538460px;}
.y11f{bottom:76.539740px;}
.y112{bottom:76.540796px;}
.ye3{bottom:76.547441px;}
.y118{bottom:78.662731px;}
.y11a{bottom:78.663930px;}
.y11c{bottom:78.665130px;}
.y40{bottom:90.311850px;}
.y95{bottom:90.906637px;}
.y11e{bottom:90.911310px;}
.y140{bottom:92.520650px;}
.y6d{bottom:93.288150px;}
.ye2{bottom:93.895037px;}
.yb8{bottom:93.971138px;}
.y111{bottom:93.973474px;}
.y4{bottom:97.125005px;}
.y94{bottom:107.744850px;}
.y13f{bottom:108.508436px;}
.ye1{bottom:111.242632px;}
.yb7{bottom:111.403816px;}
.y117{bottom:116.080149px;}
.y110{bottom:118.124585px;}
.y43{bottom:119.054916px;}
.y93{bottom:122.881566px;}
.ye0{bottom:128.590228px;}
.yb6{bottom:128.836493px;}
.y13e{bottom:130.958762px;}
.y6a{bottom:131.727134px;}
.y42{bottom:133.426387px;}
.y10f{bottom:135.557262px;}
.y92{bottom:137.338679px;}
.y22{bottom:139.264499px;}
.ydf{bottom:145.937824px;}
.yb5{bottom:146.269171px;}
.y13d{bottom:146.946547px;}
.y41{bottom:147.883500px;}
.y69{bottom:149.329975px;}
.y10e{bottom:152.989940px;}
.y91{bottom:154.091250px;}
.yde{bottom:163.285420px;}
.yb4{bottom:163.701849px;}
.y68{bottom:166.932817px;}
.y13c{bottom:169.311232px;}
.y10d{bottom:170.422618px;}
.ydd{bottom:180.633015px;}
.yb3{bottom:181.134526px;}
.y67{bottom:184.535658px;}
.y13b{bottom:185.299018px;}
.y10c{bottom:187.855295px;}
.y3d{bottom:194.233340px;}
.y19{bottom:196.933500px;}
.y90{bottom:197.887816px;}
.ydc{bottom:197.980611px;}
.yb2{bottom:198.567204px;}
.y13a{bottom:201.286803px;}
.y66{bottom:202.146879px;}
.y119{bottom:204.265841px;}
.y11b{bottom:204.267040px;}
.y10b{bottom:205.287973px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y3c{bottom:211.836181px;}
.ydb{bottom:215.328207px;}
.y8f{bottom:215.490657px;}
.y65{bottom:219.749721px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y10a{bottom:222.720651px;}
.y139{bottom:223.737129px;}
.yb1{bottom:224.590117px;}
.y3b{bottom:229.353941px;}
.yda{bottom:232.675803px;}
.y8e{bottom:233.008417px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y64{bottom:237.267481px;}
.y138{bottom:239.724915px;}
.y109{bottom:240.153328px;}
.yb0{bottom:242.022795px;}
.yfe{bottom:244.318020px;}
.y3a{bottom:246.956782px;}
.yd9{bottom:250.023399px;}
.y8d{bottom:250.611258px;}
.y63{bottom:254.870322px;}
.y137{bottom:255.712701px;}
.y108{bottom:257.586006px;}
.yfd{bottom:258.774750px;}
.y11d{bottom:258.947855px;}
.yaf{bottom:259.455472px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y39{bottom:264.559624px;}
.y116{bottom:265.748623px;}
.yd8{bottom:267.456076px;}
.y8c{bottom:268.215025px;}
.y62{bottom:272.473164px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y107{bottom:275.018684px;}
.yae{bottom:276.888795px;}
.y136{bottom:278.077385px;}
.y38{bottom:282.162465px;}
.yfc{bottom:284.377391px;}
.yd7{bottom:284.803672px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y8b{bottom:285.817867px;}
.y61{bottom:290.076005px;}
.y135{bottom:294.065171px;}
.yad{bottom:294.321472px;}
.y106{bottom:299.254876px;}
.yd6{bottom:302.151268px;}
.y8a{bottom:303.420708px;}
.yfb{bottom:305.807508px;}
.y37{bottom:306.143412px;}
.y60{bottom:307.678847px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yac{bottom:311.755130px;}
.y134{bottom:316.515497px;}
.y105{bottom:316.687554px;}
.yd5{bottom:319.498863px;}
.y89{bottom:321.023550px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y36{bottom:323.746254px;}
.y5f{bottom:325.281688px;}
.yfa{bottom:326.556979px;}
.yab{bottom:329.187807px;}
.y133{bottom:332.503282px;}
.y104{bottom:334.120232px;}
.yd4{bottom:336.846459px;}
.y35{bottom:341.349095px;}
.y5e{bottom:342.884530px;}
.y88{bottom:345.005866px;}
.yaa{bottom:346.620485px;}
.y115{bottom:346.705350px;}
.yf9{bottom:347.390892px;}
.y10{bottom:348.133500px;}
.y132{bottom:348.491068px;}
.y103{bottom:351.552909px;}
.yd3{bottom:354.194055px;}
.y34{bottom:358.951937px;}
.y87{bottom:362.523625px;}
.y5d{bottom:366.780395px;}
.yf8{bottom:368.140363px;}
.ya9{bottom:370.516822px;}
.y131{bottom:370.941394px;}
.yd2{bottom:371.541651px;}
.y33{bottom:376.469696px;}
.y86{bottom:380.126467px;}
.y5c{bottom:384.383236px;}
.y102{bottom:384.462900px;}
.yf{bottom:386.785499px;}
.y130{bottom:386.929180px;}
.ya8{bottom:387.950295px;}
.yd1{bottom:388.889247px;}
.yf7{bottom:388.889835px;}
.y114{bottom:390.841481px;}
.y32{bottom:394.072538px;}
.y85{bottom:397.729308px;}
.y5b{bottom:401.986078px;}
.ya7{bottom:405.382972px;}
.yd0{bottom:406.236842px;}
.ye{bottom:408.044999px;}
.y12f{bottom:409.293864px;}
.yf6{bottom:409.639306px;}
.y31{bottom:411.675379px;}
.y84{bottom:415.336174px;}
.y5a{bottom:419.588919px;}
.ya6{bottom:422.816445px;}
.ycf{bottom:423.584438px;}
.y12e{bottom:425.281650px;}
.yf5{bottom:430.473218px;}
.y101{bottom:432.424614px;}
.y83{bottom:432.939016px;}
.y59{bottom:437.191761px;}
.y113{bottom:439.313250px;}
.ya5{bottom:440.249122px;}
.yce{bottom:440.932034px;}
.y100{bottom:448.412400px;}
.y82{bottom:450.541857px;}
.y30{bottom:450.708230px;}
.yf4{bottom:451.222690px;}
.y58{bottom:454.794602px;}
.y12d{bottom:456.751486px;}
.ya4{bottom:457.681800px;}
.ycd{bottom:458.279630px;}
.y81{bottom:468.144699px;}
.yff{bottom:470.352600px;}
.y57{bottom:472.397444px;}
.yf3{bottom:472.652807px;}
.ycc{bottom:480.220130px;}
.y80{bottom:485.747540px;}
.y56{bottom:490.000285px;}
.yf2{bottom:493.997204px;}
.ya3{bottom:496.374600px;}
.ycb{bottom:497.567725px;}
.yd{bottom:502.864502px;}
.y2f{bottom:502.922700px;}
.y7f{bottom:503.265300px;}
.y12c{bottom:504.798462px;}
.y55{bottom:507.518045px;}
.yf1{bottom:514.831117px;}
.yca{bottom:514.915321px;}
.yc{bottom:520.864502px;}
.y7e{bottom:520.868141px;}
.y12b{bottom:522.401304px;}
.y54{bottom:525.120886px;}
.yc9{bottom:532.262917px;}
.ya2{bottom:532.349811px;}
.y2e{bottom:532.854667px;}
.y7d{bottom:538.470983px;}
.yb{bottom:538.864499px;}
.y12a{bottom:539.919063px;}
.y2d{bottom:548.926735px;}
.y53{bottom:549.101833px;}
.yc8{bottom:549.610513px;}
.ya1{bottom:549.952653px;}
.y151{bottom:554.712072px;}
.y7c{bottom:556.073824px;}
.ya{bottom:556.864499px;}
.y129{bottom:557.521905px;}
.y2c{bottom:564.914521px;}
.y52{bottom:566.704675px;}
.yc7{bottom:566.958108px;}
.ya0{bottom:567.470412px;}
.y150{bottom:570.699858px;}
.yf0{bottom:571.126436px;}
.y7b{bottom:573.676666px;}
.y128{bottom:575.124746px;}
.y2b{bottom:580.902307px;}
.yc6{bottom:584.305704px;}
.y51{bottom:584.307516px;}
.y9f{bottom:585.073254px;}
.y7a{bottom:591.279507px;}
.yef{bottom:592.556554px;}
.y127{bottom:592.727588px;}
.y14f{bottom:593.064542px;}
.y2a{bottom:596.890093px;}
.yc5{bottom:599.187150px;}
.yc4{bottom:601.653300px;}
.y50{bottom:601.910358px;}
.y79{bottom:608.882349px;}
.y14e{bottom:609.052328px;}
.y126{bottom:610.330429px;}
.y29{bottom:612.877878px;}
.yee{bottom:613.306025px;}
.y9e{bottom:617.813080px;}
.y4f{bottom:619.513199px;}
.y78{bottom:626.485190px;}
.y125{bottom:627.933271px;}
.y28{bottom:628.865664px;}
.y14d{bottom:631.417012px;}
.yed{bottom:634.139938px;}
.yc3{bottom:634.733649px;}
.y4e{bottom:637.116041px;}
.y77{bottom:644.002950px;}
.y27{bottom:644.853450px;}
.y9{bottom:645.510000px;}
.y14c{bottom:647.404798px;}
.yc1{bottom:649.615500px;}
.y4d{bottom:654.633801px;}
.yec{bottom:654.889409px;}
.y124{bottom:660.588016px;}
.y14b{bottom:663.392584px;}
.y9d{bottom:663.734527px;}
.yc2{bottom:665.177700px;}
.y8{bottom:666.771000px;}
.y76{bottom:667.985585px;}
.y4c{bottom:672.236642px;}
.yeb{bottom:675.638880px;}
.y9c{bottom:681.167205px;}
.y26{bottom:682.696142px;}
.y75{bottom:685.588426px;}
.y14a{bottom:685.757268px;}
.y4b{bottom:689.839484px;}
.yc0{bottom:692.647187px;}
.yea{bottom:696.388352px;}
.y9b{bottom:698.599883px;}
.y149{bottom:701.745054px;}
.y74{bottom:703.191268px;}
.y7{bottom:707.398501px;}
.y123{bottom:708.634991px;}
.ybf{bottom:709.994783px;}
.y9a{bottom:716.032560px;}
.ye9{bottom:717.222264px;}
.y148{bottom:717.732840px;}
.y73{bottom:720.794109px;}
.y4a{bottom:724.621276px;}
.y122{bottom:726.237833px;}
.y6{bottom:726.298500px;}
.ybe{bottom:727.427460px;}
.y25{bottom:730.828200px;}
.y99{bottom:733.465238px;}
.ye8{bottom:738.566661px;}
.y147{bottom:740.097524px;}
.y121{bottom:743.840674px;}
.ybd{bottom:744.775056px;}
.y98{bottom:750.897916px;}
.y3{bottom:752.599495px;}
.y146{bottom:756.085310px;}
.y72{bottom:759.826959px;}
.ye7{bottom:759.996779px;}
.y120{bottom:761.358434px;}
.ybc{bottom:762.122652px;}
.y97{bottom:768.330593px;}
.y24{bottom:775.388409px;}
.y145{bottom:778.449994px;}
.y49{bottom:778.961275px;}
.ybb{bottom:779.470248px;}
.ye6{bottom:780.746250px;}
.y144{bottom:794.437780px;}
.y23{bottom:796.138350px;}
.y48{bottom:796.564117px;}
.yba{bottom:796.817843px;}
.ye5{bottom:810.425566px;}
.y47{bottom:814.166958px;}
.y143{bottom:816.802464px;}
.y46{bottom:831.769800px;}
.ye4{bottom:832.790250px;}
.y142{bottom:862.547116px;}
.y152{bottom:862.552735px;}
.y6b{bottom:862.554150px;}
.y2{bottom:879.369000px;}
.y3f{bottom:893.423312px;}
.y3e{bottom:906.179250px;}
.y1{bottom:966.726000px;}
.h20{height:28.113662px;}
.h15{height:28.212266px;}
.h1f{height:28.546650px;}
.hf{height:31.077181px;}
.h7{height:32.130000px;}
.he{height:33.296177px;}
.h22{height:35.516422px;}
.h21{height:36.812281px;}
.hd{height:37.736666px;}
.h17{height:38.595357px;}
.h1a{height:40.781700px;}
.hc{height:41.143186px;}
.h11{height:41.220703px;}
.hb{height:42.176323px;}
.h1d{height:42.844824px;}
.h1b{height:45.576421px;}
.h1c{height:45.577711px;}
.h6{height:45.900000px;}
.ha{height:47.639542px;}
.h3{height:48.195000px;}
.h1e{height:51.363192px;}
.h14{height:54.932776px;}
.h18{height:54.950198px;}
.h19{height:54.962592px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h16{height:927.606999px;}
.h13{height:948.000000px;}
.h12{height:948.189000px;}
.h10{height:990.705000px;}
.h8{height:990.708000px;}
.h9{height:990.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:624.750000px;}
.w5{width:625.039500px;}
.w2{width:637.794021px;}
.w4{width:667.500000px;}
.w3{width:667.558500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:80.787629px;}
.x24{left:82.915250px;}
.xe{left:93.543300px;}
.x9{left:95.159100px;}
.x28{left:98.390550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x29{left:120.755234px;}
.x13{left:150.536177px;}
.x14{left:152.197659px;}
.xf{left:160.776000px;}
.x10{left:162.550500px;}
.x2a{left:169.737894px;}
.x1e{left:170.844000px;}
.x6{left:176.796073px;}
.x25{left:181.133850px;}
.x1f{left:182.324400px;}
.x2b{left:189.721597px;}
.x16{left:193.294676px;}
.x4{left:203.484001px;}
.x26{left:205.880186px;}
.x2c{left:210.386576px;}
.xc{left:216.000000px;}
.x5{left:226.800000px;}
.x2d{left:230.285120px;}
.x18{left:236.239350px;}
.x19{left:241.342539px;}
.x21{left:247.123992px;}
.x17{left:248.144850px;}
.x2e{left:250.268823px;}
.xd{left:252.567022px;}
.x7{left:258.179400px;}
.x1a{left:263.196750px;}
.x2f{left:270.252527px;}
.xb{left:272.127422px;}
.x11{left:273.146886px;}
.x3c{left:286.073260px;}
.x27{left:289.644000px;}
.x8{left:293.046275px;}
.x15{left:297.468160px;}
.x20{left:301.124400px;}
.x30{left:310.219933px;}
.x31{left:330.203636px;}
.x23{left:339.137573px;}
.x22{left:349.596750px;}
.x32{left:370.085883px;}
.x33{left:390.069586px;}
.x12{left:404.447100px;}
.x34{left:410.053290px;}
.x1b{left:421.284900px;}
.x1c{left:426.388089px;}
.x35{left:430.036993px;}
.x1d{left:448.242450px;}
.x36{left:450.020696px;}
.x3{left:454.959000px;}
.x37{left:470.004399px;}
.x38{left:490.584219px;}
.x39{left:510.567923px;}
.x3a{left:536.674716px;}
.x3b{left:551.046286px;}
@media print{
.v2{vertical-align:-8.466133pt;}
.v3{vertical-align:-7.256533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.461406pt;}
.v4{vertical-align:45.656170pt;}
.ls4d{letter-spacing:-5.978899pt;}
.ls50{letter-spacing:-5.210391pt;}
.ls4f{letter-spacing:-4.910721pt;}
.ls4e{letter-spacing:-3.866709pt;}
.ls51{letter-spacing:-0.014500pt;}
.ls33{letter-spacing:-0.009667pt;}
.ls47{letter-spacing:-0.008529pt;}
.ls7{letter-spacing:-0.006255pt;}
.ls8{letter-spacing:-0.004833pt;}
.ls48{letter-spacing:-0.004265pt;}
.ls41{letter-spacing:-0.003601pt;}
.ls34{letter-spacing:-0.003383pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004265pt;}
.lsb{letter-spacing:0.005402pt;}
.ls46{letter-spacing:0.008529pt;}
.ls42{letter-spacing:0.009098pt;}
.ls1d{letter-spacing:0.021867pt;}
.ls27{letter-spacing:0.024167pt;}
.ls2f{letter-spacing:0.033067pt;}
.ls31{letter-spacing:0.041335pt;}
.ls1b{letter-spacing:0.046670pt;}
.ls1e{letter-spacing:0.047203pt;}
.ls18{letter-spacing:0.047656pt;}
.ls23{letter-spacing:0.048634pt;}
.ls29{letter-spacing:0.064824pt;}
.ls22{letter-spacing:0.065520pt;}
.ls3b{letter-spacing:0.135335pt;}
.ls20{letter-spacing:0.135411pt;}
.ls36{letter-spacing:0.140168pt;}
.ls12{letter-spacing:0.199875pt;}
.ls10{letter-spacing:0.205277pt;}
.ls2c{letter-spacing:0.216453pt;}
.ls28{letter-spacing:0.232287pt;}
.lsd{letter-spacing:0.280905pt;}
.ls52{letter-spacing:0.372171pt;}
.ls3a{letter-spacing:1.146941pt;}
.ls39{letter-spacing:1.843902pt;}
.ls26{letter-spacing:2.696936pt;}
.ls1f{letter-spacing:2.736800pt;}
.ls1c{letter-spacing:2.737333pt;}
.ls17{letter-spacing:3.460705pt;}
.ls37{letter-spacing:3.866672pt;}
.ls3c{letter-spacing:4.563241pt;}
.ls3e{letter-spacing:4.563774pt;}
.ls43{letter-spacing:5.677169pt;}
.ls44{letter-spacing:6.070734pt;}
.ls4c{letter-spacing:6.370404pt;}
.ls5{letter-spacing:6.797836pt;}
.ls40{letter-spacing:6.855172pt;}
.ls4b{letter-spacing:10.723023pt;}
.ls25{letter-spacing:10.855786pt;}
.ls1a{letter-spacing:10.860620pt;}
.ls3d{letter-spacing:10.908954pt;}
.ls24{letter-spacing:13.320267pt;}
.ls35{letter-spacing:13.441648pt;}
.ls1{letter-spacing:13.586097pt;}
.ls19{letter-spacing:13.622133pt;}
.ls3f{letter-spacing:14.050671pt;}
.ls3{letter-spacing:14.110094pt;}
.ls21{letter-spacing:14.449605pt;}
.ls4a{letter-spacing:14.488236pt;}
.ls49{letter-spacing:14.790749pt;}
.ls2d{letter-spacing:14.947408pt;}
.ls2e{letter-spacing:15.249921pt;}
.lse{letter-spacing:15.698289pt;}
.ls14{letter-spacing:16.000803pt;}
.ls16{letter-spacing:16.308533pt;}
.ls45{letter-spacing:16.832715pt;}
.ls30{letter-spacing:16.887200pt;}
.ls2b{letter-spacing:17.259475pt;}
.ls38{letter-spacing:17.371192pt;}
.ls11{letter-spacing:18.118397pt;}
.lsf{letter-spacing:18.420911pt;}
.ls13{letter-spacing:18.723424pt;}
.ls32{letter-spacing:19.004000pt;}
.ls2a{letter-spacing:19.252823pt;}
.ls15{letter-spacing:19.936800pt;}
.ls2{letter-spacing:21.970042pt;}
.lsa{letter-spacing:24.274667pt;}
.ls6{letter-spacing:24.333333pt;}
.ls9{letter-spacing:24.774667pt;}
.lsc{letter-spacing:25.904267pt;}
.ws84{word-spacing:-13.489982pt;}
.ws12{word-spacing:-0.054020pt;}
.ws81{word-spacing:-0.048334pt;}
.wsd5{word-spacing:-0.046911pt;}
.wsd3{word-spacing:-0.045490pt;}
.ws82{word-spacing:-0.043500pt;}
.ws80{word-spacing:-0.038667pt;}
.ws86{word-spacing:-0.033833pt;}
.ws83{word-spacing:-0.030450pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f{word-spacing:7.023862pt;}
.ws13c{word-spacing:8.593761pt;}
.ws10e{word-spacing:9.347770pt;}
.ws123{word-spacing:9.434771pt;}
.ws142{word-spacing:9.516938pt;}
.ws133{word-spacing:9.536272pt;}
.ws117{word-spacing:9.594273pt;}
.ws125{word-spacing:9.724774pt;}
.ws113{word-spacing:9.734441pt;}
.wse9{word-spacing:10.495279pt;}
.wsf6{word-spacing:10.576307pt;}
.wsec{word-spacing:10.636012pt;}
.wsf0{word-spacing:10.670129pt;}
.wsf4{word-spacing:10.708511pt;}
.wsee{word-spacing:10.815127pt;}
.wsd1{word-spacing:11.126887pt;}
.wsd0{word-spacing:11.199671pt;}
.wsd4{word-spacing:11.213318pt;}
.wsc7{word-spacing:11.236063pt;}
.wsc9{word-spacing:11.249710pt;}
.wsd2{word-spacing:11.295200pt;}
.wscf{word-spacing:11.418023pt;}
.ws124{word-spacing:11.619462pt;}
.ws14d{word-spacing:11.638795pt;}
.ws122{word-spacing:11.749963pt;}
.ws119{word-spacing:11.943298pt;}
.ws10f{word-spacing:11.957799pt;}
.wsc6{word-spacing:12.030299pt;}
.wsb{word-spacing:12.035133pt;}
.ws145{word-spacing:12.049633pt;}
.ws70{word-spacing:12.054466pt;}
.ws140{word-spacing:12.059300pt;}
.ws4d{word-spacing:12.068967pt;}
.ws151{word-spacing:12.083467pt;}
.ws13a{word-spacing:12.097967pt;}
.ws11f{word-spacing:12.107634pt;}
.wsc5{word-spacing:12.112467pt;}
.ws120{word-spacing:12.131801pt;}
.ws154{word-spacing:12.165634pt;}
.ws4a{word-spacing:12.238135pt;}
.wse5{word-spacing:12.242968pt;}
.wsd8{word-spacing:12.320303pt;}
.ws130{word-spacing:12.334803pt;}
.ws136{word-spacing:12.358970pt;}
.ws24{word-spacing:12.383137pt;}
.wsfd{word-spacing:12.559365pt;}
.ws137{word-spacing:12.615139pt;}
.ws138{word-spacing:12.634473pt;}
.wsfc{word-spacing:12.636128pt;}
.ws7{word-spacing:12.668306pt;}
.ws139{word-spacing:12.750474pt;}
.wsd6{word-spacing:12.751274pt;}
.ws9{word-spacing:12.876142pt;}
.ws13f{word-spacing:12.914809pt;}
.ws25{word-spacing:12.921648pt;}
.ws13d{word-spacing:12.996977pt;}
.ws4b{word-spacing:13.015995pt;}
.ws96{word-spacing:13.024286pt;}
.ws13e{word-spacing:13.132312pt;}
.ws72{word-spacing:13.219313pt;}
.ws13b{word-spacing:13.267646pt;}
.ws101{word-spacing:13.288986pt;}
.ws4{word-spacing:13.291813pt;}
.ws9c{word-spacing:13.326800pt;}
.ws3c{word-spacing:13.353810pt;}
.wsa2{word-spacing:13.370016pt;}
.ws95{word-spacing:13.380820pt;}
.ws21{word-spacing:13.386175pt;}
.ws4f{word-spacing:13.386222pt;}
.wsae{word-spacing:13.402428pt;}
.ws93{word-spacing:13.429438pt;}
.ws33{word-spacing:13.451046pt;}
.ws67{word-spacing:13.456448pt;}
.ws16{word-spacing:13.505067pt;}
.ws7f{word-spacing:13.532077pt;}
.ws52{word-spacing:13.650921pt;}
.ws7a{word-spacing:13.656323pt;}
.wsc0{word-spacing:13.677932pt;}
.ws28{word-spacing:13.683334pt;}
.wsa3{word-spacing:13.834590pt;}
.ws14{word-spacing:13.845394pt;}
.ws20{word-spacing:13.864345pt;}
.ws97{word-spacing:13.872404pt;}
.ws30{word-spacing:13.888611pt;}
.wsb9{word-spacing:13.931827pt;}
.ws15{word-spacing:13.948033pt;}
.wsa8{word-spacing:13.953435pt;}
.wsd7{word-spacing:13.953902pt;}
.ws3a{word-spacing:13.985847pt;}
.ws34{word-spacing:13.996651pt;}
.wsb1{word-spacing:14.007455pt;}
.wsfe{word-spacing:14.077577pt;}
.ws14e{word-spacing:14.098989pt;}
.wsb2{word-spacing:14.099290pt;}
.ws19{word-spacing:14.137104pt;}
.ws14f{word-spacing:14.181156pt;}
.wsaf{word-spacing:14.196526pt;}
.ws1a{word-spacing:14.277556pt;}
.wsaa{word-spacing:14.288361pt;}
.ws74{word-spacing:14.299165pt;}
.ws85{word-spacing:14.327114pt;}
.wsa9{word-spacing:14.336979pt;}
.ws98{word-spacing:14.358587pt;}
.wsa7{word-spacing:14.374793pt;}
.ws75{word-spacing:14.385597pt;}
.ws150{word-spacing:14.417992pt;}
.wsa{word-spacing:14.451826pt;}
.wsda{word-spacing:14.499040pt;}
.wsad{word-spacing:14.526050pt;}
.ws3d{word-spacing:14.590874pt;}
.ws87{word-spacing:14.629514pt;}
.ws13{word-spacing:14.736729pt;}
.ws66{word-spacing:14.752935pt;}
.ws27{word-spacing:14.769141pt;}
.wsa4{word-spacing:14.866377pt;}
.ws11e{word-spacing:14.867497pt;}
.ws11{word-spacing:14.898790pt;}
.wsc4{word-spacing:14.942006pt;}
.ws38{word-spacing:14.990624pt;}
.ws14c{word-spacing:15.060833pt;}
.wse{word-spacing:15.104067pt;}
.ws68{word-spacing:15.120273pt;}
.ws141{word-spacing:15.133334pt;}
.ws14a{word-spacing:15.152667pt;}
.ws14b{word-spacing:15.239668pt;}
.ws3f{word-spacing:15.293137pt;}
.ws2{word-spacing:15.312207pt;}
.wsa6{word-spacing:15.330952pt;}
.ws149{word-spacing:15.384670pt;}
.ws6f{word-spacing:15.428170pt;}
.wse3{word-spacing:15.433590pt;}
.ws71{word-spacing:15.471671pt;}
.ws10{word-spacing:15.498415pt;}
.ws10b{word-spacing:15.514621pt;}
.ws1{word-spacing:15.537387pt;}
.ws32{word-spacing:15.568641pt;}
.ws1b{word-spacing:15.698289pt;}
.wsc3{word-spacing:15.736104pt;}
.ws55{word-spacing:15.746908pt;}
.ws73{word-spacing:15.763114pt;}
.ws36{word-spacing:15.773918pt;}
.ws121{word-spacing:15.776174pt;}
.ws60{word-spacing:15.811732pt;}
.ws102{word-spacing:15.871154pt;}
.ws100{word-spacing:15.946783pt;}
.ws56{word-spacing:15.968391pt;}
.ws112{word-spacing:15.988843pt;}
.wsc2{word-spacing:16.011607pt;}
.ws118{word-spacing:16.080677pt;}
.ws7b{word-spacing:16.087235pt;}
.wsdd{word-spacing:16.103441pt;}
.ws6a{word-spacing:16.114246pt;}
.ws31{word-spacing:16.173668pt;}
.ws37{word-spacing:16.179070pt;}
.ws114{word-spacing:16.191845pt;}
.ws9a{word-spacing:16.249296pt;}
.ws6e{word-spacing:16.265502pt;}
.wsd{word-spacing:16.270904pt;}
.ws110{word-spacing:16.288513pt;}
.ws99{word-spacing:16.314121pt;}
.ws148{word-spacing:16.317513pt;}
.ws3{word-spacing:16.341131pt;}
.ws6b{word-spacing:16.416759pt;}
.ws127{word-spacing:16.428681pt;}
.ws69{word-spacing:16.454573pt;}
.ws116{word-spacing:16.457682pt;}
.ws9e{word-spacing:16.503191pt;}
.wsdb{word-spacing:16.568016pt;}
.ws8{word-spacing:16.568849pt;}
.ws5{word-spacing:16.602683pt;}
.wse0{word-spacing:16.681458pt;}
.ws26{word-spacing:16.703066pt;}
.wsb8{word-spacing:16.794901pt;}
.ws4e{word-spacing:16.892137pt;}
.ws11a{word-spacing:16.897520pt;}
.wsb0{word-spacing:16.908343pt;}
.ws11d{word-spacing:16.945854pt;}
.ws143{word-spacing:16.974854pt;}
.ws53{word-spacing:17.005580pt;}
.ws146{word-spacing:17.042521pt;}
.ws54{word-spacing:17.081208pt;}
.ws147{word-spacing:17.173023pt;}
.ws8d{word-spacing:17.173043pt;}
.ws144{word-spacing:17.221357pt;}
.wse4{word-spacing:17.221661pt;}
.ws11c{word-spacing:17.269691pt;}
.ws131{word-spacing:17.279357pt;}
.wsdc{word-spacing:17.286485pt;}
.ws57{word-spacing:17.356712pt;}
.ws115{word-spacing:17.371192pt;}
.ws11b{word-spacing:17.419526pt;}
.ws8f{word-spacing:17.443144pt;}
.ws134{word-spacing:17.487193pt;}
.ws8c{word-spacing:17.540381pt;}
.wse1{word-spacing:17.545783pt;}
.ws40{word-spacing:17.583597pt;}
.ws135{word-spacing:17.588694pt;}
.ws23{word-spacing:17.598361pt;}
.ws132{word-spacing:17.622528pt;}
.wsb3{word-spacing:17.707843pt;}
.ws2d{word-spacing:17.713245pt;}
.ws4c{word-spacing:17.801363pt;}
.ws2e{word-spacing:17.848296pt;}
.ws111{word-spacing:17.907698pt;}
.ws5c{word-spacing:17.994151pt;}
.ws5d{word-spacing:18.015759pt;}
.ws59{word-spacing:18.064377pt;}
.ws78{word-spacing:18.129201pt;}
.wsff{word-spacing:18.188624pt;}
.ws61{word-spacing:18.194026pt;}
.wsc{word-spacing:18.204830pt;}
.ws48{word-spacing:18.226438pt;}
.ws63{word-spacing:18.253448pt;}
.ws35{word-spacing:18.264252pt;}
.wsd9{word-spacing:18.291262pt;}
.ws153{word-spacing:18.357203pt;}
.ws79{word-spacing:18.399303pt;}
.ws5a{word-spacing:18.431715pt;}
.ws58{word-spacing:18.496539pt;}
.ws39{word-spacing:18.518147pt;}
.wsc1{word-spacing:18.534353pt;}
.ws152{word-spacing:18.555371pt;}
.ws5e{word-spacing:18.669404pt;}
.ws29{word-spacing:18.782847pt;}
.ws77{word-spacing:18.799053pt;}
.ws94{word-spacing:18.805653pt;}
.wsba{word-spacing:18.809857pt;}
.ws62{word-spacing:18.820661pt;}
.ws50{word-spacing:18.836867pt;}
.ws5f{word-spacing:18.847671pt;}
.ws1c{word-spacing:18.869279pt;}
.ws12f{word-spacing:18.893708pt;}
.ws8a{word-spacing:18.988124pt;}
.ws89{word-spacing:19.004330pt;}
.ws1d{word-spacing:19.036742pt;}
.ws7c{word-spacing:19.096164pt;}
.ws91{word-spacing:19.108053pt;}
.wsbc{word-spacing:19.123174pt;}
.wsbb{word-spacing:19.139380pt;}
.ws88{word-spacing:19.177195pt;}
.ws12c{word-spacing:19.198212pt;}
.ws103{word-spacing:19.263627pt;}
.ws44{word-spacing:19.404080pt;}
.ws12d{word-spacing:19.589716pt;}
.ws2a{word-spacing:19.674181pt;}
.ws7e{word-spacing:19.706593pt;}
.wsbd{word-spacing:19.803830pt;}
.ws12e{word-spacing:19.836219pt;}
.ws64{word-spacing:19.868654pt;}
.ws7d{word-spacing:19.879458pt;}
.wsb5{word-spacing:20.041519pt;}
.ws109{word-spacing:20.106343pt;}
.wsac{word-spacing:20.133353pt;}
.wsbf{word-spacing:20.181972pt;}
.ws22{word-spacing:20.218056pt;}
.wsa1{word-spacing:20.268404pt;}
.ws108{word-spacing:20.273806pt;}
.ws47{word-spacing:20.279208pt;}
.wsa0{word-spacing:20.311620pt;}
.wsab{word-spacing:20.333228pt;}
.wsb4{word-spacing:20.408857pt;}
.wsdf{word-spacing:20.468279pt;}
.ws43{word-spacing:20.506093pt;}
.ws41{word-spacing:20.538505pt;}
.ws2f{word-spacing:20.597928pt;}
.ws105{word-spacing:20.614134pt;}
.ws90{word-spacing:20.911245pt;}
.ws8e{word-spacing:20.921387pt;}
.ws106{word-spacing:20.992276pt;}
.ws92{word-spacing:21.013884pt;}
.wsde{word-spacing:21.154336pt;}
.ws6d{word-spacing:21.283985pt;}
.ws42{word-spacing:21.316397pt;}
.ws18{word-spacing:21.694539pt;}
.wsb6{word-spacing:21.780972pt;}
.ws3b{word-spacing:21.818786pt;}
.wsf{word-spacing:21.894414pt;}
.ws65{word-spacing:21.899816pt;}
.ws5b{word-spacing:21.921424pt;}
.ws17{word-spacing:21.932228pt;}
.ws10d{word-spacing:22.025743pt;}
.ws9b{word-spacing:22.099691pt;}
.wsa5{word-spacing:22.148309pt;}
.ws51{word-spacing:22.196928pt;}
.ws10c{word-spacing:22.281913pt;}
.wsb7{word-spacing:22.337380pt;}
.ws10a{word-spacing:22.348184pt;}
.wsbe{word-spacing:22.364390pt;}
.ws49{word-spacing:22.488637pt;}
.ws2b{word-spacing:22.904593pt;}
.ws2c{word-spacing:22.991025pt;}
.ws1e{word-spacing:23.028840pt;}
.ws76{word-spacing:23.509620pt;}
.ws12b{word-spacing:23.582094pt;}
.ws12a{word-spacing:23.843096pt;}
.ws128{word-spacing:23.852763pt;}
.ws129{word-spacing:23.896264pt;}
.ws3e{word-spacing:24.076833pt;}
.ws126{word-spacing:24.224934pt;}
.ws45{word-spacing:24.357738pt;}
.ws46{word-spacing:24.536005pt;}
.ws9d{word-spacing:25.081610pt;}
.ws104{word-spacing:25.146434pt;}
.ws107{word-spacing:25.200454pt;}
.ws6c{word-spacing:25.746059pt;}
.ws6{word-spacing:26.114788pt;}
.ws9f{word-spacing:26.659002pt;}
.wse2{word-spacing:28.295816pt;}
.ws8b{word-spacing:28.409258pt;}
.wsf7{word-spacing:42.424639pt;}
.wsef{word-spacing:58.156896pt;}
.wsf8{word-spacing:68.805702pt;}
.wsf2{word-spacing:70.912434pt;}
.wseb{word-spacing:73.437101pt;}
.wsfb{word-spacing:79.949206pt;}
.wsf9{word-spacing:86.849394pt;}
.wsf3{word-spacing:92.252692pt;}
.wsea{word-spacing:100.816090pt;}
.wsca{word-spacing:115.253802pt;}
.wscd{word-spacing:121.772538pt;}
.wscc{word-spacing:137.930633pt;}
.wscb{word-spacing:138.007967pt;}
.wse8{word-spacing:144.362329pt;}
.wsce{word-spacing:155.958373pt;}
.wsf5{word-spacing:257.878516pt;}
.wsf1{word-spacing:271.486982pt;}
.wsed{word-spacing:284.647661pt;}
.wsfa{word-spacing:287.142476pt;}
.wsc8{word-spacing:402.478504pt;}
.wse7{word-spacing:444.601514pt;}
.wse6{word-spacing:1065.366777pt;}
._1a{margin-left:-1676.578651pt;}
._15{margin-left:-1419.579180pt;}
._5f{margin-left:-5.974066pt;}
._10{margin-left:-4.783046pt;}
._6{margin-left:-3.635564pt;}
._e{margin-left:-2.333676pt;}
._9{margin-left:-1.320574pt;}
._0{width:1.276014pt;}
._19{width:2.407282pt;}
._14{width:4.073134pt;}
._5d{width:5.685763pt;}
._d{width:6.909192pt;}
._17{width:9.355174pt;}
._60{width:10.256447pt;}
._c{width:11.422150pt;}
._5e{width:12.885809pt;}
._3{width:13.779985pt;}
._12{width:15.147283pt;}
._4{width:16.384347pt;}
._1{width:17.559694pt;}
._b{width:18.806708pt;}
._7{width:19.890262pt;}
._a{width:21.474737pt;}
._5{width:22.991025pt;}
._8{width:24.147059pt;}
._f{width:25.069670pt;}
._18{width:26.107995pt;}
._2{width:27.187800pt;}
._16{width:29.549086pt;}
._4b{width:39.715262pt;}
._52{width:44.653581pt;}
._57{width:52.527571pt;}
._51{width:54.694008pt;}
._49{width:55.785756pt;}
._53{width:61.261554pt;}
._54{width:63.078290pt;}
._46{width:65.624280pt;}
._55{width:70.967874pt;}
._3a{width:71.889036pt;}
._56{width:73.091665pt;}
._4c{width:77.113220pt;}
._5b{width:80.207885pt;}
._5a{width:81.706238pt;}
._4a{width:84.533694pt;}
._59{width:88.661866pt;}
._50{width:98.317011pt;}
._47{width:100.730797pt;}
._1c{width:112.178669pt;}
._44{width:116.278210pt;}
._32{width:121.822577pt;}
._39{width:128.079933pt;}
._38{width:138.339457pt;}
._1e{width:144.654075pt;}
._30{width:145.941446pt;}
._37{width:147.414611pt;}
._25{width:160.584720pt;}
._22{width:167.403691pt;}
._36{width:213.596879pt;}
._3d{width:215.129765pt;}
._41{width:230.525115pt;}
._3c{width:247.788378pt;}
._45{width:249.903639pt;}
._2f{width:253.202631pt;}
._40{width:262.573885pt;}
._3f{width:265.388547pt;}
._3b{width:271.231104pt;}
._2e{width:276.448089pt;}
._2d{width:279.423903pt;}
._48{width:282.809602pt;}
._3e{width:290.443307pt;}
._26{width:302.653707pt;}
._2c{width:306.563317pt;}
._4f{width:327.386420pt;}
._20{width:375.180720pt;}
._28{width:380.288417pt;}
._1d{width:386.425881pt;}
._1f{width:398.426178pt;}
._34{width:402.737797pt;}
._58{width:426.847818pt;}
._2b{width:431.888720pt;}
._2a{width:455.143276pt;}
._35{width:462.193154pt;}
._21{width:475.027014pt;}
._31{width:512.575758pt;}
._13{width:537.752934pt;}
._29{width:570.692341pt;}
._27{width:615.117583pt;}
._11{width:632.018474pt;}
._1b{width:633.279277pt;}
._43{width:644.920184pt;}
._24{width:657.257127pt;}
._5c{width:683.502382pt;}
._33{width:700.921072pt;}
._23{width:709.609688pt;}
._42{width:727.696846pt;}
._4e{width:837.315153pt;}
._4d{width:919.695204pt;}
.fsb{font-size:31.274667pt;}
.fse{font-size:33.833067pt;}
.fsc{font-size:34.955573pt;}
.fsa{font-size:35.112000pt;}
.fs10{font-size:36.008533pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:37.813333pt;}
.fs9{font-size:39.804267pt;}
.fs8{font-size:42.646400pt;}
.fs11{font-size:45.490133pt;}
.fs7{font-size:48.333867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:54.018667pt;}
.fs6{font-size:54.020267pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:62.549867pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:6.966146pt;}
.y44{bottom:7.440000pt;}
.y6f{bottom:9.146667pt;}
.y71{bottom:18.932188pt;}
.y45{bottom:20.220000pt;}
.y6c{bottom:42.481867pt;}
.y5{bottom:59.133337pt;}
.y141{bottom:68.029213pt;}
.y96{bottom:68.031259pt;}
.y6e{bottom:68.031626pt;}
.yb9{bottom:68.034187pt;}
.y11f{bottom:68.035324pt;}
.y112{bottom:68.036263pt;}
.ye3{bottom:68.042170pt;}
.y118{bottom:69.922427pt;}
.y11a{bottom:69.923493pt;}
.y11c{bottom:69.924560pt;}
.y40{bottom:80.277200pt;}
.y95{bottom:80.805900pt;}
.y11e{bottom:80.810053pt;}
.y140{bottom:82.240578pt;}
.y6d{bottom:82.922800pt;}
.ye2{bottom:83.462255pt;}
.yb8{bottom:83.529900pt;}
.y111{bottom:83.531977pt;}
.y4{bottom:86.333337pt;}
.y94{bottom:95.773200pt;}
.y13f{bottom:96.451943pt;}
.ye1{bottom:98.882340pt;}
.yb7{bottom:99.025614pt;}
.y117{bottom:103.182355pt;}
.y110{bottom:104.999631pt;}
.y43{bottom:105.826592pt;}
.y93{bottom:109.228059pt;}
.ye0{bottom:114.302425pt;}
.yb6{bottom:114.521327pt;}
.y13e{bottom:116.407788pt;}
.y6a{bottom:117.090786pt;}
.y42{bottom:118.601233pt;}
.y10f{bottom:120.495344pt;}
.y92{bottom:122.078826pt;}
.y22{bottom:123.790666pt;}
.ydf{bottom:129.722510pt;}
.yb5{bottom:130.017041pt;}
.y13d{bottom:130.619153pt;}
.y41{bottom:131.452000pt;}
.y69{bottom:132.737756pt;}
.y10e{bottom:135.991058pt;}
.y91{bottom:136.970000pt;}
.yde{bottom:145.142595pt;}
.yb4{bottom:145.512754pt;}
.y68{bottom:148.384726pt;}
.y13c{bottom:150.498873pt;}
.y10d{bottom:151.486771pt;}
.ydd{bottom:160.562680pt;}
.yb3{bottom:161.008468pt;}
.y67{bottom:164.031696pt;}
.y13b{bottom:164.710238pt;}
.y10c{bottom:166.982485pt;}
.y3d{bottom:172.651857pt;}
.y19{bottom:175.052000pt;}
.y90{bottom:175.900281pt;}
.ydc{bottom:175.982766pt;}
.yb2{bottom:176.504181pt;}
.y13a{bottom:178.921603pt;}
.y66{bottom:179.686115pt;}
.y119{bottom:181.569636pt;}
.y11b{bottom:181.570703pt;}
.y10b{bottom:182.478198pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y3c{bottom:188.298828pt;}
.ydb{bottom:191.402851pt;}
.y8f{bottom:191.547251pt;}
.y65{bottom:195.333085pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y10a{bottom:197.973912pt;}
.y139{bottom:198.877448pt;}
.yb1{bottom:199.635660pt;}
.y3b{bottom:203.870170pt;}
.yda{bottom:206.822936pt;}
.y8e{bottom:207.118593pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y64{bottom:210.904427pt;}
.y138{bottom:213.088813pt;}
.y109{bottom:213.469625pt;}
.yb0{bottom:215.131373pt;}
.yfe{bottom:217.171574pt;}
.y3a{bottom:219.517140pt;}
.yd9{bottom:222.243021pt;}
.y8d{bottom:222.765563pt;}
.y63{bottom:226.551397pt;}
.y137{bottom:227.300178pt;}
.y108{bottom:228.965339pt;}
.yfd{bottom:230.022000pt;}
.y11d{bottom:230.175871pt;}
.yaf{bottom:230.627087pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y39{bottom:235.164110pt;}
.y116{bottom:236.220998pt;}
.yd8{bottom:237.738734pt;}
.y8c{bottom:238.413356pt;}
.y62{bottom:242.198368pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y107{bottom:244.461052pt;}
.yae{bottom:246.123373pt;}
.y136{bottom:247.179898pt;}
.y38{bottom:250.811080pt;}
.yfc{bottom:252.779903pt;}
.yd7{bottom:253.158820pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y8b{bottom:254.060326pt;}
.y61{bottom:257.845338pt;}
.y135{bottom:261.391263pt;}
.yad{bottom:261.619087pt;}
.y106{bottom:266.004335pt;}
.yd6{bottom:268.578905pt;}
.y8a{bottom:269.707296pt;}
.yfb{bottom:271.828896pt;}
.y37{bottom:272.127478pt;}
.y60{bottom:273.492308pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yac{bottom:277.115671pt;}
.y134{bottom:281.347108pt;}
.y105{bottom:281.500048pt;}
.yd5{bottom:283.998990pt;}
.y89{bottom:285.354267pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y36{bottom:287.774448pt;}
.y5f{bottom:289.139278pt;}
.yfa{bottom:290.272871pt;}
.yab{bottom:292.611384pt;}
.y133{bottom:295.558473pt;}
.y104{bottom:296.995762pt;}
.yd4{bottom:299.419075pt;}
.y35{bottom:303.421418pt;}
.y5e{bottom:304.786249pt;}
.y88{bottom:306.671881pt;}
.yaa{bottom:308.107098pt;}
.y115{bottom:308.182533pt;}
.yf9{bottom:308.791904pt;}
.y10{bottom:309.452000pt;}
.y132{bottom:309.769838pt;}
.y103{bottom:312.491475pt;}
.yd3{bottom:314.839160pt;}
.y34{bottom:319.068388pt;}
.y87{bottom:322.243223pt;}
.y5d{bottom:326.027017pt;}
.yf8{bottom:327.235878pt;}
.ya9{bottom:329.348287pt;}
.y131{bottom:329.725684pt;}
.yd2{bottom:330.259245pt;}
.y33{bottom:334.639730pt;}
.y86{bottom:337.890193pt;}
.y5c{bottom:341.673988pt;}
.y102{bottom:341.744800pt;}
.yf{bottom:343.809333pt;}
.y130{bottom:343.937049pt;}
.ya8{bottom:344.844706pt;}
.yd1{bottom:345.679330pt;}
.yf7{bottom:345.679853pt;}
.y114{bottom:347.414650pt;}
.y32{bottom:350.286700pt;}
.y85{bottom:353.537163pt;}
.y5b{bottom:357.320958pt;}
.ya7{bottom:360.340420pt;}
.yd0{bottom:361.099415pt;}
.ye{bottom:362.706666pt;}
.y12f{bottom:363.816768pt;}
.yf6{bottom:364.123828pt;}
.y31{bottom:365.933671pt;}
.y84{bottom:369.187710pt;}
.y5a{bottom:372.967928pt;}
.ya6{bottom:375.836840pt;}
.ycf{bottom:376.519500pt;}
.y12e{bottom:378.028133pt;}
.yf5{bottom:382.642861pt;}
.y101{bottom:384.377435pt;}
.y83{bottom:384.834681pt;}
.y59{bottom:388.614898pt;}
.y113{bottom:390.500667pt;}
.ya5{bottom:391.332553pt;}
.yce{bottom:391.939586pt;}
.y100{bottom:398.588800pt;}
.y82{bottom:400.481651pt;}
.y30{bottom:400.629537pt;}
.yf4{bottom:401.086835pt;}
.y58{bottom:404.261869pt;}
.y12d{bottom:406.001321pt;}
.ya4{bottom:406.828267pt;}
.ycd{bottom:407.359671pt;}
.y81{bottom:416.128621pt;}
.yff{bottom:418.091200pt;}
.y57{bottom:419.908839pt;}
.yf3{bottom:420.135829pt;}
.ycc{bottom:426.862337pt;}
.y80{bottom:431.775591pt;}
.y56{bottom:435.555809pt;}
.yf2{bottom:439.108626pt;}
.ya3{bottom:441.221867pt;}
.ycb{bottom:442.282423pt;}
.yd{bottom:446.990669pt;}
.y2f{bottom:447.042400pt;}
.y7f{bottom:447.346933pt;}
.y12c{bottom:448.709744pt;}
.y55{bottom:451.127151pt;}
.yf1{bottom:457.627659pt;}
.yca{bottom:457.702508pt;}
.yc{bottom:462.990669pt;}
.y7e{bottom:462.993903pt;}
.y12b{bottom:464.356714pt;}
.y54{bottom:466.774121pt;}
.yc9{bottom:473.122593pt;}
.ya2{bottom:473.199832pt;}
.y2e{bottom:473.648593pt;}
.y7d{bottom:478.640874pt;}
.yb{bottom:478.990666pt;}
.y12a{bottom:479.928056pt;}
.y2d{bottom:487.934876pt;}
.y53{bottom:488.090519pt;}
.yc8{bottom:488.542678pt;}
.ya1{bottom:488.846802pt;}
.y151{bottom:493.077398pt;}
.y7c{bottom:494.287844pt;}
.ya{bottom:494.990666pt;}
.y129{bottom:495.575026pt;}
.y2c{bottom:502.146241pt;}
.y52{bottom:503.737489pt;}
.yc7{bottom:503.962763pt;}
.ya0{bottom:504.418144pt;}
.y150{bottom:507.288763pt;}
.yf0{bottom:507.667943pt;}
.y7b{bottom:509.934814pt;}
.y128{bottom:511.221997pt;}
.y2b{bottom:516.357606pt;}
.yc6{bottom:519.382848pt;}
.y51{bottom:519.384459pt;}
.y9f{bottom:520.065114pt;}
.y7a{bottom:525.581784pt;}
.yef{bottom:526.716937pt;}
.y127{bottom:526.868967pt;}
.y14f{bottom:527.168482pt;}
.y2a{bottom:530.568971pt;}
.yc5{bottom:532.610800pt;}
.yc4{bottom:534.802933pt;}
.y50{bottom:535.031429pt;}
.y79{bottom:541.228755pt;}
.y14e{bottom:541.379847pt;}
.y126{bottom:542.515937pt;}
.y29{bottom:544.780336pt;}
.yee{bottom:545.160911pt;}
.y9e{bottom:549.167183pt;}
.y4f{bottom:550.678399pt;}
.y78{bottom:556.875725pt;}
.y125{bottom:558.162907pt;}
.y28{bottom:558.991702pt;}
.y14d{bottom:561.259567pt;}
.yed{bottom:563.679944pt;}
.yc3{bottom:564.207688pt;}
.y4e{bottom:566.325370pt;}
.y77{bottom:572.447067pt;}
.y27{bottom:573.203067pt;}
.y9{bottom:573.786667pt;}
.y14c{bottom:575.470932pt;}
.yc1{bottom:577.436000pt;}
.y4d{bottom:581.896712pt;}
.yec{bottom:582.123919pt;}
.y124{bottom:587.189347pt;}
.y14b{bottom:589.682297pt;}
.y9d{bottom:589.986247pt;}
.yc2{bottom:591.269067pt;}
.y8{bottom:592.685334pt;}
.y76{bottom:593.764964pt;}
.y4c{bottom:597.543682pt;}
.yeb{bottom:600.567894pt;}
.y9c{bottom:605.481960pt;}
.y26{bottom:606.841015pt;}
.y75{bottom:609.411934pt;}
.y14a{bottom:609.562016pt;}
.y4b{bottom:613.190652pt;}
.yc0{bottom:615.686388pt;}
.yea{bottom:619.011868pt;}
.y9b{bottom:620.977673pt;}
.y149{bottom:623.773381pt;}
.y74{bottom:625.058905pt;}
.y7{bottom:628.798668pt;}
.y123{bottom:629.897770pt;}
.ybf{bottom:631.106473pt;}
.y9a{bottom:636.473387pt;}
.ye9{bottom:637.530901pt;}
.y148{bottom:637.984746pt;}
.y73{bottom:640.705875pt;}
.y4a{bottom:644.107801pt;}
.y122{bottom:645.544740pt;}
.y6{bottom:645.598667pt;}
.ybe{bottom:646.602187pt;}
.y25{bottom:649.625067pt;}
.y99{bottom:651.969100pt;}
.ye8{bottom:656.503699pt;}
.y147{bottom:657.864466pt;}
.y121{bottom:661.191711pt;}
.ybd{bottom:662.022272pt;}
.y98{bottom:667.464814pt;}
.y3{bottom:668.977329pt;}
.y146{bottom:672.075831pt;}
.y72{bottom:675.401742pt;}
.ye7{bottom:675.552692pt;}
.y120{bottom:676.763052pt;}
.ybc{bottom:677.442357pt;}
.y97{bottom:682.960527pt;}
.y24{bottom:689.234141pt;}
.y145{bottom:691.955550pt;}
.y49{bottom:692.410023pt;}
.ybb{bottom:692.862442pt;}
.ye6{bottom:693.996667pt;}
.y144{bottom:706.166915pt;}
.y23{bottom:707.678533pt;}
.y48{bottom:708.056993pt;}
.yba{bottom:708.282527pt;}
.ye5{bottom:720.378281pt;}
.y47{bottom:723.703963pt;}
.y143{bottom:726.046635pt;}
.y46{bottom:739.350933pt;}
.ye4{bottom:740.258000pt;}
.y142{bottom:766.708547pt;}
.y152{bottom:766.713542pt;}
.y6b{bottom:766.714800pt;}
.y2{bottom:781.661334pt;}
.y3f{bottom:794.154055pt;}
.y3e{bottom:805.492667pt;}
.y1{bottom:859.312000pt;}
.h20{height:24.989922pt;}
.h15{height:25.077570pt;}
.h1f{height:25.374800pt;}
.hf{height:27.624161pt;}
.h7{height:28.560000pt;}
.he{height:29.596602pt;}
.h22{height:31.570153pt;}
.h21{height:32.722028pt;}
.hd{height:33.543703pt;}
.h17{height:34.306984pt;}
.h1a{height:36.250400pt;}
.hc{height:36.571721pt;}
.h11{height:36.640625pt;}
.hb{height:37.490065pt;}
.h1d{height:38.084288pt;}
.h1b{height:40.512375pt;}
.h1c{height:40.513521pt;}
.h6{height:40.800000pt;}
.ha{height:42.346260pt;}
.h3{height:42.840000pt;}
.h1e{height:45.656170pt;}
.h14{height:48.829134pt;}
.h18{height:48.844620pt;}
.h19{height:48.855638pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h16{height:824.539554pt;}
.h13{height:842.666667pt;}
.h12{height:842.834667pt;}
.h10{height:880.626667pt;}
.h8{height:880.629333pt;}
.h9{height:880.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:555.333333pt;}
.w5{width:555.590667pt;}
.w2{width:566.928019pt;}
.w4{width:593.333333pt;}
.w3{width:593.385333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:71.811226pt;}
.x24{left:73.702445pt;}
.xe{left:83.149600pt;}
.x9{left:84.585867pt;}
.x28{left:87.458267pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x29{left:107.337986pt;}
.x13{left:133.809935pt;}
.x14{left:135.286808pt;}
.xf{left:142.912000pt;}
.x10{left:144.489333pt;}
.x2a{left:150.878128pt;}
.x1e{left:151.861333pt;}
.x6{left:157.152065pt;}
.x25{left:161.007867pt;}
.x1f{left:162.066133pt;}
.x2b{left:168.641419pt;}
.x16{left:171.817490pt;}
.x4{left:180.874667pt;}
.x26{left:183.004609pt;}
.x2c{left:187.010290pt;}
.xc{left:192.000000pt;}
.x5{left:201.600000pt;}
.x2d{left:204.697885pt;}
.x18{left:209.990533pt;}
.x19{left:214.526702pt;}
.x21{left:219.665770pt;}
.x17{left:220.573200pt;}
.x2e{left:222.461176pt;}
.xd{left:224.504020pt;}
.x7{left:229.492800pt;}
.x1a{left:233.952667pt;}
.x2f{left:240.224468pt;}
.xb{left:241.891042pt;}
.x11{left:242.797232pt;}
.x3c{left:254.287343pt;}
.x27{left:257.461333pt;}
.x8{left:260.485577pt;}
.x15{left:264.416143pt;}
.x20{left:267.666133pt;}
.x30{left:275.751052pt;}
.x31{left:293.514343pt;}
.x23{left:301.455621pt;}
.x22{left:310.752667pt;}
.x32{left:328.965229pt;}
.x33{left:346.728521pt;}
.x12{left:359.508533pt;}
.x34{left:364.491813pt;}
.x1b{left:374.475467pt;}
.x1c{left:379.011635pt;}
.x35{left:382.255105pt;}
.x1d{left:398.437733pt;}
.x36{left:400.018397pt;}
.x3{left:404.408000pt;}
.x37{left:417.781688pt;}
.x38{left:436.074862pt;}
.x39{left:453.838153pt;}
.x3a{left:477.044192pt;}
.x3b{left:489.818921pt;}
}




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