
    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_323b171a9b52f7f571ff577b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2f88bcb3bc0f4454b87484b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0d4bfdc49f59d4ac6aff31bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_44f761bc872186e9b33e3e7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_fdf8302b8c642ae41264d37a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_102993b1090e46dea386e72e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.258789;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_ca579e94d4591a3093ebcd5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_3037c6b4a7b151332e7cc523.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_8cf43f12c8e1919c4682c850.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987305;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_4ad42a122953e636af022064.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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_98cf6ef45a28c6969b0eafd7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b61108a10662c8b58e82f10b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bbcf849e8c8b3870f956d825.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_52cceca46d525fa04ff5044f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.fff{font-family:fff;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_779200a7fc912fffa0e456c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_59210bbb8a0d64c08683c883.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bfc43d3a74b4eb71796b49d8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aed7c81839dde419fc0c6d70.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f85f6e7fa1be3b6fd9484413.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b7589b0cccbf2544ecd4cb55.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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:ff16;src:url('chunks/assets/font_e2511de3ce63d98d3059afb0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.106934;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);}
.v3{vertical-align:-84.240000px;}
.v6{vertical-align:-27.000000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.880000px;}
.v7{vertical-align:15.120000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls18{letter-spacing:-1.512000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.672000px;}
.ls36{letter-spacing:-0.576000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.378600px;}
.ls3d{letter-spacing:-0.373800px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.166200px;}
.lsf{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.018720px;}
.ls49{letter-spacing:-0.009360px;}
.ls6{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.009360px;}
.ls3a{letter-spacing:0.014040px;}
.ls3e{letter-spacing:0.018720px;}
.ls45{letter-spacing:0.044640px;}
.ls41{letter-spacing:0.053280px;}
.lse{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.094800px;}
.ls44{letter-spacing:0.109080px;}
.ls40{letter-spacing:0.110640px;}
.ls35{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.153360px;}
.ls46{letter-spacing:0.157680px;}
.ls38{letter-spacing:0.170640px;}
.ls42{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.181200px;}
.ls1{letter-spacing:0.181440px;}
.ls1c{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.218880px;}
.ls2{letter-spacing:0.269280px;}
.ls1b{letter-spacing:0.269400px;}
.ls24{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.413280px;}
.ls23{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.792000px;}
.ls17{letter-spacing:1.440000px;}
.ls16{letter-spacing:2.880000px;}
.ls32{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.220000px;}
.ls12{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.ls28{letter-spacing:7.920000px;}
.ls27{letter-spacing:11.520000px;}
.ls1e{letter-spacing:12.240000px;}
.ls25{letter-spacing:12.420000px;}
.ls2a{letter-spacing:12.960000px;}
.ls29{letter-spacing:13.680000px;}
.ls2c{letter-spacing:14.400000px;}
.ls20{letter-spacing:16.020000px;}
.ls30{letter-spacing:25.200000px;}
.ls2d{letter-spacing:26.640000px;}
.lsd{letter-spacing:28.944000px;}
.ls4{letter-spacing:30.384000px;}
.lsc{letter-spacing:33.960000px;}
.ls13{letter-spacing:34.560000px;}
.ls3{letter-spacing:34.704000px;}
.ls5{letter-spacing:42.624000px;}
.ls21{letter-spacing:138.360000px;}
.ls37{letter-spacing:233.976000px;}
.ls34{letter-spacing:234.144000px;}
.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;}
}
.ws17{word-spacing:-72.000000px;}
.ws2b{word-spacing:-27.961920px;}
.wsd{word-spacing:-19.440000px;}
.ws19{word-spacing:-18.792000px;}
.ws12{word-spacing:-18.576000px;}
.ws13{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.568000px;}
.ws16{word-spacing:-17.280000px;}
.ws14{word-spacing:-17.208000px;}
.ws18{word-spacing:-17.064000px;}
.wsa{word-spacing:-16.488000px;}
.ws1c{word-spacing:-15.984000px;}
.ws9{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.696000px;}
.ws1d{word-spacing:-15.552000px;}
.ws1b{word-spacing:-15.264000px;}
.ws2c{word-spacing:-13.405440px;}
.ws25{word-spacing:-13.310640px;}
.ws31{word-spacing:-13.301280px;}
.wsc{word-spacing:-12.329400px;}
.wsf{word-spacing:-12.241200px;}
.ws28{word-spacing:-12.150000px;}
.ws0{word-spacing:-12.060000px;}
.ws26{word-spacing:-11.979360px;}
.ws2d{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.960640px;}
.wsb{word-spacing:-11.836200px;}
.ws21{word-spacing:-11.723400px;}
.ws20{word-spacing:-11.709360px;}
.ws1{word-spacing:-11.700000px;}
.ws1f{word-spacing:-11.690640px;}
.ws23{word-spacing:-11.543160px;}
.ws8{word-spacing:-11.388000px;}
.ws24{word-spacing:-11.335560px;}
.ws22{word-spacing:-11.330760px;}
.ws2f{word-spacing:-7.650000px;}
.ws27{word-spacing:-7.523280px;}
.ws29{word-spacing:-7.470000px;}
.ws30{word-spacing:-5.849280px;}
.ws2a{word-spacing:-5.804640px;}
.ws1e{word-spacing:-5.004000px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-2834.904000px;}
._e{margin-left:-2832.672000px;}
._b{margin-left:-2797.644000px;}
._7{margin-left:-2795.736000px;}
._2{margin-left:-2770.344000px;}
._5{margin-left:-2734.920000px;}
._4{margin-left:-2695.546560px;}
._8{margin-left:-2471.376000px;}
._13{margin-left:-2091.792000px;}
._3{margin-left:-1908.300000px;}
._c{margin-left:-1903.728000px;}
._6{margin-left:-1633.908000px;}
._1a{margin-left:-1388.136000px;}
._1c{margin-left:-1202.304000px;}
._19{margin-left:-1198.056000px;}
._1b{margin-left:-1128.720000px;}
._15{margin-left:-832.152000px;}
._11{margin-left:-672.024000px;}
._25{margin-left:-8.028000px;}
._1f{margin-left:-4.752000px;}
._2c{margin-left:-2.520000px;}
._0{margin-left:-1.224000px;}
._1{width:1.080000px;}
._16{width:2.808000px;}
._27{width:3.960000px;}
._28{width:4.980000px;}
._2a{width:6.084000px;}
._12{width:7.560000px;}
._9{width:8.856000px;}
._a{width:9.900000px;}
._f{width:11.016000px;}
._10{width:12.384000px;}
._35{width:13.392000px;}
._26{width:14.400000px;}
._29{width:15.480000px;}
._d{width:16.776000px;}
._2b{width:19.152000px;}
._2d{width:20.520000px;}
._2e{width:21.828000px;}
._2f{width:23.604000px;}
._30{width:25.176000px;}
._17{width:26.208000px;}
._18{width:27.216000px;}
._31{width:28.272000px;}
._32{width:29.940000px;}
._3b{width:31.260000px;}
._39{width:32.712000px;}
._33{width:33.744000px;}
._34{width:34.812000px;}
._23{width:36.036000px;}
._3a{width:37.152000px;}
._36{width:38.448000px;}
._37{width:39.696000px;}
._3e{width:42.528000px;}
._38{width:50.376000px;}
._3d{width:60.624000px;}
._3c{width:61.704000px;}
._21{width:103.860000px;}
._20{width:147.708000px;}
._24{width:176.376000px;}
._22{width:191.844000px;}
._1e{width:193.692000px;}
._1d{width:195.228000px;}
.fc4{color:rgb(0,115,152);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(233,113,28);}
.fc1{color:transparent;}
.fc6{color:rgb(80,80,80);}
.fc3{color:rgb(115,115,115);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fsb{font-size:20.880000px;}
.fsa{font-size:29.880000px;}
.fs6{font-size:42.120000px;}
.fs9{font-size:47.880000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs3{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1ce{bottom:2.610000px;}
.y1d3{bottom:2.880000px;}
.y1d1{bottom:2.970000px;}
.y3{bottom:4.320000px;}
.y1b{bottom:5.520000px;}
.y1cd{bottom:16.380000px;}
.y1d6{bottom:16.740000px;}
.y2{bottom:52.920000px;}
.y1{bottom:57.420000px;}
.y1bb{bottom:112.500000px;}
.y8b{bottom:116.856000px;}
.y16d{bottom:117.936000px;}
.y21e{bottom:117.990000px;}
.y77{bottom:118.116000px;}
.y12d{bottom:120.636000px;}
.y99{bottom:120.996000px;}
.ye8{bottom:121.716000px;}
.y1f7{bottom:122.670000px;}
.y11d{bottom:122.796000px;}
.y18c{bottom:123.876000px;}
.y1ba{bottom:126.360000px;}
.y147{bottom:126.756000px;}
.y111{bottom:129.096000px;}
.y21d{bottom:131.760000px;}
.yfb{bottom:133.056000px;}
.y62{bottom:133.776000px;}
.y103{bottom:134.136000px;}
.y1f6{bottom:136.350000px;}
.ye6{bottom:136.656000px;}
.y1ca{bottom:137.340000px;}
.y16c{bottom:138.996000px;}
.y1b9{bottom:140.220000px;}
.y1a6{bottom:144.936000px;}
.y21c{bottom:145.530000px;}
.ybc{bottom:147.996000px;}
.y4a{bottom:148.176000px;}
.y19{bottom:149.616000px;}
.y1f5{bottom:150.210000px;}
.y1b8{bottom:154.080000px;}
.y8a{bottom:158.250000px;}
.y21b{bottom:159.300000px;}
.y76{bottom:159.510000px;}
.y18b{bottom:159.870000px;}
.y12c{bottom:162.030000px;}
.y98{bottom:162.390000px;}
.yde{bottom:163.110000px;}
.y1f4{bottom:163.980000px;}
.y11c{bottom:164.190000px;}
.y1a5{bottom:166.170000px;}
.y122{bottom:166.710000px;}
.y1b7{bottom:168.030000px;}
.y146{bottom:169.050000px;}
.y110{bottom:170.490000px;}
.y21a{bottom:173.070000px;}
.yfa{bottom:174.450000px;}
.y16b{bottom:174.810000px;}
.y61{bottom:175.170000px;}
.y102{bottom:175.530000px;}
.y1c9{bottom:177.120000px;}
.y1f3{bottom:177.750000px;}
.ye5{bottom:178.050000px;}
.y18a{bottom:181.110000px;}
.y219{bottom:186.930000px;}
.y1a4{bottom:187.230000px;}
.ybb{bottom:189.390000px;}
.y49{bottom:189.570000px;}
.y145{bottom:190.290000px;}
.ya8{bottom:191.010000px;}
.y1f2{bottom:191.520000px;}
.y1b6{bottom:195.840000px;}
.y16a{bottom:196.230000px;}
.y89{bottom:199.650000px;}
.y75{bottom:200.910000px;}
.y189{bottom:202.350000px;}
.y12b{bottom:203.430000px;}
.y97{bottom:203.790000px;}
.ydd{bottom:204.510000px;}
.y11b{bottom:205.590000px;}
.y18{bottom:205.950000px;}
.y121{bottom:208.110000px;}
.y1f1{bottom:208.260000px;}
.y1a3{bottom:208.290000px;}
.y10f{bottom:213.690000px;}
.y218{bottom:216.360000px;}
.y60{bottom:216.570000px;}
.y1c8{bottom:216.810000px;}
.y101{bottom:216.930000px;}
.y169{bottom:217.290000px;}
.ye4{bottom:219.450000px;}
.y188{bottom:223.410000px;}
.y144{bottom:226.110000px;}
.yf9{bottom:230.430000px;}
.yba{bottom:230.790000px;}
.y48{bottom:230.970000px;}
.ya7{bottom:232.410000px;}
.y1f0{bottom:233.310000px;}
.yf4{bottom:234.390000px;}
.y217{bottom:235.920000px;}
.y168{bottom:238.350000px;}
.y88{bottom:240.690000px;}
.y74{bottom:242.310000px;}
.y1a2{bottom:244.290000px;}
.y12a{bottom:244.830000px;}
.y96{bottom:245.190000px;}
.ydc{bottom:245.910000px;}
.y11a{bottom:246.810000px;}
.y143{bottom:247.350000px;}
.y120{bottom:249.510000px;}
.y1c7{bottom:256.620000px;}
.y10e{bottom:257.610000px;}
.y5f{bottom:257.970000px;}
.y100{bottom:258.330000px;}
.y1ef{bottom:258.420000px;}
.y187{bottom:259.230000px;}
.ye3{bottom:260.850000px;}
.y216{bottom:260.940000px;}
.y17{bottom:262.110000px;}
.y1a1{bottom:265.530000px;}
.y142{bottom:268.590000px;}
.yb9{bottom:272.190000px;}
.y47{bottom:272.370000px;}
.ya6{bottom:273.810000px;}
.y167{bottom:274.350000px;}
.yf3{bottom:275.790000px;}
.y186{bottom:280.650000px;}
.y87{bottom:282.090000px;}
.y1ee{bottom:283.440000px;}
.y73{bottom:283.710000px;}
.y215{bottom:285.960000px;}
.y129{bottom:286.230000px;}
.y95{bottom:286.590000px;}
.ydb{bottom:287.310000px;}
.y119{bottom:288.210000px;}
.y141{bottom:289.650000px;}
.y11f{bottom:290.910000px;}
.y166{bottom:295.590000px;}
.y1c6{bottom:296.400000px;}
.y5e{bottom:299.370000px;}
.y10d{bottom:299.730000px;}
.yff{bottom:301.530000px;}
.y185{bottom:301.710000px;}
.ye2{bottom:302.250000px;}
.y1a0{bottom:307.830000px;}
.y1ed{bottom:308.460000px;}
.y140{bottom:310.710000px;}
.y214{bottom:311.070000px;}
.yb8{bottom:313.590000px;}
.y46{bottom:313.770000px;}
.ya5{bottom:315.210000px;}
.y165{bottom:316.650000px;}
.yf2{bottom:317.190000px;}
.y16{bottom:318.810000px;}
.y184{bottom:322.770000px;}
.y72{bottom:325.110000px;}
.y86{bottom:326.010000px;}
.y128{bottom:327.630000px;}
.y94{bottom:327.990000px;}
.yda{bottom:328.710000px;}
.y118{bottom:331.590000px;}
.y11e{bottom:332.310000px;}
.y1c5{bottom:336.090000px;}
.y5d{bottom:340.815000px;}
.y10c{bottom:341.175000px;}
.ye1{bottom:343.695000px;}
.y1ec{bottom:344.820000px;}
.y13f{bottom:346.755000px;}
.y164{bottom:352.695000px;}
.yca{bottom:355.035000px;}
.y45{bottom:355.215000px;}
.ya4{bottom:356.655000px;}
.yf1{bottom:358.635000px;}
.y183{bottom:358.815000px;}
.y15{bottom:360.255000px;}
.y19f{bottom:364.935000px;}
.y71{bottom:366.555000px;}
.y85{bottom:367.455000px;}
.y13e{bottom:367.995000px;}
.y127{bottom:369.075000px;}
.y93{bottom:369.435000px;}
.yb7{bottom:369.795000px;}
.y1eb{bottom:369.840000px;}
.yd9{bottom:370.155000px;}
.y213{bottom:372.360000px;}
.y117{bottom:373.755000px;}
.y163{bottom:373.935000px;}
.y1c4{bottom:376.680000px;}
.y182{bottom:380.055000px;}
.y5c{bottom:382.215000px;}
.y10b{bottom:382.575000px;}
.ye0{bottom:385.095000px;}
.y19e{bottom:386.175000px;}
.y13d{bottom:389.055000px;}
.y1c3{bottom:390.540000px;}
.y1ea{bottom:394.860000px;}
.y162{bottom:394.995000px;}
.yc9{bottom:396.435000px;}
.y44{bottom:396.615000px;}
.y212{bottom:397.470000px;}
.ya3{bottom:398.055000px;}
.yf0{bottom:400.035000px;}
.y181{bottom:401.115000px;}
.y14{bottom:401.655000px;}
.y1c2{bottom:404.400000px;}
.y70{bottom:407.955000px;}
.y84{bottom:408.855000px;}
.y92{bottom:410.835000px;}
.yd8{bottom:411.555000px;}
.y116{bottom:415.155000px;}
.y1c1{bottom:418.260000px;}
.y1e9{bottom:419.970000px;}
.y19d{bottom:421.995000px;}
.y180{bottom:422.175000px;}
.y211{bottom:422.490000px;}
.y5b{bottom:423.615000px;}
.y10a{bottom:423.975000px;}
.y126{bottom:425.055000px;}
.yb6{bottom:426.495000px;}
.y161{bottom:430.995000px;}
.y1c0{bottom:432.210000px;}
.yc8{bottom:437.835000px;}
.y43{bottom:438.015000px;}
.ya2{bottom:439.455000px;}
.yef{bottom:441.435000px;}
.y19c{bottom:443.415000px;}
.y1e8{bottom:444.990000px;}
.y1bf{bottom:446.070000px;}
.y13c{bottom:446.295000px;}
.y210{bottom:447.510000px;}
.y6f{bottom:449.355000px;}
.y83{bottom:450.255000px;}
.y91{bottom:452.235000px;}
.yd7{bottom:452.955000px;}
.y115{bottom:456.555000px;}
.y13{bottom:457.995000px;}
.y17f{bottom:458.175000px;}
.y125{bottom:464.115000px;}
.y19b{bottom:464.475000px;}
.y5a{bottom:465.015000px;}
.y109{bottom:465.375000px;}
.y13b{bottom:467.355000px;}
.yb5{bottom:467.895000px;}
.y1e7{bottom:470.010000px;}
.y20f{bottom:472.530000px;}
.y160{bottom:473.295000px;}
.y1be{bottom:478.290000px;}
.yc7{bottom:479.235000px;}
.y42{bottom:479.415000px;}
.ya1{bottom:480.855000px;}
.yee{bottom:482.835000px;}
.y19a{bottom:485.535000px;}
.y13a{bottom:488.415000px;}
.y6e{bottom:490.755000px;}
.y82{bottom:491.655000px;}
.y90{bottom:493.635000px;}
.yd6{bottom:494.355000px;}
.y1e6{bottom:495.030000px;}
.y20e{bottom:497.640000px;}
.y114{bottom:497.955000px;}
.y12{bottom:499.395000px;}
.y17e{bottom:500.475000px;}
.y108{bottom:506.775000px;}
.y59{bottom:508.035000px;}
.yb4{bottom:509.295000px;}
.y139{bottom:509.655000px;}
.y1bd{bottom:512.040000px;}
.y15f{bottom:515.595000px;}
.y1e5{bottom:520.140000px;}
.yc6{bottom:520.635000px;}
.y41{bottom:520.815000px;}
.y199{bottom:521.535000px;}
.y17d{bottom:521.715000px;}
.ya0{bottom:522.255000px;}
.y20d{bottom:522.660000px;}
.yed{bottom:524.235000px;}
.y33{bottom:529.455000px;}
.y6d{bottom:532.155000px;}
.y81{bottom:533.055000px;}
.y8f{bottom:535.035000px;}
.yd5{bottom:535.755000px;}
.y113{bottom:539.355000px;}
.y198{bottom:542.775000px;}
.y1e4{bottom:545.160000px;}
.y138{bottom:545.475000px;}
.y20c{bottom:547.680000px;}
.y107{bottom:548.175000px;}
.yb3{bottom:550.695000px;}
.y15e{bottom:551.415000px;}
.y11{bottom:555.915000px;}
.y17c{bottom:557.535000px;}
.yc5{bottom:562.035000px;}
.y9f{bottom:563.655000px;}
.y197{bottom:563.835000px;}
.y58{bottom:564.735000px;}
.yec{bottom:565.635000px;}
.y137{bottom:566.715000px;}
.y1e3{bottom:570.180000px;}
.y32{bottom:570.855000px;}
.y15d{bottom:572.655000px;}
.y20b{bottom:572.790000px;}
.y6c{bottom:573.555000px;}
.y80{bottom:574.455000px;}
.y8e{bottom:576.435000px;}
.yd4{bottom:576.975000px;}
.y17b{bottom:578.775000px;}
.y40{bottom:580.215000px;}
.y112{bottom:580.755000px;}
.y136{bottom:587.955000px;}
.y106{bottom:589.575000px;}
.yb2{bottom:592.095000px;}
.y15c{bottom:593.895000px;}
.y1e2{bottom:595.290000px;}
.y10{bottom:597.315000px;}
.y20a{bottom:597.810000px;}
.y196{bottom:599.835000px;}
.y17a{bottom:600.015000px;}
.yc4{bottom:603.435000px;}
.y9e{bottom:604.905000px;}
.yeb{bottom:607.065000px;}
.y135{bottom:609.045000px;}
.y31{bottom:609.585000px;}
.y24{bottom:611.205000px;}
.y6b{bottom:614.985000px;}
.y7f{bottom:617.505000px;}
.y8d{bottom:617.865000px;}
.yd3{bottom:618.405000px;}
.y1e1{bottom:620.310000px;}
.y179{bottom:621.105000px;}
.y3f{bottom:621.645000px;}
.y57{bottom:622.005000px;}
.y209{bottom:622.830000px;}
.y105{bottom:631.005000px;}
.y124{bottom:633.165000px;}
.yb1{bottom:633.525000px;}
.y15b{bottom:636.045000px;}
.y178{bottom:642.165000px;}
.yc3{bottom:644.865000px;}
.y134{bottom:645.045000px;}
.y9d{bottom:646.305000px;}
.y208{bottom:647.970000px;}
.yea{bottom:648.465000px;}
.yf{bottom:653.685000px;}
.y6a{bottom:656.385000px;}
.y1e0{bottom:656.610000px;}
.y15a{bottom:657.105000px;}
.yd2{bottom:659.805000px;}
.y8c{bottom:661.065000px;}
.y7e{bottom:661.425000px;}
.y3e{bottom:663.045000px;}
.y177{bottom:663.225000px;}
.y56{bottom:663.405000px;}
.y30{bottom:666.105000px;}
.y133{bottom:666.285000px;}
.y23{bottom:667.725000px;}
.y104{bottom:674.205000px;}
.yb0{bottom:674.925000px;}
.y195{bottom:678.165000px;}
.y1df{bottom:681.720000px;}
.y207{bottom:684.240000px;}
.yc2{bottom:686.265000px;}
.y9c{bottom:687.705000px;}
.y123{bottom:689.505000px;}
.yfc{bottom:689.865000px;}
.y159{bottom:693.105000px;}
.ye{bottom:695.085000px;}
.y69{bottom:697.785000px;}
.y176{bottom:699.225000px;}
.y194{bottom:699.405000px;}
.yd1{bottom:701.205000px;}
.y132{bottom:702.105000px;}
.y7d{bottom:702.825000px;}
.y3d{bottom:704.445000px;}
.y55{bottom:704.805000px;}
.y1de{bottom:706.740000px;}
.y2f{bottom:707.505000px;}
.y206{bottom:709.260000px;}
.y158{bottom:714.345000px;}
.yaf{bottom:716.325000px;}
.y175{bottom:720.465000px;}
.y131{bottom:723.525000px;}
.y22{bottom:724.065000px;}
.yc1{bottom:727.665000px;}
.y9b{bottom:729.105000px;}
.yfe{bottom:731.265000px;}
.y1dd{bottom:731.760000px;}
.y205{bottom:734.370000px;}
.y157{bottom:735.405000px;}
.yd{bottom:736.485000px;}
.y68{bottom:739.185000px;}
.y174{bottom:741.525000px;}
.yd0{bottom:742.605000px;}
.y7c{bottom:744.225000px;}
.y130{bottom:744.585000px;}
.y3c{bottom:745.845000px;}
.y54{bottom:746.205000px;}
.y2e{bottom:748.905000px;}
.y156{bottom:756.645000px;}
.y1dc{bottom:756.870000px;}
.yae{bottom:757.725000px;}
.y204{bottom:759.390000px;}
.yc0{bottom:769.065000px;}
.y9a{bottom:772.305000px;}
.yf8{bottom:772.665000px;}
.y173{bottom:777.525000px;}
.y155{bottom:777.705000px;}
.yc{bottom:777.885000px;}
.y21{bottom:780.405000px;}
.y67{bottom:780.585000px;}
.y1db{bottom:781.890000px;}
.y12f{bottom:783.465000px;}
.ycf{bottom:784.005000px;}
.y203{bottom:784.410000px;}
.y7b{bottom:785.625000px;}
.y3b{bottom:787.245000px;}
.y53{bottom:787.605000px;}
.y2d{bottom:790.305000px;}
.y172{bottom:798.765000px;}
.yad{bottom:799.125000px;}
.y1da{bottom:806.910000px;}
.y202{bottom:809.520000px;}
.ye9{bottom:813.705000px;}
.yf7{bottom:814.065000px;}
.yb{bottom:819.285000px;}
.y193{bottom:819.825000px;}
.y66{bottom:821.985000px;}
.ybf{bottom:825.045000px;}
.yce{bottom:825.405000px;}
.y7a{bottom:827.025000px;}
.y3a{bottom:828.645000px;}
.y52{bottom:829.005000px;}
.y2c{bottom:831.705000px;}
.y201{bottom:834.540000px;}
.y171{bottom:834.765000px;}
.y154{bottom:834.945000px;}
.y1b5{bottom:836.070000px;}
.y20{bottom:836.925000px;}
.yac{bottom:840.525000px;}
.y192{bottom:841.065000px;}
.y1a8{bottom:841.785000px;}
.y1d9{bottom:843.270000px;}
.yf6{bottom:855.465000px;}
.y153{bottom:856.005000px;}
.y65{bottom:863.745000px;}
.y1b4{bottom:864.960000px;}
.y1d8{bottom:868.290000px;}
.y79{bottom:868.425000px;}
.y39{bottom:870.045000px;}
.y51{bottom:870.405000px;}
.y200{bottom:870.810000px;}
.y2b{bottom:873.150000px;}
.ya{bottom:875.670000px;}
.y191{bottom:876.930000px;}
.y152{bottom:877.110000px;}
.ycd{bottom:881.610000px;}
.yab{bottom:881.970000px;}
.y1f{bottom:893.310000px;}
.y1b3{bottom:893.850000px;}
.y1ff{bottom:895.920000px;}
.y12e{bottom:896.550000px;}
.yf5{bottom:896.910000px;}
.y151{bottom:898.170000px;}
.y64{bottom:907.350000px;}
.y78{bottom:909.870000px;}
.y38{bottom:911.490000px;}
.y50{bottom:911.850000px;}
.y2a{bottom:914.550000px;}
.y9{bottom:917.070000px;}
.y1d7{bottom:918.420000px;}
.y190{bottom:919.410000px;}
.y1fe{bottom:920.940000px;}
.y1b2{bottom:922.740000px;}
.yaa{bottom:923.370000px;}
.y150{bottom:934.170000px;}
.ye7{bottom:937.950000px;}
.ycc{bottom:938.310000px;}
.y18f{bottom:940.470000px;}
.y1d5{bottom:943.440000px;}
.y1fd{bottom:945.960000px;}
.y1e{bottom:949.650000px;}
.y63{bottom:950.910000px;}
.y1b1{bottom:951.630000px;}
.y37{bottom:952.890000px;}
.y4f{bottom:953.250000px;}
.y1a7{bottom:955.230000px;}
.y14f{bottom:955.410000px;}
.y29{bottom:955.950000px;}
.ybe{bottom:964.770000px;}
.y1fc{bottom:971.070000px;}
.y8{bottom:973.410000px;}
.y18e{bottom:976.290000px;}
.y14e{bottom:976.470000px;}
.ya9{bottom:979.350000px;}
.ycb{bottom:979.710000px;}
.y1b0{bottom:980.430000px;}
.y1d4{bottom:982.320000px;}
.y36{bottom:994.290000px;}
.y4e{bottom:994.650000px;}
.y1fb{bottom:996.090000px;}
.y28{bottom:997.350000px;}
.y14d{bottom:997.710000px;}
.y1d{bottom:1006.170000px;}
.y1d2{bottom:1007.340000px;}
.y1af{bottom:1009.320000px;}
.y7{bottom:1014.810000px;}
.y14c{bottom:1018.770000px;}
.ydf{bottom:1020.750000px;}
.yfd{bottom:1021.110000px;}
.y1d0{bottom:1032.360000px;}
.y35{bottom:1035.690000px;}
.y4d{bottom:1036.050000px;}
.y1ae{bottom:1038.210000px;}
.y27{bottom:1038.750000px;}
.y170{bottom:1039.830000px;}
.y1fa{bottom:1046.220000px;}
.y14b{bottom:1054.770000px;}
.y6{bottom:1056.210000px;}
.y1cf{bottom:1057.470000px;}
.y16f{bottom:1060.890000px;}
.y1c{bottom:1062.150000px;}
.ybd{bottom:1062.510000px;}
.y1ad{bottom:1067.130000px;}
.y1f9{bottom:1071.270000px;}
.y18d{bottom:1075.830000px;}
.y14a{bottom:1076.010000px;}
.y34{bottom:1077.090000px;}
.y4c{bottom:1077.450000px;}
.y26{bottom:1080.150000px;}
.y1ac{bottom:1080.990000px;}
.y1cc{bottom:1082.520000px;}
.y5{bottom:1094.550000px;}
.y1ab{bottom:1094.850000px;}
.y1f8{bottom:1096.290000px;}
.y16e{bottom:1096.890000px;}
.y149{bottom:1097.070000px;}
.y1aa{bottom:1108.710000px;}
.y148{bottom:1118.130000px;}
.y25{bottom:1118.310000px;}
.y4{bottom:1118.490000px;}
.y4b{bottom:1118.850000px;}
.y1cb{bottom:1134.630000px;}
.y1a9{bottom:1140.930000px;}
.y1bc{bottom:1142.730000px;}
.y1a{bottom:1193.959991px;}
.h17{height:13.770000px;}
.h14{height:13.792500px;}
.h15{height:13.860000px;}
.h3{height:20.736000px;}
.h7{height:26.400150px;}
.h12{height:27.540000px;}
.h19{height:27.630000px;}
.hf{height:43.929844px;}
.he{height:44.938652px;}
.h16{height:46.991602px;}
.h13{height:48.254063px;}
.h11{height:49.937344px;}
.h1a{height:50.190996px;}
.h18{height:50.205586px;}
.hd{height:62.648438px;}
.h10{height:62.703281px;}
.hb{height:64.546875px;}
.h2{height:70.664062px;}
.hc{height:71.613281px;}
.h4{height:72.562500px;}
.h6{height:74.004654px;}
.h5{height:74.681367px;}
.ha{height:74.704922px;}
.h9{height:74.953125px;}
.h8{height:90.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w6{width:18.000000px;}
.wd{width:29.272500px;}
.w14{width:29.700000px;}
.w15{width:34.672500px;}
.w7{width:79.104000px;}
.wf{width:81.354000px;}
.w12{width:95.310000px;}
.w11{width:98.490000px;}
.w13{width:103.710000px;}
.w10{width:104.220000px;}
.wc{width:104.580000px;}
.w8{width:119.430000px;}
.w9{width:131.430000px;}
.wb{width:134.400000px;}
.wa{width:139.860000px;}
.w3{width:559.981500px;}
.we{width:738.084000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:5.670000px;}
.x13{left:52.379973px;}
.xd{left:61.379973px;}
.x14{left:73.619973px;}
.xe{left:79.379987px;}
.x10{left:82.619973px;}
.x9{left:85.039673px;}
.x11{left:100.655987px;}
.xb{left:106.416000px;}
.x1c{left:121.980000px;}
.xf{left:127.655987px;}
.xa{left:133.415987px;}
.x3{left:134.496000px;}
.x6{left:138.996000px;}
.x17{left:142.415987px;}
.x12{left:148.895987px;}
.x5{left:153.390000px;}
.x1{left:154.650000px;}
.xc{left:160.409987px;}
.x18{left:163.649987px;}
.x16{left:175.889987px;}
.x8{left:181.650000px;}
.x1e{left:201.090000px;}
.x24{left:203.340000px;}
.x25{left:307.560000px;}
.x1f{left:320.520000px;}
.x4{left:349.815000px;}
.x26{left:406.050000px;}
.x7{left:418.575000px;}
.x20{left:451.950000px;}
.x19{left:472.470000px;}
.x27{left:501.360000px;}
.x21{left:591.810000px;}
.x28{left:596.670000px;}
.x1a{left:620.460000px;}
.x1b{left:623.070000px;}
.x29{left:700.380000px;}
.x22{left:726.210000px;}
.x15{left:768.750000px;}
.x2{left:777.750000px;}
.x2a{left:795.690000px;}
.x2b{left:825.390000px;}
.x23{left:830.790000px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v6{vertical-align:-24.000000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.560000pt;}
.v7{vertical-align:13.440000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls18{letter-spacing:-1.344000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.597333pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.336533pt;}
.ls3d{letter-spacing:-0.332267pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.147733pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.016640pt;}
.ls49{letter-spacing:-0.008320pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.008320pt;}
.ls3a{letter-spacing:0.012480pt;}
.ls3e{letter-spacing:0.016640pt;}
.ls45{letter-spacing:0.039680pt;}
.ls41{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.084267pt;}
.ls44{letter-spacing:0.096960pt;}
.ls40{letter-spacing:0.098347pt;}
.ls35{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.136320pt;}
.ls46{letter-spacing:0.140160pt;}
.ls38{letter-spacing:0.151680pt;}
.ls42{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls1{letter-spacing:0.161280pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.194560pt;}
.ls2{letter-spacing:0.239360pt;}
.ls1b{letter-spacing:0.239467pt;}
.ls24{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.367360pt;}
.ls23{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.704000pt;}
.ls17{letter-spacing:1.280000pt;}
.ls16{letter-spacing:2.560000pt;}
.ls32{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls12{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls28{letter-spacing:7.040000pt;}
.ls27{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:10.880000pt;}
.ls25{letter-spacing:11.040000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls29{letter-spacing:12.160000pt;}
.ls2c{letter-spacing:12.800000pt;}
.ls20{letter-spacing:14.240000pt;}
.ls30{letter-spacing:22.400000pt;}
.ls2d{letter-spacing:23.680000pt;}
.lsd{letter-spacing:25.728000pt;}
.ls4{letter-spacing:27.008000pt;}
.lsc{letter-spacing:30.186667pt;}
.ls13{letter-spacing:30.720000pt;}
.ls3{letter-spacing:30.848000pt;}
.ls5{letter-spacing:37.888000pt;}
.ls21{letter-spacing:122.986667pt;}
.ls37{letter-spacing:207.978667pt;}
.ls34{letter-spacing:208.128000pt;}
.ws17{word-spacing:-64.000000pt;}
.ws2b{word-spacing:-24.855040pt;}
.wsd{word-spacing:-17.280000pt;}
.ws19{word-spacing:-16.704000pt;}
.ws12{word-spacing:-16.512000pt;}
.ws13{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.616000pt;}
.ws16{word-spacing:-15.360000pt;}
.ws14{word-spacing:-15.296000pt;}
.ws18{word-spacing:-15.168000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws1c{word-spacing:-14.208000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws1d{word-spacing:-13.824000pt;}
.ws1b{word-spacing:-13.568000pt;}
.ws2c{word-spacing:-11.915947pt;}
.ws25{word-spacing:-11.831680pt;}
.ws31{word-spacing:-11.823360pt;}
.wsc{word-spacing:-10.959467pt;}
.wsf{word-spacing:-10.881067pt;}
.ws28{word-spacing:-10.800000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws26{word-spacing:-10.648320pt;}
.ws2d{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.631680pt;}
.wsb{word-spacing:-10.521067pt;}
.ws21{word-spacing:-10.420800pt;}
.ws20{word-spacing:-10.408320pt;}
.ws1{word-spacing:-10.400000pt;}
.ws1f{word-spacing:-10.391680pt;}
.ws23{word-spacing:-10.260587pt;}
.ws8{word-spacing:-10.122667pt;}
.ws24{word-spacing:-10.076053pt;}
.ws22{word-spacing:-10.071787pt;}
.ws2f{word-spacing:-6.800000pt;}
.ws27{word-spacing:-6.687360pt;}
.ws29{word-spacing:-6.640000pt;}
.ws30{word-spacing:-5.199360pt;}
.ws2a{word-spacing:-5.159680pt;}
.ws1e{word-spacing:-4.448000pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-2519.914667pt;}
._e{margin-left:-2517.930667pt;}
._b{margin-left:-2486.794667pt;}
._7{margin-left:-2485.098667pt;}
._2{margin-left:-2462.528000pt;}
._5{margin-left:-2431.040000pt;}
._4{margin-left:-2396.041387pt;}
._8{margin-left:-2196.778667pt;}
._13{margin-left:-1859.370667pt;}
._3{margin-left:-1696.266667pt;}
._c{margin-left:-1692.202667pt;}
._6{margin-left:-1452.362667pt;}
._1a{margin-left:-1233.898667pt;}
._1c{margin-left:-1068.714667pt;}
._19{margin-left:-1064.938667pt;}
._1b{margin-left:-1003.306667pt;}
._15{margin-left:-739.690667pt;}
._11{margin-left:-597.354667pt;}
._25{margin-left:-7.136000pt;}
._1f{margin-left:-4.224000pt;}
._2c{margin-left:-2.240000pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.960000pt;}
._16{width:2.496000pt;}
._27{width:3.520000pt;}
._28{width:4.426667pt;}
._2a{width:5.408000pt;}
._12{width:6.720000pt;}
._9{width:7.872000pt;}
._a{width:8.800000pt;}
._f{width:9.792000pt;}
._10{width:11.008000pt;}
._35{width:11.904000pt;}
._26{width:12.800000pt;}
._29{width:13.760000pt;}
._d{width:14.912000pt;}
._2b{width:17.024000pt;}
._2d{width:18.240000pt;}
._2e{width:19.402667pt;}
._2f{width:20.981333pt;}
._30{width:22.378667pt;}
._17{width:23.296000pt;}
._18{width:24.192000pt;}
._31{width:25.130667pt;}
._32{width:26.613333pt;}
._3b{width:27.786667pt;}
._39{width:29.077333pt;}
._33{width:29.994667pt;}
._34{width:30.944000pt;}
._23{width:32.032000pt;}
._3a{width:33.024000pt;}
._36{width:34.176000pt;}
._37{width:35.285333pt;}
._3e{width:37.802667pt;}
._38{width:44.778667pt;}
._3d{width:53.888000pt;}
._3c{width:54.848000pt;}
._21{width:92.320000pt;}
._20{width:131.296000pt;}
._24{width:156.778667pt;}
._22{width:170.528000pt;}
._1e{width:172.170667pt;}
._1d{width:173.536000pt;}
.fs7{font-size:16.000000pt;}
.fsb{font-size:18.560000pt;}
.fsa{font-size:26.560000pt;}
.fs6{font-size:37.440000pt;}
.fs9{font-size:42.560000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs3{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1ce{bottom:2.320000pt;}
.y1d3{bottom:2.560000pt;}
.y1d1{bottom:2.640000pt;}
.y3{bottom:3.840000pt;}
.y1b{bottom:4.906667pt;}
.y1cd{bottom:14.560000pt;}
.y1d6{bottom:14.880000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:51.040000pt;}
.y1bb{bottom:100.000000pt;}
.y8b{bottom:103.872000pt;}
.y16d{bottom:104.832000pt;}
.y21e{bottom:104.880000pt;}
.y77{bottom:104.992000pt;}
.y12d{bottom:107.232000pt;}
.y99{bottom:107.552000pt;}
.ye8{bottom:108.192000pt;}
.y1f7{bottom:109.040000pt;}
.y11d{bottom:109.152000pt;}
.y18c{bottom:110.112000pt;}
.y1ba{bottom:112.320000pt;}
.y147{bottom:112.672000pt;}
.y111{bottom:114.752000pt;}
.y21d{bottom:117.120000pt;}
.yfb{bottom:118.272000pt;}
.y62{bottom:118.912000pt;}
.y103{bottom:119.232000pt;}
.y1f6{bottom:121.200000pt;}
.ye6{bottom:121.472000pt;}
.y1ca{bottom:122.080000pt;}
.y16c{bottom:123.552000pt;}
.y1b9{bottom:124.640000pt;}
.y1a6{bottom:128.832000pt;}
.y21c{bottom:129.360000pt;}
.ybc{bottom:131.552000pt;}
.y4a{bottom:131.712000pt;}
.y19{bottom:132.992000pt;}
.y1f5{bottom:133.520000pt;}
.y1b8{bottom:136.960000pt;}
.y8a{bottom:140.666667pt;}
.y21b{bottom:141.600000pt;}
.y76{bottom:141.786667pt;}
.y18b{bottom:142.106667pt;}
.y12c{bottom:144.026667pt;}
.y98{bottom:144.346667pt;}
.yde{bottom:144.986667pt;}
.y1f4{bottom:145.760000pt;}
.y11c{bottom:145.946667pt;}
.y1a5{bottom:147.706667pt;}
.y122{bottom:148.186667pt;}
.y1b7{bottom:149.360000pt;}
.y146{bottom:150.266667pt;}
.y110{bottom:151.546667pt;}
.y21a{bottom:153.840000pt;}
.yfa{bottom:155.066667pt;}
.y16b{bottom:155.386667pt;}
.y61{bottom:155.706667pt;}
.y102{bottom:156.026667pt;}
.y1c9{bottom:157.440000pt;}
.y1f3{bottom:158.000000pt;}
.ye5{bottom:158.266667pt;}
.y18a{bottom:160.986667pt;}
.y219{bottom:166.160000pt;}
.y1a4{bottom:166.426667pt;}
.ybb{bottom:168.346667pt;}
.y49{bottom:168.506667pt;}
.y145{bottom:169.146667pt;}
.ya8{bottom:169.786667pt;}
.y1f2{bottom:170.240000pt;}
.y1b6{bottom:174.080000pt;}
.y16a{bottom:174.426667pt;}
.y89{bottom:177.466667pt;}
.y75{bottom:178.586667pt;}
.y189{bottom:179.866667pt;}
.y12b{bottom:180.826667pt;}
.y97{bottom:181.146667pt;}
.ydd{bottom:181.786667pt;}
.y11b{bottom:182.746667pt;}
.y18{bottom:183.066667pt;}
.y121{bottom:184.986667pt;}
.y1f1{bottom:185.120000pt;}
.y1a3{bottom:185.146667pt;}
.y10f{bottom:189.946667pt;}
.y218{bottom:192.320000pt;}
.y60{bottom:192.506667pt;}
.y1c8{bottom:192.720000pt;}
.y101{bottom:192.826667pt;}
.y169{bottom:193.146667pt;}
.ye4{bottom:195.066667pt;}
.y188{bottom:198.586667pt;}
.y144{bottom:200.986667pt;}
.yf9{bottom:204.826667pt;}
.yba{bottom:205.146667pt;}
.y48{bottom:205.306667pt;}
.ya7{bottom:206.586667pt;}
.y1f0{bottom:207.386667pt;}
.yf4{bottom:208.346667pt;}
.y217{bottom:209.706667pt;}
.y168{bottom:211.866667pt;}
.y88{bottom:213.946667pt;}
.y74{bottom:215.386667pt;}
.y1a2{bottom:217.146667pt;}
.y12a{bottom:217.626667pt;}
.y96{bottom:217.946667pt;}
.ydc{bottom:218.586667pt;}
.y11a{bottom:219.386667pt;}
.y143{bottom:219.866667pt;}
.y120{bottom:221.786667pt;}
.y1c7{bottom:228.106667pt;}
.y10e{bottom:228.986667pt;}
.y5f{bottom:229.306667pt;}
.y100{bottom:229.626667pt;}
.y1ef{bottom:229.706667pt;}
.y187{bottom:230.426667pt;}
.ye3{bottom:231.866667pt;}
.y216{bottom:231.946667pt;}
.y17{bottom:232.986667pt;}
.y1a1{bottom:236.026667pt;}
.y142{bottom:238.746667pt;}
.yb9{bottom:241.946667pt;}
.y47{bottom:242.106667pt;}
.ya6{bottom:243.386667pt;}
.y167{bottom:243.866667pt;}
.yf3{bottom:245.146667pt;}
.y186{bottom:249.466667pt;}
.y87{bottom:250.746667pt;}
.y1ee{bottom:251.946667pt;}
.y73{bottom:252.186667pt;}
.y215{bottom:254.186667pt;}
.y129{bottom:254.426667pt;}
.y95{bottom:254.746667pt;}
.ydb{bottom:255.386667pt;}
.y119{bottom:256.186667pt;}
.y141{bottom:257.466667pt;}
.y11f{bottom:258.586667pt;}
.y166{bottom:262.746667pt;}
.y1c6{bottom:263.466667pt;}
.y5e{bottom:266.106667pt;}
.y10d{bottom:266.426667pt;}
.yff{bottom:268.026667pt;}
.y185{bottom:268.186667pt;}
.ye2{bottom:268.666667pt;}
.y1a0{bottom:273.626667pt;}
.y1ed{bottom:274.186667pt;}
.y140{bottom:276.186667pt;}
.y214{bottom:276.506667pt;}
.yb8{bottom:278.746667pt;}
.y46{bottom:278.906667pt;}
.ya5{bottom:280.186667pt;}
.y165{bottom:281.466667pt;}
.yf2{bottom:281.946667pt;}
.y16{bottom:283.386667pt;}
.y184{bottom:286.906667pt;}
.y72{bottom:288.986667pt;}
.y86{bottom:289.786667pt;}
.y128{bottom:291.226667pt;}
.y94{bottom:291.546667pt;}
.yda{bottom:292.186667pt;}
.y118{bottom:294.746667pt;}
.y11e{bottom:295.386667pt;}
.y1c5{bottom:298.746667pt;}
.y5d{bottom:302.946667pt;}
.y10c{bottom:303.266667pt;}
.ye1{bottom:305.506667pt;}
.y1ec{bottom:306.506667pt;}
.y13f{bottom:308.226667pt;}
.y164{bottom:313.506667pt;}
.yca{bottom:315.586667pt;}
.y45{bottom:315.746667pt;}
.ya4{bottom:317.026667pt;}
.yf1{bottom:318.786667pt;}
.y183{bottom:318.946667pt;}
.y15{bottom:320.226667pt;}
.y19f{bottom:324.386667pt;}
.y71{bottom:325.826667pt;}
.y85{bottom:326.626667pt;}
.y13e{bottom:327.106667pt;}
.y127{bottom:328.066667pt;}
.y93{bottom:328.386667pt;}
.yb7{bottom:328.706667pt;}
.y1eb{bottom:328.746667pt;}
.yd9{bottom:329.026667pt;}
.y213{bottom:330.986667pt;}
.y117{bottom:332.226667pt;}
.y163{bottom:332.386667pt;}
.y1c4{bottom:334.826667pt;}
.y182{bottom:337.826667pt;}
.y5c{bottom:339.746667pt;}
.y10b{bottom:340.066667pt;}
.ye0{bottom:342.306667pt;}
.y19e{bottom:343.266667pt;}
.y13d{bottom:345.826667pt;}
.y1c3{bottom:347.146667pt;}
.y1ea{bottom:350.986667pt;}
.y162{bottom:351.106667pt;}
.yc9{bottom:352.386667pt;}
.y44{bottom:352.546667pt;}
.y212{bottom:353.306667pt;}
.ya3{bottom:353.826667pt;}
.yf0{bottom:355.586667pt;}
.y181{bottom:356.546667pt;}
.y14{bottom:357.026667pt;}
.y1c2{bottom:359.466667pt;}
.y70{bottom:362.626667pt;}
.y84{bottom:363.426667pt;}
.y92{bottom:365.186667pt;}
.yd8{bottom:365.826667pt;}
.y116{bottom:369.026667pt;}
.y1c1{bottom:371.786667pt;}
.y1e9{bottom:373.306667pt;}
.y19d{bottom:375.106667pt;}
.y180{bottom:375.266667pt;}
.y211{bottom:375.546667pt;}
.y5b{bottom:376.546667pt;}
.y10a{bottom:376.866667pt;}
.y126{bottom:377.826667pt;}
.yb6{bottom:379.106667pt;}
.y161{bottom:383.106667pt;}
.y1c0{bottom:384.186667pt;}
.yc8{bottom:389.186667pt;}
.y43{bottom:389.346667pt;}
.ya2{bottom:390.626667pt;}
.yef{bottom:392.386667pt;}
.y19c{bottom:394.146667pt;}
.y1e8{bottom:395.546667pt;}
.y1bf{bottom:396.506667pt;}
.y13c{bottom:396.706667pt;}
.y210{bottom:397.786667pt;}
.y6f{bottom:399.426667pt;}
.y83{bottom:400.226667pt;}
.y91{bottom:401.986667pt;}
.yd7{bottom:402.626667pt;}
.y115{bottom:405.826667pt;}
.y13{bottom:407.106667pt;}
.y17f{bottom:407.266667pt;}
.y125{bottom:412.546667pt;}
.y19b{bottom:412.866667pt;}
.y5a{bottom:413.346667pt;}
.y109{bottom:413.666667pt;}
.y13b{bottom:415.426667pt;}
.yb5{bottom:415.906667pt;}
.y1e7{bottom:417.786667pt;}
.y20f{bottom:420.026667pt;}
.y160{bottom:420.706667pt;}
.y1be{bottom:425.146667pt;}
.yc7{bottom:425.986667pt;}
.y42{bottom:426.146667pt;}
.ya1{bottom:427.426667pt;}
.yee{bottom:429.186667pt;}
.y19a{bottom:431.586667pt;}
.y13a{bottom:434.146667pt;}
.y6e{bottom:436.226667pt;}
.y82{bottom:437.026667pt;}
.y90{bottom:438.786667pt;}
.yd6{bottom:439.426667pt;}
.y1e6{bottom:440.026667pt;}
.y20e{bottom:442.346667pt;}
.y114{bottom:442.626667pt;}
.y12{bottom:443.906667pt;}
.y17e{bottom:444.866667pt;}
.y108{bottom:450.466667pt;}
.y59{bottom:451.586667pt;}
.yb4{bottom:452.706667pt;}
.y139{bottom:453.026667pt;}
.y1bd{bottom:455.146667pt;}
.y15f{bottom:458.306667pt;}
.y1e5{bottom:462.346667pt;}
.yc6{bottom:462.786667pt;}
.y41{bottom:462.946667pt;}
.y199{bottom:463.586667pt;}
.y17d{bottom:463.746667pt;}
.ya0{bottom:464.226667pt;}
.y20d{bottom:464.586667pt;}
.yed{bottom:465.986667pt;}
.y33{bottom:470.626667pt;}
.y6d{bottom:473.026667pt;}
.y81{bottom:473.826667pt;}
.y8f{bottom:475.586667pt;}
.yd5{bottom:476.226667pt;}
.y113{bottom:479.426667pt;}
.y198{bottom:482.466667pt;}
.y1e4{bottom:484.586667pt;}
.y138{bottom:484.866667pt;}
.y20c{bottom:486.826667pt;}
.y107{bottom:487.266667pt;}
.yb3{bottom:489.506667pt;}
.y15e{bottom:490.146667pt;}
.y11{bottom:494.146667pt;}
.y17c{bottom:495.586667pt;}
.yc5{bottom:499.586667pt;}
.y9f{bottom:501.026667pt;}
.y197{bottom:501.186667pt;}
.y58{bottom:501.986667pt;}
.yec{bottom:502.786667pt;}
.y137{bottom:503.746667pt;}
.y1e3{bottom:506.826667pt;}
.y32{bottom:507.426667pt;}
.y15d{bottom:509.026667pt;}
.y20b{bottom:509.146667pt;}
.y6c{bottom:509.826667pt;}
.y80{bottom:510.626667pt;}
.y8e{bottom:512.386667pt;}
.yd4{bottom:512.866667pt;}
.y17b{bottom:514.466667pt;}
.y40{bottom:515.746667pt;}
.y112{bottom:516.226667pt;}
.y136{bottom:522.626667pt;}
.y106{bottom:524.066667pt;}
.yb2{bottom:526.306667pt;}
.y15c{bottom:527.906667pt;}
.y1e2{bottom:529.146667pt;}
.y10{bottom:530.946667pt;}
.y20a{bottom:531.386667pt;}
.y196{bottom:533.186667pt;}
.y17a{bottom:533.346667pt;}
.yc4{bottom:536.386667pt;}
.y9e{bottom:537.693333pt;}
.yeb{bottom:539.613333pt;}
.y135{bottom:541.373333pt;}
.y31{bottom:541.853333pt;}
.y24{bottom:543.293333pt;}
.y6b{bottom:546.653333pt;}
.y7f{bottom:548.893333pt;}
.y8d{bottom:549.213333pt;}
.yd3{bottom:549.693333pt;}
.y1e1{bottom:551.386667pt;}
.y179{bottom:552.093333pt;}
.y3f{bottom:552.573333pt;}
.y57{bottom:552.893333pt;}
.y209{bottom:553.626667pt;}
.y105{bottom:560.893333pt;}
.y124{bottom:562.813333pt;}
.yb1{bottom:563.133333pt;}
.y15b{bottom:565.373333pt;}
.y178{bottom:570.813333pt;}
.yc3{bottom:573.213333pt;}
.y134{bottom:573.373333pt;}
.y9d{bottom:574.493333pt;}
.y208{bottom:575.973333pt;}
.yea{bottom:576.413333pt;}
.yf{bottom:581.053333pt;}
.y6a{bottom:583.453333pt;}
.y1e0{bottom:583.653333pt;}
.y15a{bottom:584.093333pt;}
.yd2{bottom:586.493333pt;}
.y8c{bottom:587.613333pt;}
.y7e{bottom:587.933333pt;}
.y3e{bottom:589.373333pt;}
.y177{bottom:589.533333pt;}
.y56{bottom:589.693333pt;}
.y30{bottom:592.093333pt;}
.y133{bottom:592.253333pt;}
.y23{bottom:593.533333pt;}
.y104{bottom:599.293333pt;}
.yb0{bottom:599.933333pt;}
.y195{bottom:602.813333pt;}
.y1df{bottom:605.973333pt;}
.y207{bottom:608.213333pt;}
.yc2{bottom:610.013333pt;}
.y9c{bottom:611.293333pt;}
.y123{bottom:612.893333pt;}
.yfc{bottom:613.213333pt;}
.y159{bottom:616.093333pt;}
.ye{bottom:617.853333pt;}
.y69{bottom:620.253333pt;}
.y176{bottom:621.533333pt;}
.y194{bottom:621.693333pt;}
.yd1{bottom:623.293333pt;}
.y132{bottom:624.093333pt;}
.y7d{bottom:624.733333pt;}
.y3d{bottom:626.173333pt;}
.y55{bottom:626.493333pt;}
.y1de{bottom:628.213333pt;}
.y2f{bottom:628.893333pt;}
.y206{bottom:630.453333pt;}
.y158{bottom:634.973333pt;}
.yaf{bottom:636.733333pt;}
.y175{bottom:640.413333pt;}
.y131{bottom:643.133333pt;}
.y22{bottom:643.613333pt;}
.yc1{bottom:646.813333pt;}
.y9b{bottom:648.093333pt;}
.yfe{bottom:650.013333pt;}
.y1dd{bottom:650.453333pt;}
.y205{bottom:652.773333pt;}
.y157{bottom:653.693333pt;}
.yd{bottom:654.653333pt;}
.y68{bottom:657.053333pt;}
.y174{bottom:659.133333pt;}
.yd0{bottom:660.093333pt;}
.y7c{bottom:661.533333pt;}
.y130{bottom:661.853333pt;}
.y3c{bottom:662.973333pt;}
.y54{bottom:663.293333pt;}
.y2e{bottom:665.693333pt;}
.y156{bottom:672.573333pt;}
.y1dc{bottom:672.773333pt;}
.yae{bottom:673.533333pt;}
.y204{bottom:675.013333pt;}
.yc0{bottom:683.613333pt;}
.y9a{bottom:686.493333pt;}
.yf8{bottom:686.813333pt;}
.y173{bottom:691.133333pt;}
.y155{bottom:691.293333pt;}
.yc{bottom:691.453333pt;}
.y21{bottom:693.693333pt;}
.y67{bottom:693.853333pt;}
.y1db{bottom:695.013333pt;}
.y12f{bottom:696.413333pt;}
.ycf{bottom:696.893333pt;}
.y203{bottom:697.253333pt;}
.y7b{bottom:698.333333pt;}
.y3b{bottom:699.773333pt;}
.y53{bottom:700.093333pt;}
.y2d{bottom:702.493333pt;}
.y172{bottom:710.013333pt;}
.yad{bottom:710.333333pt;}
.y1da{bottom:717.253333pt;}
.y202{bottom:719.573333pt;}
.ye9{bottom:723.293333pt;}
.yf7{bottom:723.613333pt;}
.yb{bottom:728.253333pt;}
.y193{bottom:728.733333pt;}
.y66{bottom:730.653333pt;}
.ybf{bottom:733.373333pt;}
.yce{bottom:733.693333pt;}
.y7a{bottom:735.133333pt;}
.y3a{bottom:736.573333pt;}
.y52{bottom:736.893333pt;}
.y2c{bottom:739.293333pt;}
.y201{bottom:741.813333pt;}
.y171{bottom:742.013333pt;}
.y154{bottom:742.173333pt;}
.y1b5{bottom:743.173333pt;}
.y20{bottom:743.933333pt;}
.yac{bottom:747.133333pt;}
.y192{bottom:747.613333pt;}
.y1a8{bottom:748.253333pt;}
.y1d9{bottom:749.573333pt;}
.yf6{bottom:760.413333pt;}
.y153{bottom:760.893333pt;}
.y65{bottom:767.773333pt;}
.y1b4{bottom:768.853333pt;}
.y1d8{bottom:771.813333pt;}
.y79{bottom:771.933333pt;}
.y39{bottom:773.373333pt;}
.y51{bottom:773.693333pt;}
.y200{bottom:774.053333pt;}
.y2b{bottom:776.133333pt;}
.ya{bottom:778.373333pt;}
.y191{bottom:779.493333pt;}
.y152{bottom:779.653333pt;}
.ycd{bottom:783.653333pt;}
.yab{bottom:783.973333pt;}
.y1f{bottom:794.053333pt;}
.y1b3{bottom:794.533333pt;}
.y1ff{bottom:796.373333pt;}
.y12e{bottom:796.933333pt;}
.yf5{bottom:797.253333pt;}
.y151{bottom:798.373333pt;}
.y64{bottom:806.533333pt;}
.y78{bottom:808.773333pt;}
.y38{bottom:810.213333pt;}
.y50{bottom:810.533333pt;}
.y2a{bottom:812.933333pt;}
.y9{bottom:815.173333pt;}
.y1d7{bottom:816.373333pt;}
.y190{bottom:817.253333pt;}
.y1fe{bottom:818.613333pt;}
.y1b2{bottom:820.213333pt;}
.yaa{bottom:820.773333pt;}
.y150{bottom:830.373333pt;}
.ye7{bottom:833.733333pt;}
.ycc{bottom:834.053333pt;}
.y18f{bottom:835.973333pt;}
.y1d5{bottom:838.613333pt;}
.y1fd{bottom:840.853333pt;}
.y1e{bottom:844.133333pt;}
.y63{bottom:845.253333pt;}
.y1b1{bottom:845.893333pt;}
.y37{bottom:847.013333pt;}
.y4f{bottom:847.333333pt;}
.y1a7{bottom:849.093333pt;}
.y14f{bottom:849.253333pt;}
.y29{bottom:849.733333pt;}
.ybe{bottom:857.573333pt;}
.y1fc{bottom:863.173333pt;}
.y8{bottom:865.253333pt;}
.y18e{bottom:867.813333pt;}
.y14e{bottom:867.973333pt;}
.ya9{bottom:870.533333pt;}
.ycb{bottom:870.853333pt;}
.y1b0{bottom:871.493333pt;}
.y1d4{bottom:873.173333pt;}
.y36{bottom:883.813333pt;}
.y4e{bottom:884.133333pt;}
.y1fb{bottom:885.413333pt;}
.y28{bottom:886.533333pt;}
.y14d{bottom:886.853333pt;}
.y1d{bottom:894.373333pt;}
.y1d2{bottom:895.413333pt;}
.y1af{bottom:897.173333pt;}
.y7{bottom:902.053333pt;}
.y14c{bottom:905.573333pt;}
.ydf{bottom:907.333333pt;}
.yfd{bottom:907.653333pt;}
.y1d0{bottom:917.653333pt;}
.y35{bottom:920.613333pt;}
.y4d{bottom:920.933333pt;}
.y1ae{bottom:922.853333pt;}
.y27{bottom:923.333333pt;}
.y170{bottom:924.293333pt;}
.y1fa{bottom:929.973333pt;}
.y14b{bottom:937.573333pt;}
.y6{bottom:938.853333pt;}
.y1cf{bottom:939.973333pt;}
.y16f{bottom:943.013333pt;}
.y1c{bottom:944.133333pt;}
.ybd{bottom:944.453333pt;}
.y1ad{bottom:948.560000pt;}
.y1f9{bottom:952.240000pt;}
.y18d{bottom:956.293333pt;}
.y14a{bottom:956.453333pt;}
.y34{bottom:957.413333pt;}
.y4c{bottom:957.733333pt;}
.y26{bottom:960.133333pt;}
.y1ac{bottom:960.880000pt;}
.y1cc{bottom:962.240000pt;}
.y5{bottom:972.933333pt;}
.y1ab{bottom:973.200000pt;}
.y1f8{bottom:974.480000pt;}
.y16e{bottom:975.013333pt;}
.y149{bottom:975.173333pt;}
.y1aa{bottom:985.520000pt;}
.y148{bottom:993.893333pt;}
.y25{bottom:994.053333pt;}
.y4{bottom:994.213333pt;}
.y4b{bottom:994.533333pt;}
.y1cb{bottom:1008.560000pt;}
.y1a9{bottom:1014.160000pt;}
.y1bc{bottom:1015.760000pt;}
.y1a{bottom:1061.297770pt;}
.h17{height:12.240000pt;}
.h14{height:12.260000pt;}
.h15{height:12.320000pt;}
.h3{height:18.432000pt;}
.h7{height:23.466800pt;}
.h12{height:24.480000pt;}
.h19{height:24.560000pt;}
.hf{height:39.048750pt;}
.he{height:39.945469pt;}
.h16{height:41.770312pt;}
.h13{height:42.892500pt;}
.h11{height:44.388750pt;}
.h1a{height:44.614219pt;}
.h18{height:44.627187pt;}
.hd{height:55.687500pt;}
.h10{height:55.736250pt;}
.hb{height:57.375000pt;}
.h2{height:62.812500pt;}
.hc{height:63.656250pt;}
.h4{height:64.500000pt;}
.h6{height:65.781915pt;}
.h5{height:66.383438pt;}
.ha{height:66.404375pt;}
.h9{height:66.625000pt;}
.h8{height:80.166667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w6{width:16.000000pt;}
.wd{width:26.020000pt;}
.w14{width:26.400000pt;}
.w15{width:30.820000pt;}
.w7{width:70.314667pt;}
.wf{width:72.314667pt;}
.w12{width:84.720000pt;}
.w11{width:87.546667pt;}
.w13{width:92.186667pt;}
.w10{width:92.640000pt;}
.wc{width:92.960000pt;}
.w8{width:106.160000pt;}
.w9{width:116.826667pt;}
.wb{width:119.466667pt;}
.wa{width:124.320000pt;}
.w3{width:497.761333pt;}
.we{width:656.074667pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:5.040000pt;}
.x13{left:46.559976pt;}
.xd{left:54.559976pt;}
.x14{left:65.439976pt;}
.xe{left:70.559988pt;}
.x10{left:73.439976pt;}
.x9{left:75.590820pt;}
.x11{left:89.471988pt;}
.xb{left:94.592000pt;}
.x1c{left:108.426667pt;}
.xf{left:113.471988pt;}
.xa{left:118.591988pt;}
.x3{left:119.552000pt;}
.x6{left:123.552000pt;}
.x17{left:126.591988pt;}
.x12{left:132.351988pt;}
.x5{left:136.346667pt;}
.x1{left:137.466667pt;}
.xc{left:142.586655pt;}
.x18{left:145.466655pt;}
.x16{left:156.346655pt;}
.x8{left:161.466667pt;}
.x1e{left:178.746667pt;}
.x24{left:180.746667pt;}
.x25{left:273.386667pt;}
.x1f{left:284.906667pt;}
.x4{left:310.946667pt;}
.x26{left:360.933333pt;}
.x7{left:372.066667pt;}
.x20{left:401.733333pt;}
.x19{left:419.973333pt;}
.x27{left:445.653333pt;}
.x21{left:526.053333pt;}
.x28{left:530.373333pt;}
.x1a{left:551.520000pt;}
.x1b{left:553.840000pt;}
.x29{left:622.560000pt;}
.x22{left:645.520000pt;}
.x15{left:683.333333pt;}
.x2{left:691.333333pt;}
.x2a{left:707.280000pt;}
.x2b{left:733.680000pt;}
.x23{left:738.480000pt;}
}




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