
    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_45199690bf543a49e6935c00.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca2c0a78b1c374f1b562fda6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.017000;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_b286b77fe40d26dcf938d955.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975000;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_fd3a134da6acd6a18d547032.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_748e9b35cc5aca7ff14e4d3d.woff2')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_e9a2ae0f411ba1494077784d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_365a07a9340274b2abeca7e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-18.000000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.v3{vertical-align:23.590080px;}
.ls25{letter-spacing:-1.126080px;}
.ls37{letter-spacing:-1.059840px;}
.ls23{letter-spacing:-0.993600px;}
.ls36{letter-spacing:-0.861120px;}
.ls1a{letter-spacing:-0.794880px;}
.ls2f{letter-spacing:-0.728640px;}
.ls30{letter-spacing:-0.662400px;}
.ls26{letter-spacing:-0.596160px;}
.ls28{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.529920px;}
.ls27{letter-spacing:-0.486000px;}
.ls24{letter-spacing:-0.463680px;}
.ls3f{letter-spacing:-0.397440px;}
.lsa{letter-spacing:-0.336960px;}
.lse{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.264960px;}
.ls1c{letter-spacing:-0.252720px;}
.ls1d{letter-spacing:-0.198720px;}
.ls34{letter-spacing:-0.168480px;}
.lsd{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.066240px;}
.ls14{letter-spacing:0.084240px;}
.ls19{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.124200px;}
.ls1b{letter-spacing:0.132480px;}
.ls18{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.198720px;}
.ls6{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.264960px;}
.ls39{letter-spacing:0.290880px;}
.ls13{letter-spacing:0.308160px;}
.ls38{letter-spacing:0.317952px;}
.ls7{letter-spacing:0.331200px;}
.ls45{letter-spacing:0.357120px;}
.ls9{letter-spacing:0.390816px;}
.ls12{letter-spacing:0.397440px;}
.ls11{letter-spacing:0.463680px;}
.ls40{letter-spacing:0.529920px;}
.ls43{letter-spacing:0.596160px;}
.ls2d{letter-spacing:1.192320px;}
.ls3{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.298304px;}
.ls4{letter-spacing:1.347840px;}
.ls5{letter-spacing:1.432080px;}
.ls0{letter-spacing:1.440000px;}
.ls16{letter-spacing:2.649600px;}
.ls1e{letter-spacing:3.378240px;}
.ls15{letter-spacing:4.106880px;}
.ls20{letter-spacing:4.835520px;}
.ls2b{letter-spacing:5.564160px;}
.ls32{letter-spacing:5.577408px;}
.ls33{letter-spacing:6.557760px;}
.ls3d{letter-spacing:6.955200px;}
.ls2a{letter-spacing:7.683840px;}
.ls1f{letter-spacing:8.412480px;}
.ls29{letter-spacing:8.544960px;}
.ls2c{letter-spacing:9.141120px;}
.ls44{letter-spacing:10.445760px;}
.ls3c{letter-spacing:10.598400px;}
.ls2e{letter-spacing:11.119680px;}
.ls3a{letter-spacing:13.248000px;}
.ls31{letter-spacing:14.742000px;}
.ls42{letter-spacing:57.893760px;}
.ls35{letter-spacing:59.351040px;}
.ls3e{letter-spacing:66.571200px;}
.ls3b{letter-spacing:93.253680px;}
.ls41{letter-spacing:96.117840px;}
.ls1{letter-spacing:845.784000px;}
.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;}
}
.ws82{word-spacing:-66.240000px;}
.ws18{word-spacing:-23.250240px;}
.ws98{word-spacing:-22.913280px;}
.ws5c{word-spacing:-21.902400px;}
.wsae{word-spacing:-21.733920px;}
.ws77{word-spacing:-21.649680px;}
.ws5{word-spacing:-21.565440px;}
.ws45{word-spacing:-19.800000px;}
.wsd{word-spacing:-18.679680px;}
.wse{word-spacing:-18.613440px;}
.ws90{word-spacing:-18.547200px;}
.ws15{word-spacing:-18.480960px;}
.ws16{word-spacing:-18.414720px;}
.ws17{word-spacing:-18.348480px;}
.wsb{word-spacing:-18.282240px;}
.wsa{word-spacing:-18.216000px;}
.ws78{word-spacing:-18.149760px;}
.ws7{word-spacing:-18.083520px;}
.ws19{word-spacing:-18.017280px;}
.ws8{word-spacing:-17.951040px;}
.wsc{word-spacing:-17.884800px;}
.ws9c{word-spacing:-17.818560px;}
.wsa9{word-spacing:-17.752320px;}
.ws44{word-spacing:-17.686080px;}
.ws8f{word-spacing:-17.619840px;}
.ws5d{word-spacing:-17.553600px;}
.wsaa{word-spacing:-17.421120px;}
.ws8e{word-spacing:-17.354880px;}
.ws6{word-spacing:-17.288640px;}
.ws97{word-spacing:-17.222400px;}
.ws9{word-spacing:-17.156160px;}
.ws7a{word-spacing:-16.957440px;}
.ws81{word-spacing:-16.891200px;}
.ws79{word-spacing:-16.427520px;}
.ws9b{word-spacing:-15.228000px;}
.ws5e{word-spacing:-14.526000px;}
.ws47{word-spacing:-14.418000px;}
.ws46{word-spacing:-10.692000px;}
.ws2d{word-spacing:-4.570560px;}
.wsa1{word-spacing:-4.504320px;}
.wsa0{word-spacing:-4.438080px;}
.ws2c{word-spacing:-4.371840px;}
.ws89{word-spacing:-4.239360px;}
.ws6d{word-spacing:-4.040640px;}
.ws30{word-spacing:-3.775680px;}
.ws1e{word-spacing:-3.709440px;}
.ws54{word-spacing:-3.576960px;}
.ws7d{word-spacing:-3.312000px;}
.ws73{word-spacing:-3.047040px;}
.ws72{word-spacing:-2.980800px;}
.ws4d{word-spacing:-2.848320px;}
.ws85{word-spacing:-2.782080px;}
.ws8c{word-spacing:-2.649600px;}
.ws5f{word-spacing:-2.583360px;}
.ws60{word-spacing:-2.252160px;}
.ws3c{word-spacing:-2.119680px;}
.ws9f{word-spacing:-1.854720px;}
.ws4b{word-spacing:-1.523520px;}
.ws28{word-spacing:-1.391040px;}
.ws87{word-spacing:-1.324800px;}
.ws1{word-spacing:-1.260000px;}
.ws53{word-spacing:-1.192320px;}
.ws76{word-spacing:-1.126080px;}
.ws8b{word-spacing:-1.059840px;}
.ws6c{word-spacing:-0.861120px;}
.ws25{word-spacing:-0.794880px;}
.ws2{word-spacing:-0.720000px;}
.ws3e{word-spacing:-0.662400px;}
.ws83{word-spacing:-0.596160px;}
.ws52{word-spacing:-0.463680px;}
.ws6e{word-spacing:-0.421200px;}
.ws14{word-spacing:-0.397440px;}
.ws34{word-spacing:-0.331200px;}
.ws20{word-spacing:-0.264960px;}
.ws4{word-spacing:-0.252720px;}
.ws5a{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.198720px;}
.ws3{word-spacing:-0.168480px;}
.ws13{word-spacing:-0.132480px;}
.ws43{word-spacing:-0.108000px;}
.ws10{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.066240px;}
.ws11{word-spacing:0.132480px;}
.ws31{word-spacing:0.168480px;}
.ws62{word-spacing:0.198720px;}
.ws3b{word-spacing:0.264960px;}
.ws12{word-spacing:0.331200px;}
.ws1a{word-spacing:0.336960px;}
.ws86{word-spacing:0.397440px;}
.ws48{word-spacing:0.529920px;}
.ws5b{word-spacing:0.594000px;}
.ws58{word-spacing:0.596160px;}
.ws27{word-spacing:0.662400px;}
.ws65{word-spacing:0.728640px;}
.ws1d{word-spacing:0.794880px;}
.ws8a{word-spacing:0.861120px;}
.ws57{word-spacing:0.927360px;}
.ws95{word-spacing:0.993600px;}
.ws66{word-spacing:1.059840px;}
.ws71{word-spacing:1.324800px;}
.ws1f{word-spacing:1.391040px;}
.ws7f{word-spacing:1.457280px;}
.ws3a{word-spacing:1.523520px;}
.ws7e{word-spacing:1.589760px;}
.ws2f{word-spacing:1.656000px;}
.ws88{word-spacing:1.722240px;}
.wsa3{word-spacing:1.987200px;}
.ws23{word-spacing:2.053440px;}
.ws24{word-spacing:2.185920px;}
.ws42{word-spacing:2.715840px;}
.ws39{word-spacing:2.782080px;}
.ws38{word-spacing:2.914560px;}
.ws50{word-spacing:3.179520px;}
.ws51{word-spacing:3.444480px;}
.ws4c{word-spacing:3.510720px;}
.ws3d{word-spacing:3.643200px;}
.ws91{word-spacing:3.841920px;}
.ws2b{word-spacing:3.908160px;}
.ws37{word-spacing:4.106880px;}
.ws35{word-spacing:4.173120px;}
.ws36{word-spacing:4.239360px;}
.ws32{word-spacing:4.371840px;}
.ws59{word-spacing:4.636800px;}
.ws40{word-spacing:4.901760px;}
.ws2e{word-spacing:4.968000px;}
.ws3f{word-spacing:5.100480px;}
.ws69{word-spacing:5.365440px;}
.ws6a{word-spacing:5.696640px;}
.ws4e{word-spacing:5.829120px;}
.ws4f{word-spacing:6.094080px;}
.ws22{word-spacing:6.425280px;}
.ws41{word-spacing:6.557760px;}
.ws84{word-spacing:6.624000px;}
.ws80{word-spacing:6.822720px;}
.ws96{word-spacing:7.021440px;}
.ws7c{word-spacing:7.087680px;}
.ws4a{word-spacing:7.153920px;}
.ws9e{word-spacing:7.220160px;}
.ws8d{word-spacing:7.286400px;}
.ws64{word-spacing:7.485120px;}
.ws94{word-spacing:7.750080px;}
.ws63{word-spacing:7.816320px;}
.ws49{word-spacing:7.948800px;}
.ws75{word-spacing:8.147520px;}
.ws7b{word-spacing:8.213760px;}
.ws2a{word-spacing:8.412480px;}
.ws74{word-spacing:8.478720px;}
.ws29{word-spacing:8.544960px;}
.ws55{word-spacing:8.677440px;}
.ws6b{word-spacing:9.273600px;}
.ws33{word-spacing:9.406080px;}
.ws70{word-spacing:9.472320px;}
.wsa2{word-spacing:9.671040px;}
.ws6f{word-spacing:10.002240px;}
.ws9a{word-spacing:10.134720px;}
.ws93{word-spacing:10.664640px;}
.ws68{word-spacing:10.730880px;}
.ws67{word-spacing:10.863360px;}
.ws26{word-spacing:11.459520px;}
.ws92{word-spacing:12.188160px;}
.ws56{word-spacing:12.850560px;}
.wsa6{word-spacing:13.512960px;}
.wsa4{word-spacing:13.579200px;}
.wsa5{word-spacing:13.711680px;}
.ws1b{word-spacing:15.036480px;}
.ws61{word-spacing:15.765120px;}
.ws9d{word-spacing:17.222400px;}
.ws21{word-spacing:20.070720px;}
.wsa7{word-spacing:30.867840px;}
.wsa8{word-spacing:34.511040px;}
.wsad{word-spacing:51.733440px;}
.ws99{word-spacing:58.224960px;}
.wsac{word-spacing:62.199360px;}
.wsab{word-spacing:110.090880px;}
._b{margin-left:-21.481200px;}
._9{margin-left:-17.089920px;}
._8{margin-left:-7.497360px;}
._1{margin-left:-5.220000px;}
._4{margin-left:-3.369600px;}
._d{margin-left:-2.319840px;}
._3{margin-left:-1.260000px;}
._2{width:1.260000px;}
._0{width:2.880000px;}
._7{width:4.703040px;}
._6{width:6.226560px;}
._a{width:7.932960px;}
._5{width:14.374080px;}
._c{width:43.387200px;}
._e{width:109.890720px;}
._f{width:845.752320px;}
.fc6{color:transparent;}
.fc4{color:rgb(142,150,114);}
.fc3{color:rgb(155,165,120);}
.fc2{color:rgb(142,151,114);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:9.180000px;}
.y1a{bottom:14.940000px;}
.y1e7{bottom:17.820000px;}
.y18{bottom:35.640000px;}
.y1f0{bottom:43.019850px;}
.y1ea{bottom:43.020000px;}
.y5f{bottom:109.255500px;}
.yc9{bottom:120.931920px;}
.y171{bottom:121.767840px;}
.y110{bottom:123.980400px;}
.y193{bottom:125.100000px;}
.y1d3{bottom:126.000000px;}
.y5e{bottom:130.320000px;}
.y151{bottom:132.480000px;}
.y130{bottom:140.198400px;}
.y5d{bottom:142.920000px;}
.y170{bottom:145.895760px;}
.y10f{bottom:148.108320px;}
.y1d2{bottom:150.120000px;}
.yc8{bottom:153.869760px;}
.y1b3{bottom:155.146320px;}
.y192{bottom:157.860000px;}
.y12f{bottom:164.326320px;}
.yeb{bottom:166.127760px;}
.y150{bottom:166.453920px;}
.y16f{bottom:170.023680px;}
.y10e{bottom:172.054080px;}
.y1d1{bottom:174.240000px;}
.yc7{bottom:178.163280px;}
.y1b2{bottom:179.274240px;}
.y191{bottom:181.980000px;}
.y84{bottom:188.103600px;}
.y12e{bottom:188.272080px;}
.y14f{bottom:190.581840px;}
.y5c{bottom:194.256720px;}
.y10d{bottom:196.182000px;}
.y1d0{bottom:198.180000px;}
.yea{bottom:198.883440px;}
.y16e{bottom:202.779360px;}
.y190{bottom:206.100000px;}
.y83{bottom:209.881440px;}
.yc6{bottom:210.918960px;}
.y1b1{bottom:212.212080px;}
.y12d{bottom:212.400000px;}
.y14e{bottom:214.527600px;}
.y5b{bottom:216.215280px;}
.y10c{bottom:220.127760px;}
.ye9{bottom:223.176960px;}
.y16d{bottom:226.907280px;}
.ya7{bottom:228.602880px;}
.y18f{bottom:230.040000px;}
.y1cf{bottom:230.940000px;}
.y82{bottom:231.840000px;}
.yc5{bottom:235.046880px;}
.y1b0{bottom:236.340000px;}
.y5a{bottom:237.991680px;}
.ye8{bottom:247.122720px;}
.y14d{bottom:247.647600px;}
.y12c{bottom:248.220000px;}
.ya6{bottom:250.561440px;}
.y10b{bottom:252.883440px;}
.y1ce{bottom:255.240000px;}
.y16c{bottom:259.845120px;}
.y59{bottom:259.950240px;}
.y18e{bottom:262.800000px;}
.y81{bottom:267.120000px;}
.yc4{bottom:271.048320px;}
.ye7{bottom:271.068480px;}
.y1af{bottom:272.160000px;}
.ya5{bottom:272.520000px;}
.y10a{bottom:277.176960px;}
.y1cd{bottom:279.180000px;}
.y14c{bottom:280.403280px;}
.y58{bottom:281.908800px;}
.y12b{bottom:283.680000px;}
.y16b{bottom:283.973040px;}
.y18d{bottom:287.100000px;}
.yc3{bottom:293.006880px;}
.ya4{bottom:294.480000px;}
.y1cc{bottom:303.120000px;}
.y57{bottom:303.685200px;}
.ye6{bottom:304.006320px;}
.y14b{bottom:304.531200px;}
.y80{bottom:305.699760px;}
.y1ae{bottom:305.958240px;}
.y16a{bottom:307.918800px;}
.y109{bottom:309.932640px;}
.ya3{bottom:316.460160px;}
.y18c{bottom:319.860000px;}
.y17{bottom:321.660000px;}
.y12a{bottom:322.025760px;}
.y56{bottom:325.643760px;}
.yc2{bottom:326.838960px;}
.ye5{bottom:328.134240px;}
.y14a{bottom:328.476960px;}
.y1ad{bottom:330.251760px;}
.y108{bottom:334.060560px;}
.y1cb{bottom:336.060000px;}
.ya2{bottom:338.236560px;}
.y7f{bottom:339.531840px;}
.y169{bottom:340.856640px;}
.y18b{bottom:343.980000px;}
.y55{bottom:347.602320px;}
.y36{bottom:348.120000px;}
.yc1{bottom:350.966880px;}
.ye4{bottom:352.080000px;}
.y1ac{bottom:354.197520px;}
.y129{bottom:356.040000px;}
.y107{bottom:358.188480px;}
.y1ca{bottom:360.174240px;}
.ya1{bottom:360.195120px;}
.y7e{bottom:361.490400px;}
.y149{bottom:364.478400px;}
.y168{bottom:364.984560px;}
.y54{bottom:369.560880px;}
.y35{bottom:370.080000px;}
.y16{bottom:373.495500px;}
.yc0{bottom:374.912640px;}
.y18a{bottom:376.920000px;}
.y1ab{bottom:378.143280px;}
.y106{bottom:382.134240px;}
.ya0{bottom:382.153680px;}
.y7d{bottom:383.448960px;}
.y1c9{bottom:384.120000px;}
.ye3{bottom:387.900000px;}
.y148{bottom:388.606320px;}
.y167{bottom:388.930320px;}
.y53{bottom:391.337280px;}
.y128{bottom:391.860000px;}
.ybf{bottom:399.040560px;}
.y34{bottom:400.845600px;}
.y189{bottom:401.034240px;}
.y15{bottom:401.400000px;}
.y9f{bottom:404.112240px;}
.y7c{bottom:405.407520px;}
.y105{bottom:406.080000px;}
.y1aa{bottom:411.081120px;}
.y147{bottom:412.552080px;}
.y52{bottom:413.295840px;}
.y1c8{bottom:417.060000px;}
.y166{bottom:421.868160px;}
.ye2{bottom:421.906320px;}
.ybe{bottom:422.986320px;}
.y188{bottom:424.980000px;}
.y9e{bottom:425.888640px;}
.y127{bottom:425.892240px;}
.y7b{bottom:427.183920px;}
.y33{bottom:431.812800px;}
.y14{bottom:432.018000px;}
.y1a9{bottom:435.209040px;}
.y146{bottom:436.680000px;}
.y1c7{bottom:441.180000px;}
.y104{bottom:441.900000px;}
.y165{bottom:445.996080px;}
.ye1{bottom:446.034240px;}
.ybd{bottom:446.932080px;}
.y51{bottom:447.127920px;}
.y9d{bottom:447.847200px;}
.y7a{bottom:449.142480px;}
.y187{bottom:457.920000px;}
.y126{bottom:458.830080px;}
.y1a8{bottom:459.154800px;}
.y32{bottom:462.780000px;}
.y1c6{bottom:465.112080px;}
.y50{bottom:469.086480px;}
.y164{bottom:469.941840px;}
.ye0{bottom:469.980000px;}
.ybc{bottom:471.060000px;}
.y79{bottom:471.101040px;}
.y145{bottom:472.500000px;}
.y13{bottom:474.138000px;}
.y103{bottom:475.886880px;}
.y9c{bottom:481.679280px;}
.y186{bottom:482.040000px;}
.y125{bottom:482.958000px;}
.y1a7{bottom:483.282720px;}
.y1c5{bottom:489.240000px;}
.y4f{bottom:491.045040px;}
.y31{bottom:491.583600px;}
.y78{bottom:493.059600px;}
.y163{bottom:494.069760px;}
.y102{bottom:500.014800px;}
.ydf{bottom:505.800000px;}
.y185{bottom:505.972080px;}
.y144{bottom:506.520000px;}
.ybb{bottom:508.320000px;}
.y4e{bottom:513.003600px;}
.y9b{bottom:514.617120px;}
.y77{bottom:514.836000px;}
.y124{bottom:515.713680px;}
.y1a6{bottom:516.038400px;}
.y12{bottom:516.069000px;}
.y162{bottom:518.015520px;}
.y30{bottom:521.640000px;}
.y101{bottom:523.960560px;}
.y1c4{bottom:525.060000px;}
.y184{bottom:530.100000px;}
.y4d{bottom:534.780000px;}
.y76{bottom:536.794560px;}
.y9a{bottom:538.745040px;}
.yde{bottom:539.805600px;}
.y123{bottom:540.007200px;}
.y1a5{bottom:540.166320px;}
.y143{bottom:540.328320px;}
.yba{bottom:546.849360px;}
.y161{bottom:550.771200px;}
.y2f{bottom:555.480720px;}
.y100{bottom:556.898400px;}
.y11{bottom:558.000000px;}
.y75{bottom:558.753120px;}
.y1c3{bottom:558.900720px;}
.y142{bottom:562.286880px;}
.ydd{bottom:563.933520px;}
.y122{bottom:563.952960px;}
.y1a4{bottom:564.294240px;}
.y183{bottom:565.920000px;}
.y4c{bottom:570.240000px;}
.y1f8{bottom:571.320000px;}
.y99{bottom:574.746480px;}
.y160{bottom:575.064720px;}
.y2e{bottom:577.439280px;}
.yb9{bottom:580.681440px;}
.yff{bottom:581.026320px;}
.y1c2{bottom:583.194240px;}
.y141{bottom:584.245440px;}
.y1a3{bottom:588.240000px;}
.y1f6{bottom:588.420000px;}
.y74{bottom:592.585200px;}
.ydc{bottom:596.689200px;}
.y98{bottom:596.705040px;}
.y121{bottom:596.708640px;}
.y2d{bottom:599.397840px;}
.y182{bottom:599.714640px;}
.y10{bottom:600.120000px;}
.yb8{bottom:602.640000px;}
.yfe{bottom:604.972080px;}
.y140{bottom:606.021840px;}
.y1f7{bottom:606.240000px;}
.y1c1{bottom:607.140000px;}
.y15f{bottom:607.820400px;}
.y4b{bottom:608.593680px;}
.y73{bottom:614.543760px;}
.y97{bottom:618.663600px;}
.ydb{bottom:620.982720px;}
.y120{bottom:621.002160px;}
.y2c{bottom:621.356400px;}
.y181{bottom:623.842560px;}
.y1a2{bottom:624.060000px;}
.y13f{bottom:627.980400px;}
.yfd{bottom:629.100000px;}
.y15e{bottom:631.948320px;}
.y1e3{bottom:634.121280px;}
.yb7{bottom:636.487920px;}
.y72{bottom:636.502320px;}
.y96{bottom:640.440000px;}
.yf{bottom:642.060000px;}
.y4a{bottom:642.607920px;}
.y1c0{bottom:642.960000px;}
.y180{bottom:647.970480px;}
.y1f4{bottom:648.720000px;}
.y13e{bottom:649.938960px;}
.yda{bottom:653.738400px;}
.y11f{bottom:653.940000px;}
.y2b{bottom:655.188480px;}
.y15d{bottom:656.076240px;}
.y1a1{bottom:657.867600px;}
.y71{bottom:658.278720px;}
.yb6{bottom:658.446480px;}
.y49{bottom:664.566480px;}
.y1e2{bottom:664.906320px;}
.yfc{bottom:664.920000px;}
.y1f5{bottom:666.540000px;}
.y13d{bottom:671.897520px;}
.y95{bottom:675.900000px;}
.y1bf{bottom:676.802880px;}
.yd9{bottom:677.866320px;}
.y15c{bottom:680.022000px;}
.y70{bottom:680.237280px;}
.yb5{bottom:680.405040px;}
.y17f{bottom:680.726160px;}
.y1a0{bottom:682.161120px;}
.y2a{bottom:686.155680px;}
.y48{bottom:686.342880px;}
.y11e{bottom:686.700000px;}
.ye{bottom:691.824240px;}
.y13c{bottom:693.856080px;}
.y1e1{bottom:697.844160px;}
.yfb{bottom:698.709600px;}
.y1be{bottom:701.096400px;}
.yd8{bottom:701.994240px;}
.y6f{bottom:702.195840px;}
.yb4{bottom:702.363600px;}
.y17e{bottom:704.854080px;}
.y19f{bottom:706.106880px;}
.y47{bottom:708.301440px;}
.y1f2{bottom:708.840000px;}
.y11d{bottom:711.000000px;}
.y15b{bottom:712.777680px;}
.y94{bottom:714.248640px;}
.y29{bottom:716.940720px;}
.y1e0{bottom:721.972080px;}
.yfa{bottom:722.837520px;}
.yb3{bottom:724.140000px;}
.y6e{bottom:724.154400px;}
.yd{bottom:725.838480px;}
.yd7{bottom:725.940000px;}
.y1f3{bottom:726.660000px;}
.y13b{bottom:727.522560px;}
.y17d{bottom:728.982000px;}
.y19e{bottom:730.052640px;}
.y46{bottom:730.302480px;}
.y1bd{bottom:733.852080px;}
.y11c{bottom:734.940000px;}
.y15a{bottom:737.071200px;}
.y6d{bottom:745.930800px;}
.y1df{bottom:746.100000px;}
.yb2{bottom:746.110800px;}
.yf9{bottom:746.965440px;}
.y28{bottom:747.907920px;}
.y93{bottom:748.080720px;}
.y13a{bottom:751.650480px;}
.y45{bottom:752.261040px;}
.y17c{bottom:752.927760px;}
.y19d{bottom:754.180560px;}
.y1bc{bottom:757.980000px;}
.yc{bottom:759.670560px;}
.yd6{bottom:761.940000px;}
.y11b{bottom:767.700000px;}
.y6c{bottom:767.889360px;}
.y1ef{bottom:768.960000px;}
.y159{bottom:769.826880px;}
.y92{bottom:770.039280px;}
.yf8{bottom:770.911200px;}
.y44{bottom:774.037440px;}
.y17b{bottom:776.873520px;}
.y19c{bottom:778.126320px;}
.yb1{bottom:779.942880px;}
.y27{bottom:781.740000px;}
.y1de{bottom:781.920000px;}
.y139{bottom:784.588320px;}
.y1f1{bottom:786.780000px;}
.y11a{bottom:791.994240px;}
.y91{bottom:792.215280px;}
.yb{bottom:793.684800px;}
.y1bb{bottom:793.800000px;}
.y158{bottom:793.954800px;}
.yf7{bottom:794.856960px;}
.y43{bottom:795.996000px;}
.yd5{bottom:797.220000px;}
.y6b{bottom:801.721440px;}
.yb0{bottom:801.901440px;}
.y19b{bottom:802.072080px;}
.y138{bottom:808.716240px;}
.y17a{bottom:809.811360px;}
.y1dd{bottom:815.732640px;}
.y26{bottom:815.757840px;}
.y119{bottom:815.940000px;}
.y42{bottom:817.954560px;}
.y157{bottom:818.082720px;}
.yf6{bottom:818.984880px;}
.y6a{bottom:823.680000px;}
.yaf{bottom:823.860000px;}
.y90{bottom:826.047360px;}
.y19a{bottom:826.200000px;}
.ya{bottom:827.516880px;}
.y1ba{bottom:828.000000px;}
.y1ee{bottom:829.080000px;}
.yd4{bottom:832.479840px;}
.y179{bottom:833.939280px;}
.y25{bottom:837.716400px;}
.y41{bottom:839.730960px;}
.y1dc{bottom:839.860560px;}
.y137{bottom:841.471920px;}
.yf5{bottom:842.930640px;}
.y8f{bottom:847.823760px;}
.y156{bottom:850.838400px;}
.y118{bottom:851.760000px;}
.yae{bottom:857.726640px;}
.y69{bottom:858.960000px;}
.y24{bottom:859.674960px;}
.y9{bottom:861.348960px;}
.y40{bottom:861.689520px;}
.y199{bottom:862.020000px;}
.y1b9{bottom:863.820000px;}
.y1db{bottom:863.988480px;}
.y1ec{bottom:864.000000px;}
.yd3{bottom:865.599840px;}
.y136{bottom:865.765440px;}
.y178{bottom:866.694960px;}
.y8e{bottom:869.782320px;}
.y155{bottom:874.966320px;}
.yf4{bottom:875.868480px;}
.yad{bottom:879.685200px;}
.y23{bottom:881.633520px;}
.y1ed{bottom:881.820000px;}
.y3f{bottom:883.648080px;}
.y117{bottom:885.602880px;}
.yd2{bottom:889.727760px;}
.y177{bottom:890.988480px;}
.y8d{bottom:891.740880px;}
.y8{bottom:895.363200px;}
.y1da{bottom:896.744160px;}
.y68{bottom:897.480000px;}
.y1b8{bottom:897.621120px;}
.y135{bottom:898.521120px;}
.y154{bottom:899.094240px;}
.yac{bottom:901.643760px;}
.yf3{bottom:908.806320px;}
.y116{bottom:909.896400px;}
.y8c{bottom:913.517280px;}
.yd1{bottom:913.673520px;}
.y22{bottom:915.300000px;}
.y3e{bottom:917.480160px;}
.y1d9{bottom:920.872080px;}
.y1b7{bottom:921.749040px;}
.y134{bottom:922.649040px;}
.y153{bottom:923.040000px;}
.yab{bottom:923.602320px;}
.y176{bottom:923.744160px;}
.y1e9{bottom:924.120000px;}
.y7{bottom:929.195280px;}
.y67{bottom:931.860000px;}
.yf2{bottom:932.934240px;}
.y115{bottom:933.842160px;}
.y8b{bottom:935.475840px;}
.y198{bottom:935.808480px;}
.y3d{bottom:939.438720px;}
.y1eb{bottom:941.940000px;}
.y1d8{bottom:945.000000px;}
.yaa{bottom:945.378720px;}
.y1b6{bottom:945.876960px;}
.yd0{bottom:946.611360px;}
.y175{bottom:947.872080px;}
.y21{bottom:949.335840px;}
.y66{bottom:955.260000px;}
.y133{bottom:955.586880px;}
.yf1{bottom:956.880000px;}
.y8a{bottom:957.434400px;}
.y152{bottom:958.860000px;}
.y3c{bottom:961.397280px;}
.y6{bottom:963.209520px;}
.y114{bottom:966.780000px;}
.ya9{bottom:967.337280px;}
.y197{bottom:969.640560px;}
.y1b5{bottom:969.822720px;}
.ycf{bottom:970.739280px;}
.y20{bottom:971.294400px;}
.y174{bottom:972.000000px;}
.y65{bottom:977.240160px;}
.y89{bottom:979.392960px;}
.y132{bottom:979.714800px;}
.y1d7{bottom:980.820000px;}
.y3b{bottom:983.355840px;}
.y1e8{bottom:984.420000px;}
.ya8{bottom:989.295840px;}
.yf0{bottom:992.700000px;}
.y1f{bottom:993.252960px;}
.y196{bottom:993.768480px;}
.y5{bottom:997.041600px;}
.y88{bottom:1001.169360px;}
.y113{bottom:1002.600000px;}
.yce{bottom:1003.494960px;}
.y131{bottom:1003.660560px;}
.y3a{bottom:1005.132240px;}
.y173{bottom:1007.820000px;}
.y64{bottom:1011.072240px;}
.y1d6{bottom:1014.840000px;}
.y1e{bottom:1015.029360px;}
.y195{bottom:1017.896400px;}
.y1e6{bottom:1019.340000px;}
.y87{bottom:1023.127920px;}
.yef{bottom:1026.706320px;}
.y39{bottom:1027.090800px;}
.ycd{bottom:1027.788480px;}
.y4{bottom:1030.873680px;}
.y63{bottom:1033.030800px;}
.y112{bottom:1036.598400px;}
.y1d{bottom:1036.987920px;}
.y172{bottom:1041.660000px;}
.y194{bottom:1041.842160px;}
.y86{bottom:1045.086480px;}
.y38{bottom:1049.049360px;}
.y1b4{bottom:1050.652080px;}
.y1d5{bottom:1050.660000px;}
.yee{bottom:1050.834240px;}
.y62{bottom:1054.989360px;}
.ycc{bottom:1060.544160px;}
.y111{bottom:1060.726320px;}
.y3{bottom:1064.887920px;}
.y85{bottom:1067.045040px;}
.y1c{bottom:1070.820000px;}
.y37{bottom:1071.007920px;}
.y1e5{bottom:1073.160000px;}
.yed{bottom:1074.780000px;}
.y1d4{bottom:1084.506480px;}
.ycb{bottom:1084.672080px;}
.y61{bottom:1088.821440px;}
.y2{bottom:1098.720000px;}
.y1b{bottom:1106.280000px;}
.y1e4{bottom:1108.620000px;}
.yca{bottom:1108.800000px;}
.yec{bottom:1110.600000px;}
.y60{bottom:1110.780000px;}
.y1{bottom:1202.940000px;}
.hf{height:26.208984px;}
.h15{height:34.200000px;}
.h17{height:34.201500px;}
.h8{height:35.120039px;}
.ha{height:39.313477px;}
.h9{height:45.000000px;}
.h2{height:48.224531px;}
.hb{height:48.686400px;}
.h3{height:51.468480px;}
.hc{height:51.477120px;}
.h13{height:51.491520px;}
.h14{height:51.500160px;}
.hd{height:53.799840px;}
.h12{height:53.828640px;}
.h11{height:53.964000px;}
.h10{height:55.944000px;}
.h16{height:59.400000px;}
.h6{height:61.916400px;}
.he{height:65.454480px;}
.h7{height:67.676400px;}
.h5{height:79.380000px;}
.h4{height:132.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.560000px;}
.w3{width:14.940000px;}
.w4{width:147.780000px;}
.w5{width:530.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:106.380000px;}
.xd{left:114.840000px;}
.x4{left:119.155500px;}
.x5{left:127.626480px;}
.x6{left:133.380000px;}
.x3{left:149.040000px;}
.x7{left:160.389360px;}
.x9{left:187.448400px;}
.xb{left:255.600000px;}
.xc{left:263.340000px;}
.x8{left:439.020000px;}
.x2{left:442.620000px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.v3{vertical-align:20.968960pt;}
.ls25{letter-spacing:-1.000960pt;}
.ls37{letter-spacing:-0.942080pt;}
.ls23{letter-spacing:-0.883200pt;}
.ls36{letter-spacing:-0.765440pt;}
.ls1a{letter-spacing:-0.706560pt;}
.ls2f{letter-spacing:-0.647680pt;}
.ls30{letter-spacing:-0.588800pt;}
.ls26{letter-spacing:-0.529920pt;}
.ls28{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.471040pt;}
.ls27{letter-spacing:-0.432000pt;}
.ls24{letter-spacing:-0.412160pt;}
.ls3f{letter-spacing:-0.353280pt;}
.lsa{letter-spacing:-0.299520pt;}
.lse{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls1c{letter-spacing:-0.224640pt;}
.ls1d{letter-spacing:-0.176640pt;}
.ls34{letter-spacing:-0.149760pt;}
.lsd{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.058880pt;}
.ls14{letter-spacing:0.074880pt;}
.ls19{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.110400pt;}
.ls1b{letter-spacing:0.117760pt;}
.ls18{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.176640pt;}
.ls6{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.235520pt;}
.ls39{letter-spacing:0.258560pt;}
.ls13{letter-spacing:0.273920pt;}
.ls38{letter-spacing:0.282624pt;}
.ls7{letter-spacing:0.294400pt;}
.ls45{letter-spacing:0.317440pt;}
.ls9{letter-spacing:0.347392pt;}
.ls12{letter-spacing:0.353280pt;}
.ls11{letter-spacing:0.412160pt;}
.ls40{letter-spacing:0.471040pt;}
.ls43{letter-spacing:0.529920pt;}
.ls2d{letter-spacing:1.059840pt;}
.ls3{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.154048pt;}
.ls4{letter-spacing:1.198080pt;}
.ls5{letter-spacing:1.272960pt;}
.ls0{letter-spacing:1.280000pt;}
.ls16{letter-spacing:2.355200pt;}
.ls1e{letter-spacing:3.002880pt;}
.ls15{letter-spacing:3.650560pt;}
.ls20{letter-spacing:4.298240pt;}
.ls2b{letter-spacing:4.945920pt;}
.ls32{letter-spacing:4.957696pt;}
.ls33{letter-spacing:5.829120pt;}
.ls3d{letter-spacing:6.182400pt;}
.ls2a{letter-spacing:6.830080pt;}
.ls1f{letter-spacing:7.477760pt;}
.ls29{letter-spacing:7.595520pt;}
.ls2c{letter-spacing:8.125440pt;}
.ls44{letter-spacing:9.285120pt;}
.ls3c{letter-spacing:9.420800pt;}
.ls2e{letter-spacing:9.884160pt;}
.ls3a{letter-spacing:11.776000pt;}
.ls31{letter-spacing:13.104000pt;}
.ls42{letter-spacing:51.461120pt;}
.ls35{letter-spacing:52.756480pt;}
.ls3e{letter-spacing:59.174400pt;}
.ls3b{letter-spacing:82.892160pt;}
.ls41{letter-spacing:85.438080pt;}
.ls1{letter-spacing:751.808000pt;}
.ws82{word-spacing:-58.880000pt;}
.ws18{word-spacing:-20.666880pt;}
.ws98{word-spacing:-20.367360pt;}
.ws5c{word-spacing:-19.468800pt;}
.wsae{word-spacing:-19.319040pt;}
.ws77{word-spacing:-19.244160pt;}
.ws5{word-spacing:-19.169280pt;}
.ws45{word-spacing:-17.600000pt;}
.wsd{word-spacing:-16.604160pt;}
.wse{word-spacing:-16.545280pt;}
.ws90{word-spacing:-16.486400pt;}
.ws15{word-spacing:-16.427520pt;}
.ws16{word-spacing:-16.368640pt;}
.ws17{word-spacing:-16.309760pt;}
.wsb{word-spacing:-16.250880pt;}
.wsa{word-spacing:-16.192000pt;}
.ws78{word-spacing:-16.133120pt;}
.ws7{word-spacing:-16.074240pt;}
.ws19{word-spacing:-16.015360pt;}
.ws8{word-spacing:-15.956480pt;}
.wsc{word-spacing:-15.897600pt;}
.ws9c{word-spacing:-15.838720pt;}
.wsa9{word-spacing:-15.779840pt;}
.ws44{word-spacing:-15.720960pt;}
.ws8f{word-spacing:-15.662080pt;}
.ws5d{word-spacing:-15.603200pt;}
.wsaa{word-spacing:-15.485440pt;}
.ws8e{word-spacing:-15.426560pt;}
.ws6{word-spacing:-15.367680pt;}
.ws97{word-spacing:-15.308800pt;}
.ws9{word-spacing:-15.249920pt;}
.ws7a{word-spacing:-15.073280pt;}
.ws81{word-spacing:-15.014400pt;}
.ws79{word-spacing:-14.602240pt;}
.ws9b{word-spacing:-13.536000pt;}
.ws5e{word-spacing:-12.912000pt;}
.ws47{word-spacing:-12.816000pt;}
.ws46{word-spacing:-9.504000pt;}
.ws2d{word-spacing:-4.062720pt;}
.wsa1{word-spacing:-4.003840pt;}
.wsa0{word-spacing:-3.944960pt;}
.ws2c{word-spacing:-3.886080pt;}
.ws89{word-spacing:-3.768320pt;}
.ws6d{word-spacing:-3.591680pt;}
.ws30{word-spacing:-3.356160pt;}
.ws1e{word-spacing:-3.297280pt;}
.ws54{word-spacing:-3.179520pt;}
.ws7d{word-spacing:-2.944000pt;}
.ws73{word-spacing:-2.708480pt;}
.ws72{word-spacing:-2.649600pt;}
.ws4d{word-spacing:-2.531840pt;}
.ws85{word-spacing:-2.472960pt;}
.ws8c{word-spacing:-2.355200pt;}
.ws5f{word-spacing:-2.296320pt;}
.ws60{word-spacing:-2.001920pt;}
.ws3c{word-spacing:-1.884160pt;}
.ws9f{word-spacing:-1.648640pt;}
.ws4b{word-spacing:-1.354240pt;}
.ws28{word-spacing:-1.236480pt;}
.ws87{word-spacing:-1.177600pt;}
.ws1{word-spacing:-1.120000pt;}
.ws53{word-spacing:-1.059840pt;}
.ws76{word-spacing:-1.000960pt;}
.ws8b{word-spacing:-0.942080pt;}
.ws6c{word-spacing:-0.765440pt;}
.ws25{word-spacing:-0.706560pt;}
.ws2{word-spacing:-0.640000pt;}
.ws3e{word-spacing:-0.588800pt;}
.ws83{word-spacing:-0.529920pt;}
.ws52{word-spacing:-0.412160pt;}
.ws6e{word-spacing:-0.374400pt;}
.ws14{word-spacing:-0.353280pt;}
.ws34{word-spacing:-0.294400pt;}
.ws20{word-spacing:-0.235520pt;}
.ws4{word-spacing:-0.224640pt;}
.ws5a{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.176640pt;}
.ws3{word-spacing:-0.149760pt;}
.ws13{word-spacing:-0.117760pt;}
.ws43{word-spacing:-0.096000pt;}
.ws10{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.058880pt;}
.ws11{word-spacing:0.117760pt;}
.ws31{word-spacing:0.149760pt;}
.ws62{word-spacing:0.176640pt;}
.ws3b{word-spacing:0.235520pt;}
.ws12{word-spacing:0.294400pt;}
.ws1a{word-spacing:0.299520pt;}
.ws86{word-spacing:0.353280pt;}
.ws48{word-spacing:0.471040pt;}
.ws5b{word-spacing:0.528000pt;}
.ws58{word-spacing:0.529920pt;}
.ws27{word-spacing:0.588800pt;}
.ws65{word-spacing:0.647680pt;}
.ws1d{word-spacing:0.706560pt;}
.ws8a{word-spacing:0.765440pt;}
.ws57{word-spacing:0.824320pt;}
.ws95{word-spacing:0.883200pt;}
.ws66{word-spacing:0.942080pt;}
.ws71{word-spacing:1.177600pt;}
.ws1f{word-spacing:1.236480pt;}
.ws7f{word-spacing:1.295360pt;}
.ws3a{word-spacing:1.354240pt;}
.ws7e{word-spacing:1.413120pt;}
.ws2f{word-spacing:1.472000pt;}
.ws88{word-spacing:1.530880pt;}
.wsa3{word-spacing:1.766400pt;}
.ws23{word-spacing:1.825280pt;}
.ws24{word-spacing:1.943040pt;}
.ws42{word-spacing:2.414080pt;}
.ws39{word-spacing:2.472960pt;}
.ws38{word-spacing:2.590720pt;}
.ws50{word-spacing:2.826240pt;}
.ws51{word-spacing:3.061760pt;}
.ws4c{word-spacing:3.120640pt;}
.ws3d{word-spacing:3.238400pt;}
.ws91{word-spacing:3.415040pt;}
.ws2b{word-spacing:3.473920pt;}
.ws37{word-spacing:3.650560pt;}
.ws35{word-spacing:3.709440pt;}
.ws36{word-spacing:3.768320pt;}
.ws32{word-spacing:3.886080pt;}
.ws59{word-spacing:4.121600pt;}
.ws40{word-spacing:4.357120pt;}
.ws2e{word-spacing:4.416000pt;}
.ws3f{word-spacing:4.533760pt;}
.ws69{word-spacing:4.769280pt;}
.ws6a{word-spacing:5.063680pt;}
.ws4e{word-spacing:5.181440pt;}
.ws4f{word-spacing:5.416960pt;}
.ws22{word-spacing:5.711360pt;}
.ws41{word-spacing:5.829120pt;}
.ws84{word-spacing:5.888000pt;}
.ws80{word-spacing:6.064640pt;}
.ws96{word-spacing:6.241280pt;}
.ws7c{word-spacing:6.300160pt;}
.ws4a{word-spacing:6.359040pt;}
.ws9e{word-spacing:6.417920pt;}
.ws8d{word-spacing:6.476800pt;}
.ws64{word-spacing:6.653440pt;}
.ws94{word-spacing:6.888960pt;}
.ws63{word-spacing:6.947840pt;}
.ws49{word-spacing:7.065600pt;}
.ws75{word-spacing:7.242240pt;}
.ws7b{word-spacing:7.301120pt;}
.ws2a{word-spacing:7.477760pt;}
.ws74{word-spacing:7.536640pt;}
.ws29{word-spacing:7.595520pt;}
.ws55{word-spacing:7.713280pt;}
.ws6b{word-spacing:8.243200pt;}
.ws33{word-spacing:8.360960pt;}
.ws70{word-spacing:8.419840pt;}
.wsa2{word-spacing:8.596480pt;}
.ws6f{word-spacing:8.890880pt;}
.ws9a{word-spacing:9.008640pt;}
.ws93{word-spacing:9.479680pt;}
.ws68{word-spacing:9.538560pt;}
.ws67{word-spacing:9.656320pt;}
.ws26{word-spacing:10.186240pt;}
.ws92{word-spacing:10.833920pt;}
.ws56{word-spacing:11.422720pt;}
.wsa6{word-spacing:12.011520pt;}
.wsa4{word-spacing:12.070400pt;}
.wsa5{word-spacing:12.188160pt;}
.ws1b{word-spacing:13.365760pt;}
.ws61{word-spacing:14.013440pt;}
.ws9d{word-spacing:15.308800pt;}
.ws21{word-spacing:17.840640pt;}
.wsa7{word-spacing:27.438080pt;}
.wsa8{word-spacing:30.676480pt;}
.wsad{word-spacing:45.985280pt;}
.ws99{word-spacing:51.755520pt;}
.wsac{word-spacing:55.288320pt;}
.wsab{word-spacing:97.858560pt;}
._b{margin-left:-19.094400pt;}
._9{margin-left:-15.191040pt;}
._8{margin-left:-6.664320pt;}
._1{margin-left:-4.640000pt;}
._4{margin-left:-2.995200pt;}
._d{margin-left:-2.062080pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.120000pt;}
._0{width:2.560000pt;}
._7{width:4.180480pt;}
._6{width:5.534720pt;}
._a{width:7.051520pt;}
._5{width:12.776960pt;}
._c{width:38.566400pt;}
._e{width:97.680640pt;}
._f{width:751.779840pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:8.160000pt;}
.y1a{bottom:13.280000pt;}
.y1e7{bottom:15.840000pt;}
.y18{bottom:31.680000pt;}
.y1f0{bottom:38.239867pt;}
.y1ea{bottom:38.240000pt;}
.y5f{bottom:97.116000pt;}
.yc9{bottom:107.495040pt;}
.y171{bottom:108.238080pt;}
.y110{bottom:110.204800pt;}
.y193{bottom:111.200000pt;}
.y1d3{bottom:112.000000pt;}
.y5e{bottom:115.840000pt;}
.y151{bottom:117.760000pt;}
.y130{bottom:124.620800pt;}
.y5d{bottom:127.040000pt;}
.y170{bottom:129.685120pt;}
.y10f{bottom:131.651840pt;}
.y1d2{bottom:133.440000pt;}
.yc8{bottom:136.773120pt;}
.y1b3{bottom:137.907840pt;}
.y192{bottom:140.320000pt;}
.y12f{bottom:146.067840pt;}
.yeb{bottom:147.669120pt;}
.y150{bottom:147.959040pt;}
.y16f{bottom:151.132160pt;}
.y10e{bottom:152.936960pt;}
.y1d1{bottom:154.880000pt;}
.yc7{bottom:158.367360pt;}
.y1b2{bottom:159.354880pt;}
.y191{bottom:161.760000pt;}
.y84{bottom:167.203200pt;}
.y12e{bottom:167.352960pt;}
.y14f{bottom:169.406080pt;}
.y5c{bottom:172.672640pt;}
.y10d{bottom:174.384000pt;}
.y1d0{bottom:176.160000pt;}
.yea{bottom:176.785280pt;}
.y16e{bottom:180.248320pt;}
.y190{bottom:183.200000pt;}
.y83{bottom:186.561280pt;}
.yc6{bottom:187.483520pt;}
.y1b1{bottom:188.632960pt;}
.y12d{bottom:188.800000pt;}
.y14e{bottom:190.691200pt;}
.y5b{bottom:192.191360pt;}
.y10c{bottom:195.669120pt;}
.ye9{bottom:198.379520pt;}
.y16d{bottom:201.695360pt;}
.ya7{bottom:203.202560pt;}
.y18f{bottom:204.480000pt;}
.y1cf{bottom:205.280000pt;}
.y82{bottom:206.080000pt;}
.yc5{bottom:208.930560pt;}
.y1b0{bottom:210.080000pt;}
.y5a{bottom:211.548160pt;}
.ye8{bottom:219.664640pt;}
.y14d{bottom:220.131200pt;}
.y12c{bottom:220.640000pt;}
.ya6{bottom:222.721280pt;}
.y10b{bottom:224.785280pt;}
.y1ce{bottom:226.880000pt;}
.y16c{bottom:230.973440pt;}
.y59{bottom:231.066880pt;}
.y18e{bottom:233.600000pt;}
.y81{bottom:237.440000pt;}
.yc4{bottom:240.931840pt;}
.ye7{bottom:240.949760pt;}
.y1af{bottom:241.920000pt;}
.ya5{bottom:242.240000pt;}
.y10a{bottom:246.379520pt;}
.y1cd{bottom:248.160000pt;}
.y14c{bottom:249.247360pt;}
.y58{bottom:250.585600pt;}
.y12b{bottom:252.160000pt;}
.y16b{bottom:252.420480pt;}
.y18d{bottom:255.200000pt;}
.yc3{bottom:260.450560pt;}
.ya4{bottom:261.760000pt;}
.y1cc{bottom:269.440000pt;}
.y57{bottom:269.942400pt;}
.ye6{bottom:270.227840pt;}
.y14b{bottom:270.694400pt;}
.y80{bottom:271.733120pt;}
.y1ae{bottom:271.962880pt;}
.y16a{bottom:273.705600pt;}
.y109{bottom:275.495680pt;}
.ya3{bottom:281.297920pt;}
.y18c{bottom:284.320000pt;}
.y17{bottom:285.920000pt;}
.y12a{bottom:286.245120pt;}
.y56{bottom:289.461120pt;}
.yc2{bottom:290.523520pt;}
.ye5{bottom:291.674880pt;}
.y14a{bottom:291.979520pt;}
.y1ad{bottom:293.557120pt;}
.y108{bottom:296.942720pt;}
.y1cb{bottom:298.720000pt;}
.ya2{bottom:300.654720pt;}
.y7f{bottom:301.806080pt;}
.y169{bottom:302.983680pt;}
.y18b{bottom:305.760000pt;}
.y55{bottom:308.979840pt;}
.y36{bottom:309.440000pt;}
.yc1{bottom:311.970560pt;}
.ye4{bottom:312.960000pt;}
.y1ac{bottom:314.842240pt;}
.y129{bottom:316.480000pt;}
.y107{bottom:318.389760pt;}
.y1ca{bottom:320.154880pt;}
.ya1{bottom:320.173440pt;}
.y7e{bottom:321.324800pt;}
.y149{bottom:323.980800pt;}
.y168{bottom:324.430720pt;}
.y54{bottom:328.498560pt;}
.y35{bottom:328.960000pt;}
.y16{bottom:331.996000pt;}
.yc0{bottom:333.255680pt;}
.y18a{bottom:335.040000pt;}
.y1ab{bottom:336.127360pt;}
.y106{bottom:339.674880pt;}
.ya0{bottom:339.692160pt;}
.y7d{bottom:340.843520pt;}
.y1c9{bottom:341.440000pt;}
.ye3{bottom:344.800000pt;}
.y148{bottom:345.427840pt;}
.y167{bottom:345.715840pt;}
.y53{bottom:347.855360pt;}
.y128{bottom:348.320000pt;}
.ybf{bottom:354.702720pt;}
.y34{bottom:356.307200pt;}
.y189{bottom:356.474880pt;}
.y15{bottom:356.800000pt;}
.y9f{bottom:359.210880pt;}
.y7c{bottom:360.362240pt;}
.y105{bottom:360.960000pt;}
.y1aa{bottom:365.405440pt;}
.y147{bottom:366.712960pt;}
.y52{bottom:367.374080pt;}
.y1c8{bottom:370.720000pt;}
.y166{bottom:374.993920pt;}
.ye2{bottom:375.027840pt;}
.ybe{bottom:375.987840pt;}
.y188{bottom:377.760000pt;}
.y9e{bottom:378.567680pt;}
.y127{bottom:378.570880pt;}
.y7b{bottom:379.719040pt;}
.y33{bottom:383.833600pt;}
.y14{bottom:384.016000pt;}
.y1a9{bottom:386.852480pt;}
.y146{bottom:388.160000pt;}
.y1c7{bottom:392.160000pt;}
.y104{bottom:392.800000pt;}
.y165{bottom:396.440960pt;}
.ye1{bottom:396.474880pt;}
.ybd{bottom:397.272960pt;}
.y51{bottom:397.447040pt;}
.y9d{bottom:398.086400pt;}
.y7a{bottom:399.237760pt;}
.y187{bottom:407.040000pt;}
.y126{bottom:407.848960pt;}
.y1a8{bottom:408.137600pt;}
.y32{bottom:411.360000pt;}
.y1c6{bottom:413.432960pt;}
.y50{bottom:416.965760pt;}
.y164{bottom:417.726080pt;}
.ye0{bottom:417.760000pt;}
.ybc{bottom:418.720000pt;}
.y79{bottom:418.756480pt;}
.y145{bottom:420.000000pt;}
.y13{bottom:421.456000pt;}
.y103{bottom:423.010560pt;}
.y9c{bottom:428.159360pt;}
.y186{bottom:428.480000pt;}
.y125{bottom:429.296000pt;}
.y1a7{bottom:429.584640pt;}
.y1c5{bottom:434.880000pt;}
.y4f{bottom:436.484480pt;}
.y31{bottom:436.963200pt;}
.y78{bottom:438.275200pt;}
.y163{bottom:439.173120pt;}
.y102{bottom:444.457600pt;}
.ydf{bottom:449.600000pt;}
.y185{bottom:449.752960pt;}
.y144{bottom:450.240000pt;}
.ybb{bottom:451.840000pt;}
.y4e{bottom:456.003200pt;}
.y9b{bottom:457.437440pt;}
.y77{bottom:457.632000pt;}
.y124{bottom:458.412160pt;}
.y1a6{bottom:458.700800pt;}
.y12{bottom:458.728000pt;}
.y162{bottom:460.458240pt;}
.y30{bottom:463.680000pt;}
.y101{bottom:465.742720pt;}
.y1c4{bottom:466.720000pt;}
.y184{bottom:471.200000pt;}
.y4d{bottom:475.360000pt;}
.y76{bottom:477.150720pt;}
.y9a{bottom:478.884480pt;}
.yde{bottom:479.827200pt;}
.y123{bottom:480.006400pt;}
.y1a5{bottom:480.147840pt;}
.y143{bottom:480.291840pt;}
.yba{bottom:486.088320pt;}
.y161{bottom:489.574400pt;}
.y2f{bottom:493.760640pt;}
.y100{bottom:495.020800pt;}
.y11{bottom:496.000000pt;}
.y75{bottom:496.669440pt;}
.y1c3{bottom:496.800640pt;}
.y142{bottom:499.810560pt;}
.ydd{bottom:501.274240pt;}
.y122{bottom:501.291520pt;}
.y1a4{bottom:501.594880pt;}
.y183{bottom:503.040000pt;}
.y4c{bottom:506.880000pt;}
.y1f8{bottom:507.840000pt;}
.y99{bottom:510.885760pt;}
.y160{bottom:511.168640pt;}
.y2e{bottom:513.279360pt;}
.yb9{bottom:516.161280pt;}
.yff{bottom:516.467840pt;}
.y1c2{bottom:518.394880pt;}
.y141{bottom:519.329280pt;}
.y1a3{bottom:522.880000pt;}
.y1f6{bottom:523.040000pt;}
.y74{bottom:526.742400pt;}
.ydc{bottom:530.390400pt;}
.y98{bottom:530.404480pt;}
.y121{bottom:530.407680pt;}
.y2d{bottom:532.798080pt;}
.y182{bottom:533.079680pt;}
.y10{bottom:533.440000pt;}
.yb8{bottom:535.680000pt;}
.yfe{bottom:537.752960pt;}
.y140{bottom:538.686080pt;}
.y1f7{bottom:538.880000pt;}
.y1c1{bottom:539.680000pt;}
.y15f{bottom:540.284800pt;}
.y4b{bottom:540.972160pt;}
.y73{bottom:546.261120pt;}
.y97{bottom:549.923200pt;}
.ydb{bottom:551.984640pt;}
.y120{bottom:552.001920pt;}
.y2c{bottom:552.316800pt;}
.y181{bottom:554.526720pt;}
.y1a2{bottom:554.720000pt;}
.y13f{bottom:558.204800pt;}
.yfd{bottom:559.200000pt;}
.y15e{bottom:561.731840pt;}
.y1e3{bottom:563.663360pt;}
.yb7{bottom:565.767040pt;}
.y72{bottom:565.779840pt;}
.y96{bottom:569.280000pt;}
.yf{bottom:570.720000pt;}
.y4a{bottom:571.207040pt;}
.y1c0{bottom:571.520000pt;}
.y180{bottom:575.973760pt;}
.y1f4{bottom:576.640000pt;}
.y13e{bottom:577.723520pt;}
.yda{bottom:581.100800pt;}
.y11f{bottom:581.280000pt;}
.y2b{bottom:582.389760pt;}
.y15d{bottom:583.178880pt;}
.y1a1{bottom:584.771200pt;}
.y71{bottom:585.136640pt;}
.yb6{bottom:585.285760pt;}
.y49{bottom:590.725760pt;}
.y1e2{bottom:591.027840pt;}
.yfc{bottom:591.040000pt;}
.y1f5{bottom:592.480000pt;}
.y13d{bottom:597.242240pt;}
.y95{bottom:600.800000pt;}
.y1bf{bottom:601.602560pt;}
.yd9{bottom:602.547840pt;}
.y15c{bottom:604.464000pt;}
.y70{bottom:604.655360pt;}
.yb5{bottom:604.804480pt;}
.y17f{bottom:605.089920pt;}
.y1a0{bottom:606.365440pt;}
.y2a{bottom:609.916160pt;}
.y48{bottom:610.082560pt;}
.y11e{bottom:610.400000pt;}
.ye{bottom:614.954880pt;}
.y13c{bottom:616.760960pt;}
.y1e1{bottom:620.305920pt;}
.yfb{bottom:621.075200pt;}
.y1be{bottom:623.196800pt;}
.yd8{bottom:623.994880pt;}
.y6f{bottom:624.174080pt;}
.yb4{bottom:624.323200pt;}
.y17e{bottom:626.536960pt;}
.y19f{bottom:627.650560pt;}
.y47{bottom:629.601280pt;}
.y1f2{bottom:630.080000pt;}
.y11d{bottom:632.000000pt;}
.y15b{bottom:633.580160pt;}
.y94{bottom:634.887680pt;}
.y29{bottom:637.280640pt;}
.y1e0{bottom:641.752960pt;}
.yfa{bottom:642.522240pt;}
.yb3{bottom:643.680000pt;}
.y6e{bottom:643.692800pt;}
.yd{bottom:645.189760pt;}
.yd7{bottom:645.280000pt;}
.y1f3{bottom:645.920000pt;}
.y13b{bottom:646.686720pt;}
.y17d{bottom:647.984000pt;}
.y19e{bottom:648.935680pt;}
.y46{bottom:649.157760pt;}
.y1bd{bottom:652.312960pt;}
.y11c{bottom:653.280000pt;}
.y15a{bottom:655.174400pt;}
.y6d{bottom:663.049600pt;}
.y1df{bottom:663.200000pt;}
.yb2{bottom:663.209600pt;}
.yf9{bottom:663.969280pt;}
.y28{bottom:664.807040pt;}
.y93{bottom:664.960640pt;}
.y13a{bottom:668.133760pt;}
.y45{bottom:668.676480pt;}
.y17c{bottom:669.269120pt;}
.y19d{bottom:670.382720pt;}
.y1bc{bottom:673.760000pt;}
.yc{bottom:675.262720pt;}
.yd6{bottom:677.280000pt;}
.y11b{bottom:682.400000pt;}
.y6c{bottom:682.568320pt;}
.y1ef{bottom:683.520000pt;}
.y159{bottom:684.290560pt;}
.y92{bottom:684.479360pt;}
.yf8{bottom:685.254400pt;}
.y44{bottom:688.033280pt;}
.y17b{bottom:690.554240pt;}
.y19c{bottom:691.667840pt;}
.yb1{bottom:693.282560pt;}
.y27{bottom:694.880000pt;}
.y1de{bottom:695.040000pt;}
.y139{bottom:697.411840pt;}
.y1f1{bottom:699.360000pt;}
.y11a{bottom:703.994880pt;}
.y91{bottom:704.191360pt;}
.yb{bottom:705.497600pt;}
.y1bb{bottom:705.600000pt;}
.y158{bottom:705.737600pt;}
.yf7{bottom:706.539520pt;}
.y43{bottom:707.552000pt;}
.yd5{bottom:708.640000pt;}
.y6b{bottom:712.641280pt;}
.yb0{bottom:712.801280pt;}
.y19b{bottom:712.952960pt;}
.y138{bottom:718.858880pt;}
.y17a{bottom:719.832320pt;}
.y1dd{bottom:725.095680pt;}
.y26{bottom:725.118080pt;}
.y119{bottom:725.280000pt;}
.y42{bottom:727.070720pt;}
.y157{bottom:727.184640pt;}
.yf6{bottom:727.986560pt;}
.y6a{bottom:732.160000pt;}
.yaf{bottom:732.320000pt;}
.y90{bottom:734.264320pt;}
.y19a{bottom:734.400000pt;}
.ya{bottom:735.570560pt;}
.y1ba{bottom:736.000000pt;}
.y1ee{bottom:736.960000pt;}
.yd4{bottom:739.982080pt;}
.y179{bottom:741.279360pt;}
.y25{bottom:744.636800pt;}
.y41{bottom:746.427520pt;}
.y1dc{bottom:746.542720pt;}
.y137{bottom:747.975040pt;}
.yf5{bottom:749.271680pt;}
.y8f{bottom:753.621120pt;}
.y156{bottom:756.300800pt;}
.y118{bottom:757.120000pt;}
.yae{bottom:762.423680pt;}
.y69{bottom:763.520000pt;}
.y24{bottom:764.155520pt;}
.y9{bottom:765.643520pt;}
.y40{bottom:765.946240pt;}
.y199{bottom:766.240000pt;}
.y1b9{bottom:767.840000pt;}
.y1db{bottom:767.989760pt;}
.y1ec{bottom:768.000000pt;}
.yd3{bottom:769.422080pt;}
.y136{bottom:769.569280pt;}
.y178{bottom:770.395520pt;}
.y8e{bottom:773.139840pt;}
.y155{bottom:777.747840pt;}
.yf4{bottom:778.549760pt;}
.yad{bottom:781.942400pt;}
.y23{bottom:783.674240pt;}
.y1ed{bottom:783.840000pt;}
.y3f{bottom:785.464960pt;}
.y117{bottom:787.202560pt;}
.yd2{bottom:790.869120pt;}
.y177{bottom:791.989760pt;}
.y8d{bottom:792.658560pt;}
.y8{bottom:795.878400pt;}
.y1da{bottom:797.105920pt;}
.y68{bottom:797.760000pt;}
.y1b8{bottom:797.885440pt;}
.y135{bottom:798.685440pt;}
.y154{bottom:799.194880pt;}
.yac{bottom:801.461120pt;}
.yf3{bottom:807.827840pt;}
.y116{bottom:808.796800pt;}
.y8c{bottom:812.015360pt;}
.yd1{bottom:812.154240pt;}
.y22{bottom:813.600000pt;}
.y3e{bottom:815.537920pt;}
.y1d9{bottom:818.552960pt;}
.y1b7{bottom:819.332480pt;}
.y134{bottom:820.132480pt;}
.y153{bottom:820.480000pt;}
.yab{bottom:820.979840pt;}
.y176{bottom:821.105920pt;}
.y1e9{bottom:821.440000pt;}
.y7{bottom:825.951360pt;}
.y67{bottom:828.320000pt;}
.yf2{bottom:829.274880pt;}
.y115{bottom:830.081920pt;}
.y8b{bottom:831.534080pt;}
.y198{bottom:831.829760pt;}
.y3d{bottom:835.056640pt;}
.y1eb{bottom:837.280000pt;}
.y1d8{bottom:840.000000pt;}
.yaa{bottom:840.336640pt;}
.y1b6{bottom:840.779520pt;}
.yd0{bottom:841.432320pt;}
.y175{bottom:842.552960pt;}
.y21{bottom:843.854080pt;}
.y66{bottom:849.120000pt;}
.y133{bottom:849.410560pt;}
.yf1{bottom:850.560000pt;}
.y8a{bottom:851.052800pt;}
.y152{bottom:852.320000pt;}
.y3c{bottom:854.575360pt;}
.y6{bottom:856.186240pt;}
.y114{bottom:859.360000pt;}
.ya9{bottom:859.855360pt;}
.y197{bottom:861.902720pt;}
.y1b5{bottom:862.064640pt;}
.ycf{bottom:862.879360pt;}
.y20{bottom:863.372800pt;}
.y174{bottom:864.000000pt;}
.y65{bottom:868.657920pt;}
.y89{bottom:870.571520pt;}
.y132{bottom:870.857600pt;}
.y1d7{bottom:871.840000pt;}
.y3b{bottom:874.094080pt;}
.y1e8{bottom:875.040000pt;}
.ya8{bottom:879.374080pt;}
.yf0{bottom:882.400000pt;}
.y1f{bottom:882.891520pt;}
.y196{bottom:883.349760pt;}
.y5{bottom:886.259200pt;}
.y88{bottom:889.928320pt;}
.y113{bottom:891.200000pt;}
.yce{bottom:891.995520pt;}
.y131{bottom:892.142720pt;}
.y3a{bottom:893.450880pt;}
.y173{bottom:895.840000pt;}
.y64{bottom:898.730880pt;}
.y1d6{bottom:902.080000pt;}
.y1e{bottom:902.248320pt;}
.y195{bottom:904.796800pt;}
.y1e6{bottom:906.080000pt;}
.y87{bottom:909.447040pt;}
.yef{bottom:912.627840pt;}
.y39{bottom:912.969600pt;}
.ycd{bottom:913.589760pt;}
.y4{bottom:916.332160pt;}
.y63{bottom:918.249600pt;}
.y112{bottom:921.420800pt;}
.y1d{bottom:921.767040pt;}
.y172{bottom:925.920000pt;}
.y194{bottom:926.081920pt;}
.y86{bottom:928.965760pt;}
.y38{bottom:932.488320pt;}
.y1b4{bottom:933.912960pt;}
.y1d5{bottom:933.920000pt;}
.yee{bottom:934.074880pt;}
.y62{bottom:937.768320pt;}
.ycc{bottom:942.705920pt;}
.y111{bottom:942.867840pt;}
.y3{bottom:946.567040pt;}
.y85{bottom:948.484480pt;}
.y1c{bottom:951.840000pt;}
.y37{bottom:952.007040pt;}
.y1e5{bottom:953.920000pt;}
.yed{bottom:955.360000pt;}
.y1d4{bottom:964.005760pt;}
.ycb{bottom:964.152960pt;}
.y61{bottom:967.841280pt;}
.y2{bottom:976.640000pt;}
.y1b{bottom:983.360000pt;}
.y1e4{bottom:985.440000pt;}
.yca{bottom:985.600000pt;}
.yec{bottom:987.200000pt;}
.y60{bottom:987.360000pt;}
.y1{bottom:1069.280000pt;}
.hf{height:23.296875pt;}
.h15{height:30.400000pt;}
.h17{height:30.401333pt;}
.h8{height:31.217812pt;}
.ha{height:34.945312pt;}
.h9{height:40.000000pt;}
.h2{height:42.866250pt;}
.hb{height:43.276800pt;}
.h3{height:45.749760pt;}
.hc{height:45.757440pt;}
.h13{height:45.770240pt;}
.h14{height:45.777920pt;}
.hd{height:47.822080pt;}
.h12{height:47.847680pt;}
.h11{height:47.968000pt;}
.h10{height:49.728000pt;}
.h16{height:52.800000pt;}
.h6{height:55.036800pt;}
.he{height:58.181760pt;}
.h7{height:60.156800pt;}
.h5{height:70.560000pt;}
.h4{height:117.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.720000pt;}
.w3{width:13.280000pt;}
.w4{width:131.360000pt;}
.w5{width:471.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:94.560000pt;}
.xd{left:102.080000pt;}
.x4{left:105.916000pt;}
.x5{left:113.445760pt;}
.x6{left:118.560000pt;}
.x3{left:132.480000pt;}
.x7{left:142.568320pt;}
.x9{left:166.620800pt;}
.xb{left:227.200000pt;}
.xc{left:234.080000pt;}
.x8{left:390.240000pt;}
.x2{left:393.440000pt;}
}




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