
    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_e49d8e5cbf119b9369386cae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_56a9cdfdb0f87c4b73ca76a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_bf008386cbb3a3339c9014bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.711914;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_f8f1fa66045ef86d5131d4e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_904e6bbd82b19eba8c3c0466.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_49411fa635c08a3cbf9b04e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ff2b0993b5481fee3a2ba999.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_c68e1a9bf843b414337c5de7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_4291849235ddfe59297b3821.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_40604d04eeae5d0a95d61d15.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_513893f9167af4e010d06851.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.123240px;}
.ls4{letter-spacing:-11.376000px;}
.lsa{letter-spacing:-5.190480px;}
.lsb{letter-spacing:-3.364200px;}
.lsc{letter-spacing:-3.171960px;}
.ls5{letter-spacing:-3.024000px;}
.ls9{letter-spacing:-2.979720px;}
.ls6{letter-spacing:-2.880000px;}
.ls29{letter-spacing:-0.300600px;}
.ls17{letter-spacing:-0.240480px;}
.ls55{letter-spacing:-0.192240px;}
.ls12{letter-spacing:-0.180360px;}
.ls1b{letter-spacing:-0.162000px;}
.ls28{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.131760px;}
.ls15{letter-spacing:-0.120240px;}
.ls1a{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.096120px;}
.ls27{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.065880px;}
.ls16{letter-spacing:-0.060120px;}
.ls19{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.047880px;}
.ls4f{letter-spacing:0.052704px;}
.ls11{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.060120px;}
.ls2f{letter-spacing:0.065880px;}
.ls1{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.096120px;}
.ls51{letter-spacing:0.098820px;}
.ls6c{letter-spacing:0.105408px;}
.lsf{letter-spacing:0.108000px;}
.ls3f{letter-spacing:0.111996px;}
.ls13{letter-spacing:0.120240px;}
.ls35{letter-spacing:0.125172px;}
.ls62{letter-spacing:0.129600px;}
.ls36{letter-spacing:0.131760px;}
.ls20{letter-spacing:0.144000px;}
.ls59{letter-spacing:0.158112px;}
.ls18{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.180360px;}
.ls37{letter-spacing:0.197640px;}
.ls26{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.263520px;}
.ls6b{letter-spacing:0.270108px;}
.ls39{letter-spacing:0.329400px;}
.ls3b{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.395280px;}
.ls43{letter-spacing:0.434808px;}
.ls34{letter-spacing:0.461160px;}
.ls30{letter-spacing:0.527040px;}
.ls2b{letter-spacing:0.658800px;}
.ls42{letter-spacing:3.162240px;}
.ls41{letter-spacing:3.491640px;}
.ls3d{letter-spacing:3.886920px;}
.ls3e{letter-spacing:4.216320px;}
.ls40{letter-spacing:4.611600px;}
.ls5a{letter-spacing:5.336280px;}
.ls5b{letter-spacing:5.665680px;}
.ls31{letter-spacing:5.995080px;}
.ls2d{letter-spacing:6.390360px;}
.ls2c{letter-spacing:6.719760px;}
.ls69{letter-spacing:7.444440px;}
.ls54{letter-spacing:8.893800px;}
.ls60{letter-spacing:8.939160px;}
.ls63{letter-spacing:9.618480px;}
.ls44{letter-spacing:9.967644px;}
.ls66{letter-spacing:10.343160px;}
.ls45{letter-spacing:10.738440px;}
.ls5c{letter-spacing:11.792520px;}
.ls68{letter-spacing:12.846600px;}
.ls5d{letter-spacing:13.571280px;}
.ls47{letter-spacing:14.295960px;}
.ls4a{letter-spacing:14.691240px;}
.ls4e{letter-spacing:14.706360px;}
.ls56{letter-spacing:16.470000px;}
.ls4b{letter-spacing:16.911396px;}
.ls4c{letter-spacing:17.194680px;}
.ls61{letter-spacing:19.320120px;}
.ls65{letter-spacing:22.201560px;}
.ls49{letter-spacing:26.549640px;}
.ls3c{letter-spacing:27.504000px;}
.ls64{letter-spacing:27.735480px;}
.ls58{letter-spacing:28.460160px;}
.ls57{letter-spacing:32.083560px;}
.ls3a{letter-spacing:32.184000px;}
.ls67{letter-spacing:33.401160px;}
.ls5f{letter-spacing:33.624000px;}
.ls50{letter-spacing:33.984000px;}
.ls53{letter-spacing:34.982280px;}
.ls52{letter-spacing:38.210400px;}
.ls2e{letter-spacing:43.446240px;}
.ls4d{letter-spacing:43.920000px;}
.ls6a{letter-spacing:50.068800px;}
.ls24{letter-spacing:57.111120px;}
.ls33{letter-spacing:58.699080px;}
.ls32{letter-spacing:59.423760px;}
.ls1e{letter-spacing:61.071120px;}
.ls25{letter-spacing:64.671120px;}
.ls46{letter-spacing:66.528000px;}
.ls1d{letter-spacing:67.551120px;}
.ls1f{letter-spacing:70.071120px;}
.ls1c{letter-spacing:74.391120px;}
.ls22{letter-spacing:96.351120px;}
.ls23{letter-spacing:100.311120px;}
.ls21{letter-spacing:116.511120px;}
.ls2a{letter-spacing:167.328000px;}
.ls5e{letter-spacing:424.705320px;}
.ls0{letter-spacing:444.505320px;}
.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;}
}
.ws45{word-spacing:-65.880000px;}
.ws40{word-spacing:-31.824000px;}
.ws81{word-spacing:-31.680000px;}
.ws66{word-spacing:-31.536000px;}
.ws0{word-spacing:-28.656000px;}
.ws43{word-spacing:-21.242520px;}
.wsba{word-spacing:-21.146400px;}
.ws2{word-spacing:-21.050280px;}
.ws82{word-spacing:-16.344000px;}
.wsb9{word-spacing:-16.128000px;}
.ws35{word-spacing:-16.056000px;}
.ws34{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.955920px;}
.ws33{word-spacing:-15.912000px;}
.ws37{word-spacing:-15.840000px;}
.ws36{word-spacing:-15.768000px;}
.ws38{word-spacing:-15.696000px;}
.ws83{word-spacing:-15.020640px;}
.ws64{word-spacing:-14.888880px;}
.ws84{word-spacing:-14.823000px;}
.ws42{word-spacing:-14.625360px;}
.ws44{word-spacing:-14.559480px;}
.ws63{word-spacing:-14.493600px;}
.ws4{word-spacing:-14.427720px;}
.ws41{word-spacing:-14.361840px;}
.ws14{word-spacing:-13.406760px;}
.ws13{word-spacing:-13.346640px;}
.ws1d{word-spacing:-13.286520px;}
.ws1c{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.166280px;}
.ws17{word-spacing:-13.106160px;}
.ws1b{word-spacing:-13.046040px;}
.ws16{word-spacing:-12.985920px;}
.ws3c{word-spacing:-12.925800px;}
.ws18{word-spacing:-12.042000px;}
.ws1f{word-spacing:-11.988000px;}
.ws1e{word-spacing:-11.934000px;}
.wsb6{word-spacing:-11.880000px;}
.ws19{word-spacing:-11.826000px;}
.ws1a{word-spacing:-11.772000px;}
.wscb{word-spacing:-3.755160px;}
.wsc6{word-spacing:-3.689280px;}
.wsbd{word-spacing:-3.623400px;}
.wscc{word-spacing:-3.491640px;}
.wsa7{word-spacing:-3.425760px;}
.ws6e{word-spacing:-3.294000px;}
.ws88{word-spacing:-2.898720px;}
.wsd8{word-spacing:-2.832840px;}
.wsab{word-spacing:-2.635200px;}
.ws54{word-spacing:-2.569320px;}
.wscd{word-spacing:-2.174040px;}
.wsce{word-spacing:-2.108160px;}
.ws6d{word-spacing:-2.042280px;}
.wsac{word-spacing:-1.910520px;}
.ws6c{word-spacing:-1.844640px;}
.wsb1{word-spacing:-1.647000px;}
.wsbc{word-spacing:-1.515240px;}
.wsb2{word-spacing:-1.449360px;}
.ws75{word-spacing:-1.383480px;}
.ws71{word-spacing:-1.317600px;}
.wsbe{word-spacing:-1.185840px;}
.ws9d{word-spacing:-1.119960px;}
.wsbb{word-spacing:-0.856440px;}
.wsa0{word-spacing:-0.790560px;}
.ws8b{word-spacing:-0.592920px;}
.ws26{word-spacing:-0.540000px;}
.wsc9{word-spacing:-0.527040px;}
.ws39{word-spacing:-0.504000px;}
.ws24{word-spacing:-0.486000px;}
.ws3e{word-spacing:-0.480960px;}
.ws4e{word-spacing:-0.461160px;}
.ws23{word-spacing:-0.420840px;}
.ws7a{word-spacing:-0.395280px;}
.ws74{word-spacing:-0.329400px;}
.ws21{word-spacing:-0.300600px;}
.wsc{word-spacing:-0.288000px;}
.ws4c{word-spacing:-0.263520px;}
.ws4a{word-spacing:-0.197640px;}
.wsb8{word-spacing:-0.162000px;}
.ws1{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.143640px;}
.ws5d{word-spacing:-0.131760px;}
.ws22{word-spacing:-0.120240px;}
.ws27{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.096120px;}
.ws9{word-spacing:-0.095760px;}
.ws61{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.065880px;}
.ws2b{word-spacing:-0.060120px;}
.ws25{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws31{word-spacing:0.054000px;}
.ws29{word-spacing:0.060120px;}
.ws51{word-spacing:0.065880px;}
.ws3a{word-spacing:0.072000px;}
.wsb7{word-spacing:0.108000px;}
.ws2a{word-spacing:0.120240px;}
.ws4b{word-spacing:0.131760px;}
.ws3d{word-spacing:0.144000px;}
.ws2e{word-spacing:0.162000px;}
.ws20{word-spacing:0.180360px;}
.wse{word-spacing:0.192240px;}
.ws28{word-spacing:0.240480px;}
.ws5c{word-spacing:0.263520px;}
.ws99{word-spacing:0.288360px;}
.ws3f{word-spacing:0.300600px;}
.ws96{word-spacing:0.329400px;}
.ws4d{word-spacing:0.395280px;}
.ws46{word-spacing:0.461160px;}
.ws7c{word-spacing:0.658800px;}
.ws47{word-spacing:0.724680px;}
.wsa8{word-spacing:1.054080px;}
.ws11{word-spacing:1.119960px;}
.ws77{word-spacing:1.185840px;}
.ws7{word-spacing:1.340640px;}
.ws57{word-spacing:1.383480px;}
.ws56{word-spacing:1.449360px;}
.wsca{word-spacing:1.712880px;}
.ws4f{word-spacing:1.778760px;}
.ws78{word-spacing:1.844640px;}
.ws5b{word-spacing:2.305800px;}
.ws80{word-spacing:2.503440px;}
.ws9a{word-spacing:2.635200px;}
.ws3b{word-spacing:2.736000px;}
.ws9e{word-spacing:2.766960px;}
.ws7f{word-spacing:2.832840px;}
.wsb{word-spacing:3.024000px;}
.ws55{word-spacing:3.030480px;}
.ws10{word-spacing:3.171960px;}
.ws72{word-spacing:3.228120px;}
.ws73{word-spacing:3.294000px;}
.wse1{word-spacing:3.359880px;}
.wsf{word-spacing:3.364200px;}
.ws62{word-spacing:3.456000px;}
.wsa6{word-spacing:3.557520px;}
.ws70{word-spacing:3.755160px;}
.ws6f{word-spacing:3.886920px;}
.ws69{word-spacing:3.952800px;}
.ws5e{word-spacing:4.282200px;}
.wsd6{word-spacing:4.413960px;}
.wsda{word-spacing:4.545720px;}
.ws68{word-spacing:4.611600px;}
.ws58{word-spacing:5.006880px;}
.ws6b{word-spacing:5.138640px;}
.wsb0{word-spacing:5.270400px;}
.ws59{word-spacing:5.336280px;}
.ws52{word-spacing:5.599800px;}
.ws53{word-spacing:5.665680px;}
.wsd9{word-spacing:5.731560px;}
.ws50{word-spacing:5.797440px;}
.ws48{word-spacing:6.456240px;}
.ws49{word-spacing:6.522120px;}
.ws93{word-spacing:6.719760px;}
.ws94{word-spacing:6.785640px;}
.wse0{word-spacing:7.180920px;}
.wsd2{word-spacing:7.312680px;}
.wsd4{word-spacing:7.444440px;}
.wsc8{word-spacing:7.510320px;}
.wsc7{word-spacing:7.576200px;}
.ws8c{word-spacing:7.707960px;}
.ws8d{word-spacing:7.905600px;}
.wsde{word-spacing:7.971480px;}
.wsdb{word-spacing:8.235000px;}
.wsdc{word-spacing:8.300880px;}
.ws8a{word-spacing:8.630280px;}
.ws89{word-spacing:8.696160px;}
.ws5a{word-spacing:8.959680px;}
.ws6{word-spacing:9.240840px;}
.wsbf{word-spacing:9.684360px;}
.ws76{word-spacing:10.013760px;}
.ws9f{word-spacing:10.211400px;}
.wsc4{word-spacing:10.409040px;}
.ws79{word-spacing:10.540800px;}
.wsa5{word-spacing:10.738440px;}
.wsc5{word-spacing:10.804320px;}
.ws67{word-spacing:10.936080px;}
.ws95{word-spacing:11.133720px;}
.wsdd{word-spacing:11.265480px;}
.wsa{word-spacing:11.376000px;}
.wsb4{word-spacing:11.463120px;}
.wsd5{word-spacing:11.858400px;}
.wsb3{word-spacing:11.924280px;}
.ws65{word-spacing:12.187800px;}
.wsaa{word-spacing:12.385440px;}
.wsc1{word-spacing:12.451320px;}
.wsc0{word-spacing:12.517200px;}
.wsa9{word-spacing:12.583080px;}
.wsd1{word-spacing:12.714840px;}
.ws5f{word-spacing:12.846600px;}
.ws60{word-spacing:12.912480px;}
.wsd3{word-spacing:13.307760px;}
.wsb5{word-spacing:13.637160px;}
.ws2c{word-spacing:14.007960px;}
.ws7b{word-spacing:14.361840px;}
.ws8f{word-spacing:14.625360px;}
.ws8e{word-spacing:14.691240px;}
.wsae{word-spacing:15.613560px;}
.wsad{word-spacing:15.811200px;}
.wsaf{word-spacing:15.877080px;}
.wsdf{word-spacing:16.140600px;}
.wsa1{word-spacing:16.535880px;}
.ws90{word-spacing:16.667640px;}
.wse2{word-spacing:16.865280px;}
.ws92{word-spacing:16.931160px;}
.ws91{word-spacing:17.260560px;}
.wsd7{word-spacing:17.985240px;}
.ws9c{word-spacing:18.117000px;}
.ws9b{word-spacing:18.314640px;}
.wsa3{word-spacing:19.236960px;}
.wsa2{word-spacing:19.434600px;}
.wsa4{word-spacing:19.500480px;}
.wse5{word-spacing:21.213360px;}
.wsc3{word-spacing:22.069800px;}
.wsc2{word-spacing:22.201560px;}
.ws7d{word-spacing:22.267440px;}
.ws7e{word-spacing:22.333320px;}
.wse8{word-spacing:24.243840px;}
.wse7{word-spacing:24.441480px;}
.wse6{word-spacing:25.166160px;}
.ws86{word-spacing:26.352000px;}
.ws85{word-spacing:26.549640px;}
.ws87{word-spacing:26.615520px;}
.ws30{word-spacing:29.214000px;}
.ws2f{word-spacing:30.294000px;}
.ws6a{word-spacing:33.071760px;}
.wscf{word-spacing:33.467040px;}
.wsd0{word-spacing:33.532920px;}
.ws98{word-spacing:43.920000px;}
.ws97{word-spacing:44.352000px;}
.ws2d{word-spacing:51.732000px;}
.wse3{word-spacing:58.567320px;}
.wse4{word-spacing:58.633200px;}
.ws32{word-spacing:109.350000px;}
._f{margin-left:-15.624000px;}
._10{margin-left:-13.248000px;}
._b{margin-left:-11.448000px;}
._11{margin-left:-10.368000px;}
._d{margin-left:-9.144000px;}
._c{margin-left:-8.064000px;}
._e{margin-left:-6.984000px;}
._2{margin-left:-3.600000px;}
._3{margin-left:-2.448000px;}
._4{margin-left:-1.080000px;}
._0{width:1.005480px;}
._5{width:2.225880px;}
._15{width:3.312000px;}
._16{width:4.536000px;}
._13{width:5.762880px;}
._1{width:8.352000px;}
._17{width:10.276956px;}
._1b{width:11.445840px;}
._1d{width:12.583080px;}
._1a{width:16.733520px;}
._19{width:18.512280px;}
._1e{width:23.068800px;}
._18{width:27.558468px;}
._1f{width:33.994080px;}
._20{width:59.257440px;}
._7{width:86.384520px;}
._14{width:168.718680px;}
._8{width:185.947200px;}
._9{width:199.177560px;}
._12{width:832.320000px;}
._a{width:848.160000px;}
._6{width:849.522600px;}
._1c{width:852.654600px;}
.fca{color:rgb(46,116,181);}
.fc8{color:rgb(92,172,38);}
.fc7{color:rgb(42,124,125);}
.fc5{color:rgb(41,124,125);}
.fc2{color:rgb(76,150,145);}
.fc1{color:rgb(46,91,88);}
.fc9{color:rgb(68,84,106);}
.fc6{color:rgb(237,125,49);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,117,104);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.120000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.050000px;}
.y7c{bottom:4.590000px;}
.y77{bottom:4.680000px;}
.y34{bottom:10.710000px;}
.y2d{bottom:10.800000px;}
.y33{bottom:12.150000px;}
.y2c{bottom:12.240000px;}
.y28{bottom:16.740000px;}
.y2{bottom:21.150000px;}
.y31{bottom:24.840000px;}
.y2f{bottom:26.279850px;}
.y4f{bottom:26.280000px;}
.y50{bottom:26.370000px;}
.y3b{bottom:28.350000px;}
.y1b{bottom:28.440000px;}
.y1d{bottom:29.790000px;}
.y5{bottom:31.049190px;}
.y25{bottom:35.640000px;}
.y24{bottom:35.730000px;}
.y48{bottom:35.820000px;}
.y46{bottom:35.910000px;}
.y43{bottom:36.630000px;}
.y3{bottom:38.070000px;}
.y53{bottom:40.680000px;}
.y54{bottom:42.120000px;}
.y4{bottom:45.090000px;}
.y41{bottom:45.900000px;}
.y3d{bottom:45.990000px;}
.y1f{bottom:54.630000px;}
.yd8{bottom:126.812070px;}
.y102{bottom:128.599290px;}
.y17e{bottom:136.469700px;}
.yd7{bottom:146.164320px;}
.y101{bottom:147.951540px;}
.y17d{bottom:155.821950px;}
.y5b{bottom:160.110000px;}
.y158{bottom:164.421000px;}
.yd6{bottom:165.516570px;}
.y100{bottom:167.303790px;}
.y17c{bottom:176.080050px;}
.y157{bottom:183.773250px;}
.yd5{bottom:184.770000px;}
.yff{bottom:186.656040px;}
.y5a{bottom:188.370000px;}
.y17b{bottom:195.432300px;}
.y156{bottom:203.125500px;}
.yd4{bottom:204.480000px;}
.yfe{bottom:206.008290px;}
.y59{bottom:214.470000px;}
.y17a{bottom:214.784550px;}
.y155{bottom:222.477750px;}
.yfd{bottom:225.360540px;}
.y57{bottom:228.150000px;}
.y129{bottom:232.470000px;}
.y179{bottom:234.136800px;}
.y58{bottom:238.590000px;}
.yd3{bottom:239.490000px;}
.y154{bottom:241.830000px;}
.yfc{bottom:244.712790px;}
.y178{bottom:253.489050px;}
.y128{bottom:261.000000px;}
.y153{bottom:261.450000px;}
.y52{bottom:268.020000px;}
.yfb{bottom:271.624770px;}
.y177{bottom:272.841300px;}
.yd2{bottom:277.380000px;}
.y56{bottom:278.460000px;}
.y127{bottom:290.050110px;}
.yfa{bottom:290.977020px;}
.y176{bottom:292.193550px;}
.y152{bottom:294.030000px;}
.y55{bottom:294.300000px;}
.yf9{bottom:310.230450px;}
.y175{bottom:311.545800px;}
.yd1{bottom:315.630000px;}
.y126{bottom:317.686770px;}
.y4e{bottom:323.730000px;}
.ya1{bottom:330.480000px;}
.y174{bottom:330.898050px;}
.y151{bottom:332.280000px;}
.y51{bottom:334.260000px;}
.yf8{bottom:337.142430px;}
.yd0{bottom:344.579850px;}
.y125{bottom:344.598750px;}
.ya0{bottom:350.190000px;}
.y173{bottom:350.250300px;}
.y150{bottom:360.535500px;}
.y4d{bottom:363.690000px;}
.y124{bottom:363.951000px;}
.yf7{bottom:363.955590px;}
.y73{bottom:364.068000px;}
.y172{bottom:369.503730px;}
.ycf{bottom:371.491830px;}
.y12e{bottom:374.850000px;}
.y9f{bottom:378.401040px;}
.y14f{bottom:379.887750px;}
.y123{bottom:383.303250px;}
.yf6{bottom:383.307840px;}
.y12d{bottom:387.720000px;}
.y171{bottom:388.855980px;}
.y4c{bottom:389.520000px;}
.yce{bottom:390.844080px;}
.y9e{bottom:397.753290px;}
.y14e{bottom:399.240000px;}
.y122{bottom:402.655500px;}
.yf5{bottom:402.660090px;}
.y170{bottom:408.208230px;}
.ycd{bottom:410.196330px;}
.y9d{bottom:417.105540px;}
.y14d{bottom:418.860000px;}
.y72{bottom:421.560000px;}
.y121{bottom:422.007750px;}
.yf4{bottom:422.012340px;}
.y4b{bottom:425.785500px;}
.y16f{bottom:427.560480px;}
.ycc{bottom:429.548580px;}
.y120{bottom:441.360000px;}
.y9c{bottom:443.918700px;}
.y16e{bottom:446.912730px;}
.y14c{bottom:448.740000px;}
.yf3{bottom:448.825500px;}
.ycb{bottom:448.900830px;}
.y4a{bottom:449.100000px;}
.y71{bottom:459.810000px;}
.y11f{bottom:460.980000px;}
.y45{bottom:462.780000px;}
.y9b{bottom:463.270950px;}
.y16d{bottom:466.264980px;}
.yf2{bottom:468.177750px;}
.yca{bottom:468.253080px;}
.y49{bottom:473.490000px;}
.y70{bottom:480.870000px;}
.y47{bottom:481.050000px;}
.y11e{bottom:483.030000px;}
.y14b{bottom:483.427260px;}
.y16c{bottom:485.617230px;}
.yf1{bottom:487.530000px;}
.yc9{bottom:487.605330px;}
.y9a{bottom:490.084110px;}
.y6f{bottom:502.020000px;}
.y14a{bottom:502.861860px;}
.y16b{bottom:504.969480px;}
.yc8{bottom:506.957580px;}
.y11d{bottom:507.060000px;}
.yf0{bottom:507.150000px;}
.y42{bottom:513.630000px;}
.y99{bottom:516.996090px;}
.y6e{bottom:523.080000px;}
.y149{bottom:523.202310px;}
.y16a{bottom:525.227580px;}
.yc7{bottom:526.309830px;}
.yef{bottom:529.110000px;}
.y11c{bottom:535.304880px;}
.y98{bottom:536.348340px;}
.y44{bottom:539.460000px;}
.y19{bottom:539.656290px;}
.y148{bottom:543.460410px;}
.y169{bottom:544.579830px;}
.yc6{bottom:545.662080px;}
.y11b{bottom:554.657130px;}
.y97{bottom:555.700590px;}
.y6d{bottom:555.750000px;}
.yee{bottom:557.455500px;}
.y147{bottom:563.718510px;}
.y168{bottom:563.932080px;}
.yc5{bottom:565.014330px;}
.y3c{bottom:565.380000px;}
.y18{bottom:566.469450px;}
.y11a{bottom:574.009380px;}
.y96{bottom:574.954020px;}
.y40{bottom:576.084600px;}
.yed{bottom:576.807750px;}
.y167{bottom:583.284330px;}
.y146{bottom:583.976610px;}
.yc4{bottom:591.827490px;}
.y119{bottom:593.361630px;}
.y17{bottom:593.381430px;}
.y3e{bottom:593.730000px;}
.y3f{bottom:593.820000px;}
.y6c{bottom:593.910000px;}
.y95{bottom:595.212120px;}
.yec{bottom:596.160000px;}
.ya6{bottom:598.320000px;}
.y166{bottom:602.636580px;}
.y145{bottom:604.234710px;}
.yc3{bottom:611.179740px;}
.y118{bottom:612.713880px;}
.y94{bottom:614.564370px;}
.y6b{bottom:614.970000px;}
.yeb{bottom:615.780000px;}
.ya5{bottom:616.950000px;}
.y16{bottom:620.194590px;}
.y165{bottom:621.988830px;}
.y144{bottom:624.476340px;}
.y39{bottom:626.310000px;}
.yc2{bottom:630.531990px;}
.y117{bottom:632.066130px;}
.y93{bottom:633.916620px;}
.y195{bottom:636.840000px;}
.y3a{bottom:637.110000px;}
.y15{bottom:639.546840px;}
.y164{bottom:641.341080px;}
.y6a{bottom:643.500000px;}
.y143{bottom:644.734440px;}
.yea{bottom:645.660000px;}
.yc1{bottom:649.884240px;}
.yb0{bottom:650.250000px;}
.y92{bottom:654.174720px;}
.y116{bottom:658.879290px;}
.y163{bottom:660.693330px;}
.y142{bottom:664.992540px;}
.y14{bottom:666.360000px;}
.y38{bottom:669.780000px;}
.y194{bottom:671.580000px;}
.y69{bottom:672.120000px;}
.y91{bottom:673.526970px;}
.yc0{bottom:676.697400px;}
.ye9{bottom:679.680000px;}
.y162{bottom:680.045580px;}
.yaf{bottom:681.840000px;}
.y141{bottom:685.250640px;}
.y115{bottom:685.791270px;}
.y13{bottom:687.352590px;}
.y90{bottom:692.879220px;}
.y37{bottom:695.610000px;}
.ybf{bottom:696.049650px;}
.y161{bottom:699.299010px;}
.y193{bottom:699.902640px;}
.y68{bottom:700.740000px;}
.y114{bottom:705.143520px;}
.y140{bottom:705.508740px;}
.y8f{bottom:712.231470px;}
.ye8{bottom:713.340000px;}
.ybe{bottom:715.401900px;}
.y12{bottom:715.515750px;}
.y192{bottom:719.254890px;}
.y113{bottom:724.495770px;}
.y160{bottom:727.116840px;}
.y67{bottom:729.360000px;}
.yae{bottom:731.520000px;}
.y8e{bottom:731.583720px;}
.y36{bottom:731.875500px;}
.y13f{bottom:733.227750px;}
.y191{bottom:738.607140px;}
.ybd{bottom:742.215060px;}
.y11{bottom:743.606820px;}
.y112{bottom:743.848020px;}
.y8d{bottom:750.935970px;}
.ye7{bottom:751.212000px;}
.y13e{bottom:752.580000px;}
.y15f{bottom:753.930000px;}
.y35{bottom:755.190000px;}
.y66{bottom:757.890000px;}
.y190{bottom:757.959390px;}
.ybc{bottom:761.567310px;}
.y111{bottom:763.101450px;}
.yad{bottom:763.200000px;}
.y32{bottom:768.870000px;}
.y8c{bottom:770.288220px;}
.y10{bottom:771.769980px;}
.y13d{bottom:772.290000px;}
.y18f{bottom:777.311640px;}
.y15e{bottom:781.020000px;}
.y19e{bottom:781.560000px;}
.y65{bottom:786.510000px;}
.ybb{bottom:788.380470px;}
.y110{bottom:790.013430px;}
.y8b{bottom:790.546320px;}
.ye6{bottom:793.440000px;}
.y2e{bottom:794.700000px;}
.yac{bottom:794.880000px;}
.y18e{bottom:796.565070px;}
.y15d{bottom:801.886680px;}
.y13c{bottom:802.170000px;}
.y19d{bottom:802.620000px;}
.y30{bottom:805.140000px;}
.yf{bottom:807.406470px;}
.y8a{bottom:809.898570px;}
.y64{bottom:815.130000px;}
.yba{bottom:815.292450px;}
.y18d{bottom:815.917320px;}
.y10f{bottom:816.826590px;}
.y15c{bottom:821.238930px;}
.y19c{bottom:823.387500px;}
.yab{bottom:826.470000px;}
.y89{bottom:829.250820px;}
.ye5{bottom:831.600000px;}
.y2b{bottom:834.570000px;}
.y18c{bottom:835.269570px;}
.yb9{bottom:835.550550px;}
.ye{bottom:835.569630px;}
.y10e{bottom:836.178840px;}
.y13b{bottom:836.185680px;}
.y15b{bottom:840.591180px;}
.y19b{bottom:842.739750px;}
.y63{bottom:843.750000px;}
.y88{bottom:848.603070px;}
.y18b{bottom:854.621820px;}
.y10d{bottom:855.531090px;}
.yb8{bottom:855.808650px;}
.y7f{bottom:856.260000px;}
.yaa{bottom:858.150000px;}
.ye4{bottom:859.943430px;}
.y19a{bottom:862.092000px;}
.y13a{bottom:862.998840px;}
.y87{bottom:868.680000px;}
.y2a{bottom:870.844500px;}
.yd{bottom:871.110000px;}
.y62{bottom:872.370000px;}
.y18a{bottom:873.974070px;}
.y10c{bottom:874.883340px;}
.y7e{bottom:875.970000px;}
.ye3{bottom:879.295680px;}
.y199{bottom:881.444250px;}
.y139{bottom:882.351090px;}
.yb7{bottom:883.527660px;}
.y15a{bottom:886.756590px;}
.ya9{bottom:889.830000px;}
.y189{bottom:893.326320px;}
.y10b{bottom:894.235590px;}
.y29{bottom:894.240000px;}
.y7d{bottom:895.680000px;}
.y86{bottom:897.210000px;}
.ye2{bottom:898.549110px;}
.y198{bottom:900.796500px;}
.y61{bottom:900.990000px;}
.y138{bottom:901.703340px;}
.yb6{bottom:902.879910px;}
.yc{bottom:905.130000px;}
.y159{bottom:906.108840px;}
.y27{bottom:907.830000px;}
.y188{bottom:912.678570px;}
.y7b{bottom:915.480000px;}
.y197{bottom:920.148750px;}
.y10a{bottom:921.048750px;}
.ya8{bottom:921.420000px;}
.yb5{bottom:922.232160px;}
.ye1{bottom:925.461090px;}
.y137{bottom:928.516500px;}
.y12c{bottom:929.430000px;}
.y60{bottom:929.520000px;}
.y85{bottom:931.941270px;}
.y187{bottom:932.030820px;}
.yb{bottom:933.573510px;}
.y7a{bottom:935.190000px;}
.y196{bottom:939.501000px;}
.y23{bottom:939.510000px;}
.y109{bottom:940.401000px;}
.ye0{bottom:944.813340px;}
.y136{bottom:947.868750px;}
.yb4{bottom:949.770000px;}
.y186{bottom:951.383070px;}
.ya7{bottom:953.100000px;}
.y79{bottom:954.900000px;}
.y26{bottom:956.340000px;}
.y5f{bottom:958.140000px;}
.y84{bottom:958.853250px;}
.y108{bottom:959.753250px;}
.ydf{bottom:964.165590px;}
.y12b{bottom:964.440000px;}
.y135{bottom:967.221000px;}
.ya{bottom:969.210000px;}
.y185{bottom:970.735320px;}
.y78{bottom:974.610000px;}
.y12a{bottom:977.310000px;}
.y83{bottom:978.205500px;}
.y107{bottom:979.105500px;}
.yb3{bottom:983.430000px;}
.yde{bottom:983.517840px;}
.y134{bottom:986.573250px;}
.y5e{bottom:986.760000px;}
.y184{bottom:990.087570px;}
.y1e{bottom:990.270000px;}
.y76{bottom:994.320000px;}
.y82{bottom:997.557750px;}
.y106{bottom:998.457750px;}
.y9{bottom:1003.320000px;}
.y133{bottom:1005.925500px;}
.y22{bottom:1007.017290px;}
.y183{bottom:1009.439820px;}
.ydd{bottom:1010.331000px;}
.y75{bottom:1014.120000px;}
.y5d{bottom:1015.380000px;}
.y81{bottom:1016.910000px;}
.yb2{bottom:1017.720000px;}
.y105{bottom:1017.810000px;}
.y132{bottom:1025.277750px;}
.y21{bottom:1025.910000px;}
.y20{bottom:1026.000000px;}
.y8{bottom:1026.972000px;}
.y182{bottom:1028.792070px;}
.ydc{bottom:1029.683250px;}
.ya4{bottom:1030.500000px;}
.y80{bottom:1036.530000px;}
.y104{bottom:1037.430000px;}
.y5c{bottom:1044.000000px;}
.y131{bottom:1044.630000px;}
.y181{bottom:1048.144320px;}
.ydb{bottom:1049.035500px;}
.yb1{bottom:1049.040000px;}
.y103{bottom:1059.390000px;}
.y1a{bottom:1059.930000px;}
.ya3{bottom:1060.380000px;}
.y130{bottom:1064.250000px;}
.y180{bottom:1067.496570px;}
.yda{bottom:1068.387750px;}
.y74{bottom:1069.110000px;}
.y7{bottom:1069.200000px;}
.y1c{bottom:1070.730000px;}
.y12f{bottom:1086.210000px;}
.y17f{bottom:1086.750000px;}
.ya2{bottom:1087.650000px;}
.yd9{bottom:1087.740000px;}
.y1{bottom:1192.680000px;}
.h1a{height:18.900000px;}
.h1b{height:18.988500px;}
.h19{height:18.990000px;}
.h13{height:25.021500px;}
.h11{height:25.110000px;}
.hf{height:30.960000px;}
.h4{height:33.969551px;}
.hb{height:37.863281px;}
.h10{height:38.311523px;}
.h12{height:39.150000px;}
.ha{height:42.154453px;}
.hd{height:42.653496px;}
.h9{height:42.660000px;}
.h1c{height:45.646348px;}
.h7{height:46.740059px;}
.h1e{height:47.608594px;}
.h3{height:49.498500px;}
.h1d{height:49.886719px;}
.he{height:49.950000px;}
.h16{height:50.130000px;}
.h18{height:50.484375px;}
.h15{height:50.940000px;}
.h2{height:51.082031px;}
.h17{height:54.991500px;}
.h14{height:60.210000px;}
.h8{height:68.194512px;}
.hc{height:68.940000px;}
.h5{height:84.205271px;}
.h6{height:102.164062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:15.840000px;}
.w16{width:63.720000px;}
.we{width:126.811500px;}
.w17{width:131.490000px;}
.w4{width:133.920000px;}
.w10{width:137.430000px;}
.w2{width:137.880000px;}
.wa{width:143.281500px;}
.w5{width:154.891500px;}
.wc{width:178.470000px;}
.wb{width:178.740000px;}
.w15{width:179.280000px;}
.wf{width:179.460000px;}
.w11{width:190.710000px;}
.w13{width:201.870000px;}
.w14{width:254.070000px;}
.w8{width:277.918500px;}
.wd{width:328.860000px;}
.w7{width:329.760000px;}
.w9{width:358.020000px;}
.w18{width:504.450000px;}
.w3{width:585.090000px;}
.w12{width:636.660000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x2{left:42.120000px;}
.x1{left:95.760000px;}
.x9{left:127.620000px;}
.x3{left:129.420000px;}
.x24{left:134.280000px;}
.xf{left:136.080000px;}
.x23{left:139.500000px;}
.x1e{left:145.620000px;}
.x21{left:154.620000px;}
.x1f{left:163.620000px;}
.x4{left:180.000000px;}
.xd{left:181.174770px;}
.x7{left:185.220000px;}
.x6{left:188.100000px;}
.x28{left:192.870000px;}
.x27{left:197.010000px;}
.x26{left:201.150000px;}
.x2b{left:208.586520px;}
.x25{left:235.620000px;}
.xa{left:243.270000px;}
.x20{left:260.190000px;}
.x8{left:261.576000px;}
.x10{left:262.620000px;}
.x18{left:266.130000px;}
.x19{left:273.870000px;}
.x1d{left:285.120000px;}
.x2c{left:289.536570px;}
.xb{left:311.851620px;}
.x2d{left:316.547370px;}
.x1b{left:330.570000px;}
.x1c{left:338.310000px;}
.x2e{left:343.541700px;}
.xe{left:393.672060px;}
.x13{left:406.620000px;}
.x14{left:414.360000px;}
.x11{left:418.320000px;}
.x12{left:434.880000px;}
.xc{left:446.490000px;}
.x17{left:457.560000px;}
.x1a{left:465.300000px;}
.x2a{left:508.500000px;}
.x15{left:586.170000px;}
.x16{left:593.820000px;}
.x22{left:766.620000px;}
.x29{left:824.670000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.442880pt;}
.ls4{letter-spacing:-10.112000pt;}
.lsa{letter-spacing:-4.613760pt;}
.lsb{letter-spacing:-2.990400pt;}
.lsc{letter-spacing:-2.819520pt;}
.ls5{letter-spacing:-2.688000pt;}
.ls9{letter-spacing:-2.648640pt;}
.ls6{letter-spacing:-2.560000pt;}
.ls29{letter-spacing:-0.267200pt;}
.ls17{letter-spacing:-0.213760pt;}
.ls55{letter-spacing:-0.170880pt;}
.ls12{letter-spacing:-0.160320pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls28{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117120pt;}
.ls15{letter-spacing:-0.106880pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.085440pt;}
.ls27{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.058560pt;}
.ls16{letter-spacing:-0.053440pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.042560pt;}
.ls4f{letter-spacing:0.046848pt;}
.ls11{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.053440pt;}
.ls2f{letter-spacing:0.058560pt;}
.ls1{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.085440pt;}
.ls51{letter-spacing:0.087840pt;}
.ls6c{letter-spacing:0.093696pt;}
.lsf{letter-spacing:0.096000pt;}
.ls3f{letter-spacing:0.099552pt;}
.ls13{letter-spacing:0.106880pt;}
.ls35{letter-spacing:0.111264pt;}
.ls62{letter-spacing:0.115200pt;}
.ls36{letter-spacing:0.117120pt;}
.ls20{letter-spacing:0.128000pt;}
.ls59{letter-spacing:0.140544pt;}
.ls18{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.160320pt;}
.ls37{letter-spacing:0.175680pt;}
.ls26{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.234240pt;}
.ls6b{letter-spacing:0.240096pt;}
.ls39{letter-spacing:0.292800pt;}
.ls3b{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.351360pt;}
.ls43{letter-spacing:0.386496pt;}
.ls34{letter-spacing:0.409920pt;}
.ls30{letter-spacing:0.468480pt;}
.ls2b{letter-spacing:0.585600pt;}
.ls42{letter-spacing:2.810880pt;}
.ls41{letter-spacing:3.103680pt;}
.ls3d{letter-spacing:3.455040pt;}
.ls3e{letter-spacing:3.747840pt;}
.ls40{letter-spacing:4.099200pt;}
.ls5a{letter-spacing:4.743360pt;}
.ls5b{letter-spacing:5.036160pt;}
.ls31{letter-spacing:5.328960pt;}
.ls2d{letter-spacing:5.680320pt;}
.ls2c{letter-spacing:5.973120pt;}
.ls69{letter-spacing:6.617280pt;}
.ls54{letter-spacing:7.905600pt;}
.ls60{letter-spacing:7.945920pt;}
.ls63{letter-spacing:8.549760pt;}
.ls44{letter-spacing:8.860128pt;}
.ls66{letter-spacing:9.193920pt;}
.ls45{letter-spacing:9.545280pt;}
.ls5c{letter-spacing:10.482240pt;}
.ls68{letter-spacing:11.419200pt;}
.ls5d{letter-spacing:12.063360pt;}
.ls47{letter-spacing:12.707520pt;}
.ls4a{letter-spacing:13.058880pt;}
.ls4e{letter-spacing:13.072320pt;}
.ls56{letter-spacing:14.640000pt;}
.ls4b{letter-spacing:15.032352pt;}
.ls4c{letter-spacing:15.284160pt;}
.ls61{letter-spacing:17.173440pt;}
.ls65{letter-spacing:19.734720pt;}
.ls49{letter-spacing:23.599680pt;}
.ls3c{letter-spacing:24.448000pt;}
.ls64{letter-spacing:24.653760pt;}
.ls58{letter-spacing:25.297920pt;}
.ls57{letter-spacing:28.518720pt;}
.ls3a{letter-spacing:28.608000pt;}
.ls67{letter-spacing:29.689920pt;}
.ls5f{letter-spacing:29.888000pt;}
.ls50{letter-spacing:30.208000pt;}
.ls53{letter-spacing:31.095360pt;}
.ls52{letter-spacing:33.964800pt;}
.ls2e{letter-spacing:38.618880pt;}
.ls4d{letter-spacing:39.040000pt;}
.ls6a{letter-spacing:44.505600pt;}
.ls24{letter-spacing:50.765440pt;}
.ls33{letter-spacing:52.176960pt;}
.ls32{letter-spacing:52.821120pt;}
.ls1e{letter-spacing:54.285440pt;}
.ls25{letter-spacing:57.485440pt;}
.ls46{letter-spacing:59.136000pt;}
.ls1d{letter-spacing:60.045440pt;}
.ls1f{letter-spacing:62.285440pt;}
.ls1c{letter-spacing:66.125440pt;}
.ls22{letter-spacing:85.645440pt;}
.ls23{letter-spacing:89.165440pt;}
.ls21{letter-spacing:103.565440pt;}
.ls2a{letter-spacing:148.736000pt;}
.ls5e{letter-spacing:377.515840pt;}
.ls0{letter-spacing:395.115840pt;}
.ws45{word-spacing:-58.560000pt;}
.ws40{word-spacing:-28.288000pt;}
.ws81{word-spacing:-28.160000pt;}
.ws66{word-spacing:-28.032000pt;}
.ws0{word-spacing:-25.472000pt;}
.ws43{word-spacing:-18.882240pt;}
.wsba{word-spacing:-18.796800pt;}
.ws2{word-spacing:-18.711360pt;}
.ws82{word-spacing:-14.528000pt;}
.wsb9{word-spacing:-14.336000pt;}
.ws35{word-spacing:-14.272000pt;}
.ws34{word-spacing:-14.208000pt;}
.ws3{word-spacing:-14.183040pt;}
.ws33{word-spacing:-14.144000pt;}
.ws37{word-spacing:-14.080000pt;}
.ws36{word-spacing:-14.016000pt;}
.ws38{word-spacing:-13.952000pt;}
.ws83{word-spacing:-13.351680pt;}
.ws64{word-spacing:-13.234560pt;}
.ws84{word-spacing:-13.176000pt;}
.ws42{word-spacing:-13.000320pt;}
.ws44{word-spacing:-12.941760pt;}
.ws63{word-spacing:-12.883200pt;}
.ws4{word-spacing:-12.824640pt;}
.ws41{word-spacing:-12.766080pt;}
.ws14{word-spacing:-11.917120pt;}
.ws13{word-spacing:-11.863680pt;}
.ws1d{word-spacing:-11.810240pt;}
.ws1c{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.703360pt;}
.ws17{word-spacing:-11.649920pt;}
.ws1b{word-spacing:-11.596480pt;}
.ws16{word-spacing:-11.543040pt;}
.ws3c{word-spacing:-11.489600pt;}
.ws18{word-spacing:-10.704000pt;}
.ws1f{word-spacing:-10.656000pt;}
.ws1e{word-spacing:-10.608000pt;}
.wsb6{word-spacing:-10.560000pt;}
.ws19{word-spacing:-10.512000pt;}
.ws1a{word-spacing:-10.464000pt;}
.wscb{word-spacing:-3.337920pt;}
.wsc6{word-spacing:-3.279360pt;}
.wsbd{word-spacing:-3.220800pt;}
.wscc{word-spacing:-3.103680pt;}
.wsa7{word-spacing:-3.045120pt;}
.ws6e{word-spacing:-2.928000pt;}
.ws88{word-spacing:-2.576640pt;}
.wsd8{word-spacing:-2.518080pt;}
.wsab{word-spacing:-2.342400pt;}
.ws54{word-spacing:-2.283840pt;}
.wscd{word-spacing:-1.932480pt;}
.wsce{word-spacing:-1.873920pt;}
.ws6d{word-spacing:-1.815360pt;}
.wsac{word-spacing:-1.698240pt;}
.ws6c{word-spacing:-1.639680pt;}
.wsb1{word-spacing:-1.464000pt;}
.wsbc{word-spacing:-1.346880pt;}
.wsb2{word-spacing:-1.288320pt;}
.ws75{word-spacing:-1.229760pt;}
.ws71{word-spacing:-1.171200pt;}
.wsbe{word-spacing:-1.054080pt;}
.ws9d{word-spacing:-0.995520pt;}
.wsbb{word-spacing:-0.761280pt;}
.wsa0{word-spacing:-0.702720pt;}
.ws8b{word-spacing:-0.527040pt;}
.ws26{word-spacing:-0.480000pt;}
.wsc9{word-spacing:-0.468480pt;}
.ws39{word-spacing:-0.448000pt;}
.ws24{word-spacing:-0.432000pt;}
.ws3e{word-spacing:-0.427520pt;}
.ws4e{word-spacing:-0.409920pt;}
.ws23{word-spacing:-0.374080pt;}
.ws7a{word-spacing:-0.351360pt;}
.ws74{word-spacing:-0.292800pt;}
.ws21{word-spacing:-0.267200pt;}
.wsc{word-spacing:-0.256000pt;}
.ws4c{word-spacing:-0.234240pt;}
.ws4a{word-spacing:-0.175680pt;}
.wsb8{word-spacing:-0.144000pt;}
.ws1{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.127680pt;}
.ws5d{word-spacing:-0.117120pt;}
.ws22{word-spacing:-0.106880pt;}
.ws27{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.085440pt;}
.ws9{word-spacing:-0.085120pt;}
.ws61{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.058560pt;}
.ws2b{word-spacing:-0.053440pt;}
.ws25{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws31{word-spacing:0.048000pt;}
.ws29{word-spacing:0.053440pt;}
.ws51{word-spacing:0.058560pt;}
.ws3a{word-spacing:0.064000pt;}
.wsb7{word-spacing:0.096000pt;}
.ws2a{word-spacing:0.106880pt;}
.ws4b{word-spacing:0.117120pt;}
.ws3d{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.144000pt;}
.ws20{word-spacing:0.160320pt;}
.wse{word-spacing:0.170880pt;}
.ws28{word-spacing:0.213760pt;}
.ws5c{word-spacing:0.234240pt;}
.ws99{word-spacing:0.256320pt;}
.ws3f{word-spacing:0.267200pt;}
.ws96{word-spacing:0.292800pt;}
.ws4d{word-spacing:0.351360pt;}
.ws46{word-spacing:0.409920pt;}
.ws7c{word-spacing:0.585600pt;}
.ws47{word-spacing:0.644160pt;}
.wsa8{word-spacing:0.936960pt;}
.ws11{word-spacing:0.995520pt;}
.ws77{word-spacing:1.054080pt;}
.ws7{word-spacing:1.191680pt;}
.ws57{word-spacing:1.229760pt;}
.ws56{word-spacing:1.288320pt;}
.wsca{word-spacing:1.522560pt;}
.ws4f{word-spacing:1.581120pt;}
.ws78{word-spacing:1.639680pt;}
.ws5b{word-spacing:2.049600pt;}
.ws80{word-spacing:2.225280pt;}
.ws9a{word-spacing:2.342400pt;}
.ws3b{word-spacing:2.432000pt;}
.ws9e{word-spacing:2.459520pt;}
.ws7f{word-spacing:2.518080pt;}
.wsb{word-spacing:2.688000pt;}
.ws55{word-spacing:2.693760pt;}
.ws10{word-spacing:2.819520pt;}
.ws72{word-spacing:2.869440pt;}
.ws73{word-spacing:2.928000pt;}
.wse1{word-spacing:2.986560pt;}
.wsf{word-spacing:2.990400pt;}
.ws62{word-spacing:3.072000pt;}
.wsa6{word-spacing:3.162240pt;}
.ws70{word-spacing:3.337920pt;}
.ws6f{word-spacing:3.455040pt;}
.ws69{word-spacing:3.513600pt;}
.ws5e{word-spacing:3.806400pt;}
.wsd6{word-spacing:3.923520pt;}
.wsda{word-spacing:4.040640pt;}
.ws68{word-spacing:4.099200pt;}
.ws58{word-spacing:4.450560pt;}
.ws6b{word-spacing:4.567680pt;}
.wsb0{word-spacing:4.684800pt;}
.ws59{word-spacing:4.743360pt;}
.ws52{word-spacing:4.977600pt;}
.ws53{word-spacing:5.036160pt;}
.wsd9{word-spacing:5.094720pt;}
.ws50{word-spacing:5.153280pt;}
.ws48{word-spacing:5.738880pt;}
.ws49{word-spacing:5.797440pt;}
.ws93{word-spacing:5.973120pt;}
.ws94{word-spacing:6.031680pt;}
.wse0{word-spacing:6.383040pt;}
.wsd2{word-spacing:6.500160pt;}
.wsd4{word-spacing:6.617280pt;}
.wsc8{word-spacing:6.675840pt;}
.wsc7{word-spacing:6.734400pt;}
.ws8c{word-spacing:6.851520pt;}
.ws8d{word-spacing:7.027200pt;}
.wsde{word-spacing:7.085760pt;}
.wsdb{word-spacing:7.320000pt;}
.wsdc{word-spacing:7.378560pt;}
.ws8a{word-spacing:7.671360pt;}
.ws89{word-spacing:7.729920pt;}
.ws5a{word-spacing:7.964160pt;}
.ws6{word-spacing:8.214080pt;}
.wsbf{word-spacing:8.608320pt;}
.ws76{word-spacing:8.901120pt;}
.ws9f{word-spacing:9.076800pt;}
.wsc4{word-spacing:9.252480pt;}
.ws79{word-spacing:9.369600pt;}
.wsa5{word-spacing:9.545280pt;}
.wsc5{word-spacing:9.603840pt;}
.ws67{word-spacing:9.720960pt;}
.ws95{word-spacing:9.896640pt;}
.wsdd{word-spacing:10.013760pt;}
.wsa{word-spacing:10.112000pt;}
.wsb4{word-spacing:10.189440pt;}
.wsd5{word-spacing:10.540800pt;}
.wsb3{word-spacing:10.599360pt;}
.ws65{word-spacing:10.833600pt;}
.wsaa{word-spacing:11.009280pt;}
.wsc1{word-spacing:11.067840pt;}
.wsc0{word-spacing:11.126400pt;}
.wsa9{word-spacing:11.184960pt;}
.wsd1{word-spacing:11.302080pt;}
.ws5f{word-spacing:11.419200pt;}
.ws60{word-spacing:11.477760pt;}
.wsd3{word-spacing:11.829120pt;}
.wsb5{word-spacing:12.121920pt;}
.ws2c{word-spacing:12.451520pt;}
.ws7b{word-spacing:12.766080pt;}
.ws8f{word-spacing:13.000320pt;}
.ws8e{word-spacing:13.058880pt;}
.wsae{word-spacing:13.878720pt;}
.wsad{word-spacing:14.054400pt;}
.wsaf{word-spacing:14.112960pt;}
.wsdf{word-spacing:14.347200pt;}
.wsa1{word-spacing:14.698560pt;}
.ws90{word-spacing:14.815680pt;}
.wse2{word-spacing:14.991360pt;}
.ws92{word-spacing:15.049920pt;}
.ws91{word-spacing:15.342720pt;}
.wsd7{word-spacing:15.986880pt;}
.ws9c{word-spacing:16.104000pt;}
.ws9b{word-spacing:16.279680pt;}
.wsa3{word-spacing:17.099520pt;}
.wsa2{word-spacing:17.275200pt;}
.wsa4{word-spacing:17.333760pt;}
.wse5{word-spacing:18.856320pt;}
.wsc3{word-spacing:19.617600pt;}
.wsc2{word-spacing:19.734720pt;}
.ws7d{word-spacing:19.793280pt;}
.ws7e{word-spacing:19.851840pt;}
.wse8{word-spacing:21.550080pt;}
.wse7{word-spacing:21.725760pt;}
.wse6{word-spacing:22.369920pt;}
.ws86{word-spacing:23.424000pt;}
.ws85{word-spacing:23.599680pt;}
.ws87{word-spacing:23.658240pt;}
.ws30{word-spacing:25.968000pt;}
.ws2f{word-spacing:26.928000pt;}
.ws6a{word-spacing:29.397120pt;}
.wscf{word-spacing:29.748480pt;}
.wsd0{word-spacing:29.807040pt;}
.ws98{word-spacing:39.040000pt;}
.ws97{word-spacing:39.424000pt;}
.ws2d{word-spacing:45.984000pt;}
.wse3{word-spacing:52.059840pt;}
.wse4{word-spacing:52.118400pt;}
.ws32{word-spacing:97.200000pt;}
._f{margin-left:-13.888000pt;}
._10{margin-left:-11.776000pt;}
._b{margin-left:-10.176000pt;}
._11{margin-left:-9.216000pt;}
._d{margin-left:-8.128000pt;}
._c{margin-left:-7.168000pt;}
._e{margin-left:-6.208000pt;}
._2{margin-left:-3.200000pt;}
._3{margin-left:-2.176000pt;}
._4{margin-left:-0.960000pt;}
._0{width:0.893760pt;}
._5{width:1.978560pt;}
._15{width:2.944000pt;}
._16{width:4.032000pt;}
._13{width:5.122560pt;}
._1{width:7.424000pt;}
._17{width:9.135072pt;}
._1b{width:10.174080pt;}
._1d{width:11.184960pt;}
._1a{width:14.874240pt;}
._19{width:16.455360pt;}
._1e{width:20.505600pt;}
._18{width:24.496416pt;}
._1f{width:30.216960pt;}
._20{width:52.673280pt;}
._7{width:76.786240pt;}
._14{width:149.972160pt;}
._8{width:165.286400pt;}
._9{width:177.046720pt;}
._12{width:739.840000pt;}
._a{width:753.920000pt;}
._6{width:755.131200pt;}
._1c{width:757.915200pt;}
.fs1{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.440000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.600000pt;}
.y7c{bottom:4.080000pt;}
.y77{bottom:4.160000pt;}
.y34{bottom:9.520000pt;}
.y2d{bottom:9.600000pt;}
.y33{bottom:10.800000pt;}
.y2c{bottom:10.880000pt;}
.y28{bottom:14.880000pt;}
.y2{bottom:18.800000pt;}
.y31{bottom:22.080000pt;}
.y2f{bottom:23.359867pt;}
.y4f{bottom:23.360000pt;}
.y50{bottom:23.440000pt;}
.y3b{bottom:25.200000pt;}
.y1b{bottom:25.280000pt;}
.y1d{bottom:26.480000pt;}
.y5{bottom:27.599280pt;}
.y25{bottom:31.680000pt;}
.y24{bottom:31.760000pt;}
.y48{bottom:31.840000pt;}
.y46{bottom:31.920000pt;}
.y43{bottom:32.560000pt;}
.y3{bottom:33.840000pt;}
.y53{bottom:36.160000pt;}
.y54{bottom:37.440000pt;}
.y4{bottom:40.080000pt;}
.y41{bottom:40.800000pt;}
.y3d{bottom:40.880000pt;}
.y1f{bottom:48.560000pt;}
.yd8{bottom:112.721840pt;}
.y102{bottom:114.310480pt;}
.y17e{bottom:121.306400pt;}
.yd7{bottom:129.923840pt;}
.y101{bottom:131.512480pt;}
.y17d{bottom:138.508400pt;}
.y5b{bottom:142.320000pt;}
.y158{bottom:146.152000pt;}
.yd6{bottom:147.125840pt;}
.y100{bottom:148.714480pt;}
.y17c{bottom:156.515600pt;}
.y157{bottom:163.354000pt;}
.yd5{bottom:164.240000pt;}
.yff{bottom:165.916480pt;}
.y5a{bottom:167.440000pt;}
.y17b{bottom:173.717600pt;}
.y156{bottom:180.556000pt;}
.yd4{bottom:181.760000pt;}
.yfe{bottom:183.118480pt;}
.y59{bottom:190.640000pt;}
.y17a{bottom:190.919600pt;}
.y155{bottom:197.758000pt;}
.yfd{bottom:200.320480pt;}
.y57{bottom:202.800000pt;}
.y129{bottom:206.640000pt;}
.y179{bottom:208.121600pt;}
.y58{bottom:212.080000pt;}
.yd3{bottom:212.880000pt;}
.y154{bottom:214.960000pt;}
.yfc{bottom:217.522480pt;}
.y178{bottom:225.323600pt;}
.y128{bottom:232.000000pt;}
.y153{bottom:232.400000pt;}
.y52{bottom:238.240000pt;}
.yfb{bottom:241.444240pt;}
.y177{bottom:242.525600pt;}
.yd2{bottom:246.560000pt;}
.y56{bottom:247.520000pt;}
.y127{bottom:257.822320pt;}
.yfa{bottom:258.646240pt;}
.y176{bottom:259.727600pt;}
.y152{bottom:261.360000pt;}
.y55{bottom:261.600000pt;}
.yf9{bottom:275.760400pt;}
.y175{bottom:276.929600pt;}
.yd1{bottom:280.560000pt;}
.y126{bottom:282.388240pt;}
.y4e{bottom:287.760000pt;}
.ya1{bottom:293.760000pt;}
.y174{bottom:294.131600pt;}
.y151{bottom:295.360000pt;}
.y51{bottom:297.120000pt;}
.yf8{bottom:299.682160pt;}
.yd0{bottom:306.293200pt;}
.y125{bottom:306.310000pt;}
.ya0{bottom:311.280000pt;}
.y173{bottom:311.333600pt;}
.y150{bottom:320.476000pt;}
.y4d{bottom:323.280000pt;}
.y124{bottom:323.512000pt;}
.yf7{bottom:323.516080pt;}
.y73{bottom:323.616000pt;}
.y172{bottom:328.447760pt;}
.ycf{bottom:330.214960pt;}
.y12e{bottom:333.200000pt;}
.y9f{bottom:336.356480pt;}
.y14f{bottom:337.678000pt;}
.y123{bottom:340.714000pt;}
.yf6{bottom:340.718080pt;}
.y12d{bottom:344.640000pt;}
.y171{bottom:345.649760pt;}
.y4c{bottom:346.240000pt;}
.yce{bottom:347.416960pt;}
.y9e{bottom:353.558480pt;}
.y14e{bottom:354.880000pt;}
.y122{bottom:357.916000pt;}
.yf5{bottom:357.920080pt;}
.y170{bottom:362.851760pt;}
.ycd{bottom:364.618960pt;}
.y9d{bottom:370.760480pt;}
.y14d{bottom:372.320000pt;}
.y72{bottom:374.720000pt;}
.y121{bottom:375.118000pt;}
.yf4{bottom:375.122080pt;}
.y4b{bottom:378.476000pt;}
.y16f{bottom:380.053760pt;}
.ycc{bottom:381.820960pt;}
.y120{bottom:392.320000pt;}
.y9c{bottom:394.594400pt;}
.y16e{bottom:397.255760pt;}
.y14c{bottom:398.880000pt;}
.yf3{bottom:398.956000pt;}
.ycb{bottom:399.022960pt;}
.y4a{bottom:399.200000pt;}
.y71{bottom:408.720000pt;}
.y11f{bottom:409.760000pt;}
.y45{bottom:411.360000pt;}
.y9b{bottom:411.796400pt;}
.y16d{bottom:414.457760pt;}
.yf2{bottom:416.158000pt;}
.yca{bottom:416.224960pt;}
.y49{bottom:420.880000pt;}
.y70{bottom:427.440000pt;}
.y47{bottom:427.600000pt;}
.y11e{bottom:429.360000pt;}
.y14b{bottom:429.713120pt;}
.y16c{bottom:431.659760pt;}
.yf1{bottom:433.360000pt;}
.yc9{bottom:433.426960pt;}
.y9a{bottom:435.630320pt;}
.y6f{bottom:446.240000pt;}
.y14a{bottom:446.988320pt;}
.y16b{bottom:448.861760pt;}
.yc8{bottom:450.628960pt;}
.y11d{bottom:450.720000pt;}
.yf0{bottom:450.800000pt;}
.y42{bottom:456.560000pt;}
.y99{bottom:459.552080pt;}
.y6e{bottom:464.960000pt;}
.y149{bottom:465.068720pt;}
.y16a{bottom:466.868960pt;}
.yc7{bottom:467.830960pt;}
.yef{bottom:470.320000pt;}
.y11c{bottom:475.826560pt;}
.y98{bottom:476.754080pt;}
.y44{bottom:479.520000pt;}
.y19{bottom:479.694480pt;}
.y148{bottom:483.075920pt;}
.y169{bottom:484.070960pt;}
.yc6{bottom:485.032960pt;}
.y11b{bottom:493.028560pt;}
.y97{bottom:493.956080pt;}
.y6d{bottom:494.000000pt;}
.yee{bottom:495.516000pt;}
.y147{bottom:501.083120pt;}
.y168{bottom:501.272960pt;}
.yc5{bottom:502.234960pt;}
.y3c{bottom:502.560000pt;}
.y18{bottom:503.528400pt;}
.y11a{bottom:510.230560pt;}
.y96{bottom:511.070240pt;}
.y40{bottom:512.075200pt;}
.yed{bottom:512.718000pt;}
.y167{bottom:518.474960pt;}
.y146{bottom:519.090320pt;}
.yc4{bottom:526.068880pt;}
.y119{bottom:527.432560pt;}
.y17{bottom:527.450160pt;}
.y3e{bottom:527.760000pt;}
.y3f{bottom:527.840000pt;}
.y6c{bottom:527.920000pt;}
.y95{bottom:529.077440pt;}
.yec{bottom:529.920000pt;}
.ya6{bottom:531.840000pt;}
.y166{bottom:535.676960pt;}
.y145{bottom:537.097520pt;}
.yc3{bottom:543.270880pt;}
.y118{bottom:544.634560pt;}
.y94{bottom:546.279440pt;}
.y6b{bottom:546.640000pt;}
.yeb{bottom:547.360000pt;}
.ya5{bottom:548.400000pt;}
.y16{bottom:551.284080pt;}
.y165{bottom:552.878960pt;}
.y144{bottom:555.090080pt;}
.y39{bottom:556.720000pt;}
.yc2{bottom:560.472880pt;}
.y117{bottom:561.836560pt;}
.y93{bottom:563.481440pt;}
.y195{bottom:566.080000pt;}
.y3a{bottom:566.320000pt;}
.y15{bottom:568.486080pt;}
.y164{bottom:570.080960pt;}
.y6a{bottom:572.000000pt;}
.y143{bottom:573.097280pt;}
.yea{bottom:573.920000pt;}
.yc1{bottom:577.674880pt;}
.yb0{bottom:578.000000pt;}
.y92{bottom:581.488640pt;}
.y116{bottom:585.670480pt;}
.y163{bottom:587.282960pt;}
.y142{bottom:591.104480pt;}
.y14{bottom:592.320000pt;}
.y38{bottom:595.360000pt;}
.y194{bottom:596.960000pt;}
.y69{bottom:597.440000pt;}
.y91{bottom:598.690640pt;}
.yc0{bottom:601.508800pt;}
.ye9{bottom:604.160000pt;}
.y162{bottom:604.484960pt;}
.yaf{bottom:606.080000pt;}
.y141{bottom:609.111680pt;}
.y115{bottom:609.592240pt;}
.y13{bottom:610.980080pt;}
.y90{bottom:615.892640pt;}
.y37{bottom:618.320000pt;}
.ybf{bottom:618.710800pt;}
.y161{bottom:621.599120pt;}
.y193{bottom:622.135680pt;}
.y68{bottom:622.880000pt;}
.y114{bottom:626.794240pt;}
.y140{bottom:627.118880pt;}
.y8f{bottom:633.094640pt;}
.ye8{bottom:634.080000pt;}
.ybe{bottom:635.912800pt;}
.y12{bottom:636.014000pt;}
.y192{bottom:639.337680pt;}
.y113{bottom:643.996240pt;}
.y160{bottom:646.326080pt;}
.y67{bottom:648.320000pt;}
.yae{bottom:650.240000pt;}
.y8e{bottom:650.296640pt;}
.y36{bottom:650.556000pt;}
.y13f{bottom:651.758000pt;}
.y191{bottom:656.539680pt;}
.ybd{bottom:659.746720pt;}
.y11{bottom:660.983840pt;}
.y112{bottom:661.198240pt;}
.y8d{bottom:667.498640pt;}
.ye7{bottom:667.744000pt;}
.y13e{bottom:668.960000pt;}
.y15f{bottom:670.160000pt;}
.y35{bottom:671.280000pt;}
.y66{bottom:673.680000pt;}
.y190{bottom:673.741680pt;}
.ybc{bottom:676.948720pt;}
.y111{bottom:678.312400pt;}
.yad{bottom:678.400000pt;}
.y32{bottom:683.440000pt;}
.y8c{bottom:684.700640pt;}
.y10{bottom:686.017760pt;}
.y13d{bottom:686.480000pt;}
.y18f{bottom:690.943680pt;}
.y15e{bottom:694.240000pt;}
.y19e{bottom:694.720000pt;}
.y65{bottom:699.120000pt;}
.ybb{bottom:700.782640pt;}
.y110{bottom:702.234160pt;}
.y8b{bottom:702.707840pt;}
.ye6{bottom:705.280000pt;}
.y2e{bottom:706.400000pt;}
.yac{bottom:706.560000pt;}
.y18e{bottom:708.057840pt;}
.y15d{bottom:712.788160pt;}
.y13c{bottom:713.040000pt;}
.y19d{bottom:713.440000pt;}
.y30{bottom:715.680000pt;}
.yf{bottom:717.694640pt;}
.y8a{bottom:719.909840pt;}
.y64{bottom:724.560000pt;}
.yba{bottom:724.704400pt;}
.y18d{bottom:725.259840pt;}
.y10f{bottom:726.068080pt;}
.y15c{bottom:729.990160pt;}
.y19c{bottom:731.900000pt;}
.yab{bottom:734.640000pt;}
.y89{bottom:737.111840pt;}
.ye5{bottom:739.200000pt;}
.y2b{bottom:741.840000pt;}
.y18c{bottom:742.461840pt;}
.yb9{bottom:742.711600pt;}
.ye{bottom:742.728560pt;}
.y10e{bottom:743.270080pt;}
.y13b{bottom:743.276160pt;}
.y15b{bottom:747.192160pt;}
.y19b{bottom:749.102000pt;}
.y63{bottom:750.000000pt;}
.y88{bottom:754.313840pt;}
.y18b{bottom:759.663840pt;}
.y10d{bottom:760.472080pt;}
.yb8{bottom:760.718800pt;}
.y7f{bottom:761.120000pt;}
.yaa{bottom:762.800000pt;}
.ye4{bottom:764.394160pt;}
.y19a{bottom:766.304000pt;}
.y13a{bottom:767.110080pt;}
.y87{bottom:772.160000pt;}
.y2a{bottom:774.084000pt;}
.yd{bottom:774.320000pt;}
.y62{bottom:775.440000pt;}
.y18a{bottom:776.865840pt;}
.y10c{bottom:777.674080pt;}
.y7e{bottom:778.640000pt;}
.ye3{bottom:781.596160pt;}
.y199{bottom:783.506000pt;}
.y139{bottom:784.312080pt;}
.yb7{bottom:785.357920pt;}
.y15a{bottom:788.228080pt;}
.ya9{bottom:790.960000pt;}
.y189{bottom:794.067840pt;}
.y10b{bottom:794.876080pt;}
.y29{bottom:794.880000pt;}
.y7d{bottom:796.160000pt;}
.y86{bottom:797.520000pt;}
.ye2{bottom:798.710320pt;}
.y198{bottom:800.708000pt;}
.y61{bottom:800.880000pt;}
.y138{bottom:801.514080pt;}
.yb6{bottom:802.559920pt;}
.yc{bottom:804.560000pt;}
.y159{bottom:805.430080pt;}
.y27{bottom:806.960000pt;}
.y188{bottom:811.269840pt;}
.y7b{bottom:813.760000pt;}
.y197{bottom:817.910000pt;}
.y10a{bottom:818.710000pt;}
.ya8{bottom:819.040000pt;}
.yb5{bottom:819.761920pt;}
.ye1{bottom:822.632080pt;}
.y137{bottom:825.348000pt;}
.y12c{bottom:826.160000pt;}
.y60{bottom:826.240000pt;}
.y85{bottom:828.392240pt;}
.y187{bottom:828.471840pt;}
.yb{bottom:829.843120pt;}
.y7a{bottom:831.280000pt;}
.y196{bottom:835.112000pt;}
.y23{bottom:835.120000pt;}
.y109{bottom:835.912000pt;}
.ye0{bottom:839.834080pt;}
.y136{bottom:842.550000pt;}
.yb4{bottom:844.240000pt;}
.y186{bottom:845.673840pt;}
.ya7{bottom:847.200000pt;}
.y79{bottom:848.800000pt;}
.y26{bottom:850.080000pt;}
.y5f{bottom:851.680000pt;}
.y84{bottom:852.314000pt;}
.y108{bottom:853.114000pt;}
.ydf{bottom:857.036080pt;}
.y12b{bottom:857.280000pt;}
.y135{bottom:859.752000pt;}
.ya{bottom:861.520000pt;}
.y185{bottom:862.875840pt;}
.y78{bottom:866.320000pt;}
.y12a{bottom:868.720000pt;}
.y83{bottom:869.516000pt;}
.y107{bottom:870.316000pt;}
.yb3{bottom:874.160000pt;}
.yde{bottom:874.238080pt;}
.y134{bottom:876.954000pt;}
.y5e{bottom:877.120000pt;}
.y184{bottom:880.077840pt;}
.y1e{bottom:880.240000pt;}
.y76{bottom:883.840000pt;}
.y82{bottom:886.718000pt;}
.y106{bottom:887.518000pt;}
.y9{bottom:891.840000pt;}
.y133{bottom:894.156000pt;}
.y22{bottom:895.126480pt;}
.y183{bottom:897.279840pt;}
.ydd{bottom:898.072000pt;}
.y75{bottom:901.440000pt;}
.y5d{bottom:902.560000pt;}
.y81{bottom:903.920000pt;}
.yb2{bottom:904.640000pt;}
.y105{bottom:904.720000pt;}
.y132{bottom:911.358000pt;}
.y21{bottom:911.920000pt;}
.y20{bottom:912.000000pt;}
.y8{bottom:912.864000pt;}
.y182{bottom:914.481840pt;}
.ydc{bottom:915.274000pt;}
.ya4{bottom:916.000000pt;}
.y80{bottom:921.360000pt;}
.y104{bottom:922.160000pt;}
.y5c{bottom:928.000000pt;}
.y131{bottom:928.560000pt;}
.y181{bottom:931.683840pt;}
.ydb{bottom:932.476000pt;}
.yb1{bottom:932.480000pt;}
.y103{bottom:941.680000pt;}
.y1a{bottom:942.160000pt;}
.ya3{bottom:942.560000pt;}
.y130{bottom:946.000000pt;}
.y180{bottom:948.885840pt;}
.yda{bottom:949.678000pt;}
.y74{bottom:950.320000pt;}
.y7{bottom:950.400000pt;}
.y1c{bottom:951.760000pt;}
.y12f{bottom:965.520000pt;}
.y17f{bottom:966.000000pt;}
.ya2{bottom:966.800000pt;}
.yd9{bottom:966.880000pt;}
.y1{bottom:1060.160000pt;}
.h1a{height:16.800000pt;}
.h1b{height:16.878667pt;}
.h19{height:16.880000pt;}
.h13{height:22.241333pt;}
.h11{height:22.320000pt;}
.hf{height:27.520000pt;}
.h4{height:30.195156pt;}
.hb{height:33.656250pt;}
.h10{height:34.054688pt;}
.h12{height:34.800000pt;}
.ha{height:37.470625pt;}
.hd{height:37.914219pt;}
.h9{height:37.920000pt;}
.h1c{height:40.574531pt;}
.h7{height:41.546719pt;}
.h1e{height:42.318750pt;}
.h3{height:43.998667pt;}
.h1d{height:44.343750pt;}
.he{height:44.400000pt;}
.h16{height:44.560000pt;}
.h18{height:44.875000pt;}
.h15{height:45.280000pt;}
.h2{height:45.406250pt;}
.h17{height:48.881333pt;}
.h14{height:53.520000pt;}
.h8{height:60.617344pt;}
.hc{height:61.280000pt;}
.h5{height:74.849130pt;}
.h6{height:90.812500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:14.080000pt;}
.w16{width:56.640000pt;}
.we{width:112.721333pt;}
.w17{width:116.880000pt;}
.w4{width:119.040000pt;}
.w10{width:122.160000pt;}
.w2{width:122.560000pt;}
.wa{width:127.361333pt;}
.w5{width:137.681333pt;}
.wc{width:158.640000pt;}
.wb{width:158.880000pt;}
.w15{width:159.360000pt;}
.wf{width:159.520000pt;}
.w11{width:169.520000pt;}
.w13{width:179.440000pt;}
.w14{width:225.840000pt;}
.w8{width:247.038667pt;}
.wd{width:292.320000pt;}
.w7{width:293.120000pt;}
.w9{width:318.240000pt;}
.w18{width:448.400000pt;}
.w3{width:520.080000pt;}
.w12{width:565.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x2{left:37.440000pt;}
.x1{left:85.120000pt;}
.x9{left:113.440000pt;}
.x3{left:115.040000pt;}
.x24{left:119.360000pt;}
.xf{left:120.960000pt;}
.x23{left:124.000000pt;}
.x1e{left:129.440000pt;}
.x21{left:137.440000pt;}
.x1f{left:145.440000pt;}
.x4{left:160.000000pt;}
.xd{left:161.044240pt;}
.x7{left:164.640000pt;}
.x6{left:167.200000pt;}
.x28{left:171.440000pt;}
.x27{left:175.120000pt;}
.x26{left:178.800000pt;}
.x2b{left:185.410240pt;}
.x25{left:209.440000pt;}
.xa{left:216.240000pt;}
.x20{left:231.280000pt;}
.x8{left:232.512000pt;}
.x10{left:233.440000pt;}
.x18{left:236.560000pt;}
.x19{left:243.440000pt;}
.x1d{left:253.440000pt;}
.x2c{left:257.365840pt;}
.xb{left:277.201440pt;}
.x2d{left:281.375440pt;}
.x1b{left:293.840000pt;}
.x1c{left:300.720000pt;}
.x2e{left:305.370400pt;}
.xe{left:349.930720pt;}
.x13{left:361.440000pt;}
.x14{left:368.320000pt;}
.x11{left:371.840000pt;}
.x12{left:386.560000pt;}
.xc{left:396.880000pt;}
.x17{left:406.720000pt;}
.x1a{left:413.600000pt;}
.x2a{left:452.000000pt;}
.x15{left:521.040000pt;}
.x16{left:527.840000pt;}
.x22{left:681.440000pt;}
.x29{left:733.040000pt;}
}




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