
    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_5ff8fb8bfa2e4827368383bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_fdd128e958c82e6673b80eff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_452240704c5a8953cfea7c14.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953000;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_339fc7f684874c6fde4be1be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_10ea5416936c6800912df49e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.249000;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_57828bb6b5b3ba9e589cd140.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.134000;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_a7cb796c89082680bc899a43.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_678b1daf87e58766d51003e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fd47e5baf94750181aabd9b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014000;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;}
.m8{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.714000px;}
.ls7{letter-spacing:-1.218000px;}
.ls13{letter-spacing:-0.450000px;}
.ls14{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls8{letter-spacing:-0.192000px;}
.ls6{letter-spacing:-0.168000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.222000px;}
.ls3{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.315000px;}
.lsc{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.765000px;}
.lsd{letter-spacing:3.555000px;}
.ls11{letter-spacing:3.780000px;}
.lse{letter-spacing:10.752000px;}
.lsf{letter-spacing:10.794000px;}
.ls10{letter-spacing:40.912577px;}
.ls9{letter-spacing:40.913196px;}
.ls4{letter-spacing:63.424330px;}
.ls0{letter-spacing:2133.973469px;}
.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;}
}
.wsf9{word-spacing:-14.100000px;}
.wsaf{word-spacing:-12.015000px;}
.ws1{word-spacing:-12.000000px;}
.ws188{word-spacing:-11.790000px;}
.wsae{word-spacing:-11.565000px;}
.wsad{word-spacing:-11.250000px;}
.ws187{word-spacing:-10.800000px;}
.ws10f{word-spacing:-10.772400px;}
.ws142{word-spacing:-10.546800px;}
.ws1c{word-spacing:-10.500000px;}
.ws1d{word-spacing:-10.332000px;}
.ws1b5{word-spacing:-10.080000px;}
.ws131{word-spacing:-9.531600px;}
.ws1e{word-spacing:-9.282000px;}
.ws0{word-spacing:-8.658000px;}
.ws2{word-spacing:-8.400000px;}
.ws164{word-spacing:-8.347200px;}
.ws17e{word-spacing:-8.234400px;}
.ws40{word-spacing:-8.232000px;}
.ws118{word-spacing:-7.501200px;}
.ws166{word-spacing:-7.444800px;}
.ws1b{word-spacing:-6.576240px;}
.ws15c{word-spacing:-6.486000px;}
.ws13d{word-spacing:-6.147600px;}
.ws158{word-spacing:-5.865600px;}
.ws179{word-spacing:-5.414400px;}
.wsf8{word-spacing:-4.906800px;}
.ws106{word-spacing:-4.794000px;}
.ws16a{word-spacing:-4.681200px;}
.ws13f{word-spacing:-4.494000px;}
.ws133{word-spacing:-4.342800px;}
.wsf7{word-spacing:-4.173600px;}
.ws1bc{word-spacing:-4.140000px;}
.wsfd{word-spacing:-4.117200px;}
.ws175{word-spacing:-4.060800px;}
.ws16d{word-spacing:-3.666000px;}
.wsce{word-spacing:-3.555000px;}
.ws169{word-spacing:-3.327600px;}
.ws9b{word-spacing:-3.271200px;}
.ws1ab{word-spacing:-3.195000px;}
.ws7d{word-spacing:-3.045600px;}
.ws96{word-spacing:-2.932800px;}
.ws26{word-spacing:-2.876400px;}
.ws37{word-spacing:-2.820000px;}
.ws78{word-spacing:-2.763600px;}
.ws3b{word-spacing:-2.707200px;}
.wsac{word-spacing:-2.650800px;}
.wse9{word-spacing:-2.594400px;}
.ws1a{word-spacing:-2.538000px;}
.wsa4{word-spacing:-2.481600px;}
.ws88{word-spacing:-2.368800px;}
.ws100{word-spacing:-2.312400px;}
.ws21{word-spacing:-2.256000px;}
.ws47{word-spacing:-2.199600px;}
.ws4f{word-spacing:-2.143200px;}
.ws18{word-spacing:-2.086800px;}
.ws14{word-spacing:-1.974000px;}
.ws2b{word-spacing:-1.861200px;}
.ws7f{word-spacing:-1.804800px;}
.ws44{word-spacing:-1.748400px;}
.ws19{word-spacing:-1.692000px;}
.ws6c{word-spacing:-1.579200px;}
.ws34{word-spacing:-1.522800px;}
.ws63{word-spacing:-1.466400px;}
.ws4c{word-spacing:-1.410000px;}
.ws147{word-spacing:-1.353600px;}
.ws30{word-spacing:-1.297200px;}
.ws7a{word-spacing:-1.240800px;}
.wse2{word-spacing:-1.215000px;}
.ws4a{word-spacing:-1.184400px;}
.ws45{word-spacing:-1.128000px;}
.wse3{word-spacing:-1.125000px;}
.wsd9{word-spacing:-1.080000px;}
.ws5c{word-spacing:-1.071600px;}
.ws35{word-spacing:-1.015200px;}
.ws31{word-spacing:-0.902400px;}
.wsc5{word-spacing:-0.900000px;}
.wsa0{word-spacing:-0.789600px;}
.ws2f{word-spacing:-0.733200px;}
.ws1bf{word-spacing:-0.705600px;}
.ws38{word-spacing:-0.676800px;}
.ws74{word-spacing:-0.620400px;}
.ws1c1{word-spacing:-0.604800px;}
.ws61{word-spacing:-0.564000px;}
.ws60{word-spacing:-0.507600px;}
.ws80{word-spacing:-0.451200px;}
.wsbd{word-spacing:-0.450000px;}
.ws1f{word-spacing:-0.444000px;}
.ws8b{word-spacing:-0.394800px;}
.ws6f{word-spacing:-0.378000px;}
.ws9c{word-spacing:-0.338400px;}
.wsd4{word-spacing:-0.270000px;}
.ws91{word-spacing:-0.225600px;}
.ws140{word-spacing:-0.210000px;}
.ws75{word-spacing:-0.169200px;}
.ws3f{word-spacing:-0.168000px;}
.ws5f{word-spacing:-0.112800px;}
.ws42{word-spacing:-0.056400px;}
.ws3{word-spacing:0.000000px;}
.wsc8{word-spacing:0.045000px;}
.ws69{word-spacing:0.112800px;}
.ws3d{word-spacing:0.168000px;}
.wsaa{word-spacing:0.169200px;}
.ws159{word-spacing:0.192000px;}
.ws70{word-spacing:0.225600px;}
.ws17{word-spacing:0.282000px;}
.ws3a{word-spacing:0.338400px;}
.ws94{word-spacing:0.394800px;}
.ws1ae{word-spacing:0.450000px;}
.ws16{word-spacing:0.451200px;}
.ws9f{word-spacing:0.564000px;}
.ws6d{word-spacing:0.620400px;}
.wsd5{word-spacing:0.675000px;}
.ws90{word-spacing:0.733200px;}
.ws27{word-spacing:0.789600px;}
.ws33{word-spacing:0.846000px;}
.ws4b{word-spacing:0.902400px;}
.wsf{word-spacing:0.928800px;}
.ws50{word-spacing:0.958800px;}
.ws64{word-spacing:1.015200px;}
.ws13{word-spacing:1.071600px;}
.wsc4{word-spacing:1.080000px;}
.ws93{word-spacing:1.184400px;}
.ws41{word-spacing:1.297200px;}
.wsbc{word-spacing:1.350000px;}
.ws22{word-spacing:1.353600px;}
.ws73{word-spacing:1.410000px;}
.ws13e{word-spacing:1.428000px;}
.ws62{word-spacing:1.466400px;}
.wsc9{word-spacing:1.485000px;}
.ws7c{word-spacing:1.522800px;}
.ws49{word-spacing:1.579200px;}
.ws4e{word-spacing:1.635600px;}
.ws92{word-spacing:1.692000px;}
.ws4{word-spacing:1.702800px;}
.ws36{word-spacing:1.748400px;}
.ws11{word-spacing:1.754400px;}
.wsb8{word-spacing:1.800000px;}
.ws15{word-spacing:1.804800px;}
.ws2a{word-spacing:1.861200px;}
.ws32{word-spacing:1.917600px;}
.ws29{word-spacing:1.974000px;}
.ws7{word-spacing:2.012400px;}
.ws25{word-spacing:2.030400px;}
.ws6b{word-spacing:2.086800px;}
.ws7e{word-spacing:2.143200px;}
.ws18c{word-spacing:2.199600px;}
.wsb5{word-spacing:2.205000px;}
.wsa6{word-spacing:2.256000px;}
.ws8c{word-spacing:2.368800px;}
.ws8d{word-spacing:2.425200px;}
.ws2c{word-spacing:2.481600px;}
.ws68{word-spacing:2.538000px;}
.ws8{word-spacing:2.580000px;}
.ws77{word-spacing:2.594400px;}
.ws55{word-spacing:2.707200px;}
.ws43{word-spacing:2.820000px;}
.ws12{word-spacing:2.876400px;}
.ws5a{word-spacing:2.932800px;}
.ws67{word-spacing:2.989200px;}
.ws9{word-spacing:3.096000px;}
.ws15f{word-spacing:3.102000px;}
.ws20{word-spacing:3.158400px;}
.wse8{word-spacing:3.214800px;}
.wsdf{word-spacing:3.240000px;}
.ws54{word-spacing:3.271200px;}
.wsab{word-spacing:3.327600px;}
.wscb{word-spacing:3.375000px;}
.ws1a3{word-spacing:3.420000px;}
.ws8f{word-spacing:3.440400px;}
.ws8e{word-spacing:3.496800px;}
.ws76{word-spacing:3.553200px;}
.wscd{word-spacing:3.555000px;}
.ws24{word-spacing:3.609600px;}
.ws79{word-spacing:3.666000px;}
.ws66{word-spacing:3.722400px;}
.wsc7{word-spacing:3.825000px;}
.wsa9{word-spacing:3.835200px;}
.wsf5{word-spacing:3.948000px;}
.ws95{word-spacing:4.004400px;}
.ws83{word-spacing:4.060800px;}
.ws56{word-spacing:4.173600px;}
.ws1c0{word-spacing:4.183200px;}
.ws130{word-spacing:4.230000px;}
.wsb{word-spacing:4.282800px;}
.ws5b{word-spacing:4.286400px;}
.ws98{word-spacing:4.342800px;}
.wsf6{word-spacing:4.399200px;}
.ws51{word-spacing:4.512000px;}
.ws6{word-spacing:4.540800px;}
.ws5{word-spacing:4.592400px;}
.ws4d{word-spacing:4.624800px;}
.wsb4{word-spacing:4.680000px;}
.ws2e{word-spacing:4.737600px;}
.ws9e{word-spacing:4.794000px;}
.wsc{word-spacing:4.850400px;}
.wsc6{word-spacing:4.950000px;}
.ws10{word-spacing:4.953600px;}
.ws81{word-spacing:4.963200px;}
.ws71{word-spacing:5.076000px;}
.ws28{word-spacing:5.132400px;}
.ws5e{word-spacing:5.245200px;}
.wsa7{word-spacing:5.301600px;}
.wse{word-spacing:5.314800px;}
.wsa2{word-spacing:5.414400px;}
.ws117{word-spacing:5.583600px;}
.ws86{word-spacing:5.640000px;}
.ws23{word-spacing:5.696400px;}
.ws2d{word-spacing:5.809200px;}
.wsa{word-spacing:5.830800px;}
.ws181{word-spacing:5.865600px;}
.wsca{word-spacing:5.895000px;}
.ws151{word-spacing:5.922000px;}
.wsb9{word-spacing:5.940000px;}
.wsbf{word-spacing:6.030000px;}
.ws87{word-spacing:6.034800px;}
.ws89{word-spacing:6.147600px;}
.ws1af{word-spacing:6.165000px;}
.wsbe{word-spacing:6.210000px;}
.ws65{word-spacing:6.260400px;}
.wsa3{word-spacing:6.373200px;}
.ws16f{word-spacing:6.429600px;}
.ws199{word-spacing:6.480000px;}
.wsa1{word-spacing:6.598800px;}
.ws48{word-spacing:6.655200px;}
.wsf2{word-spacing:6.711600px;}
.ws6e{word-spacing:6.768000px;}
.ws46{word-spacing:6.824400px;}
.ws153{word-spacing:6.880800px;}
.ws99{word-spacing:6.937200px;}
.wse1{word-spacing:6.975000px;}
.ws6a{word-spacing:6.993600px;}
.wsa5{word-spacing:7.050000px;}
.wsba{word-spacing:7.065000px;}
.ws72{word-spacing:7.106400px;}
.ws144{word-spacing:7.162800px;}
.ws97{word-spacing:7.219200px;}
.wsb7{word-spacing:7.290000px;}
.ws116{word-spacing:7.332000px;}
.wsb6{word-spacing:7.380000px;}
.ws12a{word-spacing:7.388400px;}
.ws1ad{word-spacing:7.425000px;}
.ws7b{word-spacing:7.501200px;}
.wsbb{word-spacing:7.515000px;}
.wsd{word-spacing:7.533600px;}
.ws9a{word-spacing:7.557600px;}
.ws58{word-spacing:7.614000px;}
.wsb2{word-spacing:7.650000px;}
.wsf1{word-spacing:7.670400px;}
.ws9d{word-spacing:7.896000px;}
.ws104{word-spacing:7.952400px;}
.ws85{word-spacing:8.008800px;}
.ws15e{word-spacing:8.121600px;}
.wsb1{word-spacing:8.145000px;}
.ws82{word-spacing:8.234400px;}
.ws52{word-spacing:8.290800px;}
.ws8a{word-spacing:8.347200px;}
.ws172{word-spacing:8.403600px;}
.ws1a9{word-spacing:8.505000px;}
.ws110{word-spacing:8.572800px;}
.ws1ac{word-spacing:8.595000px;}
.ws18e{word-spacing:8.685600px;}
.ws39{word-spacing:8.742000px;}
.wseb{word-spacing:9.193200px;}
.wse7{word-spacing:9.306000px;}
.ws19f{word-spacing:9.360000px;}
.ws84{word-spacing:9.362400px;}
.wsb3{word-spacing:9.450000px;}
.wsef{word-spacing:9.475200px;}
.wsa8{word-spacing:9.588000px;}
.ws53{word-spacing:9.700800px;}
.ws146{word-spacing:9.757200px;}
.ws5d{word-spacing:9.813600px;}
.wse0{word-spacing:9.900000px;}
.ws171{word-spacing:10.208400px;}
.wscf{word-spacing:10.260000px;}
.wsf4{word-spacing:10.264800px;}
.ws185{word-spacing:10.321200px;}
.wse6{word-spacing:10.395000px;}
.ws1be{word-spacing:10.432800px;}
.ws10a{word-spacing:10.434000px;}
.ws1a7{word-spacing:10.485000px;}
.ws114{word-spacing:10.490400px;}
.ws1a8{word-spacing:10.575000px;}
.wsc3{word-spacing:10.665000px;}
.ws168{word-spacing:10.828800px;}
.ws10e{word-spacing:10.920000px;}
.ws1ba{word-spacing:10.935000px;}
.ws186{word-spacing:11.167200px;}
.ws18f{word-spacing:11.280000px;}
.ws184{word-spacing:11.336400px;}
.ws12f{word-spacing:11.392800px;}
.wsb0{word-spacing:11.565000px;}
.ws141{word-spacing:11.618400px;}
.ws152{word-spacing:11.900400px;}
.wse4{word-spacing:12.240000px;}
.ws165{word-spacing:12.520800px;}
.wse5{word-spacing:12.555000px;}
.ws57{word-spacing:12.972000px;}
.ws14e{word-spacing:13.084800px;}
.ws17a{word-spacing:13.254000px;}
.ws192{word-spacing:13.705200px;}
.ws15d{word-spacing:13.761600px;}
.ws195{word-spacing:13.815000px;}
.ws59{word-spacing:13.818000px;}
.ws15b{word-spacing:14.100000px;}
.ws108{word-spacing:14.212800px;}
.ws161{word-spacing:14.325600px;}
.ws177{word-spacing:14.551200px;}
.wsff{word-spacing:14.607600px;}
.ws111{word-spacing:14.664000px;}
.ws12c{word-spacing:14.889600px;}
.ws157{word-spacing:15.002400px;}
.wsdc{word-spacing:15.030000px;}
.ws170{word-spacing:15.058800px;}
.ws14c{word-spacing:15.115200px;}
.ws174{word-spacing:15.171600px;}
.wsdd{word-spacing:15.525000px;}
.wscc{word-spacing:15.660000px;}
.ws14d{word-spacing:15.735600px;}
.ws18d{word-spacing:15.792000px;}
.ws1a0{word-spacing:15.795000px;}
.wsea{word-spacing:15.904800px;}
.ws1bd{word-spacing:15.930000px;}
.wsde{word-spacing:15.975000px;}
.ws149{word-spacing:16.017600px;}
.wsda{word-spacing:16.290000px;}
.ws17b{word-spacing:16.468800px;}
.ws1a1{word-spacing:16.470000px;}
.wsfe{word-spacing:16.525200px;}
.wsec{word-spacing:16.638000px;}
.wsdb{word-spacing:16.740000px;}
.ws11b{word-spacing:16.807200px;}
.ws162{word-spacing:16.920000px;}
.wsc2{word-spacing:16.965000px;}
.ws113{word-spacing:17.145600px;}
.ws12b{word-spacing:17.484000px;}
.ws105{word-spacing:17.540400px;}
.ws126{word-spacing:17.709600px;}
.ws154{word-spacing:17.935200px;}
.ws1b6{word-spacing:18.090000px;}
.ws18a{word-spacing:18.386400px;}
.ws148{word-spacing:18.612000px;}
.ws173{word-spacing:18.668400px;}
.ws16e{word-spacing:18.724800px;}
.wsed{word-spacing:18.950400px;}
.ws101{word-spacing:19.006800px;}
.ws136{word-spacing:19.119600px;}
.ws1b9{word-spacing:19.170000px;}
.ws176{word-spacing:19.458000px;}
.ws183{word-spacing:19.909200px;}
.ws1bb{word-spacing:19.935000px;}
.wsc1{word-spacing:20.160000px;}
.ws122{word-spacing:20.529600px;}
.wsc0{word-spacing:20.565000px;}
.ws16c{word-spacing:20.586000px;}
.ws10b{word-spacing:20.642400px;}
.ws11f{word-spacing:20.755200px;}
.wsd3{word-spacing:20.970000px;}
.ws145{word-spacing:20.980800px;}
.ws17f{word-spacing:21.262800px;}
.wsd2{word-spacing:21.420000px;}
.ws143{word-spacing:21.432000px;}
.ws167{word-spacing:21.601200px;}
.wsd8{word-spacing:22.185000px;}
.ws13c{word-spacing:22.221600px;}
.ws1a5{word-spacing:22.410000px;}
.ws180{word-spacing:22.503600px;}
.ws112{word-spacing:22.785600px;}
.ws14a{word-spacing:23.067600px;}
.ws17c{word-spacing:23.349600px;}
.ws125{word-spacing:24.139200px;}
.ws13b{word-spacing:24.252000px;}
.wsd0{word-spacing:24.615000px;}
.ws10c{word-spacing:24.759600px;}
.wsd1{word-spacing:25.065000px;}
.ws139{word-spacing:25.210800px;}
.wsf0{word-spacing:26.169600px;}
.ws127{word-spacing:26.451600px;}
.ws1aa{word-spacing:26.460000px;}
.ws11e{word-spacing:26.677200px;}
.ws196{word-spacing:26.685000px;}
.ws194{word-spacing:26.775000px;}
.ws155{word-spacing:26.790000px;}
.ws19b{word-spacing:26.865000px;}
.ws138{word-spacing:27.523200px;}
.ws120{word-spacing:28.030800px;}
.ws17d{word-spacing:28.143600px;}
.ws160{word-spacing:28.256400px;}
.ws14b{word-spacing:28.369200px;}
.ws123{word-spacing:28.707600px;}
.wsf3{word-spacing:28.820400px;}
.ws132{word-spacing:28.876800px;}
.ws18b{word-spacing:30.174000px;}
.ws12d{word-spacing:30.850800px;}
.wsfc{word-spacing:30.907200px;}
.ws191{word-spacing:31.132800px;}
.ws1a4{word-spacing:31.590000px;}
.ws135{word-spacing:31.866000px;}
.ws115{word-spacing:33.219600px;}
.ws12e{word-spacing:34.291200px;}
.ws163{word-spacing:35.137200px;}
.wsee{word-spacing:35.532000px;}
.ws107{word-spacing:36.039600px;}
.ws19d{word-spacing:36.630000px;}
.ws1a6{word-spacing:37.035000px;}
.ws14f{word-spacing:37.054800px;}
.ws11d{word-spacing:37.618800px;}
.ws137{word-spacing:37.731600px;}
.ws150{word-spacing:38.239200px;}
.ws121{word-spacing:38.352000px;}
.ws190{word-spacing:38.464800px;}
.ws134{word-spacing:39.367200px;}
.ws182{word-spacing:39.480000px;}
.ws178{word-spacing:39.536400px;}
.ws103{word-spacing:39.762000px;}
.ws10d{word-spacing:41.341200px;}
.ws11a{word-spacing:43.202400px;}
.wsd6{word-spacing:43.605000px;}
.wsd7{word-spacing:44.055000px;}
.ws198{word-spacing:44.550000px;}
.ws16b{word-spacing:45.966000px;}
.ws1b0{word-spacing:47.250000px;}
.ws102{word-spacing:50.308800px;}
.ws124{word-spacing:50.985600px;}
.ws1a2{word-spacing:52.200000px;}
.ws19e{word-spacing:53.190000px;}
.ws19c{word-spacing:53.640000px;}
.ws11c{word-spacing:54.538800px;}
.ws13a{word-spacing:55.892400px;}
.ws156{word-spacing:56.005200px;}
.ws193{word-spacing:56.569200px;}
.ws109{word-spacing:61.194000px;}
.ws1b8{word-spacing:61.830000px;}
.ws3c{word-spacing:63.168000px;}
.ws129{word-spacing:63.393600px;}
.ws3e{word-spacing:63.588000px;}
.ws197{word-spacing:68.715000px;}
.ws1b7{word-spacing:70.200000px;}
.ws19a{word-spacing:70.875000px;}
.ws1b2{word-spacing:71.325000px;}
.ws119{word-spacing:72.868800px;}
.wsfb{word-spacing:74.278800px;}
.ws1b1{word-spacing:81.990000px;}
.ws1b3{word-spacing:87.480000px;}
.ws1b4{word-spacing:233.730000px;}
.wsfa{word-spacing:1002.241200px;}
.ws189{word-spacing:1002.330000px;}
.ws15a{word-spacing:1002.774000px;}
.ws128{word-spacing:1002.951600px;}
._15{margin-left:-1002.262286px;}
._16{margin-left:-24.092880px;}
._14{margin-left:-22.729200px;}
._21{margin-left:-19.501920px;}
._18{margin-left:-17.563560px;}
._9{margin-left:-7.967520px;}
._5{margin-left:-6.829440px;}
._8{margin-left:-5.824320px;}
._7{margin-left:-4.742640px;}
._4{margin-left:-3.689400px;}
._6{margin-left:-2.599440px;}
._3{margin-left:-1.461360px;}
._1{width:1.091520px;}
._0{width:2.477520px;}
._2{width:4.080000px;}
._1d{width:5.192640px;}
._17{width:7.410960px;}
._13{width:9.578340px;}
._20{width:14.679000px;}
._1f{width:15.999840px;}
._19{width:19.555080px;}
._f{width:30.762000px;}
._1a{width:35.104500px;}
._e{width:36.333000px;}
._10{width:39.597010px;}
._c{width:41.059670px;}
._1c{width:46.064940px;}
._1b{width:47.285280px;}
._12{width:56.233560px;}
._11{width:57.409440px;}
._1e{width:61.939687px;}
._b{width:63.419753px;}
._a{width:1046.774449px;}
._d{width:1047.795673px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.881200px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fs9{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fs5{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:65.368050px;}
.y4c{bottom:104.171550px;}
.y97{bottom:104.171850px;}
.y130{bottom:104.173200px;}
.y4d{bottom:104.173350px;}
.y1b4{bottom:104.175600px;}
.y20{bottom:104.197350px;}
.yce{bottom:104.266800px;}
.y177{bottom:118.271550px;}
.y96{bottom:118.273350px;}
.y4a{bottom:121.673250px;}
.y4b{bottom:121.675050px;}
.y1b3{bottom:124.423200px;}
.y1f{bottom:124.444950px;}
.y1b2{bottom:124.466400px;}
.ycd{bottom:124.514400px;}
.y18f{bottom:135.771750px;}
.y176{bottom:135.773250px;}
.y95{bottom:135.775050px;}
.y49{bottom:139.174950px;}
.y15d{bottom:139.175250px;}
.yae{bottom:139.176750px;}
.y12f{bottom:144.675000px;}
.y1c0{bottom:144.690000px;}
.y1e{bottom:144.692550px;}
.y1b1{bottom:144.714000px;}
.ycc{bottom:144.762000px;}
.y18e{bottom:153.275250px;}
.y15c{bottom:153.276750px;}
.y48{bottom:156.676800px;}
.y71{bottom:156.678450px;}
.y12e{bottom:164.923200px;}
.y1bf{bottom:164.937600px;}
.y1d{bottom:164.940150px;}
.y1b0{bottom:164.961600px;}
.ycb{bottom:165.009600px;}
.y18d{bottom:167.376750px;}
.y1ef{bottom:169.405500px;}
.y15b{bottom:170.778450px;}
.y1d7{bottom:170.879250px;}
.y47{bottom:174.178500px;}
.y70{bottom:174.180300px;}
.y18c{bottom:181.476750px;}
.y1ee{bottom:183.631950px;}
.y1d6{bottom:185.133000px;}
.y12d{bottom:185.173200px;}
.y94{bottom:185.182800px;}
.y144{bottom:185.185200px;}
.y1c{bottom:185.187750px;}
.y1af{bottom:185.209200px;}
.yca{bottom:185.257200px;}
.y15a{bottom:188.280150px;}
.y46{bottom:191.682000px;}
.y1ed{bottom:202.138200px;}
.y1d5{bottom:203.639250px;}
.y175{bottom:205.423200px;}
.y19d{bottom:205.428000px;}
.y93{bottom:205.430400px;}
.y143{bottom:205.432800px;}
.y1b{bottom:205.435350px;}
.y1ae{bottom:205.456800px;}
.y174{bottom:205.461600px;}
.yc9{bottom:205.504800px;}
.y159{bottom:205.782000px;}
.y1ec{bottom:216.391950px;}
.y1d4{bottom:222.145500px;}
.y158{bottom:223.283700px;}
.y12c{bottom:225.673200px;}
.y19c{bottom:225.675600px;}
.y92{bottom:225.678000px;}
.yad{bottom:225.680400px;}
.y1a{bottom:225.682950px;}
.y18b{bottom:225.697200px;}
.y1ad{bottom:225.704400px;}
.y173{bottom:225.709200px;}
.yc8{bottom:225.752400px;}
.y1eb{bottom:230.645700px;}
.y1d3{bottom:236.399250px;}
.y157{bottom:240.785400px;}
.y1ea{bottom:244.899450px;}
.y19b{bottom:245.923200px;}
.y91{bottom:245.925600px;}
.y45{bottom:245.928000px;}
.y6f{bottom:245.930400px;}
.y19{bottom:245.930550px;}
.y19a{bottom:245.932800px;}
.y18a{bottom:245.944800px;}
.y1ac{bottom:245.952000px;}
.y172{bottom:245.956800px;}
.yc7{bottom:246.000000px;}
.y1d2{bottom:254.905500px;}
.y1e9{bottom:263.405700px;}
.y44{bottom:266.175600px;}
.y6e{bottom:266.178000px;}
.y18{bottom:266.178150px;}
.y199{bottom:266.180400px;}
.y189{bottom:266.192400px;}
.y1ab{bottom:266.199600px;}
.y171{bottom:266.204400px;}
.y90{bottom:266.240400px;}
.yc6{bottom:266.247600px;}
.y1d1{bottom:269.155500px;}
.y1e8{bottom:277.659450px;}
.y1d0{bottom:283.405500px;}
.y43{bottom:286.423200px;}
.y6d{bottom:286.425600px;}
.y17{bottom:286.425750px;}
.y156{bottom:286.428000px;}
.yac{bottom:286.430400px;}
.y188{bottom:286.440000px;}
.y142{bottom:286.442400px;}
.y1aa{bottom:286.447200px;}
.y170{bottom:286.452000px;}
.y1be{bottom:286.461600px;}
.y8f{bottom:286.488000px;}
.yc5{bottom:286.495200px;}
.yfd{bottom:292.853250px;}
.y12a{bottom:292.891950px;}
.y12b{bottom:292.895700px;}
.y1e7{bottom:296.135100px;}
.y1cf{bottom:297.655500px;}
.y16{bottom:306.673350px;}
.y155{bottom:306.675600px;}
.y42{bottom:306.678000px;}
.y6c{bottom:306.685200px;}
.y187{bottom:306.687600px;}
.y141{bottom:306.690000px;}
.y1a9{bottom:306.694800px;}
.y16f{bottom:306.699600px;}
.yd6{bottom:306.702000px;}
.y1bd{bottom:306.709200px;}
.y8e{bottom:306.735600px;}
.yc4{bottom:306.742800px;}
.yfc{bottom:307.107000px;}
.y129{bottom:307.145700px;}
.y1e6{bottom:310.388850px;}
.y1ce{bottom:311.862150px;}
.yfb{bottom:321.360750px;}
.y1e5{bottom:324.642600px;}
.y128{bottom:325.640100px;}
.y154{bottom:326.923200px;}
.y41{bottom:326.925600px;}
.y153{bottom:326.930400px;}
.y6b{bottom:326.932800px;}
.y186{bottom:326.935200px;}
.y140{bottom:326.937600px;}
.y1a8{bottom:326.942400px;}
.y16e{bottom:326.947200px;}
.yd5{bottom:326.949600px;}
.y1bc{bottom:326.956800px;}
.y8d{bottom:326.983200px;}
.yc3{bottom:326.990400px;}
.y1cd{bottom:330.368400px;}
.yfa{bottom:335.614500px;}
.y1e4{bottom:338.896350px;}
.y127{bottom:339.893850px;}
.y1cc{bottom:344.622150px;}
.yab{bottom:347.173200px;}
.y152{bottom:347.178000px;}
.y40{bottom:347.180400px;}
.y185{bottom:347.182800px;}
.y13f{bottom:347.185200px;}
.y1a7{bottom:347.190000px;}
.y16d{bottom:347.194800px;}
.yd4{bottom:347.197200px;}
.y1bb{bottom:347.204400px;}
.y8c{bottom:347.230800px;}
.yc2{bottom:347.238000px;}
.y1e3{bottom:353.150100px;}
.yf9{bottom:354.120750px;}
.y125{bottom:354.128250px;}
.y126{bottom:354.147600px;}
.y1cb{bottom:358.875900px;}
.y1e2{bottom:367.403850px;}
.y198{bottom:367.423200px;}
.y15{bottom:367.423350px;}
.y151{bottom:367.425600px;}
.y3f{bottom:367.428000px;}
.y184{bottom:367.430400px;}
.y13e{bottom:367.432800px;}
.y1a6{bottom:367.437600px;}
.y197{bottom:367.440000px;}
.y16c{bottom:367.442400px;}
.yd3{bottom:367.444800px;}
.y1ba{bottom:367.452000px;}
.y8b{bottom:367.478400px;}
.yc1{bottom:367.485600px;}
.yf8{bottom:368.374500px;}
.y124{bottom:368.382000px;}
.y1ca{bottom:377.382150px;}
.y1e1{bottom:381.657600px;}
.yf7{bottom:382.628250px;}
.y123{bottom:386.888250px;}
.y14{bottom:387.628350px;}
.y150{bottom:387.673200px;}
.y3e{bottom:387.675600px;}
.y183{bottom:387.678000px;}
.y20b{bottom:387.678600px;}
.y13d{bottom:387.680400px;}
.y1a5{bottom:387.685200px;}
.y196{bottom:387.687600px;}
.y16b{bottom:387.690000px;}
.yd2{bottom:387.692400px;}
.y1b9{bottom:387.699600px;}
.y8a{bottom:387.726000px;}
.yc0{bottom:387.733200px;}
.y1c9{bottom:391.635900px;}
.y1e0{bottom:395.911350px;}
.yf6{bottom:396.882000px;}
.y122{bottom:401.142000px;}
.y1c8{bottom:405.889650px;}
.y13{bottom:407.881350px;}
.y3d{bottom:407.923200px;}
.y182{bottom:407.925600px;}
.y20a{bottom:407.926800px;}
.y6a{bottom:407.928000px;}
.yaa{bottom:407.930400px;}
.y1a4{bottom:407.932800px;}
.y195{bottom:407.935200px;}
.y16a{bottom:407.937600px;}
.yd1{bottom:407.940000px;}
.y1b8{bottom:407.947200px;}
.y89{bottom:407.973600px;}
.ybf{bottom:407.980800px;}
.y1df{bottom:414.363000px;}
.yf5{bottom:415.388250px;}
.y121{bottom:415.395750px;}
.y1c7{bottom:420.143400px;}
.y12{bottom:428.134350px;}
.y209{bottom:428.175000px;}
.y69{bottom:428.175600px;}
.ya9{bottom:428.178000px;}
.y3c{bottom:428.180400px;}
.y194{bottom:428.182800px;}
.y169{bottom:428.185200px;}
.yd0{bottom:428.187600px;}
.y181{bottom:428.194800px;}
.y88{bottom:428.221200px;}
.ybe{bottom:428.228400px;}
.y1de{bottom:428.616750px;}
.yf4{bottom:429.642000px;}
.y120{bottom:429.649500px;}
.y1c6{bottom:438.649650px;}
.y1dd{bottom:442.870500px;}
.yf3{bottom:443.895750px;}
.y11f{bottom:448.147800px;}
.y11{bottom:448.387350px;}
.y68{bottom:448.423200px;}
.y67{bottom:448.425600px;}
.y3b{bottom:448.428000px;}
.y193{bottom:448.430400px;}
.y168{bottom:448.432800px;}
.ycf{bottom:448.435200px;}
.y180{bottom:448.442400px;}
.y87{bottom:448.468800px;}
.ybd{bottom:448.476000px;}
.y1c5{bottom:452.903400px;}
.y1dc{bottom:457.124250px;}
.yf2{bottom:458.149500px;}
.y11d{bottom:462.397800px;}
.y11e{bottom:462.401550px;}
.y10{bottom:468.640350px;}
.y66{bottom:468.673200px;}
.y3a{bottom:468.675600px;}
.y192{bottom:468.678000px;}
.y167{bottom:468.680400px;}
.ya8{bottom:468.682800px;}
.y65{bottom:468.687600px;}
.y17f{bottom:468.690000px;}
.y13c{bottom:468.704400px;}
.y86{bottom:468.716400px;}
.ybc{bottom:468.723600px;}
.y1db{bottom:471.378000px;}
.y1c4{bottom:471.409650px;}
.yf1{bottom:472.383600px;}
.y11c{bottom:476.651550px;}
.y1da{bottom:485.631750px;}
.y1c3{bottom:485.663400px;}
.yf{bottom:488.893350px;}
.y1a3{bottom:488.923200px;}
.y14f{bottom:488.925600px;}
.y39{bottom:488.928000px;}
.ya7{bottom:488.930400px;}
.y64{bottom:488.935200px;}
.y17e{bottom:488.937600px;}
.y13b{bottom:488.952000px;}
.y85{bottom:488.964000px;}
.ybb{bottom:488.971200px;}
.yf0{bottom:490.889850px;}
.y11b{bottom:495.145950px;}
.y1c2{bottom:499.913400px;}
.y1d9{bottom:504.138000px;}
.yef{bottom:505.143600px;}
.ye{bottom:509.146350px;}
.y191{bottom:509.173200px;}
.y38{bottom:509.175600px;}
.ya6{bottom:509.178000px;}
.y63{bottom:509.182800px;}
.y17d{bottom:509.185200px;}
.y14e{bottom:509.187600px;}
.y13a{bottom:509.199600px;}
.y84{bottom:509.211600px;}
.yba{bottom:509.218800px;}
.y11a{bottom:509.399700px;}
.y1d8{bottom:518.391750px;}
.y1c1{bottom:518.415300px;}
.yee{bottom:523.649850px;}
.y119{bottom:523.653450px;}
.yd{bottom:529.399350px;}
.y37{bottom:529.423200px;}
.ya5{bottom:529.425600px;}
.y62{bottom:529.430400px;}
.y17c{bottom:529.432800px;}
.y14d{bottom:529.435200px;}
.y139{bottom:529.447200px;}
.y83{bottom:529.459200px;}
.yb9{bottom:529.466400px;}
.yed{bottom:537.903600px;}
.y118{bottom:542.148000px;}
.yc{bottom:549.652350px;}
.ya4{bottom:549.673200px;}
.y61{bottom:549.678000px;}
.y17b{bottom:549.680400px;}
.y14c{bottom:549.682800px;}
.y166{bottom:549.685200px;}
.y35{bottom:549.687600px;}
.y138{bottom:549.694800px;}
.y82{bottom:549.706800px;}
.yb8{bottom:549.714000px;}
.y36{bottom:554.368500px;}
.yec{bottom:556.386750px;}
.y117{bottom:556.401750px;}
.yb{bottom:569.905350px;}
.y208{bottom:569.923200px;}
.y60{bottom:569.925600px;}
.y17a{bottom:569.928000px;}
.y14b{bottom:569.930400px;}
.y165{bottom:569.932800px;}
.y34{bottom:569.935200px;}
.y1a2{bottom:569.937600px;}
.y137{bottom:569.942400px;}
.ya3{bottom:569.944800px;}
.y81{bottom:569.954400px;}
.yb7{bottom:569.961600px;}
.yeb{bottom:570.640500px;}
.y115{bottom:570.651750px;}
.y116{bottom:570.655500px;}
.yea{bottom:584.894250px;}
.y113{bottom:584.901750px;}
.y114{bottom:584.905500px;}
.ya{bottom:590.158350px;}
.y179{bottom:590.175600px;}
.y5f{bottom:590.178000px;}
.y164{bottom:590.180400px;}
.y33{bottom:590.182800px;}
.y1a1{bottom:590.185200px;}
.y136{bottom:590.190000px;}
.ya2{bottom:590.192400px;}
.y80{bottom:590.202000px;}
.yb6{bottom:590.209200px;}
.y111{bottom:599.147400px;}
.ye9{bottom:599.148000px;}
.y112{bottom:599.155500px;}
.y9{bottom:610.411350px;}
.y178{bottom:610.423200px;}
.y5e{bottom:610.425600px;}
.y163{bottom:610.428000px;}
.y32{bottom:610.430400px;}
.y1a0{bottom:610.432800px;}
.y135{bottom:610.437600px;}
.ya1{bottom:610.440000px;}
.y7f{bottom:610.449600px;}
.yb5{bottom:610.456800px;}
.ye8{bottom:613.401750px;}
.y110{bottom:617.653650px;}
.ye7{bottom:627.655500px;}
.y8{bottom:630.664350px;}
.y5d{bottom:630.673200px;}
.y5c{bottom:630.675600px;}
.y31{bottom:630.678000px;}
.y19f{bottom:630.680400px;}
.y134{bottom:630.685200px;}
.ya0{bottom:630.687600px;}
.y7e{bottom:630.697200px;}
.yb4{bottom:630.704400px;}
.y10f{bottom:631.907400px;}
.ye6{bottom:646.110900px;}
.y10d{bottom:646.145700px;}
.y10e{bottom:646.157400px;}
.y7{bottom:650.917350px;}
.y5b{bottom:650.923200px;}
.y30{bottom:650.925600px;}
.y19e{bottom:650.928000px;}
.y14a{bottom:650.930400px;}
.y133{bottom:650.932800px;}
.y9f{bottom:650.935200px;}
.y7d{bottom:650.944800px;}
.yb3{bottom:650.952000px;}
.ye5{bottom:660.364650px;}
.y10c{bottom:664.651950px;}
.y6{bottom:671.170350px;}
.y5a{bottom:671.173200px;}
.y59{bottom:671.175600px;}
.y149{bottom:671.178000px;}
.y132{bottom:671.180400px;}
.y9e{bottom:671.182800px;}
.y1b7{bottom:671.185200px;}
.y162{bottom:671.187600px;}
.y2f{bottom:671.190000px;}
.y7c{bottom:671.192400px;}
.yb2{bottom:671.199600px;}
.ye4{bottom:674.618400px;}
.y10b{bottom:678.905700px;}
.y58{bottom:691.423200px;}
.y5{bottom:691.423350px;}
.y57{bottom:691.425600px;}
.y131{bottom:691.428000px;}
.y9d{bottom:691.430400px;}
.y1b6{bottom:691.432800px;}
.y161{bottom:691.435200px;}
.y2e{bottom:691.437600px;}
.y7b{bottom:691.440000px;}
.yb1{bottom:691.447200px;}
.ye3{bottom:693.124650px;}
.y109{bottom:693.155700px;}
.y10a{bottom:693.159450px;}
.y1fc{bottom:705.289650px;}
.ye2{bottom:707.378400px;}
.y107{bottom:707.393850px;}
.y108{bottom:707.409450px;}
.y56{bottom:711.673200px;}
.y55{bottom:711.675600px;}
.y9c{bottom:711.678000px;}
.y148{bottom:711.680400px;}
.y160{bottom:711.682800px;}
.y2d{bottom:711.685200px;}
.y7a{bottom:711.687600px;}
.yb0{bottom:711.694800px;}
.y1fb{bottom:719.543400px;}
.ye1{bottom:721.632150px;}
.y106{bottom:725.900100px;}
.y54{bottom:731.923200px;}
.y4{bottom:731.923350px;}
.y9b{bottom:731.925600px;}
.y147{bottom:731.928000px;}
.y15f{bottom:731.930400px;}
.y2c{bottom:731.932800px;}
.y79{bottom:731.935200px;}
.yaf{bottom:731.942400px;}
.ye0{bottom:735.885900px;}
.y1fa{bottom:738.049650px;}
.y207{bottom:738.361050px;}
.y105{bottom:740.153850px;}
.y53{bottom:752.175600px;}
.y15e{bottom:752.178000px;}
.y2b{bottom:752.180400px;}
.y78{bottom:752.182800px;}
.y9a{bottom:752.190000px;}
.y1f9{bottom:752.303400px;}
.ydf{bottom:754.392150px;}
.y104{bottom:754.407600px;}
.y206{bottom:756.803400px;}
.y1f8{bottom:766.557150px;}
.yde{bottom:768.645900px;}
.y102{bottom:768.657600px;}
.y103{bottom:768.661350px;}
.y205{bottom:771.057150px;}
.y1b5{bottom:772.423200px;}
.y146{bottom:772.425600px;}
.y2a{bottom:772.428000px;}
.y77{bottom:772.430400px;}
.y52{bottom:772.435200px;}
.y99{bottom:772.437600px;}
.y101{bottom:782.911350px;}
.y1f7{bottom:785.063400px;}
.ydd{bottom:787.152150px;}
.y204{bottom:789.563400px;}
.y145{bottom:792.673200px;}
.y29{bottom:792.675600px;}
.y76{bottom:792.678000px;}
.y51{bottom:792.682800px;}
.y98{bottom:792.685200px;}
.y1f6{bottom:799.313400px;}
.ydc{bottom:801.405900px;}
.y203{bottom:803.817150px;}
.y28{bottom:812.923200px;}
.y75{bottom:812.925600px;}
.y190{bottom:812.928000px;}
.y50{bottom:812.930400px;}
.y27{bottom:812.932800px;}
.y1f5{bottom:813.563400px;}
.ydb{bottom:815.659650px;}
.y202{bottom:818.070900px;}
.y1f4{bottom:827.805450px;}
.y100{bottom:829.860750px;}
.yd9{bottom:829.905300px;}
.yda{bottom:829.913400px;}
.y201{bottom:832.324650px;}
.y74{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y73{bottom:833.175600px;}
.y4f{bottom:833.178000px;}
.y26{bottom:833.180400px;}
.y1f3{bottom:846.311700px;}
.yff{bottom:848.367000px;}
.yd8{bottom:848.411550px;}
.y200{bottom:850.830900px;}
.y72{bottom:853.423200px;}
.y4e{bottom:853.425600px;}
.y25{bottom:853.428000px;}
.y1f2{bottom:860.565450px;}
.yfe{bottom:862.620750px;}
.yd7{bottom:862.665300px;}
.y1ff{bottom:865.084650px;}
.y24{bottom:873.675600px;}
.y1f1{bottom:879.063600px;}
.y1fe{bottom:879.338400px;}
.y1f0{bottom:893.317350px;}
.y1fd{bottom:893.592150px;}
.y23{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y22{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.ha{height:29.724605px;}
.h1c{height:30.410156px;}
.h22{height:34.942800px;}
.h2{height:35.830800px;}
.he{height:36.770508px;}
.h28{height:37.094400px;}
.h23{height:38.114063px;}
.hd{height:38.346000px;}
.h24{height:38.352000px;}
.h10{height:38.352600px;}
.hf{height:38.353200px;}
.h25{height:38.359200px;}
.h1b{height:39.396973px;}
.h8{height:40.537200px;}
.h1e{height:40.672800px;}
.h1a{height:41.085000px;}
.h6{height:41.641200px;}
.h26{height:42.023438px;}
.h14{height:43.824000px;}
.h27{height:44.160000px;}
.h3{height:44.247600px;}
.h1d{height:45.561600px;}
.h29{height:46.015200px;}
.h5{height:47.220000px;}
.h7{height:47.883600px;}
.h13{height:48.237005px;}
.h18{height:48.342605px;}
.h19{height:48.390605px;}
.h15{height:48.419405px;}
.h9{height:48.438605px;}
.h12{height:48.457805px;}
.h16{height:48.467405px;}
.hc{height:48.477005px;}
.hb{height:48.486605px;}
.h11{height:48.496205px;}
.h17{height:48.505805px;}
.h21{height:51.493200px;}
.h1f{height:55.875600px;}
.h20{height:75.072000px;}
.h4{height:80.274000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x4f{left:85.060950px;}
.x1b{left:89.285212px;}
.x1e{left:91.972800px;}
.x3{left:93.543300px;}
.x13{left:99.921270px;}
.x67{left:105.221400px;}
.x2{left:106.299150px;}
.x68{left:108.746400px;}
.x6{left:111.450450px;}
.x7{left:114.325650px;}
.x19{left:122.814600px;}
.x1a{left:125.940300px;}
.x18{left:127.427550px;}
.x10{left:129.541050px;}
.x55{left:133.495500px;}
.x52{left:141.087000px;}
.x8{left:142.341000px;}
.x9{left:145.216200px;}
.x17{left:149.807850px;}
.x14{left:159.563400px;}
.x15{left:162.438600px;}
.x5{left:172.956600px;}
.x66{left:175.585800px;}
.x65{left:178.869300px;}
.x63{left:183.383850px;}
.x64{left:186.908850px;}
.xa{left:191.577900px;}
.x6d{left:193.895250px;}
.x4c{left:195.481050px;}
.x4d{left:213.235200px;}
.x1c{left:216.770700px;}
.x1d{left:225.510300px;}
.x21{left:230.362650px;}
.x6b{left:250.184700px;}
.x6c{left:253.709700px;}
.x50{left:256.428750px;}
.x56{left:258.619200px;}
.x51{left:259.953750px;}
.x57{left:262.144200px;}
.x1f{left:266.599500px;}
.x20{left:269.725200px;}
.x69{left:293.465100px;}
.x6a{left:296.990100px;}
.x61{left:314.392500px;}
.x62{left:317.917500px;}
.x23{left:359.293050px;}
.x26{left:366.163350px;}
.x22{left:372.047850px;}
.x34{left:375.199650px;}
.x2d{left:377.371650px;}
.x3d{left:379.888050px;}
.x2e{left:381.117900px;}
.x3e{left:383.013750px;}
.x41{left:391.152150px;}
.x49{left:394.954650px;}
.x42{left:396.145350px;}
.x4a{left:398.479650px;}
.x5a{left:399.776400px;}
.x5b{left:403.301400px;}
.x45{left:412.849200px;}
.x4e{left:417.050400px;}
.x4b{left:421.382550px;}
.x4{left:424.287300px;}
.x46{left:427.544250px;}
.x5c{left:431.171850px;}
.x5d{left:434.696850px;}
.x37{left:435.787950px;}
.x38{left:440.781300px;}
.x58{left:445.255200px;}
.x27{left:446.522700px;}
.x11{left:448.160550px;}
.x28{left:451.515900px;}
.x35{left:453.203250px;}
.x12{left:454.532400px;}
.x36{left:456.328950px;}
.x24{left:465.097800px;}
.x25{left:476.297400px;}
.x2f{left:480.652650px;}
.x53{left:484.047300px;}
.x54{left:487.572300px;}
.x30{left:499.231050px;}
.x31{left:502.356750px;}
.x29{left:503.974800px;}
.x59{left:505.229700px;}
.x2a{left:508.968150px;}
.x43{left:531.119550px;}
.x44{left:534.245250px;}
.x3f{left:538.535700px;}
.x40{left:541.661250px;}
.x2b{left:547.855950px;}
.x2c{left:552.849300px;}
.xc{left:558.720750px;}
.xd{left:563.425800px;}
.x47{left:567.488700px;}
.x39{left:568.958550px;}
.x48{left:570.821250px;}
.x3a{left:572.084250px;}
.xe{left:576.456600px;}
.x32{left:581.425200px;}
.x33{left:584.550750px;}
.xb{left:587.450400px;}
.x5e{left:591.494100px;}
.x3c{left:594.056850px;}
.x16{left:598.453800px;}
.xf{left:601.507650px;}
.x3b{left:620.046150px;}
.x5f{left:621.514350px;}
.x60{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.634667pt;}
.ls7{letter-spacing:-1.082667pt;}
.ls13{letter-spacing:-0.400000pt;}
.ls14{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls8{letter-spacing:-0.170667pt;}
.ls6{letter-spacing:-0.149333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.197333pt;}
.ls3{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.280000pt;}
.lsc{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.680000pt;}
.lsd{letter-spacing:3.160000pt;}
.ls11{letter-spacing:3.360000pt;}
.lse{letter-spacing:9.557333pt;}
.lsf{letter-spacing:9.594667pt;}
.ls10{letter-spacing:36.366735pt;}
.ls9{letter-spacing:36.367285pt;}
.ls4{letter-spacing:56.377182pt;}
.ls0{letter-spacing:1896.865306pt;}
.wsf9{word-spacing:-12.533333pt;}
.wsaf{word-spacing:-10.680000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws188{word-spacing:-10.480000pt;}
.wsae{word-spacing:-10.280000pt;}
.wsad{word-spacing:-10.000000pt;}
.ws187{word-spacing:-9.600000pt;}
.ws10f{word-spacing:-9.575467pt;}
.ws142{word-spacing:-9.374933pt;}
.ws1c{word-spacing:-9.333333pt;}
.ws1d{word-spacing:-9.184000pt;}
.ws1b5{word-spacing:-8.960000pt;}
.ws131{word-spacing:-8.472533pt;}
.ws1e{word-spacing:-8.250667pt;}
.ws0{word-spacing:-7.696000pt;}
.ws2{word-spacing:-7.466667pt;}
.ws164{word-spacing:-7.419733pt;}
.ws17e{word-spacing:-7.319467pt;}
.ws40{word-spacing:-7.317333pt;}
.ws118{word-spacing:-6.667733pt;}
.ws166{word-spacing:-6.617600pt;}
.ws1b{word-spacing:-5.845547pt;}
.ws15c{word-spacing:-5.765333pt;}
.ws13d{word-spacing:-5.464533pt;}
.ws158{word-spacing:-5.213867pt;}
.ws179{word-spacing:-4.812800pt;}
.wsf8{word-spacing:-4.361600pt;}
.ws106{word-spacing:-4.261333pt;}
.ws16a{word-spacing:-4.161067pt;}
.ws13f{word-spacing:-3.994667pt;}
.ws133{word-spacing:-3.860267pt;}
.wsf7{word-spacing:-3.709867pt;}
.ws1bc{word-spacing:-3.680000pt;}
.wsfd{word-spacing:-3.659733pt;}
.ws175{word-spacing:-3.609600pt;}
.ws16d{word-spacing:-3.258667pt;}
.wsce{word-spacing:-3.160000pt;}
.ws169{word-spacing:-2.957867pt;}
.ws9b{word-spacing:-2.907733pt;}
.ws1ab{word-spacing:-2.840000pt;}
.ws7d{word-spacing:-2.707200pt;}
.ws96{word-spacing:-2.606933pt;}
.ws26{word-spacing:-2.556800pt;}
.ws37{word-spacing:-2.506667pt;}
.ws78{word-spacing:-2.456533pt;}
.ws3b{word-spacing:-2.406400pt;}
.wsac{word-spacing:-2.356267pt;}
.wse9{word-spacing:-2.306133pt;}
.ws1a{word-spacing:-2.256000pt;}
.wsa4{word-spacing:-2.205867pt;}
.ws88{word-spacing:-2.105600pt;}
.ws100{word-spacing:-2.055467pt;}
.ws21{word-spacing:-2.005333pt;}
.ws47{word-spacing:-1.955200pt;}
.ws4f{word-spacing:-1.905067pt;}
.ws18{word-spacing:-1.854933pt;}
.ws14{word-spacing:-1.754667pt;}
.ws2b{word-spacing:-1.654400pt;}
.ws7f{word-spacing:-1.604267pt;}
.ws44{word-spacing:-1.554133pt;}
.ws19{word-spacing:-1.504000pt;}
.ws6c{word-spacing:-1.403733pt;}
.ws34{word-spacing:-1.353600pt;}
.ws63{word-spacing:-1.303467pt;}
.ws4c{word-spacing:-1.253333pt;}
.ws147{word-spacing:-1.203200pt;}
.ws30{word-spacing:-1.153067pt;}
.ws7a{word-spacing:-1.102933pt;}
.wse2{word-spacing:-1.080000pt;}
.ws4a{word-spacing:-1.052800pt;}
.ws45{word-spacing:-1.002667pt;}
.wse3{word-spacing:-1.000000pt;}
.wsd9{word-spacing:-0.960000pt;}
.ws5c{word-spacing:-0.952533pt;}
.ws35{word-spacing:-0.902400pt;}
.ws31{word-spacing:-0.802133pt;}
.wsc5{word-spacing:-0.800000pt;}
.wsa0{word-spacing:-0.701867pt;}
.ws2f{word-spacing:-0.651733pt;}
.ws1bf{word-spacing:-0.627200pt;}
.ws38{word-spacing:-0.601600pt;}
.ws74{word-spacing:-0.551467pt;}
.ws1c1{word-spacing:-0.537600pt;}
.ws61{word-spacing:-0.501333pt;}
.ws60{word-spacing:-0.451200pt;}
.ws80{word-spacing:-0.401067pt;}
.wsbd{word-spacing:-0.400000pt;}
.ws1f{word-spacing:-0.394667pt;}
.ws8b{word-spacing:-0.350933pt;}
.ws6f{word-spacing:-0.336000pt;}
.ws9c{word-spacing:-0.300800pt;}
.wsd4{word-spacing:-0.240000pt;}
.ws91{word-spacing:-0.200533pt;}
.ws140{word-spacing:-0.186667pt;}
.ws75{word-spacing:-0.150400pt;}
.ws3f{word-spacing:-0.149333pt;}
.ws5f{word-spacing:-0.100267pt;}
.ws42{word-spacing:-0.050133pt;}
.ws3{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.040000pt;}
.ws69{word-spacing:0.100267pt;}
.ws3d{word-spacing:0.149333pt;}
.wsaa{word-spacing:0.150400pt;}
.ws159{word-spacing:0.170667pt;}
.ws70{word-spacing:0.200533pt;}
.ws17{word-spacing:0.250667pt;}
.ws3a{word-spacing:0.300800pt;}
.ws94{word-spacing:0.350933pt;}
.ws1ae{word-spacing:0.400000pt;}
.ws16{word-spacing:0.401067pt;}
.ws9f{word-spacing:0.501333pt;}
.ws6d{word-spacing:0.551467pt;}
.wsd5{word-spacing:0.600000pt;}
.ws90{word-spacing:0.651733pt;}
.ws27{word-spacing:0.701867pt;}
.ws33{word-spacing:0.752000pt;}
.ws4b{word-spacing:0.802133pt;}
.wsf{word-spacing:0.825600pt;}
.ws50{word-spacing:0.852267pt;}
.ws64{word-spacing:0.902400pt;}
.ws13{word-spacing:0.952533pt;}
.wsc4{word-spacing:0.960000pt;}
.ws93{word-spacing:1.052800pt;}
.ws41{word-spacing:1.153067pt;}
.wsbc{word-spacing:1.200000pt;}
.ws22{word-spacing:1.203200pt;}
.ws73{word-spacing:1.253333pt;}
.ws13e{word-spacing:1.269333pt;}
.ws62{word-spacing:1.303467pt;}
.wsc9{word-spacing:1.320000pt;}
.ws7c{word-spacing:1.353600pt;}
.ws49{word-spacing:1.403733pt;}
.ws4e{word-spacing:1.453867pt;}
.ws92{word-spacing:1.504000pt;}
.ws4{word-spacing:1.513600pt;}
.ws36{word-spacing:1.554133pt;}
.ws11{word-spacing:1.559467pt;}
.wsb8{word-spacing:1.600000pt;}
.ws15{word-spacing:1.604267pt;}
.ws2a{word-spacing:1.654400pt;}
.ws32{word-spacing:1.704533pt;}
.ws29{word-spacing:1.754667pt;}
.ws7{word-spacing:1.788800pt;}
.ws25{word-spacing:1.804800pt;}
.ws6b{word-spacing:1.854933pt;}
.ws7e{word-spacing:1.905067pt;}
.ws18c{word-spacing:1.955200pt;}
.wsb5{word-spacing:1.960000pt;}
.wsa6{word-spacing:2.005333pt;}
.ws8c{word-spacing:2.105600pt;}
.ws8d{word-spacing:2.155733pt;}
.ws2c{word-spacing:2.205867pt;}
.ws68{word-spacing:2.256000pt;}
.ws8{word-spacing:2.293333pt;}
.ws77{word-spacing:2.306133pt;}
.ws55{word-spacing:2.406400pt;}
.ws43{word-spacing:2.506667pt;}
.ws12{word-spacing:2.556800pt;}
.ws5a{word-spacing:2.606933pt;}
.ws67{word-spacing:2.657067pt;}
.ws9{word-spacing:2.752000pt;}
.ws15f{word-spacing:2.757333pt;}
.ws20{word-spacing:2.807467pt;}
.wse8{word-spacing:2.857600pt;}
.wsdf{word-spacing:2.880000pt;}
.ws54{word-spacing:2.907733pt;}
.wsab{word-spacing:2.957867pt;}
.wscb{word-spacing:3.000000pt;}
.ws1a3{word-spacing:3.040000pt;}
.ws8f{word-spacing:3.058133pt;}
.ws8e{word-spacing:3.108267pt;}
.ws76{word-spacing:3.158400pt;}
.wscd{word-spacing:3.160000pt;}
.ws24{word-spacing:3.208533pt;}
.ws79{word-spacing:3.258667pt;}
.ws66{word-spacing:3.308800pt;}
.wsc7{word-spacing:3.400000pt;}
.wsa9{word-spacing:3.409067pt;}
.wsf5{word-spacing:3.509333pt;}
.ws95{word-spacing:3.559467pt;}
.ws83{word-spacing:3.609600pt;}
.ws56{word-spacing:3.709867pt;}
.ws1c0{word-spacing:3.718400pt;}
.ws130{word-spacing:3.760000pt;}
.wsb{word-spacing:3.806933pt;}
.ws5b{word-spacing:3.810133pt;}
.ws98{word-spacing:3.860267pt;}
.wsf6{word-spacing:3.910400pt;}
.ws51{word-spacing:4.010667pt;}
.ws6{word-spacing:4.036267pt;}
.ws5{word-spacing:4.082133pt;}
.ws4d{word-spacing:4.110933pt;}
.wsb4{word-spacing:4.160000pt;}
.ws2e{word-spacing:4.211200pt;}
.ws9e{word-spacing:4.261333pt;}
.wsc{word-spacing:4.311467pt;}
.wsc6{word-spacing:4.400000pt;}
.ws10{word-spacing:4.403200pt;}
.ws81{word-spacing:4.411733pt;}
.ws71{word-spacing:4.512000pt;}
.ws28{word-spacing:4.562133pt;}
.ws5e{word-spacing:4.662400pt;}
.wsa7{word-spacing:4.712533pt;}
.wse{word-spacing:4.724267pt;}
.wsa2{word-spacing:4.812800pt;}
.ws117{word-spacing:4.963200pt;}
.ws86{word-spacing:5.013333pt;}
.ws23{word-spacing:5.063467pt;}
.ws2d{word-spacing:5.163733pt;}
.wsa{word-spacing:5.182933pt;}
.ws181{word-spacing:5.213867pt;}
.wsca{word-spacing:5.240000pt;}
.ws151{word-spacing:5.264000pt;}
.wsb9{word-spacing:5.280000pt;}
.wsbf{word-spacing:5.360000pt;}
.ws87{word-spacing:5.364267pt;}
.ws89{word-spacing:5.464533pt;}
.ws1af{word-spacing:5.480000pt;}
.wsbe{word-spacing:5.520000pt;}
.ws65{word-spacing:5.564800pt;}
.wsa3{word-spacing:5.665067pt;}
.ws16f{word-spacing:5.715200pt;}
.ws199{word-spacing:5.760000pt;}
.wsa1{word-spacing:5.865600pt;}
.ws48{word-spacing:5.915733pt;}
.wsf2{word-spacing:5.965867pt;}
.ws6e{word-spacing:6.016000pt;}
.ws46{word-spacing:6.066133pt;}
.ws153{word-spacing:6.116267pt;}
.ws99{word-spacing:6.166400pt;}
.wse1{word-spacing:6.200000pt;}
.ws6a{word-spacing:6.216533pt;}
.wsa5{word-spacing:6.266667pt;}
.wsba{word-spacing:6.280000pt;}
.ws72{word-spacing:6.316800pt;}
.ws144{word-spacing:6.366933pt;}
.ws97{word-spacing:6.417067pt;}
.wsb7{word-spacing:6.480000pt;}
.ws116{word-spacing:6.517333pt;}
.wsb6{word-spacing:6.560000pt;}
.ws12a{word-spacing:6.567467pt;}
.ws1ad{word-spacing:6.600000pt;}
.ws7b{word-spacing:6.667733pt;}
.wsbb{word-spacing:6.680000pt;}
.wsd{word-spacing:6.696533pt;}
.ws9a{word-spacing:6.717867pt;}
.ws58{word-spacing:6.768000pt;}
.wsb2{word-spacing:6.800000pt;}
.wsf1{word-spacing:6.818133pt;}
.ws9d{word-spacing:7.018667pt;}
.ws104{word-spacing:7.068800pt;}
.ws85{word-spacing:7.118933pt;}
.ws15e{word-spacing:7.219200pt;}
.wsb1{word-spacing:7.240000pt;}
.ws82{word-spacing:7.319467pt;}
.ws52{word-spacing:7.369600pt;}
.ws8a{word-spacing:7.419733pt;}
.ws172{word-spacing:7.469867pt;}
.ws1a9{word-spacing:7.560000pt;}
.ws110{word-spacing:7.620267pt;}
.ws1ac{word-spacing:7.640000pt;}
.ws18e{word-spacing:7.720533pt;}
.ws39{word-spacing:7.770667pt;}
.wseb{word-spacing:8.171733pt;}
.wse7{word-spacing:8.272000pt;}
.ws19f{word-spacing:8.320000pt;}
.ws84{word-spacing:8.322133pt;}
.wsb3{word-spacing:8.400000pt;}
.wsef{word-spacing:8.422400pt;}
.wsa8{word-spacing:8.522667pt;}
.ws53{word-spacing:8.622933pt;}
.ws146{word-spacing:8.673067pt;}
.ws5d{word-spacing:8.723200pt;}
.wse0{word-spacing:8.800000pt;}
.ws171{word-spacing:9.074133pt;}
.wscf{word-spacing:9.120000pt;}
.wsf4{word-spacing:9.124267pt;}
.ws185{word-spacing:9.174400pt;}
.wse6{word-spacing:9.240000pt;}
.ws1be{word-spacing:9.273600pt;}
.ws10a{word-spacing:9.274667pt;}
.ws1a7{word-spacing:9.320000pt;}
.ws114{word-spacing:9.324800pt;}
.ws1a8{word-spacing:9.400000pt;}
.wsc3{word-spacing:9.480000pt;}
.ws168{word-spacing:9.625600pt;}
.ws10e{word-spacing:9.706667pt;}
.ws1ba{word-spacing:9.720000pt;}
.ws186{word-spacing:9.926400pt;}
.ws18f{word-spacing:10.026667pt;}
.ws184{word-spacing:10.076800pt;}
.ws12f{word-spacing:10.126933pt;}
.wsb0{word-spacing:10.280000pt;}
.ws141{word-spacing:10.327467pt;}
.ws152{word-spacing:10.578133pt;}
.wse4{word-spacing:10.880000pt;}
.ws165{word-spacing:11.129600pt;}
.wse5{word-spacing:11.160000pt;}
.ws57{word-spacing:11.530667pt;}
.ws14e{word-spacing:11.630933pt;}
.ws17a{word-spacing:11.781333pt;}
.ws192{word-spacing:12.182400pt;}
.ws15d{word-spacing:12.232533pt;}
.ws195{word-spacing:12.280000pt;}
.ws59{word-spacing:12.282667pt;}
.ws15b{word-spacing:12.533333pt;}
.ws108{word-spacing:12.633600pt;}
.ws161{word-spacing:12.733867pt;}
.ws177{word-spacing:12.934400pt;}
.wsff{word-spacing:12.984533pt;}
.ws111{word-spacing:13.034667pt;}
.ws12c{word-spacing:13.235200pt;}
.ws157{word-spacing:13.335467pt;}
.wsdc{word-spacing:13.360000pt;}
.ws170{word-spacing:13.385600pt;}
.ws14c{word-spacing:13.435733pt;}
.ws174{word-spacing:13.485867pt;}
.wsdd{word-spacing:13.800000pt;}
.wscc{word-spacing:13.920000pt;}
.ws14d{word-spacing:13.987200pt;}
.ws18d{word-spacing:14.037333pt;}
.ws1a0{word-spacing:14.040000pt;}
.wsea{word-spacing:14.137600pt;}
.ws1bd{word-spacing:14.160000pt;}
.wsde{word-spacing:14.200000pt;}
.ws149{word-spacing:14.237867pt;}
.wsda{word-spacing:14.480000pt;}
.ws17b{word-spacing:14.638933pt;}
.ws1a1{word-spacing:14.640000pt;}
.wsfe{word-spacing:14.689067pt;}
.wsec{word-spacing:14.789333pt;}
.wsdb{word-spacing:14.880000pt;}
.ws11b{word-spacing:14.939733pt;}
.ws162{word-spacing:15.040000pt;}
.wsc2{word-spacing:15.080000pt;}
.ws113{word-spacing:15.240533pt;}
.ws12b{word-spacing:15.541333pt;}
.ws105{word-spacing:15.591467pt;}
.ws126{word-spacing:15.741867pt;}
.ws154{word-spacing:15.942400pt;}
.ws1b6{word-spacing:16.080000pt;}
.ws18a{word-spacing:16.343467pt;}
.ws148{word-spacing:16.544000pt;}
.ws173{word-spacing:16.594133pt;}
.ws16e{word-spacing:16.644267pt;}
.wsed{word-spacing:16.844800pt;}
.ws101{word-spacing:16.894933pt;}
.ws136{word-spacing:16.995200pt;}
.ws1b9{word-spacing:17.040000pt;}
.ws176{word-spacing:17.296000pt;}
.ws183{word-spacing:17.697067pt;}
.ws1bb{word-spacing:17.720000pt;}
.wsc1{word-spacing:17.920000pt;}
.ws122{word-spacing:18.248533pt;}
.wsc0{word-spacing:18.280000pt;}
.ws16c{word-spacing:18.298667pt;}
.ws10b{word-spacing:18.348800pt;}
.ws11f{word-spacing:18.449067pt;}
.wsd3{word-spacing:18.640000pt;}
.ws145{word-spacing:18.649600pt;}
.ws17f{word-spacing:18.900267pt;}
.wsd2{word-spacing:19.040000pt;}
.ws143{word-spacing:19.050667pt;}
.ws167{word-spacing:19.201067pt;}
.wsd8{word-spacing:19.720000pt;}
.ws13c{word-spacing:19.752533pt;}
.ws1a5{word-spacing:19.920000pt;}
.ws180{word-spacing:20.003200pt;}
.ws112{word-spacing:20.253867pt;}
.ws14a{word-spacing:20.504533pt;}
.ws17c{word-spacing:20.755200pt;}
.ws125{word-spacing:21.457067pt;}
.ws13b{word-spacing:21.557333pt;}
.wsd0{word-spacing:21.880000pt;}
.ws10c{word-spacing:22.008533pt;}
.wsd1{word-spacing:22.280000pt;}
.ws139{word-spacing:22.409600pt;}
.wsf0{word-spacing:23.261867pt;}
.ws127{word-spacing:23.512533pt;}
.ws1aa{word-spacing:23.520000pt;}
.ws11e{word-spacing:23.713067pt;}
.ws196{word-spacing:23.720000pt;}
.ws194{word-spacing:23.800000pt;}
.ws155{word-spacing:23.813333pt;}
.ws19b{word-spacing:23.880000pt;}
.ws138{word-spacing:24.465067pt;}
.ws120{word-spacing:24.916267pt;}
.ws17d{word-spacing:25.016533pt;}
.ws160{word-spacing:25.116800pt;}
.ws14b{word-spacing:25.217067pt;}
.ws123{word-spacing:25.517867pt;}
.wsf3{word-spacing:25.618133pt;}
.ws132{word-spacing:25.668267pt;}
.ws18b{word-spacing:26.821333pt;}
.ws12d{word-spacing:27.422933pt;}
.wsfc{word-spacing:27.473067pt;}
.ws191{word-spacing:27.673600pt;}
.ws1a4{word-spacing:28.080000pt;}
.ws135{word-spacing:28.325333pt;}
.ws115{word-spacing:29.528533pt;}
.ws12e{word-spacing:30.481067pt;}
.ws163{word-spacing:31.233067pt;}
.wsee{word-spacing:31.584000pt;}
.ws107{word-spacing:32.035200pt;}
.ws19d{word-spacing:32.560000pt;}
.ws1a6{word-spacing:32.920000pt;}
.ws14f{word-spacing:32.937600pt;}
.ws11d{word-spacing:33.438933pt;}
.ws137{word-spacing:33.539200pt;}
.ws150{word-spacing:33.990400pt;}
.ws121{word-spacing:34.090667pt;}
.ws190{word-spacing:34.190933pt;}
.ws134{word-spacing:34.993067pt;}
.ws182{word-spacing:35.093333pt;}
.ws178{word-spacing:35.143467pt;}
.ws103{word-spacing:35.344000pt;}
.ws10d{word-spacing:36.747733pt;}
.ws11a{word-spacing:38.402133pt;}
.wsd6{word-spacing:38.760000pt;}
.wsd7{word-spacing:39.160000pt;}
.ws198{word-spacing:39.600000pt;}
.ws16b{word-spacing:40.858667pt;}
.ws1b0{word-spacing:42.000000pt;}
.ws102{word-spacing:44.718933pt;}
.ws124{word-spacing:45.320533pt;}
.ws1a2{word-spacing:46.400000pt;}
.ws19e{word-spacing:47.280000pt;}
.ws19c{word-spacing:47.680000pt;}
.ws11c{word-spacing:48.478933pt;}
.ws13a{word-spacing:49.682133pt;}
.ws156{word-spacing:49.782400pt;}
.ws193{word-spacing:50.283733pt;}
.ws109{word-spacing:54.394667pt;}
.ws1b8{word-spacing:54.960000pt;}
.ws3c{word-spacing:56.149333pt;}
.ws129{word-spacing:56.349867pt;}
.ws3e{word-spacing:56.522667pt;}
.ws197{word-spacing:61.080000pt;}
.ws1b7{word-spacing:62.400000pt;}
.ws19a{word-spacing:63.000000pt;}
.ws1b2{word-spacing:63.400000pt;}
.ws119{word-spacing:64.772267pt;}
.wsfb{word-spacing:66.025600pt;}
.ws1b1{word-spacing:72.880000pt;}
.ws1b3{word-spacing:77.760000pt;}
.ws1b4{word-spacing:207.760000pt;}
.wsfa{word-spacing:890.881067pt;}
.ws189{word-spacing:890.960000pt;}
.ws15a{word-spacing:891.354667pt;}
.ws128{word-spacing:891.512533pt;}
._15{margin-left:-890.899810pt;}
._16{margin-left:-21.415893pt;}
._14{margin-left:-20.203733pt;}
._21{margin-left:-17.335040pt;}
._18{margin-left:-15.612053pt;}
._9{margin-left:-7.082240pt;}
._5{margin-left:-6.070613pt;}
._8{margin-left:-5.177173pt;}
._7{margin-left:-4.215680pt;}
._4{margin-left:-3.279467pt;}
._6{margin-left:-2.310613pt;}
._3{margin-left:-1.298987pt;}
._1{width:0.970240pt;}
._0{width:2.202240pt;}
._2{width:3.626667pt;}
._1d{width:4.615680pt;}
._17{width:6.587520pt;}
._13{width:8.514080pt;}
._20{width:13.048000pt;}
._1f{width:14.222080pt;}
._19{width:17.382293pt;}
._f{width:27.344000pt;}
._1a{width:31.204000pt;}
._e{width:32.296000pt;}
._10{width:35.197342pt;}
._c{width:36.497485pt;}
._1c{width:40.946613pt;}
._1b{width:42.031360pt;}
._12{width:49.985387pt;}
._11{width:51.030613pt;}
._1e{width:55.057500pt;}
._b{width:56.373113pt;}
._a{width:930.466177pt;}
._d{width:931.373932pt;}
.fs7{font-size:29.227733pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fs9{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fs5{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:58.104933pt;}
.y4c{bottom:92.596933pt;}
.y97{bottom:92.597200pt;}
.y130{bottom:92.598400pt;}
.y4d{bottom:92.598533pt;}
.y1b4{bottom:92.600533pt;}
.y20{bottom:92.619867pt;}
.yce{bottom:92.681600pt;}
.y177{bottom:105.130267pt;}
.y96{bottom:105.131867pt;}
.y4a{bottom:108.154000pt;}
.y4b{bottom:108.155600pt;}
.y1b3{bottom:110.598400pt;}
.y1f{bottom:110.617733pt;}
.y1b2{bottom:110.636800pt;}
.ycd{bottom:110.679467pt;}
.y18f{bottom:120.686000pt;}
.y176{bottom:120.687333pt;}
.y95{bottom:120.688933pt;}
.y49{bottom:123.711067pt;}
.y15d{bottom:123.711333pt;}
.yae{bottom:123.712667pt;}
.y12f{bottom:128.600000pt;}
.y1c0{bottom:128.613333pt;}
.y1e{bottom:128.615600pt;}
.y1b1{bottom:128.634667pt;}
.ycc{bottom:128.677333pt;}
.y18e{bottom:136.244667pt;}
.y15c{bottom:136.246000pt;}
.y48{bottom:139.268267pt;}
.y71{bottom:139.269733pt;}
.y12e{bottom:146.598400pt;}
.y1bf{bottom:146.611200pt;}
.y1d{bottom:146.613467pt;}
.y1b0{bottom:146.632533pt;}
.ycb{bottom:146.675200pt;}
.y18d{bottom:148.779333pt;}
.y1ef{bottom:150.582667pt;}
.y15b{bottom:151.803067pt;}
.y1d7{bottom:151.892667pt;}
.y47{bottom:154.825333pt;}
.y70{bottom:154.826933pt;}
.y18c{bottom:161.312667pt;}
.y1ee{bottom:163.228400pt;}
.y1d6{bottom:164.562667pt;}
.y12d{bottom:164.598400pt;}
.y94{bottom:164.606933pt;}
.y144{bottom:164.609067pt;}
.y1c{bottom:164.611333pt;}
.y1af{bottom:164.630400pt;}
.yca{bottom:164.673067pt;}
.y15a{bottom:167.360133pt;}
.y46{bottom:170.384000pt;}
.y1ed{bottom:179.678400pt;}
.y1d5{bottom:181.012667pt;}
.y175{bottom:182.598400pt;}
.y19d{bottom:182.602667pt;}
.y93{bottom:182.604800pt;}
.y143{bottom:182.606933pt;}
.y1b{bottom:182.609200pt;}
.y1ae{bottom:182.628267pt;}
.y174{bottom:182.632533pt;}
.yc9{bottom:182.670933pt;}
.y159{bottom:182.917333pt;}
.y1ec{bottom:192.348400pt;}
.y1d4{bottom:197.462667pt;}
.y158{bottom:198.474400pt;}
.y12c{bottom:200.598400pt;}
.y19c{bottom:200.600533pt;}
.y92{bottom:200.602667pt;}
.yad{bottom:200.604800pt;}
.y1a{bottom:200.607067pt;}
.y18b{bottom:200.619733pt;}
.y1ad{bottom:200.626133pt;}
.y173{bottom:200.630400pt;}
.yc8{bottom:200.668800pt;}
.y1eb{bottom:205.018400pt;}
.y1d3{bottom:210.132667pt;}
.y157{bottom:214.031467pt;}
.y1ea{bottom:217.688400pt;}
.y19b{bottom:218.598400pt;}
.y91{bottom:218.600533pt;}
.y45{bottom:218.602667pt;}
.y6f{bottom:218.604800pt;}
.y19{bottom:218.604933pt;}
.y19a{bottom:218.606933pt;}
.y18a{bottom:218.617600pt;}
.y1ac{bottom:218.624000pt;}
.y172{bottom:218.628267pt;}
.yc7{bottom:218.666667pt;}
.y1d2{bottom:226.582667pt;}
.y1e9{bottom:234.138400pt;}
.y44{bottom:236.600533pt;}
.y6e{bottom:236.602667pt;}
.y18{bottom:236.602800pt;}
.y199{bottom:236.604800pt;}
.y189{bottom:236.615467pt;}
.y1ab{bottom:236.621867pt;}
.y171{bottom:236.626133pt;}
.y90{bottom:236.658133pt;}
.yc6{bottom:236.664533pt;}
.y1d1{bottom:239.249333pt;}
.y1e8{bottom:246.808400pt;}
.y1d0{bottom:251.916000pt;}
.y43{bottom:254.598400pt;}
.y6d{bottom:254.600533pt;}
.y17{bottom:254.600667pt;}
.y156{bottom:254.602667pt;}
.yac{bottom:254.604800pt;}
.y188{bottom:254.613333pt;}
.y142{bottom:254.615467pt;}
.y1aa{bottom:254.619733pt;}
.y170{bottom:254.624000pt;}
.y1be{bottom:254.632533pt;}
.y8f{bottom:254.656000pt;}
.yc5{bottom:254.662400pt;}
.yfd{bottom:260.314000pt;}
.y12a{bottom:260.348400pt;}
.y12b{bottom:260.351733pt;}
.y1e7{bottom:263.231200pt;}
.y1cf{bottom:264.582667pt;}
.y16{bottom:272.598533pt;}
.y155{bottom:272.600533pt;}
.y42{bottom:272.602667pt;}
.y6c{bottom:272.609067pt;}
.y187{bottom:272.611200pt;}
.y141{bottom:272.613333pt;}
.y1a9{bottom:272.617600pt;}
.y16f{bottom:272.621867pt;}
.yd6{bottom:272.624000pt;}
.y1bd{bottom:272.630400pt;}
.y8e{bottom:272.653867pt;}
.yc4{bottom:272.660267pt;}
.yfc{bottom:272.984000pt;}
.y129{bottom:273.018400pt;}
.y1e6{bottom:275.901200pt;}
.y1ce{bottom:277.210800pt;}
.yfb{bottom:285.654000pt;}
.y1e5{bottom:288.571200pt;}
.y128{bottom:289.457867pt;}
.y154{bottom:290.598400pt;}
.y41{bottom:290.600533pt;}
.y153{bottom:290.604800pt;}
.y6b{bottom:290.606933pt;}
.y186{bottom:290.609067pt;}
.y140{bottom:290.611200pt;}
.y1a8{bottom:290.615467pt;}
.y16e{bottom:290.619733pt;}
.yd5{bottom:290.621867pt;}
.y1bc{bottom:290.628267pt;}
.y8d{bottom:290.651733pt;}
.yc3{bottom:290.658133pt;}
.y1cd{bottom:293.660800pt;}
.yfa{bottom:298.324000pt;}
.y1e4{bottom:301.241200pt;}
.y127{bottom:302.127867pt;}
.y1cc{bottom:306.330800pt;}
.yab{bottom:308.598400pt;}
.y152{bottom:308.602667pt;}
.y40{bottom:308.604800pt;}
.y185{bottom:308.606933pt;}
.y13f{bottom:308.609067pt;}
.y1a7{bottom:308.613333pt;}
.y16d{bottom:308.617600pt;}
.yd4{bottom:308.619733pt;}
.y1bb{bottom:308.626133pt;}
.y8c{bottom:308.649600pt;}
.yc2{bottom:308.656000pt;}
.y1e3{bottom:313.911200pt;}
.yf9{bottom:314.774000pt;}
.y125{bottom:314.780667pt;}
.y126{bottom:314.797867pt;}
.y1cb{bottom:319.000800pt;}
.y1e2{bottom:326.581200pt;}
.y198{bottom:326.598400pt;}
.y15{bottom:326.598533pt;}
.y151{bottom:326.600533pt;}
.y3f{bottom:326.602667pt;}
.y184{bottom:326.604800pt;}
.y13e{bottom:326.606933pt;}
.y1a6{bottom:326.611200pt;}
.y197{bottom:326.613333pt;}
.y16c{bottom:326.615467pt;}
.yd3{bottom:326.617600pt;}
.y1ba{bottom:326.624000pt;}
.y8b{bottom:326.647467pt;}
.yc1{bottom:326.653867pt;}
.yf8{bottom:327.444000pt;}
.y124{bottom:327.450667pt;}
.y1ca{bottom:335.450800pt;}
.y1e1{bottom:339.251200pt;}
.yf7{bottom:340.114000pt;}
.y123{bottom:343.900667pt;}
.y14{bottom:344.558533pt;}
.y150{bottom:344.598400pt;}
.y3e{bottom:344.600533pt;}
.y183{bottom:344.602667pt;}
.y20b{bottom:344.603200pt;}
.y13d{bottom:344.604800pt;}
.y1a5{bottom:344.609067pt;}
.y196{bottom:344.611200pt;}
.y16b{bottom:344.613333pt;}
.yd2{bottom:344.615467pt;}
.y1b9{bottom:344.621867pt;}
.y8a{bottom:344.645333pt;}
.yc0{bottom:344.651733pt;}
.y1c9{bottom:348.120800pt;}
.y1e0{bottom:351.921200pt;}
.yf6{bottom:352.784000pt;}
.y122{bottom:356.570667pt;}
.y1c8{bottom:360.790800pt;}
.y13{bottom:362.561200pt;}
.y3d{bottom:362.598400pt;}
.y182{bottom:362.600533pt;}
.y20a{bottom:362.601600pt;}
.y6a{bottom:362.602667pt;}
.yaa{bottom:362.604800pt;}
.y1a4{bottom:362.606933pt;}
.y195{bottom:362.609067pt;}
.y16a{bottom:362.611200pt;}
.yd1{bottom:362.613333pt;}
.y1b8{bottom:362.619733pt;}
.y89{bottom:362.643200pt;}
.ybf{bottom:362.649600pt;}
.y1df{bottom:368.322667pt;}
.yf5{bottom:369.234000pt;}
.y121{bottom:369.240667pt;}
.y1c7{bottom:373.460800pt;}
.y12{bottom:380.563867pt;}
.y209{bottom:380.600000pt;}
.y69{bottom:380.600533pt;}
.ya9{bottom:380.602667pt;}
.y3c{bottom:380.604800pt;}
.y194{bottom:380.606933pt;}
.y169{bottom:380.609067pt;}
.yd0{bottom:380.611200pt;}
.y181{bottom:380.617600pt;}
.y88{bottom:380.641067pt;}
.ybe{bottom:380.647467pt;}
.y1de{bottom:380.992667pt;}
.yf4{bottom:381.904000pt;}
.y120{bottom:381.910667pt;}
.y1c6{bottom:389.910800pt;}
.y1dd{bottom:393.662667pt;}
.yf3{bottom:394.574000pt;}
.y11f{bottom:398.353600pt;}
.y11{bottom:398.566533pt;}
.y68{bottom:398.598400pt;}
.y67{bottom:398.600533pt;}
.y3b{bottom:398.602667pt;}
.y193{bottom:398.604800pt;}
.y168{bottom:398.606933pt;}
.ycf{bottom:398.609067pt;}
.y180{bottom:398.615467pt;}
.y87{bottom:398.638933pt;}
.ybd{bottom:398.645333pt;}
.y1c5{bottom:402.580800pt;}
.y1dc{bottom:406.332667pt;}
.yf2{bottom:407.244000pt;}
.y11d{bottom:411.020267pt;}
.y11e{bottom:411.023600pt;}
.y10{bottom:416.569200pt;}
.y66{bottom:416.598400pt;}
.y3a{bottom:416.600533pt;}
.y192{bottom:416.602667pt;}
.y167{bottom:416.604800pt;}
.ya8{bottom:416.606933pt;}
.y65{bottom:416.611200pt;}
.y17f{bottom:416.613333pt;}
.y13c{bottom:416.626133pt;}
.y86{bottom:416.636800pt;}
.ybc{bottom:416.643200pt;}
.y1db{bottom:419.002667pt;}
.y1c4{bottom:419.030800pt;}
.yf1{bottom:419.896533pt;}
.y11c{bottom:423.690267pt;}
.y1da{bottom:431.672667pt;}
.y1c3{bottom:431.700800pt;}
.yf{bottom:434.571867pt;}
.y1a3{bottom:434.598400pt;}
.y14f{bottom:434.600533pt;}
.y39{bottom:434.602667pt;}
.ya7{bottom:434.604800pt;}
.y64{bottom:434.609067pt;}
.y17e{bottom:434.611200pt;}
.y13b{bottom:434.624000pt;}
.y85{bottom:434.634667pt;}
.ybb{bottom:434.641067pt;}
.yf0{bottom:436.346533pt;}
.y11b{bottom:440.129733pt;}
.y1c2{bottom:444.367467pt;}
.y1d9{bottom:448.122667pt;}
.yef{bottom:449.016533pt;}
.ye{bottom:452.574533pt;}
.y191{bottom:452.598400pt;}
.y38{bottom:452.600533pt;}
.ya6{bottom:452.602667pt;}
.y63{bottom:452.606933pt;}
.y17d{bottom:452.609067pt;}
.y14e{bottom:452.611200pt;}
.y13a{bottom:452.621867pt;}
.y84{bottom:452.632533pt;}
.yba{bottom:452.638933pt;}
.y11a{bottom:452.799733pt;}
.y1d8{bottom:460.792667pt;}
.y1c1{bottom:460.813600pt;}
.yee{bottom:465.466533pt;}
.y119{bottom:465.469733pt;}
.yd{bottom:470.577200pt;}
.y37{bottom:470.598400pt;}
.ya5{bottom:470.600533pt;}
.y62{bottom:470.604800pt;}
.y17c{bottom:470.606933pt;}
.y14d{bottom:470.609067pt;}
.y139{bottom:470.619733pt;}
.y83{bottom:470.630400pt;}
.yb9{bottom:470.636800pt;}
.yed{bottom:478.136533pt;}
.y118{bottom:481.909333pt;}
.yc{bottom:488.579867pt;}
.ya4{bottom:488.598400pt;}
.y61{bottom:488.602667pt;}
.y17b{bottom:488.604800pt;}
.y14c{bottom:488.606933pt;}
.y166{bottom:488.609067pt;}
.y35{bottom:488.611200pt;}
.y138{bottom:488.617600pt;}
.y82{bottom:488.628267pt;}
.yb8{bottom:488.634667pt;}
.y36{bottom:492.772000pt;}
.yec{bottom:494.566000pt;}
.y117{bottom:494.579333pt;}
.yb{bottom:506.582533pt;}
.y208{bottom:506.598400pt;}
.y60{bottom:506.600533pt;}
.y17a{bottom:506.602667pt;}
.y14b{bottom:506.604800pt;}
.y165{bottom:506.606933pt;}
.y34{bottom:506.609067pt;}
.y1a2{bottom:506.611200pt;}
.y137{bottom:506.615467pt;}
.ya3{bottom:506.617600pt;}
.y81{bottom:506.626133pt;}
.yb7{bottom:506.632533pt;}
.yeb{bottom:507.236000pt;}
.y115{bottom:507.246000pt;}
.y116{bottom:507.249333pt;}
.yea{bottom:519.906000pt;}
.y113{bottom:519.912667pt;}
.y114{bottom:519.916000pt;}
.ya{bottom:524.585200pt;}
.y179{bottom:524.600533pt;}
.y5f{bottom:524.602667pt;}
.y164{bottom:524.604800pt;}
.y33{bottom:524.606933pt;}
.y1a1{bottom:524.609067pt;}
.y136{bottom:524.613333pt;}
.ya2{bottom:524.615467pt;}
.y80{bottom:524.624000pt;}
.yb6{bottom:524.630400pt;}
.y111{bottom:532.575467pt;}
.ye9{bottom:532.576000pt;}
.y112{bottom:532.582667pt;}
.y9{bottom:542.587867pt;}
.y178{bottom:542.598400pt;}
.y5e{bottom:542.600533pt;}
.y163{bottom:542.602667pt;}
.y32{bottom:542.604800pt;}
.y1a0{bottom:542.606933pt;}
.y135{bottom:542.611200pt;}
.ya1{bottom:542.613333pt;}
.y7f{bottom:542.621867pt;}
.yb5{bottom:542.628267pt;}
.ye8{bottom:545.246000pt;}
.y110{bottom:549.025467pt;}
.ye7{bottom:557.916000pt;}
.y8{bottom:560.590533pt;}
.y5d{bottom:560.598400pt;}
.y5c{bottom:560.600533pt;}
.y31{bottom:560.602667pt;}
.y19f{bottom:560.604800pt;}
.y134{bottom:560.609067pt;}
.ya0{bottom:560.611200pt;}
.y7e{bottom:560.619733pt;}
.yb4{bottom:560.626133pt;}
.y10f{bottom:561.695467pt;}
.ye6{bottom:574.320800pt;}
.y10d{bottom:574.351733pt;}
.y10e{bottom:574.362133pt;}
.y7{bottom:578.593200pt;}
.y5b{bottom:578.598400pt;}
.y30{bottom:578.600533pt;}
.y19e{bottom:578.602667pt;}
.y14a{bottom:578.604800pt;}
.y133{bottom:578.606933pt;}
.y9f{bottom:578.609067pt;}
.y7d{bottom:578.617600pt;}
.yb3{bottom:578.624000pt;}
.ye5{bottom:586.990800pt;}
.y10c{bottom:590.801733pt;}
.y6{bottom:596.595867pt;}
.y5a{bottom:596.598400pt;}
.y59{bottom:596.600533pt;}
.y149{bottom:596.602667pt;}
.y132{bottom:596.604800pt;}
.y9e{bottom:596.606933pt;}
.y1b7{bottom:596.609067pt;}
.y162{bottom:596.611200pt;}
.y2f{bottom:596.613333pt;}
.y7c{bottom:596.615467pt;}
.yb2{bottom:596.621867pt;}
.ye4{bottom:599.660800pt;}
.y10b{bottom:603.471733pt;}
.y58{bottom:614.598400pt;}
.y5{bottom:614.598533pt;}
.y57{bottom:614.600533pt;}
.y131{bottom:614.602667pt;}
.y9d{bottom:614.604800pt;}
.y1b6{bottom:614.606933pt;}
.y161{bottom:614.609067pt;}
.y2e{bottom:614.611200pt;}
.y7b{bottom:614.613333pt;}
.yb1{bottom:614.619733pt;}
.ye3{bottom:616.110800pt;}
.y109{bottom:616.138400pt;}
.y10a{bottom:616.141733pt;}
.y1fc{bottom:626.924133pt;}
.ye2{bottom:628.780800pt;}
.y107{bottom:628.794533pt;}
.y108{bottom:628.808400pt;}
.y56{bottom:632.598400pt;}
.y55{bottom:632.600533pt;}
.y9c{bottom:632.602667pt;}
.y148{bottom:632.604800pt;}
.y160{bottom:632.606933pt;}
.y2d{bottom:632.609067pt;}
.y7a{bottom:632.611200pt;}
.yb0{bottom:632.617600pt;}
.y1fb{bottom:639.594133pt;}
.ye1{bottom:641.450800pt;}
.y106{bottom:645.244533pt;}
.y54{bottom:650.598400pt;}
.y4{bottom:650.598533pt;}
.y9b{bottom:650.600533pt;}
.y147{bottom:650.602667pt;}
.y15f{bottom:650.604800pt;}
.y2c{bottom:650.606933pt;}
.y79{bottom:650.609067pt;}
.yaf{bottom:650.615467pt;}
.ye0{bottom:654.120800pt;}
.y1fa{bottom:656.044133pt;}
.y207{bottom:656.320933pt;}
.y105{bottom:657.914533pt;}
.y53{bottom:668.600533pt;}
.y15e{bottom:668.602667pt;}
.y2b{bottom:668.604800pt;}
.y78{bottom:668.606933pt;}
.y9a{bottom:668.613333pt;}
.y1f9{bottom:668.714133pt;}
.ydf{bottom:670.570800pt;}
.y104{bottom:670.584533pt;}
.y206{bottom:672.714133pt;}
.y1f8{bottom:681.384133pt;}
.yde{bottom:683.240800pt;}
.y102{bottom:683.251200pt;}
.y103{bottom:683.254533pt;}
.y205{bottom:685.384133pt;}
.y1b5{bottom:686.598400pt;}
.y146{bottom:686.600533pt;}
.y2a{bottom:686.602667pt;}
.y77{bottom:686.604800pt;}
.y52{bottom:686.609067pt;}
.y99{bottom:686.611200pt;}
.y101{bottom:695.921200pt;}
.y1f7{bottom:697.834133pt;}
.ydd{bottom:699.690800pt;}
.y204{bottom:701.834133pt;}
.y145{bottom:704.598400pt;}
.y29{bottom:704.600533pt;}
.y76{bottom:704.602667pt;}
.y51{bottom:704.606933pt;}
.y98{bottom:704.609067pt;}
.y1f6{bottom:710.500800pt;}
.ydc{bottom:712.360800pt;}
.y203{bottom:714.504133pt;}
.y28{bottom:722.598400pt;}
.y75{bottom:722.600533pt;}
.y190{bottom:722.602667pt;}
.y50{bottom:722.604800pt;}
.y27{bottom:722.606933pt;}
.y1f5{bottom:723.167467pt;}
.ydb{bottom:725.030800pt;}
.y202{bottom:727.174133pt;}
.y1f4{bottom:735.827067pt;}
.y100{bottom:737.654000pt;}
.yd9{bottom:737.693600pt;}
.yda{bottom:737.700800pt;}
.y201{bottom:739.844133pt;}
.y74{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y73{bottom:740.600533pt;}
.y4f{bottom:740.602667pt;}
.y26{bottom:740.604800pt;}
.y1f3{bottom:752.277067pt;}
.yff{bottom:754.104000pt;}
.yd8{bottom:754.143600pt;}
.y200{bottom:756.294133pt;}
.y72{bottom:758.598400pt;}
.y4e{bottom:758.600533pt;}
.y25{bottom:758.602667pt;}
.y1f2{bottom:764.947067pt;}
.yfe{bottom:766.774000pt;}
.yd7{bottom:766.813600pt;}
.y1ff{bottom:768.964133pt;}
.y24{bottom:776.600533pt;}
.y1f1{bottom:781.389867pt;}
.y1fe{bottom:781.634133pt;}
.y1f0{bottom:794.059867pt;}
.y1fd{bottom:794.304133pt;}
.y23{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y22{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.ha{height:26.421871pt;}
.h1c{height:27.031250pt;}
.h22{height:31.060267pt;}
.h2{height:31.849600pt;}
.he{height:32.684896pt;}
.h28{height:32.972800pt;}
.h23{height:33.879167pt;}
.hd{height:34.085333pt;}
.h24{height:34.090667pt;}
.h10{height:34.091200pt;}
.hf{height:34.091733pt;}
.h25{height:34.097067pt;}
.h1b{height:35.019531pt;}
.h8{height:36.033067pt;}
.h1e{height:36.153600pt;}
.h1a{height:36.520000pt;}
.h6{height:37.014400pt;}
.h26{height:37.354167pt;}
.h14{height:38.954667pt;}
.h27{height:39.253333pt;}
.h3{height:39.331200pt;}
.h1d{height:40.499200pt;}
.h29{height:40.902400pt;}
.h5{height:41.973333pt;}
.h7{height:42.563200pt;}
.h13{height:42.877338pt;}
.h18{height:42.971204pt;}
.h19{height:43.013871pt;}
.h15{height:43.039471pt;}
.h9{height:43.056538pt;}
.h12{height:43.073604pt;}
.h16{height:43.082138pt;}
.hc{height:43.090671pt;}
.hb{height:43.099204pt;}
.h11{height:43.107738pt;}
.h17{height:43.116271pt;}
.h21{height:45.771733pt;}
.h1f{height:49.667200pt;}
.h20{height:66.730667pt;}
.h4{height:71.354667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x4f{left:75.609733pt;}
.x1b{left:79.364633pt;}
.x1e{left:81.753600pt;}
.x3{left:83.149600pt;}
.x13{left:88.818907pt;}
.x67{left:93.530133pt;}
.x2{left:94.488133pt;}
.x68{left:96.663467pt;}
.x6{left:99.067067pt;}
.x7{left:101.622800pt;}
.x19{left:109.168533pt;}
.x1a{left:111.946933pt;}
.x18{left:113.268933pt;}
.x10{left:115.147600pt;}
.x55{left:118.662667pt;}
.x52{left:125.410667pt;}
.x8{left:126.525333pt;}
.x9{left:129.081067pt;}
.x17{left:133.162533pt;}
.x14{left:141.834133pt;}
.x15{left:144.389867pt;}
.x5{left:153.739200pt;}
.x66{left:156.076267pt;}
.x65{left:158.994933pt;}
.x63{left:163.007867pt;}
.x64{left:166.141200pt;}
.xa{left:170.291467pt;}
.x6d{left:172.351333pt;}
.x4c{left:173.760933pt;}
.x4d{left:189.542400pt;}
.x1c{left:192.685067pt;}
.x1d{left:200.453600pt;}
.x21{left:204.766800pt;}
.x6b{left:222.386400pt;}
.x6c{left:225.519733pt;}
.x50{left:227.936667pt;}
.x56{left:229.883733pt;}
.x51{left:231.070000pt;}
.x57{left:233.017067pt;}
.x1f{left:236.977333pt;}
.x20{left:239.755733pt;}
.x69{left:260.857867pt;}
.x6a{left:263.991200pt;}
.x61{left:279.460000pt;}
.x62{left:282.593333pt;}
.x23{left:319.371600pt;}
.x26{left:325.478533pt;}
.x22{left:330.709200pt;}
.x34{left:333.510800pt;}
.x2d{left:335.441467pt;}
.x3d{left:337.678267pt;}
.x2e{left:338.771467pt;}
.x3e{left:340.456667pt;}
.x41{left:347.690800pt;}
.x49{left:351.070800pt;}
.x42{left:352.129200pt;}
.x4a{left:354.204133pt;}
.x5a{left:355.356800pt;}
.x5b{left:358.490133pt;}
.x45{left:366.977067pt;}
.x4e{left:370.711467pt;}
.x4b{left:374.562267pt;}
.x4{left:377.144267pt;}
.x46{left:380.039333pt;}
.x5c{left:383.263867pt;}
.x5d{left:386.397200pt;}
.x37{left:387.367067pt;}
.x38{left:391.805600pt;}
.x58{left:395.782400pt;}
.x27{left:396.909067pt;}
.x11{left:398.364933pt;}
.x28{left:401.347467pt;}
.x35{left:402.847333pt;}
.x12{left:404.028800pt;}
.x36{left:405.625733pt;}
.x24{left:413.420267pt;}
.x25{left:423.375467pt;}
.x2f{left:427.246800pt;}
.x53{left:430.264267pt;}
.x54{left:433.397600pt;}
.x30{left:443.760933pt;}
.x31{left:446.539333pt;}
.x29{left:447.977600pt;}
.x59{left:449.093067pt;}
.x2a{left:452.416133pt;}
.x43{left:472.106267pt;}
.x44{left:474.884667pt;}
.x3f{left:478.698400pt;}
.x40{left:481.476667pt;}
.x2b{left:486.983067pt;}
.x2c{left:491.421600pt;}
.xc{left:496.640667pt;}
.xd{left:500.822933pt;}
.x47{left:504.434400pt;}
.x39{left:505.740933pt;}
.x48{left:507.396667pt;}
.x3a{left:508.519333pt;}
.xe{left:512.405867pt;}
.x32{left:516.822400pt;}
.x33{left:519.600667pt;}
.xb{left:522.178133pt;}
.x5e{left:525.772533pt;}
.x3c{left:528.050533pt;}
.x16{left:531.958933pt;}
.xf{left:534.673467pt;}
.x3b{left:551.152133pt;}
.x5f{left:552.457200pt;}
.x60{left:555.590533pt;}
}




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