
    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_9670ef2a5c520a000adfb62f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977500;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_fd32fc346c90df579be4b3d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_b42256dd8bfe9fb6aa03e6ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_b47011522187ace03eef3f0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007000;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_31db118ffb4725f47bf02802.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_8d4f43919221f30c400748f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948000;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_e08b3a77cd6fa7e0c09d1dc2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_225ca1b74bff20956ccdabf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_96f3b16010bbeccadbe522c6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e08b3a77cd6fa7e0c09d1dc2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_225ca1b74bff20956ccdabf8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_225ca1b74bff20956ccdabf8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e08b3a77cd6fa7e0c09d1dc2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_048e191729aa37f8e2aa11c8.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.577400px;}
.v3{vertical-align:36.000000px;}
.v4{vertical-align:72.000000px;}
.ls1d{letter-spacing:-2.214000px;}
.ls1c{letter-spacing:-1.350000px;}
.lsb{letter-spacing:-1.254000px;}
.ls7{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-1.050000px;}
.ls1a{letter-spacing:-1.026000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.810000px;}
.ls20{letter-spacing:-0.780000px;}
.ls15{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.567000px;}
.ls18{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.528000px;}
.ls14{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.396000px;}
.ls17{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.184800px;}
.ls19{letter-spacing:-0.054000px;}
.ls2{letter-spacing:-0.037800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000048px;}
.ls21{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.339000px;}
.ls3{letter-spacing:0.871200px;}
.lsd{letter-spacing:1.778400px;}
.ls10{letter-spacing:67.285800px;}
.lsf{letter-spacing:80.785800px;}
.lse{letter-spacing:140.239800px;}
.ls1b{letter-spacing:692.142000px;}
.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;}
}
.ws1d{word-spacing:-17.487600px;}
.wsb4{word-spacing:-15.114000px;}
.ws66{word-spacing:-14.982000px;}
.ws6e{word-spacing:-14.586000px;}
.ws6d{word-spacing:-13.794000px;}
.wsc1{word-spacing:-13.620000px;}
.ws81{word-spacing:-12.258000px;}
.ws98{word-spacing:-12.042000px;}
.ws5{word-spacing:-11.718000px;}
.ws92{word-spacing:-11.664000px;}
.ws6f{word-spacing:-11.502000px;}
.ws7f{word-spacing:-11.448000px;}
.ws70{word-spacing:-11.286000px;}
.wsa6{word-spacing:-11.232000px;}
.ws88{word-spacing:-11.178000px;}
.ws3{word-spacing:-10.896000px;}
.ws6{word-spacing:-10.584000px;}
.ws0{word-spacing:-10.054800px;}
.wsa5{word-spacing:-10.044000px;}
.ws4{word-spacing:-9.525600px;}
.ws1{word-spacing:-8.972720px;}
.ws2{word-spacing:-7.209378px;}
.wsde{word-spacing:-3.060000px;}
.ws48{word-spacing:-2.970000px;}
.ws35{word-spacing:-2.904000px;}
.ws3e{word-spacing:-2.838000px;}
.ws42{word-spacing:-2.706000px;}
.ws36{word-spacing:-2.574000px;}
.wsb9{word-spacing:-2.508000px;}
.wscf{word-spacing:-2.460000px;}
.ws6c{word-spacing:-2.442000px;}
.ws5e{word-spacing:-2.178000px;}
.wsce{word-spacing:-2.160000px;}
.wsb7{word-spacing:-2.046000px;}
.wsb6{word-spacing:-1.782000px;}
.ws25{word-spacing:-1.650000px;}
.ws55{word-spacing:-1.518000px;}
.wsc9{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.254000px;}
.wscd{word-spacing:-1.200000px;}
.ws1f{word-spacing:-1.188000px;}
.ws44{word-spacing:-1.122000px;}
.ws2f{word-spacing:-1.056000px;}
.wsf{word-spacing:-1.008000px;}
.ws27{word-spacing:-0.990000px;}
.ws12{word-spacing:-0.972000px;}
.ws45{word-spacing:-0.924000px;}
.wsa{word-spacing:-0.907200px;}
.ws14{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.858000px;}
.wsb{word-spacing:-0.752400px;}
.ws34{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.540000px;}
.ws2e{word-spacing:-0.462000px;}
.ws56{word-spacing:-0.396000px;}
.wsd{word-spacing:-0.339000px;}
.ws23{word-spacing:-0.330000px;}
.wsda{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.216000px;}
.ws64{word-spacing:-0.198000px;}
.ws24{word-spacing:-0.132000px;}
.ws99{word-spacing:-0.108000px;}
.wsb3{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:0.037800px;}
.ws4d{word-spacing:0.066000px;}
.ws50{word-spacing:0.132000px;}
.wsdd{word-spacing:0.180000px;}
.wsc{word-spacing:0.184800px;}
.wsaf{word-spacing:0.216000px;}
.ws67{word-spacing:0.264000px;}
.wsc0{word-spacing:0.330000px;}
.ws1b{word-spacing:0.378000px;}
.ws22{word-spacing:0.396000px;}
.wsdb{word-spacing:0.420000px;}
.ws4a{word-spacing:0.528000px;}
.wsae{word-spacing:0.540000px;}
.ws1a{word-spacing:0.594000px;}
.ws39{word-spacing:0.660000px;}
.ws6b{word-spacing:0.726000px;}
.wsbb{word-spacing:0.780000px;}
.ws2d{word-spacing:0.792000px;}
.wsad{word-spacing:0.864000px;}
.ws3b{word-spacing:1.056000px;}
.ws82{word-spacing:1.188000px;}
.ws51{word-spacing:1.254000px;}
.wsdf{word-spacing:1.260000px;}
.ws2a{word-spacing:1.320000px;}
.wsd6{word-spacing:1.440000px;}
.wsbe{word-spacing:1.452000px;}
.wsd2{word-spacing:1.560000px;}
.ws11{word-spacing:1.566000px;}
.ws28{word-spacing:1.584000px;}
.ws53{word-spacing:1.650000px;}
.wsdc{word-spacing:1.680000px;}
.ws65{word-spacing:1.716000px;}
.wsd5{word-spacing:1.800000px;}
.ws5b{word-spacing:1.848000px;}
.ws26{word-spacing:1.914000px;}
.wsbf{word-spacing:1.980000px;}
.ws58{word-spacing:2.046000px;}
.wsc2{word-spacing:2.100000px;}
.ws21{word-spacing:2.112000px;}
.ws2c{word-spacing:2.244000px;}
.ws4f{word-spacing:2.310000px;}
.ws63{word-spacing:2.508000px;}
.ws18{word-spacing:2.592000px;}
.ws57{word-spacing:2.640000px;}
.wsc8{word-spacing:2.700000px;}
.ws1e{word-spacing:2.706000px;}
.ws17{word-spacing:2.754000px;}
.ws61{word-spacing:2.838000px;}
.ws19{word-spacing:2.862000px;}
.ws6a{word-spacing:2.904000px;}
.wsb5{word-spacing:2.970000px;}
.wsc3{word-spacing:3.060000px;}
.ws62{word-spacing:3.168000px;}
.ws38{word-spacing:3.234000px;}
.wsb8{word-spacing:3.300000px;}
.ws69{word-spacing:3.366000px;}
.ws60{word-spacing:3.432000px;}
.ws68{word-spacing:3.564000px;}
.ws3a{word-spacing:3.696000px;}
.wsca{word-spacing:3.780000px;}
.ws10{word-spacing:3.888000px;}
.ws5f{word-spacing:3.894000px;}
.wsd7{word-spacing:3.900000px;}
.ws59{word-spacing:4.026000px;}
.wsc4{word-spacing:4.080000px;}
.ws3c{word-spacing:4.158000px;}
.ws2b{word-spacing:4.356000px;}
.wse{word-spacing:4.428000px;}
.ws3d{word-spacing:4.488000px;}
.ws31{word-spacing:4.554000px;}
.ws54{word-spacing:4.752000px;}
.wsd9{word-spacing:4.800000px;}
.wsba{word-spacing:4.818000px;}
.ws29{word-spacing:4.884000px;}
.ws3f{word-spacing:4.950000px;}
.wscb{word-spacing:4.980000px;}
.ws5a{word-spacing:5.016000px;}
.wsd3{word-spacing:5.040000px;}
.ws37{word-spacing:5.082000px;}
.wsd1{word-spacing:5.220000px;}
.ws15{word-spacing:5.346000px;}
.ws1c{word-spacing:5.400000px;}
.ws30{word-spacing:5.412000px;}
.wsb1{word-spacing:5.610000px;}
.wsb2{word-spacing:5.742000px;}
.wsbc{word-spacing:5.808000px;}
.ws52{word-spacing:5.940000px;}
.wsc6{word-spacing:6.000000px;}
.ws5c{word-spacing:6.072000px;}
.wsd0{word-spacing:6.180000px;}
.ws4e{word-spacing:6.270000px;}
.ws49{word-spacing:6.336000px;}
.wsbd{word-spacing:6.402000px;}
.wsb0{word-spacing:6.534000px;}
.ws4c{word-spacing:6.666000px;}
.wsc7{word-spacing:6.780000px;}
.ws4b{word-spacing:6.798000px;}
.ws47{word-spacing:6.930000px;}
.ws46{word-spacing:6.996000px;}
.wsc5{word-spacing:7.020000px;}
.ws43{word-spacing:7.260000px;}
.wsd4{word-spacing:7.500000px;}
.ws9{word-spacing:7.560000px;}
.ws32{word-spacing:7.656000px;}
.ws41{word-spacing:8.118000px;}
.ws5d{word-spacing:8.184000px;}
.wscc{word-spacing:8.220000px;}
.wsd8{word-spacing:8.700000px;}
.ws20{word-spacing:9.108000px;}
.ws91{word-spacing:28.938600px;}
.ws9b{word-spacing:38.152200px;}
.ws95{word-spacing:38.773200px;}
.ws93{word-spacing:38.908200px;}
.ws83{word-spacing:49.488600px;}
.ws97{word-spacing:51.166200px;}
.ws9c{word-spacing:56.377800px;}
.ws85{word-spacing:56.485200px;}
.ws7d{word-spacing:59.266800px;}
.ws87{word-spacing:61.426800px;}
.ws90{word-spacing:64.665600px;}
.wsa4{word-spacing:66.097200px;}
.ws7e{word-spacing:70.121400px;}
.ws73{word-spacing:70.440600px;}
.ws7a{word-spacing:78.409800px;}
.ws72{word-spacing:83.107800px;}
.ws8d{word-spacing:89.235600px;}
.ws8f{word-spacing:97.862400px;}
.ws7b{word-spacing:102.947400px;}
.ws8b{word-spacing:103.978800px;}
.ws9a{word-spacing:118.152600px;}
.ws89{word-spacing:118.557600px;}
.ws74{word-spacing:127.738200px;}
.ws75{word-spacing:130.434000px;}
.ws94{word-spacing:131.652600px;}
.ws79{word-spacing:132.459000px;}
.ws9d{word-spacing:134.676600px;}
.ws8c{word-spacing:136.777200px;}
.wsa1{word-spacing:145.531200px;}
.ws77{word-spacing:156.951600px;}
.ws76{word-spacing:157.572600px;}
.ws84{word-spacing:157.573200px;}
.ws7c{word-spacing:169.911600px;}
.ws9f{word-spacing:170.340000px;}
.ws86{word-spacing:179.763000px;}
.ws80{word-spacing:179.763600px;}
.ws78{word-spacing:187.158000px;}
.wsa3{word-spacing:195.611400px;}
.ws71{word-spacing:217.284000px;}
.ws9e{word-spacing:233.814600px;}
.wsa2{word-spacing:255.441600px;}
.ws8e{word-spacing:348.058800px;}
.wsa0{word-spacing:348.059400px;}
.ws96{word-spacing:361.018800px;}
.wsab{word-spacing:391.956600px;}
.wsaa{word-spacing:394.062600px;}
.wsa9{word-spacing:395.634000px;}
.wsa8{word-spacing:434.892000px;}
.wsa7{word-spacing:510.864600px;}
.ws8a{word-spacing:513.934200px;}
.wsac{word-spacing:679.884000px;}
._8{margin-left:-11.656920px;}
._22{margin-left:-9.471000px;}
._6{margin-left:-8.243520px;}
._5{margin-left:-6.616152px;}
._7{margin-left:-5.250240px;}
._1{margin-left:-4.234680px;}
._2{margin-left:-3.024000px;}
._0{margin-left:-1.081080px;}
._4{width:1.405800px;}
._9{width:2.498760px;}
._3{width:7.511880px;}
._10{width:42.282600px;}
._d{width:67.344000px;}
._14{width:76.902240px;}
._19{width:80.001600px;}
._e{width:90.525000px;}
._15{width:92.267520px;}
._1a{width:93.280080px;}
._1c{width:96.521280px;}
._f{width:98.980080px;}
._1b{width:102.192480px;}
._13{width:108.912600px;}
._17{width:113.143200px;}
._11{width:116.121600px;}
._12{width:186.159600px;}
._20{width:334.422480px;}
._18{width:340.092480px;}
._b{width:350.172480px;}
._a{width:351.474480px;}
._1e{width:453.840000px;}
._1d{width:547.894200px;}
._16{width:562.401960px;}
._21{width:649.615650px;}
._c{width:671.755950px;}
._1f{width:692.142000px;}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(71,106,28);}
.fs5{font-size:31.482000px;}
.fs0{font-size:37.800000px;}
.fs4{font-size:39.527400px;}
.fs1{font-size:39.600000px;}
.fsf{font-size:41.759400px;}
.fs8{font-size:42.000000px;}
.fs10{font-size:45.801600px;}
.fsd{font-size:47.272200px;}
.fs7{font-size:48.000000px;}
.fs11{font-size:50.767800px;}
.fse{font-size:51.225000px;}
.fsc{font-size:52.398000px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs3{font-size:67.800000px;}
.fs9{font-size:70.800000px;}
.fs2{font-size:92.400000px;}
.yaa{bottom:-37.656450px;}
.ya9{bottom:-21.424650px;}
.y14f{bottom:-5.671350px;}
.ya8{bottom:-4.623150px;}
.y153{bottom:-4.348500px;}
.y0{bottom:0.000000px;}
.ya6{bottom:2.135700px;}
.ya7{bottom:2.278200px;}
.y14e{bottom:6.160500px;}
.y5{bottom:71.528700px;}
.y4{bottom:84.128700px;}
.y4f{bottom:85.039350px;}
.y173{bottom:86.179800px;}
.y13b{bottom:86.857350px;}
.y155{bottom:86.890350px;}
.y8f{bottom:87.542550px;}
.ya1{bottom:90.079350px;}
.y1a2{bottom:90.656700px;}
.yd8{bottom:91.940100px;}
.y3{bottom:96.728700px;}
.y151{bottom:98.175750px;}
.y4e{bottom:104.887500px;}
.y75{bottom:105.288900px;}
.y172{bottom:105.979950px;}
.y13a{bottom:106.657350px;}
.y8e{bottom:107.342550px;}
.y1a1{bottom:108.656700px;}
.yd5{bottom:109.940100px;}
.y119{bottom:115.227150px;}
.ya2{bottom:117.396000px;}
.y14b{bottom:118.713000px;}
.yd4{bottom:118.940100px;}
.ya5{bottom:123.879000px;}
.y4d{bottom:124.735500px;}
.y14d{bottom:124.873500px;}
.y74{bottom:125.538450px;}
.y171{bottom:125.779800px;}
.y139{bottom:126.457350px;}
.y1a0{bottom:126.656700px;}
.y8d{bottom:127.142550px;}
.yd6{bottom:127.940100px;}
.y117{bottom:133.227150px;}
.y4c{bottom:144.583500px;}
.y19f{bottom:144.656700px;}
.y170{bottom:145.579800px;}
.y73{bottom:145.787850px;}
.yd7{bottom:145.940100px;}
.y138{bottom:146.257350px;}
.y8c{bottom:146.942550px;}
.y118{bottom:151.227150px;}
.y19e{bottom:162.656700px;}
.yd3{bottom:164.258400px;}
.y23{bottom:164.374650px;}
.y4b{bottom:164.431500px;}
.y137{bottom:166.057350px;}
.y8b{bottom:166.742550px;}
.y116{bottom:169.545300px;}
.ycf{bottom:173.258400px;}
.y16f{bottom:176.677350px;}
.y72{bottom:177.334800px;}
.y114{bottom:178.545300px;}
.y19d{bottom:180.656700px;}
.yd2{bottom:182.258400px;}
.y22{bottom:182.374650px;}
.y4a{bottom:184.279650px;}
.y8a{bottom:186.542550px;}
.y113{bottom:187.545300px;}
.ycd{bottom:191.258400px;}
.y19c{bottom:198.656700px;}
.yd1{bottom:200.258400px;}
.y21{bottom:200.374650px;}
.y49{bottom:204.127650px;}
.y115{bottom:205.545300px;}
.y89{bottom:206.342550px;}
.yce{bottom:209.258400px;}
.y136{bottom:212.788200px;}
.y19b{bottom:216.656700px;}
.yd0{bottom:218.258400px;}
.y71{bottom:223.096050px;}
.y112{bottom:223.863600px;}
.y48{bottom:223.975650px;}
.y88{bottom:226.142550px;}
.y135{bottom:231.106500px;}
.y10f{bottom:232.863600px;}
.y19a{bottom:234.656700px;}
.y20{bottom:236.374650px;}
.ycc{bottom:236.576700px;}
.y16e{bottom:238.997100px;}
.y10e{bottom:241.863600px;}
.y70{bottom:243.345450px;}
.y47{bottom:243.823650px;}
.y87{bottom:245.942550px;}
.y134{bottom:249.424800px;}
.y110{bottom:250.863600px;}
.y199{bottom:252.656700px;}
.y1f{bottom:254.374650px;}
.yca{bottom:254.576700px;}
.y14c{bottom:254.826000px;}
.y16d{bottom:258.796950px;}
.y111{bottom:259.863600px;}
.y6f{bottom:263.595000px;}
.y46{bottom:263.671650px;}
.y86{bottom:265.742550px;}
.y133{bottom:267.743100px;}
.y198{bottom:270.656700px;}
.y1e{bottom:272.374650px;}
.ycb{bottom:272.576700px;}
.y10b{bottom:278.182050px;}
.y16c{bottom:278.597100px;}
.y45{bottom:283.519800px;}
.y6e{bottom:283.844400px;}
.y85{bottom:285.542550px;}
.y132{bottom:286.061400px;}
.yab{bottom:288.654600px;}
.y197{bottom:288.656700px;}
.y1d{bottom:290.374650px;}
.yc9{bottom:290.895000px;}
.y10a{bottom:296.182050px;}
.y16b{bottom:298.396950px;}
.yc8{bottom:299.895000px;}
.y44{bottom:303.367800px;}
.y6d{bottom:304.093950px;}
.y131{bottom:304.379700px;}
.y10d{bottom:305.182050px;}
.y84{bottom:305.342550px;}
.y196{bottom:306.656700px;}
.y1c{bottom:308.374650px;}
.y106{bottom:314.182050px;}
.y16a{bottom:318.196950px;}
.y130{bottom:322.698000px;}
.y105{bottom:323.182050px;}
.y43{bottom:323.215800px;}
.y6c{bottom:324.343350px;}
.y195{bottom:324.656700px;}
.y83{bottom:325.142550px;}
.y1b{bottom:326.374650px;}
.yc7{bottom:327.213300px;}
.y109{bottom:332.182050px;}
.y169{bottom:337.997100px;}
.y12f{bottom:341.016300px;}
.y10c{bottom:341.182050px;}
.y194{bottom:342.656700px;}
.y42{bottom:343.063800px;}
.y1a{bottom:344.374650px;}
.y6b{bottom:344.592900px;}
.y82{bottom:344.942550px;}
.yc6{bottom:345.213300px;}
.ya4{bottom:347.531850px;}
.y108{bottom:350.182050px;}
.yc3{bottom:354.213300px;}
.y168{bottom:357.796950px;}
.y12e{bottom:359.334600px;}
.y193{bottom:360.656700px;}
.y19{bottom:362.374650px;}
.y41{bottom:362.911950px;}
.yc5{bottom:363.213300px;}
.y81{bottom:364.742550px;}
.y6a{bottom:364.842300px;}
.ya3{bottom:364.926450px;}
.y107{bottom:368.182050px;}
.y167{bottom:377.597100px;}
.y12d{bottom:378.009600px;}
.y192{bottom:378.656700px;}
.y18{bottom:380.374650px;}
.yc4{bottom:381.213300px;}
.y40{bottom:382.759800px;}
.y80{bottom:384.542550px;}
.y69{bottom:385.091850px;}
.y104{bottom:386.500200px;}
.y101{bottom:395.500200px;}
.y12c{bottom:396.327900px;}
.y191{bottom:396.656700px;}
.y166{bottom:397.396950px;}
.y17{bottom:398.374650px;}
.yc2{bottom:399.531600px;}
.y14a{bottom:400.132500px;}
.y3f{bottom:402.607950px;}
.y7f{bottom:404.342550px;}
.y100{bottom:404.500200px;}
.y68{bottom:405.341250px;}
.y102{bottom:413.500200px;}
.y12b{bottom:414.646200px;}
.y190{bottom:414.656700px;}
.y16{bottom:416.374650px;}
.y165{bottom:417.196950px;}
.yc1{bottom:417.531600px;}
.y149{bottom:419.932500px;}
.y3e{bottom:422.455950px;}
.y103{bottom:422.500200px;}
.y7e{bottom:424.142550px;}
.y67{bottom:425.590800px;}
.ybe{bottom:426.531600px;}
.y18f{bottom:432.656700px;}
.y15{bottom:434.374650px;}
.y12a{bottom:435.196200px;}
.yc0{bottom:435.531600px;}
.y164{bottom:436.997100px;}
.y148{bottom:439.732500px;}
.yff{bottom:440.818500px;}
.y3d{bottom:442.303950px;}
.y7d{bottom:443.942550px;}
.y66{bottom:445.840200px;}
.yfd{bottom:449.818500px;}
.y18e{bottom:450.656700px;}
.y14{bottom:452.374650px;}
.y129{bottom:453.514500px;}
.ybf{bottom:453.531600px;}
.y163{bottom:456.796950px;}
.yfc{bottom:458.818500px;}
.y147{bottom:459.532500px;}
.y3c{bottom:462.151950px;}
.y65{bottom:466.089750px;}
.y18d{bottom:468.656700px;}
.ybd{bottom:471.849900px;}
.y162{bottom:476.597100px;}
.yfe{bottom:476.818500px;}
.y146{bottom:479.332500px;}
.y3b{bottom:482.000100px;}
.y128{bottom:482.459850px;}
.y64{bottom:486.339150px;}
.y18c{bottom:486.656700px;}
.ybb{bottom:489.849900px;}
.y7c{bottom:492.046500px;}
.yfb{bottom:495.136800px;}
.y161{bottom:496.396950px;}
.y145{bottom:499.132500px;}
.ya0{bottom:499.187700px;}
.y3a{bottom:501.848100px;}
.yf9{bottom:504.136800px;}
.y18b{bottom:504.656700px;}
.y63{bottom:506.588550px;}
.ybc{bottom:507.849900px;}
.yf8{bottom:513.136800px;}
.y127{bottom:513.215700px;}
.y160{bottom:516.196950px;}
.y13{bottom:516.296100px;}
.y144{bottom:518.932500px;}
.y9f{bottom:518.987700px;}
.y39{bottom:521.696100px;}
.y18a{bottom:522.656700px;}
.yba{bottom:526.168200px;}
.y62{bottom:526.838100px;}
.yfa{bottom:531.136800px;}
.y126{bottom:531.455100px;}
.y12{bottom:534.296100px;}
.y15f{bottom:535.997100px;}
.y143{bottom:538.732500px;}
.y9e{bottom:538.787700px;}
.y125{bottom:540.455100px;}
.y189{bottom:540.656700px;}
.y38{bottom:541.544100px;}
.yb8{bottom:544.168200px;}
.y61{bottom:547.087500px;}
.yf7{bottom:549.455100px;}
.y11{bottom:552.296100px;}
.y15e{bottom:555.796950px;}
.yf5{bottom:558.455100px;}
.y142{bottom:558.532500px;}
.y9d{bottom:558.587700px;}
.y188{bottom:558.656700px;}
.y37{bottom:561.392100px;}
.yb9{bottom:562.168200px;}
.y60{bottom:567.337050px;}
.yf4{bottom:567.455100px;}
.y124{bottom:567.773400px;}
.y15d{bottom:575.596950px;}
.y187{bottom:576.656700px;}
.y123{bottom:576.773400px;}
.y141{bottom:578.332500px;}
.y9c{bottom:578.387700px;}
.y10{bottom:578.800050px;}
.yb4{bottom:580.486500px;}
.y36{bottom:581.240250px;}
.yf6{bottom:585.455100px;}
.y5f{bottom:587.586450px;}
.yb6{bottom:589.486500px;}
.y186{bottom:594.656700px;}
.y15c{bottom:595.396950px;}
.y9b{bottom:598.187700px;}
.yb5{bottom:598.486500px;}
.y35{bottom:601.088250px;}
.yf3{bottom:603.773400px;}
.y122{bottom:604.091700px;}
.yb7{bottom:607.486500px;}
.y5e{bottom:607.836000px;}
.y140{bottom:609.429900px;}
.y185{bottom:612.656700px;}
.yf1{bottom:612.773400px;}
.y15b{bottom:615.196950px;}
.yb3{bottom:616.486500px;}
.yf{bottom:616.601550px;}
.y9a{bottom:617.987700px;}
.y34{bottom:620.936250px;}
.yf0{bottom:621.773400px;}
.y121{bottom:622.091700px;}
.y5d{bottom:628.085400px;}
.y184{bottom:630.656700px;}
.y11f{bottom:631.091700px;}
.y15a{bottom:634.997100px;}
.y150{bottom:635.668500px;}
.y99{bottom:637.787700px;}
.yf2{bottom:639.773400px;}
.y120{bottom:640.091700px;}
.y33{bottom:640.784250px;}
.yb2{bottom:645.244200px;}
.y152{bottom:645.391500px;}
.y5c{bottom:648.334950px;}
.y183{bottom:648.656700px;}
.ye{bottom:650.394450px;}
.y159{bottom:654.796950px;}
.y98{bottom:657.587700px;}
.yee{bottom:658.091700px;}
.y32{bottom:660.632250px;}
.yd{bottom:663.898950px;}
.y182{bottom:666.656700px;}
.yed{bottom:667.091700px;}
.y158{bottom:674.596950px;}
.yef{bottom:676.091700px;}
.y11e{bottom:676.410000px;}
.y5b{bottom:679.881900px;}
.y31{bottom:680.480400px;}
.yb1{bottom:683.044350px;}
.y181{bottom:684.656700px;}
.y11d{bottom:685.410000px;}
.yc{bottom:686.394450px;}
.y97{bottom:688.685250px;}
.y157{bottom:694.396950px;}
.yec{bottom:694.410000px;}
.y30{bottom:700.328400px;}
.y180{bottom:702.656700px;}
.yb0{bottom:702.844200px;}
.yea{bottom:703.410000px;}
.y5a{bottom:711.428850px;}
.ye9{bottom:712.410000px;}
.yb{bottom:716.906850px;}
.y2f{bottom:720.176400px;}
.y17f{bottom:720.656700px;}
.yaf{bottom:722.644200px;}
.y156{bottom:725.494500px;}
.yeb{bottom:730.410000px;}
.y11c{bottom:730.728300px;}
.y96{bottom:733.997100px;}
.ya{bottom:737.246850px;}
.y17e{bottom:738.656700px;}
.y11b{bottom:739.728300px;}
.y2e{bottom:740.024400px;}
.yae{bottom:742.444200px;}
.ye7{bottom:748.728300px;}
.y154{bottom:750.197550px;}
.y95{bottom:753.796950px;}
.y17d{bottom:756.656700px;}
.ye6{bottom:757.728300px;}
.y2d{bottom:759.872400px;}
.yad{bottom:762.244200px;}
.ye8{bottom:766.728300px;}
.y59{bottom:769.945950px;}
.y94{bottom:773.596950px;}
.y17c{bottom:774.656700px;}
.y2c{bottom:779.720550px;}
.yac{bottom:782.044350px;}
.ye5{bottom:785.046600px;}
.y58{bottom:790.195500px;}
.y17b{bottom:792.656700px;}
.y9{bottom:792.937650px;}
.y13f{bottom:793.341750px;}
.ye2{bottom:794.046600px;}
.y2b{bottom:799.568550px;}
.y7b{bottom:801.844350px;}
.ye1{bottom:803.046600px;}
.y93{bottom:804.694500px;}
.y57{bottom:810.444900px;}
.y17a{bottom:810.656700px;}
.ye3{bottom:812.046600px;}
.y13e{bottom:813.141750px;}
.y2a{bottom:819.416400px;}
.ye4{bottom:821.046600px;}
.y7a{bottom:821.644200px;}
.y8{bottom:822.937650px;}
.y179{bottom:828.656700px;}
.y56{bottom:830.694450px;}
.y13d{bottom:832.941750px;}
.y29{bottom:839.264400px;}
.ye0{bottom:839.364900px;}
.y79{bottom:841.444200px;}
.y178{bottom:846.656700px;}
.ydd{bottom:848.364900px;}
.y55{bottom:850.943850px;}
.y13c{bottom:852.741750px;}
.y7{bottom:852.937650px;}
.ydc{bottom:857.364900px;}
.y28{bottom:859.112550px;}
.y1a7{bottom:861.032250px;}
.y78{bottom:861.244200px;}
.y177{bottom:864.656700px;}
.yde{bottom:866.364900px;}
.y54{bottom:871.193250px;}
.y92{bottom:872.541750px;}
.ydf{bottom:875.364900px;}
.y27{bottom:878.960550px;}
.y1a6{bottom:879.032250px;}
.y77{bottom:881.044350px;}
.y176{bottom:882.656700px;}
.y53{bottom:891.442800px;}
.y91{bottom:892.341750px;}
.ydb{bottom:893.683200px;}
.y1a5{bottom:897.032250px;}
.y26{bottom:898.808550px;}
.y175{bottom:900.656700px;}
.y76{bottom:900.844350px;}
.y11a{bottom:902.683200px;}
.yd9{bottom:911.683200px;}
.y52{bottom:911.692350px;}
.y90{bottom:912.141750px;}
.y1a4{bottom:915.032250px;}
.y6{bottom:921.248250px;}
.yda{bottom:929.683200px;}
.y25{bottom:929.954100px;}
.y174{bottom:929.954250px;}
.y51{bottom:931.941750px;}
.y1a3{bottom:933.032250px;}
.y2{bottom:946.153950px;}
.y1{bottom:961.153950px;}
.y50{bottom:976.035750px;}
.y24{bottom:978.161700px;}
.h6{height:22.509630px;}
.h19{height:27.832803px;}
.h3{height:29.007000px;}
.h2{height:29.106000px;}
.h1b{height:30.526945px;}
.h13{height:31.507106px;}
.hb{height:32.340000px;}
.h1c{height:33.836937px;}
.h18{height:34.141663px;}
.h11{height:34.923472px;}
.h8{height:36.000000px;}
.h9{height:37.962000px;}
.h7{height:38.610000px;}
.ha{height:40.500000px;}
.hf{height:45.000000px;}
.he{height:46.398000px;}
.hd{height:49.500000px;}
.hc{height:51.861000px;}
.h5{height:52.222950px;}
.h4{height:67.683000px;}
.h14{height:73.962000px;}
.h15{height:76.500000px;}
.h1a{height:102.048000px;}
.h16{height:112.500000px;}
.h17{height:250.995000px;}
.h12{height:336.054000px;}
.h10{height:359.887500px;}
.h1{height:1050.000000px;}
.h0{height:1050.235500px;}
.w3{width:181.849500px;}
.w4{width:181.992000px;}
.w5{width:182.028000px;}
.w6{width:554.599500px;}
.w2{width:557.007000px;}
.w7{width:602.794500px;}
.w1{width:731.250000px;}
.w0{width:731.338500px;}
.x0{left:0.000000px;}
.x15{left:11.129850px;}
.x65{left:12.191550px;}
.x60{left:29.613000px;}
.xf{left:44.732850px;}
.xe{left:53.840850px;}
.x64{left:62.826000px;}
.x3{left:76.535400px;}
.xc{left:78.661350px;}
.x35{left:82.635150px;}
.x31{left:86.010150px;}
.x10{left:87.666000px;}
.x7{left:91.744050px;}
.xa{left:97.795200px;}
.xd{left:102.047250px;}
.x52{left:103.894950px;}
.x18{left:105.649950px;}
.x1d{left:107.269800px;}
.x5{left:109.132950px;}
.x16{left:111.444300px;}
.xb{left:123.307050px;}
.x50{left:125.632950px;}
.x36{left:127.624200px;}
.x53{left:131.989050px;}
.x3f{left:133.915200px;}
.x19{left:138.792750px;}
.x44{left:140.597700px;}
.x9{left:149.278500px;}
.x17{left:150.307050px;}
.x56{left:155.175000px;}
.x5c{left:156.882750px;}
.x11{left:175.449600px;}
.x5f{left:178.576200px;}
.x41{left:200.232750px;}
.x4d{left:202.534800px;}
.x4c{left:204.107250px;}
.x3b{left:205.295100px;}
.x4f{left:207.718650px;}
.x4a{left:209.095350px;}
.x37{left:210.769500px;}
.x40{left:218.228100px;}
.x2b{left:221.627850px;}
.x2a{left:222.849450px;}
.x4e{left:224.545950px;}
.x54{left:227.378700px;}
.x2e{left:228.519450px;}
.x59{left:230.436300px;}
.x38{left:231.525450px;}
.x57{left:236.146950px;}
.x5a{left:241.742400px;}
.x6{left:250.456050px;}
.x2f{left:252.785100px;}
.x12{left:269.523000px;}
.x63{left:272.149200px;}
.x14{left:292.822950px;}
.x8{left:295.704600px;}
.x42{left:299.078700px;}
.x45{left:301.852950px;}
.x4{left:307.063200px;}
.x5d{left:319.197600px;}
.x2c{left:323.112750px;}
.x5e{left:325.468500px;}
.x1a{left:327.290850px;}
.x1c{left:376.228950px;}
.x1b{left:384.868800px;}
.x2{left:439.118700px;}
.x13{left:451.515000px;}
.x1{left:464.454600px;}
.x3e{left:466.807350px;}
.x32{left:468.548550px;}
.x4b{left:469.560900px;}
.x48{left:470.769600px;}
.x3a{left:471.774900px;}
.x43{left:474.616200px;}
.x33{left:476.682150px;}
.x46{left:477.701250px;}
.x39{left:479.004300px;}
.x51{left:480.313800px;}
.x3c{left:483.971400px;}
.x3d{left:485.058150px;}
.x22{left:488.748450px;}
.x58{left:489.963000px;}
.x1f{left:491.110950px;}
.x25{left:493.054500px;}
.x24{left:494.499300px;}
.x27{left:496.456950px;}
.x21{left:497.536350px;}
.x55{left:498.961050px;}
.x1e{left:500.709300px;}
.x49{left:506.448600px;}
.x29{left:507.769200px;}
.x34{left:509.560350px;}
.x20{left:512.494500px;}
.x5b{left:514.546350px;}
.x47{left:517.748100px;}
.x28{left:519.791250px;}
.x26{left:521.843400px;}
.x30{left:523.152600px;}
.x23{left:528.100050px;}
.x2d{left:545.082600px;}
.x62{left:552.969450px;}
.x61{left:626.303850px;}
.x66{left:634.677000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.068800pt;}
.v3{vertical-align:32.000000pt;}
.v4{vertical-align:64.000000pt;}
.ls1d{letter-spacing:-1.968000pt;}
.ls1c{letter-spacing:-1.200000pt;}
.lsb{letter-spacing:-1.114667pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.933333pt;}
.ls1a{letter-spacing:-0.912000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls20{letter-spacing:-0.693333pt;}
.ls15{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.504000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.469333pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.352000pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.164267pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:-0.033600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000043pt;}
.ls21{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.301333pt;}
.ls3{letter-spacing:0.774400pt;}
.lsd{letter-spacing:1.580800pt;}
.ls10{letter-spacing:59.809600pt;}
.lsf{letter-spacing:71.809600pt;}
.lse{letter-spacing:124.657600pt;}
.ls1b{letter-spacing:615.237333pt;}
.ws1d{word-spacing:-15.544533pt;}
.wsb4{word-spacing:-13.434667pt;}
.ws66{word-spacing:-13.317333pt;}
.ws6e{word-spacing:-12.965333pt;}
.ws6d{word-spacing:-12.261333pt;}
.wsc1{word-spacing:-12.106667pt;}
.ws81{word-spacing:-10.896000pt;}
.ws98{word-spacing:-10.704000pt;}
.ws5{word-spacing:-10.416000pt;}
.ws92{word-spacing:-10.368000pt;}
.ws6f{word-spacing:-10.224000pt;}
.ws7f{word-spacing:-10.176000pt;}
.ws70{word-spacing:-10.032000pt;}
.wsa6{word-spacing:-9.984000pt;}
.ws88{word-spacing:-9.936000pt;}
.ws3{word-spacing:-9.685333pt;}
.ws6{word-spacing:-9.408000pt;}
.ws0{word-spacing:-8.937600pt;}
.wsa5{word-spacing:-8.928000pt;}
.ws4{word-spacing:-8.467200pt;}
.ws1{word-spacing:-7.975751pt;}
.ws2{word-spacing:-6.408336pt;}
.wsde{word-spacing:-2.720000pt;}
.ws48{word-spacing:-2.640000pt;}
.ws35{word-spacing:-2.581333pt;}
.ws3e{word-spacing:-2.522667pt;}
.ws42{word-spacing:-2.405333pt;}
.ws36{word-spacing:-2.288000pt;}
.wsb9{word-spacing:-2.229333pt;}
.wscf{word-spacing:-2.186667pt;}
.ws6c{word-spacing:-2.170667pt;}
.ws5e{word-spacing:-1.936000pt;}
.wsce{word-spacing:-1.920000pt;}
.wsb7{word-spacing:-1.818667pt;}
.wsb6{word-spacing:-1.584000pt;}
.ws25{word-spacing:-1.466667pt;}
.ws55{word-spacing:-1.349333pt;}
.wsc9{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.114667pt;}
.wscd{word-spacing:-1.066667pt;}
.ws1f{word-spacing:-1.056000pt;}
.ws44{word-spacing:-0.997333pt;}
.ws2f{word-spacing:-0.938667pt;}
.wsf{word-spacing:-0.896000pt;}
.ws27{word-spacing:-0.880000pt;}
.ws12{word-spacing:-0.864000pt;}
.ws45{word-spacing:-0.821333pt;}
.wsa{word-spacing:-0.806400pt;}
.ws14{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.762667pt;}
.wsb{word-spacing:-0.668800pt;}
.ws34{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.480000pt;}
.ws2e{word-spacing:-0.410667pt;}
.ws56{word-spacing:-0.352000pt;}
.wsd{word-spacing:-0.301333pt;}
.ws23{word-spacing:-0.293333pt;}
.wsda{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.192000pt;}
.ws64{word-spacing:-0.176000pt;}
.ws24{word-spacing:-0.117333pt;}
.ws99{word-spacing:-0.096000pt;}
.wsb3{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:0.033600pt;}
.ws4d{word-spacing:0.058667pt;}
.ws50{word-spacing:0.117333pt;}
.wsdd{word-spacing:0.160000pt;}
.wsc{word-spacing:0.164267pt;}
.wsaf{word-spacing:0.192000pt;}
.ws67{word-spacing:0.234667pt;}
.wsc0{word-spacing:0.293333pt;}
.ws1b{word-spacing:0.336000pt;}
.ws22{word-spacing:0.352000pt;}
.wsdb{word-spacing:0.373333pt;}
.ws4a{word-spacing:0.469333pt;}
.wsae{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.528000pt;}
.ws39{word-spacing:0.586667pt;}
.ws6b{word-spacing:0.645333pt;}
.wsbb{word-spacing:0.693333pt;}
.ws2d{word-spacing:0.704000pt;}
.wsad{word-spacing:0.768000pt;}
.ws3b{word-spacing:0.938667pt;}
.ws82{word-spacing:1.056000pt;}
.ws51{word-spacing:1.114667pt;}
.wsdf{word-spacing:1.120000pt;}
.ws2a{word-spacing:1.173333pt;}
.wsd6{word-spacing:1.280000pt;}
.wsbe{word-spacing:1.290667pt;}
.wsd2{word-spacing:1.386667pt;}
.ws11{word-spacing:1.392000pt;}
.ws28{word-spacing:1.408000pt;}
.ws53{word-spacing:1.466667pt;}
.wsdc{word-spacing:1.493333pt;}
.ws65{word-spacing:1.525333pt;}
.wsd5{word-spacing:1.600000pt;}
.ws5b{word-spacing:1.642667pt;}
.ws26{word-spacing:1.701333pt;}
.wsbf{word-spacing:1.760000pt;}
.ws58{word-spacing:1.818667pt;}
.wsc2{word-spacing:1.866667pt;}
.ws21{word-spacing:1.877333pt;}
.ws2c{word-spacing:1.994667pt;}
.ws4f{word-spacing:2.053333pt;}
.ws63{word-spacing:2.229333pt;}
.ws18{word-spacing:2.304000pt;}
.ws57{word-spacing:2.346667pt;}
.wsc8{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.405333pt;}
.ws17{word-spacing:2.448000pt;}
.ws61{word-spacing:2.522667pt;}
.ws19{word-spacing:2.544000pt;}
.ws6a{word-spacing:2.581333pt;}
.wsb5{word-spacing:2.640000pt;}
.wsc3{word-spacing:2.720000pt;}
.ws62{word-spacing:2.816000pt;}
.ws38{word-spacing:2.874667pt;}
.wsb8{word-spacing:2.933333pt;}
.ws69{word-spacing:2.992000pt;}
.ws60{word-spacing:3.050667pt;}
.ws68{word-spacing:3.168000pt;}
.ws3a{word-spacing:3.285333pt;}
.wsca{word-spacing:3.360000pt;}
.ws10{word-spacing:3.456000pt;}
.ws5f{word-spacing:3.461333pt;}
.wsd7{word-spacing:3.466667pt;}
.ws59{word-spacing:3.578667pt;}
.wsc4{word-spacing:3.626667pt;}
.ws3c{word-spacing:3.696000pt;}
.ws2b{word-spacing:3.872000pt;}
.wse{word-spacing:3.936000pt;}
.ws3d{word-spacing:3.989333pt;}
.ws31{word-spacing:4.048000pt;}
.ws54{word-spacing:4.224000pt;}
.wsd9{word-spacing:4.266667pt;}
.wsba{word-spacing:4.282667pt;}
.ws29{word-spacing:4.341333pt;}
.ws3f{word-spacing:4.400000pt;}
.wscb{word-spacing:4.426667pt;}
.ws5a{word-spacing:4.458667pt;}
.wsd3{word-spacing:4.480000pt;}
.ws37{word-spacing:4.517333pt;}
.wsd1{word-spacing:4.640000pt;}
.ws15{word-spacing:4.752000pt;}
.ws1c{word-spacing:4.800000pt;}
.ws30{word-spacing:4.810667pt;}
.wsb1{word-spacing:4.986667pt;}
.wsb2{word-spacing:5.104000pt;}
.wsbc{word-spacing:5.162667pt;}
.ws52{word-spacing:5.280000pt;}
.wsc6{word-spacing:5.333333pt;}
.ws5c{word-spacing:5.397333pt;}
.wsd0{word-spacing:5.493333pt;}
.ws4e{word-spacing:5.573333pt;}
.ws49{word-spacing:5.632000pt;}
.wsbd{word-spacing:5.690667pt;}
.wsb0{word-spacing:5.808000pt;}
.ws4c{word-spacing:5.925333pt;}
.wsc7{word-spacing:6.026667pt;}
.ws4b{word-spacing:6.042667pt;}
.ws47{word-spacing:6.160000pt;}
.ws46{word-spacing:6.218667pt;}
.wsc5{word-spacing:6.240000pt;}
.ws43{word-spacing:6.453333pt;}
.wsd4{word-spacing:6.666667pt;}
.ws9{word-spacing:6.720000pt;}
.ws32{word-spacing:6.805333pt;}
.ws41{word-spacing:7.216000pt;}
.ws5d{word-spacing:7.274667pt;}
.wscc{word-spacing:7.306667pt;}
.wsd8{word-spacing:7.733333pt;}
.ws20{word-spacing:8.096000pt;}
.ws91{word-spacing:25.723200pt;}
.ws9b{word-spacing:33.913067pt;}
.ws95{word-spacing:34.465067pt;}
.ws93{word-spacing:34.585067pt;}
.ws83{word-spacing:43.989867pt;}
.ws97{word-spacing:45.481067pt;}
.ws9c{word-spacing:50.113600pt;}
.ws85{word-spacing:50.209067pt;}
.ws7d{word-spacing:52.681600pt;}
.ws87{word-spacing:54.601600pt;}
.ws90{word-spacing:57.480533pt;}
.wsa4{word-spacing:58.753067pt;}
.ws7e{word-spacing:62.330133pt;}
.ws73{word-spacing:62.613867pt;}
.ws7a{word-spacing:69.697600pt;}
.ws72{word-spacing:73.873600pt;}
.ws8d{word-spacing:79.320533pt;}
.ws8f{word-spacing:86.988800pt;}
.ws7b{word-spacing:91.508800pt;}
.ws8b{word-spacing:92.425600pt;}
.ws9a{word-spacing:105.024533pt;}
.ws89{word-spacing:105.384533pt;}
.ws74{word-spacing:113.545067pt;}
.ws75{word-spacing:115.941333pt;}
.ws94{word-spacing:117.024533pt;}
.ws79{word-spacing:117.741333pt;}
.ws9d{word-spacing:119.712533pt;}
.ws8c{word-spacing:121.579733pt;}
.wsa1{word-spacing:129.361067pt;}
.ws77{word-spacing:139.512533pt;}
.ws76{word-spacing:140.064533pt;}
.ws84{word-spacing:140.065067pt;}
.ws7c{word-spacing:151.032533pt;}
.ws9f{word-spacing:151.413333pt;}
.ws86{word-spacing:159.789333pt;}
.ws80{word-spacing:159.789867pt;}
.ws78{word-spacing:166.362667pt;}
.wsa3{word-spacing:173.876800pt;}
.ws71{word-spacing:193.141333pt;}
.ws9e{word-spacing:207.835200pt;}
.wsa2{word-spacing:227.059200pt;}
.ws8e{word-spacing:309.385600pt;}
.wsa0{word-spacing:309.386133pt;}
.ws96{word-spacing:320.905600pt;}
.wsab{word-spacing:348.405867pt;}
.wsaa{word-spacing:350.277867pt;}
.wsa9{word-spacing:351.674667pt;}
.wsa8{word-spacing:386.570667pt;}
.wsa7{word-spacing:454.101867pt;}
.ws8a{word-spacing:456.830400pt;}
.wsac{word-spacing:604.341333pt;}
._8{margin-left:-10.361707pt;}
._22{margin-left:-8.418667pt;}
._6{margin-left:-7.327573pt;}
._5{margin-left:-5.881024pt;}
._7{margin-left:-4.666880pt;}
._1{margin-left:-3.764160pt;}
._2{margin-left:-2.688000pt;}
._0{margin-left:-0.960960pt;}
._4{width:1.249600pt;}
._9{width:2.221120pt;}
._3{width:6.677227pt;}
._10{width:37.584533pt;}
._d{width:59.861333pt;}
._14{width:68.357547pt;}
._19{width:71.112533pt;}
._e{width:80.466667pt;}
._15{width:82.015573pt;}
._1a{width:82.915627pt;}
._1c{width:85.796693pt;}
._f{width:87.982293pt;}
._1b{width:90.837760pt;}
._13{width:96.811200pt;}
._17{width:100.571733pt;}
._11{width:103.219200pt;}
._12{width:165.475200pt;}
._20{width:297.264427pt;}
._18{width:302.304427pt;}
._b{width:311.264427pt;}
._a{width:312.421760pt;}
._1e{width:403.413333pt;}
._1d{width:487.017067pt;}
._16{width:499.912853pt;}
._21{width:577.436133pt;}
._c{width:597.116400pt;}
._1f{width:615.237333pt;}
.fs5{font-size:27.984000pt;}
.fs0{font-size:33.600000pt;}
.fs4{font-size:35.135467pt;}
.fs1{font-size:35.200000pt;}
.fsf{font-size:37.119467pt;}
.fs8{font-size:37.333333pt;}
.fs10{font-size:40.712533pt;}
.fsd{font-size:42.019733pt;}
.fs7{font-size:42.666667pt;}
.fs11{font-size:45.126933pt;}
.fse{font-size:45.533333pt;}
.fsc{font-size:46.576000pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs3{font-size:60.266667pt;}
.fs9{font-size:62.933333pt;}
.fs2{font-size:82.133333pt;}
.yaa{bottom:-33.472400pt;}
.ya9{bottom:-19.044133pt;}
.y14f{bottom:-5.041200pt;}
.ya8{bottom:-4.109467pt;}
.y153{bottom:-3.865333pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:1.898400pt;}
.ya7{bottom:2.025067pt;}
.y14e{bottom:5.476000pt;}
.y5{bottom:63.581067pt;}
.y4{bottom:74.781067pt;}
.y4f{bottom:75.590533pt;}
.y173{bottom:76.604267pt;}
.y13b{bottom:77.206533pt;}
.y155{bottom:77.235867pt;}
.y8f{bottom:77.815600pt;}
.ya1{bottom:80.070533pt;}
.y1a2{bottom:80.583733pt;}
.yd8{bottom:81.724533pt;}
.y3{bottom:85.981067pt;}
.y151{bottom:87.267333pt;}
.y4e{bottom:93.233333pt;}
.y75{bottom:93.590133pt;}
.y172{bottom:94.204400pt;}
.y13a{bottom:94.806533pt;}
.y8e{bottom:95.415600pt;}
.y1a1{bottom:96.583733pt;}
.yd5{bottom:97.724533pt;}
.y119{bottom:102.424133pt;}
.ya2{bottom:104.352000pt;}
.y14b{bottom:105.522667pt;}
.yd4{bottom:105.724533pt;}
.ya5{bottom:110.114667pt;}
.y4d{bottom:110.876000pt;}
.y14d{bottom:110.998667pt;}
.y74{bottom:111.589733pt;}
.y171{bottom:111.804267pt;}
.y139{bottom:112.406533pt;}
.y1a0{bottom:112.583733pt;}
.y8d{bottom:113.015600pt;}
.yd6{bottom:113.724533pt;}
.y117{bottom:118.424133pt;}
.y4c{bottom:128.518667pt;}
.y19f{bottom:128.583733pt;}
.y170{bottom:129.404267pt;}
.y73{bottom:129.589200pt;}
.yd7{bottom:129.724533pt;}
.y138{bottom:130.006533pt;}
.y8c{bottom:130.615600pt;}
.y118{bottom:134.424133pt;}
.y19e{bottom:144.583733pt;}
.yd3{bottom:146.007467pt;}
.y23{bottom:146.110800pt;}
.y4b{bottom:146.161333pt;}
.y137{bottom:147.606533pt;}
.y8b{bottom:148.215600pt;}
.y116{bottom:150.706933pt;}
.ycf{bottom:154.007467pt;}
.y16f{bottom:157.046533pt;}
.y72{bottom:157.630933pt;}
.y114{bottom:158.706933pt;}
.y19d{bottom:160.583733pt;}
.yd2{bottom:162.007467pt;}
.y22{bottom:162.110800pt;}
.y4a{bottom:163.804133pt;}
.y8a{bottom:165.815600pt;}
.y113{bottom:166.706933pt;}
.ycd{bottom:170.007467pt;}
.y19c{bottom:176.583733pt;}
.yd1{bottom:178.007467pt;}
.y21{bottom:178.110800pt;}
.y49{bottom:181.446800pt;}
.y115{bottom:182.706933pt;}
.y89{bottom:183.415600pt;}
.yce{bottom:186.007467pt;}
.y136{bottom:189.145067pt;}
.y19b{bottom:192.583733pt;}
.yd0{bottom:194.007467pt;}
.y71{bottom:198.307600pt;}
.y112{bottom:198.989867pt;}
.y48{bottom:199.089467pt;}
.y88{bottom:201.015600pt;}
.y135{bottom:205.428000pt;}
.y10f{bottom:206.989867pt;}
.y19a{bottom:208.583733pt;}
.y20{bottom:210.110800pt;}
.ycc{bottom:210.290400pt;}
.y16e{bottom:212.441867pt;}
.y10e{bottom:214.989867pt;}
.y70{bottom:216.307067pt;}
.y47{bottom:216.732133pt;}
.y87{bottom:218.615600pt;}
.y134{bottom:221.710933pt;}
.y110{bottom:222.989867pt;}
.y199{bottom:224.583733pt;}
.y1f{bottom:226.110800pt;}
.yca{bottom:226.290400pt;}
.y14c{bottom:226.512000pt;}
.y16d{bottom:230.041733pt;}
.y111{bottom:230.989867pt;}
.y6f{bottom:234.306667pt;}
.y46{bottom:234.374800pt;}
.y86{bottom:236.215600pt;}
.y133{bottom:237.993867pt;}
.y198{bottom:240.583733pt;}
.y1e{bottom:242.110800pt;}
.ycb{bottom:242.290400pt;}
.y10b{bottom:247.272933pt;}
.y16c{bottom:247.641867pt;}
.y45{bottom:252.017600pt;}
.y6e{bottom:252.306133pt;}
.y85{bottom:253.815600pt;}
.y132{bottom:254.276800pt;}
.yab{bottom:256.581867pt;}
.y197{bottom:256.583733pt;}
.y1d{bottom:258.110800pt;}
.yc9{bottom:258.573333pt;}
.y10a{bottom:263.272933pt;}
.y16b{bottom:265.241733pt;}
.yc8{bottom:266.573333pt;}
.y44{bottom:269.660267pt;}
.y6d{bottom:270.305733pt;}
.y131{bottom:270.559733pt;}
.y10d{bottom:271.272933pt;}
.y84{bottom:271.415600pt;}
.y196{bottom:272.583733pt;}
.y1c{bottom:274.110800pt;}
.y106{bottom:279.272933pt;}
.y16a{bottom:282.841733pt;}
.y130{bottom:286.842667pt;}
.y105{bottom:287.272933pt;}
.y43{bottom:287.302933pt;}
.y6c{bottom:288.305200pt;}
.y195{bottom:288.583733pt;}
.y83{bottom:289.015600pt;}
.y1b{bottom:290.110800pt;}
.yc7{bottom:290.856267pt;}
.y109{bottom:295.272933pt;}
.y169{bottom:300.441867pt;}
.y12f{bottom:303.125600pt;}
.y10c{bottom:303.272933pt;}
.y194{bottom:304.583733pt;}
.y42{bottom:304.945600pt;}
.y1a{bottom:306.110800pt;}
.y6b{bottom:306.304800pt;}
.y82{bottom:306.615600pt;}
.yc6{bottom:306.856267pt;}
.ya4{bottom:308.917200pt;}
.y108{bottom:311.272933pt;}
.yc3{bottom:314.856267pt;}
.y168{bottom:318.041733pt;}
.y12e{bottom:319.408533pt;}
.y193{bottom:320.583733pt;}
.y19{bottom:322.110800pt;}
.y41{bottom:322.588400pt;}
.yc5{bottom:322.856267pt;}
.y81{bottom:324.215600pt;}
.y6a{bottom:324.304267pt;}
.ya3{bottom:324.379067pt;}
.y107{bottom:327.272933pt;}
.y167{bottom:335.641867pt;}
.y12d{bottom:336.008533pt;}
.y192{bottom:336.583733pt;}
.y18{bottom:338.110800pt;}
.yc4{bottom:338.856267pt;}
.y40{bottom:340.230933pt;}
.y80{bottom:341.815600pt;}
.y69{bottom:342.303867pt;}
.y104{bottom:343.555733pt;}
.y101{bottom:351.555733pt;}
.y12c{bottom:352.291467pt;}
.y191{bottom:352.583733pt;}
.y166{bottom:353.241733pt;}
.y17{bottom:354.110800pt;}
.yc2{bottom:355.139200pt;}
.y14a{bottom:355.673333pt;}
.y3f{bottom:357.873733pt;}
.y7f{bottom:359.415600pt;}
.y100{bottom:359.555733pt;}
.y68{bottom:360.303333pt;}
.y102{bottom:367.555733pt;}
.y12b{bottom:368.574400pt;}
.y190{bottom:368.583733pt;}
.y16{bottom:370.110800pt;}
.y165{bottom:370.841733pt;}
.yc1{bottom:371.139200pt;}
.y149{bottom:373.273333pt;}
.y3e{bottom:375.516400pt;}
.y103{bottom:375.555733pt;}
.y7e{bottom:377.015600pt;}
.y67{bottom:378.302933pt;}
.ybe{bottom:379.139200pt;}
.y18f{bottom:384.583733pt;}
.y15{bottom:386.110800pt;}
.y12a{bottom:386.841067pt;}
.yc0{bottom:387.139200pt;}
.y164{bottom:388.441867pt;}
.y148{bottom:390.873333pt;}
.yff{bottom:391.838667pt;}
.y3d{bottom:393.159067pt;}
.y7d{bottom:394.615600pt;}
.y66{bottom:396.302400pt;}
.yfd{bottom:399.838667pt;}
.y18e{bottom:400.583733pt;}
.y14{bottom:402.110800pt;}
.y129{bottom:403.124000pt;}
.ybf{bottom:403.139200pt;}
.y163{bottom:406.041733pt;}
.yfc{bottom:407.838667pt;}
.y147{bottom:408.473333pt;}
.y3c{bottom:410.801733pt;}
.y65{bottom:414.302000pt;}
.y18d{bottom:416.583733pt;}
.ybd{bottom:419.422133pt;}
.y162{bottom:423.641867pt;}
.yfe{bottom:423.838667pt;}
.y146{bottom:426.073333pt;}
.y3b{bottom:428.444533pt;}
.y128{bottom:428.853200pt;}
.y64{bottom:432.301467pt;}
.y18c{bottom:432.583733pt;}
.ybb{bottom:435.422133pt;}
.y7c{bottom:437.374667pt;}
.yfb{bottom:440.121600pt;}
.y161{bottom:441.241733pt;}
.y145{bottom:443.673333pt;}
.ya0{bottom:443.722400pt;}
.y3a{bottom:446.087200pt;}
.yf9{bottom:448.121600pt;}
.y18b{bottom:448.583733pt;}
.y63{bottom:450.300933pt;}
.ybc{bottom:451.422133pt;}
.yf8{bottom:456.121600pt;}
.y127{bottom:456.191733pt;}
.y160{bottom:458.841733pt;}
.y13{bottom:458.929867pt;}
.y144{bottom:461.273333pt;}
.y9f{bottom:461.322400pt;}
.y39{bottom:463.729867pt;}
.y18a{bottom:464.583733pt;}
.yba{bottom:467.705067pt;}
.y62{bottom:468.300533pt;}
.yfa{bottom:472.121600pt;}
.y126{bottom:472.404533pt;}
.y12{bottom:474.929867pt;}
.y15f{bottom:476.441867pt;}
.y143{bottom:478.873333pt;}
.y9e{bottom:478.922400pt;}
.y125{bottom:480.404533pt;}
.y189{bottom:480.583733pt;}
.y38{bottom:481.372533pt;}
.yb8{bottom:483.705067pt;}
.y61{bottom:486.300000pt;}
.yf7{bottom:488.404533pt;}
.y11{bottom:490.929867pt;}
.y15e{bottom:494.041733pt;}
.yf5{bottom:496.404533pt;}
.y142{bottom:496.473333pt;}
.y9d{bottom:496.522400pt;}
.y188{bottom:496.583733pt;}
.y37{bottom:499.015200pt;}
.yb9{bottom:499.705067pt;}
.y60{bottom:504.299600pt;}
.yf4{bottom:504.404533pt;}
.y124{bottom:504.687467pt;}
.y15d{bottom:511.641733pt;}
.y187{bottom:512.583733pt;}
.y123{bottom:512.687467pt;}
.y141{bottom:514.073333pt;}
.y9c{bottom:514.122400pt;}
.y10{bottom:514.488933pt;}
.yb4{bottom:515.988000pt;}
.y36{bottom:516.658000pt;}
.yf6{bottom:520.404533pt;}
.y5f{bottom:522.299067pt;}
.yb6{bottom:523.988000pt;}
.y186{bottom:528.583733pt;}
.y15c{bottom:529.241733pt;}
.y9b{bottom:531.722400pt;}
.yb5{bottom:531.988000pt;}
.y35{bottom:534.300667pt;}
.yf3{bottom:536.687467pt;}
.y122{bottom:536.970400pt;}
.yb7{bottom:539.988000pt;}
.y5e{bottom:540.298667pt;}
.y140{bottom:541.715467pt;}
.y185{bottom:544.583733pt;}
.yf1{bottom:544.687467pt;}
.y15b{bottom:546.841733pt;}
.yb3{bottom:547.988000pt;}
.yf{bottom:548.090267pt;}
.y9a{bottom:549.322400pt;}
.y34{bottom:551.943333pt;}
.yf0{bottom:552.687467pt;}
.y121{bottom:552.970400pt;}
.y5d{bottom:558.298133pt;}
.y184{bottom:560.583733pt;}
.y11f{bottom:560.970400pt;}
.y15a{bottom:564.441867pt;}
.y150{bottom:565.038667pt;}
.y99{bottom:566.922400pt;}
.yf2{bottom:568.687467pt;}
.y120{bottom:568.970400pt;}
.y33{bottom:569.586000pt;}
.yb2{bottom:573.550400pt;}
.y152{bottom:573.681333pt;}
.y5c{bottom:576.297733pt;}
.y183{bottom:576.583733pt;}
.ye{bottom:578.128400pt;}
.y159{bottom:582.041733pt;}
.y98{bottom:584.522400pt;}
.yee{bottom:584.970400pt;}
.y32{bottom:587.228667pt;}
.yd{bottom:590.132400pt;}
.y182{bottom:592.583733pt;}
.yed{bottom:592.970400pt;}
.y158{bottom:599.641733pt;}
.yef{bottom:600.970400pt;}
.y11e{bottom:601.253333pt;}
.y5b{bottom:604.339467pt;}
.y31{bottom:604.871467pt;}
.yb1{bottom:607.150533pt;}
.y181{bottom:608.583733pt;}
.y11d{bottom:609.253333pt;}
.yc{bottom:610.128400pt;}
.y97{bottom:612.164667pt;}
.y157{bottom:617.241733pt;}
.yec{bottom:617.253333pt;}
.y30{bottom:622.514133pt;}
.y180{bottom:624.583733pt;}
.yb0{bottom:624.750400pt;}
.yea{bottom:625.253333pt;}
.y5a{bottom:632.381200pt;}
.ye9{bottom:633.253333pt;}
.yb{bottom:637.250533pt;}
.y2f{bottom:640.156800pt;}
.y17f{bottom:640.583733pt;}
.yaf{bottom:642.350400pt;}
.y156{bottom:644.884000pt;}
.yeb{bottom:649.253333pt;}
.y11c{bottom:649.536267pt;}
.y96{bottom:652.441867pt;}
.ya{bottom:655.330533pt;}
.y17e{bottom:656.583733pt;}
.y11b{bottom:657.536267pt;}
.y2e{bottom:657.799467pt;}
.yae{bottom:659.950400pt;}
.ye7{bottom:665.536267pt;}
.y154{bottom:666.842267pt;}
.y95{bottom:670.041733pt;}
.y17d{bottom:672.583733pt;}
.ye6{bottom:673.536267pt;}
.y2d{bottom:675.442133pt;}
.yad{bottom:677.550400pt;}
.ye8{bottom:681.536267pt;}
.y59{bottom:684.396400pt;}
.y94{bottom:687.641733pt;}
.y17c{bottom:688.583733pt;}
.y2c{bottom:693.084933pt;}
.yac{bottom:695.150533pt;}
.ye5{bottom:697.819200pt;}
.y58{bottom:702.396000pt;}
.y17b{bottom:704.583733pt;}
.y9{bottom:704.833467pt;}
.y13f{bottom:705.192667pt;}
.ye2{bottom:705.819200pt;}
.y2b{bottom:710.727600pt;}
.y7b{bottom:712.750533pt;}
.ye1{bottom:713.819200pt;}
.y93{bottom:715.284000pt;}
.y57{bottom:720.395467pt;}
.y17a{bottom:720.583733pt;}
.ye3{bottom:721.819200pt;}
.y13e{bottom:722.792667pt;}
.y2a{bottom:728.370133pt;}
.ye4{bottom:729.819200pt;}
.y7a{bottom:730.350400pt;}
.y8{bottom:731.500133pt;}
.y179{bottom:736.583733pt;}
.y56{bottom:738.395067pt;}
.y13d{bottom:740.392667pt;}
.y29{bottom:746.012800pt;}
.ye0{bottom:746.102133pt;}
.y79{bottom:747.950400pt;}
.y178{bottom:752.583733pt;}
.ydd{bottom:754.102133pt;}
.y55{bottom:756.394533pt;}
.y13c{bottom:757.992667pt;}
.y7{bottom:758.166800pt;}
.ydc{bottom:762.102133pt;}
.y28{bottom:763.655600pt;}
.y1a7{bottom:765.362000pt;}
.y78{bottom:765.550400pt;}
.y177{bottom:768.583733pt;}
.yde{bottom:770.102133pt;}
.y54{bottom:774.394000pt;}
.y92{bottom:775.592667pt;}
.ydf{bottom:778.102133pt;}
.y27{bottom:781.298267pt;}
.y1a6{bottom:781.362000pt;}
.y77{bottom:783.150533pt;}
.y176{bottom:784.583733pt;}
.y53{bottom:792.393600pt;}
.y91{bottom:793.192667pt;}
.ydb{bottom:794.385067pt;}
.y1a5{bottom:797.362000pt;}
.y26{bottom:798.940933pt;}
.y175{bottom:800.583733pt;}
.y76{bottom:800.750533pt;}
.y11a{bottom:802.385067pt;}
.yd9{bottom:810.385067pt;}
.y52{bottom:810.393200pt;}
.y90{bottom:810.792667pt;}
.y1a4{bottom:813.362000pt;}
.y6{bottom:818.887333pt;}
.yda{bottom:826.385067pt;}
.y25{bottom:826.625867pt;}
.y174{bottom:826.626000pt;}
.y51{bottom:828.392667pt;}
.y1a3{bottom:829.362000pt;}
.y2{bottom:841.025733pt;}
.y1{bottom:854.359067pt;}
.y50{bottom:867.587333pt;}
.y24{bottom:869.477067pt;}
.h6{height:20.008560pt;}
.h19{height:24.740270pt;}
.h3{height:25.784000pt;}
.h2{height:25.872000pt;}
.h1b{height:27.135063pt;}
.h13{height:28.006316pt;}
.hb{height:28.746667pt;}
.h1c{height:30.077277pt;}
.h18{height:30.348145pt;}
.h11{height:31.043086pt;}
.h8{height:32.000000pt;}
.h9{height:33.744000pt;}
.h7{height:34.320000pt;}
.ha{height:36.000000pt;}
.hf{height:40.000000pt;}
.he{height:41.242667pt;}
.hd{height:44.000000pt;}
.hc{height:46.098667pt;}
.h5{height:46.420400pt;}
.h4{height:60.162667pt;}
.h14{height:65.744000pt;}
.h15{height:68.000000pt;}
.h1a{height:90.709333pt;}
.h16{height:100.000000pt;}
.h17{height:223.106667pt;}
.h12{height:298.714667pt;}
.h10{height:319.900000pt;}
.h1{height:933.333333pt;}
.h0{height:933.542667pt;}
.w3{width:161.644000pt;}
.w4{width:161.770667pt;}
.w5{width:161.802667pt;}
.w6{width:492.977333pt;}
.w2{width:495.117333pt;}
.w7{width:535.817333pt;}
.w1{width:650.000000pt;}
.w0{width:650.078667pt;}
.x0{left:0.000000pt;}
.x15{left:9.893200pt;}
.x65{left:10.836933pt;}
.x60{left:26.322667pt;}
.xf{left:39.762533pt;}
.xe{left:47.858533pt;}
.x64{left:55.845333pt;}
.x3{left:68.031467pt;}
.xc{left:69.921200pt;}
.x35{left:73.453467pt;}
.x31{left:76.453467pt;}
.x10{left:77.925333pt;}
.x7{left:81.550267pt;}
.xa{left:86.929067pt;}
.xd{left:90.708667pt;}
.x52{left:92.351067pt;}
.x18{left:93.911067pt;}
.x1d{left:95.350933pt;}
.x5{left:97.007067pt;}
.x16{left:99.061600pt;}
.xb{left:109.606267pt;}
.x50{left:111.673733pt;}
.x36{left:113.443733pt;}
.x53{left:117.323600pt;}
.x3f{left:119.035733pt;}
.x19{left:123.371333pt;}
.x44{left:124.975733pt;}
.x9{left:132.692000pt;}
.x17{left:133.606267pt;}
.x56{left:137.933333pt;}
.x5c{left:139.451333pt;}
.x11{left:155.955200pt;}
.x5f{left:158.734400pt;}
.x41{left:177.984667pt;}
.x4d{left:180.030933pt;}
.x4c{left:181.428667pt;}
.x3b{left:182.484533pt;}
.x4f{left:184.638800pt;}
.x4a{left:185.862533pt;}
.x37{left:187.350667pt;}
.x40{left:193.980533pt;}
.x2b{left:197.002533pt;}
.x2a{left:198.088400pt;}
.x4e{left:199.596400pt;}
.x54{left:202.114400pt;}
.x2e{left:203.128400pt;}
.x59{left:204.832267pt;}
.x38{left:205.800400pt;}
.x57{left:209.908400pt;}
.x5a{left:214.882133pt;}
.x6{left:222.627600pt;}
.x2f{left:224.697867pt;}
.x12{left:239.576000pt;}
.x63{left:241.910400pt;}
.x14{left:260.287067pt;}
.x8{left:262.848533pt;}
.x42{left:265.847733pt;}
.x45{left:268.313733pt;}
.x4{left:272.945067pt;}
.x5d{left:283.731200pt;}
.x2c{left:287.211333pt;}
.x5e{left:289.305333pt;}
.x1a{left:290.925200pt;}
.x1c{left:334.425733pt;}
.x1b{left:342.105600pt;}
.x2{left:390.327733pt;}
.x13{left:401.346667pt;}
.x1{left:412.848533pt;}
.x3e{left:414.939867pt;}
.x32{left:416.487600pt;}
.x4b{left:417.387467pt;}
.x48{left:418.461867pt;}
.x3a{left:419.355467pt;}
.x43{left:421.881067pt;}
.x33{left:423.717467pt;}
.x46{left:424.623333pt;}
.x39{left:425.781600pt;}
.x51{left:426.945600pt;}
.x3c{left:430.196800pt;}
.x3d{left:431.162800pt;}
.x22{left:434.443067pt;}
.x58{left:435.522667pt;}
.x1f{left:436.543067pt;}
.x25{left:438.270667pt;}
.x24{left:439.554933pt;}
.x27{left:441.295067pt;}
.x21{left:442.254533pt;}
.x55{left:443.520933pt;}
.x1e{left:445.074933pt;}
.x49{left:450.176533pt;}
.x29{left:451.350400pt;}
.x34{left:452.942533pt;}
.x20{left:455.550667pt;}
.x5b{left:457.374533pt;}
.x47{left:460.220533pt;}
.x28{left:462.036667pt;}
.x26{left:463.860800pt;}
.x30{left:465.024533pt;}
.x23{left:469.422267pt;}
.x2d{left:484.517867pt;}
.x62{left:491.528400pt;}
.x61{left:556.714533pt;}
.x66{left:564.157333pt;}
}




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