
    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_e3b739db8632d8cf148438a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.722000;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_4feaf539ad45d97c8aeee633.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.156000;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_d351501f9b289f2f3f14ff6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.156000;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_7caf2e1c67706569fa34424e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.150000;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_30f4de0867e1dcba735adff0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_3fa1161fc2782e1d20bd8e30.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979000;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_0835a79a8bf070aa630aae0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_65db0c6f5c14ffa56c8106bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.156000;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_f066a5a6c6cc9be43163674f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943000;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_920549a39b1619f9cd5ef596.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,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);}
.v2{vertical-align:-14.985000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:25.974000px;}
.ls4{letter-spacing:-2.820000px;}
.ls0{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.650000px;}
.ls17{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.188000px;}
.lsc{letter-spacing:-0.900000px;}
.ls2{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.675000px;}
.ls6{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.384780px;}
.ls8{letter-spacing:-0.330000px;}
.ls13{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.225000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000540px;}
.ls9{letter-spacing:0.660000px;}
.ls14{letter-spacing:1.080000px;}
.ls12{letter-spacing:6.145800px;}
.ls10{letter-spacing:43.356000px;}
.lsd{letter-spacing:43.356600px;}
.ls3{letter-spacing:57.943200px;}
.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;}
}
.wsa{word-spacing:-21.684000px;}
.wsd8{word-spacing:-18.348000px;}
.wse4{word-spacing:-17.688000px;}
.wsb{word-spacing:-15.178800px;}
.ws14a{word-spacing:-13.344000px;}
.ws163{word-spacing:-12.864000px;}
.wse{word-spacing:-12.510000px;}
.wsaa{word-spacing:-12.285000px;}
.wsd{word-spacing:-11.835000px;}
.wsa9{word-spacing:-10.696884px;}
.wse5{word-spacing:-10.312104px;}
.wsfc{word-spacing:-9.702000px;}
.wse1{word-spacing:-9.174000px;}
.ws52{word-spacing:-9.108000px;}
.ws111{word-spacing:-8.514000px;}
.ws51{word-spacing:-8.052000px;}
.ws6{word-spacing:-7.524000px;}
.ws65{word-spacing:-7.392000px;}
.wsc{word-spacing:-7.293330px;}
.ws119{word-spacing:-7.260000px;}
.ws4b{word-spacing:-7.194000px;}
.ws10c{word-spacing:-7.062000px;}
.wsd1{word-spacing:-6.798000px;}
.ws141{word-spacing:-6.732000px;}
.ws10a{word-spacing:-6.666000px;}
.ws130{word-spacing:-6.600000px;}
.ws96{word-spacing:-6.402000px;}
.ws12b{word-spacing:-6.336000px;}
.ws1d{word-spacing:-6.204000px;}
.wsf6{word-spacing:-6.138000px;}
.ws50{word-spacing:-6.072000px;}
.ws4e{word-spacing:-6.006000px;}
.wseb{word-spacing:-5.874000px;}
.ws77{word-spacing:-5.742000px;}
.ws129{word-spacing:-5.676000px;}
.wsf9{word-spacing:-5.610000px;}
.ws5f{word-spacing:-5.412000px;}
.ws13f{word-spacing:-5.214000px;}
.wsa7{word-spacing:-5.082000px;}
.ws132{word-spacing:-5.016000px;}
.ws112{word-spacing:-4.950000px;}
.wse6{word-spacing:-4.884000px;}
.ws8c{word-spacing:-4.818000px;}
.ws56{word-spacing:-4.752000px;}
.ws9e{word-spacing:-4.620000px;}
.wsea{word-spacing:-4.554000px;}
.wsc3{word-spacing:-4.488000px;}
.ws12c{word-spacing:-4.290000px;}
.ws22{word-spacing:-4.092000px;}
.ws109{word-spacing:-4.026000px;}
.ws15{word-spacing:-3.960000px;}
.ws23{word-spacing:-3.828000px;}
.ws27{word-spacing:-3.762000px;}
.ws59{word-spacing:-3.696000px;}
.ws4f{word-spacing:-3.630000px;}
.ws108{word-spacing:-3.564000px;}
.ws31{word-spacing:-3.498000px;}
.ws63{word-spacing:-3.432000px;}
.ws95{word-spacing:-3.366000px;}
.wsce{word-spacing:-3.300000px;}
.ws12f{word-spacing:-3.234000px;}
.wscb{word-spacing:-3.195000px;}
.wsc6{word-spacing:-3.168000px;}
.ws53{word-spacing:-3.102000px;}
.wsd6{word-spacing:-3.036000px;}
.wsc7{word-spacing:-2.970000px;}
.ws11e{word-spacing:-2.904000px;}
.ws10b{word-spacing:-2.838000px;}
.ws84{word-spacing:-2.772000px;}
.ws69{word-spacing:-2.706000px;}
.ws158{word-spacing:-2.688000px;}
.ws131{word-spacing:-2.574000px;}
.ws7a{word-spacing:-2.508000px;}
.ws7d{word-spacing:-2.442000px;}
.ws5b{word-spacing:-2.376000px;}
.ws133{word-spacing:-2.310000px;}
.ws73{word-spacing:-2.244000px;}
.ws79{word-spacing:-2.178000px;}
.ws6a{word-spacing:-2.112000px;}
.wsbd{word-spacing:-2.070000px;}
.ws5a{word-spacing:-2.046000px;}
.ws2f{word-spacing:-1.980000px;}
.ws83{word-spacing:-1.914000px;}
.ws15a{word-spacing:-1.872000px;}
.ws67{word-spacing:-1.848000px;}
.wsb6{word-spacing:-1.800000px;}
.ws3{word-spacing:-1.782000px;}
.ws99{word-spacing:-1.716000px;}
.ws5{word-spacing:-1.650000px;}
.wsc0{word-spacing:-1.584000px;}
.wsbc{word-spacing:-1.530000px;}
.ws6f{word-spacing:-1.518000px;}
.wsa6{word-spacing:-1.488000px;}
.ws10f{word-spacing:-1.452000px;}
.wsbb{word-spacing:-1.440000px;}
.ws14e{word-spacing:-1.392000px;}
.ws9c{word-spacing:-1.386000px;}
.ws12a{word-spacing:-1.320000px;}
.ws4c{word-spacing:-1.254000px;}
.ws19{word-spacing:-1.215000px;}
.ws37{word-spacing:-1.188000px;}
.wsa4{word-spacing:-1.152000px;}
.ws70{word-spacing:-1.122000px;}
.ws1a{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.056000px;}
.ws2b{word-spacing:-0.990000px;}
.wsf4{word-spacing:-0.924000px;}
.ws167{word-spacing:-0.912000px;}
.ws13{word-spacing:-0.855000px;}
.ws17{word-spacing:-0.810000px;}
.wsfd{word-spacing:-0.792000px;}
.ws166{word-spacing:-0.768000px;}
.wsab{word-spacing:-0.726000px;}
.ws8e{word-spacing:-0.660000px;}
.ws113{word-spacing:-0.594000px;}
.wsb9{word-spacing:-0.585000px;}
.ws159{word-spacing:-0.576000px;}
.wsa2{word-spacing:-0.528000px;}
.ws10d{word-spacing:-0.495000px;}
.ws16b{word-spacing:-0.480000px;}
.wsb7{word-spacing:-0.450000px;}
.ws2{word-spacing:-0.396000px;}
.ws162{word-spacing:-0.384000px;}
.ws12d{word-spacing:-0.330000px;}
.wsca{word-spacing:-0.315000px;}
.ws1b{word-spacing:-0.270000px;}
.wsdb{word-spacing:-0.264000px;}
.wsa5{word-spacing:-0.240000px;}
.wsd2{word-spacing:-0.198000px;}
.wsb8{word-spacing:-0.135000px;}
.ws42{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.wsc1{word-spacing:0.066000px;}
.ws135{word-spacing:0.144000px;}
.ws93{word-spacing:0.198000px;}
.ws62{word-spacing:0.264000px;}
.ws76{word-spacing:0.330000px;}
.ws160{word-spacing:0.336000px;}
.ws49{word-spacing:0.396000px;}
.ws138{word-spacing:0.432000px;}
.ws91{word-spacing:0.462000px;}
.ws120{word-spacing:0.495000px;}
.ws94{word-spacing:0.528000px;}
.wse8{word-spacing:0.594000px;}
.ws137{word-spacing:0.624000px;}
.ws25{word-spacing:0.660000px;}
.ws150{word-spacing:0.672000px;}
.ws14{word-spacing:0.675000px;}
.wsb2{word-spacing:0.720000px;}
.ws8{word-spacing:0.726000px;}
.ws9{word-spacing:0.792000px;}
.wsb3{word-spacing:0.855000px;}
.wsc2{word-spacing:0.858000px;}
.ws15b{word-spacing:0.864000px;}
.wscc{word-spacing:0.900000px;}
.ws15c{word-spacing:0.960000px;}
.ws11f{word-spacing:1.035000px;}
.ws90{word-spacing:1.056000px;}
.ws32{word-spacing:1.122000px;}
.ws4{word-spacing:1.188000px;}
.ws134{word-spacing:1.254000px;}
.ws165{word-spacing:1.296000px;}
.ws2e{word-spacing:1.320000px;}
.ws2d{word-spacing:1.386000px;}
.wsb5{word-spacing:1.395000px;}
.ws6e{word-spacing:1.452000px;}
.wscd{word-spacing:1.485000px;}
.ws110{word-spacing:1.518000px;}
.ws16c{word-spacing:1.536000px;}
.ws6b{word-spacing:1.584000px;}
.ws6c{word-spacing:1.650000px;}
.ws15d{word-spacing:1.680000px;}
.ws74{word-spacing:1.716000px;}
.ws97{word-spacing:1.782000px;}
.ws0{word-spacing:1.800000px;}
.ws168{word-spacing:1.824000px;}
.ws7c{word-spacing:1.848000px;}
.ws18{word-spacing:1.890000px;}
.ws45{word-spacing:1.980000px;}
.ws146{word-spacing:2.046000px;}
.ws2c{word-spacing:2.112000px;}
.ws155{word-spacing:2.160000px;}
.wsf0{word-spacing:2.178000px;}
.ws149{word-spacing:2.244000px;}
.ws4a{word-spacing:2.310000px;}
.wsc4{word-spacing:2.376000px;}
.ws92{word-spacing:2.442000px;}
.ws6d{word-spacing:2.508000px;}
.wsb4{word-spacing:2.520000px;}
.ws44{word-spacing:2.574000px;}
.wsef{word-spacing:2.640000px;}
.ws26{word-spacing:2.706000px;}
.ws48{word-spacing:2.772000px;}
.ws47{word-spacing:2.838000px;}
.ws60{word-spacing:2.904000px;}
.ws13c{word-spacing:2.970000px;}
.ws8f{word-spacing:3.036000px;}
.ws72{word-spacing:3.102000px;}
.ws151{word-spacing:3.120000px;}
.wse9{word-spacing:3.168000px;}
.ws136{word-spacing:3.216000px;}
.ws100{word-spacing:3.234000px;}
.ws11d{word-spacing:3.300000px;}
.ws15e{word-spacing:3.360000px;}
.ws9f{word-spacing:3.366000px;}
.ws154{word-spacing:3.408000px;}
.ws78{word-spacing:3.432000px;}
.ws80{word-spacing:3.498000px;}
.wsf5{word-spacing:3.564000px;}
.ws4d{word-spacing:3.630000px;}
.wsba{word-spacing:3.690000px;}
.ws24{word-spacing:3.696000px;}
.wsc5{word-spacing:3.762000px;}
.ws5e{word-spacing:3.828000px;}
.ws29{word-spacing:3.894000px;}
.ws11b{word-spacing:3.960000px;}
.ws61{word-spacing:4.026000px;}
.ws9d{word-spacing:4.092000px;}
.ws169{word-spacing:4.128000px;}
.wsbf{word-spacing:4.140000px;}
.wsd9{word-spacing:4.158000px;}
.ws3c{word-spacing:4.224000px;}
.ws7{word-spacing:4.290000px;}
.ws71{word-spacing:4.356000px;}
.ws66{word-spacing:4.422000px;}
.ws36{word-spacing:4.488000px;}
.ws8b{word-spacing:4.554000px;}
.wsd5{word-spacing:4.620000px;}
.ws10e{word-spacing:4.686000px;}
.wsae{word-spacing:4.752000px;}
.ws14f{word-spacing:4.800000px;}
.wsac{word-spacing:4.818000px;}
.ws161{word-spacing:4.848000px;}
.ws9b{word-spacing:4.884000px;}
.ws33{word-spacing:4.950000px;}
.ws3b{word-spacing:5.016000px;}
.wsa3{word-spacing:5.082000px;}
.ws16{word-spacing:5.085000px;}
.ws7b{word-spacing:5.148000px;}
.wsf8{word-spacing:5.214000px;}
.ws55{word-spacing:5.280000px;}
.ws86{word-spacing:5.346000px;}
.ws3e{word-spacing:5.412000px;}
.wsdd{word-spacing:5.478000px;}
.wsda{word-spacing:5.544000px;}
.ws8a{word-spacing:5.610000px;}
.ws153{word-spacing:5.616000px;}
.ws46{word-spacing:5.676000px;}
.ws89{word-spacing:5.742000px;}
.ws40{word-spacing:5.808000px;}
.ws152{word-spacing:5.856000px;}
.wsb0{word-spacing:5.874000px;}
.wscf{word-spacing:5.940000px;}
.ws14c{word-spacing:6.000000px;}
.ws1c{word-spacing:6.072000px;}
.ws147{word-spacing:6.204000px;}
.wse2{word-spacing:6.255000px;}
.ws85{word-spacing:6.270000px;}
.ws14d{word-spacing:6.288000px;}
.ws117{word-spacing:6.336000px;}
.ws7e{word-spacing:6.402000px;}
.ws13a{word-spacing:6.468000px;}
.wsad{word-spacing:6.534000px;}
.ws164{word-spacing:6.576000px;}
.wsfa{word-spacing:6.666000px;}
.ws1f{word-spacing:6.732000px;}
.wsd3{word-spacing:6.798000px;}
.wse3{word-spacing:6.840000px;}
.ws11a{word-spacing:6.864000px;}
.wsed{word-spacing:6.930000px;}
.ws87{word-spacing:6.996000px;}
.ws16d{word-spacing:7.056000px;}
.wsee{word-spacing:7.062000px;}
.ws12{word-spacing:7.128000px;}
.ws156{word-spacing:7.248000px;}
.wsf{word-spacing:7.260000px;}
.ws34{word-spacing:7.392000px;}
.ws101{word-spacing:7.524000px;}
.ws1e{word-spacing:7.590000px;}
.ws148{word-spacing:7.788000px;}
.ws54{word-spacing:7.920000px;}
.ws128{word-spacing:7.986000px;}
.ws38{word-spacing:8.052000px;}
.ws9a{word-spacing:8.118000px;}
.wsff{word-spacing:8.184000px;}
.ws20{word-spacing:8.250000px;}
.ws88{word-spacing:8.316000px;}
.wsbe{word-spacing:8.325000px;}
.ws3a{word-spacing:8.382000px;}
.ws21{word-spacing:8.448000px;}
.ws68{word-spacing:8.514000px;}
.ws43{word-spacing:8.580000px;}
.ws15f{word-spacing:8.592000px;}
.wsec{word-spacing:8.778000px;}
.wsb1{word-spacing:8.844000px;}
.wsd4{word-spacing:8.910000px;}
.ws5d{word-spacing:8.976000px;}
.ws5c{word-spacing:9.042000px;}
.ws16a{word-spacing:9.072000px;}
.wsfb{word-spacing:9.108000px;}
.ws157{word-spacing:9.168000px;}
.wsa8{word-spacing:9.174000px;}
.ws3d{word-spacing:9.240000px;}
.wsa0{word-spacing:9.306000px;}
.ws116{word-spacing:9.372000px;}
.ws142{word-spacing:9.438000px;}
.ws114{word-spacing:9.570000px;}
.ws11{word-spacing:9.636000px;}
.ws10{word-spacing:9.834000px;}
.ws16e{word-spacing:9.888000px;}
.ws3f{word-spacing:10.032000px;}
.ws64{word-spacing:10.098000px;}
.ws41{word-spacing:10.296000px;}
.ws2a{word-spacing:10.362000px;}
.ws140{word-spacing:10.428000px;}
.ws123{word-spacing:10.494000px;}
.ws7f{word-spacing:10.560000px;}
.ws58{word-spacing:10.626000px;}
.wsf2{word-spacing:10.692000px;}
.wsdf{word-spacing:10.824000px;}
.ws35{word-spacing:10.890000px;}
.wsdc{word-spacing:10.956000px;}
.ws139{word-spacing:11.022000px;}
.wsc8{word-spacing:11.025000px;}
.ws144{word-spacing:11.088000px;}
.wsaf{word-spacing:11.154000px;}
.ws30{word-spacing:11.220000px;}
.ws98{word-spacing:11.352000px;}
.ws118{word-spacing:11.418000px;}
.wsd7{word-spacing:11.484000px;}
.wsd0{word-spacing:11.550000px;}
.wsfe{word-spacing:11.682000px;}
.wsf1{word-spacing:11.814000px;}
.wse7{word-spacing:11.880000px;}
.ws75{word-spacing:11.946000px;}
.wsf3{word-spacing:12.210000px;}
.ws106{word-spacing:12.474000px;}
.ws145{word-spacing:12.804000px;}
.ws124{word-spacing:13.068000px;}
.wse0{word-spacing:13.134000px;}
.ws39{word-spacing:13.266000px;}
.ws122{word-spacing:13.530000px;}
.ws82{word-spacing:13.926000px;}
.ws115{word-spacing:13.992000px;}
.ws12e{word-spacing:14.256000px;}
.wsde{word-spacing:14.850000px;}
.ws14b{word-spacing:14.982000px;}
.wsa1{word-spacing:15.114000px;}
.ws143{word-spacing:15.708000px;}
.ws28{word-spacing:15.774000px;}
.ws57{word-spacing:16.104000px;}
.ws13d{word-spacing:16.302000px;}
.wsf7{word-spacing:16.566000px;}
.ws126{word-spacing:16.830000px;}
.ws13b{word-spacing:16.896000px;}
.ws81{word-spacing:17.292000px;}
.wsc9{word-spacing:17.325000px;}
.ws107{word-spacing:17.952000px;}
.ws13e{word-spacing:18.018000px;}
.ws125{word-spacing:18.480000px;}
.ws103{word-spacing:18.678000px;}
.ws127{word-spacing:19.536000px;}
.ws105{word-spacing:20.658000px;}
.ws102{word-spacing:20.856000px;}
.ws121{word-spacing:21.780000px;}
.ws11c{word-spacing:22.704000px;}
.ws104{word-spacing:25.542000px;}
._1c{margin-left:-38.044800px;}
._23{margin-left:-31.910400px;}
._21{margin-left:-28.595400px;}
._13{margin-left:-24.951600px;}
._24{margin-left:-23.284800px;}
._18{margin-left:-18.024000px;}
._1e{margin-left:-16.116000px;}
._19{margin-left:-11.863800px;}
._1a{margin-left:-10.278000px;}
._1d{margin-left:-9.060600px;}
._9{margin-left:-8.055060px;}
._d{margin-left:-6.970200px;}
._4{margin-left:-5.862600px;}
._12{margin-left:-4.777200px;}
._1{margin-left:-3.588000px;}
._2{margin-left:-2.509200px;}
._0{margin-left:-1.404000px;}
._3{width:1.117800px;}
._10{width:2.171400px;}
._5{width:3.298800px;}
._8{width:4.774500px;}
._14{width:5.820000px;}
._6{width:7.656000px;}
._11{width:8.701800px;}
._f{width:9.840600px;}
._1b{width:11.515200px;}
._e{width:12.790800px;}
._22{width:15.213000px;}
._20{width:16.387800px;}
._17{width:37.079880px;}
._1f{width:42.300480px;}
._b{width:57.959940px;}
._15{width:60.029940px;}
._16{width:61.605000px;}
._a{width:67.455000px;}
._c{width:70.650000px;}
._7{width:76.500000px;}
.fc5{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc4{color:rgb(68,68,68);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:26.235000px;}
.fsa{font-size:38.478000px;}
.fs1{font-size:39.000000px;}
.fs0{font-size:45.000000px;}
.fs7{font-size:45.474000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:54.600000px;}
.fs2{font-size:59.400000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:78.000000px;}
.fs4{font-size:112.800000px;}
.y0{bottom:0.000000px;}
.y4{bottom:61.631400px;}
.y5{bottom:66.826050px;}
.y3{bottom:73.631400px;}
.y82{bottom:93.543150px;}
.y36{bottom:93.543300px;}
.y8b{bottom:95.669100px;}
.y92{bottom:95.669250px;}
.y6f{bottom:95.705400px;}
.ybf{bottom:96.826050px;}
.yd5{bottom:97.081500px;}
.y58{bottom:97.205400px;}
.y8d{bottom:99.415500px;}
.y10a{bottom:101.489400px;}
.y81{bottom:107.043150px;}
.y8a{bottom:109.169100px;}
.y91{bottom:109.169250px;}
.y35{bottom:110.789550px;}
.yd4{bottom:112.081500px;}
.y12{bottom:114.875550px;}
.y1{bottom:114.955800px;}
.y6e{bottom:115.205400px;}
.ybe{bottom:116.326050px;}
.y109{bottom:116.489400px;}
.y57{bottom:116.705400px;}
.y80{bottom:120.543150px;}
.y89{bottom:122.669100px;}
.y90{bottom:122.669250px;}
.y8c{bottom:124.289400px;}
.yd3{bottom:127.081500px;}
.y34{bottom:129.047250px;}
.y108{bottom:131.489400px;}
.y7f{bottom:134.043150px;}
.y6d{bottom:134.705400px;}
.ybd{bottom:135.826050px;}
.y56{bottom:136.205400px;}
.y88{bottom:139.915350px;}
.y8f{bottom:139.915500px;}
.yd2{bottom:142.081500px;}
.y33{bottom:142.547250px;}
.y107{bottom:146.489400px;}
.y7e{bottom:147.543150px;}
.y6c{bottom:154.205400px;}
.ybc{bottom:155.326050px;}
.y55{bottom:155.705400px;}
.y32{bottom:156.047250px;}
.yd1{bottom:157.081500px;}
.y87{bottom:158.173050px;}
.y106{bottom:161.489400px;}
.y7d{bottom:164.789400px;}
.y31{bottom:169.547250px;}
.y86{bottom:171.673050px;}
.yd0{bottom:172.081500px;}
.y8e{bottom:173.705400px;}
.ybb{bottom:174.826050px;}
.y54{bottom:175.205400px;}
.y105{bottom:176.489400px;}
.y85{bottom:185.173050px;}
.y7c{bottom:186.793350px;}
.y30{bottom:186.793500px;}
.ycf{bottom:187.081500px;}
.y104{bottom:191.489400px;}
.y6b{bottom:193.205400px;}
.yba{bottom:194.326050px;}
.y53{bottom:194.705400px;}
.y84{bottom:198.673050px;}
.yce{bottom:202.081500px;}
.y7b{bottom:205.051050px;}
.y2f{bottom:205.051200px;}
.y103{bottom:206.489400px;}
.y6a{bottom:212.705400px;}
.yb9{bottom:213.826050px;}
.y52{bottom:214.205400px;}
.y83{bottom:215.919300px;}
.ycd{bottom:217.081500px;}
.y7a{bottom:218.551050px;}
.y2e{bottom:218.551200px;}
.y102{bottom:221.489400px;}
.y79{bottom:232.051050px;}
.y2d{bottom:232.051200px;}
.ycc{bottom:232.081500px;}
.y69{bottom:232.205400px;}
.yb8{bottom:233.326050px;}
.y5f{bottom:233.705400px;}
.y134{bottom:236.429550px;}
.y101{bottom:236.489400px;}
.y78{bottom:245.551050px;}
.ycb{bottom:247.081500px;}
.y2c{bottom:249.297450px;}
.y133{bottom:251.429550px;}
.y100{bottom:251.489400px;}
.y68{bottom:251.705400px;}
.yb7{bottom:252.826050px;}
.y51{bottom:253.205400px;}
.y11{bottom:257.008650px;}
.y77{bottom:259.051050px;}
.yca{bottom:262.081500px;}
.y132{bottom:266.429550px;}
.yff{bottom:266.489400px;}
.y2b{bottom:267.555150px;}
.y67{bottom:271.205400px;}
.yb6{bottom:272.326050px;}
.y76{bottom:272.551050px;}
.y50{bottom:272.705400px;}
.y10{bottom:276.508650px;}
.yc9{bottom:277.081500px;}
.y2a{bottom:281.055150px;}
.y131{bottom:281.429550px;}
.yfe{bottom:281.489400px;}
.y75{bottom:286.051050px;}
.y66{bottom:290.705400px;}
.yb5{bottom:291.826050px;}
.yc8{bottom:292.081500px;}
.y5e{bottom:292.205400px;}
.y29{bottom:294.555150px;}
.yf{bottom:296.008650px;}
.y130{bottom:296.429550px;}
.yfd{bottom:296.489400px;}
.y74{bottom:299.551050px;}
.yc7{bottom:307.081500px;}
.y28{bottom:308.055150px;}
.y65{bottom:310.205400px;}
.yb4{bottom:311.326050px;}
.y12f{bottom:311.429550px;}
.yfc{bottom:311.489400px;}
.y4f{bottom:311.705400px;}
.y73{bottom:313.051050px;}
.ye{bottom:315.508650px;}
.y27{bottom:321.555150px;}
.yc6{bottom:322.081500px;}
.y12e{bottom:326.429550px;}
.yfb{bottom:326.489400px;}
.y72{bottom:326.551050px;}
.y64{bottom:329.705400px;}
.yb3{bottom:330.826050px;}
.y5d{bottom:331.205400px;}
.yd{bottom:335.008650px;}
.y26{bottom:335.055150px;}
.yc5{bottom:337.081500px;}
.y71{bottom:340.051050px;}
.y12d{bottom:341.429550px;}
.yfa{bottom:341.489400px;}
.y98{bottom:349.205400px;}
.yb2{bottom:350.326050px;}
.y4e{bottom:350.705400px;}
.yc4{bottom:352.081500px;}
.y25{bottom:352.301400px;}
.y12c{bottom:356.429550px;}
.yf9{bottom:356.489400px;}
.y70{bottom:357.297300px;}
.yc3{bottom:367.081500px;}
.y63{bottom:368.705400px;}
.yb1{bottom:369.826050px;}
.y4d{bottom:370.205400px;}
.y12b{bottom:371.429550px;}
.yf8{bottom:371.489400px;}
.yc{bottom:374.008650px;}
.yc2{bottom:382.081500px;}
.y62{bottom:383.705400px;}
.y12a{bottom:386.429550px;}
.yf7{bottom:386.489400px;}
.yb0{bottom:389.326050px;}
.y4c{bottom:389.705400px;}
.y24{bottom:391.118700px;}
.yb{bottom:393.508650px;}
.yc1{bottom:397.081500px;}
.y61{bottom:398.705400px;}
.y129{bottom:401.429550px;}
.yf6{bottom:401.489400px;}
.yaf{bottom:408.826050px;}
.y4b{bottom:409.205400px;}
.y97{bottom:409.955400px;}
.y23{bottom:410.618700px;}
.ya{bottom:413.008650px;}
.y60{bottom:413.705400px;}
.y128{bottom:416.429550px;}
.yf5{bottom:416.489400px;}
.y96{bottom:424.955400px;}
.yae{bottom:428.326050px;}
.y4a{bottom:428.705400px;}
.y22{bottom:430.118700px;}
.yc0{bottom:430.858800px;}
.y127{bottom:431.429550px;}
.yf4{bottom:431.489400px;}
.y9{bottom:432.508650px;}
.y95{bottom:439.955400px;}
.y126{bottom:446.429550px;}
.yf3{bottom:446.489400px;}
.yad{bottom:447.826050px;}
.y49{bottom:448.205400px;}
.y21{bottom:449.618700px;}
.y8{bottom:452.008650px;}
.y94{bottom:454.955400px;}
.y125{bottom:461.429550px;}
.yf2{bottom:461.489400px;}
.yac{bottom:467.326050px;}
.y48{bottom:467.705400px;}
.y20{bottom:469.118700px;}
.y93{bottom:469.955400px;}
.y124{bottom:476.429550px;}
.yf1{bottom:476.489400px;}
.y47{bottom:487.205400px;}
.y123{bottom:491.429550px;}
.yf0{bottom:491.489400px;}
.yab{bottom:506.326050px;}
.y122{bottom:506.429550px;}
.yef{bottom:506.489400px;}
.y46{bottom:506.705400px;}
.y1f{bottom:508.118700px;}
.y121{bottom:521.429550px;}
.yee{bottom:521.489400px;}
.yaa{bottom:525.826050px;}
.y45{bottom:526.205400px;}
.y120{bottom:536.429550px;}
.yed{bottom:536.489400px;}
.ya9{bottom:545.326050px;}
.y44{bottom:545.705400px;}
.y11f{bottom:551.429550px;}
.yec{bottom:551.489400px;}
.ya8{bottom:564.826050px;}
.y43{bottom:565.205400px;}
.y11e{bottom:566.429550px;}
.yeb{bottom:566.489400px;}
.y1e{bottom:566.618550px;}
.y11d{bottom:581.429550px;}
.yea{bottom:581.489400px;}
.ya7{bottom:584.326050px;}
.y5c{bottom:584.705400px;}
.y1d{bottom:586.568550px;}
.y11c{bottom:596.429550px;}
.ye9{bottom:596.489400px;}
.ya6{bottom:603.826050px;}
.y42{bottom:604.205400px;}
.y1c{bottom:606.518700px;}
.y11b{bottom:611.429550px;}
.ye8{bottom:611.489400px;}
.ya5{bottom:623.326050px;}
.y5b{bottom:623.705400px;}
.y1b{bottom:626.468700px;}
.ye7{bottom:626.489400px;}
.y11a{bottom:641.429550px;}
.ye6{bottom:641.489400px;}
.ya4{bottom:642.826050px;}
.y5a{bottom:643.205400px;}
.y1a{bottom:646.418550px;}
.ye5{bottom:656.489400px;}
.ya3{bottom:662.326050px;}
.y41{bottom:662.705400px;}
.y119{bottom:671.429550px;}
.ye4{bottom:671.489400px;}
.ya2{bottom:681.826050px;}
.y40{bottom:682.205400px;}
.y19{bottom:685.418550px;}
.y118{bottom:686.429550px;}
.ye3{bottom:686.489400px;}
.ya1{bottom:701.326050px;}
.y117{bottom:701.429550px;}
.ye2{bottom:701.489400px;}
.y59{bottom:701.705400px;}
.y18{bottom:715.418550px;}
.y116{bottom:716.429550px;}
.ye1{bottom:716.489400px;}
.ya0{bottom:720.826050px;}
.y3f{bottom:721.205400px;}
.y115{bottom:731.429550px;}
.ye0{bottom:731.489400px;}
.y9f{bottom:740.326050px;}
.y3e{bottom:740.705400px;}
.y17{bottom:745.418550px;}
.y114{bottom:746.429550px;}
.ydf{bottom:746.489400px;}
.y9e{bottom:759.826050px;}
.y3d{bottom:760.205400px;}
.y113{bottom:761.429550px;}
.yde{bottom:761.489400px;}
.y112{bottom:776.429550px;}
.ydd{bottom:776.489400px;}
.y9d{bottom:779.326050px;}
.y3c{bottom:779.705400px;}
.y111{bottom:791.429550px;}
.ydc{bottom:791.489400px;}
.y9c{bottom:798.826050px;}
.y3b{bottom:799.205400px;}
.y16{bottom:805.418550px;}
.y110{bottom:806.429550px;}
.ydb{bottom:806.489400px;}
.y9b{bottom:818.326050px;}
.y3a{bottom:818.705400px;}
.y10f{bottom:821.429550px;}
.yda{bottom:821.489400px;}
.y15{bottom:835.418550px;}
.y10e{bottom:836.429550px;}
.yd9{bottom:836.489400px;}
.y9a{bottom:837.826050px;}
.y39{bottom:838.205400px;}
.y10d{bottom:851.429550px;}
.yd8{bottom:851.489400px;}
.y38{bottom:857.705400px;}
.y14{bottom:865.418550px;}
.y10c{bottom:866.429550px;}
.yd7{bottom:866.489400px;}
.y99{bottom:876.826050px;}
.y37{bottom:877.205400px;}
.y10b{bottom:881.429550px;}
.yd6{bottom:881.489400px;}
.y7{bottom:909.637800px;}
.y6{bottom:921.637800px;}
.y13{bottom:922.701000px;}
.y2{bottom:922.749600px;}
.ha{height:27.630000px;}
.h2{height:31.635000px;}
.hc{height:34.650000px;}
.h3{height:36.933000px;}
.hf{height:36.960000px;}
.hb{height:42.615000px;}
.hd{height:45.456000px;}
.h5{height:50.820000px;}
.h10{height:51.138000px;}
.he{height:51.570000px;}
.h4{height:56.727000px;}
.h6{height:62.502000px;}
.h9{height:63.030000px;}
.h8{height:72.228000px;}
.h7{height:107.724000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x5{left:41.865450px;}
.x6{left:85.039350px;}
.x7{left:94.243350px;}
.xa{left:102.097200px;}
.x3{left:106.299150px;}
.xb{left:113.913300px;}
.x8{left:127.942050px;}
.xd{left:148.818900px;}
.xc{left:273.493500px;}
.x2{left:317.976150px;}
.x9{left:373.982550px;}
.xe{left:440.150100px;}
.x4{left:799.141500px;}
.x1{left:882.889950px;}
@media print{
.v2{vertical-align:-13.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:23.088000pt;}
.ls4{letter-spacing:-2.506667pt;}
.ls0{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.466667pt;}
.ls17{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.056000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls2{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.600000pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.342027pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.200000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000480pt;}
.ls9{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls12{letter-spacing:5.462933pt;}
.ls10{letter-spacing:38.538667pt;}
.lsd{letter-spacing:38.539200pt;}
.ls3{letter-spacing:51.505067pt;}
.wsa{word-spacing:-19.274667pt;}
.wsd8{word-spacing:-16.309333pt;}
.wse4{word-spacing:-15.722667pt;}
.wsb{word-spacing:-13.492267pt;}
.ws14a{word-spacing:-11.861333pt;}
.ws163{word-spacing:-11.434667pt;}
.wse{word-spacing:-11.120000pt;}
.wsaa{word-spacing:-10.920000pt;}
.wsd{word-spacing:-10.520000pt;}
.wsa9{word-spacing:-9.508341pt;}
.wse5{word-spacing:-9.166315pt;}
.wsfc{word-spacing:-8.624000pt;}
.wse1{word-spacing:-8.154667pt;}
.ws52{word-spacing:-8.096000pt;}
.ws111{word-spacing:-7.568000pt;}
.ws51{word-spacing:-7.157333pt;}
.ws6{word-spacing:-6.688000pt;}
.ws65{word-spacing:-6.570667pt;}
.wsc{word-spacing:-6.482960pt;}
.ws119{word-spacing:-6.453333pt;}
.ws4b{word-spacing:-6.394667pt;}
.ws10c{word-spacing:-6.277333pt;}
.wsd1{word-spacing:-6.042667pt;}
.ws141{word-spacing:-5.984000pt;}
.ws10a{word-spacing:-5.925333pt;}
.ws130{word-spacing:-5.866667pt;}
.ws96{word-spacing:-5.690667pt;}
.ws12b{word-spacing:-5.632000pt;}
.ws1d{word-spacing:-5.514667pt;}
.wsf6{word-spacing:-5.456000pt;}
.ws50{word-spacing:-5.397333pt;}
.ws4e{word-spacing:-5.338667pt;}
.wseb{word-spacing:-5.221333pt;}
.ws77{word-spacing:-5.104000pt;}
.ws129{word-spacing:-5.045333pt;}
.wsf9{word-spacing:-4.986667pt;}
.ws5f{word-spacing:-4.810667pt;}
.ws13f{word-spacing:-4.634667pt;}
.wsa7{word-spacing:-4.517333pt;}
.ws132{word-spacing:-4.458667pt;}
.ws112{word-spacing:-4.400000pt;}
.wse6{word-spacing:-4.341333pt;}
.ws8c{word-spacing:-4.282667pt;}
.ws56{word-spacing:-4.224000pt;}
.ws9e{word-spacing:-4.106667pt;}
.wsea{word-spacing:-4.048000pt;}
.wsc3{word-spacing:-3.989333pt;}
.ws12c{word-spacing:-3.813333pt;}
.ws22{word-spacing:-3.637333pt;}
.ws109{word-spacing:-3.578667pt;}
.ws15{word-spacing:-3.520000pt;}
.ws23{word-spacing:-3.402667pt;}
.ws27{word-spacing:-3.344000pt;}
.ws59{word-spacing:-3.285333pt;}
.ws4f{word-spacing:-3.226667pt;}
.ws108{word-spacing:-3.168000pt;}
.ws31{word-spacing:-3.109333pt;}
.ws63{word-spacing:-3.050667pt;}
.ws95{word-spacing:-2.992000pt;}
.wsce{word-spacing:-2.933333pt;}
.ws12f{word-spacing:-2.874667pt;}
.wscb{word-spacing:-2.840000pt;}
.wsc6{word-spacing:-2.816000pt;}
.ws53{word-spacing:-2.757333pt;}
.wsd6{word-spacing:-2.698667pt;}
.wsc7{word-spacing:-2.640000pt;}
.ws11e{word-spacing:-2.581333pt;}
.ws10b{word-spacing:-2.522667pt;}
.ws84{word-spacing:-2.464000pt;}
.ws69{word-spacing:-2.405333pt;}
.ws158{word-spacing:-2.389333pt;}
.ws131{word-spacing:-2.288000pt;}
.ws7a{word-spacing:-2.229333pt;}
.ws7d{word-spacing:-2.170667pt;}
.ws5b{word-spacing:-2.112000pt;}
.ws133{word-spacing:-2.053333pt;}
.ws73{word-spacing:-1.994667pt;}
.ws79{word-spacing:-1.936000pt;}
.ws6a{word-spacing:-1.877333pt;}
.wsbd{word-spacing:-1.840000pt;}
.ws5a{word-spacing:-1.818667pt;}
.ws2f{word-spacing:-1.760000pt;}
.ws83{word-spacing:-1.701333pt;}
.ws15a{word-spacing:-1.664000pt;}
.ws67{word-spacing:-1.642667pt;}
.wsb6{word-spacing:-1.600000pt;}
.ws3{word-spacing:-1.584000pt;}
.ws99{word-spacing:-1.525333pt;}
.ws5{word-spacing:-1.466667pt;}
.wsc0{word-spacing:-1.408000pt;}
.wsbc{word-spacing:-1.360000pt;}
.ws6f{word-spacing:-1.349333pt;}
.wsa6{word-spacing:-1.322667pt;}
.ws10f{word-spacing:-1.290667pt;}
.wsbb{word-spacing:-1.280000pt;}
.ws14e{word-spacing:-1.237333pt;}
.ws9c{word-spacing:-1.232000pt;}
.ws12a{word-spacing:-1.173333pt;}
.ws4c{word-spacing:-1.114667pt;}
.ws19{word-spacing:-1.080000pt;}
.ws37{word-spacing:-1.056000pt;}
.wsa4{word-spacing:-1.024000pt;}
.ws70{word-spacing:-0.997333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.938667pt;}
.ws2b{word-spacing:-0.880000pt;}
.wsf4{word-spacing:-0.821333pt;}
.ws167{word-spacing:-0.810667pt;}
.ws13{word-spacing:-0.760000pt;}
.ws17{word-spacing:-0.720000pt;}
.wsfd{word-spacing:-0.704000pt;}
.ws166{word-spacing:-0.682667pt;}
.wsab{word-spacing:-0.645333pt;}
.ws8e{word-spacing:-0.586667pt;}
.ws113{word-spacing:-0.528000pt;}
.wsb9{word-spacing:-0.520000pt;}
.ws159{word-spacing:-0.512000pt;}
.wsa2{word-spacing:-0.469333pt;}
.ws10d{word-spacing:-0.440000pt;}
.ws16b{word-spacing:-0.426667pt;}
.wsb7{word-spacing:-0.400000pt;}
.ws2{word-spacing:-0.352000pt;}
.ws162{word-spacing:-0.341333pt;}
.ws12d{word-spacing:-0.293333pt;}
.wsca{word-spacing:-0.280000pt;}
.ws1b{word-spacing:-0.240000pt;}
.wsdb{word-spacing:-0.234667pt;}
.wsa5{word-spacing:-0.213333pt;}
.wsd2{word-spacing:-0.176000pt;}
.wsb8{word-spacing:-0.120000pt;}
.ws42{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.058667pt;}
.ws135{word-spacing:0.128000pt;}
.ws93{word-spacing:0.176000pt;}
.ws62{word-spacing:0.234667pt;}
.ws76{word-spacing:0.293333pt;}
.ws160{word-spacing:0.298667pt;}
.ws49{word-spacing:0.352000pt;}
.ws138{word-spacing:0.384000pt;}
.ws91{word-spacing:0.410667pt;}
.ws120{word-spacing:0.440000pt;}
.ws94{word-spacing:0.469333pt;}
.wse8{word-spacing:0.528000pt;}
.ws137{word-spacing:0.554667pt;}
.ws25{word-spacing:0.586667pt;}
.ws150{word-spacing:0.597333pt;}
.ws14{word-spacing:0.600000pt;}
.wsb2{word-spacing:0.640000pt;}
.ws8{word-spacing:0.645333pt;}
.ws9{word-spacing:0.704000pt;}
.wsb3{word-spacing:0.760000pt;}
.wsc2{word-spacing:0.762667pt;}
.ws15b{word-spacing:0.768000pt;}
.wscc{word-spacing:0.800000pt;}
.ws15c{word-spacing:0.853333pt;}
.ws11f{word-spacing:0.920000pt;}
.ws90{word-spacing:0.938667pt;}
.ws32{word-spacing:0.997333pt;}
.ws4{word-spacing:1.056000pt;}
.ws134{word-spacing:1.114667pt;}
.ws165{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.173333pt;}
.ws2d{word-spacing:1.232000pt;}
.wsb5{word-spacing:1.240000pt;}
.ws6e{word-spacing:1.290667pt;}
.wscd{word-spacing:1.320000pt;}
.ws110{word-spacing:1.349333pt;}
.ws16c{word-spacing:1.365333pt;}
.ws6b{word-spacing:1.408000pt;}
.ws6c{word-spacing:1.466667pt;}
.ws15d{word-spacing:1.493333pt;}
.ws74{word-spacing:1.525333pt;}
.ws97{word-spacing:1.584000pt;}
.ws0{word-spacing:1.600000pt;}
.ws168{word-spacing:1.621333pt;}
.ws7c{word-spacing:1.642667pt;}
.ws18{word-spacing:1.680000pt;}
.ws45{word-spacing:1.760000pt;}
.ws146{word-spacing:1.818667pt;}
.ws2c{word-spacing:1.877333pt;}
.ws155{word-spacing:1.920000pt;}
.wsf0{word-spacing:1.936000pt;}
.ws149{word-spacing:1.994667pt;}
.ws4a{word-spacing:2.053333pt;}
.wsc4{word-spacing:2.112000pt;}
.ws92{word-spacing:2.170667pt;}
.ws6d{word-spacing:2.229333pt;}
.wsb4{word-spacing:2.240000pt;}
.ws44{word-spacing:2.288000pt;}
.wsef{word-spacing:2.346667pt;}
.ws26{word-spacing:2.405333pt;}
.ws48{word-spacing:2.464000pt;}
.ws47{word-spacing:2.522667pt;}
.ws60{word-spacing:2.581333pt;}
.ws13c{word-spacing:2.640000pt;}
.ws8f{word-spacing:2.698667pt;}
.ws72{word-spacing:2.757333pt;}
.ws151{word-spacing:2.773333pt;}
.wse9{word-spacing:2.816000pt;}
.ws136{word-spacing:2.858667pt;}
.ws100{word-spacing:2.874667pt;}
.ws11d{word-spacing:2.933333pt;}
.ws15e{word-spacing:2.986667pt;}
.ws9f{word-spacing:2.992000pt;}
.ws154{word-spacing:3.029333pt;}
.ws78{word-spacing:3.050667pt;}
.ws80{word-spacing:3.109333pt;}
.wsf5{word-spacing:3.168000pt;}
.ws4d{word-spacing:3.226667pt;}
.wsba{word-spacing:3.280000pt;}
.ws24{word-spacing:3.285333pt;}
.wsc5{word-spacing:3.344000pt;}
.ws5e{word-spacing:3.402667pt;}
.ws29{word-spacing:3.461333pt;}
.ws11b{word-spacing:3.520000pt;}
.ws61{word-spacing:3.578667pt;}
.ws9d{word-spacing:3.637333pt;}
.ws169{word-spacing:3.669333pt;}
.wsbf{word-spacing:3.680000pt;}
.wsd9{word-spacing:3.696000pt;}
.ws3c{word-spacing:3.754667pt;}
.ws7{word-spacing:3.813333pt;}
.ws71{word-spacing:3.872000pt;}
.ws66{word-spacing:3.930667pt;}
.ws36{word-spacing:3.989333pt;}
.ws8b{word-spacing:4.048000pt;}
.wsd5{word-spacing:4.106667pt;}
.ws10e{word-spacing:4.165333pt;}
.wsae{word-spacing:4.224000pt;}
.ws14f{word-spacing:4.266667pt;}
.wsac{word-spacing:4.282667pt;}
.ws161{word-spacing:4.309333pt;}
.ws9b{word-spacing:4.341333pt;}
.ws33{word-spacing:4.400000pt;}
.ws3b{word-spacing:4.458667pt;}
.wsa3{word-spacing:4.517333pt;}
.ws16{word-spacing:4.520000pt;}
.ws7b{word-spacing:4.576000pt;}
.wsf8{word-spacing:4.634667pt;}
.ws55{word-spacing:4.693333pt;}
.ws86{word-spacing:4.752000pt;}
.ws3e{word-spacing:4.810667pt;}
.wsdd{word-spacing:4.869333pt;}
.wsda{word-spacing:4.928000pt;}
.ws8a{word-spacing:4.986667pt;}
.ws153{word-spacing:4.992000pt;}
.ws46{word-spacing:5.045333pt;}
.ws89{word-spacing:5.104000pt;}
.ws40{word-spacing:5.162667pt;}
.ws152{word-spacing:5.205333pt;}
.wsb0{word-spacing:5.221333pt;}
.wscf{word-spacing:5.280000pt;}
.ws14c{word-spacing:5.333333pt;}
.ws1c{word-spacing:5.397333pt;}
.ws147{word-spacing:5.514667pt;}
.wse2{word-spacing:5.560000pt;}
.ws85{word-spacing:5.573333pt;}
.ws14d{word-spacing:5.589333pt;}
.ws117{word-spacing:5.632000pt;}
.ws7e{word-spacing:5.690667pt;}
.ws13a{word-spacing:5.749333pt;}
.wsad{word-spacing:5.808000pt;}
.ws164{word-spacing:5.845333pt;}
.wsfa{word-spacing:5.925333pt;}
.ws1f{word-spacing:5.984000pt;}
.wsd3{word-spacing:6.042667pt;}
.wse3{word-spacing:6.080000pt;}
.ws11a{word-spacing:6.101333pt;}
.wsed{word-spacing:6.160000pt;}
.ws87{word-spacing:6.218667pt;}
.ws16d{word-spacing:6.272000pt;}
.wsee{word-spacing:6.277333pt;}
.ws12{word-spacing:6.336000pt;}
.ws156{word-spacing:6.442667pt;}
.wsf{word-spacing:6.453333pt;}
.ws34{word-spacing:6.570667pt;}
.ws101{word-spacing:6.688000pt;}
.ws1e{word-spacing:6.746667pt;}
.ws148{word-spacing:6.922667pt;}
.ws54{word-spacing:7.040000pt;}
.ws128{word-spacing:7.098667pt;}
.ws38{word-spacing:7.157333pt;}
.ws9a{word-spacing:7.216000pt;}
.wsff{word-spacing:7.274667pt;}
.ws20{word-spacing:7.333333pt;}
.ws88{word-spacing:7.392000pt;}
.wsbe{word-spacing:7.400000pt;}
.ws3a{word-spacing:7.450667pt;}
.ws21{word-spacing:7.509333pt;}
.ws68{word-spacing:7.568000pt;}
.ws43{word-spacing:7.626667pt;}
.ws15f{word-spacing:7.637333pt;}
.wsec{word-spacing:7.802667pt;}
.wsb1{word-spacing:7.861333pt;}
.wsd4{word-spacing:7.920000pt;}
.ws5d{word-spacing:7.978667pt;}
.ws5c{word-spacing:8.037333pt;}
.ws16a{word-spacing:8.064000pt;}
.wsfb{word-spacing:8.096000pt;}
.ws157{word-spacing:8.149333pt;}
.wsa8{word-spacing:8.154667pt;}
.ws3d{word-spacing:8.213333pt;}
.wsa0{word-spacing:8.272000pt;}
.ws116{word-spacing:8.330667pt;}
.ws142{word-spacing:8.389333pt;}
.ws114{word-spacing:8.506667pt;}
.ws11{word-spacing:8.565333pt;}
.ws10{word-spacing:8.741333pt;}
.ws16e{word-spacing:8.789333pt;}
.ws3f{word-spacing:8.917333pt;}
.ws64{word-spacing:8.976000pt;}
.ws41{word-spacing:9.152000pt;}
.ws2a{word-spacing:9.210667pt;}
.ws140{word-spacing:9.269333pt;}
.ws123{word-spacing:9.328000pt;}
.ws7f{word-spacing:9.386667pt;}
.ws58{word-spacing:9.445333pt;}
.wsf2{word-spacing:9.504000pt;}
.wsdf{word-spacing:9.621333pt;}
.ws35{word-spacing:9.680000pt;}
.wsdc{word-spacing:9.738667pt;}
.ws139{word-spacing:9.797333pt;}
.wsc8{word-spacing:9.800000pt;}
.ws144{word-spacing:9.856000pt;}
.wsaf{word-spacing:9.914667pt;}
.ws30{word-spacing:9.973333pt;}
.ws98{word-spacing:10.090667pt;}
.ws118{word-spacing:10.149333pt;}
.wsd7{word-spacing:10.208000pt;}
.wsd0{word-spacing:10.266667pt;}
.wsfe{word-spacing:10.384000pt;}
.wsf1{word-spacing:10.501333pt;}
.wse7{word-spacing:10.560000pt;}
.ws75{word-spacing:10.618667pt;}
.wsf3{word-spacing:10.853333pt;}
.ws106{word-spacing:11.088000pt;}
.ws145{word-spacing:11.381333pt;}
.ws124{word-spacing:11.616000pt;}
.wse0{word-spacing:11.674667pt;}
.ws39{word-spacing:11.792000pt;}
.ws122{word-spacing:12.026667pt;}
.ws82{word-spacing:12.378667pt;}
.ws115{word-spacing:12.437333pt;}
.ws12e{word-spacing:12.672000pt;}
.wsde{word-spacing:13.200000pt;}
.ws14b{word-spacing:13.317333pt;}
.wsa1{word-spacing:13.434667pt;}
.ws143{word-spacing:13.962667pt;}
.ws28{word-spacing:14.021333pt;}
.ws57{word-spacing:14.314667pt;}
.ws13d{word-spacing:14.490667pt;}
.wsf7{word-spacing:14.725333pt;}
.ws126{word-spacing:14.960000pt;}
.ws13b{word-spacing:15.018667pt;}
.ws81{word-spacing:15.370667pt;}
.wsc9{word-spacing:15.400000pt;}
.ws107{word-spacing:15.957333pt;}
.ws13e{word-spacing:16.016000pt;}
.ws125{word-spacing:16.426667pt;}
.ws103{word-spacing:16.602667pt;}
.ws127{word-spacing:17.365333pt;}
.ws105{word-spacing:18.362667pt;}
.ws102{word-spacing:18.538667pt;}
.ws121{word-spacing:19.360000pt;}
.ws11c{word-spacing:20.181333pt;}
.ws104{word-spacing:22.704000pt;}
._1c{margin-left:-33.817600pt;}
._23{margin-left:-28.364800pt;}
._21{margin-left:-25.418133pt;}
._13{margin-left:-22.179200pt;}
._24{margin-left:-20.697600pt;}
._18{margin-left:-16.021333pt;}
._1e{margin-left:-14.325333pt;}
._19{margin-left:-10.545600pt;}
._1a{margin-left:-9.136000pt;}
._1d{margin-left:-8.053867pt;}
._9{margin-left:-7.160053pt;}
._d{margin-left:-6.195733pt;}
._4{margin-left:-5.211200pt;}
._12{margin-left:-4.246400pt;}
._1{margin-left:-3.189333pt;}
._2{margin-left:-2.230400pt;}
._0{margin-left:-1.248000pt;}
._3{width:0.993600pt;}
._10{width:1.930133pt;}
._5{width:2.932267pt;}
._8{width:4.244000pt;}
._14{width:5.173333pt;}
._6{width:6.805333pt;}
._11{width:7.734933pt;}
._f{width:8.747200pt;}
._1b{width:10.235733pt;}
._e{width:11.369600pt;}
._22{width:13.522667pt;}
._20{width:14.566933pt;}
._17{width:32.959893pt;}
._1f{width:37.600427pt;}
._b{width:51.519947pt;}
._15{width:53.359947pt;}
._16{width:54.760000pt;}
._a{width:59.960000pt;}
._c{width:62.800000pt;}
._7{width:68.000000pt;}
.fs8{font-size:23.320000pt;}
.fsa{font-size:34.202667pt;}
.fs1{font-size:34.666667pt;}
.fs0{font-size:40.000000pt;}
.fs7{font-size:40.421333pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:48.533333pt;}
.fs2{font-size:52.800000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:69.333333pt;}
.fs4{font-size:100.266667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:54.783467pt;}
.y5{bottom:59.400933pt;}
.y3{bottom:65.450133pt;}
.y82{bottom:83.149467pt;}
.y36{bottom:83.149600pt;}
.y8b{bottom:85.039200pt;}
.y92{bottom:85.039333pt;}
.y6f{bottom:85.071467pt;}
.ybf{bottom:86.067600pt;}
.yd5{bottom:86.294667pt;}
.y58{bottom:86.404800pt;}
.y8d{bottom:88.369333pt;}
.y10a{bottom:90.212800pt;}
.y81{bottom:95.149467pt;}
.y8a{bottom:97.039200pt;}
.y91{bottom:97.039333pt;}
.y35{bottom:98.479600pt;}
.yd4{bottom:99.628000pt;}
.y12{bottom:102.111600pt;}
.y1{bottom:102.182933pt;}
.y6e{bottom:102.404800pt;}
.ybe{bottom:103.400933pt;}
.y109{bottom:103.546133pt;}
.y57{bottom:103.738133pt;}
.y80{bottom:107.149467pt;}
.y89{bottom:109.039200pt;}
.y90{bottom:109.039333pt;}
.y8c{bottom:110.479467pt;}
.yd3{bottom:112.961333pt;}
.y34{bottom:114.708667pt;}
.y108{bottom:116.879467pt;}
.y7f{bottom:119.149467pt;}
.y6d{bottom:119.738133pt;}
.ybd{bottom:120.734267pt;}
.y56{bottom:121.071467pt;}
.y88{bottom:124.369200pt;}
.y8f{bottom:124.369333pt;}
.yd2{bottom:126.294667pt;}
.y33{bottom:126.708667pt;}
.y107{bottom:130.212800pt;}
.y7e{bottom:131.149467pt;}
.y6c{bottom:137.071467pt;}
.ybc{bottom:138.067600pt;}
.y55{bottom:138.404800pt;}
.y32{bottom:138.708667pt;}
.yd1{bottom:139.628000pt;}
.y87{bottom:140.598267pt;}
.y106{bottom:143.546133pt;}
.y7d{bottom:146.479467pt;}
.y31{bottom:150.708667pt;}
.y86{bottom:152.598267pt;}
.yd0{bottom:152.961333pt;}
.y8e{bottom:154.404800pt;}
.ybb{bottom:155.400933pt;}
.y54{bottom:155.738133pt;}
.y105{bottom:156.879467pt;}
.y85{bottom:164.598267pt;}
.y7c{bottom:166.038533pt;}
.y30{bottom:166.038667pt;}
.ycf{bottom:166.294667pt;}
.y104{bottom:170.212800pt;}
.y6b{bottom:171.738133pt;}
.yba{bottom:172.734267pt;}
.y53{bottom:173.071467pt;}
.y84{bottom:176.598267pt;}
.yce{bottom:179.628000pt;}
.y7b{bottom:182.267600pt;}
.y2f{bottom:182.267733pt;}
.y103{bottom:183.546133pt;}
.y6a{bottom:189.071467pt;}
.yb9{bottom:190.067600pt;}
.y52{bottom:190.404800pt;}
.y83{bottom:191.928267pt;}
.ycd{bottom:192.961333pt;}
.y7a{bottom:194.267600pt;}
.y2e{bottom:194.267733pt;}
.y102{bottom:196.879467pt;}
.y79{bottom:206.267600pt;}
.y2d{bottom:206.267733pt;}
.ycc{bottom:206.294667pt;}
.y69{bottom:206.404800pt;}
.yb8{bottom:207.400933pt;}
.y5f{bottom:207.738133pt;}
.y134{bottom:210.159600pt;}
.y101{bottom:210.212800pt;}
.y78{bottom:218.267600pt;}
.ycb{bottom:219.628000pt;}
.y2c{bottom:221.597733pt;}
.y133{bottom:223.492933pt;}
.y100{bottom:223.546133pt;}
.y68{bottom:223.738133pt;}
.yb7{bottom:224.734267pt;}
.y51{bottom:225.071467pt;}
.y11{bottom:228.452133pt;}
.y77{bottom:230.267600pt;}
.yca{bottom:232.961333pt;}
.y132{bottom:236.826267pt;}
.yff{bottom:236.879467pt;}
.y2b{bottom:237.826800pt;}
.y67{bottom:241.071467pt;}
.yb6{bottom:242.067600pt;}
.y76{bottom:242.267600pt;}
.y50{bottom:242.404800pt;}
.y10{bottom:245.785467pt;}
.yc9{bottom:246.294667pt;}
.y2a{bottom:249.826800pt;}
.y131{bottom:250.159600pt;}
.yfe{bottom:250.212800pt;}
.y75{bottom:254.267600pt;}
.y66{bottom:258.404800pt;}
.yb5{bottom:259.400933pt;}
.yc8{bottom:259.628000pt;}
.y5e{bottom:259.738133pt;}
.y29{bottom:261.826800pt;}
.yf{bottom:263.118800pt;}
.y130{bottom:263.492933pt;}
.yfd{bottom:263.546133pt;}
.y74{bottom:266.267600pt;}
.yc7{bottom:272.961333pt;}
.y28{bottom:273.826800pt;}
.y65{bottom:275.738133pt;}
.yb4{bottom:276.734267pt;}
.y12f{bottom:276.826267pt;}
.yfc{bottom:276.879467pt;}
.y4f{bottom:277.071467pt;}
.y73{bottom:278.267600pt;}
.ye{bottom:280.452133pt;}
.y27{bottom:285.826800pt;}
.yc6{bottom:286.294667pt;}
.y12e{bottom:290.159600pt;}
.yfb{bottom:290.212800pt;}
.y72{bottom:290.267600pt;}
.y64{bottom:293.071467pt;}
.yb3{bottom:294.067600pt;}
.y5d{bottom:294.404800pt;}
.yd{bottom:297.785467pt;}
.y26{bottom:297.826800pt;}
.yc5{bottom:299.628000pt;}
.y71{bottom:302.267600pt;}
.y12d{bottom:303.492933pt;}
.yfa{bottom:303.546133pt;}
.y98{bottom:310.404800pt;}
.yb2{bottom:311.400933pt;}
.y4e{bottom:311.738133pt;}
.yc4{bottom:312.961333pt;}
.y25{bottom:313.156800pt;}
.y12c{bottom:316.826267pt;}
.yf9{bottom:316.879467pt;}
.y70{bottom:317.597600pt;}
.yc3{bottom:326.294667pt;}
.y63{bottom:327.738133pt;}
.yb1{bottom:328.734267pt;}
.y4d{bottom:329.071467pt;}
.y12b{bottom:330.159600pt;}
.yf8{bottom:330.212800pt;}
.yc{bottom:332.452133pt;}
.yc2{bottom:339.628000pt;}
.y62{bottom:341.071467pt;}
.y12a{bottom:343.492933pt;}
.yf7{bottom:343.546133pt;}
.yb0{bottom:346.067600pt;}
.y4c{bottom:346.404800pt;}
.y24{bottom:347.661067pt;}
.yb{bottom:349.785467pt;}
.yc1{bottom:352.961333pt;}
.y61{bottom:354.404800pt;}
.y129{bottom:356.826267pt;}
.yf6{bottom:356.879467pt;}
.yaf{bottom:363.400933pt;}
.y4b{bottom:363.738133pt;}
.y97{bottom:364.404800pt;}
.y23{bottom:364.994400pt;}
.ya{bottom:367.118800pt;}
.y60{bottom:367.738133pt;}
.y128{bottom:370.159600pt;}
.yf5{bottom:370.212800pt;}
.y96{bottom:377.738133pt;}
.yae{bottom:380.734267pt;}
.y4a{bottom:381.071467pt;}
.y22{bottom:382.327733pt;}
.yc0{bottom:382.985600pt;}
.y127{bottom:383.492933pt;}
.yf4{bottom:383.546133pt;}
.y9{bottom:384.452133pt;}
.y95{bottom:391.071467pt;}
.y126{bottom:396.826267pt;}
.yf3{bottom:396.879467pt;}
.yad{bottom:398.067600pt;}
.y49{bottom:398.404800pt;}
.y21{bottom:399.661067pt;}
.y8{bottom:401.785467pt;}
.y94{bottom:404.404800pt;}
.y125{bottom:410.159600pt;}
.yf2{bottom:410.212800pt;}
.yac{bottom:415.400933pt;}
.y48{bottom:415.738133pt;}
.y20{bottom:416.994400pt;}
.y93{bottom:417.738133pt;}
.y124{bottom:423.492933pt;}
.yf1{bottom:423.546133pt;}
.y47{bottom:433.071467pt;}
.y123{bottom:436.826267pt;}
.yf0{bottom:436.879467pt;}
.yab{bottom:450.067600pt;}
.y122{bottom:450.159600pt;}
.yef{bottom:450.212800pt;}
.y46{bottom:450.404800pt;}
.y1f{bottom:451.661067pt;}
.y121{bottom:463.492933pt;}
.yee{bottom:463.546133pt;}
.yaa{bottom:467.400933pt;}
.y45{bottom:467.738133pt;}
.y120{bottom:476.826267pt;}
.yed{bottom:476.879467pt;}
.ya9{bottom:484.734267pt;}
.y44{bottom:485.071467pt;}
.y11f{bottom:490.159600pt;}
.yec{bottom:490.212800pt;}
.ya8{bottom:502.067600pt;}
.y43{bottom:502.404800pt;}
.y11e{bottom:503.492933pt;}
.yeb{bottom:503.546133pt;}
.y1e{bottom:503.660933pt;}
.y11d{bottom:516.826267pt;}
.yea{bottom:516.879467pt;}
.ya7{bottom:519.400933pt;}
.y5c{bottom:519.738133pt;}
.y1d{bottom:521.394267pt;}
.y11c{bottom:530.159600pt;}
.ye9{bottom:530.212800pt;}
.ya6{bottom:536.734267pt;}
.y42{bottom:537.071467pt;}
.y1c{bottom:539.127733pt;}
.y11b{bottom:543.492933pt;}
.ye8{bottom:543.546133pt;}
.ya5{bottom:554.067600pt;}
.y5b{bottom:554.404800pt;}
.y1b{bottom:556.861067pt;}
.ye7{bottom:556.879467pt;}
.y11a{bottom:570.159600pt;}
.ye6{bottom:570.212800pt;}
.ya4{bottom:571.400933pt;}
.y5a{bottom:571.738133pt;}
.y1a{bottom:574.594267pt;}
.ye5{bottom:583.546133pt;}
.ya3{bottom:588.734267pt;}
.y41{bottom:589.071467pt;}
.y119{bottom:596.826267pt;}
.ye4{bottom:596.879467pt;}
.ya2{bottom:606.067600pt;}
.y40{bottom:606.404800pt;}
.y19{bottom:609.260933pt;}
.y118{bottom:610.159600pt;}
.ye3{bottom:610.212800pt;}
.ya1{bottom:623.400933pt;}
.y117{bottom:623.492933pt;}
.ye2{bottom:623.546133pt;}
.y59{bottom:623.738133pt;}
.y18{bottom:635.927600pt;}
.y116{bottom:636.826267pt;}
.ye1{bottom:636.879467pt;}
.ya0{bottom:640.734267pt;}
.y3f{bottom:641.071467pt;}
.y115{bottom:650.159600pt;}
.ye0{bottom:650.212800pt;}
.y9f{bottom:658.067600pt;}
.y3e{bottom:658.404800pt;}
.y17{bottom:662.594267pt;}
.y114{bottom:663.492933pt;}
.ydf{bottom:663.546133pt;}
.y9e{bottom:675.400933pt;}
.y3d{bottom:675.738133pt;}
.y113{bottom:676.826267pt;}
.yde{bottom:676.879467pt;}
.y112{bottom:690.159600pt;}
.ydd{bottom:690.212800pt;}
.y9d{bottom:692.734267pt;}
.y3c{bottom:693.071467pt;}
.y111{bottom:703.492933pt;}
.ydc{bottom:703.546133pt;}
.y9c{bottom:710.067600pt;}
.y3b{bottom:710.404800pt;}
.y16{bottom:715.927600pt;}
.y110{bottom:716.826267pt;}
.ydb{bottom:716.879467pt;}
.y9b{bottom:727.400933pt;}
.y3a{bottom:727.738133pt;}
.y10f{bottom:730.159600pt;}
.yda{bottom:730.212800pt;}
.y15{bottom:742.594267pt;}
.y10e{bottom:743.492933pt;}
.yd9{bottom:743.546133pt;}
.y9a{bottom:744.734267pt;}
.y39{bottom:745.071467pt;}
.y10d{bottom:756.826267pt;}
.yd8{bottom:756.879467pt;}
.y38{bottom:762.404800pt;}
.y14{bottom:769.260933pt;}
.y10c{bottom:770.159600pt;}
.yd7{bottom:770.212800pt;}
.y99{bottom:779.400933pt;}
.y37{bottom:779.738133pt;}
.y10b{bottom:783.492933pt;}
.yd6{bottom:783.546133pt;}
.y7{bottom:808.566933pt;}
.y6{bottom:819.233600pt;}
.y13{bottom:820.178667pt;}
.y2{bottom:820.221867pt;}
.ha{height:24.560000pt;}
.h2{height:28.120000pt;}
.hc{height:30.800000pt;}
.h3{height:32.829333pt;}
.hf{height:32.853333pt;}
.hb{height:37.880000pt;}
.hd{height:40.405333pt;}
.h5{height:45.173333pt;}
.h10{height:45.456000pt;}
.he{height:45.840000pt;}
.h4{height:50.424000pt;}
.h6{height:55.557333pt;}
.h9{height:56.026667pt;}
.h8{height:64.202667pt;}
.h7{height:95.754667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x5{left:37.213733pt;}
.x6{left:75.590533pt;}
.x7{left:83.771867pt;}
.xa{left:90.753067pt;}
.x3{left:94.488133pt;}
.xb{left:101.256267pt;}
.x8{left:113.726267pt;}
.xd{left:132.283467pt;}
.xc{left:243.105333pt;}
.x2{left:282.645467pt;}
.x9{left:332.428933pt;}
.xe{left:391.244533pt;}
.x4{left:710.348000pt;}
.x1{left:784.791067pt;}
}




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