
    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_f46fd5318a83d09504be0540.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9e3213608b67b3117b2ecc75.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_90c74786625819fdce46dc4b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e55379ed26b3e5c212b5b71c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_015eaeff0c9efe7efaafa756.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7780a4fde8c649e25ab7299f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5f32b7f08d38d75a7adcebd.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_810f0e94acc7e936dd176bb7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_02207b7839c9b41befba45ad.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_621ef1a7e81cc57ea10f266b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_be48e114b684ce2c6c1fa068.woff')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_46234e89086e2204a1b07255.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0aa7e93e8542750c74fbbf02.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_399e87ae6985bbc5414db51c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9eda4fba337c92b9a5e11472.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9e3213608b67b3117b2ecc75.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_47ec6390ce2a13a7b2b1affa.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b6ddc7f075a1eab1a5bff4ac.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_525c2ea9acf0bb1dbd20c49d.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_525ad1f713db90c4eb319f13.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_338ee40d6fdff0403c011688.woff')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.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:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.176000px;}
.ls7{letter-spacing:-3.455052px;}
.lsb{letter-spacing:-3.240000px;}
.ls6{letter-spacing:-1.518000px;}
.ls16{letter-spacing:-1.140000px;}
.lsa{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-1.077384px;}
.ls13{letter-spacing:-1.000428px;}
.lsf{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.461736px;}
.ls15{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.192390px;}
.ls14{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.066000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000036px;}
.ls5{letter-spacing:0.000186px;}
.lse{letter-spacing:0.192390px;}
.ls17{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.428985px;}
.ls2{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls4{letter-spacing:9.590400px;}
.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;}
}
.wsa0{word-spacing:-18.414000px;}
.ws8b{word-spacing:-18.216000px;}
.ws10f{word-spacing:-16.980000px;}
.ws13{word-spacing:-16.896000px;}
.ws2{word-spacing:-16.740000px;}
.wsfe{word-spacing:-16.560000px;}
.ws107{word-spacing:-16.320000px;}
.ws108{word-spacing:-15.420000px;}
.ws1{word-spacing:-15.066000px;}
.ws0{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.100000px;}
.ws8c{word-spacing:-13.986000px;}
.ws3{word-spacing:-13.446000px;}
.ws4{word-spacing:-13.284000px;}
.ws8d{word-spacing:-11.826000px;}
.wsa1{word-spacing:-10.927752px;}
.ws15{word-spacing:-10.735362px;}
.wsc2{word-spacing:-10.542972px;}
.ws77{word-spacing:-10.273626px;}
.wsd4{word-spacing:-9.734934px;}
.ws14{word-spacing:-9.686400px;}
.wsb3{word-spacing:-9.657978px;}
.wse4{word-spacing:-9.372000px;}
.wsee{word-spacing:-7.458000px;}
.wsd5{word-spacing:-6.798000px;}
.wsd8{word-spacing:-6.600000px;}
.ws5a{word-spacing:-4.686000px;}
.ws1f{word-spacing:-4.620000px;}
.ws83{word-spacing:-4.554000px;}
.ws3a{word-spacing:-4.290000px;}
.ws10b{word-spacing:-4.140000px;}
.wsad{word-spacing:-4.092000px;}
.ws65{word-spacing:-4.026000px;}
.wsce{word-spacing:-3.960000px;}
.wsc5{word-spacing:-3.828000px;}
.ws40{word-spacing:-3.762000px;}
.ws36{word-spacing:-3.630000px;}
.ws20{word-spacing:-3.564000px;}
.ws92{word-spacing:-3.498000px;}
.ws93{word-spacing:-3.432000px;}
.wsb2{word-spacing:-3.366000px;}
.ws6d{word-spacing:-3.300000px;}
.wsc3{word-spacing:-3.234000px;}
.ws23{word-spacing:-3.102000px;}
.ws59{word-spacing:-3.036000px;}
.ws61{word-spacing:-2.970000px;}
.wsc9{word-spacing:-2.904000px;}
.wsf7{word-spacing:-2.880000px;}
.ws6f{word-spacing:-2.838000px;}
.wsf0{word-spacing:-2.772000px;}
.ws82{word-spacing:-2.640000px;}
.wse{word-spacing:-2.592000px;}
.wsb0{word-spacing:-2.574000px;}
.ws110{word-spacing:-2.520000px;}
.wsc0{word-spacing:-2.508000px;}
.ws2e{word-spacing:-2.484000px;}
.ws1c{word-spacing:-2.442000px;}
.ws5b{word-spacing:-2.310000px;}
.wsc1{word-spacing:-2.244000px;}
.wsb7{word-spacing:-2.100000px;}
.ws18{word-spacing:-2.046000px;}
.ws73{word-spacing:-1.920000px;}
.ws91{word-spacing:-1.914000px;}
.wse1{word-spacing:-1.860000px;}
.ws19{word-spacing:-1.848000px;}
.ws30{word-spacing:-1.782000px;}
.ws1e{word-spacing:-1.716000px;}
.ws71{word-spacing:-1.620000px;}
.wse6{word-spacing:-1.584000px;}
.wseb{word-spacing:-1.566000px;}
.wsf6{word-spacing:-1.560000px;}
.wsc7{word-spacing:-1.518000px;}
.wsec{word-spacing:-1.458000px;}
.wsca{word-spacing:-1.452000px;}
.ws57{word-spacing:-1.386000px;}
.ws70{word-spacing:-1.320000px;}
.wscb{word-spacing:-1.188000px;}
.ws105{word-spacing:-1.140000px;}
.ws9c{word-spacing:-1.122000px;}
.ws116{word-spacing:-1.080000px;}
.ws79{word-spacing:-1.056000px;}
.ws74{word-spacing:-1.020000px;}
.wsef{word-spacing:-0.924000px;}
.wsd0{word-spacing:-0.858000px;}
.wsa3{word-spacing:-0.792000px;}
.ws7f{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.600000px;}
.ws21{word-spacing:-0.594000px;}
.ws9f{word-spacing:-0.540000px;}
.wsac{word-spacing:-0.528000px;}
.wsb8{word-spacing:-0.480000px;}
.ws31{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.396000px;}
.ws8e{word-spacing:-0.330000px;}
.ws10c{word-spacing:-0.300000px;}
.wsd3{word-spacing:-0.216000px;}
.ws26{word-spacing:-0.132000px;}
.ws4b{word-spacing:-0.120000px;}
.ws85{word-spacing:-0.108000px;}
.wsf9{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws10e{word-spacing:0.060000px;}
.ws49{word-spacing:0.066000px;}
.wsfa{word-spacing:0.120000px;}
.wsf1{word-spacing:0.198000px;}
.ws4d{word-spacing:0.240000px;}
.wsa7{word-spacing:0.264000px;}
.ws44{word-spacing:0.324000px;}
.ws41{word-spacing:0.396000px;}
.wsfc{word-spacing:0.420000px;}
.wsbc{word-spacing:0.462000px;}
.wsd7{word-spacing:0.594000px;}
.ws17{word-spacing:0.660000px;}
.wsff{word-spacing:0.780000px;}
.ws3d{word-spacing:0.858000px;}
.wsb4{word-spacing:0.900000px;}
.wscf{word-spacing:0.924000px;}
.wsaf{word-spacing:0.990000px;}
.ws72{word-spacing:1.020000px;}
.ws62{word-spacing:1.056000px;}
.wsa6{word-spacing:1.122000px;}
.wsfb{word-spacing:1.200000px;}
.ws4a{word-spacing:1.254000px;}
.ws117{word-spacing:1.260000px;}
.ws32{word-spacing:1.320000px;}
.ws111{word-spacing:1.380000px;}
.wsd6{word-spacing:1.386000px;}
.ws6c{word-spacing:1.452000px;}
.ws87{word-spacing:1.458000px;}
.ws9e{word-spacing:1.512000px;}
.wsc6{word-spacing:1.518000px;}
.ws43{word-spacing:1.620000px;}
.ws1a{word-spacing:1.650000px;}
.ws60{word-spacing:1.716000px;}
.wse2{word-spacing:1.740000px;}
.ws86{word-spacing:1.782000px;}
.wsc4{word-spacing:1.914000px;}
.wsb6{word-spacing:1.920000px;}
.ws88{word-spacing:1.944000px;}
.ws28{word-spacing:1.980000px;}
.ws84{word-spacing:1.998000px;}
.wsdd{word-spacing:2.046000px;}
.ws7{word-spacing:2.106000px;}
.ws48{word-spacing:2.112000px;}
.wsa9{word-spacing:2.178000px;}
.wsa8{word-spacing:2.244000px;}
.ws10d{word-spacing:2.280000px;}
.ws6b{word-spacing:2.310000px;}
.ws2a{word-spacing:2.376000px;}
.wsfd{word-spacing:2.400000px;}
.wse8{word-spacing:2.442000px;}
.ws4c{word-spacing:2.520000px;}
.wsed{word-spacing:2.640000px;}
.ws5f{word-spacing:2.706000px;}
.ws89{word-spacing:2.754000px;}
.ws29{word-spacing:2.772000px;}
.wsdb{word-spacing:2.880000px;}
.ws5c{word-spacing:2.904000px;}
.ws78{word-spacing:2.970000px;}
.ws119{word-spacing:3.000000px;}
.ws34{word-spacing:3.036000px;}
.ws100{word-spacing:3.060000px;}
.wsbf{word-spacing:3.102000px;}
.ws58{word-spacing:3.234000px;}
.wse3{word-spacing:3.240000px;}
.wscc{word-spacing:3.300000px;}
.ws2f{word-spacing:3.348000px;}
.ws8f{word-spacing:3.366000px;}
.ws16{word-spacing:3.455052px;}
.ws8a{word-spacing:3.456000px;}
.ws76{word-spacing:3.540000px;}
.wsda{word-spacing:3.564000px;}
.ws75{word-spacing:3.600000px;}
.wsc8{word-spacing:3.630000px;}
.ws106{word-spacing:3.660000px;}
.ws5d{word-spacing:3.696000px;}
.ws5e{word-spacing:3.762000px;}
.ws101{word-spacing:3.780000px;}
.wsa5{word-spacing:3.828000px;}
.ws63{word-spacing:3.960000px;}
.wsb{word-spacing:3.996000px;}
.ws90{word-spacing:4.026000px;}
.ws94{word-spacing:4.158000px;}
.wsf8{word-spacing:4.200000px;}
.ws95{word-spacing:4.224000px;}
.wsb5{word-spacing:4.260000px;}
.ws9d{word-spacing:4.356000px;}
.ws7e{word-spacing:4.488000px;}
.ws98{word-spacing:4.554000px;}
.ws50{word-spacing:4.686000px;}
.wsdc{word-spacing:4.740000px;}
.wsab{word-spacing:4.752000px;}
.wsdf{word-spacing:4.800000px;}
.ws1d{word-spacing:4.818000px;}
.ws118{word-spacing:4.860000px;}
.wscd{word-spacing:4.950000px;}
.wsf{word-spacing:4.968000px;}
.ws113{word-spacing:5.100000px;}
.wse5{word-spacing:5.148000px;}
.wsbb{word-spacing:5.280000px;}
.ws81{word-spacing:5.346000px;}
.ws39{word-spacing:5.412000px;}
.ws46{word-spacing:5.478000px;}
.wsde{word-spacing:5.520000px;}
.ws80{word-spacing:5.544000px;}
.ws64{word-spacing:5.610000px;}
.wsae{word-spacing:5.676000px;}
.ws54{word-spacing:5.874000px;}
.ws55{word-spacing:5.940000px;}
.wsa{word-spacing:5.994000px;}
.ws7b{word-spacing:6.006000px;}
.ws6{word-spacing:6.048000px;}
.ws96{word-spacing:6.072000px;}
.ws2b{word-spacing:6.204000px;}
.ws56{word-spacing:6.270000px;}
.ws22{word-spacing:6.336000px;}
.ws45{word-spacing:6.402000px;}
.wse0{word-spacing:6.420000px;}
.ws25{word-spacing:6.468000px;}
.ws9b{word-spacing:6.534000px;}
.ws27{word-spacing:6.600000px;}
.ws37{word-spacing:6.798000px;}
.ws9{word-spacing:6.912000px;}
.ws24{word-spacing:7.128000px;}
.wsd2{word-spacing:7.326000px;}
.ws35{word-spacing:7.392000px;}
.ws112{word-spacing:7.440000px;}
.ws68{word-spacing:7.458000px;}
.ws7a{word-spacing:7.524000px;}
.ws4f{word-spacing:7.722000px;}
.ws99{word-spacing:7.788000px;}
.ws103{word-spacing:7.980000px;}
.ws102{word-spacing:8.040000px;}
.ws3b{word-spacing:8.052000px;}
.ws52{word-spacing:8.184000px;}
.ws47{word-spacing:8.250000px;}
.wsa4{word-spacing:8.382000px;}
.ws7d{word-spacing:8.646000px;}
.ws4e{word-spacing:8.712000px;}
.ws3c{word-spacing:8.844000px;}
.ws6a{word-spacing:9.108000px;}
.wsc{word-spacing:9.126000px;}
.ws6e{word-spacing:9.240000px;}
.ws38{word-spacing:9.306000px;}
.wsb9{word-spacing:9.372000px;}
.ws2c{word-spacing:9.438000px;}
.wsaa{word-spacing:9.636000px;}
.ws69{word-spacing:9.702000px;}
.ws9a{word-spacing:10.032000px;}
.wsd{word-spacing:10.098000px;}
.wsf2{word-spacing:10.230000px;}
.ws11{word-spacing:10.530000px;}
.wsea{word-spacing:10.692000px;}
.wsd9{word-spacing:10.758000px;}
.ws3f{word-spacing:10.824000px;}
.wse7{word-spacing:10.890000px;}
.ws3e{word-spacing:10.956000px;}
.ws33{word-spacing:11.088000px;}
.wsb1{word-spacing:11.550000px;}
.ws10{word-spacing:11.772000px;}
.wsf4{word-spacing:12.078000px;}
.wsbe{word-spacing:12.144000px;}
.wsf3{word-spacing:12.276000px;}
.ws53{word-spacing:12.540000px;}
.ws2d{word-spacing:13.068000px;}
.ws97{word-spacing:13.200000px;}
.wsbd{word-spacing:13.266000px;}
.wsba{word-spacing:13.332000px;}
.wsd1{word-spacing:13.794000px;}
.ws7c{word-spacing:14.388000px;}
.wsa2{word-spacing:15.246000px;}
.ws42{word-spacing:15.312000px;}
.ws51{word-spacing:16.632000px;}
.ws114{word-spacing:17.700000px;}
.ws109{word-spacing:18.120000px;}
.ws10a{word-spacing:18.180000px;}
.ws66{word-spacing:20.988000px;}
.ws67{word-spacing:21.252000px;}
.wsf5{word-spacing:21.714000px;}
.ws104{word-spacing:21.960000px;}
.wse9{word-spacing:33.000000px;}
.ws115{word-spacing:44.340000px;}
._11{margin-left:-27.000000px;}
._9{margin-left:-9.590400px;}
._16{margin-left:-7.904445px;}
._4{margin-left:-6.895657px;}
._3{margin-left:-5.194552px;}
._7{margin-left:-4.120200px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._6{width:3.534720px;}
._b{width:4.572254px;}
._8{width:6.290752px;}
._12{width:7.305495px;}
._e{width:8.362800px;}
._d{width:9.473647px;}
._10{width:10.676295px;}
._c{width:11.934000px;}
._f{width:13.687800px;}
._5{width:14.742000px;}
._14{width:17.868000px;}
._15{width:19.001648px;}
._13{width:21.409448px;}
._a{width:33.000000px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs9{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y27{bottom:15.700200px;}
.y2a{bottom:17.983350px;}
.y2b{bottom:30.614100px;}
.y26{bottom:36.700200px;}
.y2{bottom:42.949800px;}
.ya{bottom:53.999400px;}
.y2c{bottom:55.288350px;}
.y25{bottom:57.700200px;}
.y9{bottom:70.199400px;}
.y24{bottom:78.700200px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.yb9{bottom:170.078700px;}
.y11c{bottom:170.081700px;}
.y155{bottom:170.090700px;}
.y78{bottom:170.093700px;}
.y53{bottom:170.096700px;}
.y104{bottom:170.102700px;}
.ye4{bottom:170.132700px;}
.y196{bottom:173.432400px;}
.y11b{bottom:186.578700px;}
.y154{bottom:186.587700px;}
.y77{bottom:186.590700px;}
.y52{bottom:186.593700px;}
.y103{bottom:186.599700px;}
.ye3{bottom:186.629700px;}
.y214{bottom:187.010400px;}
.y195{bottom:195.938400px;}
.y1db{bottom:197.510400px;}
.y153{bottom:203.084700px;}
.y76{bottom:203.087700px;}
.y51{bottom:203.090700px;}
.y102{bottom:203.096700px;}
.ye2{bottom:203.126700px;}
.y9a{bottom:203.468400px;}
.y1f3{bottom:208.009350px;}
.y207{bottom:208.010400px;}
.y1b8{bottom:208.535400px;}
.y194{bottom:218.444400px;}
.y1da{bottom:218.510400px;}
.y152{bottom:219.581700px;}
.y75{bottom:219.584700px;}
.y50{bottom:219.587700px;}
.y101{bottom:219.593700px;}
.ye1{bottom:219.623700px;}
.y99{bottom:225.974400px;}
.y1f2{bottom:229.009350px;}
.y206{bottom:229.010400px;}
.y1b7{bottom:229.535400px;}
.y151{bottom:236.078700px;}
.y74{bottom:236.081700px;}
.y4f{bottom:236.084700px;}
.y100{bottom:236.090700px;}
.ye0{bottom:236.120700px;}
.y213{bottom:239.510400px;}
.y193{bottom:240.950400px;}
.y98{bottom:248.480400px;}
.y1d9{bottom:250.010400px;}
.y172{bottom:250.083900px;}
.y1b6{bottom:250.535400px;}
.y13d{bottom:251.490900px;}
.y73{bottom:252.578700px;}
.y4e{bottom:252.581700px;}
.yff{bottom:252.587700px;}
.ydf{bottom:252.617700px;}
.y1f1{bottom:260.509350px;}
.y212{bottom:260.510400px;}
.y11a{bottom:263.583900px;}
.y4d{bottom:269.078700px;}
.yfe{bottom:269.084700px;}
.yde{bottom:269.114700px;}
.y97{bottom:270.986400px;}
.y1d8{bottom:271.010400px;}
.yb8{bottom:271.535400px;}
.y171{bottom:272.589900px;}
.y13c{bottom:273.996900px;}
.y1f0{bottom:281.509350px;}
.y205{bottom:281.510400px;}
.y1b5{bottom:282.035400px;}
.yfd{bottom:285.581700px;}
.ydd{bottom:285.611700px;}
.y192{bottom:285.945900px;}
.y119{bottom:286.089900px;}
.y1d7{bottom:292.010400px;}
.yb7{bottom:292.535400px;}
.y96{bottom:293.492400px;}
.y170{bottom:295.095900px;}
.yfc{bottom:302.078700px;}
.ydc{bottom:302.108700px;}
.y1ef{bottom:302.509350px;}
.y204{bottom:302.510400px;}
.y1b4{bottom:303.035400px;}
.y191{bottom:308.451900px;}
.y150{bottom:308.496900px;}
.y118{bottom:308.595900px;}
.y188{bottom:309.990900px;}
.y1d6{bottom:313.010400px;}
.yb6{bottom:313.535400px;}
.y95{bottom:315.998400px;}
.y72{bottom:316.101900px;}
.y16f{bottom:317.601900px;}
.ydb{bottom:318.605700px;}
.y13b{bottom:318.992400px;}
.y203{bottom:323.510400px;}
.y1b3{bottom:324.035400px;}
.y190{bottom:330.957900px;}
.y14f{bottom:331.002900px;}
.y117{bottom:331.101900px;}
.y187{bottom:332.496900px;}
.y1ee{bottom:334.009350px;}
.y211{bottom:334.010400px;}
.yb5{bottom:334.535400px;}
.yda{bottom:335.102700px;}
.y94{bottom:338.504400px;}
.y71{bottom:338.594400px;}
.y16e{bottom:340.107900px;}
.y13a{bottom:341.498400px;}
.y1d5{bottom:344.510400px;}
.y1b2{bottom:345.035400px;}
.y4c{bottom:346.436400px;}
.yd9{bottom:351.599700px;}
.y18f{bottom:353.463900px;}
.y14e{bottom:353.508900px;}
.y116{bottom:353.526900px;}
.y1ed{bottom:355.009350px;}
.y210{bottom:355.010400px;}
.yb4{bottom:355.535400px;}
.y93{bottom:361.010400px;}
.y139{bottom:364.004400px;}
.y1d4{bottom:365.510400px;}
.y1b1{bottom:366.035400px;}
.yd8{bottom:368.096700px;}
.y4b{bottom:368.942400px;}
.y18e{bottom:375.969900px;}
.y1ec{bottom:376.009350px;}
.y202{bottom:376.010400px;}
.y14d{bottom:376.014900px;}
.yb3{bottom:376.535400px;}
.y186{bottom:377.492400px;}
.y92{bottom:383.516400px;}
.yfb{bottom:383.570400px;}
.y70{bottom:383.589900px;}
.yd7{bottom:384.593700px;}
.y16d{bottom:385.107900px;}
.y138{bottom:386.478900px;}
.y1d3{bottom:386.510400px;}
.y4a{bottom:391.448400px;}
.y201{bottom:397.010400px;}
.yb2{bottom:397.535400px;}
.y18d{bottom:398.475900px;}
.y14c{bottom:398.520900px;}
.y115{bottom:398.522400px;}
.y185{bottom:399.998400px;}
.yd6{bottom:401.090700px;}
.y91{bottom:406.022400px;}
.yfa{bottom:406.076400px;}
.y6f{bottom:406.095900px;}
.y16c{bottom:406.107900px;}
.y1eb{bottom:407.509350px;}
.y1d2{bottom:407.510400px;}
.y137{bottom:408.984900px;}
.y21{bottom:413.162400px;}
.y49{bottom:413.954400px;}
.yd5{bottom:417.587700px;}
.y200{bottom:418.010400px;}
.yb1{bottom:418.535400px;}
.y18c{bottom:420.981900px;}
.y14b{bottom:421.026900px;}
.y114{bottom:421.028400px;}
.y184{bottom:422.504400px;}
.y16b{bottom:427.107900px;}
.y1ea{bottom:428.509350px;}
.y20f{bottom:428.510400px;}
.y90{bottom:428.528400px;}
.y6e{bottom:428.601900px;}
.y20{bottom:429.659400px;}
.y136{bottom:431.490900px;}
.yd4{bottom:434.084700px;}
.y48{bottom:436.460400px;}
.y1d1{bottom:439.010400px;}
.yb0{bottom:439.535400px;}
.y14a{bottom:443.532900px;}
.y113{bottom:443.534400px;}
.y183{bottom:445.010400px;}
.y16a{bottom:448.107900px;}
.y1e9{bottom:449.509350px;}
.y1ff{bottom:449.510400px;}
.yd3{bottom:450.581700px;}
.y1f{bottom:450.665400px;}
.y8f{bottom:451.034400px;}
.yf9{bottom:451.071900px;}
.y6d{bottom:451.107900px;}
.y135{bottom:453.996900px;}
.y1d0{bottom:460.010400px;}
.yaf{bottom:460.535400px;}
.y18b{bottom:465.977400px;}
.y112{bottom:466.040400px;}
.yd2{bottom:467.078700px;}
.y1e{bottom:467.162400px;}
.y169{bottom:469.107900px;}
.y1fe{bottom:470.510400px;}
.yf8{bottom:473.577900px;}
.y1e8{bottom:481.009350px;}
.y1cf{bottom:481.010400px;}
.y47{bottom:481.455900px;}
.y1b0{bottom:481.535400px;}
.y1d{bottom:483.659400px;}
.y18a{bottom:488.483400px;}
.y149{bottom:488.528400px;}
.y111{bottom:488.546400px;}
.y182{bottom:490.010400px;}
.y168{bottom:490.107900px;}
.y20e{bottom:491.510400px;}
.y8e{bottom:496.029900px;}
.yf7{bottom:496.083900px;}
.y6c{bottom:496.107900px;}
.y134{bottom:498.992400px;}
.y1c{bottom:500.156400px;}
.y1e7{bottom:502.009350px;}
.y1ce{bottom:502.010400px;}
.yae{bottom:503.949900px;}
.y46{bottom:503.961900px;}
.y189{bottom:510.989400px;}
.y148{bottom:511.034400px;}
.y110{bottom:511.052400px;}
.y1af{bottom:513.035400px;}
.y8d{bottom:518.535900px;}
.yf6{bottom:518.589900px;}
.y133{bottom:521.498400px;}
.y1fd{bottom:523.010400px;}
.yad{bottom:526.455900px;}
.y45{bottom:526.467900px;}
.y167{bottom:533.495400px;}
.y1e6{bottom:533.509350px;}
.y1cd{bottom:533.510400px;}
.y147{bottom:533.540400px;}
.y10f{bottom:533.558400px;}
.yd1{bottom:533.588400px;}
.y1b{bottom:533.906400px;}
.y1ae{bottom:534.035400px;}
.y8c{bottom:541.041900px;}
.yf5{bottom:541.095900px;}
.y132{bottom:544.004400px;}
.y20d{bottom:544.010400px;}
.yac{bottom:548.961900px;}
.y44{bottom:548.973900px;}
.y1a{bottom:551.159400px;}
.y1e5{bottom:554.509350px;}
.y1cc{bottom:554.510400px;}
.y1ad{bottom:555.035400px;}
.y166{bottom:556.001400px;}
.y146{bottom:556.046400px;}
.y10e{bottom:556.064400px;}
.yd0{bottom:556.094400px;}
.y8b{bottom:563.547900px;}
.yf4{bottom:563.601900px;}
.y20c{bottom:565.010400px;}
.y131{bottom:566.510400px;}
.yab{bottom:571.467900px;}
.y19{bottom:572.165400px;}
.y181{bottom:572.426400px;}
.y1cb{bottom:575.510400px;}
.y1ac{bottom:576.035400px;}
.y165{bottom:578.507400px;}
.y145{bottom:578.552400px;}
.y6b{bottom:578.553900px;}
.y10d{bottom:578.570400px;}
.ycf{bottom:578.600400px;}
.y1e4{bottom:586.009350px;}
.y8a{bottom:586.053900px;}
.yf3{bottom:586.095900px;}
.y18{bottom:589.418400px;}
.y43{bottom:593.969400px;}
.yaa{bottom:593.973900px;}
.y180{bottom:594.932400px;}
.y20b{bottom:596.510400px;}
.y164{bottom:601.013400px;}
.y6a{bottom:601.059900px;}
.y10c{bottom:601.076400px;}
.yce{bottom:601.106400px;}
.y17{bottom:606.671400px;}
.y1e3{bottom:607.009350px;}
.y1ca{bottom:607.010400px;}
.y1ab{bottom:607.535400px;}
.y89{bottom:608.559900px;}
.yf2{bottom:608.601900px;}
.y130{bottom:611.510400px;}
.y42{bottom:616.475400px;}
.ya9{bottom:616.479900px;}
.y17f{bottom:617.438400px;}
.y20a{bottom:617.510400px;}
.y163{bottom:623.519400px;}
.y144{bottom:623.547900px;}
.y69{bottom:623.565900px;}
.y10b{bottom:623.582400px;}
.ycd{bottom:623.612400px;}
.y16{bottom:623.924400px;}
.y1e2{bottom:628.009350px;}
.y1c9{bottom:628.010400px;}
.y1aa{bottom:628.535400px;}
.y88{bottom:631.065900px;}
.yf1{bottom:631.107900px;}
.y209{bottom:638.510400px;}
.y41{bottom:638.981400px;}
.ya8{bottom:638.985900px;}
.y17e{bottom:639.944400px;}
.y15{bottom:641.177400px;}
.y143{bottom:646.053900px;}
.y68{bottom:646.071900px;}
.y10a{bottom:646.088400px;}
.y12f{bottom:649.010400px;}
.y1a9{bottom:649.535400px;}
.y87{bottom:653.571900px;}
.y1c8{bottom:659.510400px;}
.y40{bottom:661.487400px;}
.y17d{bottom:662.450400px;}
.y162{bottom:668.514900px;}
.ycc{bottom:668.547900px;}
.y142{bottom:668.559900px;}
.y67{bottom:668.577900px;}
.y109{bottom:668.594400px;}
.y1fc{bottom:670.010400px;}
.y1e1{bottom:671.509350px;}
.y86{bottom:676.077900px;}
.yf0{bottom:676.107900px;}
.y1c7{bottom:680.510400px;}
.y1a8{bottom:681.035400px;}
.ya7{bottom:683.981400px;}
.y3f{bottom:683.993400px;}
.y17c{bottom:684.956400px;}
.y1fb{bottom:691.010400px;}
.y161{bottom:691.020900px;}
.ycb{bottom:691.053900px;}
.y141{bottom:691.065900px;}
.y66{bottom:691.083900px;}
.y14{bottom:695.430750px;}
.y85{bottom:698.583900px;}
.y1c6{bottom:701.510400px;}
.y1a7{bottom:702.035400px;}
.ya6{bottom:706.487400px;}
.y3e{bottom:706.499400px;}
.y17b{bottom:707.462400px;}
.y208{bottom:712.010400px;}
.y160{bottom:713.526900px;}
.yca{bottom:713.559900px;}
.y140{bottom:713.571900px;}
.y65{bottom:713.589900px;}
.y13{bottom:716.430750px;}
.y84{bottom:721.089900px;}
.y1fa{bottom:722.510400px;}
.ya5{bottom:728.993400px;}
.y3d{bottom:729.005400px;}
.y17a{bottom:729.968400px;}
.y12e{bottom:731.490900px;}
.y1c5{bottom:733.010400px;}
.y1a6{bottom:733.535400px;}
.y15f{bottom:736.032900px;}
.yc9{bottom:736.065900px;}
.y13f{bottom:736.077900px;}
.y64{bottom:736.095900px;}
.y12{bottom:737.430750px;}
.y23{bottom:741.738900px;}
.y1f9{bottom:743.510400px;}
.y83{bottom:743.595900px;}
.ya4{bottom:751.499400px;}
.y3c{bottom:751.511400px;}
.y179{bottom:752.474400px;}
.y12d{bottom:753.996900px;}
.y1c4{bottom:754.010400px;}
.y1a5{bottom:754.535400px;}
.y11{bottom:758.430750px;}
.y15e{bottom:758.538900px;}
.yc8{bottom:758.571900px;}
.yef{bottom:758.583900px;}
.y63{bottom:758.601900px;}
.y22{bottom:761.232900px;}
.y1e0{bottom:764.510400px;}
.y82{bottom:766.101900px;}
.ya3{bottom:774.005400px;}
.y3b{bottom:774.017400px;}
.y178{bottom:774.980400px;}
.y1c3{bottom:775.010400px;}
.y12c{bottom:776.502900px;}
.y108{bottom:781.028400px;}
.y62{bottom:781.044900px;}
.yc7{bottom:781.077900px;}
.yee{bottom:781.089900px;}
.y1df{bottom:785.510400px;}
.y1a4{bottom:786.035400px;}
.y81{bottom:788.607900px;}
.y1f8{bottom:796.010400px;}
.ya2{bottom:796.511400px;}
.y3a{bottom:796.523400px;}
.y177{bottom:797.486400px;}
.y107{bottom:803.534400px;}
.y15d{bottom:803.550900px;}
.yc6{bottom:803.583900px;}
.yed{bottom:803.595900px;}
.y1c2{bottom:806.510400px;}
.y1a3{bottom:807.035400px;}
.y1f7{bottom:817.010400px;}
.ya1{bottom:819.017400px;}
.y39{bottom:819.029400px;}
.y176{bottom:819.992400px;}
.y12b{bottom:821.498400px;}
.y61{bottom:826.040400px;}
.y15c{bottom:826.056900px;}
.yc5{bottom:826.089900px;}
.yec{bottom:826.101900px;}
.y1c1{bottom:827.510400px;}
.y1a2{bottom:828.035400px;}
.y80{bottom:833.607900px;}
.y1de{bottom:838.010400px;}
.y38{bottom:841.485900px;}
.ya0{bottom:841.523400px;}
.y175{bottom:842.498400px;}
.y12a{bottom:844.004400px;}
.y1c0{bottom:848.510400px;}
.y60{bottom:848.546400px;}
.y15b{bottom:848.562900px;}
.yc4{bottom:848.595900px;}
.yeb{bottom:848.600400px;}
.y13e{bottom:848.601900px;}
.y1a1{bottom:849.035400px;}
.y7f{bottom:854.607900px;}
.y1dd{bottom:859.010400px;}
.y37{bottom:863.991900px;}
.y9f{bottom:864.029400px;}
.y10{bottom:864.686250px;}
.y174{bottom:865.004400px;}
.y129{bottom:866.510400px;}
.y1f6{bottom:869.510400px;}
.y1a0{bottom:870.035400px;}
.y5f{bottom:871.052400px;}
.y15a{bottom:871.068900px;}
.yc3{bottom:871.101900px;}
.y7e{bottom:875.607900px;}
.y1bf{bottom:880.010400px;}
.y36{bottom:886.497900px;}
.y173{bottom:887.510400px;}
.y1f5{bottom:890.510400px;}
.yf{bottom:891.686250px;}
.y5e{bottom:893.558400px;}
.y159{bottom:893.574900px;}
.yea{bottom:893.595900px;}
.yc2{bottom:893.601900px;}
.y7d{bottom:896.607900px;}
.y1be{bottom:901.010400px;}
.y19f{bottom:901.535400px;}
.y9e{bottom:909.003900px;}
.y128{bottom:911.510400px;}
.y106{bottom:916.047900px;}
.y5d{bottom:916.064400px;}
.yc1{bottom:916.101900px;}
.y7c{bottom:917.607900px;}
.y1bd{bottom:922.010400px;}
.y19e{bottom:922.535400px;}
.ye{bottom:931.442250px;}
.y35{bottom:931.493400px;}
.y9d{bottom:931.509900px;}
.y127{bottom:932.510400px;}
.y105{bottom:938.553900px;}
.y5c{bottom:938.570400px;}
.ye9{bottom:938.588400px;}
.yc0{bottom:938.612400px;}
.y1bc{bottom:943.010400px;}
.y126{bottom:953.510400px;}
.y34{bottom:953.999400px;}
.y9c{bottom:954.015900px;}
.y19d{bottom:954.035400px;}
.y7b{bottom:961.059900px;}
.y5b{bottom:961.076400px;}
.ye8{bottom:961.094400px;}
.y1f4{bottom:964.010400px;}
.yd{bottom:965.942250px;}
.y125{bottom:974.510400px;}
.y19c{bottom:975.035400px;}
.y33{bottom:976.505400px;}
.y9b{bottom:976.521900px;}
.y7a{bottom:983.565900px;}
.ybf{bottom:983.571900px;}
.y5a{bottom:983.582400px;}
.ye7{bottom:983.600400px;}
.y124{bottom:995.510400px;}
.y32{bottom:999.011400px;}
.yc{bottom:1000.442250px;}
.y79{bottom:1006.071900px;}
.ybe{bottom:1006.077900px;}
.y158{bottom:1006.088400px;}
.ye6{bottom:1006.106400px;}
.y19b{bottom:1006.535400px;}
.y123{bottom:1016.510400px;}
.y31{bottom:1021.517400px;}
.y1dc{bottom:1027.010400px;}
.y19a{bottom:1027.535400px;}
.y59{bottom:1028.577900px;}
.ybd{bottom:1028.583900px;}
.y157{bottom:1028.594400px;}
.ye5{bottom:1028.612400px;}
.yb{bottom:1034.942250px;}
.y122{bottom:1037.510400px;}
.y30{bottom:1044.023400px;}
.y1bb{bottom:1048.010400px;}
.y199{bottom:1048.535400px;}
.y58{bottom:1051.083900px;}
.ybc{bottom:1051.089900px;}
.y156{bottom:1051.100400px;}
.y121{bottom:1058.510400px;}
.y2f{bottom:1066.529400px;}
.y1ba{bottom:1069.010400px;}
.y198{bottom:1069.535400px;}
.y57{bottom:1073.589900px;}
.ybb{bottom:1073.595900px;}
.y120{bottom:1079.510400px;}
.y2e{bottom:1089.035400px;}
.y1b9{bottom:1090.010400px;}
.y197{bottom:1090.535400px;}
.y56{bottom:1096.095900px;}
.yba{bottom:1096.101900px;}
.y6{bottom:1099.267350px;}
.y11f{bottom:1100.510400px;}
.y55{bottom:1118.601900px;}
.y11e{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.y2d{bottom:1134.035400px;}
.y54{bottom:1141.107900px;}
.y11d{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y28{bottom:1185.328350px;}
.y29{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h8{height:67.500000px;}
.h5{height:69.300000px;}
.h12{height:69.324000px;}
.h17{height:69.330000px;}
.h18{height:69.348000px;}
.h10{height:69.354000px;}
.h16{height:69.372000px;}
.h15{height:69.378000px;}
.h1d{height:69.396000px;}
.h1b{height:69.426000px;}
.h13{height:69.444000px;}
.h11{height:69.450000px;}
.hd{height:69.498000px;}
.h1c{height:69.522000px;}
.h14{height:69.540000px;}
.hf{height:69.552000px;}
.h19{height:69.618000px;}
.h1a{height:69.624000px;}
.h1e{height:69.636000px;}
.he{height:69.696000px;}
.ha{height:72.000000px;}
.hc{height:90.000000px;}
.h7{height:126.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:21.259800px;}
.xe{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x10{left:136.062900px;}
.x12{left:144.999150px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.xb{left:815.527500px;}
.x11{left:824.209500px;}
.xc{left:826.019400px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.712000pt;}
.ls7{letter-spacing:-3.071157pt;}
.lsb{letter-spacing:-2.880000pt;}
.ls6{letter-spacing:-1.349333pt;}
.ls16{letter-spacing:-1.013333pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.957675pt;}
.ls13{letter-spacing:-0.889269pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.410432pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.171013pt;}
.ls14{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000032pt;}
.ls5{letter-spacing:0.000165pt;}
.lse{letter-spacing:0.171013pt;}
.ls17{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.381320pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls4{letter-spacing:8.524800pt;}
.wsa0{word-spacing:-16.368000pt;}
.ws8b{word-spacing:-16.192000pt;}
.ws10f{word-spacing:-15.093333pt;}
.ws13{word-spacing:-15.018667pt;}
.ws2{word-spacing:-14.880000pt;}
.wsfe{word-spacing:-14.720000pt;}
.ws107{word-spacing:-14.506667pt;}
.ws108{word-spacing:-13.706667pt;}
.ws1{word-spacing:-13.392000pt;}
.ws0{word-spacing:-13.248000pt;}
.ws12{word-spacing:-12.533333pt;}
.ws8c{word-spacing:-12.432000pt;}
.ws3{word-spacing:-11.952000pt;}
.ws4{word-spacing:-11.808000pt;}
.ws8d{word-spacing:-10.512000pt;}
.wsa1{word-spacing:-9.713557pt;}
.ws15{word-spacing:-9.542544pt;}
.wsc2{word-spacing:-9.371531pt;}
.ws77{word-spacing:-9.132112pt;}
.wsd4{word-spacing:-8.653275pt;}
.ws14{word-spacing:-8.610133pt;}
.wsb3{word-spacing:-8.584869pt;}
.wse4{word-spacing:-8.330667pt;}
.wsee{word-spacing:-6.629333pt;}
.wsd5{word-spacing:-6.042667pt;}
.wsd8{word-spacing:-5.866667pt;}
.ws5a{word-spacing:-4.165333pt;}
.ws1f{word-spacing:-4.106667pt;}
.ws83{word-spacing:-4.048000pt;}
.ws3a{word-spacing:-3.813333pt;}
.ws10b{word-spacing:-3.680000pt;}
.wsad{word-spacing:-3.637333pt;}
.ws65{word-spacing:-3.578667pt;}
.wsce{word-spacing:-3.520000pt;}
.wsc5{word-spacing:-3.402667pt;}
.ws40{word-spacing:-3.344000pt;}
.ws36{word-spacing:-3.226667pt;}
.ws20{word-spacing:-3.168000pt;}
.ws92{word-spacing:-3.109333pt;}
.ws93{word-spacing:-3.050667pt;}
.wsb2{word-spacing:-2.992000pt;}
.ws6d{word-spacing:-2.933333pt;}
.wsc3{word-spacing:-2.874667pt;}
.ws23{word-spacing:-2.757333pt;}
.ws59{word-spacing:-2.698667pt;}
.ws61{word-spacing:-2.640000pt;}
.wsc9{word-spacing:-2.581333pt;}
.wsf7{word-spacing:-2.560000pt;}
.ws6f{word-spacing:-2.522667pt;}
.wsf0{word-spacing:-2.464000pt;}
.ws82{word-spacing:-2.346667pt;}
.wse{word-spacing:-2.304000pt;}
.wsb0{word-spacing:-2.288000pt;}
.ws110{word-spacing:-2.240000pt;}
.wsc0{word-spacing:-2.229333pt;}
.ws2e{word-spacing:-2.208000pt;}
.ws1c{word-spacing:-2.170667pt;}
.ws5b{word-spacing:-2.053333pt;}
.wsc1{word-spacing:-1.994667pt;}
.wsb7{word-spacing:-1.866667pt;}
.ws18{word-spacing:-1.818667pt;}
.ws73{word-spacing:-1.706667pt;}
.ws91{word-spacing:-1.701333pt;}
.wse1{word-spacing:-1.653333pt;}
.ws19{word-spacing:-1.642667pt;}
.ws30{word-spacing:-1.584000pt;}
.ws1e{word-spacing:-1.525333pt;}
.ws71{word-spacing:-1.440000pt;}
.wse6{word-spacing:-1.408000pt;}
.wseb{word-spacing:-1.392000pt;}
.wsf6{word-spacing:-1.386667pt;}
.wsc7{word-spacing:-1.349333pt;}
.wsec{word-spacing:-1.296000pt;}
.wsca{word-spacing:-1.290667pt;}
.ws57{word-spacing:-1.232000pt;}
.ws70{word-spacing:-1.173333pt;}
.wscb{word-spacing:-1.056000pt;}
.ws105{word-spacing:-1.013333pt;}
.ws9c{word-spacing:-0.997333pt;}
.ws116{word-spacing:-0.960000pt;}
.ws79{word-spacing:-0.938667pt;}
.ws74{word-spacing:-0.906667pt;}
.wsef{word-spacing:-0.821333pt;}
.wsd0{word-spacing:-0.762667pt;}
.wsa3{word-spacing:-0.704000pt;}
.ws7f{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.533333pt;}
.ws21{word-spacing:-0.528000pt;}
.ws9f{word-spacing:-0.480000pt;}
.wsac{word-spacing:-0.469333pt;}
.wsb8{word-spacing:-0.426667pt;}
.ws31{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.352000pt;}
.ws8e{word-spacing:-0.293333pt;}
.ws10c{word-spacing:-0.266667pt;}
.wsd3{word-spacing:-0.192000pt;}
.ws26{word-spacing:-0.117333pt;}
.ws4b{word-spacing:-0.106667pt;}
.ws85{word-spacing:-0.096000pt;}
.wsf9{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws10e{word-spacing:0.053333pt;}
.ws49{word-spacing:0.058667pt;}
.wsfa{word-spacing:0.106667pt;}
.wsf1{word-spacing:0.176000pt;}
.ws4d{word-spacing:0.213333pt;}
.wsa7{word-spacing:0.234667pt;}
.ws44{word-spacing:0.288000pt;}
.ws41{word-spacing:0.352000pt;}
.wsfc{word-spacing:0.373333pt;}
.wsbc{word-spacing:0.410667pt;}
.wsd7{word-spacing:0.528000pt;}
.ws17{word-spacing:0.586667pt;}
.wsff{word-spacing:0.693333pt;}
.ws3d{word-spacing:0.762667pt;}
.wsb4{word-spacing:0.800000pt;}
.wscf{word-spacing:0.821333pt;}
.wsaf{word-spacing:0.880000pt;}
.ws72{word-spacing:0.906667pt;}
.ws62{word-spacing:0.938667pt;}
.wsa6{word-spacing:0.997333pt;}
.wsfb{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.114667pt;}
.ws117{word-spacing:1.120000pt;}
.ws32{word-spacing:1.173333pt;}
.ws111{word-spacing:1.226667pt;}
.wsd6{word-spacing:1.232000pt;}
.ws6c{word-spacing:1.290667pt;}
.ws87{word-spacing:1.296000pt;}
.ws9e{word-spacing:1.344000pt;}
.wsc6{word-spacing:1.349333pt;}
.ws43{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.466667pt;}
.ws60{word-spacing:1.525333pt;}
.wse2{word-spacing:1.546667pt;}
.ws86{word-spacing:1.584000pt;}
.wsc4{word-spacing:1.701333pt;}
.wsb6{word-spacing:1.706667pt;}
.ws88{word-spacing:1.728000pt;}
.ws28{word-spacing:1.760000pt;}
.ws84{word-spacing:1.776000pt;}
.wsdd{word-spacing:1.818667pt;}
.ws7{word-spacing:1.872000pt;}
.ws48{word-spacing:1.877333pt;}
.wsa9{word-spacing:1.936000pt;}
.wsa8{word-spacing:1.994667pt;}
.ws10d{word-spacing:2.026667pt;}
.ws6b{word-spacing:2.053333pt;}
.ws2a{word-spacing:2.112000pt;}
.wsfd{word-spacing:2.133333pt;}
.wse8{word-spacing:2.170667pt;}
.ws4c{word-spacing:2.240000pt;}
.wsed{word-spacing:2.346667pt;}
.ws5f{word-spacing:2.405333pt;}
.ws89{word-spacing:2.448000pt;}
.ws29{word-spacing:2.464000pt;}
.wsdb{word-spacing:2.560000pt;}
.ws5c{word-spacing:2.581333pt;}
.ws78{word-spacing:2.640000pt;}
.ws119{word-spacing:2.666667pt;}
.ws34{word-spacing:2.698667pt;}
.ws100{word-spacing:2.720000pt;}
.wsbf{word-spacing:2.757333pt;}
.ws58{word-spacing:2.874667pt;}
.wse3{word-spacing:2.880000pt;}
.wscc{word-spacing:2.933333pt;}
.ws2f{word-spacing:2.976000pt;}
.ws8f{word-spacing:2.992000pt;}
.ws16{word-spacing:3.071157pt;}
.ws8a{word-spacing:3.072000pt;}
.ws76{word-spacing:3.146667pt;}
.wsda{word-spacing:3.168000pt;}
.ws75{word-spacing:3.200000pt;}
.wsc8{word-spacing:3.226667pt;}
.ws106{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.285333pt;}
.ws5e{word-spacing:3.344000pt;}
.ws101{word-spacing:3.360000pt;}
.wsa5{word-spacing:3.402667pt;}
.ws63{word-spacing:3.520000pt;}
.wsb{word-spacing:3.552000pt;}
.ws90{word-spacing:3.578667pt;}
.ws94{word-spacing:3.696000pt;}
.wsf8{word-spacing:3.733333pt;}
.ws95{word-spacing:3.754667pt;}
.wsb5{word-spacing:3.786667pt;}
.ws9d{word-spacing:3.872000pt;}
.ws7e{word-spacing:3.989333pt;}
.ws98{word-spacing:4.048000pt;}
.ws50{word-spacing:4.165333pt;}
.wsdc{word-spacing:4.213333pt;}
.wsab{word-spacing:4.224000pt;}
.wsdf{word-spacing:4.266667pt;}
.ws1d{word-spacing:4.282667pt;}
.ws118{word-spacing:4.320000pt;}
.wscd{word-spacing:4.400000pt;}
.wsf{word-spacing:4.416000pt;}
.ws113{word-spacing:4.533333pt;}
.wse5{word-spacing:4.576000pt;}
.wsbb{word-spacing:4.693333pt;}
.ws81{word-spacing:4.752000pt;}
.ws39{word-spacing:4.810667pt;}
.ws46{word-spacing:4.869333pt;}
.wsde{word-spacing:4.906667pt;}
.ws80{word-spacing:4.928000pt;}
.ws64{word-spacing:4.986667pt;}
.wsae{word-spacing:5.045333pt;}
.ws54{word-spacing:5.221333pt;}
.ws55{word-spacing:5.280000pt;}
.wsa{word-spacing:5.328000pt;}
.ws7b{word-spacing:5.338667pt;}
.ws6{word-spacing:5.376000pt;}
.ws96{word-spacing:5.397333pt;}
.ws2b{word-spacing:5.514667pt;}
.ws56{word-spacing:5.573333pt;}
.ws22{word-spacing:5.632000pt;}
.ws45{word-spacing:5.690667pt;}
.wse0{word-spacing:5.706667pt;}
.ws25{word-spacing:5.749333pt;}
.ws9b{word-spacing:5.808000pt;}
.ws27{word-spacing:5.866667pt;}
.ws37{word-spacing:6.042667pt;}
.ws9{word-spacing:6.144000pt;}
.ws24{word-spacing:6.336000pt;}
.wsd2{word-spacing:6.512000pt;}
.ws35{word-spacing:6.570667pt;}
.ws112{word-spacing:6.613333pt;}
.ws68{word-spacing:6.629333pt;}
.ws7a{word-spacing:6.688000pt;}
.ws4f{word-spacing:6.864000pt;}
.ws99{word-spacing:6.922667pt;}
.ws103{word-spacing:7.093333pt;}
.ws102{word-spacing:7.146667pt;}
.ws3b{word-spacing:7.157333pt;}
.ws52{word-spacing:7.274667pt;}
.ws47{word-spacing:7.333333pt;}
.wsa4{word-spacing:7.450667pt;}
.ws7d{word-spacing:7.685333pt;}
.ws4e{word-spacing:7.744000pt;}
.ws3c{word-spacing:7.861333pt;}
.ws6a{word-spacing:8.096000pt;}
.wsc{word-spacing:8.112000pt;}
.ws6e{word-spacing:8.213333pt;}
.ws38{word-spacing:8.272000pt;}
.wsb9{word-spacing:8.330667pt;}
.ws2c{word-spacing:8.389333pt;}
.wsaa{word-spacing:8.565333pt;}
.ws69{word-spacing:8.624000pt;}
.ws9a{word-spacing:8.917333pt;}
.wsd{word-spacing:8.976000pt;}
.wsf2{word-spacing:9.093333pt;}
.ws11{word-spacing:9.360000pt;}
.wsea{word-spacing:9.504000pt;}
.wsd9{word-spacing:9.562667pt;}
.ws3f{word-spacing:9.621333pt;}
.wse7{word-spacing:9.680000pt;}
.ws3e{word-spacing:9.738667pt;}
.ws33{word-spacing:9.856000pt;}
.wsb1{word-spacing:10.266667pt;}
.ws10{word-spacing:10.464000pt;}
.wsf4{word-spacing:10.736000pt;}
.wsbe{word-spacing:10.794667pt;}
.wsf3{word-spacing:10.912000pt;}
.ws53{word-spacing:11.146667pt;}
.ws2d{word-spacing:11.616000pt;}
.ws97{word-spacing:11.733333pt;}
.wsbd{word-spacing:11.792000pt;}
.wsba{word-spacing:11.850667pt;}
.wsd1{word-spacing:12.261333pt;}
.ws7c{word-spacing:12.789333pt;}
.wsa2{word-spacing:13.552000pt;}
.ws42{word-spacing:13.610667pt;}
.ws51{word-spacing:14.784000pt;}
.ws114{word-spacing:15.733333pt;}
.ws109{word-spacing:16.106667pt;}
.ws10a{word-spacing:16.160000pt;}
.ws66{word-spacing:18.656000pt;}
.ws67{word-spacing:18.890667pt;}
.wsf5{word-spacing:19.301333pt;}
.ws104{word-spacing:19.520000pt;}
.wse9{word-spacing:29.333333pt;}
.ws115{word-spacing:39.413333pt;}
._11{margin-left:-24.000000pt;}
._9{margin-left:-8.524800pt;}
._16{margin-left:-7.026173pt;}
._4{margin-left:-6.129473pt;}
._3{margin-left:-4.617380pt;}
._7{margin-left:-3.662400pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._6{width:3.141974pt;}
._b{width:4.064226pt;}
._8{width:5.591780pt;}
._12{width:6.493773pt;}
._e{width:7.433600pt;}
._d{width:8.421020pt;}
._10{width:9.490040pt;}
._c{width:10.608000pt;}
._f{width:12.166933pt;}
._5{width:13.104000pt;}
._14{width:15.882667pt;}
._15{width:16.890353pt;}
._13{width:19.030620pt;}
._a{width:29.333333pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y27{bottom:13.955733pt;}
.y2a{bottom:15.985200pt;}
.y2b{bottom:27.212533pt;}
.y26{bottom:32.622400pt;}
.y2{bottom:38.177600pt;}
.ya{bottom:47.999467pt;}
.y2c{bottom:49.145200pt;}
.y25{bottom:51.289067pt;}
.y9{bottom:62.399467pt;}
.y24{bottom:69.955733pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.yb9{bottom:151.181067pt;}
.y11c{bottom:151.183733pt;}
.y155{bottom:151.191733pt;}
.y78{bottom:151.194400pt;}
.y53{bottom:151.197067pt;}
.y104{bottom:151.202400pt;}
.ye4{bottom:151.229067pt;}
.y196{bottom:154.162133pt;}
.y11b{bottom:165.847733pt;}
.y154{bottom:165.855733pt;}
.y77{bottom:165.858400pt;}
.y52{bottom:165.861067pt;}
.y103{bottom:165.866400pt;}
.ye3{bottom:165.893067pt;}
.y214{bottom:166.231467pt;}
.y195{bottom:174.167467pt;}
.y1db{bottom:175.564800pt;}
.y153{bottom:180.519733pt;}
.y76{bottom:180.522400pt;}
.y51{bottom:180.525067pt;}
.y102{bottom:180.530400pt;}
.ye2{bottom:180.557067pt;}
.y9a{bottom:180.860800pt;}
.y1f3{bottom:184.897200pt;}
.y207{bottom:184.898133pt;}
.y1b8{bottom:185.364800pt;}
.y194{bottom:194.172800pt;}
.y1da{bottom:194.231467pt;}
.y152{bottom:195.183733pt;}
.y75{bottom:195.186400pt;}
.y50{bottom:195.189067pt;}
.y101{bottom:195.194400pt;}
.ye1{bottom:195.221067pt;}
.y99{bottom:200.866133pt;}
.y1f2{bottom:203.563867pt;}
.y206{bottom:203.564800pt;}
.y1b7{bottom:204.031467pt;}
.y151{bottom:209.847733pt;}
.y74{bottom:209.850400pt;}
.y4f{bottom:209.853067pt;}
.y100{bottom:209.858400pt;}
.ye0{bottom:209.885067pt;}
.y213{bottom:212.898133pt;}
.y193{bottom:214.178133pt;}
.y98{bottom:220.871467pt;}
.y1d9{bottom:222.231467pt;}
.y172{bottom:222.296800pt;}
.y1b6{bottom:222.698133pt;}
.y13d{bottom:223.547467pt;}
.y73{bottom:224.514400pt;}
.y4e{bottom:224.517067pt;}
.yff{bottom:224.522400pt;}
.ydf{bottom:224.549067pt;}
.y1f1{bottom:231.563867pt;}
.y212{bottom:231.564800pt;}
.y11a{bottom:234.296800pt;}
.y4d{bottom:239.181067pt;}
.yfe{bottom:239.186400pt;}
.yde{bottom:239.213067pt;}
.y97{bottom:240.876800pt;}
.y1d8{bottom:240.898133pt;}
.yb8{bottom:241.364800pt;}
.y171{bottom:242.302133pt;}
.y13c{bottom:243.552800pt;}
.y1f0{bottom:250.230533pt;}
.y205{bottom:250.231467pt;}
.y1b5{bottom:250.698133pt;}
.yfd{bottom:253.850400pt;}
.ydd{bottom:253.877067pt;}
.y192{bottom:254.174133pt;}
.y119{bottom:254.302133pt;}
.y1d7{bottom:259.564800pt;}
.yb7{bottom:260.031467pt;}
.y96{bottom:260.882133pt;}
.y170{bottom:262.307467pt;}
.yfc{bottom:268.514400pt;}
.ydc{bottom:268.541067pt;}
.y1ef{bottom:268.897200pt;}
.y204{bottom:268.898133pt;}
.y1b4{bottom:269.364800pt;}
.y191{bottom:274.179467pt;}
.y150{bottom:274.219467pt;}
.y118{bottom:274.307467pt;}
.y188{bottom:275.547467pt;}
.y1d6{bottom:278.231467pt;}
.yb6{bottom:278.698133pt;}
.y95{bottom:280.887467pt;}
.y72{bottom:280.979467pt;}
.y16f{bottom:282.312800pt;}
.ydb{bottom:283.205067pt;}
.y13b{bottom:283.548800pt;}
.y203{bottom:287.564800pt;}
.y1b3{bottom:288.031467pt;}
.y190{bottom:294.184800pt;}
.y14f{bottom:294.224800pt;}
.y117{bottom:294.312800pt;}
.y187{bottom:295.552800pt;}
.y1ee{bottom:296.897200pt;}
.y211{bottom:296.898133pt;}
.yb5{bottom:297.364800pt;}
.yda{bottom:297.869067pt;}
.y94{bottom:300.892800pt;}
.y71{bottom:300.972800pt;}
.y16e{bottom:302.318133pt;}
.y13a{bottom:303.554133pt;}
.y1d5{bottom:306.231467pt;}
.y1b2{bottom:306.698133pt;}
.y4c{bottom:307.943467pt;}
.yd9{bottom:312.533067pt;}
.y18f{bottom:314.190133pt;}
.y14e{bottom:314.230133pt;}
.y116{bottom:314.246133pt;}
.y1ed{bottom:315.563867pt;}
.y210{bottom:315.564800pt;}
.yb4{bottom:316.031467pt;}
.y93{bottom:320.898133pt;}
.y139{bottom:323.559467pt;}
.y1d4{bottom:324.898133pt;}
.y1b1{bottom:325.364800pt;}
.yd8{bottom:327.197067pt;}
.y4b{bottom:327.948800pt;}
.y18e{bottom:334.195467pt;}
.y1ec{bottom:334.230533pt;}
.y202{bottom:334.231467pt;}
.y14d{bottom:334.235467pt;}
.yb3{bottom:334.698133pt;}
.y186{bottom:335.548800pt;}
.y92{bottom:340.903467pt;}
.yfb{bottom:340.951467pt;}
.y70{bottom:340.968800pt;}
.yd7{bottom:341.861067pt;}
.y16d{bottom:342.318133pt;}
.y138{bottom:343.536800pt;}
.y1d3{bottom:343.564800pt;}
.y4a{bottom:347.954133pt;}
.y201{bottom:352.898133pt;}
.yb2{bottom:353.364800pt;}
.y18d{bottom:354.200800pt;}
.y14c{bottom:354.240800pt;}
.y115{bottom:354.242133pt;}
.y185{bottom:355.554133pt;}
.yd6{bottom:356.525067pt;}
.y91{bottom:360.908800pt;}
.yfa{bottom:360.956800pt;}
.y6f{bottom:360.974133pt;}
.y16c{bottom:360.984800pt;}
.y1eb{bottom:362.230533pt;}
.y1d2{bottom:362.231467pt;}
.y137{bottom:363.542133pt;}
.y21{bottom:367.255467pt;}
.y49{bottom:367.959467pt;}
.yd5{bottom:371.189067pt;}
.y200{bottom:371.564800pt;}
.yb1{bottom:372.031467pt;}
.y18c{bottom:374.206133pt;}
.y14b{bottom:374.246133pt;}
.y114{bottom:374.247467pt;}
.y184{bottom:375.559467pt;}
.y16b{bottom:379.651467pt;}
.y1ea{bottom:380.897200pt;}
.y20f{bottom:380.898133pt;}
.y90{bottom:380.914133pt;}
.y6e{bottom:380.979467pt;}
.y20{bottom:381.919467pt;}
.y136{bottom:383.547467pt;}
.yd4{bottom:385.853067pt;}
.y48{bottom:387.964800pt;}
.y1d1{bottom:390.231467pt;}
.yb0{bottom:390.698133pt;}
.y14a{bottom:394.251467pt;}
.y113{bottom:394.252800pt;}
.y183{bottom:395.564800pt;}
.y16a{bottom:398.318133pt;}
.y1e9{bottom:399.563867pt;}
.y1ff{bottom:399.564800pt;}
.yd3{bottom:400.517067pt;}
.y1f{bottom:400.591467pt;}
.y8f{bottom:400.919467pt;}
.yf9{bottom:400.952800pt;}
.y6d{bottom:400.984800pt;}
.y135{bottom:403.552800pt;}
.y1d0{bottom:408.898133pt;}
.yaf{bottom:409.364800pt;}
.y18b{bottom:414.202133pt;}
.y112{bottom:414.258133pt;}
.yd2{bottom:415.181067pt;}
.y1e{bottom:415.255467pt;}
.y169{bottom:416.984800pt;}
.y1fe{bottom:418.231467pt;}
.yf8{bottom:420.958133pt;}
.y1e8{bottom:427.563867pt;}
.y1cf{bottom:427.564800pt;}
.y47{bottom:427.960800pt;}
.y1b0{bottom:428.031467pt;}
.y1d{bottom:429.919467pt;}
.y18a{bottom:434.207467pt;}
.y149{bottom:434.247467pt;}
.y111{bottom:434.263467pt;}
.y182{bottom:435.564800pt;}
.y168{bottom:435.651467pt;}
.y20e{bottom:436.898133pt;}
.y8e{bottom:440.915467pt;}
.yf7{bottom:440.963467pt;}
.y6c{bottom:440.984800pt;}
.y134{bottom:443.548800pt;}
.y1c{bottom:444.583467pt;}
.y1e7{bottom:446.230533pt;}
.y1ce{bottom:446.231467pt;}
.yae{bottom:447.955467pt;}
.y46{bottom:447.966133pt;}
.y189{bottom:454.212800pt;}
.y148{bottom:454.252800pt;}
.y110{bottom:454.268800pt;}
.y1af{bottom:456.031467pt;}
.y8d{bottom:460.920800pt;}
.yf6{bottom:460.968800pt;}
.y133{bottom:463.554133pt;}
.y1fd{bottom:464.898133pt;}
.yad{bottom:467.960800pt;}
.y45{bottom:467.971467pt;}
.y167{bottom:474.218133pt;}
.y1e6{bottom:474.230533pt;}
.y1cd{bottom:474.231467pt;}
.y147{bottom:474.258133pt;}
.y10f{bottom:474.274133pt;}
.yd1{bottom:474.300800pt;}
.y1b{bottom:474.583467pt;}
.y1ae{bottom:474.698133pt;}
.y8c{bottom:480.926133pt;}
.yf5{bottom:480.974133pt;}
.y132{bottom:483.559467pt;}
.y20d{bottom:483.564800pt;}
.yac{bottom:487.966133pt;}
.y44{bottom:487.976800pt;}
.y1a{bottom:489.919467pt;}
.y1e5{bottom:492.897200pt;}
.y1cc{bottom:492.898133pt;}
.y1ad{bottom:493.364800pt;}
.y166{bottom:494.223467pt;}
.y146{bottom:494.263467pt;}
.y10e{bottom:494.279467pt;}
.yd0{bottom:494.306133pt;}
.y8b{bottom:500.931467pt;}
.yf4{bottom:500.979467pt;}
.y20c{bottom:502.231467pt;}
.y131{bottom:503.564800pt;}
.yab{bottom:507.971467pt;}
.y19{bottom:508.591467pt;}
.y181{bottom:508.823467pt;}
.y1cb{bottom:511.564800pt;}
.y1ac{bottom:512.031467pt;}
.y165{bottom:514.228800pt;}
.y145{bottom:514.268800pt;}
.y6b{bottom:514.270133pt;}
.y10d{bottom:514.284800pt;}
.ycf{bottom:514.311467pt;}
.y1e4{bottom:520.897200pt;}
.y8a{bottom:520.936800pt;}
.yf3{bottom:520.974133pt;}
.y18{bottom:523.927467pt;}
.y43{bottom:527.972800pt;}
.yaa{bottom:527.976800pt;}
.y180{bottom:528.828800pt;}
.y20b{bottom:530.231467pt;}
.y164{bottom:534.234133pt;}
.y6a{bottom:534.275467pt;}
.y10c{bottom:534.290133pt;}
.yce{bottom:534.316800pt;}
.y17{bottom:539.263467pt;}
.y1e3{bottom:539.563867pt;}
.y1ca{bottom:539.564800pt;}
.y1ab{bottom:540.031467pt;}
.y89{bottom:540.942133pt;}
.yf2{bottom:540.979467pt;}
.y130{bottom:543.564800pt;}
.y42{bottom:547.978133pt;}
.ya9{bottom:547.982133pt;}
.y17f{bottom:548.834133pt;}
.y20a{bottom:548.898133pt;}
.y163{bottom:554.239467pt;}
.y144{bottom:554.264800pt;}
.y69{bottom:554.280800pt;}
.y10b{bottom:554.295467pt;}
.ycd{bottom:554.322133pt;}
.y16{bottom:554.599467pt;}
.y1e2{bottom:558.230533pt;}
.y1c9{bottom:558.231467pt;}
.y1aa{bottom:558.698133pt;}
.y88{bottom:560.947467pt;}
.yf1{bottom:560.984800pt;}
.y209{bottom:567.564800pt;}
.y41{bottom:567.983467pt;}
.ya8{bottom:567.987467pt;}
.y17e{bottom:568.839467pt;}
.y15{bottom:569.935467pt;}
.y143{bottom:574.270133pt;}
.y68{bottom:574.286133pt;}
.y10a{bottom:574.300800pt;}
.y12f{bottom:576.898133pt;}
.y1a9{bottom:577.364800pt;}
.y87{bottom:580.952800pt;}
.y1c8{bottom:586.231467pt;}
.y40{bottom:587.988800pt;}
.y17d{bottom:588.844800pt;}
.y162{bottom:594.235467pt;}
.ycc{bottom:594.264800pt;}
.y142{bottom:594.275467pt;}
.y67{bottom:594.291467pt;}
.y109{bottom:594.306133pt;}
.y1fc{bottom:595.564800pt;}
.y1e1{bottom:596.897200pt;}
.y86{bottom:600.958133pt;}
.yf0{bottom:600.984800pt;}
.y1c7{bottom:604.898133pt;}
.y1a8{bottom:605.364800pt;}
.ya7{bottom:607.983467pt;}
.y3f{bottom:607.994133pt;}
.y17c{bottom:608.850133pt;}
.y1fb{bottom:614.231467pt;}
.y161{bottom:614.240800pt;}
.ycb{bottom:614.270133pt;}
.y141{bottom:614.280800pt;}
.y66{bottom:614.296800pt;}
.y14{bottom:618.160667pt;}
.y85{bottom:620.963467pt;}
.y1c6{bottom:623.564800pt;}
.y1a7{bottom:624.031467pt;}
.ya6{bottom:627.988800pt;}
.y3e{bottom:627.999467pt;}
.y17b{bottom:628.855467pt;}
.y208{bottom:632.898133pt;}
.y160{bottom:634.246133pt;}
.yca{bottom:634.275467pt;}
.y140{bottom:634.286133pt;}
.y65{bottom:634.302133pt;}
.y13{bottom:636.827333pt;}
.y84{bottom:640.968800pt;}
.y1fa{bottom:642.231467pt;}
.ya5{bottom:647.994133pt;}
.y3d{bottom:648.004800pt;}
.y17a{bottom:648.860800pt;}
.y12e{bottom:650.214133pt;}
.y1c5{bottom:651.564800pt;}
.y1a6{bottom:652.031467pt;}
.y15f{bottom:654.251467pt;}
.yc9{bottom:654.280800pt;}
.y13f{bottom:654.291467pt;}
.y64{bottom:654.307467pt;}
.y12{bottom:655.494000pt;}
.y23{bottom:659.323467pt;}
.y1f9{bottom:660.898133pt;}
.y83{bottom:660.974133pt;}
.ya4{bottom:667.999467pt;}
.y3c{bottom:668.010133pt;}
.y179{bottom:668.866133pt;}
.y12d{bottom:670.219467pt;}
.y1c4{bottom:670.231467pt;}
.y1a5{bottom:670.698133pt;}
.y11{bottom:674.160667pt;}
.y15e{bottom:674.256800pt;}
.yc8{bottom:674.286133pt;}
.yef{bottom:674.296800pt;}
.y63{bottom:674.312800pt;}
.y22{bottom:676.651467pt;}
.y1e0{bottom:679.564800pt;}
.y82{bottom:680.979467pt;}
.ya3{bottom:688.004800pt;}
.y3b{bottom:688.015467pt;}
.y178{bottom:688.871467pt;}
.y1c3{bottom:688.898133pt;}
.y12c{bottom:690.224800pt;}
.y108{bottom:694.247467pt;}
.y62{bottom:694.262133pt;}
.yc7{bottom:694.291467pt;}
.yee{bottom:694.302133pt;}
.y1df{bottom:698.231467pt;}
.y1a4{bottom:698.698133pt;}
.y81{bottom:700.984800pt;}
.y1f8{bottom:707.564800pt;}
.ya2{bottom:708.010133pt;}
.y3a{bottom:708.020800pt;}
.y177{bottom:708.876800pt;}
.y107{bottom:714.252800pt;}
.y15d{bottom:714.267467pt;}
.yc6{bottom:714.296800pt;}
.yed{bottom:714.307467pt;}
.y1c2{bottom:716.898133pt;}
.y1a3{bottom:717.364800pt;}
.y1f7{bottom:726.231467pt;}
.ya1{bottom:728.015467pt;}
.y39{bottom:728.026133pt;}
.y176{bottom:728.882133pt;}
.y12b{bottom:730.220800pt;}
.y61{bottom:734.258133pt;}
.y15c{bottom:734.272800pt;}
.yc5{bottom:734.302133pt;}
.yec{bottom:734.312800pt;}
.y1c1{bottom:735.564800pt;}
.y1a2{bottom:736.031467pt;}
.y80{bottom:740.984800pt;}
.y1de{bottom:744.898133pt;}
.y38{bottom:747.987467pt;}
.ya0{bottom:748.020800pt;}
.y175{bottom:748.887467pt;}
.y12a{bottom:750.226133pt;}
.y1c0{bottom:754.231467pt;}
.y60{bottom:754.263467pt;}
.y15b{bottom:754.278133pt;}
.yc4{bottom:754.307467pt;}
.yeb{bottom:754.311467pt;}
.y13e{bottom:754.312800pt;}
.y1a1{bottom:754.698133pt;}
.y7f{bottom:759.651467pt;}
.y1dd{bottom:763.564800pt;}
.y37{bottom:767.992800pt;}
.y9f{bottom:768.026133pt;}
.y10{bottom:768.610000pt;}
.y174{bottom:768.892800pt;}
.y129{bottom:770.231467pt;}
.y1f6{bottom:772.898133pt;}
.y1a0{bottom:773.364800pt;}
.y5f{bottom:774.268800pt;}
.y15a{bottom:774.283467pt;}
.yc3{bottom:774.312800pt;}
.y7e{bottom:778.318133pt;}
.y1bf{bottom:782.231467pt;}
.y36{bottom:787.998133pt;}
.y173{bottom:788.898133pt;}
.y1f5{bottom:791.564800pt;}
.yf{bottom:792.610000pt;}
.y5e{bottom:794.274133pt;}
.y159{bottom:794.288800pt;}
.yea{bottom:794.307467pt;}
.yc2{bottom:794.312800pt;}
.y7d{bottom:796.984800pt;}
.y1be{bottom:800.898133pt;}
.y19f{bottom:801.364800pt;}
.y9e{bottom:808.003467pt;}
.y128{bottom:810.231467pt;}
.y106{bottom:814.264800pt;}
.y5d{bottom:814.279467pt;}
.yc1{bottom:814.312800pt;}
.y7c{bottom:815.651467pt;}
.y1bd{bottom:819.564800pt;}
.y19e{bottom:820.031467pt;}
.ye{bottom:827.948667pt;}
.y35{bottom:827.994133pt;}
.y9d{bottom:828.008800pt;}
.y127{bottom:828.898133pt;}
.y105{bottom:834.270133pt;}
.y5c{bottom:834.284800pt;}
.ye9{bottom:834.300800pt;}
.yc0{bottom:834.322133pt;}
.y1bc{bottom:838.231467pt;}
.y126{bottom:847.564800pt;}
.y34{bottom:847.999467pt;}
.y9c{bottom:848.014133pt;}
.y19d{bottom:848.031467pt;}
.y7b{bottom:854.275467pt;}
.y5b{bottom:854.290133pt;}
.ye8{bottom:854.306133pt;}
.y1f4{bottom:856.898133pt;}
.yd{bottom:858.615333pt;}
.y125{bottom:866.231467pt;}
.y19c{bottom:866.698133pt;}
.y33{bottom:868.004800pt;}
.y9b{bottom:868.019467pt;}
.y7a{bottom:874.280800pt;}
.ybf{bottom:874.286133pt;}
.y5a{bottom:874.295467pt;}
.ye7{bottom:874.311467pt;}
.y124{bottom:884.898133pt;}
.y32{bottom:888.010133pt;}
.yc{bottom:889.282000pt;}
.y79{bottom:894.286133pt;}
.ybe{bottom:894.291467pt;}
.y158{bottom:894.300800pt;}
.ye6{bottom:894.316800pt;}
.y19b{bottom:894.698133pt;}
.y123{bottom:903.564800pt;}
.y31{bottom:908.015467pt;}
.y1dc{bottom:912.898133pt;}
.y19a{bottom:913.364800pt;}
.y59{bottom:914.291467pt;}
.ybd{bottom:914.296800pt;}
.y157{bottom:914.306133pt;}
.ye5{bottom:914.322133pt;}
.yb{bottom:919.948667pt;}
.y122{bottom:922.231467pt;}
.y30{bottom:928.020800pt;}
.y1bb{bottom:931.564800pt;}
.y199{bottom:932.031467pt;}
.y58{bottom:934.296800pt;}
.ybc{bottom:934.302133pt;}
.y156{bottom:934.311467pt;}
.y121{bottom:940.898133pt;}
.y2f{bottom:948.026133pt;}
.y1ba{bottom:950.231467pt;}
.y198{bottom:950.698133pt;}
.y57{bottom:954.302133pt;}
.ybb{bottom:954.307467pt;}
.y120{bottom:959.564800pt;}
.y2e{bottom:968.031467pt;}
.y1b9{bottom:968.898133pt;}
.y197{bottom:969.364800pt;}
.y56{bottom:974.307467pt;}
.yba{bottom:974.312800pt;}
.y6{bottom:977.126533pt;}
.y11f{bottom:978.231467pt;}
.y55{bottom:994.312800pt;}
.y11e{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.y2d{bottom:1008.031467pt;}
.y54{bottom:1014.318133pt;}
.y11d{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y28{bottom:1053.625200pt;}
.y29{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h8{height:60.000000pt;}
.h5{height:61.600000pt;}
.h12{height:61.621333pt;}
.h17{height:61.626667pt;}
.h18{height:61.642667pt;}
.h10{height:61.648000pt;}
.h16{height:61.664000pt;}
.h15{height:61.669333pt;}
.h1d{height:61.685333pt;}
.h1b{height:61.712000pt;}
.h13{height:61.728000pt;}
.h11{height:61.733333pt;}
.hd{height:61.776000pt;}
.h1c{height:61.797333pt;}
.h14{height:61.813333pt;}
.hf{height:61.824000pt;}
.h19{height:61.882667pt;}
.h1a{height:61.888000pt;}
.h1e{height:61.898667pt;}
.he{height:61.952000pt;}
.ha{height:64.000000pt;}
.hc{height:80.000000pt;}
.h7{height:112.000000pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:18.897600pt;}
.xe{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x10{left:120.944800pt;}
.x12{left:128.888133pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.xb{left:724.913333pt;}
.x11{left:732.630667pt;}
.xc{left:734.239467pt;}
}




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