
    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_3a1159c7d7c6fa87eba564ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_d0c186dcae7e01bb61471f91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.105000;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_31b80afeb00074bffb814d59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739000;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_0887eb863d1d038b84c41e13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929000;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_3f431864793b66b33591713f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_5d21d10c3bcf89723c1abfbc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_b6067094ff6455b2b88b4481.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_50877955d832ef37c74d2490.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_ba2d1aaf118584c6578c7d00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_575de8ff4bf8234b5078c394.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_ac46b89cdc0d7ad61445d2a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.716000;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_3b871801f7689d39b5dd74ad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;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_9cdafe17a72fc320733b70d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.866699;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_bc6575c35c2c027112459ffb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m2{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;}
.v1{vertical-align:18.000000px;}
.ls18{letter-spacing:-1.650000px;}
.ls13{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-0.660000px;}
.ls19{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.030000px;}
.ls11{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.132000px;}
.ls23{letter-spacing:0.142200px;}
.ls22{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.224400px;}
.ls20{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.330000px;}
.ls1a{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.390000px;}
.lse{letter-spacing:0.396000px;}
.ls1b{letter-spacing:0.420000px;}
.ls12{letter-spacing:0.462000px;}
.ls1d{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.594000px;}
.ls9{letter-spacing:0.660000px;}
.ls21{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.056000px;}
.ls15{letter-spacing:1.518000px;}
.ls3{letter-spacing:4.179000px;}
.ls4{letter-spacing:5.439000px;}
.lsc{letter-spacing:7.986000px;}
.lsd{letter-spacing:8.052000px;}
.lsf{letter-spacing:9.834000px;}
.ls1{letter-spacing:1226.928000px;}
.ls0{letter-spacing:1479.939600px;}
.ls5{letter-spacing:1598.923800px;}
.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;}
}
.wsad{word-spacing:-57.600000px;}
.ws12{word-spacing:-18.348000px;}
.ws11{word-spacing:-16.680000px;}
.ws0{word-spacing:-11.676000px;}
.ws8b{word-spacing:-10.842000px;}
.wsd4{word-spacing:-0.840000px;}
.ws3e{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.594000px;}
.ws51{word-spacing:-0.396000px;}
.ws59{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.264000px;}
.ws43{word-spacing:-0.132000px;}
.ws31{word-spacing:-0.072000px;}
.ws5b{word-spacing:-0.066000px;}
.ws32{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsc8{word-spacing:0.060000px;}
.ws2c{word-spacing:0.066000px;}
.ws86{word-spacing:0.120000px;}
.ws10{word-spacing:0.126000px;}
.ws29{word-spacing:0.132000px;}
.ws92{word-spacing:0.180000px;}
.ws34{word-spacing:0.198000px;}
.wsb{word-spacing:0.204000px;}
.ws5e{word-spacing:0.264000px;}
.ws77{word-spacing:0.330000px;}
.wsc3{word-spacing:0.360000px;}
.wsa7{word-spacing:0.396000px;}
.ws38{word-spacing:0.462000px;}
.ws54{word-spacing:0.528000px;}
.wsbe{word-spacing:0.540000px;}
.ws18{word-spacing:0.594000px;}
.ws26{word-spacing:0.660000px;}
.ws9a{word-spacing:0.720000px;}
.wsae{word-spacing:0.780000px;}
.ws22{word-spacing:0.792000px;}
.ws2f{word-spacing:0.858000px;}
.ws91{word-spacing:0.900000px;}
.wsa8{word-spacing:0.924000px;}
.ws7b{word-spacing:0.990000px;}
.ws60{word-spacing:1.056000px;}
.ws8{word-spacing:1.071000px;}
.wscd{word-spacing:1.080000px;}
.ws74{word-spacing:1.122000px;}
.ws88{word-spacing:1.140000px;}
.ws83{word-spacing:1.188000px;}
.ws3a{word-spacing:1.254000px;}
.ws30{word-spacing:1.320000px;}
.wse{word-spacing:1.377000px;}
.wsb8{word-spacing:1.380000px;}
.ws42{word-spacing:1.386000px;}
.wsb3{word-spacing:1.440000px;}
.wsac{word-spacing:1.452000px;}
.ws49{word-spacing:1.518000px;}
.wsa2{word-spacing:1.560000px;}
.ws4c{word-spacing:1.584000px;}
.ws84{word-spacing:1.650000px;}
.wsd2{word-spacing:1.680000px;}
.ws57{word-spacing:1.716000px;}
.ws1b{word-spacing:1.782000px;}
.ws8a{word-spacing:1.800000px;}
.ws67{word-spacing:1.848000px;}
.ws96{word-spacing:1.860000px;}
.ws4d{word-spacing:1.914000px;}
.wsc6{word-spacing:1.920000px;}
.ws5{word-spacing:1.938000px;}
.ws5f{word-spacing:1.980000px;}
.ws9{word-spacing:2.040000px;}
.ws63{word-spacing:2.046000px;}
.ws36{word-spacing:2.112000px;}
.wsa{word-spacing:2.142000px;}
.ws7e{word-spacing:2.178000px;}
.ws98{word-spacing:2.244000px;}
.wscf{word-spacing:2.280000px;}
.ws70{word-spacing:2.376000px;}
.wsc5{word-spacing:2.400000px;}
.ws23{word-spacing:2.442000px;}
.wsc{word-spacing:2.448000px;}
.wscb{word-spacing:2.460000px;}
.ws76{word-spacing:2.508000px;}
.wsd0{word-spacing:2.520000px;}
.ws7{word-spacing:2.550000px;}
.ws19{word-spacing:2.574000px;}
.ws71{word-spacing:2.640000px;}
.wsb4{word-spacing:2.700000px;}
.wsa5{word-spacing:2.706000px;}
.wsd{word-spacing:2.754000px;}
.ws2e{word-spacing:2.772000px;}
.wsbf{word-spacing:2.820000px;}
.ws21{word-spacing:2.838000px;}
.ws4a{word-spacing:2.970000px;}
.wsb7{word-spacing:3.000000px;}
.ws40{word-spacing:3.036000px;}
.wsaf{word-spacing:3.060000px;}
.ws24{word-spacing:3.102000px;}
.ws90{word-spacing:3.120000px;}
.wsab{word-spacing:3.168000px;}
.ws93{word-spacing:3.234000px;}
.ws69{word-spacing:3.300000px;}
.wsb9{word-spacing:3.360000px;}
.ws64{word-spacing:3.366000px;}
.ws9e{word-spacing:3.420000px;}
.ws41{word-spacing:3.432000px;}
.ws65{word-spacing:3.564000px;}
.ws50{word-spacing:3.630000px;}
.wsaa{word-spacing:3.696000px;}
.wsbd{word-spacing:3.720000px;}
.ws2b{word-spacing:3.762000px;}
.ws2a{word-spacing:3.828000px;}
.ws14{word-spacing:3.894000px;}
.wsa3{word-spacing:3.900000px;}
.ws56{word-spacing:3.960000px;}
.wsce{word-spacing:4.020000px;}
.ws6a{word-spacing:4.026000px;}
.wsb2{word-spacing:4.080000px;}
.wsa6{word-spacing:4.092000px;}
.wsb5{word-spacing:4.140000px;}
.ws35{word-spacing:4.158000px;}
.ws27{word-spacing:4.224000px;}
.wsf{word-spacing:4.242000px;}
.ws6d{word-spacing:4.290000px;}
.wsb1{word-spacing:4.320000px;}
.ws5d{word-spacing:4.356000px;}
.ws95{word-spacing:4.380000px;}
.ws7a{word-spacing:4.422000px;}
.ws3c{word-spacing:4.488000px;}
.wsa1{word-spacing:4.500000px;}
.ws62{word-spacing:4.554000px;}
.ws73{word-spacing:4.620000px;}
.ws99{word-spacing:4.680000px;}
.ws72{word-spacing:4.686000px;}
.wsd1{word-spacing:4.740000px;}
.ws7d{word-spacing:4.752000px;}
.ws44{word-spacing:4.818000px;}
.wsc2{word-spacing:4.920000px;}
.wsa0{word-spacing:4.980000px;}
.ws82{word-spacing:5.016000px;}
.ws20{word-spacing:5.082000px;}
.ws87{word-spacing:5.100000px;}
.ws1d{word-spacing:5.148000px;}
.ws6{word-spacing:5.151000px;}
.ws6c{word-spacing:5.214000px;}
.wsca{word-spacing:5.220000px;}
.ws66{word-spacing:5.280000px;}
.ws3d{word-spacing:5.346000px;}
.ws80{word-spacing:5.412000px;}
.ws37{word-spacing:5.478000px;}
.ws16{word-spacing:5.544000px;}
.ws48{word-spacing:5.610000px;}
.wscc{word-spacing:5.700000px;}
.ws68{word-spacing:5.742000px;}
.wsc7{word-spacing:5.760000px;}
.ws45{word-spacing:5.808000px;}
.ws25{word-spacing:5.874000px;}
.ws28{word-spacing:5.940000px;}
.wsb6{word-spacing:6.000000px;}
.ws79{word-spacing:6.006000px;}
.wsc9{word-spacing:6.060000px;}
.ws33{word-spacing:6.072000px;}
.ws8d{word-spacing:6.120000px;}
.ws2d{word-spacing:6.138000px;}
.ws6b{word-spacing:6.204000px;}
.ws1c{word-spacing:6.336000px;}
.ws9f{word-spacing:6.402000px;}
.ws58{word-spacing:6.468000px;}
.ws46{word-spacing:6.534000px;}
.wsc1{word-spacing:6.540000px;}
.ws89{word-spacing:6.600000px;}
.wsba{word-spacing:6.660000px;}
.ws7c{word-spacing:6.666000px;}
.ws97{word-spacing:6.732000px;}
.ws1a{word-spacing:6.798000px;}
.ws6f{word-spacing:6.864000px;}
.ws8c{word-spacing:6.900000px;}
.ws39{word-spacing:6.930000px;}
.ws9c{word-spacing:6.996000px;}
.ws8e{word-spacing:7.020000px;}
.wsa9{word-spacing:7.062000px;}
.wsd3{word-spacing:7.080000px;}
.ws6e{word-spacing:7.128000px;}
.ws5c{word-spacing:7.194000px;}
.ws1e{word-spacing:7.260000px;}
.ws61{word-spacing:7.326000px;}
.wsbc{word-spacing:7.380000px;}
.ws52{word-spacing:7.392000px;}
.ws3f{word-spacing:7.458000px;}
.ws4b{word-spacing:7.524000px;}
.wsb0{word-spacing:7.620000px;}
.ws55{word-spacing:7.722000px;}
.ws9d{word-spacing:7.740000px;}
.ws75{word-spacing:7.854000px;}
.wsbb{word-spacing:7.920000px;}
.wsc0{word-spacing:7.980000px;}
.ws47{word-spacing:7.986000px;}
.ws9b{word-spacing:8.040000px;}
.wsc4{word-spacing:8.100000px;}
.ws8f{word-spacing:8.160000px;}
.wsa4{word-spacing:8.250000px;}
.ws78{word-spacing:8.316000px;}
.ws94{word-spacing:8.340000px;}
.ws4e{word-spacing:8.448000px;}
.ws81{word-spacing:8.514000px;}
.ws3b{word-spacing:8.580000px;}
.ws7f{word-spacing:8.646000px;}
.ws4f{word-spacing:8.712000px;}
.ws5a{word-spacing:8.778000px;}
.ws85{word-spacing:8.844000px;}
.ws53{word-spacing:8.910000px;}
.ws15{word-spacing:9.174000px;}
.ws13{word-spacing:9.324000px;}
.ws4{word-spacing:10.656000px;}
.ws2{word-spacing:13.692000px;}
.ws3{word-spacing:20.538000px;}
._f{margin-left:-27.588000px;}
._13{margin-left:-20.013600px;}
._10{margin-left:-18.348000px;}
._2{margin-left:-10.656000px;}
._8{margin-left:-8.970000px;}
._11{margin-left:-7.788000px;}
._1{margin-left:-4.443600px;}
._b{margin-left:-1.056000px;}
._0{width:1.192800px;}
._a{width:2.739000px;}
._7{width:4.300800px;}
._9{width:6.144600px;}
._6{width:7.434000px;}
._4{width:8.517000px;}
._e{width:9.702000px;}
._5{width:11.322000px;}
._d{width:15.981600px;}
._c{width:17.316000px;}
._12{width:56.430000px;}
._3{width:1080.288000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:21.000000px;}
.fsd{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fse{font-size:57.600000px;}
.fs9{font-size:58.500000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:64.500000px;}
.fs1{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.686450px;}
.y3{bottom:6.185700px;}
.y1{bottom:63.779550px;}
.y26{bottom:102.045750px;}
.y13e{bottom:104.209950px;}
.yc5{bottom:104.676150px;}
.y15f{bottom:104.749050px;}
.y70{bottom:104.750850px;}
.yef{bottom:104.781600px;}
.y4d{bottom:105.300450px;}
.y8d{bottom:105.785850px;}
.yac{bottom:105.974250px;}
.yd8{bottom:106.003800px;}
.y10e{bottom:106.019700px;}
.y188{bottom:106.816350px;}
.y131{bottom:106.952250px;}
.y25{bottom:114.047250px;}
.y15e{bottom:122.344050px;}
.y13d{bottom:122.607450px;}
.yc4{bottom:123.073650px;}
.y6f{bottom:123.148350px;}
.yee{bottom:123.171600px;}
.y4c{bottom:123.697950px;}
.y8c{bottom:124.183350px;}
.yab{bottom:124.371750px;}
.yd7{bottom:124.401300px;}
.y10d{bottom:124.409700px;}
.y187{bottom:124.411350px;}
.y130{bottom:125.342250px;}
.y24{bottom:132.426000px;}
.y1ad{bottom:133.261350px;}
.y15d{bottom:139.939050px;}
.y13c{bottom:141.004950px;}
.yc3{bottom:141.471150px;}
.y6e{bottom:141.545850px;}
.yed{bottom:141.561600px;}
.y186{bottom:142.006350px;}
.y4b{bottom:142.095450px;}
.yb4{bottom:142.580850px;}
.yaa{bottom:142.769250px;}
.yd6{bottom:142.798800px;}
.y12f{bottom:143.732250px;}
.y23{bottom:149.982000px;}
.y1ac{bottom:150.856350px;}
.y185{bottom:159.601350px;}
.yc2{bottom:159.868650px;}
.y6d{bottom:159.943350px;}
.yec{bottom:159.951600px;}
.y4a{bottom:160.492950px;}
.y8b{bottom:160.961850px;}
.y10c{bottom:161.159550px;}
.ya9{bottom:161.166750px;}
.y15c{bottom:162.139050px;}
.y22{bottom:167.538000px;}
.y1ab{bottom:173.056350px;}
.y13b{bottom:177.783450px;}
.yc1{bottom:178.266150px;}
.y6c{bottom:178.340850px;}
.yeb{bottom:178.341600px;}
.y21{bottom:178.720500px;}
.y49{bottom:178.890450px;}
.y8a{bottom:179.359350px;}
.y10b{bottom:179.557050px;}
.ya8{bottom:179.564250px;}
.yd5{bottom:179.578800px;}
.y15b{bottom:179.734050px;}
.y12e{bottom:180.497100px;}
.y184{bottom:181.456350px;}
.y1aa{bottom:190.651350px;}
.y20{bottom:194.155500px;}
.y13a{bottom:196.180950px;}
.yc0{bottom:196.663650px;}
.y48{bottom:197.287950px;}
.y89{bottom:197.756850px;}
.y10a{bottom:197.954550px;}
.ya7{bottom:197.961750px;}
.y12d{bottom:198.894600px;}
.y183{bottom:199.051350px;}
.y15a{bottom:201.934050px;}
.y1f{bottom:205.338000px;}
.y1a9{bottom:208.246350px;}
.y139{bottom:214.578450px;}
.ybf{bottom:215.061150px;}
.yea{bottom:215.091300px;}
.y6b{bottom:215.120850px;}
.y47{bottom:215.685450px;}
.y88{bottom:216.154350px;}
.y109{bottom:216.352050px;}
.ya6{bottom:216.359250px;}
.y12c{bottom:217.292100px;}
.y159{bottom:219.529050px;}
.y182{bottom:220.906350px;}
.y1a8{bottom:230.446350px;}
.ybe{bottom:233.458650px;}
.ye9{bottom:233.488800px;}
.y46{bottom:234.082950px;}
.yd4{bottom:234.535350px;}
.y87{bottom:234.551850px;}
.y108{bottom:234.749550px;}
.y158{bottom:237.124050px;}
.y181{bottom:238.501350px;}
.y1a7{bottom:248.041350px;}
.y138{bottom:251.358450px;}
.ybd{bottom:251.856150px;}
.ye8{bottom:251.886300px;}
.y6a{bottom:251.900550px;}
.y45{bottom:252.480450px;}
.yd3{bottom:252.932850px;}
.y86{bottom:252.949350px;}
.ya5{bottom:253.139400px;}
.y12b{bottom:254.072100px;}
.y157{bottom:259.324050px;}
.y180{bottom:260.356350px;}
.y1a6{bottom:265.636350px;}
.y1e{bottom:267.225900px;}
.ybc{bottom:270.253650px;}
.ye7{bottom:270.283800px;}
.yd2{bottom:271.330350px;}
.y85{bottom:271.346850px;}
.y107{bottom:271.523550px;}
.y12a{bottom:272.462100px;}
.y156{bottom:276.919050px;}
.y17f{bottom:277.951350px;}
.y1a5{bottom:287.836350px;}
.y1d{bottom:287.995650px;}
.ybb{bottom:288.651150px;}
.ye6{bottom:288.681300px;}
.y44{bottom:289.258950px;}
.yd1{bottom:289.727850px;}
.yb3{bottom:289.744350px;}
.y106{bottom:289.919550px;}
.y129{bottom:290.852100px;}
.y155{bottom:294.514050px;}
.y17e{bottom:299.806350px;}
.y1c{bottom:302.379450px;}
.y1a4{bottom:305.431350px;}
.yba{bottom:307.048650px;}
.y43{bottom:307.656450px;}
.y137{bottom:307.763250px;}
.y84{bottom:308.125350px;}
.y69{bottom:308.141850px;}
.ya4{bottom:308.169300px;}
.y128{bottom:309.242100px;}
.y154{bottom:312.109050px;}
.y1b{bottom:316.774200px;}
.y17d{bottom:317.401350px;}
.y136{bottom:323.753250px;}
.yb9{bottom:325.446150px;}
.ye5{bottom:325.461300px;}
.y42{bottom:326.053950px;}
.y83{bottom:326.522850px;}
.y68{bottom:326.539350px;}
.ya3{bottom:326.566800px;}
.y1a3{bottom:327.631350px;}
.y1a{bottom:331.168950px;}
.y153{bottom:334.309050px;}
.y17c{bottom:334.996350px;}
.yb8{bottom:343.843650px;}
.y41{bottom:344.451450px;}
.yd0{bottom:344.903850px;}
.y82{bottom:344.920350px;}
.y67{bottom:344.936850px;}
.ya2{bottom:344.964300px;}
.y105{bottom:345.089100px;}
.y1a2{bottom:345.226350px;}
.y19{bottom:345.563700px;}
.y127{bottom:345.984300px;}
.y135{bottom:346.118250px;}
.y152{bottom:351.904050px;}
.y17b{bottom:356.851350px;}
.ye4{bottom:362.233650px;}
.yb7{bottom:362.241150px;}
.y1a1{bottom:362.821350px;}
.y40{bottom:362.848950px;}
.ycf{bottom:363.301350px;}
.y81{bottom:363.317850px;}
.y66{bottom:363.334350px;}
.ya1{bottom:363.361800px;}
.y104{bottom:363.479100px;}
.y126{bottom:364.381800px;}
.y134{bottom:368.483100px;}
.y151{bottom:374.104050px;}
.y17a{bottom:374.446350px;}
.y18{bottom:377.553450px;}
.ye3{bottom:380.631150px;}
.y3f{bottom:381.246450px;}
.yce{bottom:381.698850px;}
.y80{bottom:381.715350px;}
.y65{bottom:381.731850px;}
.ya0{bottom:381.759300px;}
.y103{bottom:381.869100px;}
.y125{bottom:382.779300px;}
.y1a0{bottom:385.021350px;}
.y150{bottom:391.699050px;}
.y179{bottom:392.041350px;}
.y17{bottom:398.323200px;}
.yb6{bottom:399.021150px;}
.y3e{bottom:399.643950px;}
.ycd{bottom:400.096350px;}
.y7f{bottom:400.112850px;}
.y64{bottom:400.129350px;}
.y9f{bottom:400.156800px;}
.y102{bottom:400.259100px;}
.y124{bottom:401.176800px;}
.y19f{bottom:402.616350px;}
.y16{bottom:412.715700px;}
.y178{bottom:413.896350px;}
.y14f{bottom:413.899050px;}
.ye2{bottom:417.411150px;}
.ycc{bottom:418.493850px;}
.y7e{bottom:418.510350px;}
.y63{bottom:418.526850px;}
.y9e{bottom:418.554300px;}
.y123{bottom:419.574300px;}
.y19e{bottom:420.211350px;}
.y15{bottom:427.108200px;}
.y177{bottom:431.491350px;}
.y14e{bottom:431.494050px;}
.yb5{bottom:435.800850px;}
.ye1{bottom:435.801150px;}
.y3d{bottom:436.422450px;}
.ycb{bottom:436.891350px;}
.y7d{bottom:436.907850px;}
.y62{bottom:436.924350px;}
.y9d{bottom:436.951800px;}
.y101{bottom:437.008800px;}
.y19d{bottom:437.806350px;}
.y122{bottom:437.971800px;}
.y14{bottom:441.493950px;}
.y176{bottom:449.086350px;}
.y14d{bottom:449.089050px;}
.y3c{bottom:454.819950px;}
.yca{bottom:455.288850px;}
.yb2{bottom:455.305350px;}
.y100{bottom:455.406300px;}
.y13{bottom:455.888700px;}
.y19c{bottom:460.006350px;}
.y12{bottom:470.283450px;}
.y175{bottom:470.941350px;}
.y14c{bottom:471.289050px;}
.ye0{bottom:472.550850px;}
.y3b{bottom:473.217450px;}
.y7c{bottom:473.686350px;}
.y61{bottom:473.702850px;}
.y9c{bottom:473.730300px;}
.yff{bottom:473.803800px;}
.y121{bottom:474.751800px;}
.y19b{bottom:477.601350px;}
.y11{bottom:484.678200px;}
.y174{bottom:488.536350px;}
.y14b{bottom:488.884050px;}
.ydf{bottom:490.948350px;}
.y3a{bottom:491.614950px;}
.y7b{bottom:492.083850px;}
.y60{bottom:492.100350px;}
.y9b{bottom:492.127800px;}
.yfe{bottom:492.201300px;}
.y120{bottom:493.141800px;}
.y19a{bottom:495.196350px;}
.y173{bottom:506.131350px;}
.yde{bottom:509.345850px;}
.y39{bottom:510.012450px;}
.yc9{bottom:510.464850px;}
.y7a{bottom:510.481350px;}
.y5f{bottom:510.497850px;}
.y9a{bottom:510.525300px;}
.yfd{bottom:510.598800px;}
.y14a{bottom:511.084050px;}
.y11f{bottom:511.531800px;}
.y199{bottom:517.396350px;}
.ydd{bottom:527.743350px;}
.y172{bottom:527.986350px;}
.y38{bottom:528.409950px;}
.y149{bottom:528.679050px;}
.yc8{bottom:528.862350px;}
.y79{bottom:528.878850px;}
.y5e{bottom:528.895350px;}
.y99{bottom:528.922800px;}
.y198{bottom:534.991350px;}
.y171{bottom:545.581350px;}
.ydc{bottom:546.140850px;}
.y148{bottom:546.269550px;}
.y37{bottom:546.807450px;}
.yc7{bottom:547.259850px;}
.y78{bottom:547.276350px;}
.y98{bottom:547.320300px;}
.yfc{bottom:547.378800px;}
.y11e{bottom:548.289150px;}
.y10{bottom:550.681200px;}
.y197{bottom:552.586350px;}
.y170{bottom:563.176350px;}
.y36{bottom:565.204950px;}
.yc6{bottom:565.657350px;}
.y5d{bottom:565.673850px;}
.y97{bottom:565.717800px;}
.yfb{bottom:565.768800px;}
.y11d{bottom:566.686650px;}
.y147{bottom:568.469550px;}
.yf{bottom:573.046200px;}
.y196{bottom:574.786350px;}
.y16f{bottom:580.771350px;}
.ydb{bottom:582.920850px;}
.y35{bottom:583.602450px;}
.y77{bottom:584.054850px;}
.y5c{bottom:584.071350px;}
.y96{bottom:584.115300px;}
.yfa{bottom:584.158800px;}
.y11c{bottom:585.084150px;}
.y146{bottom:586.064550px;}
.y195{bottom:592.381350px;}
.yda{bottom:601.310850px;}
.y76{bottom:602.452350px;}
.y5b{bottom:602.468850px;}
.y16e{bottom:602.626350px;}
.y11b{bottom:603.481650px;}
.y194{bottom:609.976350px;}
.ye{bottom:614.632050px;}
.y16d{bottom:620.221350px;}
.y34{bottom:620.380950px;}
.y75{bottom:620.849850px;}
.y5a{bottom:620.866350px;}
.y95{bottom:620.893800px;}
.yf9{bottom:620.901150px;}
.y145{bottom:626.648100px;}
.y193{bottom:632.176350px;}
.yd{bottom:637.135050px;}
.y16c{bottom:637.816350px;}
.yd9{bottom:638.090550px;}
.y33{bottom:638.778450px;}
.y74{bottom:639.247350px;}
.y59{bottom:639.263850px;}
.y94{bottom:639.291300px;}
.yf8{bottom:639.298650px;}
.y11a{bottom:640.261650px;}
.y192{bottom:649.771350px;}
.y16b{bottom:655.411350px;}
.y32{bottom:657.175950px;}
.y73{bottom:657.644850px;}
.y58{bottom:657.661350px;}
.y93{bottom:657.688800px;}
.yf7{bottom:657.696150px;}
.y119{bottom:658.651650px;}
.yc{bottom:666.021900px;}
.y191{bottom:667.366350px;}
.y31{bottom:675.573450px;}
.y72{bottom:676.042350px;}
.y92{bottom:676.086300px;}
.yf6{bottom:676.093650px;}
.y118{bottom:677.041650px;}
.y16a{bottom:677.266350px;}
.y144{bottom:683.025900px;}
.yb{bottom:688.512900px;}
.y190{bottom:689.566350px;}
.y30{bottom:693.970950px;}
.y57{bottom:694.439850px;}
.y91{bottom:694.483800px;}
.yf5{bottom:694.491150px;}
.y133{bottom:694.498650px;}
.y169{bottom:694.861350px;}
.y117{bottom:695.431650px;}
.y143{bottom:701.423400px;}
.y18f{bottom:707.161350px;}
.y1b0{bottom:707.173500px;}
.y2f{bottom:712.368450px;}
.y168{bottom:712.456350px;}
.y56{bottom:712.837350px;}
.y90{bottom:712.881300px;}
.yf4{bottom:712.888650px;}
.ya{bottom:717.377400px;}
.y142{bottom:719.820900px;}
.y18e{bottom:724.756350px;}
.y1af{bottom:724.768500px;}
.y2e{bottom:730.765950px;}
.y55{bottom:731.234850px;}
.y132{bottom:731.278650px;}
.y8f{bottom:731.278800px;}
.y116{bottom:732.173850px;}
.y167{bottom:734.311350px;}
.y141{bottom:738.218400px;}
.y1ae{bottom:742.351350px;}
.y9{bottom:744.381900px;}
.y18d{bottom:746.956350px;}
.y71{bottom:749.615850px;}
.yb1{bottom:749.632350px;}
.yf3{bottom:749.668650px;}
.y115{bottom:750.571350px;}
.y166{bottom:751.906350px;}
.y140{bottom:756.615900px;}
.y18c{bottom:764.551350px;}
.y2d{bottom:767.544450px;}
.y54{bottom:768.013350px;}
.yb0{bottom:768.029850px;}
.yf2{bottom:768.058650px;}
.y8e{bottom:768.058800px;}
.y114{bottom:768.968850px;}
.y165{bottom:769.501350px;}
.y8{bottom:771.386400px;}
.y18b{bottom:782.146350px;}
.y2c{bottom:785.941950px;}
.y53{bottom:786.410850px;}
.yaf{bottom:786.427350px;}
.yf1{bottom:786.448650px;}
.y113{bottom:787.366350px;}
.y13f{bottom:789.462600px;}
.y164{bottom:791.356350px;}
.y7{bottom:798.390900px;}
.y2b{bottom:804.339450px;}
.y18a{bottom:804.346350px;}
.y52{bottom:804.808350px;}
.yae{bottom:804.824850px;}
.yf0{bottom:804.838650px;}
.y112{bottom:805.763850px;}
.y163{bottom:808.951350px;}
.y189{bottom:821.941350px;}
.y2a{bottom:822.736950px;}
.y51{bottom:823.205850px;}
.yad{bottom:823.222350px;}
.y111{bottom:824.161350px;}
.y162{bottom:826.546350px;}
.y29{bottom:841.134450px;}
.y50{bottom:841.603350px;}
.y161{bottom:844.141350px;}
.y4f{bottom:860.000850px;}
.y110{bottom:860.941350px;}
.y160{bottom:861.736350px;}
.y6{bottom:875.137200px;}
.y28{bottom:876.532350px;}
.y4e{bottom:878.398350px;}
.y10f{bottom:879.331350px;}
.y5{bottom:892.729200px;}
.y2{bottom:911.622000px;}
.y27{bottom:927.831150px;}
.h4{height:15.015000px;}
.h11{height:30.912000px;}
.h12{height:30.954000px;}
.h10{height:31.206000px;}
.h5{height:35.376000px;}
.he{height:35.700000px;}
.hf{height:35.734800px;}
.h16{height:42.000000px;}
.hc{height:44.472000px;}
.hd{height:44.499600px;}
.hb{height:51.012000px;}
.h15{height:52.320000px;}
.h17{height:52.338000px;}
.h18{height:52.368600px;}
.h13{height:54.600000px;}
.ha{height:56.244000px;}
.h2{height:57.552000px;}
.h8{height:58.800000px;}
.h14{height:62.784000px;}
.h3{height:66.330000px;}
.h9{height:68.016000px;}
.h6{height:71.400000px;}
.h7{height:73.248000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:127.558500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x8{left:104.464800px;}
.xc{left:110.543850px;}
.x9{left:118.615950px;}
.x11{left:121.038900px;}
.x6{left:123.708450px;}
.x16{left:135.217650px;}
.x10{left:138.202350px;}
.xd{left:145.195650px;}
.xe{left:150.445650px;}
.x7{left:154.780800px;}
.x15{left:167.092650px;}
.xb{left:177.393600px;}
.x13{left:180.968700px;}
.x4{left:188.758950px;}
.xa{left:192.534750px;}
.x12{left:202.223700px;}
.x3{left:209.209950px;}
.x5{left:221.067450px;}
.x14{left:334.012650px;}
.x2{left:508.536000px;}
.xf{left:513.854100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls18{letter-spacing:-1.466667pt;}
.ls13{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls19{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.026667pt;}
.ls11{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.117333pt;}
.ls23{letter-spacing:0.126400pt;}
.ls22{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.199467pt;}
.ls20{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.293333pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.346667pt;}
.lse{letter-spacing:0.352000pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls12{letter-spacing:0.410667pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.528000pt;}
.ls9{letter-spacing:0.586667pt;}
.ls21{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.938667pt;}
.ls15{letter-spacing:1.349333pt;}
.ls3{letter-spacing:3.714667pt;}
.ls4{letter-spacing:4.834667pt;}
.lsc{letter-spacing:7.098667pt;}
.lsd{letter-spacing:7.157333pt;}
.lsf{letter-spacing:8.741333pt;}
.ls1{letter-spacing:1090.602667pt;}
.ls0{letter-spacing:1315.501867pt;}
.ls5{letter-spacing:1421.265600pt;}
.wsad{word-spacing:-51.200000pt;}
.ws12{word-spacing:-16.309333pt;}
.ws11{word-spacing:-14.826667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws8b{word-spacing:-9.637333pt;}
.wsd4{word-spacing:-0.746667pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.528000pt;}
.ws51{word-spacing:-0.352000pt;}
.ws59{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.234667pt;}
.ws43{word-spacing:-0.117333pt;}
.ws31{word-spacing:-0.064000pt;}
.ws5b{word-spacing:-0.058667pt;}
.ws32{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.053333pt;}
.ws2c{word-spacing:0.058667pt;}
.ws86{word-spacing:0.106667pt;}
.ws10{word-spacing:0.112000pt;}
.ws29{word-spacing:0.117333pt;}
.ws92{word-spacing:0.160000pt;}
.ws34{word-spacing:0.176000pt;}
.wsb{word-spacing:0.181333pt;}
.ws5e{word-spacing:0.234667pt;}
.ws77{word-spacing:0.293333pt;}
.wsc3{word-spacing:0.320000pt;}
.wsa7{word-spacing:0.352000pt;}
.ws38{word-spacing:0.410667pt;}
.ws54{word-spacing:0.469333pt;}
.wsbe{word-spacing:0.480000pt;}
.ws18{word-spacing:0.528000pt;}
.ws26{word-spacing:0.586667pt;}
.ws9a{word-spacing:0.640000pt;}
.wsae{word-spacing:0.693333pt;}
.ws22{word-spacing:0.704000pt;}
.ws2f{word-spacing:0.762667pt;}
.ws91{word-spacing:0.800000pt;}
.wsa8{word-spacing:0.821333pt;}
.ws7b{word-spacing:0.880000pt;}
.ws60{word-spacing:0.938667pt;}
.ws8{word-spacing:0.952000pt;}
.wscd{word-spacing:0.960000pt;}
.ws74{word-spacing:0.997333pt;}
.ws88{word-spacing:1.013333pt;}
.ws83{word-spacing:1.056000pt;}
.ws3a{word-spacing:1.114667pt;}
.ws30{word-spacing:1.173333pt;}
.wse{word-spacing:1.224000pt;}
.wsb8{word-spacing:1.226667pt;}
.ws42{word-spacing:1.232000pt;}
.wsb3{word-spacing:1.280000pt;}
.wsac{word-spacing:1.290667pt;}
.ws49{word-spacing:1.349333pt;}
.wsa2{word-spacing:1.386667pt;}
.ws4c{word-spacing:1.408000pt;}
.ws84{word-spacing:1.466667pt;}
.wsd2{word-spacing:1.493333pt;}
.ws57{word-spacing:1.525333pt;}
.ws1b{word-spacing:1.584000pt;}
.ws8a{word-spacing:1.600000pt;}
.ws67{word-spacing:1.642667pt;}
.ws96{word-spacing:1.653333pt;}
.ws4d{word-spacing:1.701333pt;}
.wsc6{word-spacing:1.706667pt;}
.ws5{word-spacing:1.722667pt;}
.ws5f{word-spacing:1.760000pt;}
.ws9{word-spacing:1.813333pt;}
.ws63{word-spacing:1.818667pt;}
.ws36{word-spacing:1.877333pt;}
.wsa{word-spacing:1.904000pt;}
.ws7e{word-spacing:1.936000pt;}
.ws98{word-spacing:1.994667pt;}
.wscf{word-spacing:2.026667pt;}
.ws70{word-spacing:2.112000pt;}
.wsc5{word-spacing:2.133333pt;}
.ws23{word-spacing:2.170667pt;}
.wsc{word-spacing:2.176000pt;}
.wscb{word-spacing:2.186667pt;}
.ws76{word-spacing:2.229333pt;}
.wsd0{word-spacing:2.240000pt;}
.ws7{word-spacing:2.266667pt;}
.ws19{word-spacing:2.288000pt;}
.ws71{word-spacing:2.346667pt;}
.wsb4{word-spacing:2.400000pt;}
.wsa5{word-spacing:2.405333pt;}
.wsd{word-spacing:2.448000pt;}
.ws2e{word-spacing:2.464000pt;}
.wsbf{word-spacing:2.506667pt;}
.ws21{word-spacing:2.522667pt;}
.ws4a{word-spacing:2.640000pt;}
.wsb7{word-spacing:2.666667pt;}
.ws40{word-spacing:2.698667pt;}
.wsaf{word-spacing:2.720000pt;}
.ws24{word-spacing:2.757333pt;}
.ws90{word-spacing:2.773333pt;}
.wsab{word-spacing:2.816000pt;}
.ws93{word-spacing:2.874667pt;}
.ws69{word-spacing:2.933333pt;}
.wsb9{word-spacing:2.986667pt;}
.ws64{word-spacing:2.992000pt;}
.ws9e{word-spacing:3.040000pt;}
.ws41{word-spacing:3.050667pt;}
.ws65{word-spacing:3.168000pt;}
.ws50{word-spacing:3.226667pt;}
.wsaa{word-spacing:3.285333pt;}
.wsbd{word-spacing:3.306667pt;}
.ws2b{word-spacing:3.344000pt;}
.ws2a{word-spacing:3.402667pt;}
.ws14{word-spacing:3.461333pt;}
.wsa3{word-spacing:3.466667pt;}
.ws56{word-spacing:3.520000pt;}
.wsce{word-spacing:3.573333pt;}
.ws6a{word-spacing:3.578667pt;}
.wsb2{word-spacing:3.626667pt;}
.wsa6{word-spacing:3.637333pt;}
.wsb5{word-spacing:3.680000pt;}
.ws35{word-spacing:3.696000pt;}
.ws27{word-spacing:3.754667pt;}
.wsf{word-spacing:3.770667pt;}
.ws6d{word-spacing:3.813333pt;}
.wsb1{word-spacing:3.840000pt;}
.ws5d{word-spacing:3.872000pt;}
.ws95{word-spacing:3.893333pt;}
.ws7a{word-spacing:3.930667pt;}
.ws3c{word-spacing:3.989333pt;}
.wsa1{word-spacing:4.000000pt;}
.ws62{word-spacing:4.048000pt;}
.ws73{word-spacing:4.106667pt;}
.ws99{word-spacing:4.160000pt;}
.ws72{word-spacing:4.165333pt;}
.wsd1{word-spacing:4.213333pt;}
.ws7d{word-spacing:4.224000pt;}
.ws44{word-spacing:4.282667pt;}
.wsc2{word-spacing:4.373333pt;}
.wsa0{word-spacing:4.426667pt;}
.ws82{word-spacing:4.458667pt;}
.ws20{word-spacing:4.517333pt;}
.ws87{word-spacing:4.533333pt;}
.ws1d{word-spacing:4.576000pt;}
.ws6{word-spacing:4.578667pt;}
.ws6c{word-spacing:4.634667pt;}
.wsca{word-spacing:4.640000pt;}
.ws66{word-spacing:4.693333pt;}
.ws3d{word-spacing:4.752000pt;}
.ws80{word-spacing:4.810667pt;}
.ws37{word-spacing:4.869333pt;}
.ws16{word-spacing:4.928000pt;}
.ws48{word-spacing:4.986667pt;}
.wscc{word-spacing:5.066667pt;}
.ws68{word-spacing:5.104000pt;}
.wsc7{word-spacing:5.120000pt;}
.ws45{word-spacing:5.162667pt;}
.ws25{word-spacing:5.221333pt;}
.ws28{word-spacing:5.280000pt;}
.wsb6{word-spacing:5.333333pt;}
.ws79{word-spacing:5.338667pt;}
.wsc9{word-spacing:5.386667pt;}
.ws33{word-spacing:5.397333pt;}
.ws8d{word-spacing:5.440000pt;}
.ws2d{word-spacing:5.456000pt;}
.ws6b{word-spacing:5.514667pt;}
.ws1c{word-spacing:5.632000pt;}
.ws9f{word-spacing:5.690667pt;}
.ws58{word-spacing:5.749333pt;}
.ws46{word-spacing:5.808000pt;}
.wsc1{word-spacing:5.813333pt;}
.ws89{word-spacing:5.866667pt;}
.wsba{word-spacing:5.920000pt;}
.ws7c{word-spacing:5.925333pt;}
.ws97{word-spacing:5.984000pt;}
.ws1a{word-spacing:6.042667pt;}
.ws6f{word-spacing:6.101333pt;}
.ws8c{word-spacing:6.133333pt;}
.ws39{word-spacing:6.160000pt;}
.ws9c{word-spacing:6.218667pt;}
.ws8e{word-spacing:6.240000pt;}
.wsa9{word-spacing:6.277333pt;}
.wsd3{word-spacing:6.293333pt;}
.ws6e{word-spacing:6.336000pt;}
.ws5c{word-spacing:6.394667pt;}
.ws1e{word-spacing:6.453333pt;}
.ws61{word-spacing:6.512000pt;}
.wsbc{word-spacing:6.560000pt;}
.ws52{word-spacing:6.570667pt;}
.ws3f{word-spacing:6.629333pt;}
.ws4b{word-spacing:6.688000pt;}
.wsb0{word-spacing:6.773333pt;}
.ws55{word-spacing:6.864000pt;}
.ws9d{word-spacing:6.880000pt;}
.ws75{word-spacing:6.981333pt;}
.wsbb{word-spacing:7.040000pt;}
.wsc0{word-spacing:7.093333pt;}
.ws47{word-spacing:7.098667pt;}
.ws9b{word-spacing:7.146667pt;}
.wsc4{word-spacing:7.200000pt;}
.ws8f{word-spacing:7.253333pt;}
.wsa4{word-spacing:7.333333pt;}
.ws78{word-spacing:7.392000pt;}
.ws94{word-spacing:7.413333pt;}
.ws4e{word-spacing:7.509333pt;}
.ws81{word-spacing:7.568000pt;}
.ws3b{word-spacing:7.626667pt;}
.ws7f{word-spacing:7.685333pt;}
.ws4f{word-spacing:7.744000pt;}
.ws5a{word-spacing:7.802667pt;}
.ws85{word-spacing:7.861333pt;}
.ws53{word-spacing:7.920000pt;}
.ws15{word-spacing:8.154667pt;}
.ws13{word-spacing:8.288000pt;}
.ws4{word-spacing:9.472000pt;}
.ws2{word-spacing:12.170667pt;}
.ws3{word-spacing:18.256000pt;}
._f{margin-left:-24.522667pt;}
._13{margin-left:-17.789867pt;}
._10{margin-left:-16.309333pt;}
._2{margin-left:-9.472000pt;}
._8{margin-left:-7.973333pt;}
._11{margin-left:-6.922667pt;}
._1{margin-left:-3.949867pt;}
._b{margin-left:-0.938667pt;}
._0{width:1.060267pt;}
._a{width:2.434667pt;}
._7{width:3.822933pt;}
._9{width:5.461867pt;}
._6{width:6.608000pt;}
._4{width:7.570667pt;}
._e{width:8.624000pt;}
._5{width:10.064000pt;}
._d{width:14.205867pt;}
._c{width:15.392000pt;}
._12{width:50.160000pt;}
._3{width:960.256000pt;}
.fs3{font-size:18.666667pt;}
.fsd{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:51.200000pt;}
.fs9{font-size:52.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:57.333333pt;}
.fs1{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.499067pt;}
.y3{bottom:5.498400pt;}
.y1{bottom:56.692933pt;}
.y26{bottom:90.707333pt;}
.y13e{bottom:92.631067pt;}
.yc5{bottom:93.045467pt;}
.y15f{bottom:93.110267pt;}
.y70{bottom:93.111867pt;}
.yef{bottom:93.139200pt;}
.y4d{bottom:93.600400pt;}
.y8d{bottom:94.031867pt;}
.yac{bottom:94.199333pt;}
.yd8{bottom:94.225600pt;}
.y10e{bottom:94.239733pt;}
.y188{bottom:94.947867pt;}
.y131{bottom:95.068667pt;}
.y25{bottom:101.375333pt;}
.y15e{bottom:108.750267pt;}
.y13d{bottom:108.984400pt;}
.yc4{bottom:109.398800pt;}
.y6f{bottom:109.465200pt;}
.yee{bottom:109.485867pt;}
.y4c{bottom:109.953733pt;}
.y8c{bottom:110.385200pt;}
.yab{bottom:110.552667pt;}
.yd7{bottom:110.578933pt;}
.y10d{bottom:110.586400pt;}
.y187{bottom:110.587867pt;}
.y130{bottom:111.415333pt;}
.y24{bottom:117.712000pt;}
.y1ad{bottom:118.454533pt;}
.y15d{bottom:124.390267pt;}
.y13c{bottom:125.337733pt;}
.yc3{bottom:125.752133pt;}
.y6e{bottom:125.818533pt;}
.yed{bottom:125.832533pt;}
.y186{bottom:126.227867pt;}
.y4b{bottom:126.307067pt;}
.yb4{bottom:126.738533pt;}
.yaa{bottom:126.906000pt;}
.yd6{bottom:126.932267pt;}
.y12f{bottom:127.762000pt;}
.y23{bottom:133.317333pt;}
.y1ac{bottom:134.094533pt;}
.y185{bottom:141.867867pt;}
.yc2{bottom:142.105467pt;}
.y6d{bottom:142.171867pt;}
.yec{bottom:142.179200pt;}
.y4a{bottom:142.660400pt;}
.y8b{bottom:143.077200pt;}
.y10c{bottom:143.252933pt;}
.ya9{bottom:143.259333pt;}
.y15c{bottom:144.123600pt;}
.y22{bottom:148.922667pt;}
.y1ab{bottom:153.827867pt;}
.y13b{bottom:158.029733pt;}
.yc1{bottom:158.458800pt;}
.y6c{bottom:158.525200pt;}
.yeb{bottom:158.525867pt;}
.y21{bottom:158.862667pt;}
.y49{bottom:159.013733pt;}
.y8a{bottom:159.430533pt;}
.y10b{bottom:159.606267pt;}
.ya8{bottom:159.612667pt;}
.yd5{bottom:159.625600pt;}
.y15b{bottom:159.763600pt;}
.y12e{bottom:160.441867pt;}
.y184{bottom:161.294533pt;}
.y1aa{bottom:169.467867pt;}
.y20{bottom:172.582667pt;}
.y13a{bottom:174.383067pt;}
.yc0{bottom:174.812133pt;}
.y48{bottom:175.367067pt;}
.y89{bottom:175.783867pt;}
.y10a{bottom:175.959600pt;}
.ya7{bottom:175.966000pt;}
.y12d{bottom:176.795200pt;}
.y183{bottom:176.934533pt;}
.y15a{bottom:179.496933pt;}
.y1f{bottom:182.522667pt;}
.y1a9{bottom:185.107867pt;}
.y139{bottom:190.736400pt;}
.ybf{bottom:191.165467pt;}
.yea{bottom:191.192267pt;}
.y6b{bottom:191.218533pt;}
.y47{bottom:191.720400pt;}
.y88{bottom:192.137200pt;}
.y109{bottom:192.312933pt;}
.ya6{bottom:192.319333pt;}
.y12c{bottom:193.148533pt;}
.y159{bottom:195.136933pt;}
.y182{bottom:196.361200pt;}
.y1a8{bottom:204.841200pt;}
.ybe{bottom:207.518800pt;}
.ye9{bottom:207.545600pt;}
.y46{bottom:208.073733pt;}
.yd4{bottom:208.475867pt;}
.y87{bottom:208.490533pt;}
.y108{bottom:208.666267pt;}
.y158{bottom:210.776933pt;}
.y181{bottom:212.001200pt;}
.y1a7{bottom:220.481200pt;}
.y138{bottom:223.429733pt;}
.ybd{bottom:223.872133pt;}
.ye8{bottom:223.898933pt;}
.y6a{bottom:223.911600pt;}
.y45{bottom:224.427067pt;}
.yd3{bottom:224.829200pt;}
.y86{bottom:224.843867pt;}
.ya5{bottom:225.012800pt;}
.y12b{bottom:225.841867pt;}
.y157{bottom:230.510267pt;}
.y180{bottom:231.427867pt;}
.y1a6{bottom:236.121200pt;}
.y1e{bottom:237.534133pt;}
.ybc{bottom:240.225467pt;}
.ye7{bottom:240.252267pt;}
.yd2{bottom:241.182533pt;}
.y85{bottom:241.197200pt;}
.y107{bottom:241.354267pt;}
.y12a{bottom:242.188533pt;}
.y156{bottom:246.150267pt;}
.y17f{bottom:247.067867pt;}
.y1a5{bottom:255.854533pt;}
.y1d{bottom:255.996133pt;}
.ybb{bottom:256.578800pt;}
.ye6{bottom:256.605600pt;}
.y44{bottom:257.119067pt;}
.yd1{bottom:257.535867pt;}
.yb3{bottom:257.550533pt;}
.y106{bottom:257.706267pt;}
.y129{bottom:258.535200pt;}
.y155{bottom:261.790267pt;}
.y17e{bottom:266.494533pt;}
.y1c{bottom:268.781733pt;}
.y1a4{bottom:271.494533pt;}
.yba{bottom:272.932133pt;}
.y43{bottom:273.472400pt;}
.y137{bottom:273.567333pt;}
.y84{bottom:273.889200pt;}
.y69{bottom:273.903867pt;}
.ya4{bottom:273.928267pt;}
.y128{bottom:274.881867pt;}
.y154{bottom:277.430267pt;}
.y1b{bottom:281.577067pt;}
.y17d{bottom:282.134533pt;}
.y136{bottom:287.780667pt;}
.yb9{bottom:289.285467pt;}
.ye5{bottom:289.298933pt;}
.y42{bottom:289.825733pt;}
.y83{bottom:290.242533pt;}
.y68{bottom:290.257200pt;}
.ya3{bottom:290.281600pt;}
.y1a3{bottom:291.227867pt;}
.y1a{bottom:294.372400pt;}
.y153{bottom:297.163600pt;}
.y17c{bottom:297.774533pt;}
.yb8{bottom:305.638800pt;}
.y41{bottom:306.179067pt;}
.yd0{bottom:306.581200pt;}
.y82{bottom:306.595867pt;}
.y67{bottom:306.610533pt;}
.ya2{bottom:306.634933pt;}
.y105{bottom:306.745867pt;}
.y1a2{bottom:306.867867pt;}
.y19{bottom:307.167733pt;}
.y127{bottom:307.541600pt;}
.y135{bottom:307.660667pt;}
.y152{bottom:312.803600pt;}
.y17b{bottom:317.201200pt;}
.ye4{bottom:321.985467pt;}
.yb7{bottom:321.992133pt;}
.y1a1{bottom:322.507867pt;}
.y40{bottom:322.532400pt;}
.ycf{bottom:322.934533pt;}
.y81{bottom:322.949200pt;}
.y66{bottom:322.963867pt;}
.ya1{bottom:322.988267pt;}
.y104{bottom:323.092533pt;}
.y126{bottom:323.894933pt;}
.y134{bottom:327.540533pt;}
.y151{bottom:332.536933pt;}
.y17a{bottom:332.841200pt;}
.y18{bottom:335.603067pt;}
.ye3{bottom:338.338800pt;}
.y3f{bottom:338.885733pt;}
.yce{bottom:339.287867pt;}
.y80{bottom:339.302533pt;}
.y65{bottom:339.317200pt;}
.ya0{bottom:339.341600pt;}
.y103{bottom:339.439200pt;}
.y125{bottom:340.248267pt;}
.y1a0{bottom:342.241200pt;}
.y150{bottom:348.176933pt;}
.y179{bottom:348.481200pt;}
.y17{bottom:354.065067pt;}
.yb6{bottom:354.685467pt;}
.y3e{bottom:355.239067pt;}
.ycd{bottom:355.641200pt;}
.y7f{bottom:355.655867pt;}
.y64{bottom:355.670533pt;}
.y9f{bottom:355.694933pt;}
.y102{bottom:355.785867pt;}
.y124{bottom:356.601600pt;}
.y19f{bottom:357.881200pt;}
.y16{bottom:366.858400pt;}
.y178{bottom:367.907867pt;}
.y14f{bottom:367.910267pt;}
.ye2{bottom:371.032133pt;}
.ycc{bottom:371.994533pt;}
.y7e{bottom:372.009200pt;}
.y63{bottom:372.023867pt;}
.y9e{bottom:372.048267pt;}
.y123{bottom:372.954933pt;}
.y19e{bottom:373.521200pt;}
.y15{bottom:379.651733pt;}
.y177{bottom:383.547867pt;}
.y14e{bottom:383.550267pt;}
.yb5{bottom:387.378533pt;}
.ye1{bottom:387.378800pt;}
.y3d{bottom:387.931067pt;}
.ycb{bottom:388.347867pt;}
.y7d{bottom:388.362533pt;}
.y62{bottom:388.377200pt;}
.y9d{bottom:388.401600pt;}
.y101{bottom:388.452267pt;}
.y19d{bottom:389.161200pt;}
.y122{bottom:389.308267pt;}
.y14{bottom:392.439067pt;}
.y176{bottom:399.187867pt;}
.y14d{bottom:399.190267pt;}
.y3c{bottom:404.284400pt;}
.yca{bottom:404.701200pt;}
.yb2{bottom:404.715867pt;}
.y100{bottom:404.805600pt;}
.y13{bottom:405.234400pt;}
.y19c{bottom:408.894533pt;}
.y12{bottom:418.029733pt;}
.y175{bottom:418.614533pt;}
.y14c{bottom:418.923600pt;}
.ye0{bottom:420.045200pt;}
.y3b{bottom:420.637733pt;}
.y7c{bottom:421.054533pt;}
.y61{bottom:421.069200pt;}
.y9c{bottom:421.093600pt;}
.yff{bottom:421.158933pt;}
.y121{bottom:422.001600pt;}
.y19b{bottom:424.534533pt;}
.y11{bottom:430.825067pt;}
.y174{bottom:434.254533pt;}
.y14b{bottom:434.563600pt;}
.ydf{bottom:436.398533pt;}
.y3a{bottom:436.991067pt;}
.y7b{bottom:437.407867pt;}
.y60{bottom:437.422533pt;}
.y9b{bottom:437.446933pt;}
.yfe{bottom:437.512267pt;}
.y120{bottom:438.348267pt;}
.y19a{bottom:440.174533pt;}
.y173{bottom:449.894533pt;}
.yde{bottom:452.751867pt;}
.y39{bottom:453.344400pt;}
.yc9{bottom:453.746533pt;}
.y7a{bottom:453.761200pt;}
.y5f{bottom:453.775867pt;}
.y9a{bottom:453.800267pt;}
.yfd{bottom:453.865600pt;}
.y14a{bottom:454.296933pt;}
.y11f{bottom:454.694933pt;}
.y199{bottom:459.907867pt;}
.ydd{bottom:469.105200pt;}
.y172{bottom:469.321200pt;}
.y38{bottom:469.697733pt;}
.y149{bottom:469.936933pt;}
.yc8{bottom:470.099867pt;}
.y79{bottom:470.114533pt;}
.y5e{bottom:470.129200pt;}
.y99{bottom:470.153600pt;}
.y198{bottom:475.547867pt;}
.y171{bottom:484.961200pt;}
.ydc{bottom:485.458533pt;}
.y148{bottom:485.572933pt;}
.y37{bottom:486.051067pt;}
.yc7{bottom:486.453200pt;}
.y78{bottom:486.467867pt;}
.y98{bottom:486.506933pt;}
.yfc{bottom:486.558933pt;}
.y11e{bottom:487.368133pt;}
.y10{bottom:489.494400pt;}
.y197{bottom:491.187867pt;}
.y170{bottom:500.601200pt;}
.y36{bottom:502.404400pt;}
.yc6{bottom:502.806533pt;}
.y5d{bottom:502.821200pt;}
.y97{bottom:502.860267pt;}
.yfb{bottom:502.905600pt;}
.y11d{bottom:503.721467pt;}
.y147{bottom:505.306267pt;}
.yf{bottom:509.374400pt;}
.y196{bottom:510.921200pt;}
.y16f{bottom:516.241200pt;}
.ydb{bottom:518.151867pt;}
.y35{bottom:518.757733pt;}
.y77{bottom:519.159867pt;}
.y5c{bottom:519.174533pt;}
.y96{bottom:519.213600pt;}
.yfa{bottom:519.252267pt;}
.y11c{bottom:520.074800pt;}
.y146{bottom:520.946267pt;}
.y195{bottom:526.561200pt;}
.yda{bottom:534.498533pt;}
.y76{bottom:535.513200pt;}
.y5b{bottom:535.527867pt;}
.y16e{bottom:535.667867pt;}
.y11b{bottom:536.428133pt;}
.y194{bottom:542.201200pt;}
.ye{bottom:546.339600pt;}
.y16d{bottom:551.307867pt;}
.y34{bottom:551.449733pt;}
.y75{bottom:551.866533pt;}
.y5a{bottom:551.881200pt;}
.y95{bottom:551.905600pt;}
.yf9{bottom:551.912133pt;}
.y145{bottom:557.020533pt;}
.y193{bottom:561.934533pt;}
.yd{bottom:566.342267pt;}
.y16c{bottom:566.947867pt;}
.yd9{bottom:567.191600pt;}
.y33{bottom:567.803067pt;}
.y74{bottom:568.219867pt;}
.y59{bottom:568.234533pt;}
.y94{bottom:568.258933pt;}
.yf8{bottom:568.265467pt;}
.y11a{bottom:569.121467pt;}
.y192{bottom:577.574533pt;}
.y16b{bottom:582.587867pt;}
.y32{bottom:584.156400pt;}
.y73{bottom:584.573200pt;}
.y58{bottom:584.587867pt;}
.y93{bottom:584.612267pt;}
.yf7{bottom:584.618800pt;}
.y119{bottom:585.468133pt;}
.yc{bottom:592.019467pt;}
.y191{bottom:593.214533pt;}
.y31{bottom:600.509733pt;}
.y72{bottom:600.926533pt;}
.y92{bottom:600.965600pt;}
.yf6{bottom:600.972133pt;}
.y118{bottom:601.814800pt;}
.y16a{bottom:602.014533pt;}
.y144{bottom:607.134133pt;}
.yb{bottom:612.011467pt;}
.y190{bottom:612.947867pt;}
.y30{bottom:616.863067pt;}
.y57{bottom:617.279867pt;}
.y91{bottom:617.318933pt;}
.yf5{bottom:617.325467pt;}
.y133{bottom:617.332133pt;}
.y169{bottom:617.654533pt;}
.y117{bottom:618.161467pt;}
.y143{bottom:623.487467pt;}
.y18f{bottom:628.587867pt;}
.y1b0{bottom:628.598667pt;}
.y2f{bottom:633.216400pt;}
.y168{bottom:633.294533pt;}
.y56{bottom:633.633200pt;}
.y90{bottom:633.672267pt;}
.yf4{bottom:633.678800pt;}
.ya{bottom:637.668800pt;}
.y142{bottom:639.840800pt;}
.y18e{bottom:644.227867pt;}
.y1af{bottom:644.238667pt;}
.y2e{bottom:649.569733pt;}
.y55{bottom:649.986533pt;}
.y132{bottom:650.025467pt;}
.y8f{bottom:650.025600pt;}
.y116{bottom:650.821200pt;}
.y167{bottom:652.721200pt;}
.y141{bottom:656.194133pt;}
.y1ae{bottom:659.867867pt;}
.y9{bottom:661.672800pt;}
.y18d{bottom:663.961200pt;}
.y71{bottom:666.325200pt;}
.yb1{bottom:666.339867pt;}
.yf3{bottom:666.372133pt;}
.y115{bottom:667.174533pt;}
.y166{bottom:668.361200pt;}
.y140{bottom:672.547467pt;}
.y18c{bottom:679.601200pt;}
.y2d{bottom:682.261733pt;}
.y54{bottom:682.678533pt;}
.yb0{bottom:682.693200pt;}
.yf2{bottom:682.718800pt;}
.y8e{bottom:682.718933pt;}
.y114{bottom:683.527867pt;}
.y165{bottom:684.001200pt;}
.y8{bottom:685.676800pt;}
.y18b{bottom:695.241200pt;}
.y2c{bottom:698.615067pt;}
.y53{bottom:699.031867pt;}
.yaf{bottom:699.046533pt;}
.yf1{bottom:699.065467pt;}
.y113{bottom:699.881200pt;}
.y13f{bottom:701.744533pt;}
.y164{bottom:703.427867pt;}
.y7{bottom:709.680800pt;}
.y2b{bottom:714.968400pt;}
.y18a{bottom:714.974533pt;}
.y52{bottom:715.385200pt;}
.yae{bottom:715.399867pt;}
.yf0{bottom:715.412133pt;}
.y112{bottom:716.234533pt;}
.y163{bottom:719.067867pt;}
.y189{bottom:730.614533pt;}
.y2a{bottom:731.321733pt;}
.y51{bottom:731.738533pt;}
.yad{bottom:731.753200pt;}
.y111{bottom:732.587867pt;}
.y162{bottom:734.707867pt;}
.y29{bottom:747.675067pt;}
.y50{bottom:748.091867pt;}
.y161{bottom:750.347867pt;}
.y4f{bottom:764.445200pt;}
.y110{bottom:765.281200pt;}
.y160{bottom:765.987867pt;}
.y6{bottom:777.899733pt;}
.y28{bottom:779.139867pt;}
.y4e{bottom:780.798533pt;}
.y10f{bottom:781.627867pt;}
.y5{bottom:793.537067pt;}
.y2{bottom:810.330667pt;}
.y27{bottom:824.738800pt;}
.h4{height:13.346667pt;}
.h11{height:27.477333pt;}
.h12{height:27.514667pt;}
.h10{height:27.738667pt;}
.h5{height:31.445333pt;}
.he{height:31.733333pt;}
.hf{height:31.764267pt;}
.h16{height:37.333333pt;}
.hc{height:39.530667pt;}
.hd{height:39.555200pt;}
.hb{height:45.344000pt;}
.h15{height:46.506667pt;}
.h17{height:46.522667pt;}
.h18{height:46.549867pt;}
.h13{height:48.533333pt;}
.ha{height:49.994667pt;}
.h2{height:51.157333pt;}
.h8{height:52.266667pt;}
.h14{height:55.808000pt;}
.h3{height:58.960000pt;}
.h9{height:60.458667pt;}
.h6{height:63.466667pt;}
.h7{height:65.109333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:113.385333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x8{left:92.857600pt;}
.xc{left:98.261200pt;}
.x9{left:105.436400pt;}
.x11{left:107.590133pt;}
.x6{left:109.963067pt;}
.x16{left:120.193467pt;}
.x10{left:122.846533pt;}
.xd{left:129.062800pt;}
.xe{left:133.729467pt;}
.x7{left:137.582933pt;}
.x15{left:148.526800pt;}
.xb{left:157.683200pt;}
.x13{left:160.861067pt;}
.x4{left:167.785733pt;}
.xa{left:171.142000pt;}
.x12{left:179.754400pt;}
.x3{left:185.964400pt;}
.x5{left:196.504400pt;}
.x14{left:296.900133pt;}
.x2{left:452.032000pt;}
.xf{left:456.759200pt;}
}




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