
    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_f0505b63823c9b89f3ff61c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.069000;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_1d1890357db8aeb0b8583bb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_2d23157503011c7f52f5ce98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_d3a23c0057e2f40a4df41f52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971000;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_98ead7f35075a1093beb6fa1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.069000;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_e8b878a697a80cc1cb77800a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_231f915c0ce8267904964189.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.076000;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_24b61edf0b57454f8712e452.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_cddb5fc762e6ff6c106d9546.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.007000;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_4ea04ef4fa6d45e9f455c307.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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_d551f5535647aaa82a3ad4dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_8849e5b22c4ae1d99afd0b42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.928000;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:ffd;src:url('chunks/assets/font_bb53746f6f6ecfd42540227a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:36.000000px;}
.ls22{letter-spacing:-7.200000px;}
.ls2a{letter-spacing:-5.670000px;}
.ls10{letter-spacing:-3.498000px;}
.ls2b{letter-spacing:-2.106000px;}
.ls27{letter-spacing:-1.716000px;}
.ls21{letter-spacing:-1.584000px;}
.ls18{letter-spacing:-1.518000px;}
.ls1e{letter-spacing:-1.386000px;}
.lsd{letter-spacing:-1.254000px;}
.ls1b{letter-spacing:-1.188000px;}
.ls24{letter-spacing:-1.026000px;}
.ls1d{letter-spacing:-0.990000px;}
.ls1f{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.858000px;}
.ls1c{letter-spacing:-0.792000px;}
.ls2e{letter-spacing:-0.702000px;}
.ls2{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.462000px;}
.ls28{letter-spacing:-0.396000px;}
.ls15{letter-spacing:-0.378000px;}
.ls20{letter-spacing:-0.330000px;}
.ls12{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.132000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.330000px;}
.lse{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.840000px;}
.ls5{letter-spacing:1.026000px;}
.ls4{letter-spacing:1.619400px;}
.ls3{letter-spacing:1.620000px;}
.ls7{letter-spacing:1.680000px;}
.ls14{letter-spacing:1.923420px;}
.ls26{letter-spacing:1.924020px;}
.ls25{letter-spacing:2.050494px;}
.ls0{letter-spacing:2.640000px;}
.ls16{letter-spacing:5.400000px;}
.lsa{letter-spacing:5.670000px;}
.ls29{letter-spacing:5.678400px;}
.ls6{letter-spacing:5.940000px;}
.lsb{letter-spacing:64.318200px;}
.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;}
}
.ws1f{word-spacing:-17.658000px;}
.ws57{word-spacing:-15.444000px;}
.wsc4{word-spacing:-15.312000px;}
.ws34{word-spacing:-14.982000px;}
.ws73{word-spacing:-14.916000px;}
.ws89{word-spacing:-14.850000px;}
.ws35{word-spacing:-14.652000px;}
.wsc5{word-spacing:-14.586000px;}
.ws72{word-spacing:-14.520000px;}
.wsa2{word-spacing:-14.454000px;}
.ws8a{word-spacing:-14.256000px;}
.wsd1{word-spacing:-14.124000px;}
.wsd0{word-spacing:-13.926000px;}
.wsa1{word-spacing:-13.860000px;}
.wsa3{word-spacing:-13.770000px;}
.ws56{word-spacing:-13.728000px;}
.wse0{word-spacing:-13.530000px;}
.wsb9{word-spacing:-13.464000px;}
.wsed{word-spacing:-12.960000px;}
.ws137{word-spacing:-12.366000px;}
.ws135{word-spacing:-12.258000px;}
.ws10b{word-spacing:-12.180000px;}
.ws138{word-spacing:-12.150000px;}
.wsee{word-spacing:-12.000000px;}
.wsa4{word-spacing:-11.988000px;}
.wsd2{word-spacing:-11.502000px;}
.ws71{word-spacing:-11.484000px;}
.ws10d{word-spacing:-11.340000px;}
.ws4{word-spacing:-10.896000px;}
.ws139{word-spacing:-10.260000px;}
.ws136{word-spacing:-6.588000px;}
.wsdf{word-spacing:-5.454000px;}
.ws148{word-spacing:-4.896000px;}
.wsf6{word-spacing:-4.026000px;}
.wsc9{word-spacing:-3.828000px;}
.wse5{word-spacing:-3.696000px;}
.ws66{word-spacing:-3.498000px;}
.ws85{word-spacing:-3.300000px;}
.wsc1{word-spacing:-3.168000px;}
.ws121{word-spacing:-3.102000px;}
.wsbd{word-spacing:-2.970000px;}
.ws67{word-spacing:-2.904000px;}
.ws20{word-spacing:-2.838000px;}
.ws111{word-spacing:-2.772000px;}
.ws48{word-spacing:-2.706000px;}
.wsd8{word-spacing:-2.640000px;}
.ws29{word-spacing:-2.574000px;}
.ws10e{word-spacing:-2.508000px;}
.ws2d{word-spacing:-2.442000px;}
.ws12a{word-spacing:-2.376000px;}
.wsb6{word-spacing:-2.322000px;}
.wsdb{word-spacing:-2.268000px;}
.ws6a{word-spacing:-2.244000px;}
.wsa9{word-spacing:-2.178000px;}
.wsde{word-spacing:-2.112000px;}
.ws6d{word-spacing:-2.046000px;}
.ws79{word-spacing:-1.980000px;}
.ws117{word-spacing:-1.944000px;}
.ws11d{word-spacing:-1.914000px;}
.wse8{word-spacing:-1.890000px;}
.ws2e{word-spacing:-1.848000px;}
.ws59{word-spacing:-1.782000px;}
.ws8f{word-spacing:-1.716000px;}
.wsc7{word-spacing:-1.650000px;}
.wsbf{word-spacing:-1.584000px;}
.ws25{word-spacing:-1.518000px;}
.ws58{word-spacing:-1.452000px;}
.ws116{word-spacing:-1.404000px;}
.ws127{word-spacing:-1.386000px;}
.wsdc{word-spacing:-1.350000px;}
.wsc2{word-spacing:-1.320000px;}
.wsec{word-spacing:-1.296000px;}
.ws21{word-spacing:-1.254000px;}
.ws9f{word-spacing:-1.188000px;}
.ws86{word-spacing:-1.122000px;}
.ws50{word-spacing:-1.056000px;}
.ws78{word-spacing:-0.990000px;}
.wsf8{word-spacing:-0.924000px;}
.ws12b{word-spacing:-0.918000px;}
.ws2a{word-spacing:-0.858000px;}
.ws10c{word-spacing:-0.840000px;}
.wsaf{word-spacing:-0.792000px;}
.wsb0{word-spacing:-0.726000px;}
.ws82{word-spacing:-0.660000px;}
.ws9e{word-spacing:-0.594000px;}
.wsf{word-spacing:-0.576000px;}
.ws69{word-spacing:-0.528000px;}
.wsc3{word-spacing:-0.462000px;}
.wse7{word-spacing:-0.432000px;}
.wsbb{word-spacing:-0.396000px;}
.ws1d{word-spacing:-0.384000px;}
.ws0{word-spacing:-0.330000px;}
.wsa5{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.264000px;}
.wsb1{word-spacing:-0.216000px;}
.ws36{word-spacing:-0.210000px;}
.wsab{word-spacing:-0.198000px;}
.wsc{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.132000px;}
.wse9{word-spacing:-0.108000px;}
.ws4e{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.wsc8{word-spacing:0.066000px;}
.ws13a{word-spacing:0.108000px;}
.ws84{word-spacing:0.132000px;}
.ws40{word-spacing:0.198000px;}
.ws51{word-spacing:0.264000px;}
.wse6{word-spacing:0.270000px;}
.wsb8{word-spacing:0.324000px;}
.wsc0{word-spacing:0.330000px;}
.wsb5{word-spacing:0.378000px;}
.ws31{word-spacing:0.396000px;}
.ws5d{word-spacing:0.462000px;}
.ws3d{word-spacing:0.528000px;}
.wsda{word-spacing:0.540000px;}
.ws5{word-spacing:0.594000px;}
.ws13d{word-spacing:0.648000px;}
.ws2{word-spacing:0.660000px;}
.wsb7{word-spacing:0.702000px;}
.wsad{word-spacing:0.726000px;}
.wsb4{word-spacing:0.756000px;}
.wsfa{word-spacing:0.792000px;}
.ws24{word-spacing:0.858000px;}
.ws142{word-spacing:0.918000px;}
.ws28{word-spacing:0.924000px;}
.ws12d{word-spacing:0.990000px;}
.ws11{word-spacing:1.056000px;}
.ws115{word-spacing:1.080000px;}
.ws7e{word-spacing:1.122000px;}
.ws74{word-spacing:1.188000px;}
.ws18{word-spacing:1.200000px;}
.wscc{word-spacing:1.254000px;}
.ws8e{word-spacing:1.320000px;}
.ws49{word-spacing:1.386000px;}
.ws2b{word-spacing:1.452000px;}
.ws4f{word-spacing:1.518000px;}
.ws8d{word-spacing:1.584000px;}
.ws7c{word-spacing:1.650000px;}
.ws70{word-spacing:1.716000px;}
.ws6e{word-spacing:1.782000px;}
.ws7d{word-spacing:1.848000px;}
.ws118{word-spacing:1.890000px;}
.ws14{word-spacing:1.920000px;}
.ws15{word-spacing:1.968000px;}
.wsf9{word-spacing:1.980000px;}
.ws4a{word-spacing:2.046000px;}
.ws54{word-spacing:2.112000px;}
.ws9d{word-spacing:2.178000px;}
.ws7a{word-spacing:2.244000px;}
.wsb2{word-spacing:2.268000px;}
.ws6b{word-spacing:2.310000px;}
.ws44{word-spacing:2.376000px;}
.ws65{word-spacing:2.442000px;}
.ws12{word-spacing:2.496000px;}
.ws125{word-spacing:2.508000px;}
.ws53{word-spacing:2.640000px;}
.ws10f{word-spacing:2.706000px;}
.ws92{word-spacing:2.772000px;}
.wsb{word-spacing:2.784000px;}
.ws12e{word-spacing:2.838000px;}
.ws140{word-spacing:2.862000px;}
.ws9b{word-spacing:2.904000px;}
.ws5b{word-spacing:2.970000px;}
.ws141{word-spacing:3.024000px;}
.ws5e{word-spacing:3.036000px;}
.wsae{word-spacing:3.102000px;}
.ws99{word-spacing:3.168000px;}
.ws64{word-spacing:3.234000px;}
.wsaa{word-spacing:3.300000px;}
.ws45{word-spacing:3.366000px;}
.wsac{word-spacing:3.432000px;}
.wsbe{word-spacing:3.498000px;}
.ws9c{word-spacing:3.564000px;}
.ws114{word-spacing:3.618000px;}
.ws2c{word-spacing:3.630000px;}
.wsd4{word-spacing:3.696000px;}
.wsea{word-spacing:3.726000px;}
.ws4c{word-spacing:3.762000px;}
.wsba{word-spacing:3.828000px;}
.ws88{word-spacing:3.894000px;}
.ws19{word-spacing:3.936000px;}
.ws147{word-spacing:3.942000px;}
.ws37{word-spacing:3.960000px;}
.ws7{word-spacing:3.984000px;}
.wsf5{word-spacing:4.026000px;}
.ws8{word-spacing:4.080000px;}
.ws4b{word-spacing:4.092000px;}
.wsc6{word-spacing:4.158000px;}
.wse3{word-spacing:4.224000px;}
.ws1e{word-spacing:4.272000px;}
.ws130{word-spacing:4.290000px;}
.ws1a{word-spacing:4.320000px;}
.ws55{word-spacing:4.422000px;}
.ws128{word-spacing:4.488000px;}
.ws26{word-spacing:4.554000px;}
.wsa0{word-spacing:4.620000px;}
.ws61{word-spacing:4.686000px;}
.wsa{word-spacing:4.704000px;}
.ws3e{word-spacing:4.752000px;}
.ws126{word-spacing:4.818000px;}
.wse4{word-spacing:4.884000px;}
.wsff{word-spacing:4.950000px;}
.ws119{word-spacing:5.016000px;}
.ws43{word-spacing:5.082000px;}
.ws14a{word-spacing:5.088000px;}
.ws32{word-spacing:5.148000px;}
.ws8b{word-spacing:5.214000px;}
.wseb{word-spacing:5.238000px;}
.ws5f{word-spacing:5.280000px;}
.wsb3{word-spacing:5.292000px;}
.ws81{word-spacing:5.346000px;}
.ws47{word-spacing:5.412000px;}
.ws17{word-spacing:5.424000px;}
.ws27{word-spacing:5.478000px;}
.wsfe{word-spacing:5.544000px;}
.ws123{word-spacing:5.610000px;}
.ws16{word-spacing:5.616000px;}
.ws13f{word-spacing:5.670000px;}
.ws97{word-spacing:5.676000px;}
.ws41{word-spacing:5.742000px;}
.ws10{word-spacing:5.760000px;}
.ws76{word-spacing:5.808000px;}
.ws4d{word-spacing:5.874000px;}
.ws75{word-spacing:5.940000px;}
.ws1c{word-spacing:6.000000px;}
.ws98{word-spacing:6.006000px;}
.ws96{word-spacing:6.072000px;}
.ws33{word-spacing:6.138000px;}
.ws22{word-spacing:6.204000px;}
.ws133{word-spacing:6.270000px;}
.ws42{word-spacing:6.336000px;}
.wsbc{word-spacing:6.402000px;}
.ws120{word-spacing:6.468000px;}
.ws60{word-spacing:6.534000px;}
.ws38{word-spacing:6.600000px;}
.ws91{word-spacing:6.666000px;}
.wsa7{word-spacing:6.732000px;}
.ws83{word-spacing:6.798000px;}
.ws113{word-spacing:6.804000px;}
.ws13{word-spacing:6.816000px;}
.wsca{word-spacing:6.864000px;}
.ws2f{word-spacing:6.930000px;}
.ws124{word-spacing:6.996000px;}
.ws68{word-spacing:7.062000px;}
.ws1b{word-spacing:7.104000px;}
.ws9a{word-spacing:7.128000px;}
.wsd9{word-spacing:7.182000px;}
.wsfb{word-spacing:7.194000px;}
.wsf7{word-spacing:7.200000px;}
.wse{word-spacing:7.248000px;}
.ws6c{word-spacing:7.326000px;}
.ws129{word-spacing:7.392000px;}
.ws3b{word-spacing:7.458000px;}
.ws12c{word-spacing:7.524000px;}
.ws5c{word-spacing:7.590000px;}
.wsd7{word-spacing:7.656000px;}
.ws3f{word-spacing:7.722000px;}
.ws6{word-spacing:7.728000px;}
.ws13e{word-spacing:7.776000px;}
.ws39{word-spacing:7.788000px;}
.ws11e{word-spacing:7.830000px;}
.ws8c{word-spacing:7.854000px;}
.ws90{word-spacing:7.920000px;}
.wscd{word-spacing:7.986000px;}
.wsdd{word-spacing:8.118000px;}
.ws143{word-spacing:8.154000px;}
.wsd3{word-spacing:8.184000px;}
.ws149{word-spacing:8.208000px;}
.ws23{word-spacing:8.250000px;}
.ws144{word-spacing:8.262000px;}
.ws30{word-spacing:8.316000px;}
.wse1{word-spacing:8.448000px;}
.ws11f{word-spacing:8.580000px;}
.wsd5{word-spacing:8.646000px;}
.ws145{word-spacing:8.694000px;}
.wsfd{word-spacing:8.712000px;}
.ws52{word-spacing:8.778000px;}
.ws7f{word-spacing:8.844000px;}
.ws122{word-spacing:8.910000px;}
.ws146{word-spacing:8.964000px;}
.ws131{word-spacing:8.976000px;}
.ws80{word-spacing:9.042000px;}
.ws46{word-spacing:9.108000px;}
.ws11a{word-spacing:9.174000px;}
.wse2{word-spacing:9.240000px;}
.wsd{word-spacing:9.360000px;}
.ws3c{word-spacing:9.372000px;}
.ws6f{word-spacing:9.570000px;}
.ws93{word-spacing:9.636000px;}
.ws12f{word-spacing:9.900000px;}
.ws112{word-spacing:9.966000px;}
.wscb{word-spacing:10.428000px;}
.wsa6{word-spacing:10.626000px;}
.ws7b{word-spacing:10.824000px;}
.ws87{word-spacing:10.890000px;}
.ws13b{word-spacing:11.016000px;}
.ws13c{word-spacing:11.070000px;}
.wsfc{word-spacing:11.220000px;}
.wsa8{word-spacing:11.484000px;}
.ws101{word-spacing:11.616000px;}
.wsce{word-spacing:12.012000px;}
.wscf{word-spacing:12.144000px;}
.ws132{word-spacing:12.276000px;}
.ws100{word-spacing:12.408000px;}
.ws11c{word-spacing:12.870000px;}
.ws14b{word-spacing:12.912000px;}
.ws110{word-spacing:13.002000px;}
.ws11b{word-spacing:13.200000px;}
.ws94{word-spacing:14.124000px;}
.ws77{word-spacing:14.256000px;}
.ws62{word-spacing:14.652000px;}
.ws63{word-spacing:14.784000px;}
.ws134{word-spacing:15.114000px;}
.ws3a{word-spacing:16.170000px;}
.ws3{word-spacing:16.380000px;}
.ws9{word-spacing:16.800000px;}
.ws102{word-spacing:17.820000px;}
.wsd6{word-spacing:19.272000px;}
.ws105{word-spacing:232.766400px;}
.wsf2{word-spacing:238.982400px;}
.wsf3{word-spacing:249.774600px;}
.ws106{word-spacing:256.766400px;}
.wsf1{word-spacing:262.982400px;}
.ws104{word-spacing:280.766400px;}
.ws10a{word-spacing:294.493200px;}
.wsf0{word-spacing:297.774600px;}
.ws108{word-spacing:300.718200px;}
.wsf4{word-spacing:317.629200px;}
.ws103{word-spacing:325.068600px;}
.ws109{word-spacing:344.171400px;}
.wsef{word-spacing:366.076800px;}
.ws107{word-spacing:509.147400px;}
._14{margin-left:-26.994000px;}
._13{margin-left:-16.242000px;}
._e{margin-left:-14.982000px;}
._17{margin-left:-13.596000px;}
._15{margin-left:-12.276000px;}
._c{margin-left:-10.920000px;}
._f{margin-left:-9.827400px;}
._18{margin-left:-8.188800px;}
._2{margin-left:-6.402000px;}
._10{margin-left:-5.181000px;}
._4{margin-left:-4.123200px;}
._3{margin-left:-2.640000px;}
._0{margin-left:-1.452000px;}
._1{width:1.320000px;}
._a{width:2.811600px;}
._11{width:4.554000px;}
._9{width:5.872800px;}
._8{width:6.920400px;}
._16{width:8.233800px;}
._41{width:9.852000px;}
._5{width:13.500000px;}
._6{width:33.687600px;}
._7{width:35.140200px;}
._40{width:56.484000px;}
._b{width:58.868400px;}
._12{width:64.530000px;}
._1a{width:84.412800px;}
._1f{width:123.477000px;}
._21{width:147.477000px;}
._32{width:152.364600px;}
._39{width:155.484000px;}
._24{width:158.021400px;}
._1b{width:160.437000px;}
._29{width:169.309200px;}
._23{width:170.572800px;}
._2f{width:173.765400px;}
._38{width:175.277400px;}
._1d{width:182.269200px;}
._1c{width:193.061400px;}
._2c{width:195.477000px;}
._37{width:199.277400px;}
._33{width:202.221000px;}
._20{width:206.269200px;}
._34{width:212.236800px;}
._26{width:217.061400px;}
._2a{width:226.123800px;}
._2d{width:230.020800px;}
._22{width:236.916000px;}
._35{width:243.132600px;}
._27{width:245.147400px;}
._3d{width:260.236800px;}
._19{width:271.813800px;}
._25{width:306.299400px;}
._3f{width:312.045000px;}
._30{width:313.480800px;}
._1e{width:320.428800px;}
._3a{width:323.389200px;}
._36{width:351.420600px;}
._28{width:449.788800px;}
._2e{width:454.252800px;}
._2b{width:462.508800px;}
._3c{width:482.460000px;}
._31{width:517.177800px;}
._3b{width:540.780000px;}
._3e{width:670.758600px;}
._d{width:950.208000px;}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(90,87,88);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs5{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yee{bottom:21.946500px;}
.y10e{bottom:42.306750px;}
.y9{bottom:42.917850px;}
.y8{bottom:59.417850px;}
.y90{bottom:63.779550px;}
.y67{bottom:66.169950px;}
.yc1{bottom:66.311850px;}
.yfe{bottom:68.518650px;}
.y42{bottom:69.169950px;}
.y100{bottom:70.020150px;}
.y131{bottom:74.596950px;}
.y7{bottom:75.917850px;}
.y10d{bottom:79.278750px;}
.yfd{bottom:80.520150px;}
.y8f{bottom:81.779550px;}
.yff{bottom:82.021650px;}
.y66{bottom:87.169950px;}
.yc0{bottom:87.311850px;}
.y41{bottom:90.169950px;}
.y130{bottom:91.096950px;}
.y8e{bottom:99.779550px;}
.y10c{bottom:107.775750px;}
.y65{bottom:108.169950px;}
.ybf{bottom:108.311850px;}
.y40{bottom:111.169950px;}
.y12f{bottom:115.846950px;}
.y8d{bottom:117.779550px;}
.y64{bottom:129.169950px;}
.ybe{bottom:129.311850px;}
.y3f{bottom:132.169950px;}
.y12e{bottom:132.346950px;}
.y10b{bottom:134.771250px;}
.y8c{bottom:135.779550px;}
.y63{bottom:150.169950px;}
.ybd{bottom:150.311850px;}
.y3e{bottom:153.169950px;}
.y8b{bottom:153.779550px;}
.yfc{bottom:153.967650px;}
.y10a{bottom:161.766750px;}
.y12d{bottom:165.346950px;}
.yfb{bottom:165.969150px;}
.y62{bottom:171.169950px;}
.ybc{bottom:171.311850px;}
.y8a{bottom:171.779550px;}
.y3d{bottom:174.169950px;}
.y12c{bottom:181.846950px;}
.y109{bottom:188.762250px;}
.y89{bottom:189.779550px;}
.y69{bottom:192.169950px;}
.ybb{bottom:192.311850px;}
.y3c{bottom:195.169950px;}
.y88{bottom:207.779550px;}
.y61{bottom:213.169950px;}
.yba{bottom:213.311850px;}
.y12b{bottom:214.846950px;}
.y108{bottom:215.757750px;}
.yfa{bottom:216.085650px;}
.y3b{bottom:216.169950px;}
.y25{bottom:219.434400px;}
.y87{bottom:225.779550px;}
.y6{bottom:226.729050px;}
.yf9{bottom:228.087150px;}
.y68{bottom:234.169950px;}
.yb9{bottom:234.311850px;}
.y24{bottom:235.934400px;}
.y3a{bottom:237.169950px;}
.y107{bottom:242.753250px;}
.yb1{bottom:246.850950px;}
.y5{bottom:247.729050px;}
.y106{bottom:247.806750px;}
.y23{bottom:252.434400px;}
.y60{bottom:255.169950px;}
.yb8{bottom:255.311850px;}
.y39{bottom:258.169950px;}
.yf8{bottom:264.459150px;}
.yb0{bottom:267.850950px;}
.y22{bottom:268.934400px;}
.y5f{bottom:276.169950px;}
.yb7{bottom:276.311850px;}
.yf7{bottom:276.460650px;}
.y86{bottom:278.350950px;}
.y38{bottom:279.169950px;}
.y12a{bottom:279.850950px;}
.y21{bottom:285.434400px;}
.yaf{bottom:288.850950px;}
.y105{bottom:296.767650px;}
.y5e{bottom:297.169950px;}
.yb6{bottom:297.311850px;}
.y129{bottom:297.850950px;}
.y85{bottom:299.350950px;}
.y102{bottom:300.085650px;}
.y37{bottom:300.169950px;}
.y20{bottom:301.934400px;}
.yf6{bottom:304.579650px;}
.y93{bottom:307.669950px;}
.yae{bottom:309.850950px;}
.y101{bottom:312.087150px;}
.y128{bottom:315.850950px;}
.yf5{bottom:316.581150px;}
.y5d{bottom:318.169950px;}
.yb5{bottom:318.311850px;}
.y1f{bottom:318.434400px;}
.y84{bottom:320.350950px;}
.y36{bottom:321.169950px;}
.y104{bottom:323.763150px;}
.yf4{bottom:327.721650px;}
.y92{bottom:328.669950px;}
.yef{bottom:329.704650px;}
.yad{bottom:330.850950px;}
.y4{bottom:331.729050px;}
.y127{bottom:333.850950px;}
.y1e{bottom:334.934400px;}
.yf2{bottom:338.148150px;}
.y5c{bottom:339.169950px;}
.yb4{bottom:339.311850px;}
.yf0{bottom:339.649650px;}
.yf3{bottom:339.723150px;}
.y83{bottom:341.350950px;}
.y35{bottom:342.169950px;}
.yf1{bottom:350.149650px;}
.y103{bottom:350.758650px;}
.y1d{bottom:351.434400px;}
.yac{bottom:351.850950px;}
.y5b{bottom:360.169950px;}
.yb3{bottom:360.311850px;}
.y82{bottom:362.350950px;}
.y34{bottom:363.169950px;}
.y3{bottom:364.729050px;}
.y1c{bottom:367.934400px;}
.y126{bottom:369.850950px;}
.yab{bottom:372.850950px;}
.yed{bottom:379.488150px;}
.y5a{bottom:381.169950px;}
.yb2{bottom:381.311850px;}
.y81{bottom:383.350950px;}
.y33{bottom:384.169950px;}
.y1b{bottom:384.434400px;}
.y125{bottom:387.850950px;}
.yaa{bottom:393.850950px;}
.yec{bottom:397.488150px;}
.y1a{bottom:400.934400px;}
.y59{bottom:402.169950px;}
.y80{bottom:404.350950px;}
.y32{bottom:405.169950px;}
.y124{bottom:405.850950px;}
.ya9{bottom:414.850950px;}
.y19{bottom:417.434400px;}
.y58{bottom:423.169950px;}
.y123{bottom:423.850950px;}
.y7f{bottom:425.350950px;}
.y31{bottom:426.169950px;}
.yd6{bottom:434.408400px;}
.ya8{bottom:435.850950px;}
.y2{bottom:439.729050px;}
.y122{bottom:441.850950px;}
.y57{bottom:444.169950px;}
.y7e{bottom:446.350950px;}
.y30{bottom:447.169950px;}
.yeb{bottom:449.372400px;}
.y18{bottom:450.434400px;}
.ya7{bottom:456.850950px;}
.y121{bottom:459.850950px;}
.yd5{bottom:462.128250px;}
.y56{bottom:465.169950px;}
.y17{bottom:466.934400px;}
.y7d{bottom:467.350950px;}
.y2f{bottom:468.169950px;}
.y1{bottom:472.729050px;}
.yea{bottom:474.884100px;}
.ya6{bottom:477.850950px;}
.y16{bottom:483.434400px;}
.y55{bottom:486.169950px;}
.yd4{bottom:487.640100px;}
.y7c{bottom:488.350950px;}
.y2e{bottom:489.169950px;}
.y120{bottom:495.850950px;}
.ya5{bottom:498.850950px;}
.y15{bottom:499.934400px;}
.ye9{bottom:500.395950px;}
.y54{bottom:507.169950px;}
.y7b{bottom:509.350950px;}
.y2d{bottom:510.169950px;}
.yd3{bottom:513.151950px;}
.y11f{bottom:513.850950px;}
.y14{bottom:516.434400px;}
.ya4{bottom:519.850950px;}
.ye8{bottom:525.907800px;}
.y53{bottom:528.169950px;}
.y7a{bottom:530.350950px;}
.y2c{bottom:531.169950px;}
.y11e{bottom:531.850950px;}
.y13{bottom:532.934400px;}
.yd2{bottom:538.663650px;}
.ya3{bottom:540.850950px;}
.y52{bottom:549.169950px;}
.y12{bottom:549.434400px;}
.y11d{bottom:549.850950px;}
.y79{bottom:551.350950px;}
.ye7{bottom:551.419650px;}
.ya2{bottom:561.850950px;}
.yd1{bottom:564.175500px;}
.y11{bottom:565.934400px;}
.y11c{bottom:567.850950px;}
.y51{bottom:570.169950px;}
.y78{bottom:572.350950px;}
.y2b{bottom:573.169950px;}
.ye6{bottom:576.931350px;}
.y10{bottom:582.434400px;}
.ya1{bottom:582.850950px;}
.y11b{bottom:585.850950px;}
.yd0{bottom:589.687350px;}
.y50{bottom:591.169950px;}
.y77{bottom:593.350950px;}
.yf{bottom:598.934400px;}
.ye5{bottom:601.947150px;}
.ya0{bottom:603.850950px;}
.y4f{bottom:612.169950px;}
.y76{bottom:614.350950px;}
.ycf{bottom:614.703150px;}
.ye{bottom:615.434400px;}
.ye4{bottom:619.947150px;}
.y11a{bottom:621.850950px;}
.y9f{bottom:624.850950px;}
.yd{bottom:631.934400px;}
.yce{bottom:632.703150px;}
.y4e{bottom:633.169950px;}
.y75{bottom:635.350950px;}
.y119{bottom:639.850950px;}
.ye3{bottom:644.962950px;}
.y9e{bottom:645.850950px;}
.yc{bottom:648.434400px;}
.y4d{bottom:654.169950px;}
.y74{bottom:656.350950px;}
.ycd{bottom:657.718800px;}
.y118{bottom:657.850950px;}
.yb{bottom:664.934400px;}
.y9d{bottom:666.850950px;}
.ye2{bottom:669.978750px;}
.y4c{bottom:675.169950px;}
.y117{bottom:675.850950px;}
.y73{bottom:677.350950px;}
.ycc{bottom:682.734600px;}
.y9c{bottom:687.850950px;}
.ye1{bottom:687.978750px;}
.y116{bottom:693.850950px;}
.y4b{bottom:696.169950px;}
.y72{bottom:698.350950px;}
.ycb{bottom:700.734600px;}
.y2a{bottom:705.169950px;}
.ya{bottom:706.184400px;}
.y9b{bottom:708.850950px;}
.y115{bottom:711.850950px;}
.ye0{bottom:712.994400px;}
.y4a{bottom:717.169950px;}
.y71{bottom:719.350950px;}
.yca{bottom:725.750250px;}
.y91{bottom:727.669950px;}
.y9a{bottom:729.850950px;}
.y29{bottom:738.169950px;}
.ydf{bottom:738.506250px;}
.y70{bottom:740.350950px;}
.y114{bottom:747.850950px;}
.y99{bottom:750.850950px;}
.yc9{bottom:751.262100px;}
.y49{bottom:759.169950px;}
.yde{bottom:760.403850px;}
.y6f{bottom:761.350950px;}
.y113{bottom:765.850950px;}
.yda{bottom:769.403850px;}
.y28{bottom:771.169950px;}
.y98{bottom:771.850950px;}
.yc8{bottom:775.781850px;}
.ydd{bottom:778.403850px;}
.y48{bottom:780.169950px;}
.y6e{bottom:782.350950px;}
.y112{bottom:783.850950px;}
.yd9{bottom:787.403850px;}
.y97{bottom:792.850950px;}
.yc7{bottom:793.781850px;}
.ydc{bottom:796.403850px;}
.yd7{bottom:800.159700px;}
.y47{bottom:801.169950px;}
.y111{bottom:801.850950px;}
.y6d{bottom:803.350950px;}
.yd8{bottom:805.403850px;}
.yc4{bottom:806.537700px;}
.yc6{bottom:811.781850px;}
.y96{bottom:813.850950px;}
.ydb{bottom:814.403850px;}
.y110{bottom:819.850950px;}
.y46{bottom:822.169950px;}
.y6c{bottom:824.350950px;}
.y95{bottom:834.850950px;}
.yc5{bottom:836.301450px;}
.y10f{bottom:837.850950px;}
.y45{bottom:843.169950px;}
.y6b{bottom:845.350950px;}
.y27{bottom:852.169950px;}
.y94{bottom:855.850950px;}
.y44{bottom:864.169950px;}
.yc3{bottom:870.093450px;}
.y26{bottom:885.169950px;}
.y6a{bottom:887.350950px;}
.yc2{bottom:888.093450px;}
.y43{bottom:931.620000px;}
.h11{height:31.710000px;}
.hf{height:32.046000px;}
.hd{height:33.264000px;}
.ha{height:36.624000px;}
.hc{height:36.816000px;}
.h9{height:37.800000px;}
.h5{height:38.976000px;}
.h7{height:39.696000px;}
.hb{height:41.202000px;}
.h6{height:43.848000px;}
.h8{height:44.982000px;}
.h4{height:48.720000px;}
.h2{height:53.592000px;}
.he{height:72.624000px;}
.h3{height:79.392000px;}
.h10{height:338.407500px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w2{width:510.237000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x11{left:42.519750px;}
.xf{left:85.039350px;}
.x31{left:86.413650px;}
.x18{left:95.633550px;}
.x30{left:100.315650px;}
.x10{left:110.551200px;}
.x7{left:114.182400px;}
.x4{left:123.764400px;}
.x16{left:127.559100px;}
.x2f{left:130.125150px;}
.x3{left:131.960400px;}
.x17{left:133.562400px;}
.x33{left:139.501650px;}
.x32{left:140.551650px;}
.x38{left:142.283400px;}
.x2a{left:145.612650px;}
.xc{left:168.464100px;}
.x2e{left:169.678650px;}
.x12{left:172.226100px;}
.xa{left:191.338650px;}
.xb{left:199.519350px;}
.x14{left:207.541500px;}
.x2d{left:209.757150px;}
.x2c{left:211.332150px;}
.x8{left:212.400900px;}
.x9{left:221.224500px;}
.x1{left:226.862250px;}
.x2b{left:228.552150px;}
.xd{left:230.550750px;}
.x1a{left:233.614350px;}
.x25{left:235.594200px;}
.x5{left:245.411700px;}
.x19{left:249.250200px;}
.x15{left:252.995850px;}
.x2{left:267.039000px;}
.x13{left:273.981450px;}
.x6{left:283.216500px;}
.xe{left:287.886150px;}
.x39{left:293.394150px;}
.x24{left:307.516350px;}
.x35{left:316.342650px;}
.x34{left:317.917650px;}
.x1c{left:323.965800px;}
.x1d{left:327.157650px;}
.x1b{left:331.267650px;}
.x26{left:334.021650px;}
.x27{left:336.325650px;}
.x37{left:341.192700px;}
.x1f{left:417.509100px;}
.x20{left:420.700950px;}
.x36{left:426.235650px;}
.x1e{left:428.086950px;}
.x28{left:429.550800px;}
.x29{left:431.860800px;}
.x22{left:511.052400px;}
.x23{left:514.244250px;}
.x21{left:524.618250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:32.000000pt;}
.ls22{letter-spacing:-6.400000pt;}
.ls2a{letter-spacing:-5.040000pt;}
.ls10{letter-spacing:-3.109333pt;}
.ls2b{letter-spacing:-1.872000pt;}
.ls27{letter-spacing:-1.525333pt;}
.ls21{letter-spacing:-1.408000pt;}
.ls18{letter-spacing:-1.349333pt;}
.ls1e{letter-spacing:-1.232000pt;}
.lsd{letter-spacing:-1.114667pt;}
.ls1b{letter-spacing:-1.056000pt;}
.ls24{letter-spacing:-0.912000pt;}
.ls1d{letter-spacing:-0.880000pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.762667pt;}
.ls1c{letter-spacing:-0.704000pt;}
.ls2e{letter-spacing:-0.624000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.410667pt;}
.ls28{letter-spacing:-0.352000pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls20{letter-spacing:-0.293333pt;}
.ls12{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.117333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.912000pt;}
.ls4{letter-spacing:1.439467pt;}
.ls3{letter-spacing:1.440000pt;}
.ls7{letter-spacing:1.493333pt;}
.ls14{letter-spacing:1.709707pt;}
.ls26{letter-spacing:1.710240pt;}
.ls25{letter-spacing:1.822661pt;}
.ls0{letter-spacing:2.346667pt;}
.ls16{letter-spacing:4.800000pt;}
.lsa{letter-spacing:5.040000pt;}
.ls29{letter-spacing:5.047467pt;}
.ls6{letter-spacing:5.280000pt;}
.lsb{letter-spacing:57.171733pt;}
.ws1f{word-spacing:-15.696000pt;}
.ws57{word-spacing:-13.728000pt;}
.wsc4{word-spacing:-13.610667pt;}
.ws34{word-spacing:-13.317333pt;}
.ws73{word-spacing:-13.258667pt;}
.ws89{word-spacing:-13.200000pt;}
.ws35{word-spacing:-13.024000pt;}
.wsc5{word-spacing:-12.965333pt;}
.ws72{word-spacing:-12.906667pt;}
.wsa2{word-spacing:-12.848000pt;}
.ws8a{word-spacing:-12.672000pt;}
.wsd1{word-spacing:-12.554667pt;}
.wsd0{word-spacing:-12.378667pt;}
.wsa1{word-spacing:-12.320000pt;}
.wsa3{word-spacing:-12.240000pt;}
.ws56{word-spacing:-12.202667pt;}
.wse0{word-spacing:-12.026667pt;}
.wsb9{word-spacing:-11.968000pt;}
.wsed{word-spacing:-11.520000pt;}
.ws137{word-spacing:-10.992000pt;}
.ws135{word-spacing:-10.896000pt;}
.ws10b{word-spacing:-10.826667pt;}
.ws138{word-spacing:-10.800000pt;}
.wsee{word-spacing:-10.666667pt;}
.wsa4{word-spacing:-10.656000pt;}
.wsd2{word-spacing:-10.224000pt;}
.ws71{word-spacing:-10.208000pt;}
.ws10d{word-spacing:-10.080000pt;}
.ws4{word-spacing:-9.685333pt;}
.ws139{word-spacing:-9.120000pt;}
.ws136{word-spacing:-5.856000pt;}
.wsdf{word-spacing:-4.848000pt;}
.ws148{word-spacing:-4.352000pt;}
.wsf6{word-spacing:-3.578667pt;}
.wsc9{word-spacing:-3.402667pt;}
.wse5{word-spacing:-3.285333pt;}
.ws66{word-spacing:-3.109333pt;}
.ws85{word-spacing:-2.933333pt;}
.wsc1{word-spacing:-2.816000pt;}
.ws121{word-spacing:-2.757333pt;}
.wsbd{word-spacing:-2.640000pt;}
.ws67{word-spacing:-2.581333pt;}
.ws20{word-spacing:-2.522667pt;}
.ws111{word-spacing:-2.464000pt;}
.ws48{word-spacing:-2.405333pt;}
.wsd8{word-spacing:-2.346667pt;}
.ws29{word-spacing:-2.288000pt;}
.ws10e{word-spacing:-2.229333pt;}
.ws2d{word-spacing:-2.170667pt;}
.ws12a{word-spacing:-2.112000pt;}
.wsb6{word-spacing:-2.064000pt;}
.wsdb{word-spacing:-2.016000pt;}
.ws6a{word-spacing:-1.994667pt;}
.wsa9{word-spacing:-1.936000pt;}
.wsde{word-spacing:-1.877333pt;}
.ws6d{word-spacing:-1.818667pt;}
.ws79{word-spacing:-1.760000pt;}
.ws117{word-spacing:-1.728000pt;}
.ws11d{word-spacing:-1.701333pt;}
.wse8{word-spacing:-1.680000pt;}
.ws2e{word-spacing:-1.642667pt;}
.ws59{word-spacing:-1.584000pt;}
.ws8f{word-spacing:-1.525333pt;}
.wsc7{word-spacing:-1.466667pt;}
.wsbf{word-spacing:-1.408000pt;}
.ws25{word-spacing:-1.349333pt;}
.ws58{word-spacing:-1.290667pt;}
.ws116{word-spacing:-1.248000pt;}
.ws127{word-spacing:-1.232000pt;}
.wsdc{word-spacing:-1.200000pt;}
.wsc2{word-spacing:-1.173333pt;}
.wsec{word-spacing:-1.152000pt;}
.ws21{word-spacing:-1.114667pt;}
.ws9f{word-spacing:-1.056000pt;}
.ws86{word-spacing:-0.997333pt;}
.ws50{word-spacing:-0.938667pt;}
.ws78{word-spacing:-0.880000pt;}
.wsf8{word-spacing:-0.821333pt;}
.ws12b{word-spacing:-0.816000pt;}
.ws2a{word-spacing:-0.762667pt;}
.ws10c{word-spacing:-0.746667pt;}
.wsaf{word-spacing:-0.704000pt;}
.wsb0{word-spacing:-0.645333pt;}
.ws82{word-spacing:-0.586667pt;}
.ws9e{word-spacing:-0.528000pt;}
.wsf{word-spacing:-0.512000pt;}
.ws69{word-spacing:-0.469333pt;}
.wsc3{word-spacing:-0.410667pt;}
.wse7{word-spacing:-0.384000pt;}
.wsbb{word-spacing:-0.352000pt;}
.ws1d{word-spacing:-0.341333pt;}
.ws0{word-spacing:-0.293333pt;}
.wsa5{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.234667pt;}
.wsb1{word-spacing:-0.192000pt;}
.ws36{word-spacing:-0.186667pt;}
.wsab{word-spacing:-0.176000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.117333pt;}
.wse9{word-spacing:-0.096000pt;}
.ws4e{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.058667pt;}
.ws13a{word-spacing:0.096000pt;}
.ws84{word-spacing:0.117333pt;}
.ws40{word-spacing:0.176000pt;}
.ws51{word-spacing:0.234667pt;}
.wse6{word-spacing:0.240000pt;}
.wsb8{word-spacing:0.288000pt;}
.wsc0{word-spacing:0.293333pt;}
.wsb5{word-spacing:0.336000pt;}
.ws31{word-spacing:0.352000pt;}
.ws5d{word-spacing:0.410667pt;}
.ws3d{word-spacing:0.469333pt;}
.wsda{word-spacing:0.480000pt;}
.ws5{word-spacing:0.528000pt;}
.ws13d{word-spacing:0.576000pt;}
.ws2{word-spacing:0.586667pt;}
.wsb7{word-spacing:0.624000pt;}
.wsad{word-spacing:0.645333pt;}
.wsb4{word-spacing:0.672000pt;}
.wsfa{word-spacing:0.704000pt;}
.ws24{word-spacing:0.762667pt;}
.ws142{word-spacing:0.816000pt;}
.ws28{word-spacing:0.821333pt;}
.ws12d{word-spacing:0.880000pt;}
.ws11{word-spacing:0.938667pt;}
.ws115{word-spacing:0.960000pt;}
.ws7e{word-spacing:0.997333pt;}
.ws74{word-spacing:1.056000pt;}
.ws18{word-spacing:1.066667pt;}
.wscc{word-spacing:1.114667pt;}
.ws8e{word-spacing:1.173333pt;}
.ws49{word-spacing:1.232000pt;}
.ws2b{word-spacing:1.290667pt;}
.ws4f{word-spacing:1.349333pt;}
.ws8d{word-spacing:1.408000pt;}
.ws7c{word-spacing:1.466667pt;}
.ws70{word-spacing:1.525333pt;}
.ws6e{word-spacing:1.584000pt;}
.ws7d{word-spacing:1.642667pt;}
.ws118{word-spacing:1.680000pt;}
.ws14{word-spacing:1.706667pt;}
.ws15{word-spacing:1.749333pt;}
.wsf9{word-spacing:1.760000pt;}
.ws4a{word-spacing:1.818667pt;}
.ws54{word-spacing:1.877333pt;}
.ws9d{word-spacing:1.936000pt;}
.ws7a{word-spacing:1.994667pt;}
.wsb2{word-spacing:2.016000pt;}
.ws6b{word-spacing:2.053333pt;}
.ws44{word-spacing:2.112000pt;}
.ws65{word-spacing:2.170667pt;}
.ws12{word-spacing:2.218667pt;}
.ws125{word-spacing:2.229333pt;}
.ws53{word-spacing:2.346667pt;}
.ws10f{word-spacing:2.405333pt;}
.ws92{word-spacing:2.464000pt;}
.wsb{word-spacing:2.474667pt;}
.ws12e{word-spacing:2.522667pt;}
.ws140{word-spacing:2.544000pt;}
.ws9b{word-spacing:2.581333pt;}
.ws5b{word-spacing:2.640000pt;}
.ws141{word-spacing:2.688000pt;}
.ws5e{word-spacing:2.698667pt;}
.wsae{word-spacing:2.757333pt;}
.ws99{word-spacing:2.816000pt;}
.ws64{word-spacing:2.874667pt;}
.wsaa{word-spacing:2.933333pt;}
.ws45{word-spacing:2.992000pt;}
.wsac{word-spacing:3.050667pt;}
.wsbe{word-spacing:3.109333pt;}
.ws9c{word-spacing:3.168000pt;}
.ws114{word-spacing:3.216000pt;}
.ws2c{word-spacing:3.226667pt;}
.wsd4{word-spacing:3.285333pt;}
.wsea{word-spacing:3.312000pt;}
.ws4c{word-spacing:3.344000pt;}
.wsba{word-spacing:3.402667pt;}
.ws88{word-spacing:3.461333pt;}
.ws19{word-spacing:3.498667pt;}
.ws147{word-spacing:3.504000pt;}
.ws37{word-spacing:3.520000pt;}
.ws7{word-spacing:3.541333pt;}
.wsf5{word-spacing:3.578667pt;}
.ws8{word-spacing:3.626667pt;}
.ws4b{word-spacing:3.637333pt;}
.wsc6{word-spacing:3.696000pt;}
.wse3{word-spacing:3.754667pt;}
.ws1e{word-spacing:3.797333pt;}
.ws130{word-spacing:3.813333pt;}
.ws1a{word-spacing:3.840000pt;}
.ws55{word-spacing:3.930667pt;}
.ws128{word-spacing:3.989333pt;}
.ws26{word-spacing:4.048000pt;}
.wsa0{word-spacing:4.106667pt;}
.ws61{word-spacing:4.165333pt;}
.wsa{word-spacing:4.181333pt;}
.ws3e{word-spacing:4.224000pt;}
.ws126{word-spacing:4.282667pt;}
.wse4{word-spacing:4.341333pt;}
.wsff{word-spacing:4.400000pt;}
.ws119{word-spacing:4.458667pt;}
.ws43{word-spacing:4.517333pt;}
.ws14a{word-spacing:4.522667pt;}
.ws32{word-spacing:4.576000pt;}
.ws8b{word-spacing:4.634667pt;}
.wseb{word-spacing:4.656000pt;}
.ws5f{word-spacing:4.693333pt;}
.wsb3{word-spacing:4.704000pt;}
.ws81{word-spacing:4.752000pt;}
.ws47{word-spacing:4.810667pt;}
.ws17{word-spacing:4.821333pt;}
.ws27{word-spacing:4.869333pt;}
.wsfe{word-spacing:4.928000pt;}
.ws123{word-spacing:4.986667pt;}
.ws16{word-spacing:4.992000pt;}
.ws13f{word-spacing:5.040000pt;}
.ws97{word-spacing:5.045333pt;}
.ws41{word-spacing:5.104000pt;}
.ws10{word-spacing:5.120000pt;}
.ws76{word-spacing:5.162667pt;}
.ws4d{word-spacing:5.221333pt;}
.ws75{word-spacing:5.280000pt;}
.ws1c{word-spacing:5.333333pt;}
.ws98{word-spacing:5.338667pt;}
.ws96{word-spacing:5.397333pt;}
.ws33{word-spacing:5.456000pt;}
.ws22{word-spacing:5.514667pt;}
.ws133{word-spacing:5.573333pt;}
.ws42{word-spacing:5.632000pt;}
.wsbc{word-spacing:5.690667pt;}
.ws120{word-spacing:5.749333pt;}
.ws60{word-spacing:5.808000pt;}
.ws38{word-spacing:5.866667pt;}
.ws91{word-spacing:5.925333pt;}
.wsa7{word-spacing:5.984000pt;}
.ws83{word-spacing:6.042667pt;}
.ws113{word-spacing:6.048000pt;}
.ws13{word-spacing:6.058667pt;}
.wsca{word-spacing:6.101333pt;}
.ws2f{word-spacing:6.160000pt;}
.ws124{word-spacing:6.218667pt;}
.ws68{word-spacing:6.277333pt;}
.ws1b{word-spacing:6.314667pt;}
.ws9a{word-spacing:6.336000pt;}
.wsd9{word-spacing:6.384000pt;}
.wsfb{word-spacing:6.394667pt;}
.wsf7{word-spacing:6.400000pt;}
.wse{word-spacing:6.442667pt;}
.ws6c{word-spacing:6.512000pt;}
.ws129{word-spacing:6.570667pt;}
.ws3b{word-spacing:6.629333pt;}
.ws12c{word-spacing:6.688000pt;}
.ws5c{word-spacing:6.746667pt;}
.wsd7{word-spacing:6.805333pt;}
.ws3f{word-spacing:6.864000pt;}
.ws6{word-spacing:6.869333pt;}
.ws13e{word-spacing:6.912000pt;}
.ws39{word-spacing:6.922667pt;}
.ws11e{word-spacing:6.960000pt;}
.ws8c{word-spacing:6.981333pt;}
.ws90{word-spacing:7.040000pt;}
.wscd{word-spacing:7.098667pt;}
.wsdd{word-spacing:7.216000pt;}
.ws143{word-spacing:7.248000pt;}
.wsd3{word-spacing:7.274667pt;}
.ws149{word-spacing:7.296000pt;}
.ws23{word-spacing:7.333333pt;}
.ws144{word-spacing:7.344000pt;}
.ws30{word-spacing:7.392000pt;}
.wse1{word-spacing:7.509333pt;}
.ws11f{word-spacing:7.626667pt;}
.wsd5{word-spacing:7.685333pt;}
.ws145{word-spacing:7.728000pt;}
.wsfd{word-spacing:7.744000pt;}
.ws52{word-spacing:7.802667pt;}
.ws7f{word-spacing:7.861333pt;}
.ws122{word-spacing:7.920000pt;}
.ws146{word-spacing:7.968000pt;}
.ws131{word-spacing:7.978667pt;}
.ws80{word-spacing:8.037333pt;}
.ws46{word-spacing:8.096000pt;}
.ws11a{word-spacing:8.154667pt;}
.wse2{word-spacing:8.213333pt;}
.wsd{word-spacing:8.320000pt;}
.ws3c{word-spacing:8.330667pt;}
.ws6f{word-spacing:8.506667pt;}
.ws93{word-spacing:8.565333pt;}
.ws12f{word-spacing:8.800000pt;}
.ws112{word-spacing:8.858667pt;}
.wscb{word-spacing:9.269333pt;}
.wsa6{word-spacing:9.445333pt;}
.ws7b{word-spacing:9.621333pt;}
.ws87{word-spacing:9.680000pt;}
.ws13b{word-spacing:9.792000pt;}
.ws13c{word-spacing:9.840000pt;}
.wsfc{word-spacing:9.973333pt;}
.wsa8{word-spacing:10.208000pt;}
.ws101{word-spacing:10.325333pt;}
.wsce{word-spacing:10.677333pt;}
.wscf{word-spacing:10.794667pt;}
.ws132{word-spacing:10.912000pt;}
.ws100{word-spacing:11.029333pt;}
.ws11c{word-spacing:11.440000pt;}
.ws14b{word-spacing:11.477333pt;}
.ws110{word-spacing:11.557333pt;}
.ws11b{word-spacing:11.733333pt;}
.ws94{word-spacing:12.554667pt;}
.ws77{word-spacing:12.672000pt;}
.ws62{word-spacing:13.024000pt;}
.ws63{word-spacing:13.141333pt;}
.ws134{word-spacing:13.434667pt;}
.ws3a{word-spacing:14.373333pt;}
.ws3{word-spacing:14.560000pt;}
.ws9{word-spacing:14.933333pt;}
.ws102{word-spacing:15.840000pt;}
.wsd6{word-spacing:17.130667pt;}
.ws105{word-spacing:206.903467pt;}
.wsf2{word-spacing:212.428800pt;}
.wsf3{word-spacing:222.021867pt;}
.ws106{word-spacing:228.236800pt;}
.wsf1{word-spacing:233.762133pt;}
.ws104{word-spacing:249.570133pt;}
.ws10a{word-spacing:261.771733pt;}
.wsf0{word-spacing:264.688533pt;}
.ws108{word-spacing:267.305067pt;}
.wsf4{word-spacing:282.337067pt;}
.ws103{word-spacing:288.949867pt;}
.ws109{word-spacing:305.930133pt;}
.wsef{word-spacing:325.401600pt;}
.ws107{word-spacing:452.575467pt;}
._14{margin-left:-23.994667pt;}
._13{margin-left:-14.437333pt;}
._e{margin-left:-13.317333pt;}
._17{margin-left:-12.085333pt;}
._15{margin-left:-10.912000pt;}
._c{margin-left:-9.706667pt;}
._f{margin-left:-8.735467pt;}
._18{margin-left:-7.278933pt;}
._2{margin-left:-5.690667pt;}
._10{margin-left:-4.605333pt;}
._4{margin-left:-3.665067pt;}
._3{margin-left:-2.346667pt;}
._0{margin-left:-1.290667pt;}
._1{width:1.173333pt;}
._a{width:2.499200pt;}
._11{width:4.048000pt;}
._9{width:5.220267pt;}
._8{width:6.151467pt;}
._16{width:7.318933pt;}
._41{width:8.757333pt;}
._5{width:12.000000pt;}
._6{width:29.944533pt;}
._7{width:31.235733pt;}
._40{width:50.208000pt;}
._b{width:52.327467pt;}
._12{width:57.360000pt;}
._1a{width:75.033600pt;}
._1f{width:109.757333pt;}
._21{width:131.090667pt;}
._32{width:135.435200pt;}
._39{width:138.208000pt;}
._24{width:140.463467pt;}
._1b{width:142.610667pt;}
._29{width:150.497067pt;}
._23{width:151.620267pt;}
._2f{width:154.458133pt;}
._38{width:155.802133pt;}
._1d{width:162.017067pt;}
._1c{width:171.610133pt;}
._2c{width:173.757333pt;}
._37{width:177.135467pt;}
._33{width:179.752000pt;}
._20{width:183.350400pt;}
._34{width:188.654933pt;}
._26{width:192.943467pt;}
._2a{width:200.998933pt;}
._2d{width:204.462933pt;}
._22{width:210.592000pt;}
._35{width:216.117867pt;}
._27{width:217.908800pt;}
._3d{width:231.321600pt;}
._19{width:241.612267pt;}
._25{width:272.266133pt;}
._3f{width:277.373333pt;}
._30{width:278.649600pt;}
._1e{width:284.825600pt;}
._3a{width:287.457067pt;}
._36{width:312.373867pt;}
._28{width:399.812267pt;}
._2e{width:403.780267pt;}
._2b{width:411.118933pt;}
._3c{width:428.853333pt;}
._31{width:459.713600pt;}
._3b{width:480.693333pt;}
._3e{width:596.229867pt;}
._d{width:844.629333pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:19.508000pt;}
.y10e{bottom:37.606000pt;}
.y9{bottom:38.149200pt;}
.y8{bottom:52.815867pt;}
.y90{bottom:56.692933pt;}
.y67{bottom:58.817733pt;}
.yc1{bottom:58.943867pt;}
.yfe{bottom:60.905467pt;}
.y42{bottom:61.484400pt;}
.y100{bottom:62.240133pt;}
.y131{bottom:66.308400pt;}
.y7{bottom:67.482533pt;}
.y10d{bottom:70.470000pt;}
.yfd{bottom:71.573467pt;}
.y8f{bottom:72.692933pt;}
.yff{bottom:72.908133pt;}
.y66{bottom:77.484400pt;}
.yc0{bottom:77.610533pt;}
.y41{bottom:80.151067pt;}
.y130{bottom:80.975067pt;}
.y8e{bottom:88.692933pt;}
.y10c{bottom:95.800667pt;}
.y65{bottom:96.151067pt;}
.ybf{bottom:96.277200pt;}
.y40{bottom:98.817733pt;}
.y12f{bottom:102.975067pt;}
.y8d{bottom:104.692933pt;}
.y64{bottom:114.817733pt;}
.ybe{bottom:114.943867pt;}
.y3f{bottom:117.484400pt;}
.y12e{bottom:117.641733pt;}
.y10b{bottom:119.796667pt;}
.y8c{bottom:120.692933pt;}
.y63{bottom:133.484400pt;}
.ybd{bottom:133.610533pt;}
.y3e{bottom:136.151067pt;}
.y8b{bottom:136.692933pt;}
.yfc{bottom:136.860133pt;}
.y10a{bottom:143.792667pt;}
.y12d{bottom:146.975067pt;}
.yfb{bottom:147.528133pt;}
.y62{bottom:152.151067pt;}
.ybc{bottom:152.277200pt;}
.y8a{bottom:152.692933pt;}
.y3d{bottom:154.817733pt;}
.y12c{bottom:161.641733pt;}
.y109{bottom:167.788667pt;}
.y89{bottom:168.692933pt;}
.y69{bottom:170.817733pt;}
.ybb{bottom:170.943867pt;}
.y3c{bottom:173.484400pt;}
.y88{bottom:184.692933pt;}
.y61{bottom:189.484400pt;}
.yba{bottom:189.610533pt;}
.y12b{bottom:190.975067pt;}
.y108{bottom:191.784667pt;}
.yfa{bottom:192.076133pt;}
.y3b{bottom:192.151067pt;}
.y25{bottom:195.052800pt;}
.y87{bottom:200.692933pt;}
.y6{bottom:201.536933pt;}
.yf9{bottom:202.744133pt;}
.y68{bottom:208.151067pt;}
.yb9{bottom:208.277200pt;}
.y24{bottom:209.719467pt;}
.y3a{bottom:210.817733pt;}
.y107{bottom:215.780667pt;}
.yb1{bottom:219.423067pt;}
.y5{bottom:220.203600pt;}
.y106{bottom:220.272667pt;}
.y23{bottom:224.386133pt;}
.y60{bottom:226.817733pt;}
.yb8{bottom:226.943867pt;}
.y39{bottom:229.484400pt;}
.yf8{bottom:235.074800pt;}
.yb0{bottom:238.089733pt;}
.y22{bottom:239.052800pt;}
.y5f{bottom:245.484400pt;}
.yb7{bottom:245.610533pt;}
.yf7{bottom:245.742800pt;}
.y86{bottom:247.423067pt;}
.y38{bottom:248.151067pt;}
.y12a{bottom:248.756400pt;}
.y21{bottom:253.719467pt;}
.yaf{bottom:256.756400pt;}
.y105{bottom:263.793467pt;}
.y5e{bottom:264.151067pt;}
.yb6{bottom:264.277200pt;}
.y129{bottom:264.756400pt;}
.y85{bottom:266.089733pt;}
.y102{bottom:266.742800pt;}
.y37{bottom:266.817733pt;}
.y20{bottom:268.386133pt;}
.yf6{bottom:270.737467pt;}
.y93{bottom:273.484400pt;}
.yae{bottom:275.423067pt;}
.y101{bottom:277.410800pt;}
.y128{bottom:280.756400pt;}
.yf5{bottom:281.405467pt;}
.y5d{bottom:282.817733pt;}
.yb5{bottom:282.943867pt;}
.y1f{bottom:283.052800pt;}
.y84{bottom:284.756400pt;}
.y36{bottom:285.484400pt;}
.y104{bottom:287.789467pt;}
.yf4{bottom:291.308133pt;}
.y92{bottom:292.151067pt;}
.yef{bottom:293.070800pt;}
.yad{bottom:294.089733pt;}
.y4{bottom:294.870267pt;}
.y127{bottom:296.756400pt;}
.y1e{bottom:297.719467pt;}
.yf2{bottom:300.576133pt;}
.y5c{bottom:301.484400pt;}
.yb4{bottom:301.610533pt;}
.yf0{bottom:301.910800pt;}
.yf3{bottom:301.976133pt;}
.y83{bottom:303.423067pt;}
.y35{bottom:304.151067pt;}
.yf1{bottom:311.244133pt;}
.y103{bottom:311.785467pt;}
.y1d{bottom:312.386133pt;}
.yac{bottom:312.756400pt;}
.y5b{bottom:320.151067pt;}
.yb3{bottom:320.277200pt;}
.y82{bottom:322.089733pt;}
.y34{bottom:322.817733pt;}
.y3{bottom:324.203600pt;}
.y1c{bottom:327.052800pt;}
.y126{bottom:328.756400pt;}
.yab{bottom:331.423067pt;}
.yed{bottom:337.322800pt;}
.y5a{bottom:338.817733pt;}
.yb2{bottom:338.943867pt;}
.y81{bottom:340.756400pt;}
.y33{bottom:341.484400pt;}
.y1b{bottom:341.719467pt;}
.y125{bottom:344.756400pt;}
.yaa{bottom:350.089733pt;}
.yec{bottom:353.322800pt;}
.y1a{bottom:356.386133pt;}
.y59{bottom:357.484400pt;}
.y80{bottom:359.423067pt;}
.y32{bottom:360.151067pt;}
.y124{bottom:360.756400pt;}
.ya9{bottom:368.756400pt;}
.y19{bottom:371.052800pt;}
.y58{bottom:376.151067pt;}
.y123{bottom:376.756400pt;}
.y7f{bottom:378.089733pt;}
.y31{bottom:378.817733pt;}
.yd6{bottom:386.140800pt;}
.ya8{bottom:387.423067pt;}
.y2{bottom:390.870267pt;}
.y122{bottom:392.756400pt;}
.y57{bottom:394.817733pt;}
.y7e{bottom:396.756400pt;}
.y30{bottom:397.484400pt;}
.yeb{bottom:399.442133pt;}
.y18{bottom:400.386133pt;}
.ya7{bottom:406.089733pt;}
.y121{bottom:408.756400pt;}
.yd5{bottom:410.780667pt;}
.y56{bottom:413.484400pt;}
.y17{bottom:415.052800pt;}
.y7d{bottom:415.423067pt;}
.y2f{bottom:416.151067pt;}
.y1{bottom:420.203600pt;}
.yea{bottom:422.119200pt;}
.ya6{bottom:424.756400pt;}
.y16{bottom:429.719467pt;}
.y55{bottom:432.151067pt;}
.yd4{bottom:433.457867pt;}
.y7c{bottom:434.089733pt;}
.y2e{bottom:434.817733pt;}
.y120{bottom:440.756400pt;}
.ya5{bottom:443.423067pt;}
.y15{bottom:444.386133pt;}
.ye9{bottom:444.796400pt;}
.y54{bottom:450.817733pt;}
.y7b{bottom:452.756400pt;}
.y2d{bottom:453.484400pt;}
.yd3{bottom:456.135067pt;}
.y11f{bottom:456.756400pt;}
.y14{bottom:459.052800pt;}
.ya4{bottom:462.089733pt;}
.ye8{bottom:467.473600pt;}
.y53{bottom:469.484400pt;}
.y7a{bottom:471.423067pt;}
.y2c{bottom:472.151067pt;}
.y11e{bottom:472.756400pt;}
.y13{bottom:473.719467pt;}
.yd2{bottom:478.812133pt;}
.ya3{bottom:480.756400pt;}
.y52{bottom:488.151067pt;}
.y12{bottom:488.386133pt;}
.y11d{bottom:488.756400pt;}
.y79{bottom:490.089733pt;}
.ye7{bottom:490.150800pt;}
.ya2{bottom:499.423067pt;}
.yd1{bottom:501.489333pt;}
.y11{bottom:503.052800pt;}
.y11c{bottom:504.756400pt;}
.y51{bottom:506.817733pt;}
.y78{bottom:508.756400pt;}
.y2b{bottom:509.484400pt;}
.ye6{bottom:512.827867pt;}
.y10{bottom:517.719467pt;}
.ya1{bottom:518.089733pt;}
.y11b{bottom:520.756400pt;}
.yd0{bottom:524.166533pt;}
.y50{bottom:525.484400pt;}
.y77{bottom:527.423067pt;}
.yf{bottom:532.386133pt;}
.ye5{bottom:535.064133pt;}
.ya0{bottom:536.756400pt;}
.y4f{bottom:544.151067pt;}
.y76{bottom:546.089733pt;}
.ycf{bottom:546.402800pt;}
.ye{bottom:547.052800pt;}
.ye4{bottom:551.064133pt;}
.y11a{bottom:552.756400pt;}
.y9f{bottom:555.423067pt;}
.yd{bottom:561.719467pt;}
.yce{bottom:562.402800pt;}
.y4e{bottom:562.817733pt;}
.y75{bottom:564.756400pt;}
.y119{bottom:568.756400pt;}
.ye3{bottom:573.300400pt;}
.y9e{bottom:574.089733pt;}
.yc{bottom:576.386133pt;}
.y4d{bottom:581.484400pt;}
.y74{bottom:583.423067pt;}
.ycd{bottom:584.638933pt;}
.y118{bottom:584.756400pt;}
.yb{bottom:591.052800pt;}
.y9d{bottom:592.756400pt;}
.ye2{bottom:595.536667pt;}
.y4c{bottom:600.151067pt;}
.y117{bottom:600.756400pt;}
.y73{bottom:602.089733pt;}
.ycc{bottom:606.875200pt;}
.y9c{bottom:611.423067pt;}
.ye1{bottom:611.536667pt;}
.y116{bottom:616.756400pt;}
.y4b{bottom:618.817733pt;}
.y72{bottom:620.756400pt;}
.ycb{bottom:622.875200pt;}
.y2a{bottom:626.817733pt;}
.ya{bottom:627.719467pt;}
.y9b{bottom:630.089733pt;}
.y115{bottom:632.756400pt;}
.ye0{bottom:633.772800pt;}
.y4a{bottom:637.484400pt;}
.y71{bottom:639.423067pt;}
.yca{bottom:645.111333pt;}
.y91{bottom:646.817733pt;}
.y9a{bottom:648.756400pt;}
.y29{bottom:656.151067pt;}
.ydf{bottom:656.450000pt;}
.y70{bottom:658.089733pt;}
.y114{bottom:664.756400pt;}
.y99{bottom:667.423067pt;}
.yc9{bottom:667.788533pt;}
.y49{bottom:674.817733pt;}
.yde{bottom:675.914533pt;}
.y6f{bottom:676.756400pt;}
.y113{bottom:680.756400pt;}
.yda{bottom:683.914533pt;}
.y28{bottom:685.484400pt;}
.y98{bottom:686.089733pt;}
.yc8{bottom:689.583867pt;}
.ydd{bottom:691.914533pt;}
.y48{bottom:693.484400pt;}
.y6e{bottom:695.423067pt;}
.y112{bottom:696.756400pt;}
.yd9{bottom:699.914533pt;}
.y97{bottom:704.756400pt;}
.yc7{bottom:705.583867pt;}
.ydc{bottom:707.914533pt;}
.yd7{bottom:711.253067pt;}
.y47{bottom:712.151067pt;}
.y111{bottom:712.756400pt;}
.y6d{bottom:714.089733pt;}
.yd8{bottom:715.914533pt;}
.yc4{bottom:716.922400pt;}
.yc6{bottom:721.583867pt;}
.y96{bottom:723.423067pt;}
.ydb{bottom:723.914533pt;}
.y110{bottom:728.756400pt;}
.y46{bottom:730.817733pt;}
.y6c{bottom:732.756400pt;}
.y95{bottom:742.089733pt;}
.yc5{bottom:743.379067pt;}
.y10f{bottom:744.756400pt;}
.y45{bottom:749.484400pt;}
.y6b{bottom:751.423067pt;}
.y27{bottom:757.484400pt;}
.y94{bottom:760.756400pt;}
.y44{bottom:768.151067pt;}
.yc3{bottom:773.416400pt;}
.y26{bottom:786.817733pt;}
.y6a{bottom:788.756400pt;}
.yc2{bottom:789.416400pt;}
.y43{bottom:828.106667pt;}
.h11{height:28.186667pt;}
.hf{height:28.485333pt;}
.hd{height:29.568000pt;}
.ha{height:32.554667pt;}
.hc{height:32.725333pt;}
.h9{height:33.600000pt;}
.h5{height:34.645333pt;}
.h7{height:35.285333pt;}
.hb{height:36.624000pt;}
.h6{height:38.976000pt;}
.h8{height:39.984000pt;}
.h4{height:43.306667pt;}
.h2{height:47.637333pt;}
.he{height:64.554667pt;}
.h3{height:70.570667pt;}
.h10{height:300.806667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w2{width:453.544000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x11{left:37.795333pt;}
.xf{left:75.590533pt;}
.x31{left:76.812133pt;}
.x18{left:85.007600pt;}
.x30{left:89.169467pt;}
.x10{left:98.267733pt;}
.x7{left:101.495467pt;}
.x4{left:110.012800pt;}
.x16{left:113.385867pt;}
.x2f{left:115.666800pt;}
.x3{left:117.298133pt;}
.x17{left:118.722133pt;}
.x33{left:124.001467pt;}
.x32{left:124.934800pt;}
.x38{left:126.474133pt;}
.x2a{left:129.433467pt;}
.xc{left:149.745867pt;}
.x2e{left:150.825467pt;}
.x12{left:153.089867pt;}
.xa{left:170.078800pt;}
.xb{left:177.350533pt;}
.x14{left:184.481333pt;}
.x2d{left:186.450800pt;}
.x2c{left:187.850800pt;}
.x8{left:188.800800pt;}
.x9{left:196.644000pt;}
.x1{left:201.655333pt;}
.x2b{left:203.157467pt;}
.xd{left:204.934000pt;}
.x1a{left:207.657200pt;}
.x25{left:209.417067pt;}
.x5{left:218.143733pt;}
.x19{left:221.555733pt;}
.x15{left:224.885200pt;}
.x2{left:237.368000pt;}
.x13{left:243.539067pt;}
.x6{left:251.748000pt;}
.xe{left:255.898800pt;}
.x39{left:260.794800pt;}
.x24{left:273.347867pt;}
.x35{left:281.193467pt;}
.x34{left:282.593467pt;}
.x1c{left:287.969600pt;}
.x1d{left:290.806800pt;}
.x1b{left:294.460133pt;}
.x26{left:296.908133pt;}
.x27{left:298.956133pt;}
.x37{left:303.282400pt;}
.x1f{left:371.119200pt;}
.x20{left:373.956400pt;}
.x36{left:378.876133pt;}
.x1e{left:380.521733pt;}
.x28{left:381.822933pt;}
.x29{left:383.876267pt;}
.x22{left:454.268800pt;}
.x23{left:457.106000pt;}
.x21{left:466.327333pt;}
}




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