
    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_e5f882759ecf04ebb558d869.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008301;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_83fb6a0b944cf78856e187cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_42c1b39e2d722a25ed16a3a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.188000;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_703206fb408ec33e7f7f47bb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_04a6ee28e30066d30e7ac0da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_e7e2110935ecbfaba4347efa.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_39ea67a67550c2dde9d90081.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.015137;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_7fa5d72a714ad1b8120e5147.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls41{letter-spacing:-1.523520px;}
.ls20{letter-spacing:-1.059840px;}
.ls22{letter-spacing:-0.993600px;}
.ls37{letter-spacing:-0.861120px;}
.ls1e{letter-spacing:-0.794880px;}
.lsd{letter-spacing:-0.728640px;}
.ls23{letter-spacing:-0.662400px;}
.ls24{letter-spacing:-0.596160px;}
.ls1f{letter-spacing:-0.463680px;}
.ls3b{letter-spacing:-0.397440px;}
.ls9{letter-spacing:-0.331200px;}
.ls36{letter-spacing:-0.287280px;}
.lsf{letter-spacing:-0.264960px;}
.ls1c{letter-spacing:-0.240480px;}
.ls3{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.198720px;}
.ls2e{letter-spacing:-0.191520px;}
.ls4e{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.132480px;}
.lse{letter-spacing:-0.120240px;}
.ls3c{letter-spacing:-0.095760px;}
.ls10{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.066240px;}
.ls21{letter-spacing:0.095760px;}
.ls1d{letter-spacing:0.120240px;}
.lsb{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.191520px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.264960px;}
.ls48{letter-spacing:0.287280px;}
.ls4{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.331200px;}
.ls40{letter-spacing:0.378000px;}
.ls2b{letter-spacing:0.383040px;}
.ls2c{letter-spacing:0.397440px;}
.ls4d{letter-spacing:0.403200px;}
.ls45{letter-spacing:0.722016px;}
.ls13{letter-spacing:0.728640px;}
.ls27{letter-spacing:1.338048px;}
.ls16{letter-spacing:1.457280px;}
.ls15{letter-spacing:2.185920px;}
.ls14{letter-spacing:2.848320px;}
.ls32{letter-spacing:3.576960px;}
.ls33{letter-spacing:3.636576px;}
.ls34{letter-spacing:4.305600px;}
.ls3d{letter-spacing:4.378464px;}
.ls2f{letter-spacing:5.034240px;}
.ls43{letter-spacing:6.491520px;}
.ls26{letter-spacing:7.160544px;}
.ls19{letter-spacing:7.849440px;}
.ls3f{letter-spacing:7.889184px;}
.ls17{letter-spacing:7.948800px;}
.ls12{letter-spacing:8.611200px;}
.ls2a{letter-spacing:8.982144px;}
.ls30{letter-spacing:9.339840px;}
.ls39{letter-spacing:9.604800px;}
.ls35{letter-spacing:10.068480px;}
.ls3e{letter-spacing:10.234080px;}
.ls29{letter-spacing:10.797120px;}
.ls25{letter-spacing:11.519136px;}
.ls6{letter-spacing:11.525760px;}
.ls1b{letter-spacing:13.711680px;}
.ls1a{letter-spacing:14.374080px;}
.ls5{letter-spacing:15.831360px;}
.ls3a{letter-spacing:16.560000px;}
.ls42{letter-spacing:18.745920px;}
.ls46{letter-spacing:21.594240px;}
.ls28{letter-spacing:24.508800px;}
.ls47{letter-spacing:28.814400px;}
.ls44{letter-spacing:31.662720px;}
.ls49{letter-spacing:34.113600px;}
.ls18{letter-spacing:50.011200px;}
.ls38{letter-spacing:64.016640px;}
.ls4b{letter-spacing:283.705920px;}
.ls4a{letter-spacing:407.508480px;}
.ls4c{letter-spacing:446.391360px;}
.ls0{letter-spacing:845.553600px;}
.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;}
}
.ws21{word-spacing:-66.240000px;}
.ws8b{word-spacing:-59.760000px;}
.ws0{word-spacing:-46.008000px;}
.ws1d{word-spacing:-25.611120px;}
.ws1c{word-spacing:-25.490880px;}
.wsbb{word-spacing:-20.492640px;}
.ws8a{word-spacing:-20.396880px;}
.wsa7{word-spacing:-20.301120px;}
.ws77{word-spacing:-20.109600px;}
.wsa6{word-spacing:-20.013840px;}
.ws22{word-spacing:-16.824960px;}
.ws6{word-spacing:-16.692480px;}
.ws4e{word-spacing:-16.626240px;}
.ws7{word-spacing:-16.560000px;}
.wsc5{word-spacing:-16.493760px;}
.ws9{word-spacing:-16.427520px;}
.wsa{word-spacing:-16.361280px;}
.wsd3{word-spacing:-16.295040px;}
.ws1e{word-spacing:-16.228800px;}
.ws20{word-spacing:-16.096320px;}
.ws23{word-spacing:-15.963840px;}
.ws66{word-spacing:-15.897600px;}
.ws8{word-spacing:-15.831360px;}
.ws1f{word-spacing:-15.765120px;}
.wsad{word-spacing:-13.878000px;}
.ws8f{word-spacing:-4.305600px;}
.ws3b{word-spacing:-4.173120px;}
.ws90{word-spacing:-4.040640px;}
.ws62{word-spacing:-3.841920px;}
.ws61{word-spacing:-3.444480px;}
.wsd0{word-spacing:-3.312000px;}
.ws94{word-spacing:-3.245760px;}
.ws3e{word-spacing:-3.113280px;}
.wsdc{word-spacing:-2.980800px;}
.ws53{word-spacing:-2.848320px;}
.ws36{word-spacing:-2.782080px;}
.ws64{word-spacing:-2.777040px;}
.ws34{word-spacing:-2.715840px;}
.wsb4{word-spacing:-2.517120px;}
.ws9b{word-spacing:-2.450880px;}
.ws80{word-spacing:-2.185920px;}
.wsbd{word-spacing:-2.119680px;}
.ws33{word-spacing:-2.053440px;}
.ws9a{word-spacing:-1.457280px;}
.ws38{word-spacing:-1.324800px;}
.wsaf{word-spacing:-1.192320px;}
.ws1b{word-spacing:-0.993600px;}
.ws75{word-spacing:-0.728640px;}
.ws65{word-spacing:-0.596160px;}
.wsc{word-spacing:-0.432000px;}
.wsbe{word-spacing:-0.397440px;}
.ws63{word-spacing:-0.383040px;}
.ws71{word-spacing:-0.331200px;}
.wsb{word-spacing:-0.288000px;}
.ws6a{word-spacing:-0.287280px;}
.ws17{word-spacing:-0.264960px;}
.ws3{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.191520px;}
.ws19{word-spacing:-0.132480px;}
.ws16{word-spacing:-0.120240px;}
.wsd6{word-spacing:-0.095760px;}
.ws4{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.066240px;}
.ws59{word-spacing:0.095760px;}
.ws14{word-spacing:0.132480px;}
.wsdb{word-spacing:0.144000px;}
.wsda{word-spacing:0.198720px;}
.ws18{word-spacing:0.264960px;}
.ws81{word-spacing:0.287280px;}
.wse{word-spacing:0.331200px;}
.ws95{word-spacing:0.397440px;}
.ws2{word-spacing:0.432000px;}
.ws27{word-spacing:0.463680px;}
.ws29{word-spacing:0.596160px;}
.ws37{word-spacing:0.662400px;}
.ws48{word-spacing:0.728640px;}
.wsc2{word-spacing:0.794880px;}
.ws28{word-spacing:0.861120px;}
.ws35{word-spacing:0.993600px;}
.ws2a{word-spacing:1.059840px;}
.wsd7{word-spacing:1.324800px;}
.wsca{word-spacing:1.457280px;}
.wsc1{word-spacing:1.532160px;}
.ws44{word-spacing:1.589760px;}
.ws51{word-spacing:1.788480px;}
.ws69{word-spacing:1.854720px;}
.ws2e{word-spacing:1.920960px;}
.wsd2{word-spacing:2.252160px;}
.ws31{word-spacing:2.318400px;}
.ws2f{word-spacing:2.450880px;}
.wsb1{word-spacing:2.517120px;}
.ws2c{word-spacing:2.649600px;}
.ws3d{word-spacing:2.782080px;}
.ws2b{word-spacing:3.047040px;}
.ws68{word-spacing:3.245760px;}
.ws85{word-spacing:3.312000px;}
.ws89{word-spacing:3.576960px;}
.ws72{word-spacing:3.643200px;}
.ws5a{word-spacing:3.709440px;}
.ws86{word-spacing:3.908160px;}
.ws9d{word-spacing:4.040640px;}
.wsc4{word-spacing:4.173120px;}
.ws52{word-spacing:4.438080px;}
.ws7a{word-spacing:4.636800px;}
.wsb7{word-spacing:4.769280px;}
.wsd1{word-spacing:4.901760px;}
.wsa2{word-spacing:5.034240px;}
.ws6c{word-spacing:5.166720px;}
.ws98{word-spacing:5.299200px;}
.ws42{word-spacing:5.365440px;}
.ws5f{word-spacing:5.497920px;}
.ws5b{word-spacing:5.895360px;}
.wsab{word-spacing:6.094080px;}
.wsb9{word-spacing:6.226560px;}
.wsb3{word-spacing:6.425280px;}
.ws30{word-spacing:6.624000px;}
.ws8e{word-spacing:7.277760px;}
.ws41{word-spacing:7.286400px;}
.ws3c{word-spacing:7.352640px;}
.ws40{word-spacing:7.551360px;}
.ws9c{word-spacing:7.683840px;}
.ws3a{word-spacing:8.015040px;}
.ws15{word-spacing:8.081280px;}
.ws50{word-spacing:8.280000px;}
.ws26{word-spacing:8.346240px;}
.ws4f{word-spacing:8.412480px;}
.ws24{word-spacing:8.677440px;}
.ws25{word-spacing:8.743680px;}
.ws60{word-spacing:8.942400px;}
.ws93{word-spacing:9.008640px;}
.wsd{word-spacing:9.074880px;}
.ws73{word-spacing:9.472320px;}
.wsa0{word-spacing:9.671040px;}
.wsa1{word-spacing:9.737280px;}
.ws67{word-spacing:9.803520px;}
.ws39{word-spacing:10.200960px;}
.wsa9{word-spacing:10.532160px;}
.ws5e{word-spacing:10.929600px;}
.wsd4{word-spacing:11.260800px;}
.ws13{word-spacing:11.658240px;}
.wsd5{word-spacing:11.790720px;}
.ws11{word-spacing:11.856960px;}
.ws84{word-spacing:12.254400px;}
.ws3f{word-spacing:12.386880px;}
.ws4a{word-spacing:12.585600px;}
.ws56{word-spacing:12.651840px;}
.ws57{word-spacing:12.718080px;}
.ws55{word-spacing:13.115520px;}
.wsce{word-spacing:13.314240px;}
.ws54{word-spacing:13.446720px;}
.ws7f{word-spacing:13.777920px;}
.ws4c{word-spacing:13.844160px;}
.ws4b{word-spacing:14.042880px;}
.ws78{word-spacing:14.109120px;}
.wsd9{word-spacing:14.374080px;}
.ws43{word-spacing:14.506560px;}
.ws88{word-spacing:14.572800px;}
.ws87{word-spacing:14.705280px;}
.ws5d{word-spacing:14.771520px;}
.ws6b{word-spacing:14.837760px;}
.ws5c{word-spacing:15.235200px;}
.wsb2{word-spacing:15.566400px;}
.ws10{word-spacing:15.963840px;}
.ws96{word-spacing:16.295040px;}
.ws97{word-spacing:16.692480px;}
.wsc6{word-spacing:16.891200px;}
.ws6e{word-spacing:17.023680px;}
.ws6f{word-spacing:17.421120px;}
.wsba{word-spacing:18.083520px;}
.ws92{word-spacing:18.149760px;}
.ws9e{word-spacing:18.480960px;}
.ws47{word-spacing:18.878400px;}
.ws45{word-spacing:19.077120px;}
.ws46{word-spacing:19.209600px;}
.ws76{word-spacing:19.607040px;}
.ws91{word-spacing:20.269440px;}
.ws82{word-spacing:20.971440px;}
.wsbf{word-spacing:20.998080px;}
.wsaa{word-spacing:21.263040px;}
.wsa8{word-spacing:21.726720px;}
.ws70{word-spacing:22.455360px;}
.wsf{word-spacing:23.184000px;}
.ws74{word-spacing:23.780160px;}
.ws32{word-spacing:23.912640px;}
.wsa4{word-spacing:24.111360px;}
.ws58{word-spacing:24.641280px;}
.wsa3{word-spacing:24.840000px;}
.wsc3{word-spacing:25.303680px;}
.ws9f{word-spacing:25.502400px;}
.wsc0{word-spacing:26.032320px;}
.wsa5{word-spacing:26.717040px;}
.ws6d{word-spacing:26.760960px;}
.wsb5{word-spacing:27.489600px;}
.wsb6{word-spacing:27.820800px;}
.wscc{word-spacing:28.218240px;}
.wscd{word-spacing:28.880640px;}
.ws49{word-spacing:28.946880px;}
.ws7c{word-spacing:29.211840px;}
.wscb{word-spacing:29.278080px;}
.ws7d{word-spacing:29.543040px;}
.ws8c{word-spacing:29.675520px;}
.ws7b{word-spacing:29.874240px;}
.ws8d{word-spacing:29.940480px;}
.wsb8{word-spacing:30.139200px;}
.ws7e{word-spacing:30.404160px;}
.wsc9{word-spacing:30.867840px;}
.wsae{word-spacing:31.696560px;}
.wsc7{word-spacing:31.795200px;}
.wsc8{word-spacing:31.927680px;}
.ws4d{word-spacing:32.126400px;}
.wsb0{word-spacing:34.312320px;}
.wsac{word-spacing:34.709760px;}
.wscf{word-spacing:36.101520px;}
.wsd8{word-spacing:40.472640px;}
.ws79{word-spacing:41.201280px;}
.ws83{word-spacing:43.283520px;}
.ws99{word-spacing:64.782720px;}
.wsbc{word-spacing:108.783360px;}
.ws5{word-spacing:247.176000px;}
._2{margin-left:-50.400000px;}
._10{margin-left:-4.559040px;}
._c{margin-left:-2.318400px;}
._1{margin-left:-1.231200px;}
._0{width:1.425600px;}
._b{width:3.277440px;}
._13{width:5.860800px;}
._f{width:7.277760px;}
._a{width:8.295840px;}
._9{width:9.339840px;}
._8{width:11.223360px;}
._7{width:12.418560px;}
._d{width:14.211360px;}
._17{width:18.954720px;}
._e{width:21.354480px;}
._6{width:23.546880px;}
._11{width:25.237440px;}
._12{width:26.621280px;}
._14{width:31.888080px;}
._4{width:33.848640px;}
._16{width:36.005760px;}
._15{width:108.208800px;}
._18{width:397.042560px;}
._3{width:859.662720px;}
._5{width:1287.374400px;}
.fc6{color:rgb(33,94,153);}
.fc5{color:rgb(21,96,130);}
.fc3{color:transparent;}
.fc2{color:rgb(80,21,73);}
.fc4{color:rgb(70,120,134);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:216.000000px;}
.y14{bottom:-95.220000px;}
.y13{bottom:-62.280000px;}
.y12{bottom:-29.340000px;}
.y0{bottom:0.000000px;}
.y11{bottom:3.780000px;}
.y1fe{bottom:8.100000px;}
.y200{bottom:8.280000px;}
.y20d{bottom:12.960000px;}
.y1f8{bottom:32.220000px;}
.yf{bottom:36.720000px;}
.y36{bottom:43.204500px;}
.y3{bottom:57.424500px;}
.y35{bottom:59.580000px;}
.ye{bottom:63.720000px;}
.y2{bottom:73.800000px;}
.y1f6{bottom:80.280000px;}
.yd{bottom:95.760000px;}
.y5e{bottom:117.180000px;}
.y84{bottom:123.114240px;}
.yca{bottom:124.020000px;}
.ya7{bottom:127.254240px;}
.y1de{bottom:128.520000px;}
.y16e{bottom:131.392080px;}
.yed{bottom:131.726880px;}
.y10a{bottom:131.746320px;}
.y14c{bottom:140.674320px;}
.y5d{bottom:141.106320px;}
.y18c{bottom:143.413200px;}
.y34{bottom:144.698400px;}
.y83{bottom:147.060000px;}
.yc9{bottom:147.960000px;}
.ya6{bottom:151.200000px;}
.y16d{bottom:155.520000px;}
.yec{bottom:155.672640px;}
.y109{bottom:155.692080px;}
.y1a4{bottom:155.849760px;}
.y1dd{bottom:161.640000px;}
.y14b{bottom:164.620080px;}
.y5c{bottom:165.234240px;}
.y18b{bottom:167.358960px;}
.y1c4{bottom:167.516640px;}
.y82{bottom:171.000000px;}
.yc8{bottom:171.892080px;}
.yb{bottom:174.780000px;}
.y33{bottom:179.441280px;}
.y16c{bottom:179.460000px;}
.yeb{bottom:179.800560px;}
.y108{bottom:179.820000px;}
.ya5{bottom:184.314240px;}
.y14a{bottom:188.748000px;}
.y5b{bottom:189.180000px;}
.y18a{bottom:191.486880px;}
.y126{bottom:193.314240px;}
.y1dc{bottom:194.580000px;}
.yc7{bottom:196.020000px;}
.y1c3{bottom:200.454480px;}
.y81{bottom:202.500000px;}
.y16b{bottom:203.580000px;}
.yea{bottom:203.746320px;}
.y107{bottom:203.760000px;}
.ya4{bottom:208.260000px;}
.y149{bottom:212.693760px;}
.y32{bottom:214.184160px;}
.y189{bottom:215.432640px;}
.y125{bottom:217.260000px;}
.y1a3{bottom:218.859840px;}
.yc6{bottom:219.934800px;}
.y5a{bottom:222.300000px;}
.y1db{bottom:227.520000px;}
.ye9{bottom:227.874240px;}
.ya3{bottom:232.200000px;}
.y106{bottom:232.554240px;}
.y1c2{bottom:233.574480px;}
.y16a{bottom:236.478960px;}
.y148{bottom:236.821680px;}
.y188{bottom:239.560560px;}
.y124{bottom:241.200000px;}
.yc5{bottom:244.062720px;}
.y59{bottom:246.240000px;}
.y80{bottom:247.320000px;}
.ya{bottom:247.860000px;}
.y31{bottom:248.744880px;}
.ye8{bottom:251.820000px;}
.ya2{bottom:256.320000px;}
.y169{bottom:260.606880px;}
.y1da{bottom:260.640000px;}
.y147{bottom:260.767440px;}
.y187{bottom:263.506320px;}
.y123{bottom:265.320000px;}
.y1c1{bottom:266.512320px;}
.y105{bottom:268.560000px;}
.y58{bottom:270.138960px;}
.y7f{bottom:271.234800px;}
.ye7{bottom:275.940000px;}
.yc4{bottom:277.000560px;}
.ya1{bottom:280.234800px;}
.y1a2{bottom:281.869920px;}
.y30{bottom:283.487760px;}
.y168{bottom:284.552640px;}
.y146{bottom:284.895360px;}
.y186{bottom:287.634240px;}
.y122{bottom:289.260000px;}
.y1d9{bottom:293.580000px;}
.y57{bottom:294.266880px;}
.y1c0{bottom:299.450160px;}
.yc3{bottom:301.128480px;}
.y7e{bottom:304.354800px;}
.ya0{bottom:304.362720px;}
.ye6{bottom:307.431900px;}
.y167{bottom:308.498400px;}
.y185{bottom:311.580000px;}
.y121{bottom:313.374240px;}
.y104{bottom:313.380000px;}
.y145{bottom:317.833200px;}
.y56{bottom:318.212640px;}
.y2f{bottom:318.230640px;}
.y9{bottom:320.760000px;}
.yc2{bottom:325.074240px;}
.y1d8{bottom:326.700000px;}
.y7d{bottom:328.300560px;}
.y9f{bottom:328.308480px;}
.y1bf{bottom:332.570160px;}
.y166{bottom:332.626320px;}
.y184{bottom:335.520000px;}
.y103{bottom:337.320000px;}
.y144{bottom:341.778960px;}
.y55{bottom:342.340560px;}
.y1a1{bottom:344.880000px;}
.y120{bottom:346.312080px;}
.yc1{bottom:349.020000px;}
.ye5{bottom:352.080000px;}
.y7c{bottom:352.428480px;}
.y2e{bottom:352.791360px;}
.y1fb{bottom:353.518560px;}
.y1be{bottom:356.515920px;}
.y165{bottom:356.572080px;}
.y1d7{bottom:359.634240px;}
.y9e{bottom:361.428480px;}
.y102{bottom:361.440000px;}
.y183{bottom:364.314240px;}
.y143{bottom:365.906880px;}
.y54{bottom:366.286320px;}
.y212{bottom:370.080000px;}
.y11f{bottom:370.440000px;}
.yc0{bottom:373.126320px;}
.ye4{bottom:376.020000px;}
.y7b{bottom:376.374240px;}
.y1bd{bottom:380.643840px;}
.y164{bottom:380.700000px;}
.y1d6{bottom:383.580000px;}
.y9d{bottom:385.374240px;}
.y2d{bottom:387.534240px;}
.y142{bottom:389.852640px;}
.y53{bottom:390.414240px;}
.y7{bottom:390.420000px;}
.y8{bottom:393.660000px;}
.y11e{bottom:394.380000px;}
.y211{bottom:394.920000px;}
.y1f3{bottom:395.648640px;}
.ybf{bottom:397.072080px;}
.ye3{bottom:400.140000px;}
.y7a{bottom:400.320000px;}
.y1bc{bottom:404.589600px;}
.y163{bottom:404.640000px;}
.y1a0{bottom:407.721600px;}
.y9c{bottom:409.320000px;}
.y141{bottom:413.980560px;}
.y52{bottom:414.360000px;}
.y1d5{bottom:416.700000px;}
.y11d{bottom:418.273200px;}
.y210{bottom:419.580000px;}
.ybe{bottom:421.200000px;}
.y2c{bottom:422.094960px;}
.ye2{bottom:424.080000px;}
.y79{bottom:424.440000px;}
.y10{bottom:427.140000px;}
.y1f2{bottom:428.586480px;}
.y162{bottom:433.434240px;}
.y9b{bottom:433.440000px;}
.y1bb{bottom:437.527440px;}
.y140{bottom:437.926320px;}
.y19f{bottom:440.659440px;}
.y101{bottom:442.440000px;}
.y182{bottom:445.114800px;}
.ybd{bottom:445.140000px;}
.y51{bottom:447.300000px;}
.ye1{bottom:448.200000px;}
.y78{bottom:448.374240px;}
.y1d4{bottom:449.640000px;}
.y11c{bottom:451.393200px;}
.y2b{bottom:456.837840px;}
.y9a{bottom:457.368480px;}
.y20f{bottom:460.980000px;}
.y1ba{bottom:461.655360px;}
.y1f1{bottom:461.706480px;}
.y13f{bottom:461.872080px;}
.y100{bottom:466.380000px;}
.y181{bottom:469.060560px;}
.ybc{bottom:469.080000px;}
.y161{bottom:469.440000px;}
.y50{bottom:471.420000px;}
.ye0{bottom:472.140000px;}
.y19e{bottom:473.597280px;}
.y11b{bottom:475.338960px;}
.y77{bottom:481.494240px;}
.y99{bottom:481.496400px;}
.y1d3{bottom:482.760000px;}
.y1b9{bottom:485.601120px;}
.y13e{bottom:486.000000px;}
.yff{bottom:490.500000px;}
.y2a{bottom:491.580720px;}
.y180{bottom:493.188480px;}
.y1f0{bottom:494.644320px;}
.y4f{bottom:495.360000px;}
.ybb{bottom:497.868480px;}
.y11a{bottom:499.466880px;}
.ydf{bottom:505.080000px;}
.y76{bottom:505.440000px;}
.y98{bottom:505.442160px;}
.y19d{bottom:506.717280px;}
.y13d{bottom:509.940000px;}
.y1fa{bottom:513.720000px;}
.y160{bottom:514.080000px;}
.yfe{bottom:514.414800px;}
.y1d2{bottom:515.700000px;}
.y17f{bottom:517.134240px;}
.y1b8{bottom:518.721120px;}
.y4e{bottom:519.435360px;}
.y119{bottom:523.412640px;}
.y29{bottom:525.412800px;}
.y1ef{bottom:527.764320px;}
.yde{bottom:529.200000px;}
.y75{bottom:529.344720px;}
.yba{bottom:533.874240px;}
.y15f{bottom:538.200000px;}
.yfd{bottom:538.360560px;}
.y97{bottom:538.380000px;}
.y1f5{bottom:538.740000px;}
.y19c{bottom:539.655120px;}
.y17e{bottom:541.080000px;}
.y13c{bottom:541.440000px;}
.y1b7{bottom:542.666880px;}
.y4d{bottom:543.381120px;}
.y1f9{bottom:547.020000px;}
.y118{bottom:547.358400px;}
.y1d1{bottom:548.814240px;}
.y28{bottom:550.252800px;}
.ydd{bottom:553.140000px;}
.y74{bottom:553.472640px;}
.y1ee{bottom:560.702160px;}
.y15e{bottom:562.132080px;}
.y96{bottom:562.500000px;}
.yc{bottom:565.200000px;}
.y1b6{bottom:566.794800px;}
.y4c{bottom:567.509040px;}
.yb9{bottom:569.880000px;}
.yfc{bottom:571.480560px;}
.y117{bottom:571.486320px;}
.y1d0{bottom:572.760000px;}
.y19b{bottom:572.775120px;}
.ydc{bottom:577.254240px;}
.y73{bottom:577.418400px;}
.y27{bottom:584.995680px;}
.y13b{bottom:586.260000px;}
.y95{bottom:586.398960px;}
.y17d{bottom:589.140000px;}
.y1b5{bottom:590.740560px;}
.y4b{bottom:591.454800px;}
.y1ed{bottom:593.822160px;}
.y1f7{bottom:595.080000px;}
.yfb{bottom:595.426320px;}
.y116{bottom:595.432080px;}
.ydb{bottom:601.200000px;}
.y72{bottom:601.546320px;}
.y1cf{bottom:605.692080px;}
.y19a{bottom:605.712960px;}
.y13a{bottom:610.200000px;}
.y94{bottom:610.526880px;}
.y17c{bottom:613.260000px;}
.yb8{bottom:614.680560px;}
.yfa{bottom:619.554240px;}
.y26{bottom:619.556400px;}
.y115{bottom:619.560000px;}
.y1b4{bottom:623.678400px;}
.y4a{bottom:624.392640px;}
.yda{bottom:625.320000px;}
.y71{bottom:625.492080px;}
.y1ec{bottom:626.760000px;}
.y1ce{bottom:629.820000px;}
.y15d{bottom:634.242240px;}
.y139{bottom:634.320000px;}
.y93{bottom:634.472640px;}
.y17b{bottom:637.200000px;}
.yb7{bottom:638.626320px;}
.y199{bottom:638.832960px;}
.yf9{bottom:643.500000px;}
.y1b3{bottom:647.806320px;}
.y49{bottom:648.520560px;}
.yd9{bottom:649.260000px;}
.y70{bottom:649.620000px;}
.y25{bottom:654.299280px;}
.y15c{bottom:658.188000px;}
.y138{bottom:658.254240px;}
.y92{bottom:658.600560px;}
.y1eb{bottom:659.700000px;}
.y1f4{bottom:661.315680px;}
.yb6{bottom:662.754240px;}
.y1cd{bottom:662.760000px;}
.yf8{bottom:667.620000px;}
.y17a{bottom:670.281120px;}
.y1b2{bottom:671.752080px;}
.y198{bottom:671.770800px;}
.y48{bottom:672.466320px;}
.yd8{bottom:673.192080px;}
.y6f{bottom:673.560000px;}
.y20e{bottom:677.880000px;}
.y15b{bottom:682.133760px;}
.y137{bottom:682.200000px;}
.y91{bottom:682.546320px;}
.yb5{bottom:686.700000px;}
.y24{bottom:689.042160px;}
.yf7{bottom:691.532640px;}
.y1ea{bottom:692.820000px;}
.y179{bottom:694.226880px;}
.y1b1{bottom:695.880000px;}
.y47{bottom:696.594240px;}
.yd7{bottom:697.320000px;}
.y114{bottom:699.120000px;}
.y20c{bottom:702.540000px;}
.y197{bottom:704.708640px;}
.y6e{bottom:705.060000px;}
.y15a{bottom:706.261680px;}
.y90{bottom:706.492080px;}
.yb4{bottom:710.820000px;}
.y136{bottom:715.320000px;}
.yf6{bottom:715.478400px;}
.y178{bottom:718.172640px;}
.y46{bottom:720.540000px;}
.y23{bottom:722.874240px;}
.y1e9{bottom:725.760000px;}
.y1cc{bottom:728.820000px;}
.yd6{bottom:730.213200px;}
.y8f{bottom:730.620000px;}
.yb3{bottom:734.726880px;}
.y196{bottom:737.828640px;}
.y1b0{bottom:738.180000px;}
.y159{bottom:739.199520px;}
.y135{bottom:739.260000px;}
.yf5{bottom:739.606320px;}
.y20b{bottom:740.340000px;}
.y177{bottom:742.300560px;}
.y113{bottom:743.760000px;}
.y45{bottom:744.444720px;}
.y22{bottom:746.820000px;}
.y6d{bottom:749.700000px;}
.yd5{bottom:754.341120px;}
.y8e{bottom:754.560000px;}
.y20a{bottom:756.900000px;}
.yb2{bottom:758.672640px;}
.y1e8{bottom:758.880000px;}
.y1cb{bottom:761.940000px;}
.y134{bottom:763.321680px;}
.y158{bottom:763.327440px;}
.yf4{bottom:763.552080px;}
.y176{bottom:766.246320px;}
.y112{bottom:767.700000px;}
.y44{bottom:768.572640px;}
.y195{bottom:770.766480px;}
.y6c{bottom:773.820000px;}
.yd4{bottom:778.286880px;}
.yb1{bottom:782.800560px;}
.y8d{bottom:786.060000px;}
.y133{bottom:787.267440px;}
.y157{bottom:787.273200px;}
.yf3{bottom:787.680000px;}
.y209{bottom:789.834240px;}
.y175{bottom:790.374240px;}
.y21{bottom:791.100000px;}
.y111{bottom:791.820000px;}
.y43{bottom:792.518400px;}
.y1ca{bottom:794.880000px;}
.y6b{bottom:797.760000px;}
.y1af{bottom:800.820000px;}
.yd3{bottom:802.414800px;}
.y194{bottom:803.886480px;}
.yb0{bottom:806.746320px;}
.y156{bottom:811.401120px;}
.yf2{bottom:811.620000px;}
.y208{bottom:813.780000px;}
.y174{bottom:814.320000px;}
.y110{bottom:815.688000px;}
.y42{bottom:816.646320px;}
.y132{bottom:820.387440px;}
.y1e7{bottom:824.940000px;}
.yd2{bottom:826.360560px;}
.y1c9{bottom:827.820000px;}
.y206{bottom:830.340000px;}
.yaf{bottom:830.874240px;}
.y6a{bottom:830.880000px;}
.y1ae{bottom:833.940000px;}
.y155{bottom:835.346880px;}
.y193{bottom:836.824320px;}
.y173{bottom:838.440000px;}
.y207{bottom:838.620000px;}
.y10f{bottom:839.815920px;}
.y41{bottom:840.592080px;}
.y20{bottom:842.926320px;}
.yf1{bottom:843.120000px;}
.y131{bottom:844.333200px;}
.yd1{bottom:850.306320px;}
.y69{bottom:854.820000px;}
.y1ad{bottom:857.835360px;}
.y1e6{bottom:857.880000px;}
.y154{bottom:859.292640px;}
.y1c8{bottom:860.940000px;}
.y10e{bottom:863.761680px;}
.y40{bottom:864.720000px;}
.y1f{bottom:866.872080px;}
.y172{bottom:867.240000px;}
.y130{bottom:868.278960px;}
.y192{bottom:869.944320px;}
.yd0{bottom:874.434240px;}
.y68{bottom:878.934240px;}
.y1ac{bottom:881.781120px;}
.y153{bottom:883.420560px;}
.y205{bottom:887.394240px;}
.y10d{bottom:887.889600px;}
.y8c{bottom:887.934240px;}
.yae{bottom:887.940000px;}
.y3f{bottom:888.660000px;}
.y1e5{bottom:890.820000px;}
.y1e{bottom:891.000000px;}
.y12f{bottom:892.406880px;}
.y1c7{bottom:893.880000px;}
.ycf{bottom:898.380000px;}
.y67{bottom:902.880000px;}
.y191{bottom:902.882160px;}
.y1ab{bottom:905.909040px;}
.y152{bottom:907.366320px;}
.y204{bottom:911.340000px;}
.y10c{bottom:911.835360px;}
.yad{bottom:911.841120px;}
.y171{bottom:911.874240px;}
.y8b{bottom:911.880000px;}
.y1d{bottom:914.940000px;}
.y12e{bottom:916.352640px;}
.y3e{bottom:920.160000px;}
.yce{bottom:922.500000px;}
.y1e4{bottom:923.940000px;}
.y1c6{bottom:927.000000px;}
.y203{bottom:927.900000px;}
.y1aa{bottom:929.854800px;}
.y151{bottom:931.494240px;}
.y10b{bottom:935.781120px;}
.yac{bottom:935.786880px;}
.yf0{bottom:935.798400px;}
.y66{bottom:935.820000px;}
.y1c{bottom:938.872080px;}
.y12d{bottom:940.480560px;}
.ycd{bottom:951.294240px;}
.y150{bottom:955.440000px;}
.y1e3{bottom:956.880000px;}
.y8a{bottom:959.909040px;}
.yab{bottom:959.914800px;}
.yef{bottom:959.926320px;}
.y65{bottom:959.934240px;}
.y170{bottom:959.940000px;}
.y202{bottom:960.840000px;}
.y1a9{bottom:962.974800px;}
.y1b{bottom:963.000000px;}
.y12c{bottom:964.426320px;}
.y3d{bottom:964.778400px;}
.y190{bottom:968.940000px;}
.y201{bottom:977.580000px;}
.y14f{bottom:979.380000px;}
.yee{bottom:983.872080px;}
.y64{bottom:983.880000px;}
.y1a8{bottom:986.920560px;}
.ycc{bottom:987.300000px;}
.y12b{bottom:988.372080px;}
.y3c{bottom:988.906320px;}
.y1e2{bottom:990.000000px;}
.y89{bottom:992.846880px;}
.yaa{bottom:992.852640px;}
.y18f{bottom:992.880000px;}
.y1a{bottom:995.937840px;}
.y6{bottom:999.180000px;}
.y1ff{bottom:1002.240000px;}
.y63{bottom:1008.000000px;}
.y14e{bottom:1008.174240px;}
.y1a7{bottom:1010.866320px;}
.y12a{bottom:1012.500000px;}
.y3b{bottom:1012.852080px;}
.y88{bottom:1016.974800px;}
.ya9{bottom:1016.980560px;}
.y18e{bottom:1017.000000px;}
.y1e1{bottom:1022.934240px;}
.y1c5{bottom:1026.000000px;}
.y1fd{bottom:1027.080000px;}
.y62{bottom:1031.940000px;}
.y19{bottom:1033.380000px;}
.y1a6{bottom:1034.994240px;}
.y129{bottom:1036.440000px;}
.y5{bottom:1036.620000px;}
.y3a{bottom:1036.980000px;}
.y87{bottom:1040.920560px;}
.ya8{bottom:1040.926320px;}
.y16f{bottom:1040.940000px;}
.y14d{bottom:1044.180000px;}
.y1e0{bottom:1046.880000px;}
.ycb{bottom:1055.880000px;}
.y1a5{bottom:1058.940000px;}
.y86{bottom:1064.866320px;}
.y61{bottom:1064.872080px;}
.y18d{bottom:1064.880000px;}
.y128{bottom:1065.234240px;}
.y1fc{bottom:1073.520000px;}
.y1df{bottom:1080.000000px;}
.y39{bottom:1081.260000px;}
.y18{bottom:1087.380000px;}
.y85{bottom:1088.994240px;}
.y60{bottom:1089.000000px;}
.y127{bottom:1101.240000px;}
.y5f{bottom:1112.940000px;}
.y4{bottom:1113.480000px;}
.y17{bottom:1132.910640px;}
.y38{bottom:1147.140000px;}
.y16{bottom:1153.064160px;}
.y15{bottom:1173.052080px;}
.y37{bottom:1173.060000px;}
.y1{bottom:1193.040000px;}
.h11{height:23.940000px;}
.h13{height:23.941500px;}
.h12{height:24.120000px;}
.hb{height:27.650391px;}
.h15{height:28.800000px;}
.h3{height:41.475586px;}
.h14{height:48.060000px;}
.h9{height:50.832000px;}
.h2{height:50.876719px;}
.hd{height:51.329531px;}
.h10{height:55.792969px;}
.h8{height:64.701914px;}
.he{height:74.204648px;}
.hc{height:87.428880px;}
.hf{height:96.120000px;}
.h4{height:101.664000px;}
.ha{height:109.779120px;}
.h5{height:131.472000px;}
.h7{height:197.208000px;}
.h6{height:452.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:119.158500px;}
.w6{width:123.480000px;}
.w4{width:200.880000px;}
.w8{width:211.860000px;}
.w9{width:218.700000px;}
.w5{width:473.760000px;}
.w2{width:534.060000px;}
.w3{width:676.260000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x9{left:42.660000px;}
.x8{left:84.600000px;}
.x4{left:108.000000px;}
.xb{left:110.340000px;}
.x12{left:116.100000px;}
.xd{left:129.246480px;}
.xe{left:134.992800px;}
.xf{left:162.002160px;}
.x5{left:179.280000px;}
.x1{left:225.000000px;}
.xa{left:227.340000px;}
.x15{left:233.100000px;}
.x13{left:310.500000px;}
.xc{left:313.380000px;}
.x14{left:318.044880px;}
.x16{left:352.980000px;}
.x10{left:438.660000px;}
.x2{left:442.440000px;}
.x3{left:446.409000px;}
.x6{left:457.200000px;}
.x7{left:468.900000px;}
.x17{left:565.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls41{letter-spacing:-1.354240pt;}
.ls20{letter-spacing:-0.942080pt;}
.ls22{letter-spacing:-0.883200pt;}
.ls37{letter-spacing:-0.765440pt;}
.ls1e{letter-spacing:-0.706560pt;}
.lsd{letter-spacing:-0.647680pt;}
.ls23{letter-spacing:-0.588800pt;}
.ls24{letter-spacing:-0.529920pt;}
.ls1f{letter-spacing:-0.412160pt;}
.ls3b{letter-spacing:-0.353280pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls36{letter-spacing:-0.255360pt;}
.lsf{letter-spacing:-0.235520pt;}
.ls1c{letter-spacing:-0.213760pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.176640pt;}
.ls2e{letter-spacing:-0.170240pt;}
.ls4e{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.117760pt;}
.lse{letter-spacing:-0.106880pt;}
.ls3c{letter-spacing:-0.085120pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.058880pt;}
.ls21{letter-spacing:0.085120pt;}
.ls1d{letter-spacing:0.106880pt;}
.lsb{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.170240pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.235520pt;}
.ls48{letter-spacing:0.255360pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.294400pt;}
.ls40{letter-spacing:0.336000pt;}
.ls2b{letter-spacing:0.340480pt;}
.ls2c{letter-spacing:0.353280pt;}
.ls4d{letter-spacing:0.358400pt;}
.ls45{letter-spacing:0.641792pt;}
.ls13{letter-spacing:0.647680pt;}
.ls27{letter-spacing:1.189376pt;}
.ls16{letter-spacing:1.295360pt;}
.ls15{letter-spacing:1.943040pt;}
.ls14{letter-spacing:2.531840pt;}
.ls32{letter-spacing:3.179520pt;}
.ls33{letter-spacing:3.232512pt;}
.ls34{letter-spacing:3.827200pt;}
.ls3d{letter-spacing:3.891968pt;}
.ls2f{letter-spacing:4.474880pt;}
.ls43{letter-spacing:5.770240pt;}
.ls26{letter-spacing:6.364928pt;}
.ls19{letter-spacing:6.977280pt;}
.ls3f{letter-spacing:7.012608pt;}
.ls17{letter-spacing:7.065600pt;}
.ls12{letter-spacing:7.654400pt;}
.ls2a{letter-spacing:7.984128pt;}
.ls30{letter-spacing:8.302080pt;}
.ls39{letter-spacing:8.537600pt;}
.ls35{letter-spacing:8.949760pt;}
.ls3e{letter-spacing:9.096960pt;}
.ls29{letter-spacing:9.597440pt;}
.ls25{letter-spacing:10.239232pt;}
.ls6{letter-spacing:10.245120pt;}
.ls1b{letter-spacing:12.188160pt;}
.ls1a{letter-spacing:12.776960pt;}
.ls5{letter-spacing:14.072320pt;}
.ls3a{letter-spacing:14.720000pt;}
.ls42{letter-spacing:16.663040pt;}
.ls46{letter-spacing:19.194880pt;}
.ls28{letter-spacing:21.785600pt;}
.ls47{letter-spacing:25.612800pt;}
.ls44{letter-spacing:28.144640pt;}
.ls49{letter-spacing:30.323200pt;}
.ls18{letter-spacing:44.454400pt;}
.ls38{letter-spacing:56.903680pt;}
.ls4b{letter-spacing:252.183040pt;}
.ls4a{letter-spacing:362.229760pt;}
.ls4c{letter-spacing:396.792320pt;}
.ls0{letter-spacing:751.603200pt;}
.ws21{word-spacing:-58.880000pt;}
.ws8b{word-spacing:-53.120000pt;}
.ws0{word-spacing:-40.896000pt;}
.ws1d{word-spacing:-22.765440pt;}
.ws1c{word-spacing:-22.658560pt;}
.wsbb{word-spacing:-18.215680pt;}
.ws8a{word-spacing:-18.130560pt;}
.wsa7{word-spacing:-18.045440pt;}
.ws77{word-spacing:-17.875200pt;}
.wsa6{word-spacing:-17.790080pt;}
.ws22{word-spacing:-14.955520pt;}
.ws6{word-spacing:-14.837760pt;}
.ws4e{word-spacing:-14.778880pt;}
.ws7{word-spacing:-14.720000pt;}
.wsc5{word-spacing:-14.661120pt;}
.ws9{word-spacing:-14.602240pt;}
.wsa{word-spacing:-14.543360pt;}
.wsd3{word-spacing:-14.484480pt;}
.ws1e{word-spacing:-14.425600pt;}
.ws20{word-spacing:-14.307840pt;}
.ws23{word-spacing:-14.190080pt;}
.ws66{word-spacing:-14.131200pt;}
.ws8{word-spacing:-14.072320pt;}
.ws1f{word-spacing:-14.013440pt;}
.wsad{word-spacing:-12.336000pt;}
.ws8f{word-spacing:-3.827200pt;}
.ws3b{word-spacing:-3.709440pt;}
.ws90{word-spacing:-3.591680pt;}
.ws62{word-spacing:-3.415040pt;}
.ws61{word-spacing:-3.061760pt;}
.wsd0{word-spacing:-2.944000pt;}
.ws94{word-spacing:-2.885120pt;}
.ws3e{word-spacing:-2.767360pt;}
.wsdc{word-spacing:-2.649600pt;}
.ws53{word-spacing:-2.531840pt;}
.ws36{word-spacing:-2.472960pt;}
.ws64{word-spacing:-2.468480pt;}
.ws34{word-spacing:-2.414080pt;}
.wsb4{word-spacing:-2.237440pt;}
.ws9b{word-spacing:-2.178560pt;}
.ws80{word-spacing:-1.943040pt;}
.wsbd{word-spacing:-1.884160pt;}
.ws33{word-spacing:-1.825280pt;}
.ws9a{word-spacing:-1.295360pt;}
.ws38{word-spacing:-1.177600pt;}
.wsaf{word-spacing:-1.059840pt;}
.ws1b{word-spacing:-0.883200pt;}
.ws75{word-spacing:-0.647680pt;}
.ws65{word-spacing:-0.529920pt;}
.wsc{word-spacing:-0.384000pt;}
.wsbe{word-spacing:-0.353280pt;}
.ws63{word-spacing:-0.340480pt;}
.ws71{word-spacing:-0.294400pt;}
.wsb{word-spacing:-0.256000pt;}
.ws6a{word-spacing:-0.255360pt;}
.ws17{word-spacing:-0.235520pt;}
.ws3{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.170240pt;}
.ws19{word-spacing:-0.117760pt;}
.ws16{word-spacing:-0.106880pt;}
.wsd6{word-spacing:-0.085120pt;}
.ws4{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.058880pt;}
.ws59{word-spacing:0.085120pt;}
.ws14{word-spacing:0.117760pt;}
.wsdb{word-spacing:0.128000pt;}
.wsda{word-spacing:0.176640pt;}
.ws18{word-spacing:0.235520pt;}
.ws81{word-spacing:0.255360pt;}
.wse{word-spacing:0.294400pt;}
.ws95{word-spacing:0.353280pt;}
.ws2{word-spacing:0.384000pt;}
.ws27{word-spacing:0.412160pt;}
.ws29{word-spacing:0.529920pt;}
.ws37{word-spacing:0.588800pt;}
.ws48{word-spacing:0.647680pt;}
.wsc2{word-spacing:0.706560pt;}
.ws28{word-spacing:0.765440pt;}
.ws35{word-spacing:0.883200pt;}
.ws2a{word-spacing:0.942080pt;}
.wsd7{word-spacing:1.177600pt;}
.wsca{word-spacing:1.295360pt;}
.wsc1{word-spacing:1.361920pt;}
.ws44{word-spacing:1.413120pt;}
.ws51{word-spacing:1.589760pt;}
.ws69{word-spacing:1.648640pt;}
.ws2e{word-spacing:1.707520pt;}
.wsd2{word-spacing:2.001920pt;}
.ws31{word-spacing:2.060800pt;}
.ws2f{word-spacing:2.178560pt;}
.wsb1{word-spacing:2.237440pt;}
.ws2c{word-spacing:2.355200pt;}
.ws3d{word-spacing:2.472960pt;}
.ws2b{word-spacing:2.708480pt;}
.ws68{word-spacing:2.885120pt;}
.ws85{word-spacing:2.944000pt;}
.ws89{word-spacing:3.179520pt;}
.ws72{word-spacing:3.238400pt;}
.ws5a{word-spacing:3.297280pt;}
.ws86{word-spacing:3.473920pt;}
.ws9d{word-spacing:3.591680pt;}
.wsc4{word-spacing:3.709440pt;}
.ws52{word-spacing:3.944960pt;}
.ws7a{word-spacing:4.121600pt;}
.wsb7{word-spacing:4.239360pt;}
.wsd1{word-spacing:4.357120pt;}
.wsa2{word-spacing:4.474880pt;}
.ws6c{word-spacing:4.592640pt;}
.ws98{word-spacing:4.710400pt;}
.ws42{word-spacing:4.769280pt;}
.ws5f{word-spacing:4.887040pt;}
.ws5b{word-spacing:5.240320pt;}
.wsab{word-spacing:5.416960pt;}
.wsb9{word-spacing:5.534720pt;}
.wsb3{word-spacing:5.711360pt;}
.ws30{word-spacing:5.888000pt;}
.ws8e{word-spacing:6.469120pt;}
.ws41{word-spacing:6.476800pt;}
.ws3c{word-spacing:6.535680pt;}
.ws40{word-spacing:6.712320pt;}
.ws9c{word-spacing:6.830080pt;}
.ws3a{word-spacing:7.124480pt;}
.ws15{word-spacing:7.183360pt;}
.ws50{word-spacing:7.360000pt;}
.ws26{word-spacing:7.418880pt;}
.ws4f{word-spacing:7.477760pt;}
.ws24{word-spacing:7.713280pt;}
.ws25{word-spacing:7.772160pt;}
.ws60{word-spacing:7.948800pt;}
.ws93{word-spacing:8.007680pt;}
.wsd{word-spacing:8.066560pt;}
.ws73{word-spacing:8.419840pt;}
.wsa0{word-spacing:8.596480pt;}
.wsa1{word-spacing:8.655360pt;}
.ws67{word-spacing:8.714240pt;}
.ws39{word-spacing:9.067520pt;}
.wsa9{word-spacing:9.361920pt;}
.ws5e{word-spacing:9.715200pt;}
.wsd4{word-spacing:10.009600pt;}
.ws13{word-spacing:10.362880pt;}
.wsd5{word-spacing:10.480640pt;}
.ws11{word-spacing:10.539520pt;}
.ws84{word-spacing:10.892800pt;}
.ws3f{word-spacing:11.010560pt;}
.ws4a{word-spacing:11.187200pt;}
.ws56{word-spacing:11.246080pt;}
.ws57{word-spacing:11.304960pt;}
.ws55{word-spacing:11.658240pt;}
.wsce{word-spacing:11.834880pt;}
.ws54{word-spacing:11.952640pt;}
.ws7f{word-spacing:12.247040pt;}
.ws4c{word-spacing:12.305920pt;}
.ws4b{word-spacing:12.482560pt;}
.ws78{word-spacing:12.541440pt;}
.wsd9{word-spacing:12.776960pt;}
.ws43{word-spacing:12.894720pt;}
.ws88{word-spacing:12.953600pt;}
.ws87{word-spacing:13.071360pt;}
.ws5d{word-spacing:13.130240pt;}
.ws6b{word-spacing:13.189120pt;}
.ws5c{word-spacing:13.542400pt;}
.wsb2{word-spacing:13.836800pt;}
.ws10{word-spacing:14.190080pt;}
.ws96{word-spacing:14.484480pt;}
.ws97{word-spacing:14.837760pt;}
.wsc6{word-spacing:15.014400pt;}
.ws6e{word-spacing:15.132160pt;}
.ws6f{word-spacing:15.485440pt;}
.wsba{word-spacing:16.074240pt;}
.ws92{word-spacing:16.133120pt;}
.ws9e{word-spacing:16.427520pt;}
.ws47{word-spacing:16.780800pt;}
.ws45{word-spacing:16.957440pt;}
.ws46{word-spacing:17.075200pt;}
.ws76{word-spacing:17.428480pt;}
.ws91{word-spacing:18.017280pt;}
.ws82{word-spacing:18.641280pt;}
.wsbf{word-spacing:18.664960pt;}
.wsaa{word-spacing:18.900480pt;}
.wsa8{word-spacing:19.312640pt;}
.ws70{word-spacing:19.960320pt;}
.wsf{word-spacing:20.608000pt;}
.ws74{word-spacing:21.137920pt;}
.ws32{word-spacing:21.255680pt;}
.wsa4{word-spacing:21.432320pt;}
.ws58{word-spacing:21.903360pt;}
.wsa3{word-spacing:22.080000pt;}
.wsc3{word-spacing:22.492160pt;}
.ws9f{word-spacing:22.668800pt;}
.wsc0{word-spacing:23.139840pt;}
.wsa5{word-spacing:23.748480pt;}
.ws6d{word-spacing:23.787520pt;}
.wsb5{word-spacing:24.435200pt;}
.wsb6{word-spacing:24.729600pt;}
.wscc{word-spacing:25.082880pt;}
.wscd{word-spacing:25.671680pt;}
.ws49{word-spacing:25.730560pt;}
.ws7c{word-spacing:25.966080pt;}
.wscb{word-spacing:26.024960pt;}
.ws7d{word-spacing:26.260480pt;}
.ws8c{word-spacing:26.378240pt;}
.ws7b{word-spacing:26.554880pt;}
.ws8d{word-spacing:26.613760pt;}
.wsb8{word-spacing:26.790400pt;}
.ws7e{word-spacing:27.025920pt;}
.wsc9{word-spacing:27.438080pt;}
.wsae{word-spacing:28.174720pt;}
.wsc7{word-spacing:28.262400pt;}
.wsc8{word-spacing:28.380160pt;}
.ws4d{word-spacing:28.556800pt;}
.wsb0{word-spacing:30.499840pt;}
.wsac{word-spacing:30.853120pt;}
.wscf{word-spacing:32.090240pt;}
.wsd8{word-spacing:35.975680pt;}
.ws79{word-spacing:36.623360pt;}
.ws83{word-spacing:38.474240pt;}
.ws99{word-spacing:57.584640pt;}
.wsbc{word-spacing:96.696320pt;}
.ws5{word-spacing:219.712000pt;}
._2{margin-left:-44.800000pt;}
._10{margin-left:-4.052480pt;}
._c{margin-left:-2.060800pt;}
._1{margin-left:-1.094400pt;}
._0{width:1.267200pt;}
._b{width:2.913280pt;}
._13{width:5.209600pt;}
._f{width:6.469120pt;}
._a{width:7.374080pt;}
._9{width:8.302080pt;}
._8{width:9.976320pt;}
._7{width:11.038720pt;}
._d{width:12.632320pt;}
._17{width:16.848640pt;}
._e{width:18.981760pt;}
._6{width:20.930560pt;}
._11{width:22.433280pt;}
._12{width:23.663360pt;}
._14{width:28.344960pt;}
._4{width:30.087680pt;}
._16{width:32.005120pt;}
._15{width:96.185600pt;}
._18{width:352.926720pt;}
._3{width:764.144640pt;}
._5{width:1144.332800pt;}
.fs7{font-size:32.000000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:192.000000pt;}
.y14{bottom:-84.640000pt;}
.y13{bottom:-55.360000pt;}
.y12{bottom:-26.080000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.360000pt;}
.y1fe{bottom:7.200000pt;}
.y200{bottom:7.360000pt;}
.y20d{bottom:11.520000pt;}
.y1f8{bottom:28.640000pt;}
.yf{bottom:32.640000pt;}
.y36{bottom:38.404000pt;}
.y3{bottom:51.044000pt;}
.y35{bottom:52.960000pt;}
.ye{bottom:56.640000pt;}
.y2{bottom:65.600000pt;}
.y1f6{bottom:71.360000pt;}
.yd{bottom:85.120000pt;}
.y5e{bottom:104.160000pt;}
.y84{bottom:109.434880pt;}
.yca{bottom:110.240000pt;}
.ya7{bottom:113.114880pt;}
.y1de{bottom:114.240000pt;}
.y16e{bottom:116.792960pt;}
.yed{bottom:117.090560pt;}
.y10a{bottom:117.107840pt;}
.y14c{bottom:125.043840pt;}
.y5d{bottom:125.427840pt;}
.y18c{bottom:127.478400pt;}
.y34{bottom:128.620800pt;}
.y83{bottom:130.720000pt;}
.yc9{bottom:131.520000pt;}
.ya6{bottom:134.400000pt;}
.y16d{bottom:138.240000pt;}
.yec{bottom:138.375680pt;}
.y109{bottom:138.392960pt;}
.y1a4{bottom:138.533120pt;}
.y1dd{bottom:143.680000pt;}
.y14b{bottom:146.328960pt;}
.y5c{bottom:146.874880pt;}
.y18b{bottom:148.763520pt;}
.y1c4{bottom:148.903680pt;}
.y82{bottom:152.000000pt;}
.yc8{bottom:152.792960pt;}
.yb{bottom:155.360000pt;}
.y33{bottom:159.503360pt;}
.y16c{bottom:159.520000pt;}
.yeb{bottom:159.822720pt;}
.y108{bottom:159.840000pt;}
.ya5{bottom:163.834880pt;}
.y14a{bottom:167.776000pt;}
.y5b{bottom:168.160000pt;}
.y18a{bottom:170.210560pt;}
.y126{bottom:171.834880pt;}
.y1dc{bottom:172.960000pt;}
.yc7{bottom:174.240000pt;}
.y1c3{bottom:178.181760pt;}
.y81{bottom:180.000000pt;}
.y16b{bottom:180.960000pt;}
.yea{bottom:181.107840pt;}
.y107{bottom:181.120000pt;}
.ya4{bottom:185.120000pt;}
.y149{bottom:189.061120pt;}
.y32{bottom:190.385920pt;}
.y189{bottom:191.495680pt;}
.y125{bottom:193.120000pt;}
.y1a3{bottom:194.542080pt;}
.yc6{bottom:195.497600pt;}
.y5a{bottom:197.600000pt;}
.y1db{bottom:202.240000pt;}
.ye9{bottom:202.554880pt;}
.ya3{bottom:206.400000pt;}
.y106{bottom:206.714880pt;}
.y1c2{bottom:207.621760pt;}
.y16a{bottom:210.203520pt;}
.y148{bottom:210.508160pt;}
.y188{bottom:212.942720pt;}
.y124{bottom:214.400000pt;}
.yc5{bottom:216.944640pt;}
.y59{bottom:218.880000pt;}
.y80{bottom:219.840000pt;}
.ya{bottom:220.320000pt;}
.y31{bottom:221.106560pt;}
.ye8{bottom:223.840000pt;}
.ya2{bottom:227.840000pt;}
.y169{bottom:231.650560pt;}
.y1da{bottom:231.680000pt;}
.y147{bottom:231.793280pt;}
.y187{bottom:234.227840pt;}
.y123{bottom:235.840000pt;}
.y1c1{bottom:236.899840pt;}
.y105{bottom:238.720000pt;}
.y58{bottom:240.123520pt;}
.y7f{bottom:241.097600pt;}
.ye7{bottom:245.280000pt;}
.yc4{bottom:246.222720pt;}
.ya1{bottom:249.097600pt;}
.y1a2{bottom:250.551040pt;}
.y30{bottom:251.989120pt;}
.y168{bottom:252.935680pt;}
.y146{bottom:253.240320pt;}
.y186{bottom:255.674880pt;}
.y122{bottom:257.120000pt;}
.y1d9{bottom:260.960000pt;}
.y57{bottom:261.570560pt;}
.y1c0{bottom:266.177920pt;}
.yc3{bottom:267.669760pt;}
.y7e{bottom:270.537600pt;}
.ya0{bottom:270.544640pt;}
.ye6{bottom:273.272800pt;}
.y167{bottom:274.220800pt;}
.y185{bottom:276.960000pt;}
.y121{bottom:278.554880pt;}
.y104{bottom:278.560000pt;}
.y145{bottom:282.518400pt;}
.y56{bottom:282.855680pt;}
.y2f{bottom:282.871680pt;}
.y9{bottom:285.120000pt;}
.yc2{bottom:288.954880pt;}
.y1d8{bottom:290.400000pt;}
.y7d{bottom:291.822720pt;}
.y9f{bottom:291.829760pt;}
.y1bf{bottom:295.617920pt;}
.y166{bottom:295.667840pt;}
.y184{bottom:298.240000pt;}
.y103{bottom:299.840000pt;}
.y144{bottom:303.803520pt;}
.y55{bottom:304.302720pt;}
.y1a1{bottom:306.560000pt;}
.y120{bottom:307.832960pt;}
.yc1{bottom:310.240000pt;}
.ye5{bottom:312.960000pt;}
.y7c{bottom:313.269760pt;}
.y2e{bottom:313.592320pt;}
.y1fb{bottom:314.238720pt;}
.y1be{bottom:316.903040pt;}
.y165{bottom:316.952960pt;}
.y1d7{bottom:319.674880pt;}
.y9e{bottom:321.269760pt;}
.y102{bottom:321.280000pt;}
.y183{bottom:323.834880pt;}
.y143{bottom:325.250560pt;}
.y54{bottom:325.587840pt;}
.y212{bottom:328.960000pt;}
.y11f{bottom:329.280000pt;}
.yc0{bottom:331.667840pt;}
.ye4{bottom:334.240000pt;}
.y7b{bottom:334.554880pt;}
.y1bd{bottom:338.350080pt;}
.y164{bottom:338.400000pt;}
.y1d6{bottom:340.960000pt;}
.y9d{bottom:342.554880pt;}
.y2d{bottom:344.474880pt;}
.y142{bottom:346.535680pt;}
.y53{bottom:347.034880pt;}
.y7{bottom:347.040000pt;}
.y8{bottom:349.920000pt;}
.y11e{bottom:350.560000pt;}
.y211{bottom:351.040000pt;}
.y1f3{bottom:351.687680pt;}
.ybf{bottom:352.952960pt;}
.ye3{bottom:355.680000pt;}
.y7a{bottom:355.840000pt;}
.y1bc{bottom:359.635200pt;}
.y163{bottom:359.680000pt;}
.y1a0{bottom:362.419200pt;}
.y9c{bottom:363.840000pt;}
.y141{bottom:367.982720pt;}
.y52{bottom:368.320000pt;}
.y1d5{bottom:370.400000pt;}
.y11d{bottom:371.798400pt;}
.y210{bottom:372.960000pt;}
.ybe{bottom:374.400000pt;}
.y2c{bottom:375.195520pt;}
.ye2{bottom:376.960000pt;}
.y79{bottom:377.280000pt;}
.y10{bottom:379.680000pt;}
.y1f2{bottom:380.965760pt;}
.y162{bottom:385.274880pt;}
.y9b{bottom:385.280000pt;}
.y1bb{bottom:388.913280pt;}
.y140{bottom:389.267840pt;}
.y19f{bottom:391.697280pt;}
.y101{bottom:393.280000pt;}
.y182{bottom:395.657600pt;}
.ybd{bottom:395.680000pt;}
.y51{bottom:397.600000pt;}
.ye1{bottom:398.400000pt;}
.y78{bottom:398.554880pt;}
.y1d4{bottom:399.680000pt;}
.y11c{bottom:401.238400pt;}
.y2b{bottom:406.078080pt;}
.y9a{bottom:406.549760pt;}
.y20f{bottom:409.760000pt;}
.y1ba{bottom:410.360320pt;}
.y1f1{bottom:410.405760pt;}
.y13f{bottom:410.552960pt;}
.y100{bottom:414.560000pt;}
.y181{bottom:416.942720pt;}
.ybc{bottom:416.960000pt;}
.y161{bottom:417.280000pt;}
.y50{bottom:419.040000pt;}
.ye0{bottom:419.680000pt;}
.y19e{bottom:420.975360pt;}
.y11b{bottom:422.523520pt;}
.y77{bottom:427.994880pt;}
.y99{bottom:427.996800pt;}
.y1d3{bottom:429.120000pt;}
.y1b9{bottom:431.645440pt;}
.y13e{bottom:432.000000pt;}
.yff{bottom:436.000000pt;}
.y2a{bottom:436.960640pt;}
.y180{bottom:438.389760pt;}
.y1f0{bottom:439.683840pt;}
.y4f{bottom:440.320000pt;}
.ybb{bottom:442.549760pt;}
.y11a{bottom:443.970560pt;}
.ydf{bottom:448.960000pt;}
.y76{bottom:449.280000pt;}
.y98{bottom:449.281920pt;}
.y19d{bottom:450.415360pt;}
.y13d{bottom:453.280000pt;}
.y1fa{bottom:456.640000pt;}
.y160{bottom:456.960000pt;}
.yfe{bottom:457.257600pt;}
.y1d2{bottom:458.400000pt;}
.y17f{bottom:459.674880pt;}
.y1b8{bottom:461.085440pt;}
.y4e{bottom:461.720320pt;}
.y119{bottom:465.255680pt;}
.y29{bottom:467.033600pt;}
.y1ef{bottom:469.123840pt;}
.yde{bottom:470.400000pt;}
.y75{bottom:470.528640pt;}
.yba{bottom:474.554880pt;}
.y15f{bottom:478.400000pt;}
.yfd{bottom:478.542720pt;}
.y97{bottom:478.560000pt;}
.y1f5{bottom:478.880000pt;}
.y19c{bottom:479.693440pt;}
.y17e{bottom:480.960000pt;}
.y13c{bottom:481.280000pt;}
.y1b7{bottom:482.370560pt;}
.y4d{bottom:483.005440pt;}
.y1f9{bottom:486.240000pt;}
.y118{bottom:486.540800pt;}
.y1d1{bottom:487.834880pt;}
.y28{bottom:489.113600pt;}
.ydd{bottom:491.680000pt;}
.y74{bottom:491.975680pt;}
.y1ee{bottom:498.401920pt;}
.y15e{bottom:499.672960pt;}
.y96{bottom:500.000000pt;}
.yc{bottom:502.400000pt;}
.y1b6{bottom:503.817600pt;}
.y4c{bottom:504.452480pt;}
.yb9{bottom:506.560000pt;}
.yfc{bottom:507.982720pt;}
.y117{bottom:507.987840pt;}
.y1d0{bottom:509.120000pt;}
.y19b{bottom:509.133440pt;}
.ydc{bottom:513.114880pt;}
.y73{bottom:513.260800pt;}
.y27{bottom:519.996160pt;}
.y13b{bottom:521.120000pt;}
.y95{bottom:521.243520pt;}
.y17d{bottom:523.680000pt;}
.y1b5{bottom:525.102720pt;}
.y4b{bottom:525.737600pt;}
.y1ed{bottom:527.841920pt;}
.y1f7{bottom:528.960000pt;}
.yfb{bottom:529.267840pt;}
.y116{bottom:529.272960pt;}
.ydb{bottom:534.400000pt;}
.y72{bottom:534.707840pt;}
.y1cf{bottom:538.392960pt;}
.y19a{bottom:538.411520pt;}
.y13a{bottom:542.400000pt;}
.y94{bottom:542.690560pt;}
.y17c{bottom:545.120000pt;}
.yb8{bottom:546.382720pt;}
.yfa{bottom:550.714880pt;}
.y26{bottom:550.716800pt;}
.y115{bottom:550.720000pt;}
.y1b4{bottom:554.380800pt;}
.y4a{bottom:555.015680pt;}
.yda{bottom:555.840000pt;}
.y71{bottom:555.992960pt;}
.y1ec{bottom:557.120000pt;}
.y1ce{bottom:559.840000pt;}
.y15d{bottom:563.770880pt;}
.y139{bottom:563.840000pt;}
.y93{bottom:563.975680pt;}
.y17b{bottom:566.400000pt;}
.yb7{bottom:567.667840pt;}
.y199{bottom:567.851520pt;}
.yf9{bottom:572.000000pt;}
.y1b3{bottom:575.827840pt;}
.y49{bottom:576.462720pt;}
.yd9{bottom:577.120000pt;}
.y70{bottom:577.440000pt;}
.y25{bottom:581.599360pt;}
.y15c{bottom:585.056000pt;}
.y138{bottom:585.114880pt;}
.y92{bottom:585.422720pt;}
.y1eb{bottom:586.400000pt;}
.y1f4{bottom:587.836160pt;}
.yb6{bottom:589.114880pt;}
.y1cd{bottom:589.120000pt;}
.yf8{bottom:593.440000pt;}
.y17a{bottom:595.805440pt;}
.y1b2{bottom:597.112960pt;}
.y198{bottom:597.129600pt;}
.y48{bottom:597.747840pt;}
.yd8{bottom:598.392960pt;}
.y6f{bottom:598.720000pt;}
.y20e{bottom:602.560000pt;}
.y15b{bottom:606.341120pt;}
.y137{bottom:606.400000pt;}
.y91{bottom:606.707840pt;}
.yb5{bottom:610.400000pt;}
.y24{bottom:612.481920pt;}
.yf7{bottom:614.695680pt;}
.y1ea{bottom:615.840000pt;}
.y179{bottom:617.090560pt;}
.y1b1{bottom:618.560000pt;}
.y47{bottom:619.194880pt;}
.yd7{bottom:619.840000pt;}
.y114{bottom:621.440000pt;}
.y20c{bottom:624.480000pt;}
.y197{bottom:626.407680pt;}
.y6e{bottom:626.720000pt;}
.y15a{bottom:627.788160pt;}
.y90{bottom:627.992960pt;}
.yb4{bottom:631.840000pt;}
.y136{bottom:635.840000pt;}
.yf6{bottom:635.980800pt;}
.y178{bottom:638.375680pt;}
.y46{bottom:640.480000pt;}
.y23{bottom:642.554880pt;}
.y1e9{bottom:645.120000pt;}
.y1cc{bottom:647.840000pt;}
.yd6{bottom:649.078400pt;}
.y8f{bottom:649.440000pt;}
.yb3{bottom:653.090560pt;}
.y196{bottom:655.847680pt;}
.y1b0{bottom:656.160000pt;}
.y159{bottom:657.066240pt;}
.y135{bottom:657.120000pt;}
.yf5{bottom:657.427840pt;}
.y20b{bottom:658.080000pt;}
.y177{bottom:659.822720pt;}
.y113{bottom:661.120000pt;}
.y45{bottom:661.728640pt;}
.y22{bottom:663.840000pt;}
.y6d{bottom:666.400000pt;}
.yd5{bottom:670.525440pt;}
.y8e{bottom:670.720000pt;}
.y20a{bottom:672.800000pt;}
.yb2{bottom:674.375680pt;}
.y1e8{bottom:674.560000pt;}
.y1cb{bottom:677.280000pt;}
.y134{bottom:678.508160pt;}
.y158{bottom:678.513280pt;}
.yf4{bottom:678.712960pt;}
.y176{bottom:681.107840pt;}
.y112{bottom:682.400000pt;}
.y44{bottom:683.175680pt;}
.y195{bottom:685.125760pt;}
.y6c{bottom:687.840000pt;}
.yd4{bottom:691.810560pt;}
.yb1{bottom:695.822720pt;}
.y8d{bottom:698.720000pt;}
.y133{bottom:699.793280pt;}
.y157{bottom:699.798400pt;}
.yf3{bottom:700.160000pt;}
.y209{bottom:702.074880pt;}
.y175{bottom:702.554880pt;}
.y21{bottom:703.200000pt;}
.y111{bottom:703.840000pt;}
.y43{bottom:704.460800pt;}
.y1ca{bottom:706.560000pt;}
.y6b{bottom:709.120000pt;}
.y1af{bottom:711.840000pt;}
.yd3{bottom:713.257600pt;}
.y194{bottom:714.565760pt;}
.yb0{bottom:717.107840pt;}
.y156{bottom:721.245440pt;}
.yf2{bottom:721.440000pt;}
.y208{bottom:723.360000pt;}
.y174{bottom:723.840000pt;}
.y110{bottom:725.056000pt;}
.y42{bottom:725.907840pt;}
.y132{bottom:729.233280pt;}
.y1e7{bottom:733.280000pt;}
.yd2{bottom:734.542720pt;}
.y1c9{bottom:735.840000pt;}
.y206{bottom:738.080000pt;}
.yaf{bottom:738.554880pt;}
.y6a{bottom:738.560000pt;}
.y1ae{bottom:741.280000pt;}
.y155{bottom:742.530560pt;}
.y193{bottom:743.843840pt;}
.y173{bottom:745.280000pt;}
.y207{bottom:745.440000pt;}
.y10f{bottom:746.503040pt;}
.y41{bottom:747.192960pt;}
.y20{bottom:749.267840pt;}
.yf1{bottom:749.440000pt;}
.y131{bottom:750.518400pt;}
.yd1{bottom:755.827840pt;}
.y69{bottom:759.840000pt;}
.y1ad{bottom:762.520320pt;}
.y1e6{bottom:762.560000pt;}
.y154{bottom:763.815680pt;}
.y1c8{bottom:765.280000pt;}
.y10e{bottom:767.788160pt;}
.y40{bottom:768.640000pt;}
.y1f{bottom:770.552960pt;}
.y172{bottom:770.880000pt;}
.y130{bottom:771.803520pt;}
.y192{bottom:773.283840pt;}
.yd0{bottom:777.274880pt;}
.y68{bottom:781.274880pt;}
.y1ac{bottom:783.805440pt;}
.y153{bottom:785.262720pt;}
.y205{bottom:788.794880pt;}
.y10d{bottom:789.235200pt;}
.y8c{bottom:789.274880pt;}
.yae{bottom:789.280000pt;}
.y3f{bottom:789.920000pt;}
.y1e5{bottom:791.840000pt;}
.y1e{bottom:792.000000pt;}
.y12f{bottom:793.250560pt;}
.y1c7{bottom:794.560000pt;}
.ycf{bottom:798.560000pt;}
.y67{bottom:802.560000pt;}
.y191{bottom:802.561920pt;}
.y1ab{bottom:805.252480pt;}
.y152{bottom:806.547840pt;}
.y204{bottom:810.080000pt;}
.y10c{bottom:810.520320pt;}
.yad{bottom:810.525440pt;}
.y171{bottom:810.554880pt;}
.y8b{bottom:810.560000pt;}
.y1d{bottom:813.280000pt;}
.y12e{bottom:814.535680pt;}
.y3e{bottom:817.920000pt;}
.yce{bottom:820.000000pt;}
.y1e4{bottom:821.280000pt;}
.y1c6{bottom:824.000000pt;}
.y203{bottom:824.800000pt;}
.y1aa{bottom:826.537600pt;}
.y151{bottom:827.994880pt;}
.y10b{bottom:831.805440pt;}
.yac{bottom:831.810560pt;}
.yf0{bottom:831.820800pt;}
.y66{bottom:831.840000pt;}
.y1c{bottom:834.552960pt;}
.y12d{bottom:835.982720pt;}
.ycd{bottom:845.594880pt;}
.y150{bottom:849.280000pt;}
.y1e3{bottom:850.560000pt;}
.y8a{bottom:853.252480pt;}
.yab{bottom:853.257600pt;}
.yef{bottom:853.267840pt;}
.y65{bottom:853.274880pt;}
.y170{bottom:853.280000pt;}
.y202{bottom:854.080000pt;}
.y1a9{bottom:855.977600pt;}
.y1b{bottom:856.000000pt;}
.y12c{bottom:857.267840pt;}
.y3d{bottom:857.580800pt;}
.y190{bottom:861.280000pt;}
.y201{bottom:868.960000pt;}
.y14f{bottom:870.560000pt;}
.yee{bottom:874.552960pt;}
.y64{bottom:874.560000pt;}
.y1a8{bottom:877.262720pt;}
.ycc{bottom:877.600000pt;}
.y12b{bottom:878.552960pt;}
.y3c{bottom:879.027840pt;}
.y1e2{bottom:880.000000pt;}
.y89{bottom:882.530560pt;}
.yaa{bottom:882.535680pt;}
.y18f{bottom:882.560000pt;}
.y1a{bottom:885.278080pt;}
.y6{bottom:888.160000pt;}
.y1ff{bottom:890.880000pt;}
.y63{bottom:896.000000pt;}
.y14e{bottom:896.154880pt;}
.y1a7{bottom:898.547840pt;}
.y12a{bottom:900.000000pt;}
.y3b{bottom:900.312960pt;}
.y88{bottom:903.977600pt;}
.ya9{bottom:903.982720pt;}
.y18e{bottom:904.000000pt;}
.y1e1{bottom:909.274880pt;}
.y1c5{bottom:912.000000pt;}
.y1fd{bottom:912.960000pt;}
.y62{bottom:917.280000pt;}
.y19{bottom:918.560000pt;}
.y1a6{bottom:919.994880pt;}
.y129{bottom:921.280000pt;}
.y5{bottom:921.440000pt;}
.y3a{bottom:921.760000pt;}
.y87{bottom:925.262720pt;}
.ya8{bottom:925.267840pt;}
.y16f{bottom:925.280000pt;}
.y14d{bottom:928.160000pt;}
.y1e0{bottom:930.560000pt;}
.ycb{bottom:938.560000pt;}
.y1a5{bottom:941.280000pt;}
.y86{bottom:946.547840pt;}
.y61{bottom:946.552960pt;}
.y18d{bottom:946.560000pt;}
.y128{bottom:946.874880pt;}
.y1fc{bottom:954.240000pt;}
.y1df{bottom:960.000000pt;}
.y39{bottom:961.120000pt;}
.y18{bottom:966.560000pt;}
.y85{bottom:967.994880pt;}
.y60{bottom:968.000000pt;}
.y127{bottom:978.880000pt;}
.y5f{bottom:989.280000pt;}
.y4{bottom:989.760000pt;}
.y17{bottom:1007.031680pt;}
.y38{bottom:1019.680000pt;}
.y16{bottom:1024.945920pt;}
.y15{bottom:1042.712960pt;}
.y37{bottom:1042.720000pt;}
.y1{bottom:1060.480000pt;}
.h11{height:21.280000pt;}
.h13{height:21.281333pt;}
.h12{height:21.440000pt;}
.hb{height:24.578125pt;}
.h15{height:25.600000pt;}
.h3{height:36.867188pt;}
.h14{height:42.720000pt;}
.h9{height:45.184000pt;}
.h2{height:45.223750pt;}
.hd{height:45.626250pt;}
.h10{height:49.593750pt;}
.h8{height:57.512812pt;}
.he{height:65.959688pt;}
.hc{height:77.714560pt;}
.hf{height:85.440000pt;}
.h4{height:90.368000pt;}
.ha{height:97.581440pt;}
.h5{height:116.864000pt;}
.h7{height:175.296000pt;}
.h6{height:402.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:105.918667pt;}
.w6{width:109.760000pt;}
.w4{width:178.560000pt;}
.w8{width:188.320000pt;}
.w9{width:194.400000pt;}
.w5{width:421.120000pt;}
.w2{width:474.720000pt;}
.w3{width:601.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x9{left:37.920000pt;}
.x8{left:75.200000pt;}
.x4{left:96.000000pt;}
.xb{left:98.080000pt;}
.x12{left:103.200000pt;}
.xd{left:114.885760pt;}
.xe{left:119.993600pt;}
.xf{left:144.001920pt;}
.x5{left:159.360000pt;}
.x1{left:200.000000pt;}
.xa{left:202.080000pt;}
.x15{left:207.200000pt;}
.x13{left:276.000000pt;}
.xc{left:278.560000pt;}
.x14{left:282.706560pt;}
.x16{left:313.760000pt;}
.x10{left:389.920000pt;}
.x2{left:393.280000pt;}
.x3{left:396.808000pt;}
.x6{left:406.400000pt;}
.x7{left:416.800000pt;}
.x17{left:502.720000pt;}
}




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