
    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_029cb4e465f3d7b59224a6d8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_e302ca14394264dfd85fb757.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_f0328c5dc8d7dfce8d63df86.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_814846a6f70340a1d2b13302.woff')format("woff");}.ff4{font-family:ff4;line-height:1.095215;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_5850b48d43410d4c6bdbea81.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_93f9dce6004ec469faf2662b.woff')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_8b4e3af8aecace6dca4117bf.woff')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_2a5c7cfd2e421182315b40ce.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_280105f912b5efd44717bf8f.woff')format("woff");}.ff9{font-family:ff9;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);}
.v5{vertical-align:-23.759400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160000px;}
.v3{vertical-align:5.760000px;}
.v2{vertical-align:15.840000px;}
.v4{vertical-align:23.759400px;}
.ls4f{letter-spacing:-2.190240px;}
.ls61{letter-spacing:-0.993600px;}
.ls47{letter-spacing:-0.927360px;}
.ls69{letter-spacing:-0.861120px;}
.ls22{letter-spacing:-0.794880px;}
.ls51{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.758160px;}
.ls39{letter-spacing:-0.728640px;}
.ls3b{letter-spacing:-0.662400px;}
.ls38{letter-spacing:-0.596160px;}
.ls10{letter-spacing:-0.589680px;}
.ls52{letter-spacing:-0.529920px;}
.ls16{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.463680px;}
.ls35{letter-spacing:-0.397440px;}
.ls23{letter-spacing:-0.336960px;}
.ls3a{letter-spacing:-0.331200px;}
.ls1{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.264960px;}
.ls12{letter-spacing:-0.252720px;}
.ls2c{letter-spacing:-0.241200px;}
.ls15{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.198720px;}
.ls29{letter-spacing:-0.179280px;}
.ls11{letter-spacing:-0.168480px;}
.ls36{letter-spacing:-0.132480px;}
.ls2a{letter-spacing:-0.119520px;}
.ls48{letter-spacing:-0.090720px;}
.lsf{letter-spacing:-0.084240px;}
.ls21{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.066240px;}
.ls2b{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.033120px;}
.ls46{letter-spacing:0.045360px;}
.ls2d{letter-spacing:0.059760px;}
.ls26{letter-spacing:0.064080px;}
.ls17{letter-spacing:0.066240px;}
.ls1c{letter-spacing:0.072000px;}
.ls40{letter-spacing:0.092736px;}
.ls2{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.132480px;}
.ls1d{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.168480px;}
.ls27{letter-spacing:0.179280px;}
.ls2e{letter-spacing:0.192960px;}
.ls37{letter-spacing:0.198720px;}
.lsd{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.264960px;}
.ls9{letter-spacing:0.288000px;}
.ls67{letter-spacing:0.317952px;}
.ls8{letter-spacing:0.331200px;}
.ls49{letter-spacing:0.336960px;}
.ls55{letter-spacing:0.337824px;}
.ls28{letter-spacing:0.358560px;}
.ls4a{letter-spacing:0.421200px;}
.ls6a{letter-spacing:0.758160px;}
.ls5e{letter-spacing:0.861120px;}
.ls5f{letter-spacing:0.887616px;}
.ls4{letter-spacing:0.894240px;}
.ls5{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.152000px;}
.ls7{letter-spacing:1.260000px;}
.ls14{letter-spacing:1.350000px;}
.ls63{letter-spacing:1.589760px;}
.ls53{letter-spacing:2.318400px;}
.ls54{letter-spacing:3.047040px;}
.ls42{letter-spacing:3.775680px;}
.ls43{letter-spacing:4.438080px;}
.ls3d{letter-spacing:5.895360px;}
.ls3f{letter-spacing:6.624000px;}
.ls3e{letter-spacing:6.670368px;}
.ls60{letter-spacing:8.081280px;}
.ls58{letter-spacing:8.763552px;}
.ls4e{letter-spacing:8.809920px;}
.ls5c{letter-spacing:9.538560px;}
.ls6e{letter-spacing:10.200960px;}
.ls33{letter-spacing:10.929600px;}
.ls59{letter-spacing:11.658240px;}
.ls6f{letter-spacing:12.204720px;}
.ls5b{letter-spacing:12.386880px;}
.ls66{letter-spacing:12.406752px;}
.ls64{letter-spacing:13.115520px;}
.ls5a{letter-spacing:15.301440px;}
.ls6d{letter-spacing:15.963840px;}
.ls56{letter-spacing:16.692480px;}
.ls57{letter-spacing:16.778592px;}
.ls62{letter-spacing:19.607040px;}
.ls5d{letter-spacing:21.726720px;}
.ls44{letter-spacing:22.455360px;}
.ls65{letter-spacing:31.139424px;}
.ls68{letter-spacing:36.299520px;}
.ls41{letter-spacing:39.214080px;}
.ls6c{letter-spacing:42.443280px;}
.ls3c{letter-spacing:49.824000px;}
.ls4d{letter-spacing:50.011200px;}
.ls4c{letter-spacing:55.411200px;}
.ls45{letter-spacing:59.351040px;}
.ls32{letter-spacing:64.016640px;}
.ls6b{letter-spacing:69.419520px;}
.ls6{letter-spacing:81.576000px;}
.ls24{letter-spacing:86.549760px;}
.lsb{letter-spacing:93.381120px;}
.ls25{letter-spacing:106.709760px;}
.ls30{letter-spacing:117.509760px;}
.ls2f{letter-spacing:150.629760px;}
.lsa{letter-spacing:151.672320px;}
.lse{letter-spacing:218.655360px;}
.lsc{letter-spacing:662.184000px;}
.ls1e{letter-spacing:968.688000px;}
.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;}
}
.ws50{word-spacing:-66.240000px;}
.ws38{word-spacing:-59.760000px;}
.ws7e{word-spacing:-23.418720px;}
.ws31{word-spacing:-23.081760px;}
.ws7f{word-spacing:-22.660560px;}
.ws8{word-spacing:-21.600000px;}
.wsba{word-spacing:-20.304000px;}
.ws82{word-spacing:-19.944000px;}
.ws80{word-spacing:-19.800000px;}
.ws1e{word-spacing:-19.728000px;}
.ws81{word-spacing:-19.224000px;}
.ws5{word-spacing:-18.954000px;}
.ws7{word-spacing:-18.785520px;}
.ws6{word-spacing:-18.448560px;}
.wsd{word-spacing:-18.282240px;}
.ws11{word-spacing:-16.488000px;}
.ws10{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.344000px;}
.wse{word-spacing:-16.056000px;}
.ws9{word-spacing:-15.768000px;}
.ws4e{word-spacing:-15.301440px;}
.wsc{word-spacing:-15.235200px;}
.ws36{word-spacing:-15.168960px;}
.ws33{word-spacing:-15.102720px;}
.ws1f{word-spacing:-15.036480px;}
.wsb{word-spacing:-14.970240px;}
.ws20{word-spacing:-14.904000px;}
.ws35{word-spacing:-14.837760px;}
.ws32{word-spacing:-14.771520px;}
.ws21{word-spacing:-14.705280px;}
.ws39{word-spacing:-14.639040px;}
.ws34{word-spacing:-14.572800px;}
.wsa{word-spacing:-14.506560px;}
.ws96{word-spacing:-14.440320px;}
.ws4b{word-spacing:-14.374080px;}
.ws4a{word-spacing:-14.307840px;}
.ws37{word-spacing:-14.241600px;}
.ws83{word-spacing:-14.175360px;}
.ws95{word-spacing:-13.976640px;}
.ws25{word-spacing:-13.505760px;}
.ws26{word-spacing:-13.446000px;}
.ws27{word-spacing:-13.386240px;}
.ws28{word-spacing:-10.661040px;}
.ws52{word-spacing:-10.296720px;}
.ws51{word-spacing:-10.251360px;}
.ws4f{word-spacing:-9.437760px;}
.wsb8{word-spacing:-3.576960px;}
.ws5d{word-spacing:-3.378240px;}
.wsb1{word-spacing:-3.179520px;}
.ws56{word-spacing:-2.848320px;}
.ws54{word-spacing:-2.649600px;}
.ws55{word-spacing:-2.450880px;}
.ws9d{word-spacing:-2.119680px;}
.ws57{word-spacing:-1.920960px;}
.wsbf{word-spacing:-1.722240px;}
.ws88{word-spacing:-1.391040px;}
.ws49{word-spacing:-1.192320px;}
.ws91{word-spacing:-0.993600px;}
.ws1d{word-spacing:-0.927360px;}
.ws24{word-spacing:-0.728640px;}
.ws8e{word-spacing:-0.662400px;}
.ws3f{word-spacing:-0.596160px;}
.ws3b{word-spacing:-0.529920px;}
.ws7b{word-spacing:-0.463680px;}
.ws3a{word-spacing:-0.331200px;}
.ws2f{word-spacing:-0.289440px;}
.ws4d{word-spacing:-0.264960px;}
.ws7d{word-spacing:-0.226800px;}
.ws1c{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.198720px;}
.ws29{word-spacing:-0.179280px;}
.ws1a{word-spacing:-0.132480px;}
.ws7c{word-spacing:-0.090720px;}
.ws13{word-spacing:-0.090000px;}
.ws4c{word-spacing:-0.066240px;}
.ws2e{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.066240px;}
.ws1b{word-spacing:0.072000px;}
.ws2b{word-spacing:0.119520px;}
.ws66{word-spacing:0.132480px;}
.ws19{word-spacing:0.144000px;}
.ws2d{word-spacing:0.144720px;}
.ws12{word-spacing:0.168480px;}
.ws16{word-spacing:0.198720px;}
.ws53{word-spacing:0.216000px;}
.ws2c{word-spacing:0.239040px;}
.ws62{word-spacing:0.264960px;}
.ws30{word-spacing:0.298800px;}
.ws78{word-spacing:0.331200px;}
.ws8b{word-spacing:0.336960px;}
.ws2a{word-spacing:0.358560px;}
.ws17{word-spacing:0.397440px;}
.ws8a{word-spacing:0.421200px;}
.ws4{word-spacing:0.432000px;}
.ws14{word-spacing:0.504000px;}
.wsad{word-spacing:0.529920px;}
.ws3c{word-spacing:0.596160px;}
.ws8f{word-spacing:0.662400px;}
.ws23{word-spacing:0.673920px;}
.ws5e{word-spacing:0.728640px;}
.ws79{word-spacing:0.794880px;}
.wsb7{word-spacing:0.861120px;}
.ws22{word-spacing:0.927360px;}
.ws90{word-spacing:1.059840px;}
.ws8d{word-spacing:1.095120px;}
.ws67{word-spacing:1.126080px;}
.ws89{word-spacing:1.432080px;}
.ws45{word-spacing:1.457280px;}
.ws85{word-spacing:1.656000px;}
.ws44{word-spacing:1.854720px;}
.wsb2{word-spacing:1.987200px;}
.ws48{word-spacing:2.185920px;}
.ws8c{word-spacing:2.190240px;}
.ws84{word-spacing:2.384640px;}
.ws97{word-spacing:2.450880px;}
.ws86{word-spacing:2.583360px;}
.ws7a{word-spacing:2.914560px;}
.wsab{word-spacing:3.047040px;}
.ws6b{word-spacing:3.113280px;}
.ws6a{word-spacing:3.312000px;}
.ws98{word-spacing:3.643200px;}
.ws63{word-spacing:3.841920px;}
.ws68{word-spacing:4.040640px;}
.ws87{word-spacing:4.106880px;}
.ws70{word-spacing:4.305600px;}
.ws6f{word-spacing:4.504320px;}
.ws74{word-spacing:4.703040px;}
.ws5a{word-spacing:5.034240px;}
.ws42{word-spacing:5.232960px;}
.ws75{word-spacing:5.365440px;}
.ws69{word-spacing:5.431680px;}
.ws58{word-spacing:5.961600px;}
.ws59{word-spacing:6.160320px;}
.wsb9{word-spacing:6.491520px;}
.ws5b{word-spacing:6.690240px;}
.ws5c{word-spacing:6.888960px;}
.ws3{word-spacing:7.128000px;}
.wsbb{word-spacing:7.418880px;}
.wsc9{word-spacing:7.948800px;}
.ws71{word-spacing:8.147520px;}
.wsa8{word-spacing:8.346240px;}
.ws9c{word-spacing:8.677440px;}
.wsb3{word-spacing:8.809920px;}
.ws93{word-spacing:8.876160px;}
.ws94{word-spacing:9.074880px;}
.ws92{word-spacing:9.339840px;}
.wsa2{word-spacing:9.406080px;}
.ws43{word-spacing:9.604800px;}
.wsac{word-spacing:9.737280px;}
.wsa3{word-spacing:9.803520px;}
.wsa4{word-spacing:9.936000px;}
.wsaf{word-spacing:10.267200px;}
.wsae{word-spacing:10.465920px;}
.wsa7{word-spacing:10.995840px;}
.ws40{word-spacing:11.194560px;}
.wsa6{word-spacing:11.459520px;}
.ws6c{word-spacing:11.724480px;}
.ws41{word-spacing:11.923200px;}
.wsa0{word-spacing:12.453120px;}
.wsa1{word-spacing:12.651840px;}
.wsb0{word-spacing:12.983040px;}
.wsb6{word-spacing:13.115520px;}
.ws76{word-spacing:13.181760px;}
.wsc5{word-spacing:13.314240px;}
.ws77{word-spacing:13.380480px;}
.wsc3{word-spacing:13.910400px;}
.wsc4{word-spacing:14.109120px;}
.wsc2{word-spacing:14.440320px;}
.wsc8{word-spacing:14.639040px;}
.wsc7{word-spacing:14.837760px;}
.ws9f{word-spacing:15.168960px;}
.ws6e{word-spacing:15.367680px;}
.wsc1{word-spacing:15.566400px;}
.wsbe{word-spacing:15.831360px;}
.wscb{word-spacing:16.030080px;}
.ws9e{word-spacing:16.228800px;}
.ws9a{word-spacing:16.560000px;}
.ws99{word-spacing:16.758720px;}
.ws9b{word-spacing:16.957440px;}
.ws6d{word-spacing:17.487360px;}
.wscd{word-spacing:18.745920px;}
.wsaa{word-spacing:19.474560px;}
.wsc0{word-spacing:19.673280px;}
.ws3d{word-spacing:20.401920px;}
.ws3e{word-spacing:20.600640px;}
.wsbc{word-spacing:21.594240px;}
.wsbd{word-spacing:21.792960px;}
.wsa5{word-spacing:22.322880px;}
.ws73{word-spacing:22.521600px;}
.ws72{word-spacing:22.720320px;}
.wsca{word-spacing:25.634880px;}
.wsa9{word-spacing:27.025920px;}
.wsb4{word-spacing:31.000320px;}
.wsb5{word-spacing:31.397760px;}
.wscc{word-spacing:31.728960px;}
.ws46{word-spacing:34.511040px;}
.ws47{word-spacing:34.577280px;}
.ws2{word-spacing:39.528000px;}
.ws1{word-spacing:39.960000px;}
.ws5f{word-spacing:43.585920px;}
.ws60{word-spacing:44.115840px;}
.ws61{word-spacing:44.314560px;}
.wsc6{word-spacing:45.573120px;}
.ws64{word-spacing:57.628800px;}
.ws65{word-spacing:57.827520px;}
._17{margin-left:-11.989440px;}
._f{margin-left:-9.948528px;}
._e{margin-left:-8.122320px;}
._2{margin-left:-5.886000px;}
._3{margin-left:-3.916800px;}
._b{margin-left:-2.502576px;}
._1{margin-left:-1.198800px;}
._0{width:1.468800px;}
._15{width:2.739456px;}
._13{width:4.371840px;}
._14{width:6.499872px;}
._1d{width:7.891200px;}
._19{width:9.172800px;}
._1b{width:11.525760px;}
._1c{width:12.525840px;}
._1a{width:16.692480px;}
._12{width:19.828800px;}
._11{width:21.047760px;}
._16{width:22.311360px;}
._1e{width:31.066560px;}
._18{width:67.498560px;}
._a{width:95.803200px;}
._d{width:145.735200px;}
._10{width:190.056240px;}
._7{width:201.226320px;}
._4{width:436.709520px;}
._6{width:471.479040px;}
._5{width:500.028480px;}
._8{width:577.814400px;}
._9{width:673.992000px;}
._c{width:848.998080px;}
.fc7{color:rgb(119,29,135);}
.fc6{color:rgb(61,0,135);}
.fc4{color:rgb(30,73,125);}
.fc3{color:rgb(160,39,181);}
.fc8{color:rgb(249,116,31);}
.fc5{color:transparent;}
.fc1{color:rgb(255,0,186);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fsa{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:216.000000px;}
.fs3{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.780000px;}
.y2e{bottom:3.960000px;}
.y2{bottom:8.460000px;}
.ya3{bottom:8.820000px;}
.y7b{bottom:8.999850px;}
.y7e{bottom:9.000000px;}
.y8b{bottom:29.160000px;}
.y6{bottom:46.080000px;}
.y1c{bottom:46.622160px;}
.y94{bottom:49.320000px;}
.y40{bottom:63.180000px;}
.y5{bottom:69.480000px;}
.y1b{bottom:71.280000px;}
.y15{bottom:75.779850px;}
.ydb{bottom:101.880000px;}
.y3c{bottom:102.242160px;}
.y18d{bottom:104.592960px;}
.y102{bottom:112.879440px;}
.y1df{bottom:114.896160px;}
.y1b9{bottom:115.759440px;}
.y15e{bottom:116.488080px;}
.y18c{bottom:124.746480px;}
.yda{bottom:125.100000px;}
.y3b{bottom:126.900000px;}
.y101{bottom:133.032960px;}
.y12e{bottom:133.926480px;}
.y1b8{bottom:135.912960px;}
.y1de{bottom:139.371840px;}
.y15d{bottom:141.145920px;}
.y18b{bottom:144.900000px;}
.y100{bottom:153.186480px;}
.y12d{bottom:154.080000px;}
.y1b7{bottom:156.066480px;}
.yd9{bottom:157.381920px;}
.y15c{bottom:161.299440px;}
.y1dd{bottom:164.029680px;}
.y18a{bottom:169.572960px;}
.yff{bottom:173.340000px;}
.y12c{bottom:174.479040px;}
.y1b6{bottom:176.220000px;}
.yd8{bottom:180.599040px;}
.y15b{bottom:181.452960px;}
.y3a{bottom:187.740000px;}
.y1dc{bottom:188.687520px;}
.y189{bottom:189.726480px;}
.y12b{bottom:194.632560px;}
.y1b5{bottom:200.880000px;}
.y15a{bottom:201.606480px;}
.yd7{bottom:204.544800px;}
.y39{bottom:209.880000px;}
.yfe{bottom:210.960000px;}
.y1db{bottom:213.345360px;}
.y12a{bottom:214.786080px;}
.y159{bottom:221.760000px;}
.y1b4{bottom:225.602640px;}
.yd6{bottom:227.761920px;}
.y188{bottom:234.540000px;}
.y129{bottom:234.939600px;}
.y1da{bottom:238.003200px;}
.y158{bottom:246.240000px;}
.y38{bottom:248.040000px;}
.y138{bottom:249.531840px;}
.y1b3{bottom:250.078320px;}
.yd5{bottom:251.707680px;}
.y128{bottom:255.093120px;}
.y187{bottom:259.041600px;}
.yfd{bottom:259.219440px;}
.y1d9{bottom:262.661040px;}
.y137{bottom:269.685360px;}
.y1b2{bottom:270.231840px;}
.y157{bottom:270.925920px;}
.y127{bottom:275.246640px;}
.yd4{bottom:275.835600px;}
.yfc{bottom:279.372960px;}
.y37{bottom:282.242160px;}
.y186{bottom:283.699440px;}
.y1d8{bottom:287.318880px;}
.y136{bottom:289.838880px;}
.y1b1{bottom:290.385360px;}
.y156{bottom:291.079440px;}
.y126{bottom:295.400160px;}
.yfb{bottom:299.526480px;}
.yd3{bottom:299.963520px;}
.y185{bottom:303.852960px;}
.y36{bottom:306.900000px;}
.y1d7{bottom:307.472400px;}
.y135{bottom:309.992400px;}
.y1b0{bottom:310.538880px;}
.y155{bottom:311.232960px;}
.y125{bottom:315.388080px;}
.yfa{bottom:319.680000px;}
.yd2{bottom:323.909280px;}
.y184{bottom:324.006480px;}
.y134{bottom:330.145920px;}
.y1af{bottom:330.692400px;}
.y154{bottom:331.386480px;}
.y1d6{bottom:332.130240px;}
.y124{bottom:335.541600px;}
.y35{bottom:339.480000px;}
.yd1{bottom:344.062800px;}
.y183{bottom:344.160000px;}
.y79{bottom:344.169360px;}
.y133{bottom:350.299440px;}
.y1ae{bottom:350.845920px;}
.y153{bottom:351.540000px;}
.y1d5{bottom:352.283760px;}
.y123{bottom:355.695120px;}
.yf9{bottom:357.120000px;}
.yac{bottom:360.362160px;}
.yd0{bottom:364.216320px;}
.y33{bottom:364.680000px;}
.y78{bottom:368.827200px;}
.y182{bottom:368.857440px;}
.y132{bottom:370.452960px;}
.y1ad{bottom:370.999440px;}
.y34{bottom:372.600000px;}
.y122{bottom:375.848640px;}
.y1d4{bottom:376.759440px;}
.ycf{bottom:384.369840px;}
.yab{bottom:385.020000px;}
.y181{bottom:389.010960px;}
.y152{bottom:389.160000px;}
.y131{bottom:390.606480px;}
.y1ac{bottom:391.152960px;}
.y77{bottom:393.485040px;}
.y30{bottom:393.840000px;}
.y121{bottom:396.002160px;}
.y1d3{bottom:396.912960px;}
.y32{bottom:401.580000px;}
.yce{bottom:404.523360px;}
.yf8{bottom:405.366480px;}
.ya9{bottom:406.260000px;}
.y180{bottom:409.164480px;}
.y130{bottom:410.760000px;}
.y1ab{bottom:411.306480px;}
.y76{bottom:413.638560px;}
.yaa{bottom:415.260000px;}
.y120{bottom:416.155680px;}
.y1d2{bottom:421.570800px;}
.y2d{bottom:422.820000px;}
.ycd{bottom:424.676880px;}
.yf7{bottom:425.520000px;}
.y17f{bottom:429.318000px;}
.y2f{bottom:430.740000px;}
.y1aa{bottom:431.460000px;}
.y75{bottom:433.626480px;}
.y11f{bottom:436.309200px;}
.ya7{bottom:436.500000px;}
.y151{bottom:437.402160px;}
.ycc{bottom:444.830400px;}
.ya8{bottom:445.500000px;}
.yf6{bottom:445.680000px;}
.y1d1{bottom:446.228640px;}
.y12f{bottom:448.380000px;}
.y17e{bottom:449.471520px;}
.y74{bottom:453.780000px;}
.y1a9{bottom:455.940000px;}
.y11e{bottom:456.462720px;}
.y2c{bottom:460.980000px;}
.y150{bottom:462.060000px;}
.ycb{bottom:464.983920px;}
.yf5{bottom:465.840000px;}
.ya5{bottom:466.740000px;}
.y17d{bottom:469.625040px;}
.y1d0{bottom:470.886480px;}
.ya6{bottom:475.740000px;}
.y11d{bottom:476.616240px;}
.y73{bottom:478.440000px;}
.y1a8{bottom:480.615120px;}
.yca{bottom:484.971840px;}
.yf4{bottom:486.000000px;}
.y14f{bottom:486.720000px;}
.y17c{bottom:489.612960px;}
.y1cf{bottom:491.040000px;}
.y2b{bottom:493.020000px;}
.y11c{bottom:496.769760px;}
.ya2{bottom:497.160000px;}
.y72{bottom:503.100000px;}
.yc9{bottom:505.125360px;}
.y1a7{bottom:505.272960px;}
.ya4{bottom:505.980000px;}
.yf3{bottom:506.160000px;}
.y17b{bottom:509.766480px;}
.y14e{bottom:511.200000px;}
.y11b{bottom:516.757680px;}
.yc8{bottom:525.278880px;}
.y1a6{bottom:525.426480px;}
.yf2{bottom:526.320000px;}
.ya0{bottom:527.400000px;}
.y71{bottom:527.766480px;}
.y1ce{bottom:528.660000px;}
.y17a{bottom:529.920000px;}
.y2a{bottom:530.640000px;}
.y14d{bottom:535.860000px;}
.ya1{bottom:536.400000px;}
.y11a{bottom:536.911200px;}
.yc7{bottom:545.432400px;}
.y1a5{bottom:545.580000px;}
.yf1{bottom:546.480000px;}
.y70{bottom:547.920000px;}
.y179{bottom:554.623920px;}
.y119{bottom:557.064720px;}
.y9e{bottom:557.640000px;}
.y14c{bottom:560.520000px;}
.yc6{bottom:565.585920px;}
.y9f{bottom:566.640000px;}
.y29{bottom:568.080000px;}
.y1a4{bottom:570.259440px;}
.y6f{bottom:572.580000px;}
.y178{bottom:574.777440px;}
.y1cd{bottom:576.913680px;}
.y118{bottom:577.218240px;}
.y14b{bottom:585.180000px;}
.yc5{bottom:585.739440px;}
.yf0{bottom:586.800000px;}
.y9c{bottom:587.880000px;}
.y1a3{bottom:590.412960px;}
.y177{bottom:594.930960px;}
.y9d{bottom:596.880000px;}
.y6e{bottom:597.245040px;}
.y117{bottom:597.371760px;}
.y1cc{bottom:601.571520px;}
.y28{bottom:605.700000px;}
.yc4{bottom:605.892960px;}
.yef{bottom:606.780000px;}
.y1a2{bottom:610.566480px;}
.y176{bottom:615.084480px;}
.y6d{bottom:617.398560px;}
.y116{bottom:617.525280px;}
.y9a{bottom:618.120000px;}
.y1cb{bottom:621.725040px;}
.y14a{bottom:622.800000px;}
.yc3{bottom:626.046480px;}
.yee{bottom:626.940000px;}
.y9b{bottom:627.120000px;}
.y1a1{bottom:630.720000px;}
.y175{bottom:635.238000px;}
.y6c{bottom:637.552080px;}
.y115{bottom:637.678800px;}
.y1ca{bottom:641.878560px;}
.y27{bottom:643.320000px;}
.yc2{bottom:646.200000px;}
.yed{bottom:647.100000px;}
.y97{bottom:648.360000px;}
.y1a0{bottom:655.385040px;}
.y174{bottom:655.391520px;}
.y99{bottom:657.360000px;}
.y6b{bottom:657.540000px;}
.y114{bottom:657.832320px;}
.y1c9{bottom:662.032080px;}
.yc1{bottom:666.360000px;}
.y149{bottom:671.101200px;}
.y19f{bottom:675.538560px;}
.y173{bottom:675.545040px;}
.y98{bottom:677.520000px;}
.y113{bottom:677.985840px;}
.y26{bottom:680.760000px;}
.y1c8{bottom:682.020000px;}
.y6a{bottom:682.243200px;}
.yec{bottom:684.720000px;}
.yc0{bottom:686.346480px;}
.y19e{bottom:695.526480px;}
.y172{bottom:695.532960px;}
.y148{bottom:695.759040px;}
.y112{bottom:698.139360px;}
.y93{bottom:698.760000px;}
.ybf{bottom:706.500000px;}
.y1c7{bottom:706.692960px;}
.y69{bottom:706.901040px;}
.y96{bottom:707.760000px;}
.y19d{bottom:715.680000px;}
.y171{bottom:715.686480px;}
.y111{bottom:718.127280px;}
.y25{bottom:718.380000px;}
.y147{bottom:721.311120px;}
.ybe{bottom:726.729840px;}
.y1c6{bottom:726.846480px;}
.y14{bottom:727.200000px;}
.y68{bottom:731.558880px;}
.yeb{bottom:735.300000px;}
.y170{bottom:735.840000px;}
.y17{bottom:737.100000px;}
.y110{bottom:738.280800px;}
.y4a{bottom:739.298880px;}
.y19c{bottom:740.370960px;}
.y146{bottom:746.697600px;}
.ybd{bottom:746.883360px;}
.y1c5{bottom:747.000000px;}
.y95{bottom:748.080000px;}
.y24{bottom:752.948640px;}
.y67{bottom:756.216720px;}
.y10f{bottom:758.434320px;}
.y49{bottom:759.452400px;}
.yea{bottom:759.600000px;}
.y16f{bottom:760.500000px;}
.y19b{bottom:760.524480px;}
.y58{bottom:764.108640px;}
.ybc{bottom:767.036880px;}
.y91{bottom:769.320000px;}
.y16{bottom:770.040000px;}
.y1c4{bottom:771.659850px;}
.y145{bottom:772.249680px;}
.y23{bottom:777.424320px;}
.y92{bottom:778.320000px;}
.y10e{bottom:778.587840px;}
.y48{bottom:779.605920px;}
.y19a{bottom:780.678000px;}
.y66{bottom:780.874560px;}
.y16e{bottom:785.206080px;}
.ybb{bottom:787.190400px;}
.y57{bottom:788.766480px;}
.y1c3{bottom:796.346640px;}
.y144{bottom:797.801760px;}
.y10d{bottom:798.741360px;}
.y8e{bottom:799.560000px;}
.y47{bottom:799.759440px;}
.y199{bottom:800.831520px;}
.y22{bottom:802.082160px;}
.y13{bottom:802.979850px;}
.y65{bottom:805.532400px;}
.yba{bottom:807.343920px;}
.y90{bottom:808.560000px;}
.y16d{bottom:809.863920px;}
.ye9{bottom:813.624480px;}
.y56{bottom:817.200000px;}
.y10c{bottom:818.894880px;}
.y46{bottom:819.912960px;}
.y198{bottom:820.985040px;}
.y1c2{bottom:821.004480px;}
.y143{bottom:823.353840px;}
.y64{bottom:825.685920px;}
.y21{bottom:826.740000px;}
.yb9{bottom:827.497440px;}
.y8f{bottom:828.720000px;}
.y16c{bottom:830.017440px;}
.ye8{bottom:833.778000px;}
.y10b{bottom:839.048400px;}
.y45{bottom:840.066480px;}
.y197{bottom:841.138560px;}
.y1c1{bottom:841.158000px;}
.y55{bottom:844.560000px;}
.yb8{bottom:847.650960px;}
.y142{bottom:848.905920px;}
.y8a{bottom:849.960000px;}
.y16b{bottom:850.170960px;}
.y63{bottom:850.343760px;}
.y20{bottom:851.760000px;}
.ye7{bottom:853.765920px;}
.y19{bottom:856.080000px;}
.y8d{bottom:858.960000px;}
.y10a{bottom:859.201920px;}
.y44{bottom:860.220000px;}
.y196{bottom:861.292080px;}
.y1c0{bottom:861.311520px;}
.y12{bottom:863.305920px;}
.yb7{bottom:867.804480px;}
.y16a{bottom:870.324480px;}
.y54{bottom:871.920000px;}
.y141{bottom:873.381600px;}
.ye6{bottom:873.919440px;}
.y62{bottom:874.819440px;}
.y8c{bottom:879.120000px;}
.y109{bottom:879.355440px;}
.y195{bottom:881.280000px;}
.y1bf{bottom:881.299440px;}
.yb6{bottom:887.792400px;}
.y11{bottom:887.963760px;}
.y169{bottom:890.312400px;}
.ye5{bottom:894.072960px;}
.y140{bottom:898.039440px;}
.y53{bottom:899.100000px;}
.y108{bottom:899.343360px;}
.y61{bottom:899.477280px;}
.y88{bottom:900.360000px;}
.y43{bottom:900.720000px;}
.y1be{bottom:901.452960px;}
.y194{bottom:905.940000px;}
.yb5{bottom:907.945920px;}
.y89{bottom:909.360000px;}
.y168{bottom:910.465920px;}
.y10{bottom:912.439440px;}
.ye4{bottom:914.226480px;}
.y107{bottom:919.496880px;}
.y1bd{bottom:921.606480px;}
.y52{bottom:921.960000px;}
.y13f{bottom:923.591520px;}
.y60{bottom:924.135120px;}
.y1f{bottom:924.300000px;}
.yb4{bottom:928.099440px;}
.y167{bottom:930.619440px;}
.y193{bottom:930.628080px;}
.y86{bottom:930.780000px;}
.y18{bottom:933.660000px;}
.ye3{bottom:934.380000px;}
.yf{bottom:937.097280px;}
.y106{bottom:939.650400px;}
.y87{bottom:939.780000px;}
.y1bc{bottom:941.760000px;}
.yb3{bottom:948.252960px;}
.y5f{bottom:948.792960px;}
.y13e{bottom:949.143600px;}
.y51{bottom:949.320000px;}
.y166{bottom:950.772960px;}
.y42{bottom:953.460180px;}
.y192{bottom:955.285920px;}
.y105{bottom:959.803920px;}
.y84{bottom:961.020000px;}
.ye{bottom:961.755120px;}
.y1bb{bottom:966.420000px;}
.yb2{bottom:968.406480px;}
.y85{bottom:970.020000px;}
.y165{bottom:970.926480px;}
.ye2{bottom:972.000000px;}
.y41{bottom:972.720000px;}
.y5e{bottom:973.450800px;}
.y13d{bottom:974.695680px;}
.y191{bottom:975.439440px;}
.y50{bottom:976.680000px;}
.y104{bottom:979.957440px;}
.yd{bottom:986.412960px;}
.y3f{bottom:988.560000px;}
.yb1{bottom:988.579440px;}
.y164{bottom:991.080000px;}
.y1ba{bottom:991.093680px;}
.y82{bottom:991.260000px;}
.y190{bottom:995.592960px;}
.y5d{bottom:998.108640px;}
.y13c{bottom:1000.082160px;}
.y103{bottom:1000.110960px;}
.y83{bottom:1000.260000px;}
.y4f{bottom:1003.860000px;}
.yb0{bottom:1008.732960px;}
.yc{bottom:1011.070800px;}
.y18f{bottom:1015.746480px;}
.y163{bottom:1015.751520px;}
.ye1{bottom:1020.264480px;}
.y80{bottom:1021.500000px;}
.y1e{bottom:1022.760000px;}
.y5c{bottom:1022.766480px;}
.y13b{bottom:1024.740000px;}
.yaf{bottom:1028.886480px;}
.y81{bottom:1030.500000px;}
.y4e{bottom:1031.220000px;}
.yb{bottom:1035.728640px;}
.y18e{bottom:1035.900000px;}
.y162{bottom:1035.905040px;}
.ye0{bottom:1040.418000px;}
.y5b{bottom:1047.424320px;}
.yae{bottom:1049.040000px;}
.y7d{bottom:1051.740000px;}
.y161{bottom:1056.058560px;}
.y4d{bottom:1058.580000px;}
.ya{bottom:1060.386480px;}
.ydf{bottom:1060.571520px;}
.y7f{bottom:1060.740000px;}
.y13a{bottom:1062.360000px;}
.y5a{bottom:1072.082160px;}
.y160{bottom:1076.212080px;}
.y3e{bottom:1080.000000px;}
.yde{bottom:1080.725040px;}
.y7a{bottom:1081.980000px;}
.y9{bottom:1085.044320px;}
.yad{bottom:1086.660000px;}
.y4c{bottom:1089.540000px;}
.y7c{bottom:1090.979850px;}
.y15f{bottom:1096.200000px;}
.y59{bottom:1096.740000px;}
.ydd{bottom:1100.712960px;}
.y8{bottom:1109.702160px;}
.y139{bottom:1112.940000px;}
.y3d{bottom:1116.362160px;}
.ydc{bottom:1120.866480px;}
.y7{bottom:1134.360000px;}
.y4b{bottom:1137.240000px;}
.y1d{bottom:1141.020000px;}
.y4{bottom:1162.800000px;}
.y1{bottom:1181.700000px;}
.y1a{bottom:1184.580000px;}
.y3{bottom:1190.160000px;}
.h2{height:27.360000px;}
.h1a{height:28.978500px;}
.hf{height:28.980000px;}
.hd{height:29.160000px;}
.h1f{height:29.974219px;}
.h14{height:35.025820px;}
.h3{height:42.894141px;}
.h4{height:47.545312px;}
.h20{height:47.868750px;}
.h5{height:48.095156px;}
.h18{height:49.320000px;}
.h1d{height:51.400328px;}
.h1e{height:51.653767px;}
.he{height:51.679688px;}
.hb{height:52.277344px;}
.h1b{height:52.417969px;}
.h1c{height:53.656459px;}
.h16{height:53.733619px;}
.hc{height:56.957344px;}
.h11{height:57.439688px;}
.h9{height:61.164492px;}
.h15{height:61.329023px;}
.h12{height:61.910156px;}
.h17{height:63.824414px;}
.ha{height:65.346680px;}
.h10{height:67.519687px;}
.h19{height:69.480000px;}
.h6{height:77.519531px;}
.h13{height:78.658500px;}
.h7{height:106.020000px;}
.h8{height:209.109375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:205.740000px;}
.w3{width:241.020000px;}
.w2{width:241.021500px;}
.w8{width:359.640000px;}
.w7{width:359.820000px;}
.w6{width:606.420000px;}
.w4{width:892.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:9.540000px;}
.x7{left:11.340000px;}
.x16{left:22.140000px;}
.xe{left:79.740000px;}
.x1{left:84.960000px;}
.x1a{left:86.220000px;}
.x13{left:93.060000px;}
.x12{left:94.500000px;}
.x31{left:103.140000px;}
.x2e{left:107.460000px;}
.x23{left:109.440000px;}
.x19{left:111.960000px;}
.x1d{left:113.940000px;}
.x25{left:116.280000px;}
.x27{left:117.900000px;}
.x18{left:120.600000px;}
.x37{left:121.680000px;}
.x20{left:128.700000px;}
.x33{left:133.740000px;}
.x17{left:138.960000px;}
.x15{left:143.280000px;}
.x14{left:151.380000px;}
.x39{left:165.960000px;}
.x6{left:192.960000px;}
.x3a{left:219.960000px;}
.xb{left:235.080000px;}
.x4{left:241.560000px;}
.x1b{left:244.440000px;}
.x3b{left:246.969360px;}
.xa{left:285.840000px;}
.x11{left:298.800000px;}
.x10{left:300.240000px;}
.xd{left:321.492240px;}
.x2b{left:355.140000px;}
.x8{left:376.380000px;}
.xc{left:384.480000px;}
.x2{left:446.400000px;}
.x2a{left:487.620000px;}
.x29{left:491.760000px;}
.x21{left:499.140000px;}
.x1c{left:507.600000px;}
.x2d{left:531.000000px;}
.x24{left:542.340000px;}
.x3{left:567.000000px;}
.x22{left:569.700000px;}
.x36{left:578.340000px;}
.x35{left:581.400000px;}
.x1e{left:586.620000px;}
.x9{left:592.200000px;}
.x26{left:594.180000px;}
.x32{left:597.240000px;}
.x30{left:600.660000px;}
.x2f{left:625.860000px;}
.x1f{left:627.660000px;}
.x28{left:678.600000px;}
.x38{left:732.600000px;}
.x2c{left:747.000000px;}
.x34{left:755.280000px;}
.x3c{left:791.100000px;}
.x5{left:799.560000px;}
.x3d{left:807.877440px;}
@media print{
.v5{vertical-align:-21.119467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920000pt;}
.v3{vertical-align:5.120000pt;}
.v2{vertical-align:14.080000pt;}
.v4{vertical-align:21.119467pt;}
.ls4f{letter-spacing:-1.946880pt;}
.ls61{letter-spacing:-0.883200pt;}
.ls47{letter-spacing:-0.824320pt;}
.ls69{letter-spacing:-0.765440pt;}
.ls22{letter-spacing:-0.706560pt;}
.ls51{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.673920pt;}
.ls39{letter-spacing:-0.647680pt;}
.ls3b{letter-spacing:-0.588800pt;}
.ls38{letter-spacing:-0.529920pt;}
.ls10{letter-spacing:-0.524160pt;}
.ls52{letter-spacing:-0.471040pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.412160pt;}
.ls35{letter-spacing:-0.353280pt;}
.ls23{letter-spacing:-0.299520pt;}
.ls3a{letter-spacing:-0.294400pt;}
.ls1{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.235520pt;}
.ls12{letter-spacing:-0.224640pt;}
.ls2c{letter-spacing:-0.214400pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.176640pt;}
.ls29{letter-spacing:-0.159360pt;}
.ls11{letter-spacing:-0.149760pt;}
.ls36{letter-spacing:-0.117760pt;}
.ls2a{letter-spacing:-0.106240pt;}
.ls48{letter-spacing:-0.080640pt;}
.lsf{letter-spacing:-0.074880pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls2b{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.029440pt;}
.ls46{letter-spacing:0.040320pt;}
.ls2d{letter-spacing:0.053120pt;}
.ls26{letter-spacing:0.056960pt;}
.ls17{letter-spacing:0.058880pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls40{letter-spacing:0.082432pt;}
.ls2{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.117760pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.149760pt;}
.ls27{letter-spacing:0.159360pt;}
.ls2e{letter-spacing:0.171520pt;}
.ls37{letter-spacing:0.176640pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.235520pt;}
.ls9{letter-spacing:0.256000pt;}
.ls67{letter-spacing:0.282624pt;}
.ls8{letter-spacing:0.294400pt;}
.ls49{letter-spacing:0.299520pt;}
.ls55{letter-spacing:0.300288pt;}
.ls28{letter-spacing:0.318720pt;}
.ls4a{letter-spacing:0.374400pt;}
.ls6a{letter-spacing:0.673920pt;}
.ls5e{letter-spacing:0.765440pt;}
.ls5f{letter-spacing:0.788992pt;}
.ls4{letter-spacing:0.794880pt;}
.ls5{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls7{letter-spacing:1.120000pt;}
.ls14{letter-spacing:1.200000pt;}
.ls63{letter-spacing:1.413120pt;}
.ls53{letter-spacing:2.060800pt;}
.ls54{letter-spacing:2.708480pt;}
.ls42{letter-spacing:3.356160pt;}
.ls43{letter-spacing:3.944960pt;}
.ls3d{letter-spacing:5.240320pt;}
.ls3f{letter-spacing:5.888000pt;}
.ls3e{letter-spacing:5.929216pt;}
.ls60{letter-spacing:7.183360pt;}
.ls58{letter-spacing:7.789824pt;}
.ls4e{letter-spacing:7.831040pt;}
.ls5c{letter-spacing:8.478720pt;}
.ls6e{letter-spacing:9.067520pt;}
.ls33{letter-spacing:9.715200pt;}
.ls59{letter-spacing:10.362880pt;}
.ls6f{letter-spacing:10.848640pt;}
.ls5b{letter-spacing:11.010560pt;}
.ls66{letter-spacing:11.028224pt;}
.ls64{letter-spacing:11.658240pt;}
.ls5a{letter-spacing:13.601280pt;}
.ls6d{letter-spacing:14.190080pt;}
.ls56{letter-spacing:14.837760pt;}
.ls57{letter-spacing:14.914304pt;}
.ls62{letter-spacing:17.428480pt;}
.ls5d{letter-spacing:19.312640pt;}
.ls44{letter-spacing:19.960320pt;}
.ls65{letter-spacing:27.679488pt;}
.ls68{letter-spacing:32.266240pt;}
.ls41{letter-spacing:34.856960pt;}
.ls6c{letter-spacing:37.727360pt;}
.ls3c{letter-spacing:44.288000pt;}
.ls4d{letter-spacing:44.454400pt;}
.ls4c{letter-spacing:49.254400pt;}
.ls45{letter-spacing:52.756480pt;}
.ls32{letter-spacing:56.903680pt;}
.ls6b{letter-spacing:61.706240pt;}
.ls6{letter-spacing:72.512000pt;}
.ls24{letter-spacing:76.933120pt;}
.lsb{letter-spacing:83.005440pt;}
.ls25{letter-spacing:94.853120pt;}
.ls30{letter-spacing:104.453120pt;}
.ls2f{letter-spacing:133.893120pt;}
.lsa{letter-spacing:134.819840pt;}
.lse{letter-spacing:194.360320pt;}
.lsc{letter-spacing:588.608000pt;}
.ls1e{letter-spacing:861.056000pt;}
.ws50{word-spacing:-58.880000pt;}
.ws38{word-spacing:-53.120000pt;}
.ws7e{word-spacing:-20.816640pt;}
.ws31{word-spacing:-20.517120pt;}
.ws7f{word-spacing:-20.142720pt;}
.ws8{word-spacing:-19.200000pt;}
.wsba{word-spacing:-18.048000pt;}
.ws82{word-spacing:-17.728000pt;}
.ws80{word-spacing:-17.600000pt;}
.ws1e{word-spacing:-17.536000pt;}
.ws81{word-spacing:-17.088000pt;}
.ws5{word-spacing:-16.848000pt;}
.ws7{word-spacing:-16.698240pt;}
.ws6{word-spacing:-16.398720pt;}
.wsd{word-spacing:-16.250880pt;}
.ws11{word-spacing:-14.656000pt;}
.ws10{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.528000pt;}
.wse{word-spacing:-14.272000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws4e{word-spacing:-13.601280pt;}
.wsc{word-spacing:-13.542400pt;}
.ws36{word-spacing:-13.483520pt;}
.ws33{word-spacing:-13.424640pt;}
.ws1f{word-spacing:-13.365760pt;}
.wsb{word-spacing:-13.306880pt;}
.ws20{word-spacing:-13.248000pt;}
.ws35{word-spacing:-13.189120pt;}
.ws32{word-spacing:-13.130240pt;}
.ws21{word-spacing:-13.071360pt;}
.ws39{word-spacing:-13.012480pt;}
.ws34{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.894720pt;}
.ws96{word-spacing:-12.835840pt;}
.ws4b{word-spacing:-12.776960pt;}
.ws4a{word-spacing:-12.718080pt;}
.ws37{word-spacing:-12.659200pt;}
.ws83{word-spacing:-12.600320pt;}
.ws95{word-spacing:-12.423680pt;}
.ws25{word-spacing:-12.005120pt;}
.ws26{word-spacing:-11.952000pt;}
.ws27{word-spacing:-11.898880pt;}
.ws28{word-spacing:-9.476480pt;}
.ws52{word-spacing:-9.152640pt;}
.ws51{word-spacing:-9.112320pt;}
.ws4f{word-spacing:-8.389120pt;}
.wsb8{word-spacing:-3.179520pt;}
.ws5d{word-spacing:-3.002880pt;}
.wsb1{word-spacing:-2.826240pt;}
.ws56{word-spacing:-2.531840pt;}
.ws54{word-spacing:-2.355200pt;}
.ws55{word-spacing:-2.178560pt;}
.ws9d{word-spacing:-1.884160pt;}
.ws57{word-spacing:-1.707520pt;}
.wsbf{word-spacing:-1.530880pt;}
.ws88{word-spacing:-1.236480pt;}
.ws49{word-spacing:-1.059840pt;}
.ws91{word-spacing:-0.883200pt;}
.ws1d{word-spacing:-0.824320pt;}
.ws24{word-spacing:-0.647680pt;}
.ws8e{word-spacing:-0.588800pt;}
.ws3f{word-spacing:-0.529920pt;}
.ws3b{word-spacing:-0.471040pt;}
.ws7b{word-spacing:-0.412160pt;}
.ws3a{word-spacing:-0.294400pt;}
.ws2f{word-spacing:-0.257280pt;}
.ws4d{word-spacing:-0.235520pt;}
.ws7d{word-spacing:-0.201600pt;}
.ws1c{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.176640pt;}
.ws29{word-spacing:-0.159360pt;}
.ws1a{word-spacing:-0.117760pt;}
.ws7c{word-spacing:-0.080640pt;}
.ws13{word-spacing:-0.080000pt;}
.ws4c{word-spacing:-0.058880pt;}
.ws2e{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.058880pt;}
.ws1b{word-spacing:0.064000pt;}
.ws2b{word-spacing:0.106240pt;}
.ws66{word-spacing:0.117760pt;}
.ws19{word-spacing:0.128000pt;}
.ws2d{word-spacing:0.128640pt;}
.ws12{word-spacing:0.149760pt;}
.ws16{word-spacing:0.176640pt;}
.ws53{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.212480pt;}
.ws62{word-spacing:0.235520pt;}
.ws30{word-spacing:0.265600pt;}
.ws78{word-spacing:0.294400pt;}
.ws8b{word-spacing:0.299520pt;}
.ws2a{word-spacing:0.318720pt;}
.ws17{word-spacing:0.353280pt;}
.ws8a{word-spacing:0.374400pt;}
.ws4{word-spacing:0.384000pt;}
.ws14{word-spacing:0.448000pt;}
.wsad{word-spacing:0.471040pt;}
.ws3c{word-spacing:0.529920pt;}
.ws8f{word-spacing:0.588800pt;}
.ws23{word-spacing:0.599040pt;}
.ws5e{word-spacing:0.647680pt;}
.ws79{word-spacing:0.706560pt;}
.wsb7{word-spacing:0.765440pt;}
.ws22{word-spacing:0.824320pt;}
.ws90{word-spacing:0.942080pt;}
.ws8d{word-spacing:0.973440pt;}
.ws67{word-spacing:1.000960pt;}
.ws89{word-spacing:1.272960pt;}
.ws45{word-spacing:1.295360pt;}
.ws85{word-spacing:1.472000pt;}
.ws44{word-spacing:1.648640pt;}
.wsb2{word-spacing:1.766400pt;}
.ws48{word-spacing:1.943040pt;}
.ws8c{word-spacing:1.946880pt;}
.ws84{word-spacing:2.119680pt;}
.ws97{word-spacing:2.178560pt;}
.ws86{word-spacing:2.296320pt;}
.ws7a{word-spacing:2.590720pt;}
.wsab{word-spacing:2.708480pt;}
.ws6b{word-spacing:2.767360pt;}
.ws6a{word-spacing:2.944000pt;}
.ws98{word-spacing:3.238400pt;}
.ws63{word-spacing:3.415040pt;}
.ws68{word-spacing:3.591680pt;}
.ws87{word-spacing:3.650560pt;}
.ws70{word-spacing:3.827200pt;}
.ws6f{word-spacing:4.003840pt;}
.ws74{word-spacing:4.180480pt;}
.ws5a{word-spacing:4.474880pt;}
.ws42{word-spacing:4.651520pt;}
.ws75{word-spacing:4.769280pt;}
.ws69{word-spacing:4.828160pt;}
.ws58{word-spacing:5.299200pt;}
.ws59{word-spacing:5.475840pt;}
.wsb9{word-spacing:5.770240pt;}
.ws5b{word-spacing:5.946880pt;}
.ws5c{word-spacing:6.123520pt;}
.ws3{word-spacing:6.336000pt;}
.wsbb{word-spacing:6.594560pt;}
.wsc9{word-spacing:7.065600pt;}
.ws71{word-spacing:7.242240pt;}
.wsa8{word-spacing:7.418880pt;}
.ws9c{word-spacing:7.713280pt;}
.wsb3{word-spacing:7.831040pt;}
.ws93{word-spacing:7.889920pt;}
.ws94{word-spacing:8.066560pt;}
.ws92{word-spacing:8.302080pt;}
.wsa2{word-spacing:8.360960pt;}
.ws43{word-spacing:8.537600pt;}
.wsac{word-spacing:8.655360pt;}
.wsa3{word-spacing:8.714240pt;}
.wsa4{word-spacing:8.832000pt;}
.wsaf{word-spacing:9.126400pt;}
.wsae{word-spacing:9.303040pt;}
.wsa7{word-spacing:9.774080pt;}
.ws40{word-spacing:9.950720pt;}
.wsa6{word-spacing:10.186240pt;}
.ws6c{word-spacing:10.421760pt;}
.ws41{word-spacing:10.598400pt;}
.wsa0{word-spacing:11.069440pt;}
.wsa1{word-spacing:11.246080pt;}
.wsb0{word-spacing:11.540480pt;}
.wsb6{word-spacing:11.658240pt;}
.ws76{word-spacing:11.717120pt;}
.wsc5{word-spacing:11.834880pt;}
.ws77{word-spacing:11.893760pt;}
.wsc3{word-spacing:12.364800pt;}
.wsc4{word-spacing:12.541440pt;}
.wsc2{word-spacing:12.835840pt;}
.wsc8{word-spacing:13.012480pt;}
.wsc7{word-spacing:13.189120pt;}
.ws9f{word-spacing:13.483520pt;}
.ws6e{word-spacing:13.660160pt;}
.wsc1{word-spacing:13.836800pt;}
.wsbe{word-spacing:14.072320pt;}
.wscb{word-spacing:14.248960pt;}
.ws9e{word-spacing:14.425600pt;}
.ws9a{word-spacing:14.720000pt;}
.ws99{word-spacing:14.896640pt;}
.ws9b{word-spacing:15.073280pt;}
.ws6d{word-spacing:15.544320pt;}
.wscd{word-spacing:16.663040pt;}
.wsaa{word-spacing:17.310720pt;}
.wsc0{word-spacing:17.487360pt;}
.ws3d{word-spacing:18.135040pt;}
.ws3e{word-spacing:18.311680pt;}
.wsbc{word-spacing:19.194880pt;}
.wsbd{word-spacing:19.371520pt;}
.wsa5{word-spacing:19.842560pt;}
.ws73{word-spacing:20.019200pt;}
.ws72{word-spacing:20.195840pt;}
.wsca{word-spacing:22.786560pt;}
.wsa9{word-spacing:24.023040pt;}
.wsb4{word-spacing:27.555840pt;}
.wsb5{word-spacing:27.909120pt;}
.wscc{word-spacing:28.203520pt;}
.ws46{word-spacing:30.676480pt;}
.ws47{word-spacing:30.735360pt;}
.ws2{word-spacing:35.136000pt;}
.ws1{word-spacing:35.520000pt;}
.ws5f{word-spacing:38.743040pt;}
.ws60{word-spacing:39.214080pt;}
.ws61{word-spacing:39.390720pt;}
.wsc6{word-spacing:40.509440pt;}
.ws64{word-spacing:51.225600pt;}
.ws65{word-spacing:51.402240pt;}
._17{margin-left:-10.657280pt;}
._f{margin-left:-8.843136pt;}
._e{margin-left:-7.219840pt;}
._2{margin-left:-5.232000pt;}
._3{margin-left:-3.481600pt;}
._b{margin-left:-2.224512pt;}
._1{margin-left:-1.065600pt;}
._0{width:1.305600pt;}
._15{width:2.435072pt;}
._13{width:3.886080pt;}
._14{width:5.777664pt;}
._1d{width:7.014400pt;}
._19{width:8.153600pt;}
._1b{width:10.245120pt;}
._1c{width:11.134080pt;}
._1a{width:14.837760pt;}
._12{width:17.625600pt;}
._11{width:18.709120pt;}
._16{width:19.832320pt;}
._1e{width:27.614720pt;}
._18{width:59.998720pt;}
._a{width:85.158400pt;}
._d{width:129.542400pt;}
._10{width:168.938880pt;}
._7{width:178.867840pt;}
._4{width:388.186240pt;}
._6{width:419.092480pt;}
._5{width:444.469760pt;}
._8{width:513.612800pt;}
._9{width:599.104000pt;}
._c{width:754.664960pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fsa{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:192.000000pt;}
.fs3{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.360000pt;}
.y2e{bottom:3.520000pt;}
.y2{bottom:7.520000pt;}
.ya3{bottom:7.840000pt;}
.y7b{bottom:7.999867pt;}
.y7e{bottom:8.000000pt;}
.y8b{bottom:25.920000pt;}
.y6{bottom:40.960000pt;}
.y1c{bottom:41.441920pt;}
.y94{bottom:43.840000pt;}
.y40{bottom:56.160000pt;}
.y5{bottom:61.760000pt;}
.y1b{bottom:63.360000pt;}
.y15{bottom:67.359867pt;}
.ydb{bottom:90.560000pt;}
.y3c{bottom:90.881920pt;}
.y18d{bottom:92.971520pt;}
.y102{bottom:100.337280pt;}
.y1df{bottom:102.129920pt;}
.y1b9{bottom:102.897280pt;}
.y15e{bottom:103.544960pt;}
.y18c{bottom:110.885760pt;}
.yda{bottom:111.200000pt;}
.y3b{bottom:112.800000pt;}
.y101{bottom:118.251520pt;}
.y12e{bottom:119.045760pt;}
.y1b8{bottom:120.811520pt;}
.y1de{bottom:123.886080pt;}
.y15d{bottom:125.463040pt;}
.y18b{bottom:128.800000pt;}
.y100{bottom:136.165760pt;}
.y12d{bottom:136.960000pt;}
.y1b7{bottom:138.725760pt;}
.yd9{bottom:139.895040pt;}
.y15c{bottom:143.377280pt;}
.y1dd{bottom:145.804160pt;}
.y18a{bottom:150.731520pt;}
.yff{bottom:154.080000pt;}
.y12c{bottom:155.092480pt;}
.y1b6{bottom:156.640000pt;}
.yd8{bottom:160.532480pt;}
.y15b{bottom:161.291520pt;}
.y3a{bottom:166.880000pt;}
.y1dc{bottom:167.722240pt;}
.y189{bottom:168.645760pt;}
.y12b{bottom:173.006720pt;}
.y1b5{bottom:178.560000pt;}
.y15a{bottom:179.205760pt;}
.yd7{bottom:181.817600pt;}
.y39{bottom:186.560000pt;}
.yfe{bottom:187.520000pt;}
.y1db{bottom:189.640320pt;}
.y12a{bottom:190.920960pt;}
.y159{bottom:197.120000pt;}
.y1b4{bottom:200.535680pt;}
.yd6{bottom:202.455040pt;}
.y188{bottom:208.480000pt;}
.y129{bottom:208.835200pt;}
.y1da{bottom:211.558400pt;}
.y158{bottom:218.880000pt;}
.y38{bottom:220.480000pt;}
.y138{bottom:221.806080pt;}
.y1b3{bottom:222.291840pt;}
.yd5{bottom:223.740160pt;}
.y128{bottom:226.749440pt;}
.y187{bottom:230.259200pt;}
.yfd{bottom:230.417280pt;}
.y1d9{bottom:233.476480pt;}
.y137{bottom:239.720320pt;}
.y1b2{bottom:240.206080pt;}
.y157{bottom:240.823040pt;}
.y127{bottom:244.663680pt;}
.yd4{bottom:245.187200pt;}
.yfc{bottom:248.331520pt;}
.y37{bottom:250.881920pt;}
.y186{bottom:252.177280pt;}
.y1d8{bottom:255.394560pt;}
.y136{bottom:257.634560pt;}
.y1b1{bottom:258.120320pt;}
.y156{bottom:258.737280pt;}
.y126{bottom:262.577920pt;}
.yfb{bottom:266.245760pt;}
.yd3{bottom:266.634240pt;}
.y185{bottom:270.091520pt;}
.y36{bottom:272.800000pt;}
.y1d7{bottom:273.308800pt;}
.y135{bottom:275.548800pt;}
.y1b0{bottom:276.034560pt;}
.y155{bottom:276.651520pt;}
.y125{bottom:280.344960pt;}
.yfa{bottom:284.160000pt;}
.yd2{bottom:287.919360pt;}
.y184{bottom:288.005760pt;}
.y134{bottom:293.463040pt;}
.y1af{bottom:293.948800pt;}
.y154{bottom:294.565760pt;}
.y1d6{bottom:295.226880pt;}
.y124{bottom:298.259200pt;}
.y35{bottom:301.760000pt;}
.yd1{bottom:305.833600pt;}
.y183{bottom:305.920000pt;}
.y79{bottom:305.928320pt;}
.y133{bottom:311.377280pt;}
.y1ae{bottom:311.863040pt;}
.y153{bottom:312.480000pt;}
.y1d5{bottom:313.141120pt;}
.y123{bottom:316.173440pt;}
.yf9{bottom:317.440000pt;}
.yac{bottom:320.321920pt;}
.yd0{bottom:323.747840pt;}
.y33{bottom:324.160000pt;}
.y78{bottom:327.846400pt;}
.y182{bottom:327.873280pt;}
.y132{bottom:329.291520pt;}
.y1ad{bottom:329.777280pt;}
.y34{bottom:331.200000pt;}
.y122{bottom:334.087680pt;}
.y1d4{bottom:334.897280pt;}
.ycf{bottom:341.662080pt;}
.yab{bottom:342.240000pt;}
.y181{bottom:345.787520pt;}
.y152{bottom:345.920000pt;}
.y131{bottom:347.205760pt;}
.y1ac{bottom:347.691520pt;}
.y77{bottom:349.764480pt;}
.y30{bottom:350.080000pt;}
.y121{bottom:352.001920pt;}
.y1d3{bottom:352.811520pt;}
.y32{bottom:356.960000pt;}
.yce{bottom:359.576320pt;}
.yf8{bottom:360.325760pt;}
.ya9{bottom:361.120000pt;}
.y180{bottom:363.701760pt;}
.y130{bottom:365.120000pt;}
.y1ab{bottom:365.605760pt;}
.y76{bottom:367.678720pt;}
.yaa{bottom:369.120000pt;}
.y120{bottom:369.916160pt;}
.y1d2{bottom:374.729600pt;}
.y2d{bottom:375.840000pt;}
.ycd{bottom:377.490560pt;}
.yf7{bottom:378.240000pt;}
.y17f{bottom:381.616000pt;}
.y2f{bottom:382.880000pt;}
.y1aa{bottom:383.520000pt;}
.y75{bottom:385.445760pt;}
.y11f{bottom:387.830400pt;}
.ya7{bottom:388.000000pt;}
.y151{bottom:388.801920pt;}
.ycc{bottom:395.404800pt;}
.ya8{bottom:396.000000pt;}
.yf6{bottom:396.160000pt;}
.y1d1{bottom:396.647680pt;}
.y12f{bottom:398.560000pt;}
.y17e{bottom:399.530240pt;}
.y74{bottom:403.360000pt;}
.y1a9{bottom:405.280000pt;}
.y11e{bottom:405.744640pt;}
.y2c{bottom:409.760000pt;}
.y150{bottom:410.720000pt;}
.ycb{bottom:413.319040pt;}
.yf5{bottom:414.080000pt;}
.ya5{bottom:414.880000pt;}
.y17d{bottom:417.444480pt;}
.y1d0{bottom:418.565760pt;}
.ya6{bottom:422.880000pt;}
.y11d{bottom:423.658880pt;}
.y73{bottom:425.280000pt;}
.y1a8{bottom:427.213440pt;}
.yca{bottom:431.086080pt;}
.yf4{bottom:432.000000pt;}
.y14f{bottom:432.640000pt;}
.y17c{bottom:435.211520pt;}
.y1cf{bottom:436.480000pt;}
.y2b{bottom:438.240000pt;}
.y11c{bottom:441.573120pt;}
.ya2{bottom:441.920000pt;}
.y72{bottom:447.200000pt;}
.yc9{bottom:449.000320pt;}
.y1a7{bottom:449.131520pt;}
.ya4{bottom:449.760000pt;}
.yf3{bottom:449.920000pt;}
.y17b{bottom:453.125760pt;}
.y14e{bottom:454.400000pt;}
.y11b{bottom:459.340160pt;}
.yc8{bottom:466.914560pt;}
.y1a6{bottom:467.045760pt;}
.yf2{bottom:467.840000pt;}
.ya0{bottom:468.800000pt;}
.y71{bottom:469.125760pt;}
.y1ce{bottom:469.920000pt;}
.y17a{bottom:471.040000pt;}
.y2a{bottom:471.680000pt;}
.y14d{bottom:476.320000pt;}
.ya1{bottom:476.800000pt;}
.y11a{bottom:477.254400pt;}
.yc7{bottom:484.828800pt;}
.y1a5{bottom:484.960000pt;}
.yf1{bottom:485.760000pt;}
.y70{bottom:487.040000pt;}
.y179{bottom:492.999040pt;}
.y119{bottom:495.168640pt;}
.y9e{bottom:495.680000pt;}
.y14c{bottom:498.240000pt;}
.yc6{bottom:502.743040pt;}
.y9f{bottom:503.680000pt;}
.y29{bottom:504.960000pt;}
.y1a4{bottom:506.897280pt;}
.y6f{bottom:508.960000pt;}
.y178{bottom:510.913280pt;}
.y1cd{bottom:512.812160pt;}
.y118{bottom:513.082880pt;}
.y14b{bottom:520.160000pt;}
.yc5{bottom:520.657280pt;}
.yf0{bottom:521.600000pt;}
.y9c{bottom:522.560000pt;}
.y1a3{bottom:524.811520pt;}
.y177{bottom:528.827520pt;}
.y9d{bottom:530.560000pt;}
.y6e{bottom:530.884480pt;}
.y117{bottom:530.997120pt;}
.y1cc{bottom:534.730240pt;}
.y28{bottom:538.400000pt;}
.yc4{bottom:538.571520pt;}
.yef{bottom:539.360000pt;}
.y1a2{bottom:542.725760pt;}
.y176{bottom:546.741760pt;}
.y6d{bottom:548.798720pt;}
.y116{bottom:548.911360pt;}
.y9a{bottom:549.440000pt;}
.y1cb{bottom:552.644480pt;}
.y14a{bottom:553.600000pt;}
.yc3{bottom:556.485760pt;}
.yee{bottom:557.280000pt;}
.y9b{bottom:557.440000pt;}
.y1a1{bottom:560.640000pt;}
.y175{bottom:564.656000pt;}
.y6c{bottom:566.712960pt;}
.y115{bottom:566.825600pt;}
.y1ca{bottom:570.558720pt;}
.y27{bottom:571.840000pt;}
.yc2{bottom:574.400000pt;}
.yed{bottom:575.200000pt;}
.y97{bottom:576.320000pt;}
.y1a0{bottom:582.564480pt;}
.y174{bottom:582.570240pt;}
.y99{bottom:584.320000pt;}
.y6b{bottom:584.480000pt;}
.y114{bottom:584.739840pt;}
.y1c9{bottom:588.472960pt;}
.yc1{bottom:592.320000pt;}
.y149{bottom:596.534400pt;}
.y19f{bottom:600.478720pt;}
.y173{bottom:600.484480pt;}
.y98{bottom:602.240000pt;}
.y113{bottom:602.654080pt;}
.y26{bottom:605.120000pt;}
.y1c8{bottom:606.240000pt;}
.y6a{bottom:606.438400pt;}
.yec{bottom:608.640000pt;}
.yc0{bottom:610.085760pt;}
.y19e{bottom:618.245760pt;}
.y172{bottom:618.251520pt;}
.y148{bottom:618.452480pt;}
.y112{bottom:620.568320pt;}
.y93{bottom:621.120000pt;}
.ybf{bottom:628.000000pt;}
.y1c7{bottom:628.171520pt;}
.y69{bottom:628.356480pt;}
.y96{bottom:629.120000pt;}
.y19d{bottom:636.160000pt;}
.y171{bottom:636.165760pt;}
.y111{bottom:638.335360pt;}
.y25{bottom:638.560000pt;}
.y147{bottom:641.165440pt;}
.ybe{bottom:645.982080pt;}
.y1c6{bottom:646.085760pt;}
.y14{bottom:646.400000pt;}
.y68{bottom:650.274560pt;}
.yeb{bottom:653.600000pt;}
.y170{bottom:654.080000pt;}
.y17{bottom:655.200000pt;}
.y110{bottom:656.249600pt;}
.y4a{bottom:657.154560pt;}
.y19c{bottom:658.107520pt;}
.y146{bottom:663.731200pt;}
.ybd{bottom:663.896320pt;}
.y1c5{bottom:664.000000pt;}
.y95{bottom:664.960000pt;}
.y24{bottom:669.287680pt;}
.y67{bottom:672.192640pt;}
.y10f{bottom:674.163840pt;}
.y49{bottom:675.068800pt;}
.yea{bottom:675.200000pt;}
.y16f{bottom:676.000000pt;}
.y19b{bottom:676.021760pt;}
.y58{bottom:679.207680pt;}
.ybc{bottom:681.810560pt;}
.y91{bottom:683.840000pt;}
.y16{bottom:684.480000pt;}
.y1c4{bottom:685.919867pt;}
.y145{bottom:686.444160pt;}
.y23{bottom:691.043840pt;}
.y92{bottom:691.840000pt;}
.y10e{bottom:692.078080pt;}
.y48{bottom:692.983040pt;}
.y19a{bottom:693.936000pt;}
.y66{bottom:694.110720pt;}
.y16e{bottom:697.960960pt;}
.ybb{bottom:699.724800pt;}
.y57{bottom:701.125760pt;}
.y1c3{bottom:707.863680pt;}
.y144{bottom:709.157120pt;}
.y10d{bottom:709.992320pt;}
.y8e{bottom:710.720000pt;}
.y47{bottom:710.897280pt;}
.y199{bottom:711.850240pt;}
.y22{bottom:712.961920pt;}
.y13{bottom:713.759867pt;}
.y65{bottom:716.028800pt;}
.yba{bottom:717.639040pt;}
.y90{bottom:718.720000pt;}
.y16d{bottom:719.879040pt;}
.ye9{bottom:723.221760pt;}
.y56{bottom:726.400000pt;}
.y10c{bottom:727.906560pt;}
.y46{bottom:728.811520pt;}
.y198{bottom:729.764480pt;}
.y1c2{bottom:729.781760pt;}
.y143{bottom:731.870080pt;}
.y64{bottom:733.943040pt;}
.y21{bottom:734.880000pt;}
.yb9{bottom:735.553280pt;}
.y8f{bottom:736.640000pt;}
.y16c{bottom:737.793280pt;}
.ye8{bottom:741.136000pt;}
.y10b{bottom:745.820800pt;}
.y45{bottom:746.725760pt;}
.y197{bottom:747.678720pt;}
.y1c1{bottom:747.696000pt;}
.y55{bottom:750.720000pt;}
.yb8{bottom:753.467520pt;}
.y142{bottom:754.583040pt;}
.y8a{bottom:755.520000pt;}
.y16b{bottom:755.707520pt;}
.y63{bottom:755.861120pt;}
.y20{bottom:757.120000pt;}
.ye7{bottom:758.903040pt;}
.y19{bottom:760.960000pt;}
.y8d{bottom:763.520000pt;}
.y10a{bottom:763.735040pt;}
.y44{bottom:764.640000pt;}
.y196{bottom:765.592960pt;}
.y1c0{bottom:765.610240pt;}
.y12{bottom:767.383040pt;}
.yb7{bottom:771.381760pt;}
.y16a{bottom:773.621760pt;}
.y54{bottom:775.040000pt;}
.y141{bottom:776.339200pt;}
.ye6{bottom:776.817280pt;}
.y62{bottom:777.617280pt;}
.y8c{bottom:781.440000pt;}
.y109{bottom:781.649280pt;}
.y195{bottom:783.360000pt;}
.y1bf{bottom:783.377280pt;}
.yb6{bottom:789.148800pt;}
.y11{bottom:789.301120pt;}
.y169{bottom:791.388800pt;}
.ye5{bottom:794.731520pt;}
.y140{bottom:798.257280pt;}
.y53{bottom:799.200000pt;}
.y108{bottom:799.416320pt;}
.y61{bottom:799.535360pt;}
.y88{bottom:800.320000pt;}
.y43{bottom:800.640000pt;}
.y1be{bottom:801.291520pt;}
.y194{bottom:805.280000pt;}
.yb5{bottom:807.063040pt;}
.y89{bottom:808.320000pt;}
.y168{bottom:809.303040pt;}
.y10{bottom:811.057280pt;}
.ye4{bottom:812.645760pt;}
.y107{bottom:817.330560pt;}
.y1bd{bottom:819.205760pt;}
.y52{bottom:819.520000pt;}
.y13f{bottom:820.970240pt;}
.y60{bottom:821.453440pt;}
.y1f{bottom:821.600000pt;}
.yb4{bottom:824.977280pt;}
.y167{bottom:827.217280pt;}
.y193{bottom:827.224960pt;}
.y86{bottom:827.360000pt;}
.y18{bottom:829.920000pt;}
.ye3{bottom:830.560000pt;}
.yf{bottom:832.975360pt;}
.y106{bottom:835.244800pt;}
.y87{bottom:835.360000pt;}
.y1bc{bottom:837.120000pt;}
.yb3{bottom:842.891520pt;}
.y5f{bottom:843.371520pt;}
.y13e{bottom:843.683200pt;}
.y51{bottom:843.840000pt;}
.y166{bottom:845.131520pt;}
.y42{bottom:847.520160pt;}
.y192{bottom:849.143040pt;}
.y105{bottom:853.159040pt;}
.y84{bottom:854.240000pt;}
.ye{bottom:854.893440pt;}
.y1bb{bottom:859.040000pt;}
.yb2{bottom:860.805760pt;}
.y85{bottom:862.240000pt;}
.y165{bottom:863.045760pt;}
.ye2{bottom:864.000000pt;}
.y41{bottom:864.640000pt;}
.y5e{bottom:865.289600pt;}
.y13d{bottom:866.396160pt;}
.y191{bottom:867.057280pt;}
.y50{bottom:868.160000pt;}
.y104{bottom:871.073280pt;}
.yd{bottom:876.811520pt;}
.y3f{bottom:878.720000pt;}
.yb1{bottom:878.737280pt;}
.y164{bottom:880.960000pt;}
.y1ba{bottom:880.972160pt;}
.y82{bottom:881.120000pt;}
.y190{bottom:884.971520pt;}
.y5d{bottom:887.207680pt;}
.y13c{bottom:888.961920pt;}
.y103{bottom:888.987520pt;}
.y83{bottom:889.120000pt;}
.y4f{bottom:892.320000pt;}
.yb0{bottom:896.651520pt;}
.yc{bottom:898.729600pt;}
.y18f{bottom:902.885760pt;}
.y163{bottom:902.890240pt;}
.ye1{bottom:906.901760pt;}
.y80{bottom:908.000000pt;}
.y1e{bottom:909.120000pt;}
.y5c{bottom:909.125760pt;}
.y13b{bottom:910.880000pt;}
.yaf{bottom:914.565760pt;}
.y81{bottom:916.000000pt;}
.y4e{bottom:916.640000pt;}
.yb{bottom:920.647680pt;}
.y18e{bottom:920.800000pt;}
.y162{bottom:920.804480pt;}
.ye0{bottom:924.816000pt;}
.y5b{bottom:931.043840pt;}
.yae{bottom:932.480000pt;}
.y7d{bottom:934.880000pt;}
.y161{bottom:938.718720pt;}
.y4d{bottom:940.960000pt;}
.ya{bottom:942.565760pt;}
.ydf{bottom:942.730240pt;}
.y7f{bottom:942.880000pt;}
.y13a{bottom:944.320000pt;}
.y5a{bottom:952.961920pt;}
.y160{bottom:956.632960pt;}
.y3e{bottom:960.000000pt;}
.yde{bottom:960.644480pt;}
.y7a{bottom:961.760000pt;}
.y9{bottom:964.483840pt;}
.yad{bottom:965.920000pt;}
.y4c{bottom:968.480000pt;}
.y7c{bottom:969.759867pt;}
.y15f{bottom:974.400000pt;}
.y59{bottom:974.880000pt;}
.ydd{bottom:978.411520pt;}
.y8{bottom:986.401920pt;}
.y139{bottom:989.280000pt;}
.y3d{bottom:992.321920pt;}
.ydc{bottom:996.325760pt;}
.y7{bottom:1008.320000pt;}
.y4b{bottom:1010.880000pt;}
.y1d{bottom:1014.240000pt;}
.y4{bottom:1033.600000pt;}
.y1{bottom:1050.400000pt;}
.y1a{bottom:1052.960000pt;}
.y3{bottom:1057.920000pt;}
.h2{height:24.320000pt;}
.h1a{height:25.758667pt;}
.hf{height:25.760000pt;}
.hd{height:25.920000pt;}
.h1f{height:26.643750pt;}
.h14{height:31.134062pt;}
.h3{height:38.128125pt;}
.h4{height:42.262500pt;}
.h20{height:42.550000pt;}
.h5{height:42.751250pt;}
.h18{height:43.840000pt;}
.h1d{height:45.689180pt;}
.h1e{height:45.914460pt;}
.he{height:45.937500pt;}
.hb{height:46.468750pt;}
.h1b{height:46.593750pt;}
.h1c{height:47.694630pt;}
.h16{height:47.763217pt;}
.hc{height:50.628750pt;}
.h11{height:51.057500pt;}
.h9{height:54.368437pt;}
.h15{height:54.514687pt;}
.h12{height:55.031250pt;}
.h17{height:56.732813pt;}
.ha{height:58.085938pt;}
.h10{height:60.017500pt;}
.h19{height:61.760000pt;}
.h6{height:68.906250pt;}
.h13{height:69.918667pt;}
.h7{height:94.240000pt;}
.h8{height:185.875000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:182.880000pt;}
.w3{width:214.240000pt;}
.w2{width:214.241333pt;}
.w8{width:319.680000pt;}
.w7{width:319.840000pt;}
.w6{width:539.040000pt;}
.w4{width:793.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:8.480000pt;}
.x7{left:10.080000pt;}
.x16{left:19.680000pt;}
.xe{left:70.880000pt;}
.x1{left:75.520000pt;}
.x1a{left:76.640000pt;}
.x13{left:82.720000pt;}
.x12{left:84.000000pt;}
.x31{left:91.680000pt;}
.x2e{left:95.520000pt;}
.x23{left:97.280000pt;}
.x19{left:99.520000pt;}
.x1d{left:101.280000pt;}
.x25{left:103.360000pt;}
.x27{left:104.800000pt;}
.x18{left:107.200000pt;}
.x37{left:108.160000pt;}
.x20{left:114.400000pt;}
.x33{left:118.880000pt;}
.x17{left:123.520000pt;}
.x15{left:127.360000pt;}
.x14{left:134.560000pt;}
.x39{left:147.520000pt;}
.x6{left:171.520000pt;}
.x3a{left:195.520000pt;}
.xb{left:208.960000pt;}
.x4{left:214.720000pt;}
.x1b{left:217.280000pt;}
.x3b{left:219.528320pt;}
.xa{left:254.080000pt;}
.x11{left:265.600000pt;}
.x10{left:266.880000pt;}
.xd{left:285.770880pt;}
.x2b{left:315.680000pt;}
.x8{left:334.560000pt;}
.xc{left:341.760000pt;}
.x2{left:396.800000pt;}
.x2a{left:433.440000pt;}
.x29{left:437.120000pt;}
.x21{left:443.680000pt;}
.x1c{left:451.200000pt;}
.x2d{left:472.000000pt;}
.x24{left:482.080000pt;}
.x3{left:504.000000pt;}
.x22{left:506.400000pt;}
.x36{left:514.080000pt;}
.x35{left:516.800000pt;}
.x1e{left:521.440000pt;}
.x9{left:526.400000pt;}
.x26{left:528.160000pt;}
.x32{left:530.880000pt;}
.x30{left:533.920000pt;}
.x2f{left:556.320000pt;}
.x1f{left:557.920000pt;}
.x28{left:603.200000pt;}
.x38{left:651.200000pt;}
.x2c{left:664.000000pt;}
.x34{left:671.360000pt;}
.x3c{left:703.200000pt;}
.x5{left:710.720000pt;}
.x3d{left:718.113280pt;}
}




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