
    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_ed288103bdb2b727414083a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_44e72caf3adb885004cee66f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_80823d3eda6b1bd4fc805288.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_a9607a7c64fc50fb85f3dcc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_0a9ac457cb193a6123b99bdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_37e5bccfa711f8c3d5e5ea6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.190918;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_b56a2a47dbb207dde41c2007.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.192383;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_3d9785f56cabcd2b70e3ae24.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_498b23739d7fd6499ce695a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.384000;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_0df71c2f2949f016bf2f86b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_003c4f04c08bc72d4ddf5ece.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.470000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-18.630066px;}
.v3{vertical-align:-17.594971px;}
.v6{vertical-align:-15.524963px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.524963px;}
.v4{vertical-align:17.594971px;}
.v2{vertical-align:18.630432px;}
.v1{vertical-align:20.699890px;}
.ls1a{letter-spacing:-2.790000px;}
.ls1b{letter-spacing:-1.395000px;}
.ls1e{letter-spacing:-1.350000px;}
.ls1c{letter-spacing:-1.260000px;}
.ls27{letter-spacing:-1.035000px;}
.ls11{letter-spacing:-1.026000px;}
.ls26{letter-spacing:-0.855000px;}
.ls1f{letter-spacing:-0.765000px;}
.lsc{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.585000px;}
.ls12{letter-spacing:-0.486000px;}
.ls18{letter-spacing:-0.450000px;}
.ls13{letter-spacing:-0.378000px;}
.ls28{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.315000px;}
.lse{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.108000px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000008px;}
.ls5{letter-spacing:0.000012px;}
.ls10{letter-spacing:0.000025px;}
.lsf{letter-spacing:0.000044px;}
.ls15{letter-spacing:0.000066px;}
.ls16{letter-spacing:0.000088px;}
.ls17{letter-spacing:0.000091px;}
.lsa{letter-spacing:0.000104px;}
.ls6{letter-spacing:0.011429px;}
.ls4{letter-spacing:0.012628px;}
.ls1{letter-spacing:0.013251px;}
.ls3{letter-spacing:0.014254px;}
.ls0{letter-spacing:0.014346px;}
.ls2{letter-spacing:0.014438px;}
.ls1d{letter-spacing:0.675000px;}
.ls21{letter-spacing:1.238979px;}
.ls14{letter-spacing:1.298672px;}
.ls24{letter-spacing:1.389858px;}
.ls7{letter-spacing:3.000000px;}
.ls23{letter-spacing:4.327236px;}
.ls22{letter-spacing:5.257778px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.wsb9{word-spacing:-13.596000px;}
.ws9f{word-spacing:-12.366000px;}
.ws10{word-spacing:-12.258000px;}
.ws12{word-spacing:-12.150000px;}
.wsaa{word-spacing:-11.988000px;}
.ws6f{word-spacing:-11.718000px;}
.ws13{word-spacing:-11.610000px;}
.wsa0{word-spacing:-11.340000px;}
.ws6e{word-spacing:-11.232000px;}
.wsc0{word-spacing:-10.890000px;}
.wse3{word-spacing:-10.305000px;}
.wsbb{word-spacing:-10.215000px;}
.wsdf{word-spacing:-10.125000px;}
.wsbf{word-spacing:-9.900000px;}
.wse2{word-spacing:-9.855000px;}
.wsba{word-spacing:-9.765000px;}
.wsc2{word-spacing:-9.720000px;}
.wsc1{word-spacing:-9.540000px;}
.wse0{word-spacing:-9.450000px;}
.wse1{word-spacing:-9.270000px;}
.wsbd{word-spacing:-9.045000px;}
.ws11{word-spacing:-8.580600px;}
.wsbc{word-spacing:-7.515000px;}
.wsbe{word-spacing:-7.150500px;}
.ws0{word-spacing:-7.140000px;}
.ws3{word-spacing:-6.600000px;}
.ws92{word-spacing:-5.508000px;}
.ws4{word-spacing:-5.130000px;}
.ws6b{word-spacing:-3.294000px;}
.ws91{word-spacing:-2.862000px;}
.ws79{word-spacing:-2.808000px;}
.wsc3{word-spacing:-2.754000px;}
.wsb3{word-spacing:-2.700000px;}
.ws51{word-spacing:-2.592000px;}
.ws3d{word-spacing:-2.484000px;}
.wsa1{word-spacing:-2.430000px;}
.wsad{word-spacing:-2.376000px;}
.ws42{word-spacing:-2.322000px;}
.ws88{word-spacing:-2.268000px;}
.ws85{word-spacing:-2.214000px;}
.ws31{word-spacing:-2.160000px;}
.ws52{word-spacing:-2.106000px;}
.wsa7{word-spacing:-2.052000px;}
.wse{word-spacing:-1.989000px;}
.ws98{word-spacing:-1.944000px;}
.ws97{word-spacing:-1.890000px;}
.wsa3{word-spacing:-1.836000px;}
.wsda{word-spacing:-1.800000px;}
.ws50{word-spacing:-1.782000px;}
.ws29{word-spacing:-1.728000px;}
.ws72{word-spacing:-1.674000px;}
.ws95{word-spacing:-1.620000px;}
.ws96{word-spacing:-1.566000px;}
.wsf4{word-spacing:-1.530000px;}
.wsa8{word-spacing:-1.512000px;}
.ws49{word-spacing:-1.458000px;}
.ws60{word-spacing:-1.404000px;}
.wsce{word-spacing:-1.350000px;}
.ws9e{word-spacing:-1.296000px;}
.ws61{word-spacing:-1.242000px;}
.wsb{word-spacing:-1.188000px;}
.ws6a{word-spacing:-1.134000px;}
.ws1d{word-spacing:-1.080000px;}
.wsdd{word-spacing:-1.035000px;}
.ws78{word-spacing:-1.026000px;}
.ws25{word-spacing:-0.972000px;}
.ws40{word-spacing:-0.918000px;}
.wsaf{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.810000px;}
.wsd5{word-spacing:-0.765000px;}
.ws99{word-spacing:-0.756000px;}
.wsd7{word-spacing:-0.720000px;}
.ws89{word-spacing:-0.702000px;}
.wsf1{word-spacing:-0.675000px;}
.ws81{word-spacing:-0.648000px;}
.wsac{word-spacing:-0.594000px;}
.wsf2{word-spacing:-0.585000px;}
.ws74{word-spacing:-0.540000px;}
.ws68{word-spacing:-0.486000px;}
.wsd3{word-spacing:-0.450000px;}
.ws41{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.378000px;}
.wsde{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.324000px;}
.wsd8{word-spacing:-0.315000px;}
.ws54{word-spacing:-0.270000px;}
.ws14{word-spacing:-0.216000px;}
.wsb0{word-spacing:-0.162000px;}
.wsd6{word-spacing:-0.135000px;}
.wscf{word-spacing:-0.090000px;}
.ws4a{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws5e{word-spacing:0.054000px;}
.wsf{word-spacing:0.108000px;}
.ws55{word-spacing:0.162000px;}
.wsd2{word-spacing:0.180000px;}
.ws65{word-spacing:0.216000px;}
.ws7a{word-spacing:0.270000px;}
.wsc9{word-spacing:0.315000px;}
.ws57{word-spacing:0.324000px;}
.ws32{word-spacing:0.378000px;}
.ws8f{word-spacing:0.432000px;}
.wscc{word-spacing:0.450000px;}
.ws83{word-spacing:0.486000px;}
.wsf3{word-spacing:0.495000px;}
.ws7f{word-spacing:0.540000px;}
.wsd9{word-spacing:0.585000px;}
.ws48{word-spacing:0.594000px;}
.wsdc{word-spacing:0.630000px;}
.ws2c{word-spacing:0.648000px;}
.wsdb{word-spacing:0.675000px;}
.ws67{word-spacing:0.702000px;}
.ws35{word-spacing:0.756000px;}
.ws17{word-spacing:0.810000px;}
.wse9{word-spacing:0.900000px;}
.ws82{word-spacing:0.918000px;}
.ws22{word-spacing:0.972000px;}
.wsca{word-spacing:0.990000px;}
.ws20{word-spacing:1.026000px;}
.ws8e{word-spacing:1.080000px;}
.wsed{word-spacing:1.125000px;}
.ws18{word-spacing:1.134000px;}
.ws4f{word-spacing:1.188000px;}
.ws47{word-spacing:1.242000px;}
.wsd4{word-spacing:1.260000px;}
.ws3f{word-spacing:1.296000px;}
.wsc5{word-spacing:1.305000px;}
.ws2b{word-spacing:1.350000px;}
.wscd{word-spacing:1.395000px;}
.ws1e{word-spacing:1.404000px;}
.ws3c{word-spacing:1.458000px;}
.ws7b{word-spacing:1.566000px;}
.ws23{word-spacing:1.620000px;}
.ws87{word-spacing:1.674000px;}
.ws30{word-spacing:1.728000px;}
.ws64{word-spacing:1.782000px;}
.ws7c{word-spacing:1.836000px;}
.wsb5{word-spacing:1.890000px;}
.ws5{word-spacing:1.944000px;}
.ws21{word-spacing:1.998000px;}
.ws7{word-spacing:2.052000px;}
.wse4{word-spacing:2.070000px;}
.ws3b{word-spacing:2.106000px;}
.ws6c{word-spacing:2.160000px;}
.ws71{word-spacing:2.214000px;}
.ws84{word-spacing:2.268000px;}
.ws59{word-spacing:2.322000px;}
.ws8a{word-spacing:2.376000px;}
.ws15{word-spacing:2.430000px;}
.ws63{word-spacing:2.484000px;}
.ws7e{word-spacing:2.538000px;}
.wsa{word-spacing:2.592000px;}
.ws38{word-spacing:2.646000px;}
.ws9a{word-spacing:2.700000px;}
.ws62{word-spacing:2.754000px;}
.ws43{word-spacing:2.808000px;}
.ws26{word-spacing:2.862000px;}
.ws86{word-spacing:2.916000px;}
.wsb4{word-spacing:2.970000px;}
.wsd{word-spacing:3.009000px;}
.ws5d{word-spacing:3.024000px;}
.ws2a{word-spacing:3.132000px;}
.wsb2{word-spacing:3.186000px;}
.ws39{word-spacing:3.240000px;}
.ws3a{word-spacing:3.348000px;}
.ws66{word-spacing:3.402000px;}
.wse7{word-spacing:3.420000px;}
.ws75{word-spacing:3.456000px;}
.ws37{word-spacing:3.510000px;}
.ws36{word-spacing:3.564000px;}
.wsa6{word-spacing:3.618000px;}
.wsc7{word-spacing:3.645000px;}
.wsc8{word-spacing:3.690000px;}
.ws90{word-spacing:3.726000px;}
.ws8{word-spacing:3.780000px;}
.ws33{word-spacing:3.888000px;}
.ws53{word-spacing:3.942000px;}
.ws7d{word-spacing:3.996000px;}
.ws16{word-spacing:4.050000px;}
.ws6d{word-spacing:4.104000px;}
.ws69{word-spacing:4.158000px;}
.wsd0{word-spacing:4.185000px;}
.ws58{word-spacing:4.212000px;}
.wsf6{word-spacing:4.266000px;}
.ws2e{word-spacing:4.320000px;}
.wse8{word-spacing:4.365000px;}
.ws94{word-spacing:4.428000px;}
.ws8b{word-spacing:4.590000px;}
.ws34{word-spacing:4.644000px;}
.wsee{word-spacing:4.725000px;}
.ws76{word-spacing:4.752000px;}
.wsef{word-spacing:4.770000px;}
.wsa9{word-spacing:4.806000px;}
.wscb{word-spacing:4.815000px;}
.ws8c{word-spacing:4.860000px;}
.ws77{word-spacing:4.914000px;}
.wsc6{word-spacing:4.950000px;}
.wsf5{word-spacing:4.968000px;}
.ws2d{word-spacing:5.022000px;}
.ws93{word-spacing:5.130000px;}
.ws8d{word-spacing:5.184000px;}
.ws4c{word-spacing:5.238000px;}
.wse5{word-spacing:5.265000px;}
.ws4b{word-spacing:5.346000px;}
.ws9b{word-spacing:5.400000px;}
.wse6{word-spacing:5.490000px;}
.ws3e{word-spacing:5.562000px;}
.ws5a{word-spacing:5.616000px;}
.wsf0{word-spacing:5.625000px;}
.wsc4{word-spacing:5.670000px;}
.wsae{word-spacing:5.724000px;}
.wsd1{word-spacing:5.805000px;}
.wsb6{word-spacing:5.886000px;}
.wsa4{word-spacing:5.940000px;}
.ws4e{word-spacing:6.048000px;}
.ws4d{word-spacing:6.210000px;}
.ws5c{word-spacing:6.264000px;}
.wsa5{word-spacing:6.426000px;}
.wsb8{word-spacing:6.480000px;}
.ws70{word-spacing:6.534000px;}
.ws1b{word-spacing:6.642000px;}
.ws5f{word-spacing:7.020000px;}
.wsb1{word-spacing:7.128000px;}
.wsa2{word-spacing:7.182000px;}
.ws24{word-spacing:7.236000px;}
.ws9{word-spacing:7.506000px;}
.ws5b{word-spacing:7.560000px;}
.ws44{word-spacing:7.722000px;}
.ws28{word-spacing:8.046000px;}
.ws56{word-spacing:8.100000px;}
.wsc{word-spacing:8.160000px;}
.ws46{word-spacing:8.478000px;}
.ws27{word-spacing:8.532000px;}
.ws1a{word-spacing:8.910000px;}
.wsab{word-spacing:9.126000px;}
.ws9d{word-spacing:9.180000px;}
.ws73{word-spacing:9.396000px;}
.ws1f{word-spacing:9.828000px;}
.ws1c{word-spacing:10.314000px;}
.ws45{word-spacing:10.638000px;}
.ws9c{word-spacing:10.908000px;}
.wsea{word-spacing:12.105000px;}
.wseb{word-spacing:12.240000px;}
.wsb7{word-spacing:12.366000px;}
.wsec{word-spacing:12.465000px;}
.ws80{word-spacing:14.742000px;}
._1a{margin-left:-22.320000px;}
._19{margin-left:-17.775000px;}
._16{margin-left:-16.020000px;}
._15{margin-left:-14.400000px;}
._1b{margin-left:-13.185000px;}
._b{margin-left:-11.569715px;}
._c{margin-left:-10.138285px;}
._d{margin-left:-8.645146px;}
._e{margin-left:-7.236000px;}
._2{margin-left:-5.772047px;}
._1{margin-left:-4.424958px;}
._4{margin-left:-2.916000px;}
._0{margin-left:-1.848000px;}
._6{width:1.021715px;}
._7{width:2.088000px;}
._f{width:3.249136px;}
._3{width:4.314000px;}
._8{width:5.727040px;}
._17{width:7.065000px;}
._9{width:8.162418px;}
._13{width:9.900000px;}
._11{width:11.100058px;}
._14{width:12.690000px;}
._10{width:14.308764px;}
._5{width:17.902779px;}
._18{width:23.085000px;}
._12{width:2254.542077px;}
._a{width:2285.303429px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fs5{font-size:35.699999px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:27.634050px;}
.y2c{bottom:27.643049px;}
.y164{bottom:64.103850px;}
.y71{bottom:64.980148px;}
.yb0{bottom:65.077950px;}
.yff{bottom:65.728048px;}
.y29{bottom:68.031452px;}
.yd2{bottom:68.797800px;}
.yf0{bottom:72.757799px;}
.y11f{bottom:75.997799px;}
.y163{bottom:76.703848px;}
.y70{bottom:79.980148px;}
.yaf{bottom:80.077950px;}
.yfe{bottom:80.728048px;}
.y28{bottom:83.031452px;}
.yd1{bottom:83.797800px;}
.yef{bottom:87.757799px;}
.y162{bottom:89.303850px;}
.y1a8{bottom:89.878950px;}
.y11e{bottom:90.997799px;}
.y6f{bottom:94.980148px;}
.yae{bottom:95.077950px;}
.yfd{bottom:95.728048px;}
.y27{bottom:98.031452px;}
.yd0{bottom:98.797794px;}
.y161{bottom:101.903847px;}
.yee{bottom:102.757805px;}
.y11d{bottom:105.997799px;}
.y6e{bottom:109.980148px;}
.yad{bottom:110.077950px;}
.yfc{bottom:110.728054px;}
.y1a7{bottom:112.447495px;}
.y26{bottom:113.031452px;}
.ycf{bottom:113.797794px;}
.y160{bottom:114.503849px;}
.yed{bottom:117.757805px;}
.y11c{bottom:120.997799px;}
.y6d{bottom:124.980148px;}
.yac{bottom:125.077950px;}
.yfb{bottom:125.728054px;}
.y15f{bottom:127.103850px;}
.yce{bottom:128.797794px;}
.y25{bottom:132.430195px;}
.yec{bottom:132.757805px;}
.y1a6{bottom:135.015896px;}
.y11b{bottom:135.997799px;}
.y15e{bottom:139.703854px;}
.y6c{bottom:139.980148px;}
.yab{bottom:140.077950px;}
.yfa{bottom:140.728054px;}
.ycd{bottom:143.797794px;}
.yeb{bottom:147.757805px;}
.y1a5{bottom:150.015896px;}
.y11a{bottom:150.997799px;}
.y15d{bottom:152.303844px;}
.y6b{bottom:154.980148px;}
.yaa{bottom:155.077950px;}
.yf9{bottom:155.728054px;}
.ycc{bottom:158.797794px;}
.yea{bottom:162.757805px;}
.y15c{bottom:164.903847px;}
.y1a4{bottom:165.015896px;}
.y119{bottom:165.997799px;}
.y6a{bottom:169.980148px;}
.ya9{bottom:170.077950px;}
.yf8{bottom:170.728054px;}
.ycb{bottom:173.797794px;}
.y24{bottom:173.829150px;}
.y15b{bottom:177.503849px;}
.ye9{bottom:177.757805px;}
.y118{bottom:180.997799px;}
.y69{bottom:184.980148px;}
.ya8{bottom:185.077950px;}
.yf7{bottom:185.728054px;}
.yca{bottom:188.797794px;}
.y23{bottom:188.829150px;}
.y15a{bottom:190.103850px;}
.ye8{bottom:192.757805px;}
.y117{bottom:195.997810px;}
.y1a3{bottom:198.015907px;}
.y68{bottom:199.980148px;}
.ya7{bottom:200.077950px;}
.yf6{bottom:200.728043px;}
.y159{bottom:202.703842px;}
.y124{bottom:202.980148px;}
.yc9{bottom:203.797806px;}
.y22{bottom:203.829140px;}
.ye7{bottom:207.757805px;}
.y116{bottom:210.997810px;}
.y1a2{bottom:213.015907px;}
.y93{bottom:214.980148px;}
.ya6{bottom:215.077950px;}
.y158{bottom:215.303856px;}
.yf5{bottom:215.728043px;}
.y123{bottom:217.980148px;}
.yc8{bottom:218.797806px;}
.y21{bottom:218.829140px;}
.ye6{bottom:222.757805px;}
.y115{bottom:225.997810px;}
.y157{bottom:227.903847px;}
.y92{bottom:229.980148px;}
.ya5{bottom:230.077950px;}
.yf4{bottom:230.728043px;}
.y67{bottom:232.980148px;}
.yc7{bottom:233.797806px;}
.y20{bottom:233.829140px;}
.ye5{bottom:237.757805px;}
.y156{bottom:240.503860px;}
.y114{bottom:240.997810px;}
.y91{bottom:244.980148px;}
.ya4{bottom:245.077950px;}
.y1a1{bottom:246.015907px;}
.y66{bottom:247.980148px;}
.yc6{bottom:248.797806px;}
.y1f{bottom:248.829140px;}
.ye4{bottom:252.757805px;}
.y155{bottom:253.103850px;}
.y113{bottom:255.997810px;}
.y90{bottom:259.980148px;}
.ya3{bottom:260.077950px;}
.y65{bottom:262.980148px;}
.yc5{bottom:263.797806px;}
.y1e{bottom:263.829140px;}
.y154{bottom:265.703842px;}
.ye3{bottom:267.757805px;}
.y112{bottom:270.997810px;}
.y8f{bottom:274.980148px;}
.ya2{bottom:275.077950px;}
.y64{bottom:277.980148px;}
.y153{bottom:278.303856px;}
.yc4{bottom:278.797806px;}
.y1d{bottom:278.829140px;}
.y1a0{bottom:279.015907px;}
.ye2{bottom:282.757805px;}
.y111{bottom:285.997810px;}
.y100{bottom:288.589211px;}
.y8e{bottom:289.980148px;}
.ya1{bottom:290.077950px;}
.y152{bottom:290.903847px;}
.y63{bottom:292.980148px;}
.yc3{bottom:293.797806px;}
.y19f{bottom:294.015907px;}
.ye1{bottom:297.757805px;}
.y110{bottom:300.997810px;}
.y151{bottom:303.503860px;}
.y8d{bottom:304.980148px;}
.ya0{bottom:305.077950px;}
.y62{bottom:307.980148px;}
.yc2{bottom:308.797806px;}
.y19e{bottom:309.015907px;}
.y1c{bottom:311.829140px;}
.ye0{bottom:312.757805px;}
.y10f{bottom:315.997810px;}
.y150{bottom:316.103850px;}
.y8c{bottom:319.980148px;}
.y9f{bottom:320.077950px;}
.y61{bottom:322.980148px;}
.yc1{bottom:323.797806px;}
.y19d{bottom:324.015907px;}
.ydf{bottom:327.757805px;}
.y14f{bottom:328.703842px;}
.y10e{bottom:330.997810px;}
.y8b{bottom:334.980148px;}
.y9e{bottom:335.077950px;}
.y60{bottom:337.980148px;}
.yc0{bottom:338.797806px;}
.y19c{bottom:339.015907px;}
.y1b{bottom:341.084999px;}
.y14e{bottom:341.303856px;}
.yde{bottom:342.757805px;}
.y10d{bottom:345.997810px;}
.y8a{bottom:349.980148px;}
.y9d{bottom:350.077950px;}
.y5f{bottom:352.980148px;}
.ybf{bottom:353.797806px;}
.y14d{bottom:353.903847px;}
.y19b{bottom:354.015907px;}
.y1a{bottom:357.584999px;}
.ydd{bottom:357.757805px;}
.y10c{bottom:360.997810px;}
.y89{bottom:364.980148px;}
.y9c{bottom:365.077950px;}
.y14c{bottom:366.503860px;}
.y5e{bottom:367.980148px;}
.ybe{bottom:368.797806px;}
.y19a{bottom:369.015907px;}
.ydc{bottom:372.757805px;}
.y19{bottom:374.084999px;}
.y10b{bottom:375.997810px;}
.y14b{bottom:379.103850px;}
.y88{bottom:379.980148px;}
.y9b{bottom:380.077950px;}
.y5d{bottom:382.980148px;}
.ybd{bottom:383.797806px;}
.ydb{bottom:387.757782px;}
.y18{bottom:390.585022px;}
.y10a{bottom:390.997787px;}
.y14a{bottom:391.703842px;}
.y87{bottom:394.980148px;}
.y9a{bottom:395.077972px;}
.y5c{bottom:397.980148px;}
.ybc{bottom:398.797806px;}
.y199{bottom:402.015884px;}
.yda{bottom:402.757782px;}
.y149{bottom:404.303833px;}
.y109{bottom:405.997787px;}
.y17{bottom:407.085022px;}
.y86{bottom:409.980148px;}
.y99{bottom:410.077972px;}
.y5b{bottom:412.980148px;}
.ybb{bottom:413.797806px;}
.y148{bottom:416.903870px;}
.y198{bottom:417.015884px;}
.y108{bottom:420.997787px;}
.y16{bottom:423.585022px;}
.y85{bottom:424.980148px;}
.y98{bottom:425.077972px;}
.y5a{bottom:427.980148px;}
.yba{bottom:428.797806px;}
.y147{bottom:429.503860px;}
.y197{bottom:432.015884px;}
.yd9{bottom:432.757782px;}
.y107{bottom:435.997787px;}
.y84{bottom:439.980148px;}
.y97{bottom:440.077972px;}
.y15{bottom:440.085022px;}
.y146{bottom:442.103850px;}
.y59{bottom:442.980148px;}
.yb9{bottom:443.797806px;}
.y196{bottom:447.015884px;}
.yd8{bottom:447.757782px;}
.y106{bottom:450.997787px;}
.y145{bottom:454.703842px;}
.y83{bottom:454.980148px;}
.y96{bottom:455.077972px;}
.y14{bottom:456.585022px;}
.y58{bottom:457.980148px;}
.yb8{bottom:458.797806px;}
.y195{bottom:462.015884px;}
.yd7{bottom:462.757782px;}
.y105{bottom:465.997787px;}
.y144{bottom:467.303833px;}
.y82{bottom:469.980148px;}
.y95{bottom:470.077972px;}
.y57{bottom:472.980148px;}
.y13{bottom:473.085022px;}
.yb7{bottom:473.797806px;}
.y194{bottom:477.015884px;}
.yd6{bottom:477.757782px;}
.y143{bottom:479.903870px;}
.y104{bottom:480.997787px;}
.y81{bottom:484.980148px;}
.y94{bottom:485.077972px;}
.y56{bottom:487.980148px;}
.y12{bottom:489.585022px;}
.y142{bottom:492.503860px;}
.y80{bottom:499.980148px;}
.yb6{bottom:500.077972px;}
.y55{bottom:502.980148px;}
.y141{bottom:505.103850px;}
.y11{bottom:506.085022px;}
.y193{bottom:510.015884px;}
.y7f{bottom:514.980148px;}
.yb5{bottom:515.077972px;}
.y140{bottom:517.703842px;}
.y54{bottom:517.980148px;}
.y10{bottom:522.585022px;}
.y192{bottom:522.615921px;}
.y7e{bottom:529.980148px;}
.y13f{bottom:530.303833px;}
.yd5{bottom:531.659088px;}
.y53{bottom:532.980148px;}
.y191{bottom:535.215912px;}
.yf3{bottom:535.619110px;}
.y122{bottom:538.859116px;}
.yf{bottom:539.085022px;}
.y13e{bottom:542.903870px;}
.yb4{bottom:542.939117px;}
.y7d{bottom:544.980148px;}
.yd4{bottom:546.659088px;}
.y190{bottom:547.815903px;}
.y52{bottom:547.980148px;}
.yf2{bottom:550.619110px;}
.y121{bottom:553.859116px;}
.y13d{bottom:555.503860px;}
.ye{bottom:555.585022px;}
.yb3{bottom:557.939117px;}
.y7c{bottom:559.980148px;}
.y18f{bottom:560.415894px;}
.yd3{bottom:561.659088px;}
.y51{bottom:562.980148px;}
.yf1{bottom:565.619110px;}
.y13c{bottom:568.103850px;}
.y120{bottom:568.859116px;}
.yd{bottom:572.085022px;}
.yb2{bottom:572.939117px;}
.y18e{bottom:573.015884px;}
.y7b{bottom:574.980148px;}
.y50{bottom:577.980148px;}
.y13b{bottom:580.703842px;}
.y18d{bottom:585.615921px;}
.yb1{bottom:587.939117px;}
.yc{bottom:588.585022px;}
.y7a{bottom:589.980148px;}
.y4f{bottom:592.980148px;}
.y13a{bottom:593.303833px;}
.y18c{bottom:598.215912px;}
.y79{bottom:604.980148px;}
.yb{bottom:605.085022px;}
.y139{bottom:605.903870px;}
.y4e{bottom:607.980148px;}
.y18b{bottom:610.815903px;}
.y138{bottom:618.503860px;}
.y78{bottom:619.980148px;}
.ya{bottom:621.585022px;}
.y4d{bottom:622.980148px;}
.y18a{bottom:623.415894px;}
.y137{bottom:631.103850px;}
.y77{bottom:634.980148px;}
.y189{bottom:636.015884px;}
.y4c{bottom:637.980148px;}
.y9{bottom:638.085022px;}
.y136{bottom:643.703842px;}
.y188{bottom:648.615921px;}
.y76{bottom:649.980148px;}
.y4b{bottom:652.980148px;}
.y135{bottom:656.303833px;}
.y187{bottom:661.215912px;}
.y75{bottom:664.980148px;}
.y8{bottom:667.978821px;}
.y4a{bottom:667.980148px;}
.y134{bottom:668.903870px;}
.y186{bottom:673.815903px;}
.y74{bottom:679.980148px;}
.y133{bottom:681.503860px;}
.y49{bottom:682.980148px;}
.y7{bottom:685.978821px;}
.y185{bottom:686.415894px;}
.y132{bottom:694.103850px;}
.y73{bottom:694.980148px;}
.y48{bottom:697.980148px;}
.y184{bottom:699.015884px;}
.y131{bottom:706.703842px;}
.y183{bottom:711.615921px;}
.y47{bottom:712.980148px;}
.y6{bottom:718.945633px;}
.y130{bottom:719.303833px;}
.y182{bottom:724.215912px;}
.y46{bottom:727.980148px;}
.y12f{bottom:731.903870px;}
.y101{bottom:736.070114px;}
.y181{bottom:736.815903px;}
.y45{bottom:742.980148px;}
.y12e{bottom:744.503860px;}
.y180{bottom:749.415894px;}
.y12d{bottom:757.103850px;}
.y44{bottom:757.980148px;}
.y17f{bottom:762.015884px;}
.y5{bottom:763.945633px;}
.y12c{bottom:769.703888px;}
.y43{bottom:772.980194px;}
.y17e{bottom:774.615875px;}
.y12b{bottom:782.303833px;}
.y17d{bottom:787.215912px;}
.y42{bottom:787.980194px;}
.y12a{bottom:794.903870px;}
.y103{bottom:795.419586px;}
.y17c{bottom:799.815857px;}
.y41{bottom:802.980194px;}
.y129{bottom:807.503815px;}
.y4{bottom:808.945679px;}
.y102{bottom:810.419586px;}
.y17b{bottom:812.415894px;}
.y40{bottom:817.980194px;}
.y17a{bottom:825.015930px;}
.y3f{bottom:832.980194px;}
.y179{bottom:837.615875px;}
.y3e{bottom:847.980194px;}
.y178{bottom:850.215912px;}
.y3{bottom:853.945679px;}
.y128{bottom:858.480194px;}
.y177{bottom:862.815857px;}
.y3d{bottom:862.980194px;}
.y176{bottom:875.415894px;}
.y3c{bottom:877.980194px;}
.y1b3{bottom:882.780121px;}
.y175{bottom:888.015930px;}
.y127{bottom:889.980194px;}
.y3b{bottom:892.980194px;}
.y2{bottom:898.945679px;}
.y174{bottom:900.615875px;}
.y126{bottom:904.980194px;}
.y3a{bottom:907.980194px;}
.y173{bottom:913.215912px;}
.y1b2{bottom:913.980194px;}
.y125{bottom:919.980194px;}
.y39{bottom:922.980194px;}
.y172{bottom:925.815857px;}
.y1b1{bottom:928.980194px;}
.y38{bottom:937.980194px;}
.y171{bottom:938.415894px;}
.y1{bottom:943.945679px;}
.y1b0{bottom:943.980194px;}
.y170{bottom:951.015930px;}
.y2a{bottom:952.050934px;}
.y37{bottom:952.980194px;}
.y1af{bottom:958.980194px;}
.y16f{bottom:963.615875px;}
.y36{bottom:967.980194px;}
.y1ae{bottom:973.980194px;}
.y16e{bottom:976.215912px;}
.y35{bottom:982.980194px;}
.y16d{bottom:988.815857px;}
.y1ad{bottom:988.980194px;}
.y34{bottom:997.980194px;}
.y16c{bottom:1001.415894px;}
.y1ac{bottom:1003.980194px;}
.y33{bottom:1012.980194px;}
.y16b{bottom:1014.015930px;}
.y1ab{bottom:1018.980194px;}
.y16a{bottom:1026.615875px;}
.y32{bottom:1027.980194px;}
.y1aa{bottom:1033.980194px;}
.y169{bottom:1039.215912px;}
.y31{bottom:1042.980194px;}
.y1a9{bottom:1048.980194px;}
.y168{bottom:1051.815857px;}
.y30{bottom:1057.980194px;}
.y167{bottom:1064.415894px;}
.y2f{bottom:1072.980194px;}
.y166{bottom:1077.015930px;}
.y2e{bottom:1087.980194px;}
.y165{bottom:1089.615875px;}
.y2d{bottom:1140.708343px;}
.y72{bottom:1140.800079px;}
.ha{height:25.676806px;}
.hf{height:34.523438px;}
.h1c{height:35.411133px;}
.hc{height:36.681152px;}
.h6{height:38.838867px;}
.h16{height:43.154297px;}
.h1e{height:44.505000px;}
.h1f{height:45.090000px;}
.he{height:45.679688px;}
.h1d{height:46.080000px;}
.h14{height:47.469727px;}
.hb{height:48.534668px;}
.h5{height:51.416016px;}
.h8{height:53.406000px;}
.h12{height:54.108000px;}
.h7{height:54.621643px;}
.h1a{height:55.296000px;}
.h11{height:56.013350px;}
.h17{height:56.013625px;}
.h15{height:56.014083px;}
.h13{height:56.014174px;}
.h19{height:56.014197px;}
.h18{height:56.014220px;}
.h9{height:56.014266px;}
.h10{height:57.099609px;}
.h4{height:57.128906px;}
.h1b{height:62.841797px;}
.hd{height:102.832031px;}
.h3{height:112.201172px;}
.h2{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:61.653448px;}
.x7{left:108.378445px;}
.x2{left:140.352448px;}
.x1{left:233.858253px;}
.x6{left:251.858253px;}
.x8{left:252.992249px;}
.x4{left:338.775604px;}
.x5{left:585.853363px;}
@media print{
.v5{vertical-align:-16.560059pt;}
.v3{vertical-align:-15.639974pt;}
.v6{vertical-align:-13.799967pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.799967pt;}
.v4{vertical-align:15.639974pt;}
.v2{vertical-align:16.560384pt;}
.v1{vertical-align:18.399902pt;}
.ls1a{letter-spacing:-2.480000pt;}
.ls1b{letter-spacing:-1.240000pt;}
.ls1e{letter-spacing:-1.200000pt;}
.ls1c{letter-spacing:-1.120000pt;}
.ls27{letter-spacing:-0.920000pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls26{letter-spacing:-0.760000pt;}
.ls1f{letter-spacing:-0.680000pt;}
.lsc{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.520000pt;}
.ls12{letter-spacing:-0.432000pt;}
.ls18{letter-spacing:-0.400000pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.280000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000007pt;}
.ls5{letter-spacing:0.000011pt;}
.ls10{letter-spacing:0.000022pt;}
.lsf{letter-spacing:0.000039pt;}
.ls15{letter-spacing:0.000059pt;}
.ls16{letter-spacing:0.000078pt;}
.ls17{letter-spacing:0.000081pt;}
.lsa{letter-spacing:0.000092pt;}
.ls6{letter-spacing:0.010159pt;}
.ls4{letter-spacing:0.011224pt;}
.ls1{letter-spacing:0.011779pt;}
.ls3{letter-spacing:0.012671pt;}
.ls0{letter-spacing:0.012752pt;}
.ls2{letter-spacing:0.012833pt;}
.ls1d{letter-spacing:0.600000pt;}
.ls21{letter-spacing:1.101315pt;}
.ls14{letter-spacing:1.154375pt;}
.ls24{letter-spacing:1.235430pt;}
.ls7{letter-spacing:2.666667pt;}
.ls23{letter-spacing:3.846432pt;}
.ls22{letter-spacing:4.673581pt;}
.ws1{word-spacing:-13.333333pt;}
.wsb9{word-spacing:-12.085333pt;}
.ws9f{word-spacing:-10.992000pt;}
.ws10{word-spacing:-10.896000pt;}
.ws12{word-spacing:-10.800000pt;}
.wsaa{word-spacing:-10.656000pt;}
.ws6f{word-spacing:-10.416000pt;}
.ws13{word-spacing:-10.320000pt;}
.wsa0{word-spacing:-10.080000pt;}
.ws6e{word-spacing:-9.984000pt;}
.wsc0{word-spacing:-9.680000pt;}
.wse3{word-spacing:-9.160000pt;}
.wsbb{word-spacing:-9.080000pt;}
.wsdf{word-spacing:-9.000000pt;}
.wsbf{word-spacing:-8.800000pt;}
.wse2{word-spacing:-8.760000pt;}
.wsba{word-spacing:-8.680000pt;}
.wsc2{word-spacing:-8.640000pt;}
.wsc1{word-spacing:-8.480000pt;}
.wse0{word-spacing:-8.400000pt;}
.wse1{word-spacing:-8.240000pt;}
.wsbd{word-spacing:-8.040000pt;}
.ws11{word-spacing:-7.627200pt;}
.wsbc{word-spacing:-6.680000pt;}
.wsbe{word-spacing:-6.356000pt;}
.ws0{word-spacing:-6.346666pt;}
.ws3{word-spacing:-5.866667pt;}
.ws92{word-spacing:-4.896000pt;}
.ws4{word-spacing:-4.560000pt;}
.ws6b{word-spacing:-2.928000pt;}
.ws91{word-spacing:-2.544000pt;}
.ws79{word-spacing:-2.496000pt;}
.wsc3{word-spacing:-2.448000pt;}
.wsb3{word-spacing:-2.400000pt;}
.ws51{word-spacing:-2.304000pt;}
.ws3d{word-spacing:-2.208000pt;}
.wsa1{word-spacing:-2.160000pt;}
.wsad{word-spacing:-2.112000pt;}
.ws42{word-spacing:-2.064000pt;}
.ws88{word-spacing:-2.016000pt;}
.ws85{word-spacing:-1.968000pt;}
.ws31{word-spacing:-1.920000pt;}
.ws52{word-spacing:-1.872000pt;}
.wsa7{word-spacing:-1.824000pt;}
.wse{word-spacing:-1.768000pt;}
.ws98{word-spacing:-1.728000pt;}
.ws97{word-spacing:-1.680000pt;}
.wsa3{word-spacing:-1.632000pt;}
.wsda{word-spacing:-1.600000pt;}
.ws50{word-spacing:-1.584000pt;}
.ws29{word-spacing:-1.536000pt;}
.ws72{word-spacing:-1.488000pt;}
.ws95{word-spacing:-1.440000pt;}
.ws96{word-spacing:-1.392000pt;}
.wsf4{word-spacing:-1.360000pt;}
.wsa8{word-spacing:-1.344000pt;}
.ws49{word-spacing:-1.296000pt;}
.ws60{word-spacing:-1.248000pt;}
.wsce{word-spacing:-1.200000pt;}
.ws9e{word-spacing:-1.152000pt;}
.ws61{word-spacing:-1.104000pt;}
.wsb{word-spacing:-1.056000pt;}
.ws6a{word-spacing:-1.008000pt;}
.ws1d{word-spacing:-0.960000pt;}
.wsdd{word-spacing:-0.920000pt;}
.ws78{word-spacing:-0.912000pt;}
.ws25{word-spacing:-0.864000pt;}
.ws40{word-spacing:-0.816000pt;}
.wsaf{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.720000pt;}
.wsd5{word-spacing:-0.680000pt;}
.ws99{word-spacing:-0.672000pt;}
.wsd7{word-spacing:-0.640000pt;}
.ws89{word-spacing:-0.624000pt;}
.wsf1{word-spacing:-0.600000pt;}
.ws81{word-spacing:-0.576000pt;}
.wsac{word-spacing:-0.528000pt;}
.wsf2{word-spacing:-0.520000pt;}
.ws74{word-spacing:-0.480000pt;}
.ws68{word-spacing:-0.432000pt;}
.wsd3{word-spacing:-0.400000pt;}
.ws41{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.336000pt;}
.wsde{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.288000pt;}
.wsd8{word-spacing:-0.280000pt;}
.ws54{word-spacing:-0.240000pt;}
.ws14{word-spacing:-0.192000pt;}
.wsb0{word-spacing:-0.144000pt;}
.wsd6{word-spacing:-0.120000pt;}
.wscf{word-spacing:-0.080000pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.048000pt;}
.wsf{word-spacing:0.096000pt;}
.ws55{word-spacing:0.144000pt;}
.wsd2{word-spacing:0.160000pt;}
.ws65{word-spacing:0.192000pt;}
.ws7a{word-spacing:0.240000pt;}
.wsc9{word-spacing:0.280000pt;}
.ws57{word-spacing:0.288000pt;}
.ws32{word-spacing:0.336000pt;}
.ws8f{word-spacing:0.384000pt;}
.wscc{word-spacing:0.400000pt;}
.ws83{word-spacing:0.432000pt;}
.wsf3{word-spacing:0.440000pt;}
.ws7f{word-spacing:0.480000pt;}
.wsd9{word-spacing:0.520000pt;}
.ws48{word-spacing:0.528000pt;}
.wsdc{word-spacing:0.560000pt;}
.ws2c{word-spacing:0.576000pt;}
.wsdb{word-spacing:0.600000pt;}
.ws67{word-spacing:0.624000pt;}
.ws35{word-spacing:0.672000pt;}
.ws17{word-spacing:0.720000pt;}
.wse9{word-spacing:0.800000pt;}
.ws82{word-spacing:0.816000pt;}
.ws22{word-spacing:0.864000pt;}
.wsca{word-spacing:0.880000pt;}
.ws20{word-spacing:0.912000pt;}
.ws8e{word-spacing:0.960000pt;}
.wsed{word-spacing:1.000000pt;}
.ws18{word-spacing:1.008000pt;}
.ws4f{word-spacing:1.056000pt;}
.ws47{word-spacing:1.104000pt;}
.wsd4{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.152000pt;}
.wsc5{word-spacing:1.160000pt;}
.ws2b{word-spacing:1.200000pt;}
.wscd{word-spacing:1.240000pt;}
.ws1e{word-spacing:1.248000pt;}
.ws3c{word-spacing:1.296000pt;}
.ws7b{word-spacing:1.392000pt;}
.ws23{word-spacing:1.440000pt;}
.ws87{word-spacing:1.488000pt;}
.ws30{word-spacing:1.536000pt;}
.ws64{word-spacing:1.584000pt;}
.ws7c{word-spacing:1.632000pt;}
.wsb5{word-spacing:1.680000pt;}
.ws5{word-spacing:1.728000pt;}
.ws21{word-spacing:1.776000pt;}
.ws7{word-spacing:1.824000pt;}
.wse4{word-spacing:1.840000pt;}
.ws3b{word-spacing:1.872000pt;}
.ws6c{word-spacing:1.920000pt;}
.ws71{word-spacing:1.968000pt;}
.ws84{word-spacing:2.016000pt;}
.ws59{word-spacing:2.064000pt;}
.ws8a{word-spacing:2.112000pt;}
.ws15{word-spacing:2.160000pt;}
.ws63{word-spacing:2.208000pt;}
.ws7e{word-spacing:2.256000pt;}
.wsa{word-spacing:2.304000pt;}
.ws38{word-spacing:2.352000pt;}
.ws9a{word-spacing:2.400000pt;}
.ws62{word-spacing:2.448000pt;}
.ws43{word-spacing:2.496000pt;}
.ws26{word-spacing:2.544000pt;}
.ws86{word-spacing:2.592000pt;}
.wsb4{word-spacing:2.640000pt;}
.wsd{word-spacing:2.674667pt;}
.ws5d{word-spacing:2.688000pt;}
.ws2a{word-spacing:2.784000pt;}
.wsb2{word-spacing:2.832000pt;}
.ws39{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.976000pt;}
.ws66{word-spacing:3.024000pt;}
.wse7{word-spacing:3.040000pt;}
.ws75{word-spacing:3.072000pt;}
.ws37{word-spacing:3.120000pt;}
.ws36{word-spacing:3.168000pt;}
.wsa6{word-spacing:3.216000pt;}
.wsc7{word-spacing:3.240000pt;}
.wsc8{word-spacing:3.280000pt;}
.ws90{word-spacing:3.312000pt;}
.ws8{word-spacing:3.360000pt;}
.ws33{word-spacing:3.456000pt;}
.ws53{word-spacing:3.504000pt;}
.ws7d{word-spacing:3.552000pt;}
.ws16{word-spacing:3.600000pt;}
.ws6d{word-spacing:3.648000pt;}
.ws69{word-spacing:3.696000pt;}
.wsd0{word-spacing:3.720000pt;}
.ws58{word-spacing:3.744000pt;}
.wsf6{word-spacing:3.792000pt;}
.ws2e{word-spacing:3.840000pt;}
.wse8{word-spacing:3.880000pt;}
.ws94{word-spacing:3.936000pt;}
.ws8b{word-spacing:4.080000pt;}
.ws34{word-spacing:4.128000pt;}
.wsee{word-spacing:4.200000pt;}
.ws76{word-spacing:4.224000pt;}
.wsef{word-spacing:4.240000pt;}
.wsa9{word-spacing:4.272000pt;}
.wscb{word-spacing:4.280000pt;}
.ws8c{word-spacing:4.320000pt;}
.ws77{word-spacing:4.368000pt;}
.wsc6{word-spacing:4.400000pt;}
.wsf5{word-spacing:4.416000pt;}
.ws2d{word-spacing:4.464000pt;}
.ws93{word-spacing:4.560000pt;}
.ws8d{word-spacing:4.608000pt;}
.ws4c{word-spacing:4.656000pt;}
.wse5{word-spacing:4.680000pt;}
.ws4b{word-spacing:4.752000pt;}
.ws9b{word-spacing:4.800000pt;}
.wse6{word-spacing:4.880000pt;}
.ws3e{word-spacing:4.944000pt;}
.ws5a{word-spacing:4.992000pt;}
.wsf0{word-spacing:5.000000pt;}
.wsc4{word-spacing:5.040000pt;}
.wsae{word-spacing:5.088000pt;}
.wsd1{word-spacing:5.160000pt;}
.wsb6{word-spacing:5.232000pt;}
.wsa4{word-spacing:5.280000pt;}
.ws4e{word-spacing:5.376000pt;}
.ws4d{word-spacing:5.520000pt;}
.ws5c{word-spacing:5.568000pt;}
.wsa5{word-spacing:5.712000pt;}
.wsb8{word-spacing:5.760000pt;}
.ws70{word-spacing:5.808000pt;}
.ws1b{word-spacing:5.904000pt;}
.ws5f{word-spacing:6.240000pt;}
.wsb1{word-spacing:6.336000pt;}
.wsa2{word-spacing:6.384000pt;}
.ws24{word-spacing:6.432000pt;}
.ws9{word-spacing:6.672000pt;}
.ws5b{word-spacing:6.720000pt;}
.ws44{word-spacing:6.864000pt;}
.ws28{word-spacing:7.152000pt;}
.ws56{word-spacing:7.200000pt;}
.wsc{word-spacing:7.253333pt;}
.ws46{word-spacing:7.536000pt;}
.ws27{word-spacing:7.584000pt;}
.ws1a{word-spacing:7.920000pt;}
.wsab{word-spacing:8.112000pt;}
.ws9d{word-spacing:8.160000pt;}
.ws73{word-spacing:8.352000pt;}
.ws1f{word-spacing:8.736000pt;}
.ws1c{word-spacing:9.168000pt;}
.ws45{word-spacing:9.456000pt;}
.ws9c{word-spacing:9.696000pt;}
.wsea{word-spacing:10.760000pt;}
.wseb{word-spacing:10.880000pt;}
.wsb7{word-spacing:10.992000pt;}
.wsec{word-spacing:11.080000pt;}
.ws80{word-spacing:13.104000pt;}
._1a{margin-left:-19.840000pt;}
._19{margin-left:-15.800000pt;}
._16{margin-left:-14.240000pt;}
._15{margin-left:-12.800000pt;}
._1b{margin-left:-11.720000pt;}
._b{margin-left:-10.284191pt;}
._c{margin-left:-9.011809pt;}
._d{margin-left:-7.684574pt;}
._e{margin-left:-6.432000pt;}
._2{margin-left:-5.130708pt;}
._1{margin-left:-3.933296pt;}
._4{margin-left:-2.592000pt;}
._0{margin-left:-1.642667pt;}
._6{width:0.908191pt;}
._7{width:1.856000pt;}
._f{width:2.888121pt;}
._3{width:3.834667pt;}
._8{width:5.090702pt;}
._17{width:6.280000pt;}
._9{width:7.255483pt;}
._13{width:8.800000pt;}
._11{width:9.866718pt;}
._14{width:11.280000pt;}
._10{width:12.718902pt;}
._5{width:15.913581pt;}
._18{width:20.520000pt;}
._12{width:2004.037401pt;}
._a{width:2031.380826pt;}
.fsb{font-size:28.000000pt;}
.fs5{font-size:31.733332pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:24.563600pt;}
.y2c{bottom:24.571599pt;}
.y164{bottom:56.981200pt;}
.y71{bottom:57.760132pt;}
.yb0{bottom:57.847066pt;}
.yff{bottom:58.424932pt;}
.y29{bottom:60.472402pt;}
.yd2{bottom:61.153600pt;}
.yf0{bottom:64.673599pt;}
.y11f{bottom:67.553599pt;}
.y163{bottom:68.181198pt;}
.y70{bottom:71.093465pt;}
.yaf{bottom:71.180400pt;}
.yfe{bottom:71.758265pt;}
.y28{bottom:73.805735pt;}
.yd1{bottom:74.486933pt;}
.yef{bottom:78.006933pt;}
.y162{bottom:79.381200pt;}
.y1a8{bottom:79.892400pt;}
.y11e{bottom:80.886932pt;}
.y6f{bottom:84.426799pt;}
.yae{bottom:84.513733pt;}
.yfd{bottom:85.091599pt;}
.y27{bottom:87.139069pt;}
.yd0{bottom:87.820262pt;}
.y161{bottom:90.581197pt;}
.yee{bottom:91.340271pt;}
.y11d{bottom:94.220266pt;}
.y6e{bottom:97.760132pt;}
.yad{bottom:97.847066pt;}
.yfc{bottom:98.424937pt;}
.y1a7{bottom:99.953328pt;}
.y26{bottom:100.472402pt;}
.ycf{bottom:101.153595pt;}
.y160{bottom:101.781199pt;}
.yed{bottom:104.673604pt;}
.y11c{bottom:107.553599pt;}
.y6d{bottom:111.093465pt;}
.yac{bottom:111.180400pt;}
.yfb{bottom:111.758270pt;}
.y15f{bottom:112.981200pt;}
.yce{bottom:114.486928pt;}
.y25{bottom:117.715729pt;}
.yec{bottom:118.006938pt;}
.y1a6{bottom:120.014130pt;}
.y11b{bottom:120.886932pt;}
.y15e{bottom:124.181203pt;}
.y6c{bottom:124.426799pt;}
.yab{bottom:124.513733pt;}
.yfa{bottom:125.091604pt;}
.ycd{bottom:127.820262pt;}
.yeb{bottom:131.340271pt;}
.y1a5{bottom:133.347463pt;}
.y11a{bottom:134.220266pt;}
.y15d{bottom:135.381195pt;}
.y6b{bottom:137.760132pt;}
.yaa{bottom:137.847066pt;}
.yf9{bottom:138.424937pt;}
.ycc{bottom:141.153595pt;}
.yea{bottom:144.673604pt;}
.y15c{bottom:146.581197pt;}
.y1a4{bottom:146.680796pt;}
.y119{bottom:147.553599pt;}
.y6a{bottom:151.093465pt;}
.ya9{bottom:151.180400pt;}
.yf8{bottom:151.758270pt;}
.ycb{bottom:154.486928pt;}
.y24{bottom:154.514800pt;}
.y15b{bottom:157.781199pt;}
.ye9{bottom:158.006938pt;}
.y118{bottom:160.886932pt;}
.y69{bottom:164.426799pt;}
.ya8{bottom:164.513733pt;}
.yf7{bottom:165.091604pt;}
.yca{bottom:167.820262pt;}
.y23{bottom:167.848133pt;}
.y15a{bottom:168.981200pt;}
.ye8{bottom:171.340271pt;}
.y117{bottom:174.220276pt;}
.y1a3{bottom:176.014140pt;}
.y68{bottom:177.760132pt;}
.ya7{bottom:177.847066pt;}
.yf6{bottom:178.424927pt;}
.y159{bottom:180.181193pt;}
.y124{bottom:180.426799pt;}
.yc9{bottom:181.153605pt;}
.y22{bottom:181.181458pt;}
.ye7{bottom:184.673604pt;}
.y116{bottom:187.553609pt;}
.y1a2{bottom:189.347473pt;}
.y93{bottom:191.093465pt;}
.ya6{bottom:191.180400pt;}
.y158{bottom:191.381205pt;}
.yf5{bottom:191.758260pt;}
.y123{bottom:193.760132pt;}
.yc8{bottom:194.486938pt;}
.y21{bottom:194.514791pt;}
.ye6{bottom:198.006938pt;}
.y115{bottom:200.886943pt;}
.y157{bottom:202.581197pt;}
.y92{bottom:204.426799pt;}
.ya5{bottom:204.513733pt;}
.yf4{bottom:205.091593pt;}
.y67{bottom:207.093465pt;}
.yc7{bottom:207.820272pt;}
.y20{bottom:207.848124pt;}
.ye5{bottom:211.340271pt;}
.y156{bottom:213.781209pt;}
.y114{bottom:214.220276pt;}
.y91{bottom:217.760132pt;}
.ya4{bottom:217.847066pt;}
.y1a1{bottom:218.680806pt;}
.y66{bottom:220.426799pt;}
.yc6{bottom:221.153605pt;}
.y1f{bottom:221.181458pt;}
.ye4{bottom:224.673604pt;}
.y155{bottom:224.981200pt;}
.y113{bottom:227.553609pt;}
.y90{bottom:231.093465pt;}
.ya3{bottom:231.180400pt;}
.y65{bottom:233.760132pt;}
.yc5{bottom:234.486938pt;}
.y1e{bottom:234.514791pt;}
.y154{bottom:236.181193pt;}
.ye3{bottom:238.006938pt;}
.y112{bottom:240.886943pt;}
.y8f{bottom:244.426799pt;}
.ya2{bottom:244.513733pt;}
.y64{bottom:247.093465pt;}
.y153{bottom:247.381205pt;}
.yc4{bottom:247.820272pt;}
.y1d{bottom:247.848124pt;}
.y1a0{bottom:248.014140pt;}
.ye2{bottom:251.340271pt;}
.y111{bottom:254.220276pt;}
.y100{bottom:256.523743pt;}
.y8e{bottom:257.760132pt;}
.ya1{bottom:257.847066pt;}
.y152{bottom:258.581197pt;}
.y63{bottom:260.426799pt;}
.yc3{bottom:261.153605pt;}
.y19f{bottom:261.347473pt;}
.ye1{bottom:264.673604pt;}
.y110{bottom:267.553609pt;}
.y151{bottom:269.781209pt;}
.y8d{bottom:271.093465pt;}
.ya0{bottom:271.180400pt;}
.y62{bottom:273.760132pt;}
.yc2{bottom:274.486938pt;}
.y19e{bottom:274.680806pt;}
.y1c{bottom:277.181458pt;}
.ye0{bottom:278.006938pt;}
.y10f{bottom:280.886943pt;}
.y150{bottom:280.981200pt;}
.y8c{bottom:284.426799pt;}
.y9f{bottom:284.513733pt;}
.y61{bottom:287.093465pt;}
.yc1{bottom:287.820272pt;}
.y19d{bottom:288.014140pt;}
.ydf{bottom:291.340271pt;}
.y14f{bottom:292.181193pt;}
.y10e{bottom:294.220276pt;}
.y8b{bottom:297.760132pt;}
.y9e{bottom:297.847066pt;}
.y60{bottom:300.426799pt;}
.yc0{bottom:301.153605pt;}
.y19c{bottom:301.347473pt;}
.y1b{bottom:303.186666pt;}
.y14e{bottom:303.381205pt;}
.yde{bottom:304.673604pt;}
.y10d{bottom:307.553609pt;}
.y8a{bottom:311.093465pt;}
.y9d{bottom:311.180400pt;}
.y5f{bottom:313.760132pt;}
.ybf{bottom:314.486938pt;}
.y14d{bottom:314.581197pt;}
.y19b{bottom:314.680806pt;}
.y1a{bottom:317.853333pt;}
.ydd{bottom:318.006938pt;}
.y10c{bottom:320.886943pt;}
.y89{bottom:324.426799pt;}
.y9c{bottom:324.513733pt;}
.y14c{bottom:325.781209pt;}
.y5e{bottom:327.093465pt;}
.ybe{bottom:327.820272pt;}
.y19a{bottom:328.014140pt;}
.ydc{bottom:331.340271pt;}
.y19{bottom:332.519999pt;}
.y10b{bottom:334.220276pt;}
.y14b{bottom:336.981200pt;}
.y88{bottom:337.760132pt;}
.y9b{bottom:337.847066pt;}
.y5d{bottom:340.426799pt;}
.ybd{bottom:341.153605pt;}
.ydb{bottom:344.673584pt;}
.y18{bottom:347.186686pt;}
.y10a{bottom:347.553589pt;}
.y14a{bottom:348.181193pt;}
.y87{bottom:351.093465pt;}
.y9a{bottom:351.180420pt;}
.y5c{bottom:353.760132pt;}
.ybc{bottom:354.486938pt;}
.y199{bottom:357.347453pt;}
.yda{bottom:358.006917pt;}
.y149{bottom:359.381185pt;}
.y109{bottom:360.886922pt;}
.y17{bottom:361.853353pt;}
.y86{bottom:364.426799pt;}
.y99{bottom:364.513753pt;}
.y5b{bottom:367.093465pt;}
.ybb{bottom:367.820272pt;}
.y148{bottom:370.581217pt;}
.y198{bottom:370.680786pt;}
.y108{bottom:374.220256pt;}
.y16{bottom:376.520020pt;}
.y85{bottom:377.760132pt;}
.y98{bottom:377.847087pt;}
.y5a{bottom:380.426799pt;}
.yba{bottom:381.153605pt;}
.y147{bottom:381.781209pt;}
.y197{bottom:384.014119pt;}
.yd9{bottom:384.673584pt;}
.y107{bottom:387.553589pt;}
.y84{bottom:391.093465pt;}
.y97{bottom:391.180420pt;}
.y15{bottom:391.186686pt;}
.y146{bottom:392.981200pt;}
.y59{bottom:393.760132pt;}
.yb9{bottom:394.486938pt;}
.y196{bottom:397.347453pt;}
.yd8{bottom:398.006917pt;}
.y106{bottom:400.886922pt;}
.y145{bottom:404.181193pt;}
.y83{bottom:404.426799pt;}
.y96{bottom:404.513753pt;}
.y14{bottom:405.853353pt;}
.y58{bottom:407.093465pt;}
.yb8{bottom:407.820272pt;}
.y195{bottom:410.680786pt;}
.yd7{bottom:411.340251pt;}
.y105{bottom:414.220256pt;}
.y144{bottom:415.381185pt;}
.y82{bottom:417.760132pt;}
.y95{bottom:417.847087pt;}
.y57{bottom:420.426799pt;}
.y13{bottom:420.520020pt;}
.yb7{bottom:421.153605pt;}
.y194{bottom:424.014119pt;}
.yd6{bottom:424.673584pt;}
.y143{bottom:426.581217pt;}
.y104{bottom:427.553589pt;}
.y81{bottom:431.093465pt;}
.y94{bottom:431.180420pt;}
.y56{bottom:433.760132pt;}
.y12{bottom:435.186686pt;}
.y142{bottom:437.781209pt;}
.y80{bottom:444.426799pt;}
.yb6{bottom:444.513753pt;}
.y55{bottom:447.093465pt;}
.y141{bottom:448.981200pt;}
.y11{bottom:449.853353pt;}
.y193{bottom:453.347453pt;}
.y7f{bottom:457.760132pt;}
.yb5{bottom:457.847087pt;}
.y140{bottom:460.181193pt;}
.y54{bottom:460.426799pt;}
.y10{bottom:464.520020pt;}
.y192{bottom:464.547485pt;}
.y7e{bottom:471.093465pt;}
.y13f{bottom:471.381185pt;}
.yd5{bottom:472.585856pt;}
.y53{bottom:473.760132pt;}
.y191{bottom:475.747477pt;}
.yf3{bottom:476.105876pt;}
.y122{bottom:478.985881pt;}
.yf{bottom:479.186686pt;}
.y13e{bottom:482.581217pt;}
.yb4{bottom:482.612549pt;}
.y7d{bottom:484.426799pt;}
.yd4{bottom:485.919189pt;}
.y190{bottom:486.947469pt;}
.y52{bottom:487.093465pt;}
.yf2{bottom:489.439209pt;}
.y121{bottom:492.319214pt;}
.y13d{bottom:493.781209pt;}
.ye{bottom:493.853353pt;}
.yb3{bottom:495.945882pt;}
.y7c{bottom:497.760132pt;}
.y18f{bottom:498.147461pt;}
.yd3{bottom:499.252523pt;}
.y51{bottom:500.426799pt;}
.yf1{bottom:502.772542pt;}
.y13c{bottom:504.981200pt;}
.y120{bottom:505.652547pt;}
.yd{bottom:508.520020pt;}
.yb2{bottom:509.279215pt;}
.y18e{bottom:509.347453pt;}
.y7b{bottom:511.093465pt;}
.y50{bottom:513.760132pt;}
.y13b{bottom:516.181193pt;}
.y18d{bottom:520.547485pt;}
.yb1{bottom:522.612549pt;}
.yc{bottom:523.186686pt;}
.y7a{bottom:524.426799pt;}
.y4f{bottom:527.093465pt;}
.y13a{bottom:527.381185pt;}
.y18c{bottom:531.747477pt;}
.y79{bottom:537.760132pt;}
.yb{bottom:537.853353pt;}
.y139{bottom:538.581217pt;}
.y4e{bottom:540.426799pt;}
.y18b{bottom:542.947469pt;}
.y138{bottom:549.781209pt;}
.y78{bottom:551.093465pt;}
.ya{bottom:552.520020pt;}
.y4d{bottom:553.760132pt;}
.y18a{bottom:554.147461pt;}
.y137{bottom:560.981200pt;}
.y77{bottom:564.426799pt;}
.y189{bottom:565.347453pt;}
.y4c{bottom:567.093465pt;}
.y9{bottom:567.186686pt;}
.y136{bottom:572.181193pt;}
.y188{bottom:576.547485pt;}
.y76{bottom:577.760132pt;}
.y4b{bottom:580.426799pt;}
.y135{bottom:583.381185pt;}
.y187{bottom:587.747477pt;}
.y75{bottom:591.093465pt;}
.y8{bottom:593.758952pt;}
.y4a{bottom:593.760132pt;}
.y134{bottom:594.581217pt;}
.y186{bottom:598.947469pt;}
.y74{bottom:604.426799pt;}
.y133{bottom:605.781209pt;}
.y49{bottom:607.093465pt;}
.y7{bottom:609.758952pt;}
.y185{bottom:610.147461pt;}
.y132{bottom:616.981200pt;}
.y73{bottom:617.760132pt;}
.y48{bottom:620.426799pt;}
.y184{bottom:621.347453pt;}
.y131{bottom:628.181193pt;}
.y183{bottom:632.547485pt;}
.y47{bottom:633.760132pt;}
.y6{bottom:639.062785pt;}
.y130{bottom:639.381185pt;}
.y182{bottom:643.747477pt;}
.y46{bottom:647.093465pt;}
.y12f{bottom:650.581217pt;}
.y101{bottom:654.284546pt;}
.y181{bottom:654.947469pt;}
.y45{bottom:660.426799pt;}
.y12e{bottom:661.781209pt;}
.y180{bottom:666.147461pt;}
.y12d{bottom:672.981200pt;}
.y44{bottom:673.760132pt;}
.y17f{bottom:677.347453pt;}
.y5{bottom:679.062785pt;}
.y12c{bottom:684.181234pt;}
.y43{bottom:687.093506pt;}
.y17e{bottom:688.547445pt;}
.y12b{bottom:695.381185pt;}
.y17d{bottom:699.747477pt;}
.y42{bottom:700.426839pt;}
.y12a{bottom:706.581217pt;}
.y103{bottom:707.039632pt;}
.y17c{bottom:710.947428pt;}
.y41{bottom:713.760173pt;}
.y129{bottom:717.781169pt;}
.y4{bottom:719.062826pt;}
.y102{bottom:720.372965pt;}
.y17b{bottom:722.147461pt;}
.y40{bottom:727.093506pt;}
.y17a{bottom:733.347493pt;}
.y3f{bottom:740.426839pt;}
.y179{bottom:744.547445pt;}
.y3e{bottom:753.760173pt;}
.y178{bottom:755.747477pt;}
.y3{bottom:759.062826pt;}
.y128{bottom:763.093506pt;}
.y177{bottom:766.947428pt;}
.y3d{bottom:767.093506pt;}
.y176{bottom:778.147461pt;}
.y3c{bottom:780.426839pt;}
.y1b3{bottom:784.693441pt;}
.y175{bottom:789.347493pt;}
.y127{bottom:791.093506pt;}
.y3b{bottom:793.760173pt;}
.y2{bottom:799.062826pt;}
.y174{bottom:800.547445pt;}
.y126{bottom:804.426839pt;}
.y3a{bottom:807.093506pt;}
.y173{bottom:811.747477pt;}
.y1b2{bottom:812.426839pt;}
.y125{bottom:817.760173pt;}
.y39{bottom:820.426839pt;}
.y172{bottom:822.947428pt;}
.y1b1{bottom:825.760173pt;}
.y38{bottom:833.760173pt;}
.y171{bottom:834.147461pt;}
.y1{bottom:839.062826pt;}
.y1b0{bottom:839.093506pt;}
.y170{bottom:845.347493pt;}
.y2a{bottom:846.267497pt;}
.y37{bottom:847.093506pt;}
.y1af{bottom:852.426839pt;}
.y16f{bottom:856.547445pt;}
.y36{bottom:860.426839pt;}
.y1ae{bottom:865.760173pt;}
.y16e{bottom:867.747477pt;}
.y35{bottom:873.760173pt;}
.y16d{bottom:878.947428pt;}
.y1ad{bottom:879.093506pt;}
.y34{bottom:887.093506pt;}
.y16c{bottom:890.147461pt;}
.y1ac{bottom:892.426839pt;}
.y33{bottom:900.426839pt;}
.y16b{bottom:901.347493pt;}
.y1ab{bottom:905.760173pt;}
.y16a{bottom:912.547445pt;}
.y32{bottom:913.760173pt;}
.y1aa{bottom:919.093506pt;}
.y169{bottom:923.747477pt;}
.y31{bottom:927.093506pt;}
.y1a9{bottom:932.426839pt;}
.y168{bottom:934.947428pt;}
.y30{bottom:940.426839pt;}
.y167{bottom:946.147461pt;}
.y2f{bottom:953.760173pt;}
.y166{bottom:957.347493pt;}
.y2e{bottom:967.093506pt;}
.y165{bottom:968.547445pt;}
.y2d{bottom:1013.962972pt;}
.y72{bottom:1014.044515pt;}
.ha{height:22.823827pt;}
.hf{height:30.687500pt;}
.h1c{height:31.476562pt;}
.hc{height:32.605469pt;}
.h6{height:34.523438pt;}
.h16{height:38.359375pt;}
.h1e{height:39.560000pt;}
.h1f{height:40.080000pt;}
.he{height:40.604167pt;}
.h1d{height:40.960000pt;}
.h14{height:42.195312pt;}
.hb{height:43.141927pt;}
.h5{height:45.703125pt;}
.h8{height:47.472000pt;}
.h12{height:48.096000pt;}
.h7{height:48.552572pt;}
.h1a{height:49.152000pt;}
.h11{height:49.789645pt;}
.h17{height:49.789889pt;}
.h15{height:49.790296pt;}
.h13{height:49.790377pt;}
.h19{height:49.790398pt;}
.h18{height:49.790418pt;}
.h9{height:49.790459pt;}
.h10{height:50.755208pt;}
.h4{height:50.781250pt;}
.h1b{height:55.859375pt;}
.hd{height:91.406250pt;}
.h3{height:99.734375pt;}
.h2{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:54.803065pt;}
.x7{left:96.336395pt;}
.x2{left:124.757731pt;}
.x1{left:207.874003pt;}
.x6{left:223.874003pt;}
.x8{left:224.881999pt;}
.x4{left:301.133870pt;}
.x5{left:520.758545pt;}
}




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