
    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_291fcb18836591292897aad6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_df0b2993a0b6fed7e2a9e1e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e87c1c78058f45ce99019135.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7396b4c0471219b11b628aeb.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_26a531e3ee6458ae6e7ba10d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_c5970cfe7cf391e104398465.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895508;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_3e3fdb1b829ad42317470ec1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863770;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v4{vertical-align:30.198240px;}
.v1{vertical-align:33.016320px;}
.ls4c{letter-spacing:-1.477440px;}
.ls6b{letter-spacing:-1.374480px;}
.ls1d{letter-spacing:-1.126080px;}
.ls27{letter-spacing:-1.075680px;}
.ls1b{letter-spacing:-1.059840px;}
.ls1e{letter-spacing:-0.861120px;}
.ls1f{letter-spacing:-0.728640px;}
.ls41{letter-spacing:-0.596160px;}
.ls25{letter-spacing:-0.537840px;}
.ls26{letter-spacing:-0.478080px;}
.ls52{letter-spacing:-0.421200px;}
.ls24{letter-spacing:-0.418320px;}
.ls20{letter-spacing:-0.397440px;}
.ls21{letter-spacing:-0.358560px;}
.ls34{letter-spacing:-0.331200px;}
.ls6c{letter-spacing:-0.298800px;}
.ls1a{letter-spacing:-0.264960px;}
.ls36{letter-spacing:-0.241200px;}
.ls23{letter-spacing:-0.239040px;}
.ls37{letter-spacing:-0.192960px;}
.ls3e{letter-spacing:-0.190080px;}
.ls17{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.132480px;}
.ls6a{letter-spacing:-0.119520px;}
.ls40{letter-spacing:-0.077760px;}
.ls18{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.059760px;}
.ls16{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.048240px;}
.ls13{letter-spacing:0.059760px;}
.ls4d{letter-spacing:0.066240px;}
.ls10{letter-spacing:0.119520px;}
.ls53{letter-spacing:0.168480px;}
.ls14{letter-spacing:0.179280px;}
.lse{letter-spacing:0.239040px;}
.ls3c{letter-spacing:0.264960px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.331200px;}
.ls33{letter-spacing:0.337680px;}
.ls15{letter-spacing:0.358560px;}
.ls2a{letter-spacing:0.397440px;}
.ls64{letter-spacing:0.463680px;}
.ls32{letter-spacing:0.529920px;}
.ls1c{letter-spacing:0.596160px;}
.lsd{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.728640px;}
.ls74{letter-spacing:0.861120px;}
.ls12{letter-spacing:0.896400px;}
.ls4{letter-spacing:0.993600px;}
.ls3a{letter-spacing:1.126080px;}
.ls68{letter-spacing:1.192320px;}
.ls69{letter-spacing:1.523520px;}
.lsf{letter-spacing:1.613520px;}
.ls42{letter-spacing:1.722240px;}
.ls65{letter-spacing:2.053440px;}
.ls43{letter-spacing:2.185920px;}
.ls7b{letter-spacing:2.450880px;}
.ls75{letter-spacing:2.980800px;}
.ls11{letter-spacing:3.047760px;}
.ls7{letter-spacing:3.179520px;}
.ls6{letter-spacing:3.312000px;}
.ls5{letter-spacing:3.444480px;}
.ls67{letter-spacing:3.841920px;}
.ls4a{letter-spacing:3.908160px;}
.ls31{letter-spacing:4.636800px;}
.ls30{letter-spacing:5.100480px;}
.ls3b{letter-spacing:5.365440px;}
.ls2b{letter-spacing:5.431680px;}
.ls4f{letter-spacing:5.497920px;}
.ls73{letter-spacing:5.696640px;}
.ls2c{letter-spacing:6.027840px;}
.ls4e{letter-spacing:6.094080px;}
.ls51{letter-spacing:6.491520px;}
.ls2{letter-spacing:6.756480px;}
.ls50{letter-spacing:6.822720px;}
.ls6f{letter-spacing:7.485120px;}
.ls38{letter-spacing:7.617600px;}
.ls70{letter-spacing:7.683840px;}
.ls3{letter-spacing:8.213760px;}
.ls4b{letter-spacing:10.399680px;}
.ls47{letter-spacing:10.863360px;}
.ls78{letter-spacing:11.128320px;}
.ls28{letter-spacing:11.856960px;}
.ls29{letter-spacing:12.055680px;}
.ls76{letter-spacing:12.519360px;}
.ls77{letter-spacing:13.248000px;}
.ls39{letter-spacing:14.705280px;}
.ls3f{letter-spacing:14.837760px;}
.lsa{letter-spacing:16.162560px;}
.ls9{letter-spacing:16.228800px;}
.ls6e{letter-spacing:16.295040px;}
.ls8{letter-spacing:16.891200px;}
.ls6d{letter-spacing:17.421120px;}
.ls2f{letter-spacing:17.553600px;}
.ls45{letter-spacing:18.282240px;}
.ls44{letter-spacing:18.414720px;}
.ls46{letter-spacing:19.010880px;}
.ls66{letter-spacing:19.540800px;}
.ls48{letter-spacing:19.739520px;}
.ls49{letter-spacing:20.136960px;}
.ls72{letter-spacing:20.468160px;}
.ls7a{letter-spacing:21.925440px;}
.ls2e{letter-spacing:23.316480px;}
.ls79{letter-spacing:30.006720px;}
.ls56{letter-spacing:53.251920px;}
.lsb{letter-spacing:57.893760px;}
.ls71{letter-spacing:58.622400px;}
.lsc{letter-spacing:59.351040px;}
.ls55{letter-spacing:61.164000px;}
.ls61{letter-spacing:98.604000px;}
.ls59{letter-spacing:132.428160px;}
.ls58{letter-spacing:238.980240px;}
.ls3d{letter-spacing:253.549440px;}
.ls62{letter-spacing:391.608000px;}
.ls5a{letter-spacing:394.536240px;}
.ls5d{letter-spacing:434.097360px;}
.ls5e{letter-spacing:457.881840px;}
.ls5c{letter-spacing:488.120400px;}
.ls63{letter-spacing:528.398640px;}
.ls5b{letter-spacing:550.748880px;}
.ls60{letter-spacing:611.226000px;}
.ls54{letter-spacing:701.250480px;}
.ls5f{letter-spacing:824.330160px;}
.ls57{letter-spacing:1004.327280px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws1{word-spacing:-33.426720px;}
.ws4{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.010880px;}
.ws71{word-spacing:-18.745920px;}
.ws69{word-spacing:-18.679680px;}
.ws8{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.282240px;}
.ws6{word-spacing:-18.149760px;}
.ws42{word-spacing:-18.083520px;}
.ws55{word-spacing:-17.818560px;}
.wsb{word-spacing:-17.686080px;}
.ws43{word-spacing:-17.553600px;}
.wsa{word-spacing:-17.288640px;}
.ws66{word-spacing:-16.852320px;}
.ws67{word-spacing:-16.493760px;}
.ws11{word-spacing:-15.298560px;}
.ws68{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.179040px;}
.ws16{word-spacing:-15.119280px;}
.ws12{word-spacing:-15.059520px;}
.ws13{word-spacing:-14.999760px;}
.wsf{word-spacing:-14.940000px;}
.wse{word-spacing:-14.581440px;}
.ws15{word-spacing:-14.521680px;}
.ws14{word-spacing:-14.461920px;}
.ws0{word-spacing:-13.410720px;}
.ws44{word-spacing:-10.950480px;}
.ws45{word-spacing:-10.709280px;}
.wsd{word-spacing:-9.720000px;}
.ws64{word-spacing:-2.021760px;}
.ws53{word-spacing:-1.900800px;}
.ws65{word-spacing:-1.179360px;}
.ws4d{word-spacing:-0.993600px;}
.ws6a{word-spacing:-0.864000px;}
.ws4e{word-spacing:-0.578880px;}
.ws54{word-spacing:-0.443520px;}
.ws1e{word-spacing:-0.331200px;}
.ws4b{word-spacing:-0.264960px;}
.ws19{word-spacing:-0.144000px;}
.ws40{word-spacing:-0.119520px;}
.ws3b{word-spacing:-0.059760px;}
.ws17{word-spacing:0.000000px;}
.ws34{word-spacing:0.059760px;}
.ws76{word-spacing:0.066240px;}
.ws70{word-spacing:0.072000px;}
.ws56{word-spacing:0.077760px;}
.ws1c{word-spacing:0.132480px;}
.ws4f{word-spacing:0.144720px;}
.ws77{word-spacing:0.192960px;}
.ws37{word-spacing:0.239040px;}
.ws18{word-spacing:0.289440px;}
.ws49{word-spacing:0.331200px;}
.ws2e{word-spacing:0.397440px;}
.ws39{word-spacing:0.418320px;}
.ws1d{word-spacing:0.463680px;}
.ws3d{word-spacing:0.537840px;}
.ws5f{word-spacing:0.596160px;}
.ws48{word-spacing:0.662400px;}
.ws5a{word-spacing:0.728640px;}
.ws3e{word-spacing:0.776880px;}
.ws3f{word-spacing:0.836640px;}
.ws26{word-spacing:0.861120px;}
.ws50{word-spacing:0.868320px;}
.ws24{word-spacing:1.059840px;}
.ws41{word-spacing:1.075680px;}
.ws58{word-spacing:1.126080px;}
.ws27{word-spacing:1.192320px;}
.ws35{word-spacing:1.254960px;}
.ws63{word-spacing:1.457280px;}
.ws5d{word-spacing:1.477440px;}
.ws38{word-spacing:1.494000px;}
.ws2c{word-spacing:1.920960px;}
.ws33{word-spacing:1.972080px;}
.ws22{word-spacing:2.119680px;}
.ws36{word-spacing:2.390400px;}
.ws21{word-spacing:2.583360px;}
.ws3a{word-spacing:2.689200px;}
.ws3c{word-spacing:2.928240px;}
.ws29{word-spacing:3.312000px;}
.ws59{word-spacing:3.576960px;}
.ws57{word-spacing:4.040640px;}
.ws75{word-spacing:4.305600px;}
.ws23{word-spacing:4.769280px;}
.ws47{word-spacing:5.497920px;}
.ws6b{word-spacing:5.696640px;}
.ws2d{word-spacing:6.226560px;}
.ws62{word-spacing:6.359040px;}
.ws1f{word-spacing:6.955200px;}
.ws72{word-spacing:7.153920px;}
.ws1a{word-spacing:7.683840px;}
.ws73{word-spacing:8.280000px;}
.ws25{word-spacing:8.346240px;}
.ws2f{word-spacing:9.074880px;}
.ws28{word-spacing:9.803520px;}
.ws5c{word-spacing:10.532160px;}
.ws61{word-spacing:11.260800px;}
.ws2a{word-spacing:11.989440px;}
.ws78{word-spacing:12.718080px;}
.ws74{word-spacing:13.380480px;}
.ws30{word-spacing:14.109120px;}
.ws51{word-spacing:14.837760px;}
.ws52{word-spacing:15.433920px;}
.ws31{word-spacing:15.566400px;}
.ws32{word-spacing:16.295040px;}
.ws2b{word-spacing:17.023680px;}
.ws4a{word-spacing:17.752320px;}
.ws5b{word-spacing:18.480960px;}
.ws6d{word-spacing:19.143360px;}
.ws5e{word-spacing:19.872000px;}
.ws46{word-spacing:20.600640px;}
.ws60{word-spacing:21.329280px;}
.ws20{word-spacing:22.057920px;}
.ws1b{word-spacing:22.786560px;}
.ws4c{word-spacing:23.515200px;}
.ws6f{word-spacing:24.243840px;}
.ws6c{word-spacing:26.363520px;}
.ws6e{word-spacing:29.940480px;}
._f{margin-left:-447.811920px;}
._5{margin-left:-3.179520px;}
._0{margin-left:-1.640160px;}
._1{width:1.152000px;}
._8{width:2.370240px;}
._4{width:3.378240px;}
._e{width:4.584960px;}
._b{width:5.829120px;}
._2{width:7.021440px;}
._11{width:8.717760px;}
._6{width:10.108800px;}
._10{width:11.194560px;}
._7{width:12.278880px;}
._a{width:14.042880px;}
._9{width:15.530400px;}
._d{width:16.957440px;}
._12{width:20.733120px;}
._3{width:22.654080px;}
._c{width:24.045120px;}
._13{width:30.470400px;}
.fc1{color:rgb(173,6,31);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y162{bottom:3.240000px;}
.y15c{bottom:3.420000px;}
.y3d{bottom:3.600000px;}
.y3f{bottom:3.780000px;}
.y161{bottom:20.520000px;}
.y15b{bottom:20.700000px;}
.y4{bottom:57.600000px;}
.y126{bottom:66.250800px;}
.y14f{bottom:66.559500px;}
.y3{bottom:76.680000px;}
.y72{bottom:109.090800px;}
.y32{bottom:110.136960px;}
.y144{bottom:116.471520px;}
.y8e{bottom:123.344070px;}
.y31{bottom:127.422540px;}
.y85{bottom:129.500850px;}
.y8d{bottom:129.747930px;}
.y182{bottom:134.112240px;}
.y14b{bottom:135.802500px;}
.y123{bottom:136.753800px;}
.yc5{bottom:137.664570px;}
.ye5{bottom:138.080880px;}
.y1b1{bottom:138.617280px;}
.yc6{bottom:140.221290px;}
.yc4{bottom:141.644370px;}
.y30{bottom:144.528840px;}
.y8c{bottom:146.149530px;}
.y95{bottom:146.904600px;}
.ycd{bottom:148.238100px;}
.y10b{bottom:149.765040px;}
.y1df{bottom:150.874560px;}
.yc3{bottom:152.836050px;}
.y181{bottom:153.007200px;}
.y12b{bottom:156.862290px;}
.ye4{bottom:157.158000px;}
.y1b0{bottom:157.512240px;}
.y56{bottom:158.235840px;}
.y2f{bottom:161.814420px;}
.y1de{bottom:169.769520px;}
.y94{bottom:170.405550px;}
.ycc{bottom:171.739050px;}
.ye3{bottom:176.052960px;}
.y1af{bottom:176.589360px;}
.y55{bottom:177.312960px;}
.y132{bottom:180.364350px;}
.y180{bottom:181.092960px;}
.y2e{bottom:185.940000px;}
.y1dd{bottom:188.846640px;}
.y12a{bottom:192.596070px;}
.y93{bottom:193.906500px;}
.ye2{bottom:195.130080px;}
.ycb{bottom:195.240000px;}
.y1ae{bottom:195.484320px;}
.y54{bottom:196.207920px;}
.y2d{bottom:197.100000px;}
.y17f{bottom:199.987920px;}
.y8b{bottom:201.239610px;}
.y131{bottom:203.865300px;}
.y1dc{bottom:207.741600px;}
.yc2{bottom:213.944070px;}
.ye1{bottom:214.025040px;}
.y53{bottom:215.102880px;}
.y92{bottom:217.407450px;}
.y2c{bottom:217.800000px;}
.yca{bottom:218.741100px;}
.y17e{bottom:219.065040px;}
.y1ad{bottom:223.570080px;}
.y130{bottom:227.366400px;}
.ye0{bottom:232.920000px;}
.y52{bottom:234.180000px;}
.y1db{bottom:236.903760px;}
.y17d{bottom:237.960000px;}
.y91{bottom:240.908550px;}
.yc9{bottom:242.242050px;}
.y1ac{bottom:242.465040px;}
.y12f{bottom:250.867350px;}
.y129{bottom:252.570450px;}
.y1da{bottom:255.798720px;}
.ydf{bottom:257.227920px;}
.yc1{bottom:257.938950px;}
.y1ab{bottom:261.360000px;}
.y17c{bottom:261.900000px;}
.y51{bottom:262.800000px;}
.y8a{bottom:264.180750px;}
.y90{bottom:264.409500px;}
.yc8{bottom:265.743000px;}
.y12e{bottom:274.368300px;}
.y1d9{bottom:274.693680px;}
.y128{bottom:275.846250px;}
.yde{bottom:279.720000px;}
.y1aa{bottom:285.300000px;}
.y1d8{bottom:293.770800px;}
.yc7{bottom:295.319850px;}
.y12d{bottom:297.869250px;}
.y50{bottom:298.824480px;}
.y17b{bottom:300.294000px;}
.y5b{bottom:306.655740px;}
.y2b{bottom:310.528800px;}
.ydd{bottom:315.726480px;}
.y5a{bottom:317.750940px;}
.y8f{bottom:318.797250px;}
.y17a{bottom:319.188960px;}
.y1d7{bottom:322.750800px;}
.y1a9{bottom:323.645040px;}
.y59{bottom:333.658080px;}
.yf5{bottom:336.924480px;}
.y179{bottom:338.083920px;}
.y2a{bottom:338.432400px;}
.y1d6{bottom:341.827920px;}
.y12c{bottom:341.995650px;}
.y1a8{bottom:342.540000px;}
.yfe{bottom:345.223500px;}
.y62{bottom:350.718150px;}
.ya7{bottom:352.267920px;}
.y71{bottom:354.427200px;}
.yf4{bottom:356.051640px;}
.y178{bottom:357.161040px;}
.y29{bottom:358.585920px;}
.y1d5{bottom:360.722880px;}
.y1a7{bottom:367.200000px;}
.yfd{bottom:368.724600px;}
.ya6{bottom:371.345040px;}
.y70{bottom:373.504320px;}
.y61{bottom:374.219250px;}
.y28{bottom:378.573840px;}
.y1d4{bottom:379.800000px;}
.y10a{bottom:381.605040px;}
.y177{bottom:385.064640px;}
.ya5{bottom:390.240000px;}
.yf6{bottom:390.929160px;}
.y1a6{bottom:391.698720px;}
.yfc{bottom:392.225400px;}
.y6f{bottom:392.399280px;}
.y60{bottom:397.720200px;}
.y27{bottom:398.727360px;}
.y109{bottom:400.500000px;}
.y1d3{bottom:403.740000px;}
.y176{bottom:404.141760px;}
.y58{bottom:406.066320px;}
.y1a5{bottom:410.775840px;}
.ya4{bottom:414.540000px;}
.yfb{bottom:415.726350px;}
.y6e{bottom:420.485040px;}
.y5f{bottom:421.221150px;}
.y175{bottom:423.036720px;}
.y108{bottom:424.800000px;}
.y26{bottom:427.707360px;}
.yf3{bottom:429.243780px;}
.y1a4{bottom:429.670800px;}
.yfa{bottom:439.227450px;}
.y6d{bottom:439.380000px;}
.y174{bottom:441.931680px;}
.y1d2{bottom:441.984240px;}
.y5e{bottom:444.722100px;}
.y25{bottom:446.784480px;}
.y1a3{bottom:448.747920px;}
.ya3{bottom:450.558720px;}
.y57{bottom:450.905400px;}
.yf2{bottom:453.930600px;}
.y122{bottom:460.800000px;}
.y107{bottom:460.814400px;}
.y1d1{bottom:460.879200px;}
.y143{bottom:462.078720px;}
.yf9{bottom:462.728400px;}
.y6c{bottom:463.680000px;}
.y24{bottom:465.679440px;}
.y11d{bottom:466.844520px;}
.y1a2{bottom:467.642880px;}
.y5d{bottom:468.223050px;}
.yc0{bottom:468.885000px;}
.y173{bottom:470.017440px;}
.yb8{bottom:479.730360px;}
.y1d0{bottom:479.956320px;}
.y142{bottom:481.155840px;}
.y23{bottom:484.756560px;}
.y1a1{bottom:486.720000px;}
.y172{bottom:488.912400px;}
.ybf{bottom:492.386100px;}
.y11c{bottom:494.232780px;}
.yb7{bottom:494.769180px;}
.y1cf{bottom:498.851280px;}
.y84{bottom:499.680000px;}
.y6b{bottom:499.685760px;}
.y127{bottom:503.550000px;}
.yf8{bottom:504.833280px;}
.y171{bottom:507.989520px;}
.y141{bottom:509.059440px;}
.y81{bottom:509.585040px;}
.yb6{bottom:510.254220px;}
.y1a0{bottom:511.207920px;}
.y22{bottom:512.660160px;}
.ybe{bottom:515.887050px;}
.y5c{bottom:516.810900px;}
.yb9{bottom:517.912320px;}
.y1ce{bottom:517.928400px;}
.y11b{bottom:522.175800px;}
.yf7{bottom:524.986800px;}
.y170{bottom:526.884480px;}
.y140{bottom:528.136560px;}
.y19f{bottom:530.102880px;}
.y21{bottom:531.555120px;}
.y80{bottom:532.872900px;}
.y89{bottom:535.176900px;}
.y1cd{bottom:536.823360px;}
.ybd{bottom:539.388000px;}
.y11e{bottom:541.688880px;}
.y16f{bottom:545.779440px;}
.y13f{bottom:547.031520px;}
.y19e{bottom:549.180000px;}
.y125{bottom:550.551750px;}
.y20{bottom:550.632240px;}
.yb5{bottom:552.283320px;}
.y88{bottom:558.678000px;}
.y4f{bottom:559.098000px;}
.ybc{bottom:562.888950px;}
.ydc{bottom:564.672960px;}
.y16e{bottom:564.856560px;}
.y1cc{bottom:564.909120px;}
.y1f{bottom:569.527200px;}
.yb4{bottom:571.072800px;}
.y11a{bottom:571.730340px;}
.y19d{bottom:573.675840px;}
.y124{bottom:574.052850px;}
.y13e{bottom:574.935120px;}
.y4e{bottom:577.992960px;}
.y87{bottom:582.178950px;}
.y7f{bottom:583.006320px;}
.ydb{bottom:583.567920px;}
.y1cb{bottom:583.804080px;}
.ybb{bottom:586.390050px;}
.y19c{bottom:592.752960px;}
.y16d{bottom:592.760160px;}
.y13d{bottom:594.012240px;}
.y4d{bottom:597.070080px;}
.y1d{bottom:597.612960px;}
.yda{bottom:602.462880px;}
.y1ca{bottom:602.699040px;}
.y86{bottom:605.679900px;}
.y19b{bottom:611.647920px;}
.y16c{bottom:611.837280px;}
.y13c{bottom:612.907200px;}
.y4c{bottom:615.965040px;}
.y1c{bottom:616.507920px;}
.yba{bottom:618.216750px;}
.y121{bottom:621.054750px;}
.yd9{bottom:621.540000px;}
.y1c9{bottom:621.776160px;}
.y119{bottom:626.856600px;}
.y19a{bottom:630.725040px;}
.y16b{bottom:630.732240px;}
.y13b{bottom:631.984320px;}
.y4b{bottom:634.860000px;}
.y1b{bottom:635.402880px;}
.y1c8{bottom:640.671120px;}
.yd8{bottom:645.667920px;}
.y199{bottom:649.620000px;}
.y16a{bottom:649.627200px;}
.y13a{bottom:650.879280px;}
.y83{bottom:652.681800px;}
.y1a{bottom:654.480000px;}
.y7e{bottom:654.739200px;}
.ya2{bottom:657.740880px;}
.y4a{bottom:663.660000px;}
.yd7{bottom:668.160000px;}
.y169{bottom:668.704320px;}
.y1c7{bottom:668.756880px;}
.y198{bottom:674.287920px;}
.ya1{bottom:676.818000px;}
.y120{bottom:677.264130px;}
.y139{bottom:678.965040px;}
.y1e{bottom:683.294400px;}
.y19{bottom:683.305920px;}
.y1c6{bottom:687.651840px;}
.y197{bottom:693.182880px;}
.y49{bottom:694.275840px;}
.ya0{bottom:695.712960px;}
.y168{bottom:696.607920px;}
.y11f{bottom:697.417650px;}
.y138{bottom:697.860000px;}
.y82{bottom:703.105950px;}
.y18{bottom:703.111680px;}
.yd6{bottom:704.358000px;}
.y1c5{bottom:706.546800px;}
.y196{bottom:712.260000px;}
.y48{bottom:713.352960px;}
.y9f{bottom:714.790080px;}
.y167{bottom:715.685040px;}
.ye9{bottom:717.394530px;}
.y137{bottom:721.800000px;}
.y17{bottom:722.188800px;}
.y1c4{bottom:725.623920px;}
.y47{bottom:732.247920px;}
.y9e{bottom:733.685040px;}
.y166{bottom:734.580000px;}
.ye8{bottom:736.147830px;}
.y195{bottom:736.747920px;}
.y106{bottom:736.935840px;}
.y6a{bottom:740.352240px;}
.y16{bottom:741.083760px;}
.yf1{bottom:745.699800px;}
.y46{bottom:751.325040px;}
.y9d{bottom:752.580000px;}
.y1c3{bottom:753.527520px;}
.y194{bottom:755.642880px;}
.y105{bottom:756.012960px;}
.y165{bottom:756.720000px;}
.y69{bottom:759.429360px;}
.y136{bottom:760.500000px;}
.y15{bottom:768.987360px;}
.yf0{bottom:769.200750px;}
.y45{bottom:770.220000px;}
.y1c2{bottom:772.604640px;}
.y193{bottom:774.720000px;}
.y104{bottom:774.907920px;}
.y9c{bottom:776.880000px;}
.y68{bottom:778.324320px;}
.y164{bottom:779.940000px;}
.y14{bottom:788.064480px;}
.y1c1{bottom:791.499600px;}
.yef{bottom:792.701700px;}
.y103{bottom:793.985040px;}
.y14e{bottom:795.060000px;}
.y135{bottom:795.069360px;}
.y44{bottom:795.240000px;}
.y14a{bottom:796.320000px;}
.y67{bottom:797.219280px;}
.y160{bottom:797.220000px;}
.y192{bottom:799.202880px;}
.y148{bottom:800.594700px;}
.ye7{bottom:802.152210px;}
.y13{bottom:806.959440px;}
.y163{bottom:809.100000px;}
.yea{bottom:811.281630px;}
.y102{bottom:812.880000px;}
.y9b{bottom:812.887920px;}
.y147{bottom:813.293880px;}
.y151{bottom:814.617600px;}
.y43{bottom:815.040000px;}
.yee{bottom:816.202800px;}
.y191{bottom:818.280000px;}
.yac{bottom:818.454270px;}
.y1c0{bottom:819.403200px;}
.yab{bottom:821.457210px;}
.y66{bottom:825.305040px;}
.y12{bottom:826.036560px;}
.yaa{bottom:831.515250px;}
.y15e{bottom:832.320000px;}
.y42{bottom:834.660000px;}
.y101{bottom:837.182880px;}
.y150{bottom:838.118550px;}
.y1bf{bottom:838.480320px;}
.yed{bottom:839.703750px;}
.yb3{bottom:840.273450px;}
.y190{bottom:842.762880px;}
.y65{bottom:844.200000px;}
.y15f{bottom:844.380000px;}
.y11{bottom:844.931520px;}
.y41{bottom:854.460000px;}
.y1be{bottom:857.375280px;}
.y100{bottom:859.500000px;}
.y18f{bottom:861.840000px;}
.yec{bottom:863.204700px;}
.yb2{bottom:863.774400px;}
.y10{bottom:863.826480px;}
.y15a{bottom:867.600000px;}
.y64{bottom:868.500000px;}
.y146{bottom:869.011080px;}
.ye6{bottom:869.917350px;}
.y40{bottom:874.260000px;}
.y1bd{bottom:876.452400px;}
.y15d{bottom:879.660000px;}
.y1eb{bottom:882.923760px;}
.y14d{bottom:885.120450px;}
.y18e{bottom:886.322880px;}
.yb1{bottom:887.275500px;}
.yf{bottom:891.912240px;}
.y3e{bottom:893.880000px;}
.y1bc{bottom:895.347360px;}
.yff{bottom:895.680000px;}
.y110{bottom:901.088190px;}
.y1ea{bottom:902.000880px;}
.y63{bottom:904.680000px;}
.y18d{bottom:905.400000px;}
.y14c{bottom:908.621550px;}
.y159{bottom:908.820000px;}
.y76{bottom:910.022070px;}
.ya9{bottom:910.134390px;}
.yb0{bottom:910.776450px;}
.ye{bottom:910.807200px;}
.y3c{bottom:913.680000px;}
.y1bb{bottom:914.242320px;}
.y145{bottom:915.526500px;}
.y10f{bottom:916.645590px;}
.yeb{bottom:918.211650px;}
.y118{bottom:927.434550px;}
.y75{bottom:928.920090px;}
.y18c{bottom:929.882880px;}
.yd{bottom:929.884320px;}
.y1e9{bottom:929.904480px;}
.y158{bottom:932.220000px;}
.y1ba{bottom:933.319440px;}
.yaf{bottom:934.277400px;}
.y7d{bottom:941.965050px;}
.y10e{bottom:942.972570px;}
.ya8{bottom:945.180750px;}
.yd5{bottom:948.800160px;}
.y18b{bottom:948.960000px;}
.y1e8{bottom:948.981600px;}
.y117{bottom:950.935500px;}
.y74{bottom:951.182850px;}
.y1b9{bottom:952.214400px;}
.y3b{bottom:955.100160px;}
.y157{bottom:955.440000px;}
.yae{bottom:957.778350px;}
.yc{bottom:957.787920px;}
.y7c{bottom:965.466150px;}
.y149{bottom:966.311700px;}
.yd4{bottom:967.695120px;}
.y1e7{bottom:967.876560px;}
.y18a{bottom:973.447920px;}
.y3a{bottom:973.995120px;}
.y116{bottom:974.436450px;}
.yb{bottom:976.682880px;}
.y156{bottom:978.660000px;}
.y1b8{bottom:980.300160px;}
.yd3{bottom:986.772240px;}
.y7b{bottom:988.967100px;}
.y10c{bottom:989.439750px;}
.y189{bottom:992.525040px;}
.y39{bottom:992.890080px;}
.ya{bottom:995.760000px;}
.y1e6{bottom:997.038720px;}
.y115{bottom:997.937550px;}
.yad{bottom:998.605200px;}
.y1b7{bottom:999.195120px;}
.y155{bottom:1001.880000px;}
.y134{bottom:1010.167200px;}
.y188{bottom:1011.420000px;}
.y38{bottom:1011.967200px;}
.y7a{bottom:1012.468200px;}
.yd2{bottom:1014.675840px;}
.y1e5{bottom:1015.933680px;}
.y1b6{bottom:1018.090080px;}
.y114{bottom:1021.438500px;}
.y73{bottom:1023.482550px;}
.y9{bottom:1024.200000px;}
.y154{bottom:1025.100000px;}
.y133{bottom:1029.244320px;}
.yd1{bottom:1033.752960px;}
.y1e4{bottom:1035.010800px;}
.y79{bottom:1035.969150px;}
.y187{bottom:1036.092960px;}
.y1b5{bottom:1037.167200px;}
.y9a{bottom:1038.252960px;}
.y37{bottom:1039.870800px;}
.y8{bottom:1044.900000px;}
.y113{bottom:1044.939450px;}
.y10d{bottom:1047.315690px;}
.y153{bottom:1048.320000px;}
.yd0{bottom:1052.647920px;}
.y1e3{bottom:1053.905760px;}
.y186{bottom:1054.987920px;}
.y1b4{bottom:1056.062160px;}
.y99{bottom:1057.147920px;}
.y36{bottom:1058.947920px;}
.y78{bottom:1059.470100px;}
.y7{bottom:1065.600000px;}
.y152{bottom:1071.720000px;}
.ycf{bottom:1071.725040px;}
.y1e2{bottom:1072.982880px;}
.y185{bottom:1074.065040px;}
.y1b3{bottom:1075.139280px;}
.y98{bottom:1076.225040px;}
.y35{bottom:1077.842880px;}
.y6{bottom:1086.300000px;}
.y112{bottom:1090.268280px;}
.yce{bottom:1090.620000px;}
.y184{bottom:1092.960000px;}
.y97{bottom:1095.120000px;}
.y34{bottom:1096.920000px;}
.y1e1{bottom:1101.962880px;}
.y1b2{bottom:1103.042880px;}
.y5{bottom:1109.520000px;}
.y111{bottom:1110.421800px;}
.y77{bottom:1112.812800px;}
.y96{bottom:1119.420000px;}
.y33{bottom:1120.860000px;}
.y1e0{bottom:1121.040000px;}
.y183{bottom:1122.120000px;}
.y2{bottom:1141.920000px;}
.y1{bottom:1158.120000px;}
.h9{height:18.900000px;}
.hb{height:19.080000px;}
.ha{height:19.081500px;}
.h19{height:34.380000px;}
.h18{height:34.560000px;}
.hd{height:34.625391px;}
.h7{height:38.158594px;}
.h10{height:43.436250px;}
.he{height:45.410625px;}
.h14{height:57.750469px;}
.h8{height:58.651172px;}
.h17{height:62.327813px;}
.hf{height:64.823631px;}
.h5{height:69.086250px;}
.h2{height:70.664062px;}
.h4{height:75.093750px;}
.h13{height:77.580000px;}
.h16{height:77.940000px;}
.h6{height:80.361242px;}
.hc{height:81.101250px;}
.h3{height:125.406562px;}
.h11{height:140.760000px;}
.h15{height:147.060000px;}
.h12{height:148.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:90.540000px;}
.w7{width:99.000000px;}
.w6{width:120.420000px;}
.w5{width:123.660000px;}
.w2{width:137.340000px;}
.w3{width:190.620000px;}
.w8{width:403.200000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:4.860000px;}
.xa{left:7.740000px;}
.x9{left:19.980000px;}
.x7{left:27.360000px;}
.x4d{left:117.360000px;}
.x4c{left:122.220000px;}
.x2{left:127.620000px;}
.x5{left:154.364400px;}
.x45{left:206.434950px;}
.x4a{left:221.190150px;}
.x39{left:223.120560px;}
.x20{left:226.380750px;}
.x40{left:230.728470px;}
.x6{left:234.360000px;}
.x17{left:250.953000px;}
.x48{left:254.131200px;}
.x2b{left:265.113900px;}
.x27{left:266.910000px;}
.x4{left:269.241120px;}
.x1b{left:282.156150px;}
.x33{left:284.892150px;}
.x4b{left:286.380000px;}
.x10{left:310.050000px;}
.x31{left:311.512500px;}
.xb{left:346.395450px;}
.x1d{left:348.666000px;}
.x3a{left:353.171100px;}
.x13{left:354.919050px;}
.x46{left:359.896800px;}
.x8{left:372.600000px;}
.x22{left:379.262700px;}
.x34{left:386.403000px;}
.x41{left:391.629150px;}
.x49{left:394.414650px;}
.x2c{left:397.939500px;}
.x3f{left:405.154950px;}
.x28{left:408.120450px;}
.x38{left:409.238400px;}
.x30{left:442.416780px;}
.x1f{left:447.714780px;}
.x3b{left:452.822880px;}
.x26{left:461.101860px;}
.xc{left:478.223310px;}
.x2d{left:480.140460px;}
.x23{left:485.643960px;}
.xf{left:488.474310px;}
.x2f{left:493.478820px;}
.x47{left:494.643180px;}
.x29{left:499.306110px;}
.x37{left:504.217140px;}
.x35{left:508.003980px;}
.x18{left:514.042860px;}
.x3e{left:526.678320px;}
.x25{left:528.239880px;}
.x32{left:530.549130px;}
.x42{left:531.621630px;}
.x16{left:533.780910px;}
.xe{left:543.371430px;}
.x36{left:544.425180px;}
.x2e{left:546.036300px;}
.x1a{left:554.685060px;}
.x1e{left:556.725120px;}
.x44{left:561.831930px;}
.x15{left:566.994150px;}
.x24{left:570.425760px;}
.x19{left:571.701720px;}
.x2a{left:574.536390px;}
.xd{left:576.222870px;}
.x3d{left:578.451900px;}
.x43{left:581.706810px;}
.x14{left:588.316230px;}
.x3c{left:599.701620px;}
.x1c{left:636.660000px;}
.x21{left:643.582650px;}
.x11{left:644.596800px;}
.x3{left:726.120000px;}
.x1{left:768.780000px;}
.x12{left:771.120000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v4{vertical-align:26.842880pt;}
.v1{vertical-align:29.347840pt;}
.ls4c{letter-spacing:-1.313280pt;}
.ls6b{letter-spacing:-1.221760pt;}
.ls1d{letter-spacing:-1.000960pt;}
.ls27{letter-spacing:-0.956160pt;}
.ls1b{letter-spacing:-0.942080pt;}
.ls1e{letter-spacing:-0.765440pt;}
.ls1f{letter-spacing:-0.647680pt;}
.ls41{letter-spacing:-0.529920pt;}
.ls25{letter-spacing:-0.478080pt;}
.ls26{letter-spacing:-0.424960pt;}
.ls52{letter-spacing:-0.374400pt;}
.ls24{letter-spacing:-0.371840pt;}
.ls20{letter-spacing:-0.353280pt;}
.ls21{letter-spacing:-0.318720pt;}
.ls34{letter-spacing:-0.294400pt;}
.ls6c{letter-spacing:-0.265600pt;}
.ls1a{letter-spacing:-0.235520pt;}
.ls36{letter-spacing:-0.214400pt;}
.ls23{letter-spacing:-0.212480pt;}
.ls37{letter-spacing:-0.171520pt;}
.ls3e{letter-spacing:-0.168960pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.117760pt;}
.ls6a{letter-spacing:-0.106240pt;}
.ls40{letter-spacing:-0.069120pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.053120pt;}
.ls16{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.042880pt;}
.ls13{letter-spacing:0.053120pt;}
.ls4d{letter-spacing:0.058880pt;}
.ls10{letter-spacing:0.106240pt;}
.ls53{letter-spacing:0.149760pt;}
.ls14{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.212480pt;}
.ls3c{letter-spacing:0.235520pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls33{letter-spacing:0.300160pt;}
.ls15{letter-spacing:0.318720pt;}
.ls2a{letter-spacing:0.353280pt;}
.ls64{letter-spacing:0.412160pt;}
.ls32{letter-spacing:0.471040pt;}
.ls1c{letter-spacing:0.529920pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.647680pt;}
.ls74{letter-spacing:0.765440pt;}
.ls12{letter-spacing:0.796800pt;}
.ls4{letter-spacing:0.883200pt;}
.ls3a{letter-spacing:1.000960pt;}
.ls68{letter-spacing:1.059840pt;}
.ls69{letter-spacing:1.354240pt;}
.lsf{letter-spacing:1.434240pt;}
.ls42{letter-spacing:1.530880pt;}
.ls65{letter-spacing:1.825280pt;}
.ls43{letter-spacing:1.943040pt;}
.ls7b{letter-spacing:2.178560pt;}
.ls75{letter-spacing:2.649600pt;}
.ls11{letter-spacing:2.709120pt;}
.ls7{letter-spacing:2.826240pt;}
.ls6{letter-spacing:2.944000pt;}
.ls5{letter-spacing:3.061760pt;}
.ls67{letter-spacing:3.415040pt;}
.ls4a{letter-spacing:3.473920pt;}
.ls31{letter-spacing:4.121600pt;}
.ls30{letter-spacing:4.533760pt;}
.ls3b{letter-spacing:4.769280pt;}
.ls2b{letter-spacing:4.828160pt;}
.ls4f{letter-spacing:4.887040pt;}
.ls73{letter-spacing:5.063680pt;}
.ls2c{letter-spacing:5.358080pt;}
.ls4e{letter-spacing:5.416960pt;}
.ls51{letter-spacing:5.770240pt;}
.ls2{letter-spacing:6.005760pt;}
.ls50{letter-spacing:6.064640pt;}
.ls6f{letter-spacing:6.653440pt;}
.ls38{letter-spacing:6.771200pt;}
.ls70{letter-spacing:6.830080pt;}
.ls3{letter-spacing:7.301120pt;}
.ls4b{letter-spacing:9.244160pt;}
.ls47{letter-spacing:9.656320pt;}
.ls78{letter-spacing:9.891840pt;}
.ls28{letter-spacing:10.539520pt;}
.ls29{letter-spacing:10.716160pt;}
.ls76{letter-spacing:11.128320pt;}
.ls77{letter-spacing:11.776000pt;}
.ls39{letter-spacing:13.071360pt;}
.ls3f{letter-spacing:13.189120pt;}
.lsa{letter-spacing:14.366720pt;}
.ls9{letter-spacing:14.425600pt;}
.ls6e{letter-spacing:14.484480pt;}
.ls8{letter-spacing:15.014400pt;}
.ls6d{letter-spacing:15.485440pt;}
.ls2f{letter-spacing:15.603200pt;}
.ls45{letter-spacing:16.250880pt;}
.ls44{letter-spacing:16.368640pt;}
.ls46{letter-spacing:16.898560pt;}
.ls66{letter-spacing:17.369600pt;}
.ls48{letter-spacing:17.546240pt;}
.ls49{letter-spacing:17.899520pt;}
.ls72{letter-spacing:18.193920pt;}
.ls7a{letter-spacing:19.489280pt;}
.ls2e{letter-spacing:20.725760pt;}
.ls79{letter-spacing:26.672640pt;}
.ls56{letter-spacing:47.335040pt;}
.lsb{letter-spacing:51.461120pt;}
.ls71{letter-spacing:52.108800pt;}
.lsc{letter-spacing:52.756480pt;}
.ls55{letter-spacing:54.368000pt;}
.ls61{letter-spacing:87.648000pt;}
.ls59{letter-spacing:117.713920pt;}
.ls58{letter-spacing:212.426880pt;}
.ls3d{letter-spacing:225.377280pt;}
.ls62{letter-spacing:348.096000pt;}
.ls5a{letter-spacing:350.698880pt;}
.ls5d{letter-spacing:385.864320pt;}
.ls5e{letter-spacing:407.006080pt;}
.ls5c{letter-spacing:433.884800pt;}
.ls63{letter-spacing:469.687680pt;}
.ls5b{letter-spacing:489.554560pt;}
.ls60{letter-spacing:543.312000pt;}
.ls54{letter-spacing:623.333760pt;}
.ls5f{letter-spacing:732.737920pt;}
.ls57{letter-spacing:892.735360pt;}
.wsc{word-spacing:-58.880000pt;}
.ws1{word-spacing:-29.712640pt;}
.ws4{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws9{word-spacing:-16.898560pt;}
.ws71{word-spacing:-16.663040pt;}
.ws69{word-spacing:-16.604160pt;}
.ws8{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.250880pt;}
.ws6{word-spacing:-16.133120pt;}
.ws42{word-spacing:-16.074240pt;}
.ws55{word-spacing:-15.838720pt;}
.wsb{word-spacing:-15.720960pt;}
.ws43{word-spacing:-15.603200pt;}
.wsa{word-spacing:-15.367680pt;}
.ws66{word-spacing:-14.979840pt;}
.ws67{word-spacing:-14.661120pt;}
.ws11{word-spacing:-13.598720pt;}
.ws68{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.492480pt;}
.ws16{word-spacing:-13.439360pt;}
.ws12{word-spacing:-13.386240pt;}
.ws13{word-spacing:-13.333120pt;}
.wsf{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.961280pt;}
.ws15{word-spacing:-12.908160pt;}
.ws14{word-spacing:-12.855040pt;}
.ws0{word-spacing:-11.920640pt;}
.ws44{word-spacing:-9.733760pt;}
.ws45{word-spacing:-9.519360pt;}
.wsd{word-spacing:-8.640000pt;}
.ws64{word-spacing:-1.797120pt;}
.ws53{word-spacing:-1.689600pt;}
.ws65{word-spacing:-1.048320pt;}
.ws4d{word-spacing:-0.883200pt;}
.ws6a{word-spacing:-0.768000pt;}
.ws4e{word-spacing:-0.514560pt;}
.ws54{word-spacing:-0.394240pt;}
.ws1e{word-spacing:-0.294400pt;}
.ws4b{word-spacing:-0.235520pt;}
.ws19{word-spacing:-0.128000pt;}
.ws40{word-spacing:-0.106240pt;}
.ws3b{word-spacing:-0.053120pt;}
.ws17{word-spacing:0.000000pt;}
.ws34{word-spacing:0.053120pt;}
.ws76{word-spacing:0.058880pt;}
.ws70{word-spacing:0.064000pt;}
.ws56{word-spacing:0.069120pt;}
.ws1c{word-spacing:0.117760pt;}
.ws4f{word-spacing:0.128640pt;}
.ws77{word-spacing:0.171520pt;}
.ws37{word-spacing:0.212480pt;}
.ws18{word-spacing:0.257280pt;}
.ws49{word-spacing:0.294400pt;}
.ws2e{word-spacing:0.353280pt;}
.ws39{word-spacing:0.371840pt;}
.ws1d{word-spacing:0.412160pt;}
.ws3d{word-spacing:0.478080pt;}
.ws5f{word-spacing:0.529920pt;}
.ws48{word-spacing:0.588800pt;}
.ws5a{word-spacing:0.647680pt;}
.ws3e{word-spacing:0.690560pt;}
.ws3f{word-spacing:0.743680pt;}
.ws26{word-spacing:0.765440pt;}
.ws50{word-spacing:0.771840pt;}
.ws24{word-spacing:0.942080pt;}
.ws41{word-spacing:0.956160pt;}
.ws58{word-spacing:1.000960pt;}
.ws27{word-spacing:1.059840pt;}
.ws35{word-spacing:1.115520pt;}
.ws63{word-spacing:1.295360pt;}
.ws5d{word-spacing:1.313280pt;}
.ws38{word-spacing:1.328000pt;}
.ws2c{word-spacing:1.707520pt;}
.ws33{word-spacing:1.752960pt;}
.ws22{word-spacing:1.884160pt;}
.ws36{word-spacing:2.124800pt;}
.ws21{word-spacing:2.296320pt;}
.ws3a{word-spacing:2.390400pt;}
.ws3c{word-spacing:2.602880pt;}
.ws29{word-spacing:2.944000pt;}
.ws59{word-spacing:3.179520pt;}
.ws57{word-spacing:3.591680pt;}
.ws75{word-spacing:3.827200pt;}
.ws23{word-spacing:4.239360pt;}
.ws47{word-spacing:4.887040pt;}
.ws6b{word-spacing:5.063680pt;}
.ws2d{word-spacing:5.534720pt;}
.ws62{word-spacing:5.652480pt;}
.ws1f{word-spacing:6.182400pt;}
.ws72{word-spacing:6.359040pt;}
.ws1a{word-spacing:6.830080pt;}
.ws73{word-spacing:7.360000pt;}
.ws25{word-spacing:7.418880pt;}
.ws2f{word-spacing:8.066560pt;}
.ws28{word-spacing:8.714240pt;}
.ws5c{word-spacing:9.361920pt;}
.ws61{word-spacing:10.009600pt;}
.ws2a{word-spacing:10.657280pt;}
.ws78{word-spacing:11.304960pt;}
.ws74{word-spacing:11.893760pt;}
.ws30{word-spacing:12.541440pt;}
.ws51{word-spacing:13.189120pt;}
.ws52{word-spacing:13.719040pt;}
.ws31{word-spacing:13.836800pt;}
.ws32{word-spacing:14.484480pt;}
.ws2b{word-spacing:15.132160pt;}
.ws4a{word-spacing:15.779840pt;}
.ws5b{word-spacing:16.427520pt;}
.ws6d{word-spacing:17.016320pt;}
.ws5e{word-spacing:17.664000pt;}
.ws46{word-spacing:18.311680pt;}
.ws60{word-spacing:18.959360pt;}
.ws20{word-spacing:19.607040pt;}
.ws1b{word-spacing:20.254720pt;}
.ws4c{word-spacing:20.902400pt;}
.ws6f{word-spacing:21.550080pt;}
.ws6c{word-spacing:23.434240pt;}
.ws6e{word-spacing:26.613760pt;}
._f{margin-left:-398.055040pt;}
._5{margin-left:-2.826240pt;}
._0{margin-left:-1.457920pt;}
._1{width:1.024000pt;}
._8{width:2.106880pt;}
._4{width:3.002880pt;}
._e{width:4.075520pt;}
._b{width:5.181440pt;}
._2{width:6.241280pt;}
._11{width:7.749120pt;}
._6{width:8.985600pt;}
._10{width:9.950720pt;}
._7{width:10.914560pt;}
._a{width:12.482560pt;}
._9{width:13.804800pt;}
._d{width:15.073280pt;}
._12{width:18.429440pt;}
._3{width:20.136960pt;}
._c{width:21.373440pt;}
._13{width:27.084800pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y162{bottom:2.880000pt;}
.y15c{bottom:3.040000pt;}
.y3d{bottom:3.200000pt;}
.y3f{bottom:3.360000pt;}
.y161{bottom:18.240000pt;}
.y15b{bottom:18.400000pt;}
.y4{bottom:51.200000pt;}
.y126{bottom:58.889600pt;}
.y14f{bottom:59.164000pt;}
.y3{bottom:68.160000pt;}
.y72{bottom:96.969600pt;}
.y32{bottom:97.899520pt;}
.y144{bottom:103.530240pt;}
.y8e{bottom:109.639173pt;}
.y31{bottom:113.264480pt;}
.y85{bottom:115.111867pt;}
.y8d{bottom:115.331493pt;}
.y182{bottom:119.210880pt;}
.y14b{bottom:120.713333pt;}
.y123{bottom:121.558933pt;}
.yc5{bottom:122.368507pt;}
.ye5{bottom:122.738560pt;}
.y1b1{bottom:123.215360pt;}
.yc6{bottom:124.641147pt;}
.yc4{bottom:125.906107pt;}
.y30{bottom:128.470080pt;}
.y8c{bottom:129.910693pt;}
.y95{bottom:130.581867pt;}
.ycd{bottom:131.767200pt;}
.y10b{bottom:133.124480pt;}
.y1df{bottom:134.110720pt;}
.yc3{bottom:135.854267pt;}
.y181{bottom:136.006400pt;}
.y12b{bottom:139.433147pt;}
.ye4{bottom:139.696000pt;}
.y1b0{bottom:140.010880pt;}
.y56{bottom:140.654080pt;}
.y2f{bottom:143.835040pt;}
.y1de{bottom:150.906240pt;}
.y94{bottom:151.471600pt;}
.ycc{bottom:152.656933pt;}
.ye3{bottom:156.491520pt;}
.y1af{bottom:156.968320pt;}
.y55{bottom:157.611520pt;}
.y132{bottom:160.323867pt;}
.y180{bottom:160.971520pt;}
.y2e{bottom:165.280000pt;}
.y1dd{bottom:167.863680pt;}
.y12a{bottom:171.196507pt;}
.y93{bottom:172.361333pt;}
.ye2{bottom:173.448960pt;}
.ycb{bottom:173.546667pt;}
.y1ae{bottom:173.763840pt;}
.y54{bottom:174.407040pt;}
.y2d{bottom:175.200000pt;}
.y17f{bottom:177.767040pt;}
.y8b{bottom:178.879653pt;}
.y131{bottom:181.213600pt;}
.y1dc{bottom:184.659200pt;}
.yc2{bottom:190.172507pt;}
.ye1{bottom:190.244480pt;}
.y53{bottom:191.202560pt;}
.y92{bottom:193.251067pt;}
.y2c{bottom:193.600000pt;}
.yca{bottom:194.436533pt;}
.y17e{bottom:194.724480pt;}
.y1ad{bottom:198.728960pt;}
.y130{bottom:202.103467pt;}
.ye0{bottom:207.040000pt;}
.y52{bottom:208.160000pt;}
.y1db{bottom:210.581120pt;}
.y17d{bottom:211.520000pt;}
.y91{bottom:214.140933pt;}
.yc9{bottom:215.326267pt;}
.y1ac{bottom:215.524480pt;}
.y12f{bottom:222.993200pt;}
.y129{bottom:224.507067pt;}
.y1da{bottom:227.376640pt;}
.ydf{bottom:228.647040pt;}
.yc1{bottom:229.279067pt;}
.y1ab{bottom:232.320000pt;}
.y17c{bottom:232.800000pt;}
.y51{bottom:233.600000pt;}
.y8a{bottom:234.827333pt;}
.y90{bottom:235.030667pt;}
.yc8{bottom:236.216000pt;}
.y12e{bottom:243.882933pt;}
.y1d9{bottom:244.172160pt;}
.y128{bottom:245.196667pt;}
.yde{bottom:248.640000pt;}
.y1aa{bottom:253.600000pt;}
.y1d8{bottom:261.129600pt;}
.yc7{bottom:262.506533pt;}
.y12d{bottom:264.772667pt;}
.y50{bottom:265.621760pt;}
.y17b{bottom:266.928000pt;}
.y5b{bottom:272.582880pt;}
.y2b{bottom:276.025600pt;}
.ydd{bottom:280.645760pt;}
.y5a{bottom:282.445280pt;}
.y8f{bottom:283.375333pt;}
.y17a{bottom:283.723520pt;}
.y1d7{bottom:286.889600pt;}
.y1a9{bottom:287.684480pt;}
.y59{bottom:296.584960pt;}
.yf5{bottom:299.488427pt;}
.y179{bottom:300.519040pt;}
.y2a{bottom:300.828800pt;}
.y1d6{bottom:303.847040pt;}
.y12c{bottom:303.996133pt;}
.y1a8{bottom:304.480000pt;}
.yfe{bottom:306.865333pt;}
.y62{bottom:311.749467pt;}
.ya7{bottom:313.127040pt;}
.y71{bottom:315.046400pt;}
.yf4{bottom:316.490347pt;}
.y178{bottom:317.476480pt;}
.y29{bottom:318.743040pt;}
.y1d5{bottom:320.642560pt;}
.y1a7{bottom:326.400000pt;}
.yfd{bottom:327.755200pt;}
.ya6{bottom:330.084480pt;}
.y70{bottom:332.003840pt;}
.y61{bottom:332.639333pt;}
.y28{bottom:336.510080pt;}
.y1d4{bottom:337.600000pt;}
.y10a{bottom:339.204480pt;}
.y177{bottom:342.279680pt;}
.ya5{bottom:346.880000pt;}
.yf6{bottom:347.492587pt;}
.y1a6{bottom:348.176640pt;}
.yfc{bottom:348.644800pt;}
.y6f{bottom:348.799360pt;}
.y60{bottom:353.529067pt;}
.y27{bottom:354.424320pt;}
.y109{bottom:356.000000pt;}
.y1d3{bottom:358.880000pt;}
.y176{bottom:359.237120pt;}
.y58{bottom:360.947840pt;}
.y1a5{bottom:365.134080pt;}
.ya4{bottom:368.480000pt;}
.yfb{bottom:369.534533pt;}
.y6e{bottom:373.764480pt;}
.y5f{bottom:374.418800pt;}
.y175{bottom:376.032640pt;}
.y108{bottom:377.600000pt;}
.y26{bottom:380.184320pt;}
.yf3{bottom:381.550027pt;}
.y1a4{bottom:381.929600pt;}
.yfa{bottom:390.424400pt;}
.y6d{bottom:390.560000pt;}
.y174{bottom:392.828160pt;}
.y1d2{bottom:392.874880pt;}
.y5e{bottom:395.308533pt;}
.y25{bottom:397.141760pt;}
.y1a3{bottom:398.887040pt;}
.ya3{bottom:400.496640pt;}
.y57{bottom:400.804800pt;}
.yf2{bottom:403.493867pt;}
.y122{bottom:409.600000pt;}
.y107{bottom:409.612800pt;}
.y1d1{bottom:409.670400pt;}
.y143{bottom:410.736640pt;}
.yf9{bottom:411.314133pt;}
.y6c{bottom:412.160000pt;}
.y24{bottom:413.937280pt;}
.y11d{bottom:414.972907pt;}
.y1a2{bottom:415.682560pt;}
.y5d{bottom:416.198267pt;}
.yc0{bottom:416.786667pt;}
.y173{bottom:417.793280pt;}
.yb8{bottom:426.426987pt;}
.y1d0{bottom:426.627840pt;}
.y142{bottom:427.694080pt;}
.y23{bottom:430.894720pt;}
.y1a1{bottom:432.640000pt;}
.y172{bottom:434.588800pt;}
.ybf{bottom:437.676533pt;}
.y11c{bottom:439.318027pt;}
.yb7{bottom:439.794827pt;}
.y1cf{bottom:443.423360pt;}
.y84{bottom:444.160000pt;}
.y6b{bottom:444.165120pt;}
.y127{bottom:447.600000pt;}
.yf8{bottom:448.740693pt;}
.y171{bottom:451.546240pt;}
.y141{bottom:452.497280pt;}
.y81{bottom:452.964480pt;}
.yb6{bottom:453.559307pt;}
.y1a0{bottom:454.407040pt;}
.y22{bottom:455.697920pt;}
.ybe{bottom:458.566267pt;}
.y5c{bottom:459.387467pt;}
.yb9{bottom:460.366507pt;}
.y1ce{bottom:460.380800pt;}
.y11b{bottom:464.156267pt;}
.yf7{bottom:466.654933pt;}
.y170{bottom:468.341760pt;}
.y140{bottom:469.454720pt;}
.y19f{bottom:471.202560pt;}
.y21{bottom:472.493440pt;}
.y80{bottom:473.664800pt;}
.y89{bottom:475.712800pt;}
.y1cd{bottom:477.176320pt;}
.ybd{bottom:479.456000pt;}
.y11e{bottom:481.501227pt;}
.y16f{bottom:485.137280pt;}
.y13f{bottom:486.250240pt;}
.y19e{bottom:488.160000pt;}
.y125{bottom:489.379333pt;}
.y20{bottom:489.450880pt;}
.yb5{bottom:490.918507pt;}
.y88{bottom:496.602667pt;}
.y4f{bottom:496.976000pt;}
.ybc{bottom:500.345733pt;}
.ydc{bottom:501.931520pt;}
.y16e{bottom:502.094720pt;}
.y1cc{bottom:502.141440pt;}
.y1f{bottom:506.246400pt;}
.yb4{bottom:507.620267pt;}
.y11a{bottom:508.204747pt;}
.y19d{bottom:509.934080pt;}
.y124{bottom:510.269200pt;}
.y13e{bottom:511.053440pt;}
.y4e{bottom:513.771520pt;}
.y87{bottom:517.492400pt;}
.y7f{bottom:518.227840pt;}
.ydb{bottom:518.727040pt;}
.y1cb{bottom:518.936960pt;}
.ybb{bottom:521.235600pt;}
.y19c{bottom:526.891520pt;}
.y16d{bottom:526.897920pt;}
.y13d{bottom:528.010880pt;}
.y4d{bottom:530.728960pt;}
.y1d{bottom:531.211520pt;}
.yda{bottom:535.522560pt;}
.y1ca{bottom:535.732480pt;}
.y86{bottom:538.382133pt;}
.y19b{bottom:543.687040pt;}
.y16c{bottom:543.855360pt;}
.y13c{bottom:544.806400pt;}
.y4c{bottom:547.524480pt;}
.y1c{bottom:548.007040pt;}
.yba{bottom:549.526000pt;}
.y121{bottom:552.048667pt;}
.yd9{bottom:552.480000pt;}
.y1c9{bottom:552.689920pt;}
.y119{bottom:557.205867pt;}
.y19a{bottom:560.644480pt;}
.y16b{bottom:560.650880pt;}
.y13b{bottom:561.763840pt;}
.y4b{bottom:564.320000pt;}
.y1b{bottom:564.802560pt;}
.y1c8{bottom:569.485440pt;}
.yd8{bottom:573.927040pt;}
.y199{bottom:577.440000pt;}
.y16a{bottom:577.446400pt;}
.y13a{bottom:578.559360pt;}
.y83{bottom:580.161600pt;}
.y1a{bottom:581.760000pt;}
.y7e{bottom:581.990400pt;}
.ya2{bottom:584.658560pt;}
.y4a{bottom:589.920000pt;}
.yd7{bottom:593.920000pt;}
.y169{bottom:594.403840pt;}
.y1c7{bottom:594.450560pt;}
.y198{bottom:599.367040pt;}
.ya1{bottom:601.616000pt;}
.y120{bottom:602.012560pt;}
.y139{bottom:603.524480pt;}
.y1e{bottom:607.372800pt;}
.y19{bottom:607.383040pt;}
.y1c6{bottom:611.246080pt;}
.y197{bottom:616.162560pt;}
.y49{bottom:617.134080pt;}
.ya0{bottom:618.411520pt;}
.y168{bottom:619.207040pt;}
.y11f{bottom:619.926800pt;}
.y138{bottom:620.320000pt;}
.y82{bottom:624.983067pt;}
.y18{bottom:624.988160pt;}
.yd6{bottom:626.096000pt;}
.y1c5{bottom:628.041600pt;}
.y196{bottom:633.120000pt;}
.y48{bottom:634.091520pt;}
.y9f{bottom:635.368960pt;}
.y167{bottom:636.164480pt;}
.ye9{bottom:637.684027pt;}
.y137{bottom:641.600000pt;}
.y17{bottom:641.945600pt;}
.y1c4{bottom:644.999040pt;}
.y47{bottom:650.887040pt;}
.y9e{bottom:652.164480pt;}
.y166{bottom:652.960000pt;}
.ye8{bottom:654.353627pt;}
.y195{bottom:654.887040pt;}
.y106{bottom:655.054080pt;}
.y6a{bottom:658.090880pt;}
.y16{bottom:658.741120pt;}
.yf1{bottom:662.844267pt;}
.y46{bottom:667.844480pt;}
.y9d{bottom:668.960000pt;}
.y1c3{bottom:669.802240pt;}
.y194{bottom:671.682560pt;}
.y105{bottom:672.011520pt;}
.y165{bottom:672.640000pt;}
.y69{bottom:675.048320pt;}
.y136{bottom:676.000000pt;}
.y15{bottom:683.544320pt;}
.yf0{bottom:683.734000pt;}
.y45{bottom:684.640000pt;}
.y1c2{bottom:686.759680pt;}
.y193{bottom:688.640000pt;}
.y104{bottom:688.807040pt;}
.y9c{bottom:690.560000pt;}
.y68{bottom:691.843840pt;}
.y164{bottom:693.280000pt;}
.y14{bottom:700.501760pt;}
.y1c1{bottom:703.555200pt;}
.yef{bottom:704.623733pt;}
.y103{bottom:705.764480pt;}
.y14e{bottom:706.720000pt;}
.y135{bottom:706.728320pt;}
.y44{bottom:706.880000pt;}
.y14a{bottom:707.840000pt;}
.y67{bottom:708.639360pt;}
.y160{bottom:708.640000pt;}
.y192{bottom:710.402560pt;}
.y148{bottom:711.639733pt;}
.ye7{bottom:713.024187pt;}
.y13{bottom:717.297280pt;}
.y163{bottom:719.200000pt;}
.yea{bottom:721.139227pt;}
.y102{bottom:722.560000pt;}
.y9b{bottom:722.567040pt;}
.y147{bottom:722.927893pt;}
.y151{bottom:724.104533pt;}
.y43{bottom:724.480000pt;}
.yee{bottom:725.513600pt;}
.y191{bottom:727.360000pt;}
.yac{bottom:727.514907pt;}
.y1c0{bottom:728.358400pt;}
.yab{bottom:730.184187pt;}
.y66{bottom:733.604480pt;}
.y12{bottom:734.254720pt;}
.yaa{bottom:739.124667pt;}
.y15e{bottom:739.840000pt;}
.y42{bottom:741.920000pt;}
.y101{bottom:744.162560pt;}
.y150{bottom:744.994267pt;}
.y1bf{bottom:745.315840pt;}
.yed{bottom:746.403333pt;}
.yb3{bottom:746.909733pt;}
.y190{bottom:749.122560pt;}
.y65{bottom:750.400000pt;}
.y15f{bottom:750.560000pt;}
.y11{bottom:751.050240pt;}
.y41{bottom:759.520000pt;}
.y1be{bottom:762.111360pt;}
.y100{bottom:764.000000pt;}
.y18f{bottom:766.080000pt;}
.yec{bottom:767.293067pt;}
.yb2{bottom:767.799467pt;}
.y10{bottom:767.845760pt;}
.y15a{bottom:771.200000pt;}
.y64{bottom:772.000000pt;}
.y146{bottom:772.454293pt;}
.ye6{bottom:773.259867pt;}
.y40{bottom:777.120000pt;}
.y1bd{bottom:779.068800pt;}
.y15d{bottom:781.920000pt;}
.y1eb{bottom:784.821120pt;}
.y14d{bottom:786.773733pt;}
.y18e{bottom:787.842560pt;}
.yb1{bottom:788.689333pt;}
.yf{bottom:792.810880pt;}
.y3e{bottom:794.560000pt;}
.y1bc{bottom:795.864320pt;}
.yff{bottom:796.160000pt;}
.y110{bottom:800.967280pt;}
.y1ea{bottom:801.778560pt;}
.y63{bottom:804.160000pt;}
.y18d{bottom:804.800000pt;}
.y14c{bottom:807.663600pt;}
.y159{bottom:807.840000pt;}
.y76{bottom:808.908507pt;}
.ya9{bottom:809.008347pt;}
.yb0{bottom:809.579067pt;}
.ye{bottom:809.606400pt;}
.y3c{bottom:812.160000pt;}
.y1bb{bottom:812.659840pt;}
.y145{bottom:813.801333pt;}
.y10f{bottom:814.796080pt;}
.yeb{bottom:816.188133pt;}
.y118{bottom:824.386267pt;}
.y75{bottom:825.706747pt;}
.y18c{bottom:826.562560pt;}
.yd{bottom:826.563840pt;}
.y1e9{bottom:826.581760pt;}
.y158{bottom:828.640000pt;}
.y1ba{bottom:829.617280pt;}
.yaf{bottom:830.468800pt;}
.y7d{bottom:837.302267pt;}
.y10e{bottom:838.197840pt;}
.ya8{bottom:840.160667pt;}
.yd5{bottom:843.377920pt;}
.y18b{bottom:843.520000pt;}
.y1e8{bottom:843.539200pt;}
.y117{bottom:845.276000pt;}
.y74{bottom:845.495867pt;}
.y1b9{bottom:846.412800pt;}
.y3b{bottom:848.977920pt;}
.y157{bottom:849.280000pt;}
.yae{bottom:851.358533pt;}
.yc{bottom:851.367040pt;}
.y7c{bottom:858.192133pt;}
.y149{bottom:858.943733pt;}
.yd4{bottom:860.173440pt;}
.y1e7{bottom:860.334720pt;}
.y18a{bottom:865.287040pt;}
.y3a{bottom:865.773440pt;}
.y116{bottom:866.165733pt;}
.yb{bottom:868.162560pt;}
.y156{bottom:869.920000pt;}
.y1b8{bottom:871.377920pt;}
.yd3{bottom:877.130880pt;}
.y7b{bottom:879.081867pt;}
.y10c{bottom:879.502000pt;}
.y189{bottom:882.244480pt;}
.y39{bottom:882.568960pt;}
.ya{bottom:885.120000pt;}
.y1e6{bottom:886.256640pt;}
.y115{bottom:887.055600pt;}
.yad{bottom:887.649067pt;}
.y1b7{bottom:888.173440pt;}
.y155{bottom:890.560000pt;}
.y134{bottom:897.926400pt;}
.y188{bottom:899.040000pt;}
.y38{bottom:899.526400pt;}
.y7a{bottom:899.971733pt;}
.yd2{bottom:901.934080pt;}
.y1e5{bottom:903.052160pt;}
.y1b6{bottom:904.968960pt;}
.y114{bottom:907.945333pt;}
.y73{bottom:909.762267pt;}
.y9{bottom:910.400000pt;}
.y154{bottom:911.200000pt;}
.y133{bottom:914.883840pt;}
.yd1{bottom:918.891520pt;}
.y1e4{bottom:920.009600pt;}
.y79{bottom:920.861467pt;}
.y187{bottom:920.971520pt;}
.y1b5{bottom:921.926400pt;}
.y9a{bottom:922.891520pt;}
.y37{bottom:924.329600pt;}
.y8{bottom:928.800000pt;}
.y113{bottom:928.835067pt;}
.y10d{bottom:930.947280pt;}
.y153{bottom:931.840000pt;}
.yd0{bottom:935.687040pt;}
.y1e3{bottom:936.805120pt;}
.y186{bottom:937.767040pt;}
.y1b4{bottom:938.721920pt;}
.y99{bottom:939.687040pt;}
.y36{bottom:941.287040pt;}
.y78{bottom:941.751200pt;}
.y7{bottom:947.200000pt;}
.y152{bottom:952.640000pt;}
.ycf{bottom:952.644480pt;}
.y1e2{bottom:953.762560pt;}
.y185{bottom:954.724480pt;}
.y1b3{bottom:955.679360pt;}
.y98{bottom:956.644480pt;}
.y35{bottom:958.082560pt;}
.y6{bottom:965.600000pt;}
.y112{bottom:969.127360pt;}
.yce{bottom:969.440000pt;}
.y184{bottom:971.520000pt;}
.y97{bottom:973.440000pt;}
.y34{bottom:975.040000pt;}
.y1e1{bottom:979.522560pt;}
.y1b2{bottom:980.482560pt;}
.y5{bottom:986.240000pt;}
.y111{bottom:987.041600pt;}
.y77{bottom:989.166933pt;}
.y96{bottom:995.040000pt;}
.y33{bottom:996.320000pt;}
.y1e0{bottom:996.480000pt;}
.y183{bottom:997.440000pt;}
.y2{bottom:1015.040000pt;}
.y1{bottom:1029.440000pt;}
.h9{height:16.800000pt;}
.hb{height:16.960000pt;}
.ha{height:16.961333pt;}
.h19{height:30.560000pt;}
.h18{height:30.720000pt;}
.hd{height:30.778125pt;}
.h7{height:33.918750pt;}
.h10{height:38.610000pt;}
.he{height:40.365000pt;}
.h14{height:51.333750pt;}
.h8{height:52.134375pt;}
.h17{height:55.402500pt;}
.hf{height:57.621005pt;}
.h5{height:61.410000pt;}
.h2{height:62.812500pt;}
.h4{height:66.750000pt;}
.h13{height:68.960000pt;}
.h16{height:69.280000pt;}
.h6{height:71.432215pt;}
.hc{height:72.090000pt;}
.h3{height:111.472500pt;}
.h11{height:125.120000pt;}
.h15{height:130.720000pt;}
.h12{height:131.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:80.480000pt;}
.w7{width:88.000000pt;}
.w6{width:107.040000pt;}
.w5{width:109.920000pt;}
.w2{width:122.080000pt;}
.w3{width:169.440000pt;}
.w8{width:358.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:4.320000pt;}
.xa{left:6.880000pt;}
.x9{left:17.760000pt;}
.x7{left:24.320000pt;}
.x4d{left:104.320000pt;}
.x4c{left:108.640000pt;}
.x2{left:113.440000pt;}
.x5{left:137.212800pt;}
.x45{left:183.497733pt;}
.x4a{left:196.613467pt;}
.x39{left:198.329387pt;}
.x20{left:201.227333pt;}
.x40{left:205.091973pt;}
.x6{left:208.320000pt;}
.x17{left:223.069333pt;}
.x48{left:225.894400pt;}
.x2b{left:235.656800pt;}
.x27{left:237.253333pt;}
.x4{left:239.325440pt;}
.x1b{left:250.805467pt;}
.x33{left:253.237467pt;}
.x4b{left:254.560000pt;}
.x10{left:275.600000pt;}
.x31{left:276.900000pt;}
.xb{left:307.907067pt;}
.x1d{left:309.925333pt;}
.x3a{left:313.929867pt;}
.x13{left:315.483600pt;}
.x46{left:319.908267pt;}
.x8{left:331.200000pt;}
.x22{left:337.122400pt;}
.x34{left:343.469333pt;}
.x41{left:348.114800pt;}
.x49{left:350.590800pt;}
.x2c{left:353.724000pt;}
.x3f{left:360.137733pt;}
.x28{left:362.773733pt;}
.x38{left:363.767467pt;}
.x30{left:393.259360pt;}
.x1f{left:397.968693pt;}
.x3b{left:402.509227pt;}
.x26{left:409.868320pt;}
.xc{left:425.087387pt;}
.x2d{left:426.791520pt;}
.x23{left:431.683520pt;}
.xf{left:434.199387pt;}
.x2f{left:438.647840pt;}
.x47{left:439.682827pt;}
.x29{left:443.827653pt;}
.x37{left:448.193013pt;}
.x35{left:451.559093pt;}
.x18{left:456.926987pt;}
.x3e{left:468.158507pt;}
.x25{left:469.546560pt;}
.x32{left:471.599227pt;}
.x42{left:472.552560pt;}
.x16{left:474.471920pt;}
.xe{left:482.996827pt;}
.x36{left:483.933493pt;}
.x2e{left:485.365600pt;}
.x1a{left:493.053387pt;}
.x1e{left:494.866773pt;}
.x44{left:499.406160pt;}
.x15{left:503.994800pt;}
.x24{left:507.045120pt;}
.x19{left:508.179307pt;}
.x2a{left:510.699013pt;}
.xd{left:512.198107pt;}
.x3d{left:514.179467pt;}
.x43{left:517.072720pt;}
.x14{left:522.947760pt;}
.x3c{left:533.068107pt;}
.x1c{left:565.920000pt;}
.x21{left:572.073467pt;}
.x11{left:572.974933pt;}
.x3{left:645.440000pt;}
.x1{left:683.360000pt;}
.x12{left:685.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; }
  