
    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_71d0aa452ffeb8c9620f0abf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_8e95cfe903eb80cba17c1945.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_a311f104c5679632c7e37982.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_1e45f69b2461726b28e82638.woff')format("woff");}.ff4{font-family:ff4;line-height:0.901855;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_b61388947df811695fe633ea.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_4b129478ef64f39a781bb0a6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.133301;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_e6f7ffebf70d4259fed1c5b5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_6d39905393c772e58062baa4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.122000;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_b3fde6768711ef41a01fd5ae.woff')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_2b7059733202ce0e64ceb0e0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_25d6f1d57c9bd69605a66315.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902832;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_30eaf56a5e2300e520ca1b9a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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_ffd2dee17dcbc6b34148133e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_57a8936e93f39f59e1525615.woff')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_3868e1f316b4e2f3924c7efe.woff')format("woff");}.fff{font-family:fff;line-height:1.000048;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_a3f7ada074e08d13e70db311.woff')format("woff");}.ff10{font-family:ff10;line-height:0.677246;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_efa6b26b3d2cfeb9db7234a4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.770020;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;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.lsc{letter-spacing:-2.496000px;}
.ls13{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.691200px;}
.lsd{letter-spacing:-0.538692px;}
.ls9{letter-spacing:-0.440748px;}
.ls16{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.192000px;}
.ls17{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.168000px;}
.ls10{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.011400px;}
.ls12{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025200px;}
.lsa{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.576000px;}
.lse{letter-spacing:0.858000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws19{word-spacing:-17.928000px;}
.ws49{word-spacing:-16.500000px;}
.ws98{word-spacing:-16.434000px;}
.wsb{word-spacing:-14.940000px;}
.wscf{word-spacing:-13.500000px;}
.ws11b{word-spacing:-12.960000px;}
.wse{word-spacing:-12.366000px;}
.ws1a{word-spacing:-12.150000px;}
.ws40{word-spacing:-12.000000px;}
.ws3f{word-spacing:-11.520000px;}
.ws9{word-spacing:-10.896000px;}
.wsad{word-spacing:-10.656000px;}
.ws7{word-spacing:-10.122000px;}
.wsa{word-spacing:-9.892800px;}
.ws6{word-spacing:-9.618000px;}
.ws4{word-spacing:-9.542544px;}
.ws8{word-spacing:-9.450000px;}
.ws4a{word-spacing:-9.080808px;}
.ws41{word-spacing:-9.024000px;}
.wsc{word-spacing:-7.429752px;}
.ws55{word-spacing:-5.214000px;}
.ws117{word-spacing:-3.402000px;}
.ws106{word-spacing:-3.240000px;}
.ws76{word-spacing:-3.168000px;}
.ws3d{word-spacing:-3.102000px;}
.ws105{word-spacing:-3.078000px;}
.wsa8{word-spacing:-3.036000px;}
.ws61{word-spacing:-2.970000px;}
.ws51{word-spacing:-2.838000px;}
.ws24{word-spacing:-2.772000px;}
.ws6d{word-spacing:-2.706000px;}
.ws15{word-spacing:-2.646000px;}
.ws6e{word-spacing:-2.640000px;}
.wsdf{word-spacing:-2.538000px;}
.ws23{word-spacing:-2.508000px;}
.ws59{word-spacing:-2.442000px;}
.ws96{word-spacing:-2.430000px;}
.ws75{word-spacing:-2.376000px;}
.ws56{word-spacing:-2.244000px;}
.wsf5{word-spacing:-2.214000px;}
.ws81{word-spacing:-2.178000px;}
.ws44{word-spacing:-2.160000px;}
.wsf8{word-spacing:-2.052000px;}
.ws3a{word-spacing:-2.046000px;}
.ws7f{word-spacing:-1.980000px;}
.wse5{word-spacing:-1.944000px;}
.ws99{word-spacing:-1.914000px;}
.wsed{word-spacing:-1.890000px;}
.ws69{word-spacing:-1.848000px;}
.ws94{word-spacing:-1.836000px;}
.ws13{word-spacing:-1.782000px;}
.ws11a{word-spacing:-1.728000px;}
.ws39{word-spacing:-1.716000px;}
.ws57{word-spacing:-1.650000px;}
.wse4{word-spacing:-1.620000px;}
.ws77{word-spacing:-1.518000px;}
.wsf7{word-spacing:-1.512000px;}
.ws11e{word-spacing:-1.458000px;}
.ws3c{word-spacing:-1.452000px;}
.wsa7{word-spacing:-1.386000px;}
.ws10c{word-spacing:-1.350000px;}
.ws6b{word-spacing:-1.320000px;}
.ws84{word-spacing:-1.254000px;}
.ws43{word-spacing:-1.242000px;}
.wsb9{word-spacing:-1.188000px;}
.ws60{word-spacing:-1.122000px;}
.ws17{word-spacing:-1.080000px;}
.ws7d{word-spacing:-1.056000px;}
.ws111{word-spacing:-1.026000px;}
.ws16{word-spacing:-0.972000px;}
.ws27{word-spacing:-0.924000px;}
.ws118{word-spacing:-0.918000px;}
.ws7e{word-spacing:-0.858000px;}
.wsd9{word-spacing:-0.810000px;}
.ws80{word-spacing:-0.792000px;}
.wsf1{word-spacing:-0.756000px;}
.wsce{word-spacing:-0.726000px;}
.wsfd{word-spacing:-0.702000px;}
.ws79{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.594000px;}
.wsef{word-spacing:-0.540000px;}
.ws25{word-spacing:-0.528000px;}
.ws83{word-spacing:-0.462000px;}
.ws18{word-spacing:-0.432000px;}
.wsa3{word-spacing:-0.396000px;}
.wsbc{word-spacing:-0.330000px;}
.wsfa{word-spacing:-0.270000px;}
.ws20{word-spacing:-0.264000px;}
.ws10{word-spacing:-0.216000px;}
.wsa2{word-spacing:-0.198000px;}
.ws42{word-spacing:-0.162000px;}
.wsd{word-spacing:-0.111318px;}
.ws7c{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.066000px;}
.wsf{word-spacing:0.000000px;}
.ws95{word-spacing:0.054000px;}
.ws2a{word-spacing:0.066000px;}
.ws11c{word-spacing:0.180000px;}
.ws31{word-spacing:0.198000px;}
.wsb8{word-spacing:0.216000px;}
.wsb1{word-spacing:0.264000px;}
.wsd7{word-spacing:0.324000px;}
.wse7{word-spacing:0.378000px;}
.wsf6{word-spacing:0.432000px;}
.ws35{word-spacing:0.462000px;}
.ws112{word-spacing:0.486000px;}
.ws3b{word-spacing:0.528000px;}
.wsd5{word-spacing:0.540000px;}
.ws38{word-spacing:0.594000px;}
.wsa5{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.wsd6{word-spacing:0.702000px;}
.ws7b{word-spacing:0.726000px;}
.ws9c{word-spacing:0.792000px;}
.wsdd{word-spacing:0.810000px;}
.ws6a{word-spacing:0.858000px;}
.ws103{word-spacing:0.864000px;}
.ws8d{word-spacing:0.924000px;}
.ws10d{word-spacing:0.972000px;}
.wsa1{word-spacing:0.990000px;}
.wsec{word-spacing:1.026000px;}
.ws108{word-spacing:1.080000px;}
.wsba{word-spacing:1.122000px;}
.ws119{word-spacing:1.134000px;}
.ws50{word-spacing:1.188000px;}
.ws45{word-spacing:1.254000px;}
.ws71{word-spacing:1.320000px;}
.wsf4{word-spacing:1.350000px;}
.ws52{word-spacing:1.386000px;}
.wsfc{word-spacing:1.404000px;}
.ws10b{word-spacing:1.458000px;}
.ws1e{word-spacing:1.512000px;}
.ws5b{word-spacing:1.518000px;}
.ws102{word-spacing:1.566000px;}
.ws32{word-spacing:1.584000px;}
.wsa6{word-spacing:1.650000px;}
.ws78{word-spacing:1.716000px;}
.ws8c{word-spacing:1.728000px;}
.ws8f{word-spacing:1.782000px;}
.ws12{word-spacing:1.890000px;}
.ws9d{word-spacing:1.914000px;}
.ws89{word-spacing:1.944000px;}
.ws46{word-spacing:1.980000px;}
.ws8a{word-spacing:1.998000px;}
.wsc0{word-spacing:2.046000px;}
.ws1b{word-spacing:2.052000px;}
.ws1d{word-spacing:2.106000px;}
.ws8e{word-spacing:2.112000px;}
.ws87{word-spacing:2.160000px;}
.wsbd{word-spacing:2.178000px;}
.ws14{word-spacing:2.214000px;}
.wsc3{word-spacing:2.244000px;}
.wsa0{word-spacing:2.310000px;}
.ws5c{word-spacing:2.376000px;}
.ws1c{word-spacing:2.430000px;}
.ws5a{word-spacing:2.442000px;}
.ws8b{word-spacing:2.484000px;}
.ws6c{word-spacing:2.508000px;}
.ws88{word-spacing:2.538000px;}
.ws26{word-spacing:2.640000px;}
.ws122{word-spacing:2.646000px;}
.wsd8{word-spacing:2.700000px;}
.ws3e{word-spacing:2.706000px;}
.wsb4{word-spacing:2.772000px;}
.ws109{word-spacing:2.808000px;}
.ws37{word-spacing:2.838000px;}
.wsf0{word-spacing:2.862000px;}
.wseb{word-spacing:2.916000px;}
.ws4c{word-spacing:2.970000px;}
.wsf2{word-spacing:3.024000px;}
.ws53{word-spacing:3.036000px;}
.wsee{word-spacing:3.078000px;}
.ws2e{word-spacing:3.102000px;}
.ws33{word-spacing:3.168000px;}
.ws5d{word-spacing:3.234000px;}
.wse9{word-spacing:3.240000px;}
.ws4b{word-spacing:3.300000px;}
.wse0{word-spacing:3.348000px;}
.wsc4{word-spacing:3.366000px;}
.ws9a{word-spacing:3.432000px;}
.wsdc{word-spacing:3.510000px;}
.ws58{word-spacing:3.564000px;}
.ws2b{word-spacing:3.630000px;}
.wsde{word-spacing:3.672000px;}
.ws74{word-spacing:3.696000px;}
.ws4d{word-spacing:3.762000px;}
.ws11d{word-spacing:3.780000px;}
.wse6{word-spacing:3.888000px;}
.ws2f{word-spacing:3.894000px;}
.ws101{word-spacing:3.942000px;}
.ws2d{word-spacing:3.960000px;}
.wse8{word-spacing:3.996000px;}
.ws9b{word-spacing:4.026000px;}
.ws28{word-spacing:4.092000px;}
.ws48{word-spacing:4.158000px;}
.wsd3{word-spacing:4.212000px;}
.ws70{word-spacing:4.224000px;}
.ws67{word-spacing:4.290000px;}
.ws22{word-spacing:4.356000px;}
.wsb3{word-spacing:4.422000px;}
.ws104{word-spacing:4.482000px;}
.ws72{word-spacing:4.488000px;}
.ws73{word-spacing:4.554000px;}
.wscd{word-spacing:4.620000px;}
.ws64{word-spacing:4.686000px;}
.ws30{word-spacing:4.752000px;}
.ws7a{word-spacing:4.818000px;}
.wsa4{word-spacing:4.950000px;}
.ws68{word-spacing:5.016000px;}
.wsf3{word-spacing:5.076000px;}
.ws21{word-spacing:5.082000px;}
.wse3{word-spacing:5.184000px;}
.ws36{word-spacing:5.214000px;}
.wsea{word-spacing:5.238000px;}
.ws92{word-spacing:5.346000px;}
.ws34{word-spacing:5.412000px;}
.ws86{word-spacing:5.478000px;}
.ws66{word-spacing:5.544000px;}
.ws97{word-spacing:5.562000px;}
.ws62{word-spacing:5.610000px;}
.wsfb{word-spacing:5.616000px;}
.ws100{word-spacing:5.670000px;}
.ws4e{word-spacing:5.676000px;}
.ws10f{word-spacing:5.778000px;}
.wsb0{word-spacing:5.808000px;}
.wsf9{word-spacing:5.832000px;}
.wsd4{word-spacing:5.940000px;}
.wsfe{word-spacing:5.994000px;}
.ws107{word-spacing:6.048000px;}
.wsbb{word-spacing:6.138000px;}
.ws5f{word-spacing:6.270000px;}
.ws123{word-spacing:6.318000px;}
.wsb6{word-spacing:6.402000px;}
.ws29{word-spacing:6.468000px;}
.ws110{word-spacing:6.480000px;}
.ws85{word-spacing:6.534000px;}
.ws10e{word-spacing:6.588000px;}
.ws9f{word-spacing:6.600000px;}
.ws10a{word-spacing:6.642000px;}
.wsb2{word-spacing:6.666000px;}
.ws6f{word-spacing:6.732000px;}
.ws5e{word-spacing:6.798000px;}
.wse1{word-spacing:6.966000px;}
.ws113{word-spacing:7.020000px;}
.wse2{word-spacing:7.074000px;}
.wsc1{word-spacing:7.128000px;}
.wsff{word-spacing:7.182000px;}
.wsd0{word-spacing:7.236000px;}
.ws9e{word-spacing:7.260000px;}
.wsc7{word-spacing:7.392000px;}
.wsb7{word-spacing:7.458000px;}
.ws11f{word-spacing:7.506000px;}
.wsbf{word-spacing:7.524000px;}
.wsdb{word-spacing:7.614000px;}
.wsaf{word-spacing:7.722000px;}
.ws65{word-spacing:7.788000px;}
.ws4f{word-spacing:7.920000px;}
.ws2c{word-spacing:8.118000px;}
.ws121{word-spacing:8.262000px;}
.ws82{word-spacing:8.382000px;}
.ws114{word-spacing:8.424000px;}
.wsc5{word-spacing:8.514000px;}
.ws120{word-spacing:8.640000px;}
.ws47{word-spacing:8.712000px;}
.ws91{word-spacing:8.778000px;}
.wsb5{word-spacing:8.910000px;}
.ws93{word-spacing:8.976000px;}
.wsc8{word-spacing:9.042000px;}
.wsc2{word-spacing:9.108000px;}
.wsda{word-spacing:9.180000px;}
.wsc9{word-spacing:9.240000px;}
.ws90{word-spacing:9.636000px;}
.ws116{word-spacing:9.720000px;}
.ws54{word-spacing:9.834000px;}
.wsc6{word-spacing:10.164000px;}
.wsd1{word-spacing:12.258000px;}
.wsbe{word-spacing:13.068000px;}
.ws115{word-spacing:14.148000px;}
.wscc{word-spacing:14.784000px;}
.wsd2{word-spacing:14.958000px;}
.wsca{word-spacing:21.120000px;}
.wscb{word-spacing:23.100000px;}
.ws5{word-spacing:33.639423px;}
.ws2{word-spacing:33.640023px;}
.ws0{word-spacing:33.651135px;}
.ws3{word-spacing:33.652341px;}
.ws1{word-spacing:33.652941px;}
.wsac{word-spacing:202.866000px;}
.wsae{word-spacing:247.865400px;}
.wsaa{word-spacing:350.895000px;}
.wsab{word-spacing:422.055000px;}
.wsa9{word-spacing:1359.273600px;}
._b{margin-left:-11.106600px;}
._3{margin-left:-9.672039px;}
._6{margin-left:-8.460000px;}
._39{margin-left:-7.409361px;}
._c{margin-left:-6.408600px;}
._9{margin-left:-5.030400px;}
._8{margin-left:-3.338400px;}
._1{margin-left:-2.203200px;}
._0{margin-left:-1.020000px;}
._2{width:1.101600px;}
._a{width:2.145600px;}
._29{width:3.924000px;}
._28{width:5.445000px;}
._23{width:6.821400px;}
._7{width:14.034600px;}
._5{width:15.618600px;}
._4{width:36.369600px;}
._37{width:42.546600px;}
._38{width:43.648800px;}
._25{width:188.333400px;}
._26{width:197.837400px;}
._31{width:223.045200px;}
._34{width:259.865400px;}
._27{width:265.277400px;}
._16{width:274.792200px;}
._35{width:303.707400px;}
._1a{width:395.423400px;}
._2e{width:434.055000px;}
._14{width:474.724200px;}
._2f{width:477.895800px;}
._13{width:492.760200px;}
._33{width:512.365800px;}
._d{width:527.257200px;}
._e{width:552.073800px;}
._20{width:570.088200px;}
._1d{width:588.712200px;}
._1c{width:617.656200px;}
._2b{width:652.084800px;}
._2d{width:686.554200px;}
._1b{width:723.784200px;}
._1f{width:753.205800px;}
._22{width:754.739400px;}
._12{width:775.624200px;}
._15{width:808.578600px;}
._19{width:852.659400px;}
._17{width:859.624200px;}
._2a{width:860.743200px;}
._1e{width:894.904200px;}
._18{width:898.552200px;}
._30{width:902.202600px;}
._f{width:913.048200px;}
._36{width:919.648200px;}
._21{width:967.792800px;}
._11{width:973.427400px;}
._32{width:1022.896200px;}
._10{width:1051.528200px;}
._2c{width:1197.084600px;}
._24{width:1201.225800px;}
.fc3{color:rgb(67,33,78);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:22.096800px;}
.fs8{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fsa{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y36{bottom:1.204950px;}
.y37{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y3d{bottom:71.212050px;}
.y3e{bottom:75.036150px;}
.yb7{bottom:113.078700px;}
.y6c{bottom:113.078850px;}
.yf9{bottom:117.103950px;}
.y27{bottom:117.197850px;}
.y121{bottom:117.954300px;}
.yfe{bottom:120.500700px;}
.y32{bottom:126.687750px;}
.y26{bottom:131.597850px;}
.yf8{bottom:132.103950px;}
.yb6{bottom:134.078700px;}
.y6b{bottom:134.078850px;}
.y120{bottom:139.410150px;}
.yfd{bottom:140.300700px;}
.y25{bottom:145.997850px;}
.y31{bottom:146.487750px;}
.yf7{bottom:152.709300px;}
.yb5{bottom:155.078700px;}
.y6a{bottom:155.078850px;}
.yfc{bottom:160.100700px;}
.y24{bottom:160.397850px;}
.y11f{bottom:160.865850px;}
.y30{bottom:166.287750px;}
.yf6{bottom:167.709300px;}
.yb4{bottom:176.078700px;}
.y69{bottom:176.078850px;}
.y11e{bottom:182.321700px;}
.yf5{bottom:182.709300px;}
.y2f{bottom:186.087750px;}
.yb3{bottom:197.078700px;}
.y68{bottom:197.078850px;}
.yf4{bottom:197.709300px;}
.y3c{bottom:203.413650px;}
.y11d{bottom:203.777550px;}
.y2e{bottom:205.887750px;}
.yb2{bottom:218.078700px;}
.y67{bottom:218.078850px;}
.yf3{bottom:218.314800px;}
.y3b{bottom:221.413650px;}
.y11c{bottom:225.233250px;}
.y2d{bottom:225.687750px;}
.yf2{bottom:233.314800px;}
.yb1{bottom:239.078700px;}
.y66{bottom:239.078850px;}
.y3a{bottom:239.413650px;}
.y2c{bottom:245.487750px;}
.y11b{bottom:246.689100px;}
.yf1{bottom:248.314800px;}
.y39{bottom:257.413650px;}
.ye1{bottom:260.078700px;}
.y65{bottom:260.078850px;}
.yf0{bottom:263.314800px;}
.y2b{bottom:265.287750px;}
.y11a{bottom:268.144950px;}
.ye0{bottom:281.078700px;}
.y64{bottom:281.078850px;}
.yef{bottom:283.920150px;}
.y2a{bottom:285.087750px;}
.yb0{bottom:288.555300px;}
.y119{bottom:289.600650px;}
.ydf{bottom:302.078700px;}
.y63{bottom:302.078850px;}
.yaf{bottom:303.555300px;}
.y118{bottom:311.056500px;}
.yee{bottom:314.101950px;}
.y29{bottom:316.185300px;}
.yde{bottom:323.078700px;}
.y62{bottom:323.078850px;}
.yae{bottom:324.160650px;}
.y117{bottom:332.512350px;}
.yed{bottom:333.901950px;}
.ydd{bottom:344.078700px;}
.y61{bottom:344.078850px;}
.yad{bottom:344.766150px;}
.y116{bottom:353.968050px;}
.y122{bottom:358.441050px;}
.ydc{bottom:365.078700px;}
.y60{bottom:365.078850px;}
.yac{bottom:365.371500px;}
.y115{bottom:375.423900px;}
.yab{bottom:380.371500px;}
.ydb{bottom:386.078700px;}
.y5f{bottom:386.078850px;}
.y23{bottom:395.679450px;}
.y114{bottom:396.879750px;}
.yaa{bottom:400.976850px;}
.ya9{bottom:406.582350px;}
.yda{bottom:407.078700px;}
.y5e{bottom:407.078850px;}
.y12a{bottom:412.529250px;}
.y22{bottom:413.679450px;}
.y113{bottom:418.335450px;}
.ya8{bottom:421.582350px;}
.yd9{bottom:428.078700px;}
.y5d{bottom:428.078850px;}
.y21{bottom:431.679450px;}
.y112{bottom:439.791300px;}
.ya7{bottom:442.187700px;}
.yd8{bottom:449.078700px;}
.y5c{bottom:449.078850px;}
.y20{bottom:449.679450px;}
.ya6{bottom:457.187700px;}
.y111{bottom:461.247000px;}
.y1f{bottom:467.679450px;}
.yd7{bottom:470.078700px;}
.y5b{bottom:470.078850px;}
.ya5{bottom:477.793050px;}
.y110{bottom:482.702850px;}
.ya4{bottom:483.398550px;}
.y1e{bottom:485.679450px;}
.yd6{bottom:491.078700px;}
.y5a{bottom:491.078850px;}
.ya3{bottom:498.398550px;}
.y1d{bottom:503.679450px;}
.yd5{bottom:512.078700px;}
.y59{bottom:512.078850px;}
.y10f{bottom:514.585350px;}
.ya2{bottom:519.003900px;}
.y1c{bottom:521.679450px;}
.y105{bottom:525.052200px;}
.yd4{bottom:533.078700px;}
.y58{bottom:533.078850px;}
.ya1{bottom:534.003900px;}
.y10e{bottom:534.385500px;}
.y129{bottom:538.529250px;}
.y1b{bottom:539.679450px;}
.y104{bottom:544.852200px;}
.yd3{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.y10d{bottom:554.185350px;}
.ya0{bottom:554.609250px;}
.y1a{bottom:557.679450px;}
.y103{bottom:564.652200px;}
.y9f{bottom:569.609250px;}
.y10c{bottom:573.985500px;}
.yd2{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.y19{bottom:575.679450px;}
.y102{bottom:575.951850px;}
.y10a{bottom:589.441050px;}
.y9e{bottom:590.214750px;}
.y18{bottom:593.679450px;}
.y101{bottom:595.751850px;}
.y9d{bottom:595.820100px;}
.yd1{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y9c{bottom:610.820100px;}
.y17{bottom:611.679450px;}
.y100{bottom:615.551850px;}
.yd0{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.y9b{bottom:625.820100px;}
.y16{bottom:629.679450px;}
.yff{bottom:635.351850px;}
.ycf{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.y9a{bottom:646.425450px;}
.y15{bottom:647.679450px;}
.yce{bottom:659.078700px;}
.y52{bottom:659.078850px;}
.y14{bottom:665.679450px;}
.y99{bottom:667.030950px;}
.ycd{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.y98{bottom:682.030950px;}
.y13{bottom:683.679450px;}
.ycc{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.y12{bottom:701.679450px;}
.y97{bottom:702.636300px;}
.y96{bottom:708.241650px;}
.y11{bottom:719.679450px;}
.ycb{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.y95{bottom:723.241650px;}
.y10{bottom:737.679450px;}
.yca{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.y94{bottom:743.847150px;}
.y12f{bottom:746.078850px;}
.yf{bottom:755.679450px;}
.y93{bottom:758.847150px;}
.yc9{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.ye{bottom:773.679450px;}
.y92{bottom:779.452500px;}
.yc8{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.y128{bottom:790.529250px;}
.yd{bottom:791.679450px;}
.y91{bottom:794.452500px;}
.yc7{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.y7f{bottom:807.953850px;}
.yc{bottom:809.679450px;}
.y90{bottom:815.057850px;}
.y7e{bottom:825.953850px;}
.yc6{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.yb{bottom:827.679450px;}
.y8f{bottom:830.057850px;}
.y12c{bottom:841.441050px;}
.y7d{bottom:843.953850px;}
.ya{bottom:845.679450px;}
.yc5{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.y8e{bottom:850.663350px;}
.y127{bottom:853.529250px;}
.y7c{bottom:861.953850px;}
.yc4{bottom:869.078700px;}
.yec{bottom:869.078850px;}
.y8d{bottom:871.268700px;}
.y7b{bottom:879.953850px;}
.y9{bottom:880.687350px;}
.y48{bottom:883.399950px;}
.yc3{bottom:890.078700px;}
.yeb{bottom:890.078850px;}
.y8c{bottom:891.874200px;}
.y7a{bottom:897.953850px;}
.y8{bottom:900.487350px;}
.yc2{bottom:911.078700px;}
.yea{bottom:911.078850px;}
.y8b{bottom:912.479550px;}
.y79{bottom:915.953850px;}
.y126{bottom:916.529250px;}
.y7{bottom:920.287350px;}
.y8a{bottom:927.479550px;}
.yc1{bottom:932.078700px;}
.ye9{bottom:932.078850px;}
.y78{bottom:933.953850px;}
.y12b{bottom:937.529250px;}
.y6{bottom:940.087350px;}
.yfb{bottom:946.441050px;}
.y89{bottom:948.084900px;}
.y77{bottom:951.953850px;}
.yc0{bottom:953.078700px;}
.y109{bottom:953.078850px;}
.y5{bottom:959.887350px;}
.ye8{bottom:967.441050px;}
.y88{bottom:968.690400px;}
.y76{bottom:969.953850px;}
.y47{bottom:972.431550px;}
.ybf{bottom:974.078700px;}
.y108{bottom:974.078850px;}
.y87{bottom:974.295750px;}
.y4{bottom:979.687350px;}
.y125{bottom:979.936950px;}
.y75{bottom:987.953850px;}
.y10b{bottom:988.441050px;}
.y86{bottom:989.295750px;}
.ybe{bottom:995.078700px;}
.yfa{bottom:995.078850px;}
.y74{bottom:1005.953850px;}
.y124{bottom:1009.440900px;}
.y85{bottom:1009.901250px;}
.y46{bottom:1013.491350px;}
.ybd{bottom:1016.078700px;}
.ye7{bottom:1016.078850px;}
.y3{bottom:1016.495250px;}
.y73{bottom:1023.953850px;}
.y45{bottom:1033.291500px;}
.ybc{bottom:1037.078700px;}
.ye6{bottom:1037.078850px;}
.y84{bottom:1040.082900px;}
.y72{bottom:1041.953850px;}
.y2{bottom:1049.495250px;}
.y44{bottom:1053.091500px;}
.ybb{bottom:1058.078700px;}
.ye5{bottom:1058.078850px;}
.y83{bottom:1059.882900px;}
.y71{bottom:1059.953850px;}
.y43{bottom:1072.891350px;}
.y70{bottom:1077.953850px;}
.yba{bottom:1079.078700px;}
.ye4{bottom:1079.078850px;}
.y82{bottom:1079.682900px;}
.y12e{bottom:1083.525300px;}
.y107{bottom:1089.903300px;}
.y42{bottom:1092.691350px;}
.y6f{bottom:1095.953850px;}
.y81{bottom:1099.482900px;}
.yb9{bottom:1100.078700px;}
.ye3{bottom:1100.078850px;}
.y28{bottom:1109.815500px;}
.y123{bottom:1111.570800px;}
.y41{bottom:1112.491350px;}
.y6e{bottom:1113.953850px;}
.y12d{bottom:1115.822850px;}
.y80{bottom:1119.282900px;}
.yb8{bottom:1121.078700px;}
.ye2{bottom:1121.078850px;}
.y106{bottom:1122.200850px;}
.y6d{bottom:1131.953850px;}
.y40{bottom:1132.291500px;}
.y35{bottom:1135.732500px;}
.y38{bottom:1152.015600px;}
.y34{bottom:1159.189500px;}
.y33{bottom:1178.689500px;}
.y3f{bottom:1178.691750px;}
.hb{height:16.788389px;}
.h12{height:34.320000px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h6{height:39.044531px;}
.h7{height:40.500000px;}
.h13{height:40.944000px;}
.h15{height:42.900000px;}
.he{height:43.321289px;}
.hf{height:43.382812px;}
.h8{height:45.615234px;}
.h9{height:46.062000px;}
.hd{height:48.805664px;}
.h14{height:50.176758px;}
.ha{height:50.566500px;}
.h10{height:54.738281px;}
.h11{height:56.298000px;}
.h4{height:59.490234px;}
.h3{height:76.500000px;}
.hc{height:80.825130px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992250px;}
.xd{left:107.068950px;}
.xe{left:108.286950px;}
.x9{left:111.091350px;}
.x10{left:112.251900px;}
.xa{left:119.878950px;}
.xb{left:122.032500px;}
.xc{left:124.102950px;}
.xf{left:136.688400px;}
.x13{left:197.291250px;}
.x11{left:264.726900px;}
.x5{left:300.189000px;}
.x14{left:304.440900px;}
.x6{left:317.196900px;}
.x4{left:379.689900px;}
.x12{left:545.356950px;}
.x15{left:623.644350px;}
.x8{left:651.920850px;}
.x7{left:672.545850px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.lsc{letter-spacing:-2.218667pt;}
.ls13{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsd{letter-spacing:-0.478837pt;}
.ls9{letter-spacing:-0.391776pt;}
.ls16{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.170667pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.149333pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010133pt;}
.ls12{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022400pt;}
.lsa{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.762667pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws19{word-spacing:-15.936000pt;}
.ws49{word-spacing:-14.666667pt;}
.ws98{word-spacing:-14.608000pt;}
.wsb{word-spacing:-13.280000pt;}
.wscf{word-spacing:-12.000000pt;}
.ws11b{word-spacing:-11.520000pt;}
.wse{word-spacing:-10.992000pt;}
.ws1a{word-spacing:-10.800000pt;}
.ws40{word-spacing:-10.666667pt;}
.ws3f{word-spacing:-10.240000pt;}
.ws9{word-spacing:-9.685333pt;}
.wsad{word-spacing:-9.472000pt;}
.ws7{word-spacing:-8.997333pt;}
.wsa{word-spacing:-8.793600pt;}
.ws6{word-spacing:-8.549333pt;}
.ws4{word-spacing:-8.482261pt;}
.ws8{word-spacing:-8.400000pt;}
.ws4a{word-spacing:-8.071829pt;}
.ws41{word-spacing:-8.021333pt;}
.wsc{word-spacing:-6.604224pt;}
.ws55{word-spacing:-4.634667pt;}
.ws117{word-spacing:-3.024000pt;}
.ws106{word-spacing:-2.880000pt;}
.ws76{word-spacing:-2.816000pt;}
.ws3d{word-spacing:-2.757333pt;}
.ws105{word-spacing:-2.736000pt;}
.wsa8{word-spacing:-2.698667pt;}
.ws61{word-spacing:-2.640000pt;}
.ws51{word-spacing:-2.522667pt;}
.ws24{word-spacing:-2.464000pt;}
.ws6d{word-spacing:-2.405333pt;}
.ws15{word-spacing:-2.352000pt;}
.ws6e{word-spacing:-2.346667pt;}
.wsdf{word-spacing:-2.256000pt;}
.ws23{word-spacing:-2.229333pt;}
.ws59{word-spacing:-2.170667pt;}
.ws96{word-spacing:-2.160000pt;}
.ws75{word-spacing:-2.112000pt;}
.ws56{word-spacing:-1.994667pt;}
.wsf5{word-spacing:-1.968000pt;}
.ws81{word-spacing:-1.936000pt;}
.ws44{word-spacing:-1.920000pt;}
.wsf8{word-spacing:-1.824000pt;}
.ws3a{word-spacing:-1.818667pt;}
.ws7f{word-spacing:-1.760000pt;}
.wse5{word-spacing:-1.728000pt;}
.ws99{word-spacing:-1.701333pt;}
.wsed{word-spacing:-1.680000pt;}
.ws69{word-spacing:-1.642667pt;}
.ws94{word-spacing:-1.632000pt;}
.ws13{word-spacing:-1.584000pt;}
.ws11a{word-spacing:-1.536000pt;}
.ws39{word-spacing:-1.525333pt;}
.ws57{word-spacing:-1.466667pt;}
.wse4{word-spacing:-1.440000pt;}
.ws77{word-spacing:-1.349333pt;}
.wsf7{word-spacing:-1.344000pt;}
.ws11e{word-spacing:-1.296000pt;}
.ws3c{word-spacing:-1.290667pt;}
.wsa7{word-spacing:-1.232000pt;}
.ws10c{word-spacing:-1.200000pt;}
.ws6b{word-spacing:-1.173333pt;}
.ws84{word-spacing:-1.114667pt;}
.ws43{word-spacing:-1.104000pt;}
.wsb9{word-spacing:-1.056000pt;}
.ws60{word-spacing:-0.997333pt;}
.ws17{word-spacing:-0.960000pt;}
.ws7d{word-spacing:-0.938667pt;}
.ws111{word-spacing:-0.912000pt;}
.ws16{word-spacing:-0.864000pt;}
.ws27{word-spacing:-0.821333pt;}
.ws118{word-spacing:-0.816000pt;}
.ws7e{word-spacing:-0.762667pt;}
.wsd9{word-spacing:-0.720000pt;}
.ws80{word-spacing:-0.704000pt;}
.wsf1{word-spacing:-0.672000pt;}
.wsce{word-spacing:-0.645333pt;}
.wsfd{word-spacing:-0.624000pt;}
.ws79{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.528000pt;}
.wsef{word-spacing:-0.480000pt;}
.ws25{word-spacing:-0.469333pt;}
.ws83{word-spacing:-0.410667pt;}
.ws18{word-spacing:-0.384000pt;}
.wsa3{word-spacing:-0.352000pt;}
.wsbc{word-spacing:-0.293333pt;}
.wsfa{word-spacing:-0.240000pt;}
.ws20{word-spacing:-0.234667pt;}
.ws10{word-spacing:-0.192000pt;}
.wsa2{word-spacing:-0.176000pt;}
.ws42{word-spacing:-0.144000pt;}
.wsd{word-spacing:-0.098949pt;}
.ws7c{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.058667pt;}
.wsf{word-spacing:0.000000pt;}
.ws95{word-spacing:0.048000pt;}
.ws2a{word-spacing:0.058667pt;}
.ws11c{word-spacing:0.160000pt;}
.ws31{word-spacing:0.176000pt;}
.wsb8{word-spacing:0.192000pt;}
.wsb1{word-spacing:0.234667pt;}
.wsd7{word-spacing:0.288000pt;}
.wse7{word-spacing:0.336000pt;}
.wsf6{word-spacing:0.384000pt;}
.ws35{word-spacing:0.410667pt;}
.ws112{word-spacing:0.432000pt;}
.ws3b{word-spacing:0.469333pt;}
.wsd5{word-spacing:0.480000pt;}
.ws38{word-spacing:0.528000pt;}
.wsa5{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.wsd6{word-spacing:0.624000pt;}
.ws7b{word-spacing:0.645333pt;}
.ws9c{word-spacing:0.704000pt;}
.wsdd{word-spacing:0.720000pt;}
.ws6a{word-spacing:0.762667pt;}
.ws103{word-spacing:0.768000pt;}
.ws8d{word-spacing:0.821333pt;}
.ws10d{word-spacing:0.864000pt;}
.wsa1{word-spacing:0.880000pt;}
.wsec{word-spacing:0.912000pt;}
.ws108{word-spacing:0.960000pt;}
.wsba{word-spacing:0.997333pt;}
.ws119{word-spacing:1.008000pt;}
.ws50{word-spacing:1.056000pt;}
.ws45{word-spacing:1.114667pt;}
.ws71{word-spacing:1.173333pt;}
.wsf4{word-spacing:1.200000pt;}
.ws52{word-spacing:1.232000pt;}
.wsfc{word-spacing:1.248000pt;}
.ws10b{word-spacing:1.296000pt;}
.ws1e{word-spacing:1.344000pt;}
.ws5b{word-spacing:1.349333pt;}
.ws102{word-spacing:1.392000pt;}
.ws32{word-spacing:1.408000pt;}
.wsa6{word-spacing:1.466667pt;}
.ws78{word-spacing:1.525333pt;}
.ws8c{word-spacing:1.536000pt;}
.ws8f{word-spacing:1.584000pt;}
.ws12{word-spacing:1.680000pt;}
.ws9d{word-spacing:1.701333pt;}
.ws89{word-spacing:1.728000pt;}
.ws46{word-spacing:1.760000pt;}
.ws8a{word-spacing:1.776000pt;}
.wsc0{word-spacing:1.818667pt;}
.ws1b{word-spacing:1.824000pt;}
.ws1d{word-spacing:1.872000pt;}
.ws8e{word-spacing:1.877333pt;}
.ws87{word-spacing:1.920000pt;}
.wsbd{word-spacing:1.936000pt;}
.ws14{word-spacing:1.968000pt;}
.wsc3{word-spacing:1.994667pt;}
.wsa0{word-spacing:2.053333pt;}
.ws5c{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.160000pt;}
.ws5a{word-spacing:2.170667pt;}
.ws8b{word-spacing:2.208000pt;}
.ws6c{word-spacing:2.229333pt;}
.ws88{word-spacing:2.256000pt;}
.ws26{word-spacing:2.346667pt;}
.ws122{word-spacing:2.352000pt;}
.wsd8{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.405333pt;}
.wsb4{word-spacing:2.464000pt;}
.ws109{word-spacing:2.496000pt;}
.ws37{word-spacing:2.522667pt;}
.wsf0{word-spacing:2.544000pt;}
.wseb{word-spacing:2.592000pt;}
.ws4c{word-spacing:2.640000pt;}
.wsf2{word-spacing:2.688000pt;}
.ws53{word-spacing:2.698667pt;}
.wsee{word-spacing:2.736000pt;}
.ws2e{word-spacing:2.757333pt;}
.ws33{word-spacing:2.816000pt;}
.ws5d{word-spacing:2.874667pt;}
.wse9{word-spacing:2.880000pt;}
.ws4b{word-spacing:2.933333pt;}
.wse0{word-spacing:2.976000pt;}
.wsc4{word-spacing:2.992000pt;}
.ws9a{word-spacing:3.050667pt;}
.wsdc{word-spacing:3.120000pt;}
.ws58{word-spacing:3.168000pt;}
.ws2b{word-spacing:3.226667pt;}
.wsde{word-spacing:3.264000pt;}
.ws74{word-spacing:3.285333pt;}
.ws4d{word-spacing:3.344000pt;}
.ws11d{word-spacing:3.360000pt;}
.wse6{word-spacing:3.456000pt;}
.ws2f{word-spacing:3.461333pt;}
.ws101{word-spacing:3.504000pt;}
.ws2d{word-spacing:3.520000pt;}
.wse8{word-spacing:3.552000pt;}
.ws9b{word-spacing:3.578667pt;}
.ws28{word-spacing:3.637333pt;}
.ws48{word-spacing:3.696000pt;}
.wsd3{word-spacing:3.744000pt;}
.ws70{word-spacing:3.754667pt;}
.ws67{word-spacing:3.813333pt;}
.ws22{word-spacing:3.872000pt;}
.wsb3{word-spacing:3.930667pt;}
.ws104{word-spacing:3.984000pt;}
.ws72{word-spacing:3.989333pt;}
.ws73{word-spacing:4.048000pt;}
.wscd{word-spacing:4.106667pt;}
.ws64{word-spacing:4.165333pt;}
.ws30{word-spacing:4.224000pt;}
.ws7a{word-spacing:4.282667pt;}
.wsa4{word-spacing:4.400000pt;}
.ws68{word-spacing:4.458667pt;}
.wsf3{word-spacing:4.512000pt;}
.ws21{word-spacing:4.517333pt;}
.wse3{word-spacing:4.608000pt;}
.ws36{word-spacing:4.634667pt;}
.wsea{word-spacing:4.656000pt;}
.ws92{word-spacing:4.752000pt;}
.ws34{word-spacing:4.810667pt;}
.ws86{word-spacing:4.869333pt;}
.ws66{word-spacing:4.928000pt;}
.ws97{word-spacing:4.944000pt;}
.ws62{word-spacing:4.986667pt;}
.wsfb{word-spacing:4.992000pt;}
.ws100{word-spacing:5.040000pt;}
.ws4e{word-spacing:5.045333pt;}
.ws10f{word-spacing:5.136000pt;}
.wsb0{word-spacing:5.162667pt;}
.wsf9{word-spacing:5.184000pt;}
.wsd4{word-spacing:5.280000pt;}
.wsfe{word-spacing:5.328000pt;}
.ws107{word-spacing:5.376000pt;}
.wsbb{word-spacing:5.456000pt;}
.ws5f{word-spacing:5.573333pt;}
.ws123{word-spacing:5.616000pt;}
.wsb6{word-spacing:5.690667pt;}
.ws29{word-spacing:5.749333pt;}
.ws110{word-spacing:5.760000pt;}
.ws85{word-spacing:5.808000pt;}
.ws10e{word-spacing:5.856000pt;}
.ws9f{word-spacing:5.866667pt;}
.ws10a{word-spacing:5.904000pt;}
.wsb2{word-spacing:5.925333pt;}
.ws6f{word-spacing:5.984000pt;}
.ws5e{word-spacing:6.042667pt;}
.wse1{word-spacing:6.192000pt;}
.ws113{word-spacing:6.240000pt;}
.wse2{word-spacing:6.288000pt;}
.wsc1{word-spacing:6.336000pt;}
.wsff{word-spacing:6.384000pt;}
.wsd0{word-spacing:6.432000pt;}
.ws9e{word-spacing:6.453333pt;}
.wsc7{word-spacing:6.570667pt;}
.wsb7{word-spacing:6.629333pt;}
.ws11f{word-spacing:6.672000pt;}
.wsbf{word-spacing:6.688000pt;}
.wsdb{word-spacing:6.768000pt;}
.wsaf{word-spacing:6.864000pt;}
.ws65{word-spacing:6.922667pt;}
.ws4f{word-spacing:7.040000pt;}
.ws2c{word-spacing:7.216000pt;}
.ws121{word-spacing:7.344000pt;}
.ws82{word-spacing:7.450667pt;}
.ws114{word-spacing:7.488000pt;}
.wsc5{word-spacing:7.568000pt;}
.ws120{word-spacing:7.680000pt;}
.ws47{word-spacing:7.744000pt;}
.ws91{word-spacing:7.802667pt;}
.wsb5{word-spacing:7.920000pt;}
.ws93{word-spacing:7.978667pt;}
.wsc8{word-spacing:8.037333pt;}
.wsc2{word-spacing:8.096000pt;}
.wsda{word-spacing:8.160000pt;}
.wsc9{word-spacing:8.213333pt;}
.ws90{word-spacing:8.565333pt;}
.ws116{word-spacing:8.640000pt;}
.ws54{word-spacing:8.741333pt;}
.wsc6{word-spacing:9.034667pt;}
.wsd1{word-spacing:10.896000pt;}
.wsbe{word-spacing:11.616000pt;}
.ws115{word-spacing:12.576000pt;}
.wscc{word-spacing:13.141333pt;}
.wsd2{word-spacing:13.296000pt;}
.wsca{word-spacing:18.773333pt;}
.wscb{word-spacing:20.533333pt;}
.ws5{word-spacing:29.901709pt;}
.ws2{word-spacing:29.902243pt;}
.ws0{word-spacing:29.912120pt;}
.ws3{word-spacing:29.913192pt;}
.ws1{word-spacing:29.913725pt;}
.wsac{word-spacing:180.325333pt;}
.wsae{word-spacing:220.324800pt;}
.wsaa{word-spacing:311.906667pt;}
.wsab{word-spacing:375.160000pt;}
.wsa9{word-spacing:1208.243200pt;}
._b{margin-left:-9.872533pt;}
._3{margin-left:-8.597368pt;}
._6{margin-left:-7.520000pt;}
._39{margin-left:-6.586099pt;}
._c{margin-left:-5.696533pt;}
._9{margin-left:-4.471467pt;}
._8{margin-left:-2.967467pt;}
._1{margin-left:-1.958400pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.979200pt;}
._a{width:1.907200pt;}
._29{width:3.488000pt;}
._28{width:4.840000pt;}
._23{width:6.063467pt;}
._7{width:12.475200pt;}
._5{width:13.883200pt;}
._4{width:32.328533pt;}
._37{width:37.819200pt;}
._38{width:38.798933pt;}
._25{width:167.407467pt;}
._26{width:175.855467pt;}
._31{width:198.262400pt;}
._34{width:230.991467pt;}
._27{width:235.802133pt;}
._16{width:244.259733pt;}
._35{width:269.962133pt;}
._1a{width:351.487467pt;}
._2e{width:385.826667pt;}
._14{width:421.977067pt;}
._2f{width:424.796267pt;}
._13{width:438.009067pt;}
._33{width:455.436267pt;}
._d{width:468.673067pt;}
._e{width:490.732267pt;}
._20{width:506.745067pt;}
._1d{width:523.299733pt;}
._1c{width:549.027733pt;}
._2b{width:579.630933pt;}
._2d{width:610.270400pt;}
._1b{width:643.363733pt;}
._1f{width:669.516267pt;}
._22{width:670.879467pt;}
._12{width:689.443733pt;}
._15{width:718.736533pt;}
._19{width:757.919467pt;}
._17{width:764.110400pt;}
._2a{width:765.105067pt;}
._1e{width:795.470400pt;}
._18{width:798.713067pt;}
._30{width:801.957867pt;}
._f{width:811.598400pt;}
._36{width:817.465067pt;}
._21{width:860.260267pt;}
._11{width:865.268800pt;}
._32{width:909.241067pt;}
._10{width:934.691733pt;}
._2c{width:1064.075200pt;}
._24{width:1067.756267pt;}
.fs9{font-size:19.641600pt;}
.fs8{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fsa{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:1.071067pt;}
.y37{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y3d{bottom:63.299600pt;}
.y3e{bottom:66.698800pt;}
.yb7{bottom:100.514400pt;}
.y6c{bottom:100.514533pt;}
.yf9{bottom:104.092400pt;}
.y27{bottom:104.175867pt;}
.y121{bottom:104.848267pt;}
.yfe{bottom:107.111733pt;}
.y32{bottom:112.611333pt;}
.y26{bottom:116.975867pt;}
.yf8{bottom:117.425733pt;}
.yb6{bottom:119.181067pt;}
.y6b{bottom:119.181200pt;}
.y120{bottom:123.920133pt;}
.yfd{bottom:124.711733pt;}
.y25{bottom:129.775867pt;}
.y31{bottom:130.211333pt;}
.yf7{bottom:135.741600pt;}
.yb5{bottom:137.847733pt;}
.y6a{bottom:137.847867pt;}
.yfc{bottom:142.311733pt;}
.y24{bottom:142.575867pt;}
.y11f{bottom:142.991867pt;}
.y30{bottom:147.811333pt;}
.yf6{bottom:149.074933pt;}
.yb4{bottom:156.514400pt;}
.y69{bottom:156.514533pt;}
.y11e{bottom:162.063733pt;}
.yf5{bottom:162.408267pt;}
.y2f{bottom:165.411333pt;}
.yb3{bottom:175.181067pt;}
.y68{bottom:175.181200pt;}
.yf4{bottom:175.741600pt;}
.y3c{bottom:180.812133pt;}
.y11d{bottom:181.135600pt;}
.y2e{bottom:183.011333pt;}
.yb2{bottom:193.847733pt;}
.y67{bottom:193.847867pt;}
.yf3{bottom:194.057600pt;}
.y3b{bottom:196.812133pt;}
.y11c{bottom:200.207333pt;}
.y2d{bottom:200.611333pt;}
.yf2{bottom:207.390933pt;}
.yb1{bottom:212.514400pt;}
.y66{bottom:212.514533pt;}
.y3a{bottom:212.812133pt;}
.y2c{bottom:218.211333pt;}
.y11b{bottom:219.279200pt;}
.yf1{bottom:220.724267pt;}
.y39{bottom:228.812133pt;}
.ye1{bottom:231.181067pt;}
.y65{bottom:231.181200pt;}
.yf0{bottom:234.057600pt;}
.y2b{bottom:235.811333pt;}
.y11a{bottom:238.351067pt;}
.ye0{bottom:249.847733pt;}
.y64{bottom:249.847867pt;}
.yef{bottom:252.373467pt;}
.y2a{bottom:253.411333pt;}
.yb0{bottom:256.493600pt;}
.y119{bottom:257.422800pt;}
.ydf{bottom:268.514400pt;}
.y63{bottom:268.514533pt;}
.yaf{bottom:269.826933pt;}
.y118{bottom:276.494667pt;}
.yee{bottom:279.201733pt;}
.y29{bottom:281.053600pt;}
.yde{bottom:287.181067pt;}
.y62{bottom:287.181200pt;}
.yae{bottom:288.142800pt;}
.y117{bottom:295.566533pt;}
.yed{bottom:296.801733pt;}
.ydd{bottom:305.847733pt;}
.y61{bottom:305.847867pt;}
.yad{bottom:306.458800pt;}
.y116{bottom:314.638267pt;}
.y122{bottom:318.614267pt;}
.ydc{bottom:324.514400pt;}
.y60{bottom:324.514533pt;}
.yac{bottom:324.774667pt;}
.y115{bottom:333.710133pt;}
.yab{bottom:338.108000pt;}
.ydb{bottom:343.181067pt;}
.y5f{bottom:343.181200pt;}
.y23{bottom:351.715067pt;}
.y114{bottom:352.782000pt;}
.yaa{bottom:356.423867pt;}
.ya9{bottom:361.406533pt;}
.yda{bottom:361.847733pt;}
.y5e{bottom:361.847867pt;}
.y12a{bottom:366.692667pt;}
.y22{bottom:367.715067pt;}
.y113{bottom:371.853733pt;}
.ya8{bottom:374.739867pt;}
.yd9{bottom:380.514400pt;}
.y5d{bottom:380.514533pt;}
.y21{bottom:383.715067pt;}
.y112{bottom:390.925600pt;}
.ya7{bottom:393.055733pt;}
.yd8{bottom:399.181067pt;}
.y5c{bottom:399.181200pt;}
.y20{bottom:399.715067pt;}
.ya6{bottom:406.389067pt;}
.y111{bottom:409.997333pt;}
.y1f{bottom:415.715067pt;}
.yd7{bottom:417.847733pt;}
.y5b{bottom:417.847867pt;}
.ya5{bottom:424.704933pt;}
.y110{bottom:429.069200pt;}
.ya4{bottom:429.687600pt;}
.y1e{bottom:431.715067pt;}
.yd6{bottom:436.514400pt;}
.y5a{bottom:436.514533pt;}
.ya3{bottom:443.020933pt;}
.y1d{bottom:447.715067pt;}
.yd5{bottom:455.181067pt;}
.y59{bottom:455.181200pt;}
.y10f{bottom:457.409200pt;}
.ya2{bottom:461.336800pt;}
.y1c{bottom:463.715067pt;}
.y105{bottom:466.713067pt;}
.yd4{bottom:473.847733pt;}
.y58{bottom:473.847867pt;}
.ya1{bottom:474.670133pt;}
.y10e{bottom:475.009333pt;}
.y129{bottom:478.692667pt;}
.y1b{bottom:479.715067pt;}
.y104{bottom:484.313067pt;}
.yd3{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.y10d{bottom:492.609200pt;}
.ya0{bottom:492.986000pt;}
.y1a{bottom:495.715067pt;}
.y103{bottom:501.913067pt;}
.y9f{bottom:506.319333pt;}
.y10c{bottom:510.209333pt;}
.yd2{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.y19{bottom:511.715067pt;}
.y102{bottom:511.957200pt;}
.y10a{bottom:523.947600pt;}
.y9e{bottom:524.635333pt;}
.y18{bottom:527.715067pt;}
.y101{bottom:529.557200pt;}
.y9d{bottom:529.617867pt;}
.yd1{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y9c{bottom:542.951200pt;}
.y17{bottom:543.715067pt;}
.y100{bottom:547.157200pt;}
.yd0{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.y9b{bottom:556.284533pt;}
.y16{bottom:559.715067pt;}
.yff{bottom:564.757200pt;}
.ycf{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.y9a{bottom:574.600400pt;}
.y15{bottom:575.715067pt;}
.yce{bottom:585.847733pt;}
.y52{bottom:585.847867pt;}
.y14{bottom:591.715067pt;}
.y99{bottom:592.916400pt;}
.ycd{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.y98{bottom:606.249733pt;}
.y13{bottom:607.715067pt;}
.ycc{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.y12{bottom:623.715067pt;}
.y97{bottom:624.565600pt;}
.y96{bottom:629.548133pt;}
.y11{bottom:639.715067pt;}
.ycb{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.y95{bottom:642.881467pt;}
.y10{bottom:655.715067pt;}
.yca{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.y94{bottom:661.197467pt;}
.y12f{bottom:663.181200pt;}
.yf{bottom:671.715067pt;}
.y93{bottom:674.530800pt;}
.yc9{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.ye{bottom:687.715067pt;}
.y92{bottom:692.846667pt;}
.yc8{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.y128{bottom:702.692667pt;}
.yd{bottom:703.715067pt;}
.y91{bottom:706.180000pt;}
.yc7{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.y7f{bottom:718.181200pt;}
.yc{bottom:719.715067pt;}
.y90{bottom:724.495867pt;}
.y7e{bottom:734.181200pt;}
.yc6{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.yb{bottom:735.715067pt;}
.y8f{bottom:737.829200pt;}
.y12c{bottom:747.947600pt;}
.y7d{bottom:750.181200pt;}
.ya{bottom:751.715067pt;}
.yc5{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.y8e{bottom:756.145200pt;}
.y127{bottom:758.692667pt;}
.y7c{bottom:766.181200pt;}
.yc4{bottom:772.514400pt;}
.yec{bottom:772.514533pt;}
.y8d{bottom:774.461067pt;}
.y7b{bottom:782.181200pt;}
.y9{bottom:782.833200pt;}
.y48{bottom:785.244400pt;}
.yc3{bottom:791.181067pt;}
.yeb{bottom:791.181200pt;}
.y8c{bottom:792.777067pt;}
.y7a{bottom:798.181200pt;}
.y8{bottom:800.433200pt;}
.yc2{bottom:809.847733pt;}
.yea{bottom:809.847867pt;}
.y8b{bottom:811.092933pt;}
.y79{bottom:814.181200pt;}
.y126{bottom:814.692667pt;}
.y7{bottom:818.033200pt;}
.y8a{bottom:824.426267pt;}
.yc1{bottom:828.514400pt;}
.ye9{bottom:828.514533pt;}
.y78{bottom:830.181200pt;}
.y12b{bottom:833.359333pt;}
.y6{bottom:835.633200pt;}
.yfb{bottom:841.280933pt;}
.y89{bottom:842.742133pt;}
.y77{bottom:846.181200pt;}
.yc0{bottom:847.181067pt;}
.y109{bottom:847.181200pt;}
.y5{bottom:853.233200pt;}
.ye8{bottom:859.947600pt;}
.y88{bottom:861.058133pt;}
.y76{bottom:862.181200pt;}
.y47{bottom:864.383600pt;}
.ybf{bottom:865.847733pt;}
.y108{bottom:865.847867pt;}
.y87{bottom:866.040667pt;}
.y4{bottom:870.833200pt;}
.y125{bottom:871.055067pt;}
.y75{bottom:878.181200pt;}
.y10b{bottom:878.614267pt;}
.y86{bottom:879.374000pt;}
.ybe{bottom:884.514400pt;}
.yfa{bottom:884.514533pt;}
.y74{bottom:894.181200pt;}
.y124{bottom:897.280800pt;}
.y85{bottom:897.690000pt;}
.y46{bottom:900.881200pt;}
.ybd{bottom:903.181067pt;}
.ye7{bottom:903.181200pt;}
.y3{bottom:903.551333pt;}
.y73{bottom:910.181200pt;}
.y45{bottom:918.481333pt;}
.ybc{bottom:921.847733pt;}
.ye6{bottom:921.847867pt;}
.y84{bottom:924.518133pt;}
.y72{bottom:926.181200pt;}
.y2{bottom:932.884667pt;}
.y44{bottom:936.081333pt;}
.ybb{bottom:940.514400pt;}
.ye5{bottom:940.514533pt;}
.y83{bottom:942.118133pt;}
.y71{bottom:942.181200pt;}
.y43{bottom:953.681200pt;}
.y70{bottom:958.181200pt;}
.yba{bottom:959.181067pt;}
.ye4{bottom:959.181200pt;}
.y82{bottom:959.718133pt;}
.y12e{bottom:963.133600pt;}
.y107{bottom:968.802933pt;}
.y42{bottom:971.281200pt;}
.y6f{bottom:974.181200pt;}
.y81{bottom:977.318133pt;}
.yb9{bottom:977.847733pt;}
.ye3{bottom:977.847867pt;}
.y28{bottom:986.502667pt;}
.y123{bottom:988.062933pt;}
.y41{bottom:988.881200pt;}
.y6e{bottom:990.181200pt;}
.y12d{bottom:991.842533pt;}
.y80{bottom:994.918133pt;}
.yb8{bottom:996.514400pt;}
.ye2{bottom:996.514533pt;}
.y106{bottom:997.511867pt;}
.y6d{bottom:1006.181200pt;}
.y40{bottom:1006.481333pt;}
.y35{bottom:1009.540000pt;}
.y38{bottom:1024.013867pt;}
.y34{bottom:1030.390667pt;}
.y33{bottom:1047.724000pt;}
.y3f{bottom:1047.726000pt;}
.hb{height:14.923012pt;}
.h12{height:30.506667pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h6{height:34.706250pt;}
.h7{height:36.000000pt;}
.h13{height:36.394667pt;}
.h15{height:38.133333pt;}
.he{height:38.507812pt;}
.hf{height:38.562500pt;}
.h8{height:40.546875pt;}
.h9{height:40.944000pt;}
.hd{height:43.382812pt;}
.h14{height:44.601562pt;}
.ha{height:44.948000pt;}
.h10{height:48.656250pt;}
.h11{height:50.042667pt;}
.h4{height:52.880208pt;}
.h3{height:68.000000pt;}
.hc{height:71.844560pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.882000pt;}
.xd{left:95.172400pt;}
.xe{left:96.255067pt;}
.x9{left:98.747867pt;}
.x10{left:99.779467pt;}
.xa{left:106.559067pt;}
.xb{left:108.473333pt;}
.xc{left:110.313733pt;}
.xf{left:121.500800pt;}
.x13{left:175.370000pt;}
.x11{left:235.312800pt;}
.x5{left:266.834667pt;}
.x14{left:270.614133pt;}
.x6{left:281.952800pt;}
.x4{left:337.502133pt;}
.x12{left:484.761733pt;}
.x15{left:554.350533pt;}
.x8{left:579.485200pt;}
.x7{left:597.818533pt;}
.x1{left:712.140000pt;}
}




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