
    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_8de244e3c8fddbf51db44f36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038000;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_78ff38417018df8834d02cc4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.089000;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_c650011c22bb018a2722e8ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038000;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_3043d0f5ce68dcf990481c9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_361750e724e9302aa9d37b3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_a07c74ca8e6cde2bcf29ba11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.993000;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_4a63bf7248935faf625ff95c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.092000;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_64715258ccbefc775105c154.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.113000;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_0fea7d76dcf99d7f74240cf2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084000;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;}
.m5{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m7{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.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);}
.m9{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.978600px;}
.ls18{letter-spacing:-0.672000px;}
.lsa{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.642000px;}
.ls10{letter-spacing:-0.600000px;}
.ls26{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.396000px;}
.ls17{letter-spacing:-0.384000px;}
.lse{letter-spacing:-0.330000px;}
.ls11{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.252000px;}
.ls1d{letter-spacing:-0.132000px;}
.ls1a{letter-spacing:-0.066000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.329400px;}
.ls14{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.462000px;}
.ls27{letter-spacing:0.550800px;}
.lsf{letter-spacing:0.599400px;}
.lsb{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.960000px;}
.ls15{letter-spacing:0.990000px;}
.ls1{letter-spacing:1.174200px;}
.ls7{letter-spacing:1.500000px;}
.ls13{letter-spacing:1.680000px;}
.ls1e{letter-spacing:2.393400px;}
.ls3{letter-spacing:2.496000px;}
.ls4{letter-spacing:2.607600px;}
.ls1f{letter-spacing:4.365600px;}
.ls16{letter-spacing:4.492200px;}
.ls1b{letter-spacing:4.551600px;}
.ls24{letter-spacing:5.151600px;}
.ls2{letter-spacing:5.215200px;}
.ls21{letter-spacing:8.092800px;}
.ls22{letter-spacing:8.629200px;}
.ls25{letter-spacing:11.488800px;}
.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;}
}
.ws1{word-spacing:-62.060880px;}
.ws2{word-spacing:-59.453280px;}
.ws0{word-spacing:-21.888000px;}
.ws9{word-spacing:-20.928000px;}
.ws1c{word-spacing:-20.544000px;}
.wsd1{word-spacing:-18.060000px;}
.ws1d{word-spacing:-17.640000px;}
.wsc1{word-spacing:-15.378000px;}
.ws4{word-spacing:-15.048000px;}
.ws8e{word-spacing:-14.718000px;}
.ws6{word-spacing:-14.388000px;}
.ws5{word-spacing:-13.728000px;}
.ws17{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.472400px;}
.ws8{word-spacing:-13.080000px;}
.wsfa{word-spacing:-12.558240px;}
.wse8{word-spacing:-8.388204px;}
.wsaf{word-spacing:-7.260000px;}
.ws1e{word-spacing:-6.138000px;}
.ws18{word-spacing:-5.580000px;}
.wsee{word-spacing:-5.412000px;}
.wsb3{word-spacing:-5.280000px;}
.wsab{word-spacing:-5.148000px;}
.wsb1{word-spacing:-4.950000px;}
.ws5f{word-spacing:-4.884000px;}
.wsf9{word-spacing:-4.752000px;}
.ws56{word-spacing:-4.422000px;}
.ws89{word-spacing:-4.356000px;}
.ws1f{word-spacing:-4.290000px;}
.ws55{word-spacing:-4.224000px;}
.ws5c{word-spacing:-3.894000px;}
.wsdc{word-spacing:-3.828000px;}
.wsbe{word-spacing:-3.762000px;}
.ws5b{word-spacing:-3.696000px;}
.ws96{word-spacing:-3.630000px;}
.ws6e{word-spacing:-3.564000px;}
.ws5a{word-spacing:-3.498000px;}
.wsb0{word-spacing:-3.366000px;}
.wsd9{word-spacing:-3.300000px;}
.wsf6{word-spacing:-3.102000px;}
.ws59{word-spacing:-3.036000px;}
.ws2d{word-spacing:-2.970000px;}
.ws88{word-spacing:-2.904000px;}
.ws44{word-spacing:-2.838000px;}
.ws3f{word-spacing:-2.772000px;}
.ws6c{word-spacing:-2.706000px;}
.ws14{word-spacing:-2.688000px;}
.wsda{word-spacing:-2.640000px;}
.ws58{word-spacing:-2.574000px;}
.ws66{word-spacing:-2.508000px;}
.wsa6{word-spacing:-2.442000px;}
.ws4a{word-spacing:-2.376000px;}
.ws3d{word-spacing:-2.244000px;}
.ws99{word-spacing:-2.178000px;}
.ws97{word-spacing:-2.112000px;}
.ws8b{word-spacing:-2.046000px;}
.ws48{word-spacing:-1.980000px;}
.ws9a{word-spacing:-1.914000px;}
.ws7{word-spacing:-1.848000px;}
.wsf5{word-spacing:-1.782000px;}
.ws47{word-spacing:-1.584000px;}
.ws6a{word-spacing:-1.518000px;}
.ws69{word-spacing:-1.452000px;}
.wsbf{word-spacing:-1.386000px;}
.ws45{word-spacing:-1.254000px;}
.wsa{word-spacing:-1.200000px;}
.ws50{word-spacing:-1.188000px;}
.ws1b{word-spacing:-1.140000px;}
.wsb7{word-spacing:-1.122000px;}
.wsce{word-spacing:-1.056000px;}
.ws8d{word-spacing:-0.990000px;}
.ws19{word-spacing:-0.960000px;}
.ws95{word-spacing:-0.924000px;}
.ws4e{word-spacing:-0.858000px;}
.ws41{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.726000px;}
.wse{word-spacing:-0.660000px;}
.wsb{word-spacing:-0.600000px;}
.wsec{word-spacing:-0.594000px;}
.ws8f{word-spacing:-0.528000px;}
.wsbd{word-spacing:-0.396000px;}
.ws77{word-spacing:-0.330000px;}
.ws1a{word-spacing:-0.300000px;}
.ws8c{word-spacing:-0.264000px;}
.ws4f{word-spacing:-0.198000px;}
.ws4d{word-spacing:-0.132000px;}
.ws70{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws93{word-spacing:0.066000px;}
.ws26{word-spacing:0.132000px;}
.ws85{word-spacing:0.198000px;}
.ws30{word-spacing:0.264000px;}
.wsbb{word-spacing:0.330000px;}
.wsde{word-spacing:0.396000px;}
.wsf2{word-spacing:0.420000px;}
.wsc2{word-spacing:0.462000px;}
.ws11{word-spacing:0.528000px;}
.wscd{word-spacing:0.594000px;}
.ws16{word-spacing:0.600000px;}
.ws33{word-spacing:0.660000px;}
.wsc6{word-spacing:0.726000px;}
.wsa4{word-spacing:0.792000px;}
.ws35{word-spacing:0.924000px;}
.wsaa{word-spacing:0.990000px;}
.ws75{word-spacing:1.056000px;}
.ws91{word-spacing:1.122000px;}
.ws5e{word-spacing:1.188000px;}
.ws39{word-spacing:1.254000px;}
.ws5d{word-spacing:1.320000px;}
.ws98{word-spacing:1.386000px;}
.ws2e{word-spacing:1.452000px;}
.ws68{word-spacing:1.518000px;}
.ws25{word-spacing:1.584000px;}
.ws12{word-spacing:1.716000px;}
.ws4b{word-spacing:1.782000px;}
.ws13{word-spacing:1.848000px;}
.ws86{word-spacing:1.914000px;}
.ws90{word-spacing:1.980000px;}
.ws7d{word-spacing:2.046000px;}
.wsac{word-spacing:2.112000px;}
.ws92{word-spacing:2.178000px;}
.wsad{word-spacing:2.244000px;}
.wsa2{word-spacing:2.376000px;}
.ws43{word-spacing:2.442000px;}
.ws52{word-spacing:2.508000px;}
.ws94{word-spacing:2.574000px;}
.wsc7{word-spacing:2.640000px;}
.ws8a{word-spacing:2.706000px;}
.ws7e{word-spacing:2.772000px;}
.ws3e{word-spacing:2.838000px;}
.wsc{word-spacing:2.904000px;}
.ws3c{word-spacing:2.970000px;}
.wsa8{word-spacing:3.036000px;}
.ws46{word-spacing:3.102000px;}
.ws49{word-spacing:3.168000px;}
.ws63{word-spacing:3.300000px;}
.ws38{word-spacing:3.366000px;}
.ws34{word-spacing:3.432000px;}
.ws9f{word-spacing:3.498000px;}
.ws32{word-spacing:3.564000px;}
.wsed{word-spacing:3.696000px;}
.wsef{word-spacing:3.762000px;}
.wsa1{word-spacing:3.894000px;}
.ws29{word-spacing:3.960000px;}
.ws72{word-spacing:4.026000px;}
.ws54{word-spacing:4.158000px;}
.ws6d{word-spacing:4.224000px;}
.wsc0{word-spacing:4.290000px;}
.wsbc{word-spacing:4.356000px;}
.ws3a{word-spacing:4.422000px;}
.ws2a{word-spacing:4.488000px;}
.wsc9{word-spacing:4.554000px;}
.wsf0{word-spacing:4.620000px;}
.wsb8{word-spacing:4.752000px;}
.ws74{word-spacing:4.818000px;}
.ws7f{word-spacing:4.884000px;}
.wsa0{word-spacing:4.950000px;}
.ws9b{word-spacing:5.016000px;}
.ws6f{word-spacing:5.082000px;}
.ws2b{word-spacing:5.148000px;}
.ws57{word-spacing:5.214000px;}
.wsd{word-spacing:5.280000px;}
.wsae{word-spacing:5.346000px;}
.ws7a{word-spacing:5.412000px;}
.ws22{word-spacing:5.478000px;}
.ws6b{word-spacing:5.544000px;}
.ws65{word-spacing:5.742000px;}
.ws24{word-spacing:5.808000px;}
.wsf8{word-spacing:5.874000px;}
.ws2f{word-spacing:5.940000px;}
.ws78{word-spacing:6.006000px;}
.ws80{word-spacing:6.072000px;}
.wsf1{word-spacing:6.138000px;}
.ws87{word-spacing:6.204000px;}
.wse0{word-spacing:6.270000px;}
.wsa5{word-spacing:6.336000px;}
.wsba{word-spacing:6.402000px;}
.ws31{word-spacing:6.534000px;}
.ws20{word-spacing:6.600000px;}
.ws42{word-spacing:6.666000px;}
.ws62{word-spacing:6.732000px;}
.ws10{word-spacing:6.798000px;}
.ws81{word-spacing:6.864000px;}
.ws28{word-spacing:6.996000px;}
.ws2c{word-spacing:7.062000px;}
.ws7b{word-spacing:7.128000px;}
.ws71{word-spacing:7.194000px;}
.wsa3{word-spacing:7.260000px;}
.wsd7{word-spacing:7.326000px;}
.ws64{word-spacing:7.392000px;}
.ws51{word-spacing:7.524000px;}
.wsca{word-spacing:7.590000px;}
.wscb{word-spacing:7.656000px;}
.wsa7{word-spacing:7.722000px;}
.ws9e{word-spacing:7.788000px;}
.wsdf{word-spacing:7.920000px;}
.wsf4{word-spacing:7.986000px;}
.wse1{word-spacing:8.052000px;}
.wsf{word-spacing:8.118000px;}
.ws60{word-spacing:8.184000px;}
.ws4c{word-spacing:8.250000px;}
.ws40{word-spacing:8.316000px;}
.wsb9{word-spacing:8.382000px;}
.ws9d{word-spacing:8.514000px;}
.wsdd{word-spacing:8.580000px;}
.ws84{word-spacing:8.646000px;}
.wse3{word-spacing:8.712000px;}
.ws53{word-spacing:8.778000px;}
.wsa9{word-spacing:8.844000px;}
.ws3b{word-spacing:8.976000px;}
.ws73{word-spacing:9.306000px;}
.ws67{word-spacing:9.372000px;}
.wsc5{word-spacing:9.438000px;}
.wsd2{word-spacing:9.504000px;}
.wsd8{word-spacing:9.570000px;}
.wsd6{word-spacing:9.636000px;}
.ws79{word-spacing:9.702000px;}
.wsb4{word-spacing:9.768000px;}
.ws21{word-spacing:9.900000px;}
.ws7c{word-spacing:9.966000px;}
.ws36{word-spacing:10.032000px;}
.wsd3{word-spacing:10.758000px;}
.wse9{word-spacing:10.824000px;}
.wsd5{word-spacing:10.890000px;}
.ws9c{word-spacing:10.956000px;}
.wsf3{word-spacing:11.154000px;}
.wsb6{word-spacing:11.220000px;}
.wsc3{word-spacing:11.616000px;}
.wsdb{word-spacing:11.880000px;}
.wsb2{word-spacing:12.144000px;}
.wscf{word-spacing:12.408000px;}
.wsc8{word-spacing:12.606000px;}
.ws61{word-spacing:13.068000px;}
.ws37{word-spacing:13.530000px;}
.wsd0{word-spacing:14.322000px;}
.wsf7{word-spacing:15.312000px;}
.wseb{word-spacing:15.774000px;}
.wse5{word-spacing:16.236000px;}
.ws76{word-spacing:16.302000px;}
.ws83{word-spacing:16.434000px;}
.ws27{word-spacing:16.962000px;}
.wse4{word-spacing:17.028000px;}
.ws23{word-spacing:17.226000px;}
.wsc4{word-spacing:17.358000px;}
.wse2{word-spacing:18.348000px;}
.wsea{word-spacing:18.546000px;}
.wscc{word-spacing:19.668000px;}
.wsd4{word-spacing:21.714000px;}
.wse6{word-spacing:28.776000px;}
.wsb5{word-spacing:38.742000px;}
.wse7{word-spacing:45.210000px;}
._e{margin-left:-26.503320px;}
._b{margin-left:-15.402000px;}
._9{margin-left:-14.221800px;}
._a{margin-left:-13.153200px;}
._d{margin-left:-9.355200px;}
._5{margin-left:-7.032000px;}
._2{margin-left:-5.856000px;}
._3{margin-left:-4.693680px;}
._1{margin-left:-2.976000px;}
._0{margin-left:-1.440000px;}
._4{width:1.020000px;}
._7{width:2.092800px;}
._8{width:3.216000px;}
._c{width:5.728200px;}
._f{width:10.799400px;}
._6{width:131.661600px;}
.fc6{color:rgb(68,65,65);}
.fc5{color:rgb(115,144,63);}
.fc3{color:rgb(101,98,99);}
.fc2{color:rgb(48,88,159);}
.fc4{color:rgb(57,53,54);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:38.478000px;}
.fsc{font-size:55.080000px;}
.fs4{font-size:60.000000px;}
.fsa{font-size:61.800000px;}
.fs6{font-size:64.200000px;}
.fs5{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs1{font-size:117.420000px;}
.fs7{font-size:150.000000px;}
.fs3{font-size:249.600000px;}
.fs2{font-size:260.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:107.778150px;}
.y64{bottom:109.821600px;}
.y161{bottom:114.557850px;}
.y13e{bottom:116.057850px;}
.y17f{bottom:124.549950px;}
.ye8{bottom:126.049950px;}
.y10a{bottom:127.549950px;}
.y74{bottom:128.834700px;}
.y128{bottom:129.049950px;}
.y63{bottom:129.321600px;}
.yc{bottom:130.278150px;}
.y19a{bottom:130.549950px;}
.y31{bottom:135.304950px;}
.y47{bottom:135.637800px;}
.y160{bottom:140.057850px;}
.y13d{bottom:141.557850px;}
.y9e{bottom:145.417350px;}
.y7a{bottom:145.827150px;}
.y17e{bottom:150.049950px;}
.ye7{bottom:151.549950px;}
.y109{bottom:153.049950px;}
.y127{bottom:154.549950px;}
.y199{bottom:156.049950px;}
.y15f{bottom:165.557850px;}
.y13c{bottom:167.057850px;}
.y65{bottom:169.104300px;}
.y6{bottom:171.618150px;}
.y30{bottom:171.812850px;}
.y17d{bottom:175.549950px;}
.ye6{bottom:177.049950px;}
.y108{bottom:178.549950px;}
.y126{bottom:180.049950px;}
.y198{bottom:181.549950px;}
.y9d{bottom:183.685050px;}
.y79{bottom:183.835050px;}
.y15e{bottom:191.057850px;}
.y2f{bottom:191.312850px;}
.y13b{bottom:192.557850px;}
.y17c{bottom:201.049950px;}
.y5{bottom:201.618150px;}
.ye5{bottom:202.549950px;}
.y107{bottom:204.049950px;}
.y125{bottom:205.549950px;}
.y197{bottom:207.049950px;}
.y2e{bottom:210.812850px;}
.y46{bottom:212.173200px;}
.y66{bottom:216.135000px;}
.y15d{bottom:216.557850px;}
.y13a{bottom:218.057850px;}
.y78{bottom:221.842950px;}
.y9c{bottom:221.952750px;}
.y17b{bottom:226.549950px;}
.ye4{bottom:228.049950px;}
.y106{bottom:229.549950px;}
.y124{bottom:231.049950px;}
.yc3{bottom:231.500100px;}
.y4{bottom:231.618150px;}
.y196{bottom:232.549950px;}
.ya4{bottom:233.918400px;}
.y15c{bottom:242.057850px;}
.y139{bottom:243.557850px;}
.y2d{bottom:247.320750px;}
.y17a{bottom:252.049950px;}
.ye3{bottom:253.549950px;}
.y105{bottom:255.049950px;}
.y123{bottom:256.549950px;}
.yc2{bottom:257.000100px;}
.y195{bottom:258.049950px;}
.y9b{bottom:259.370100px;}
.y77{bottom:259.850850px;}
.y19f{bottom:263.435400px;}
.y2c{bottom:266.820750px;}
.y45{bottom:267.448800px;}
.y15b{bottom:267.557850px;}
.y138{bottom:269.057850px;}
.y179{bottom:277.549950px;}
.ye2{bottom:279.049950px;}
.y104{bottom:280.549950px;}
.y122{bottom:282.049950px;}
.yc1{bottom:282.500100px;}
.y194{bottom:283.549950px;}
.y19e{bottom:284.435400px;}
.y3{bottom:286.457250px;}
.y62{bottom:291.199800px;}
.y15a{bottom:293.057850px;}
.y137{bottom:294.557850px;}
.y76{bottom:297.858750px;}
.y9a{bottom:298.546500px;}
.y170{bottom:299.057850px;}
.y178{bottom:303.049950px;}
.y2b{bottom:303.328650px;}
.ye1{bottom:304.549950px;}
.y19d{bottom:305.435400px;}
.y103{bottom:306.049950px;}
.y121{bottom:307.549950px;}
.yc0{bottom:308.000100px;}
.y193{bottom:309.049950px;}
.y61{bottom:310.699800px;}
.y2{bottom:316.457250px;}
.y159{bottom:318.557850px;}
.y136{bottom:320.057850px;}
.y44{bottom:322.724400px;}
.y2a{bottom:322.828650px;}
.y16f{bottom:323.057850px;}
.y177{bottom:328.549950px;}
.y73{bottom:329.952750px;}
.ye0{bottom:330.049950px;}
.y60{bottom:330.199800px;}
.y102{bottom:331.549950px;}
.y148{bottom:333.049950px;}
.ybf{bottom:333.500100px;}
.y192{bottom:334.549950px;}
.y7b{bottom:339.103500px;}
.y158{bottom:344.057850px;}
.y135{bottom:345.557850px;}
.y1{bottom:346.457250px;}
.y16e{bottom:347.057850px;}
.y19c{bottom:347.435400px;}
.y120{bottom:350.057850px;}
.y176{bottom:354.049950px;}
.ydf{bottom:355.549950px;}
.y101{bottom:357.049950px;}
.y147{bottom:358.549950px;}
.ybe{bottom:359.000100px;}
.y29{bottom:359.336400px;}
.y191{bottom:360.049950px;}
.y72{bottom:366.519750px;}
.y5f{bottom:366.707700px;}
.y19b{bottom:368.435400px;}
.y157{bottom:369.557850px;}
.y134{bottom:371.057850px;}
.y11f{bottom:374.057850px;}
.y28{bottom:378.836400px;}
.y175{bottom:379.550100px;}
.yde{bottom:381.050100px;}
.y100{bottom:382.550100px;}
.y75{bottom:383.605500px;}
.y146{bottom:384.050100px;}
.ybd{bottom:384.500100px;}
.y190{bottom:385.550100px;}
.y156{bottom:395.057850px;}
.y133{bottom:396.557850px;}
.y41{bottom:397.127850px;}
.y11e{bottom:398.057850px;}
.y27{bottom:398.336400px;}
.y5e{bottom:403.215600px;}
.y71{bottom:403.937100px;}
.y174{bottom:405.050100px;}
.ydd{bottom:406.550100px;}
.y152{bottom:408.050100px;}
.ybc{bottom:410.000100px;}
.y18f{bottom:411.050100px;}
.y155{bottom:420.557850px;}
.y1e{bottom:421.421700px;}
.y11d{bottom:422.057850px;}
.yff{bottom:425.057850px;}
.y145{bottom:426.557850px;}
.y8{bottom:429.052050px;}
.y173{bottom:430.550100px;}
.ydc{bottom:432.050100px;}
.y151{bottom:433.550100px;}
.y7c{bottom:434.052000px;}
.ybb{bottom:435.500100px;}
.y18e{bottom:436.550100px;}
.y5d{bottom:439.723350px;}
.y40{bottom:441.398400px;}
.y1d{bottom:445.421700px;}
.y154{bottom:446.057850px;}
.y132{bottom:447.557850px;}
.yfe{bottom:449.057850px;}
.y144{bottom:450.557850px;}
.y172{bottom:456.050100px;}
.y70{bottom:459.212700px;}
.y5c{bottom:459.223350px;}
.yba{bottom:461.000100px;}
.y18d{bottom:462.050100px;}
.y7{bottom:465.052050px;}
.y1f{bottom:469.288200px;}
.y1c{bottom:469.421700px;}
.y153{bottom:471.557850px;}
.y131{bottom:473.057850px;}
.ydb{bottom:474.557850px;}
.y150{bottom:476.057850px;}
.y171{bottom:481.550100px;}
.yb9{bottom:486.500100px;}
.y5b{bottom:495.731250px;}
.y11c{bottom:497.057850px;}
.yda{bottom:498.557850px;}
.y14f{bottom:500.057850px;}
.y43{bottom:500.364000px;}
.y3f{bottom:500.762850px;}
.y18c{bottom:504.557850px;}
.yb8{bottom:512.000100px;}
.y99{bottom:513.637800px;}
.y88{bottom:513.993600px;}
.y6f{bottom:514.648200px;}
.y5a{bottom:515.231250px;}
.yd9{bottom:522.557850px;}
.yfd{bottom:524.057850px;}
.y1b{bottom:526.514550px;}
.y18b{bottom:528.557850px;}
.y3e{bottom:535.770750px;}
.y42{bottom:535.780950px;}
.y16d{bottom:541.065750px;}
.ya2{bottom:543.825600px;}
.y11b{bottom:548.057850px;}
.yfc{bottom:549.557850px;}
.y87{bottom:550.501500px;}
.y1a{bottom:550.514550px;}
.y6e{bottom:551.657550px;}
.y59{bottom:551.739150px;}
.yb7{bottom:554.508000px;}
.y16c{bottom:565.065750px;}
.y86{bottom:570.001500px;}
.y11a{bottom:573.557850px;}
.y19{bottom:574.514550px;}
.yfb{bottom:575.057850px;}
.yb6{bottom:578.508000px;}
.y3c{bottom:584.829900px;}
.y58{bottom:588.247050px;}
.y16b{bottom:589.065750px;}
.y98{bottom:589.209150px;}
.y85{bottom:589.501500px;}
.yd8{bottom:597.557850px;}
.y18{bottom:598.514550px;}
.y119{bottom:599.057850px;}
.yfa{bottom:600.557850px;}
.yb5{bottom:602.508000px;}
.y18a{bottom:603.557850px;}
.y6d{bottom:606.936750px;}
.y57{bottom:607.747050px;}
.y17{bottom:622.514550px;}
.yd7{bottom:623.057850px;}
.y118{bottom:624.557850px;}
.y84{bottom:626.009400px;}
.yf9{bottom:626.057850px;}
.y189{bottom:629.057850px;}
.y56{bottom:644.254950px;}
.y97{bottom:645.448800px;}
.y83{bottom:645.509400px;}
.y16{bottom:646.514550px;}
.yd6{bottom:648.557850px;}
.y117{bottom:650.057850px;}
.yf8{bottom:651.557850px;}
.y188{bottom:654.557850px;}
.y6c{bottom:663.519750px;}
.y55{bottom:663.754950px;}
.y16a{bottom:664.065750px;}
.y15{bottom:670.514550px;}
.yd5{bottom:674.057850px;}
.y116{bottom:675.557850px;}
.yf7{bottom:677.057850px;}
.yb4{bottom:677.508000px;}
.y187{bottom:680.057850px;}
.ya0{bottom:681.791250px;}
.y82{bottom:682.017300px;}
.y32{bottom:685.090950px;}
.y169{bottom:689.565750px;}
.y14{bottom:694.514550px;}
.yd4{bottom:699.557850px;}
.y54{bottom:700.262850px;}
.y115{bottom:701.057850px;}
.yf6{bottom:702.557850px;}
.yb3{bottom:703.008000px;}
.y186{bottom:705.557850px;}
.y168{bottom:715.065750px;}
.y6b{bottom:718.157550px;}
.y13{bottom:718.514550px;}
.y81{bottom:718.525200px;}
.y53{bottom:719.762850px;}
.yd3{bottom:725.057850px;}
.y114{bottom:726.557850px;}
.yf5{bottom:728.057850px;}
.yb2{bottom:728.508000px;}
.ya{bottom:730.521750px;}
.y185{bottom:731.057850px;}
.y80{bottom:738.025200px;}
.y167{bottom:740.565750px;}
.y12{bottom:742.514550px;}
.y24{bottom:743.624550px;}
.yd2{bottom:750.557850px;}
.y113{bottom:752.057850px;}
.yf4{bottom:753.557850px;}
.yb1{bottom:754.008000px;}
.y184{bottom:756.557850px;}
.y95{bottom:757.333950px;}
.y7f{bottom:757.525200px;}
.y51{bottom:760.933800px;}
.y166{bottom:766.065750px;}
.y130{bottom:770.565750px;}
.yd1{bottom:776.057850px;}
.y112{bottom:777.557850px;}
.yf3{bottom:779.057850px;}
.yb0{bottom:779.508000px;}
.y183{bottom:782.057850px;}
.y3b{bottom:790.792650px;}
.y165{bottom:791.565750px;}
.y7e{bottom:794.032950px;}
.y12f{bottom:794.565750px;}
.y25{bottom:797.843550px;}
.y11{bottom:797.888250px;}
.yb{bottom:799.923750px;}
.yd0{bottom:801.557850px;}
.y111{bottom:803.057850px;}
.yf2{bottom:804.557850px;}
.yaf{bottom:805.008000px;}
.y182{bottom:807.557850px;}
.y52{bottom:812.878800px;}
.y7d{bottom:813.532950px;}
.y93{bottom:813.826800px;}
.y3a{bottom:816.292650px;}
.y164{bottom:817.065750px;}
.y12e{bottom:818.565750px;}
.ycf{bottom:827.057850px;}
.y110{bottom:828.557850px;}
.yf1{bottom:830.057850px;}
.yae{bottom:830.508000px;}
.y39{bottom:841.792650px;}
.y163{bottom:842.565750px;}
.ya3{bottom:843.022950px;}
.y181{bottom:850.065750px;}
.y10{bottom:851.729700px;}
.yce{bottom:852.557850px;}
.y10f{bottom:854.057850px;}
.yf0{bottom:855.557850px;}
.yad{bottom:856.008000px;}
.y89{bottom:856.736550px;}
.y38{bottom:867.292650px;}
.y9{bottom:867.600900px;}
.y162{bottom:868.065750px;}
.yf{bottom:872.729700px;}
.y180{bottom:874.065750px;}
.ycd{bottom:878.057850px;}
.y10e{bottom:879.557850px;}
.y143{bottom:881.057850px;}
.yac{bottom:881.508000px;}
.y37{bottom:892.792650px;}
.y12d{bottom:893.565750px;}
.ye{bottom:894.839700px;}
.y50{bottom:895.362600px;}
.yef{bottom:898.065750px;}
.ycc{bottom:903.557850px;}
.y10d{bottom:905.057850px;}
.y142{bottom:906.557850px;}
.yab{bottom:907.008000px;}
.y69{bottom:913.816200px;}
.y4f{bottom:914.862600px;}
.y36{bottom:918.292650px;}
.y9f{bottom:918.618900px;}
.y12c{bottom:919.065750px;}
.y91{bottom:919.644150px;}
.yee{bottom:922.065750px;}
.ycb{bottom:929.057850px;}
.y14e{bottom:930.557850px;}
.y35{bottom:943.792650px;}
.y12b{bottom:944.565750px;}
.yed{bottom:946.065750px;}
.y10c{bottom:947.565750px;}
.y141{bottom:949.065750px;}
.yaa{bottom:949.515900px;}
.y4e{bottom:951.370350px;}
.yca{bottom:954.557850px;}
.y96{bottom:955.842600px;}
.y14d{bottom:956.057850px;}
.y90{bottom:956.152050px;}
.y34{bottom:969.292650px;}
.y12a{bottom:970.065750px;}
.y68{bottom:970.299300px;}
.y4d{bottom:970.870350px;}
.y10b{bottom:971.565750px;}
.y140{bottom:973.065750px;}
.ya9{bottom:973.515900px;}
.yc9{bottom:980.057850px;}
.y14c{bottom:981.557850px;}
.y23{bottom:991.656600px;}
.y94{bottom:992.409450px;}
.y8f{bottom:992.659950px;}
.y33{bottom:994.792650px;}
.y129{bottom:995.565750px;}
.y13f{bottom:997.065750px;}
.ya8{bottom:997.515900px;}
.yc8{bottom:1005.557850px;}
.y14b{bottom:1007.057850px;}
.y4c{bottom:1007.378400px;}
.y22{bottom:1015.656600px;}
.yec{bottom:1021.065750px;}
.y67{bottom:1026.850500px;}
.y4b{bottom:1026.878400px;}
.y8e{bottom:1029.167850px;}
.yc7{bottom:1031.057850px;}
.y14a{bottom:1032.557850px;}
.ya7{bottom:1045.515900px;}
.yeb{bottom:1046.565750px;}
.y8d{bottom:1048.667850px;}
.yc6{bottom:1056.557850px;}
.y4a{bottom:1063.386150px;}
.y92{bottom:1067.244150px;}
.y8c{bottom:1068.167850px;}
.yea{bottom:1072.065750px;}
.y21{bottom:1072.530000px;}
.y149{bottom:1075.065750px;}
.y49{bottom:1082.886150px;}
.y6a{bottom:1083.401700px;}
.y3d{bottom:1093.348200px;}
.ye9{bottom:1097.565750px;}
.yc5{bottom:1099.065750px;}
.y8b{bottom:1104.675600px;}
.y20{bottom:1116.030000px;}
.ya6{bottom:1117.515900px;}
.ya5{bottom:1119.730500px;}
.yc4{bottom:1123.065750px;}
.ya1{bottom:1124.084700px;}
.y8a{bottom:1124.175600px;}
.y48{bottom:1125.144750px;}
.y26{bottom:1190.152200px;}
.ha{height:44.280000px;}
.h1a{height:46.046880px;}
.h6{height:49.980000px;}
.he{height:50.160000px;}
.h7{height:50.538000px;}
.h18{height:51.612000px;}
.hf{height:51.660000px;}
.hd{height:52.920000px;}
.h14{height:53.209800px;}
.h9{height:53.478600px;}
.h11{height:54.582000px;}
.h8{height:54.978000px;}
.h19{height:55.176000px;}
.h17{height:56.826000px;}
.h13{height:60.192000px;}
.h12{height:61.992000px;}
.h16{height:65.688000px;}
.h10{height:70.848000px;}
.h15{height:72.324000px;}
.h2{height:75.552000px;}
.hc{height:82.656000px;}
.h3{height:92.409540px;}
.hb{height:118.050000px;}
.h5{height:196.435200px;}
.h4{height:205.218120px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:87.165300px;}
.x5{left:92.326500px;}
.x7{left:126.496050px;}
.xd{left:127.572450px;}
.xc{left:163.411500px;}
.xa{left:170.567250px;}
.x6{left:171.615300px;}
.xf{left:191.338650px;}
.xe{left:210.918750px;}
.x18{left:231.409800px;}
.x2{left:257.060700px;}
.x9{left:262.535100px;}
.x8{left:268.626450px;}
.x14{left:305.704950px;}
.x4{left:310.210350px;}
.x1a{left:329.430750px;}
.x11{left:332.010300px;}
.x19{left:339.983700px;}
.x1b{left:342.349500px;}
.x10{left:344.831700px;}
.x1c{left:366.953850px;}
.x13{left:369.179550px;}
.x12{left:393.449550px;}
.x17{left:438.419250px;}
.x15{left:439.439400px;}
.x16{left:441.179400px;}
.x1{left:442.742100px;}
.x3{left:506.348100px;}
@media print{
.v1{vertical-align:-3.946667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536533pt;}
.ls18{letter-spacing:-0.597333pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.570667pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls17{letter-spacing:-0.341333pt;}
.lse{letter-spacing:-0.293333pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls1d{letter-spacing:-0.117333pt;}
.ls1a{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.292800pt;}
.ls14{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.410667pt;}
.ls27{letter-spacing:0.489600pt;}
.lsf{letter-spacing:0.532800pt;}
.lsb{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.853333pt;}
.ls15{letter-spacing:0.880000pt;}
.ls1{letter-spacing:1.043733pt;}
.ls7{letter-spacing:1.333333pt;}
.ls13{letter-spacing:1.493333pt;}
.ls1e{letter-spacing:2.127467pt;}
.ls3{letter-spacing:2.218667pt;}
.ls4{letter-spacing:2.317867pt;}
.ls1f{letter-spacing:3.880533pt;}
.ls16{letter-spacing:3.993067pt;}
.ls1b{letter-spacing:4.045867pt;}
.ls24{letter-spacing:4.579200pt;}
.ls2{letter-spacing:4.635733pt;}
.ls21{letter-spacing:7.193600pt;}
.ls22{letter-spacing:7.670400pt;}
.ls25{letter-spacing:10.212267pt;}
.ws1{word-spacing:-55.165227pt;}
.ws2{word-spacing:-52.847360pt;}
.ws0{word-spacing:-19.456000pt;}
.ws9{word-spacing:-18.602667pt;}
.ws1c{word-spacing:-18.261333pt;}
.wsd1{word-spacing:-16.053333pt;}
.ws1d{word-spacing:-15.680000pt;}
.wsc1{word-spacing:-13.669333pt;}
.ws4{word-spacing:-13.376000pt;}
.ws8e{word-spacing:-13.082667pt;}
.ws6{word-spacing:-12.789333pt;}
.ws5{word-spacing:-12.202667pt;}
.ws17{word-spacing:-12.160000pt;}
.ws15{word-spacing:-11.975467pt;}
.ws8{word-spacing:-11.626667pt;}
.wsfa{word-spacing:-11.162880pt;}
.wse8{word-spacing:-7.456181pt;}
.wsaf{word-spacing:-6.453333pt;}
.ws1e{word-spacing:-5.456000pt;}
.ws18{word-spacing:-4.960000pt;}
.wsee{word-spacing:-4.810667pt;}
.wsb3{word-spacing:-4.693333pt;}
.wsab{word-spacing:-4.576000pt;}
.wsb1{word-spacing:-4.400000pt;}
.ws5f{word-spacing:-4.341333pt;}
.wsf9{word-spacing:-4.224000pt;}
.ws56{word-spacing:-3.930667pt;}
.ws89{word-spacing:-3.872000pt;}
.ws1f{word-spacing:-3.813333pt;}
.ws55{word-spacing:-3.754667pt;}
.ws5c{word-spacing:-3.461333pt;}
.wsdc{word-spacing:-3.402667pt;}
.wsbe{word-spacing:-3.344000pt;}
.ws5b{word-spacing:-3.285333pt;}
.ws96{word-spacing:-3.226667pt;}
.ws6e{word-spacing:-3.168000pt;}
.ws5a{word-spacing:-3.109333pt;}
.wsb0{word-spacing:-2.992000pt;}
.wsd9{word-spacing:-2.933333pt;}
.wsf6{word-spacing:-2.757333pt;}
.ws59{word-spacing:-2.698667pt;}
.ws2d{word-spacing:-2.640000pt;}
.ws88{word-spacing:-2.581333pt;}
.ws44{word-spacing:-2.522667pt;}
.ws3f{word-spacing:-2.464000pt;}
.ws6c{word-spacing:-2.405333pt;}
.ws14{word-spacing:-2.389333pt;}
.wsda{word-spacing:-2.346667pt;}
.ws58{word-spacing:-2.288000pt;}
.ws66{word-spacing:-2.229333pt;}
.wsa6{word-spacing:-2.170667pt;}
.ws4a{word-spacing:-2.112000pt;}
.ws3d{word-spacing:-1.994667pt;}
.ws99{word-spacing:-1.936000pt;}
.ws97{word-spacing:-1.877333pt;}
.ws8b{word-spacing:-1.818667pt;}
.ws48{word-spacing:-1.760000pt;}
.ws9a{word-spacing:-1.701333pt;}
.ws7{word-spacing:-1.642667pt;}
.wsf5{word-spacing:-1.584000pt;}
.ws47{word-spacing:-1.408000pt;}
.ws6a{word-spacing:-1.349333pt;}
.ws69{word-spacing:-1.290667pt;}
.wsbf{word-spacing:-1.232000pt;}
.ws45{word-spacing:-1.114667pt;}
.wsa{word-spacing:-1.066667pt;}
.ws50{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-1.013333pt;}
.wsb7{word-spacing:-0.997333pt;}
.wsce{word-spacing:-0.938667pt;}
.ws8d{word-spacing:-0.880000pt;}
.ws19{word-spacing:-0.853333pt;}
.ws95{word-spacing:-0.821333pt;}
.ws4e{word-spacing:-0.762667pt;}
.ws41{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.645333pt;}
.wse{word-spacing:-0.586667pt;}
.wsb{word-spacing:-0.533333pt;}
.wsec{word-spacing:-0.528000pt;}
.ws8f{word-spacing:-0.469333pt;}
.wsbd{word-spacing:-0.352000pt;}
.ws77{word-spacing:-0.293333pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws8c{word-spacing:-0.234667pt;}
.ws4f{word-spacing:-0.176000pt;}
.ws4d{word-spacing:-0.117333pt;}
.ws70{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws93{word-spacing:0.058667pt;}
.ws26{word-spacing:0.117333pt;}
.ws85{word-spacing:0.176000pt;}
.ws30{word-spacing:0.234667pt;}
.wsbb{word-spacing:0.293333pt;}
.wsde{word-spacing:0.352000pt;}
.wsf2{word-spacing:0.373333pt;}
.wsc2{word-spacing:0.410667pt;}
.ws11{word-spacing:0.469333pt;}
.wscd{word-spacing:0.528000pt;}
.ws16{word-spacing:0.533333pt;}
.ws33{word-spacing:0.586667pt;}
.wsc6{word-spacing:0.645333pt;}
.wsa4{word-spacing:0.704000pt;}
.ws35{word-spacing:0.821333pt;}
.wsaa{word-spacing:0.880000pt;}
.ws75{word-spacing:0.938667pt;}
.ws91{word-spacing:0.997333pt;}
.ws5e{word-spacing:1.056000pt;}
.ws39{word-spacing:1.114667pt;}
.ws5d{word-spacing:1.173333pt;}
.ws98{word-spacing:1.232000pt;}
.ws2e{word-spacing:1.290667pt;}
.ws68{word-spacing:1.349333pt;}
.ws25{word-spacing:1.408000pt;}
.ws12{word-spacing:1.525333pt;}
.ws4b{word-spacing:1.584000pt;}
.ws13{word-spacing:1.642667pt;}
.ws86{word-spacing:1.701333pt;}
.ws90{word-spacing:1.760000pt;}
.ws7d{word-spacing:1.818667pt;}
.wsac{word-spacing:1.877333pt;}
.ws92{word-spacing:1.936000pt;}
.wsad{word-spacing:1.994667pt;}
.wsa2{word-spacing:2.112000pt;}
.ws43{word-spacing:2.170667pt;}
.ws52{word-spacing:2.229333pt;}
.ws94{word-spacing:2.288000pt;}
.wsc7{word-spacing:2.346667pt;}
.ws8a{word-spacing:2.405333pt;}
.ws7e{word-spacing:2.464000pt;}
.ws3e{word-spacing:2.522667pt;}
.wsc{word-spacing:2.581333pt;}
.ws3c{word-spacing:2.640000pt;}
.wsa8{word-spacing:2.698667pt;}
.ws46{word-spacing:2.757333pt;}
.ws49{word-spacing:2.816000pt;}
.ws63{word-spacing:2.933333pt;}
.ws38{word-spacing:2.992000pt;}
.ws34{word-spacing:3.050667pt;}
.ws9f{word-spacing:3.109333pt;}
.ws32{word-spacing:3.168000pt;}
.wsed{word-spacing:3.285333pt;}
.wsef{word-spacing:3.344000pt;}
.wsa1{word-spacing:3.461333pt;}
.ws29{word-spacing:3.520000pt;}
.ws72{word-spacing:3.578667pt;}
.ws54{word-spacing:3.696000pt;}
.ws6d{word-spacing:3.754667pt;}
.wsc0{word-spacing:3.813333pt;}
.wsbc{word-spacing:3.872000pt;}
.ws3a{word-spacing:3.930667pt;}
.ws2a{word-spacing:3.989333pt;}
.wsc9{word-spacing:4.048000pt;}
.wsf0{word-spacing:4.106667pt;}
.wsb8{word-spacing:4.224000pt;}
.ws74{word-spacing:4.282667pt;}
.ws7f{word-spacing:4.341333pt;}
.wsa0{word-spacing:4.400000pt;}
.ws9b{word-spacing:4.458667pt;}
.ws6f{word-spacing:4.517333pt;}
.ws2b{word-spacing:4.576000pt;}
.ws57{word-spacing:4.634667pt;}
.wsd{word-spacing:4.693333pt;}
.wsae{word-spacing:4.752000pt;}
.ws7a{word-spacing:4.810667pt;}
.ws22{word-spacing:4.869333pt;}
.ws6b{word-spacing:4.928000pt;}
.ws65{word-spacing:5.104000pt;}
.ws24{word-spacing:5.162667pt;}
.wsf8{word-spacing:5.221333pt;}
.ws2f{word-spacing:5.280000pt;}
.ws78{word-spacing:5.338667pt;}
.ws80{word-spacing:5.397333pt;}
.wsf1{word-spacing:5.456000pt;}
.ws87{word-spacing:5.514667pt;}
.wse0{word-spacing:5.573333pt;}
.wsa5{word-spacing:5.632000pt;}
.wsba{word-spacing:5.690667pt;}
.ws31{word-spacing:5.808000pt;}
.ws20{word-spacing:5.866667pt;}
.ws42{word-spacing:5.925333pt;}
.ws62{word-spacing:5.984000pt;}
.ws10{word-spacing:6.042667pt;}
.ws81{word-spacing:6.101333pt;}
.ws28{word-spacing:6.218667pt;}
.ws2c{word-spacing:6.277333pt;}
.ws7b{word-spacing:6.336000pt;}
.ws71{word-spacing:6.394667pt;}
.wsa3{word-spacing:6.453333pt;}
.wsd7{word-spacing:6.512000pt;}
.ws64{word-spacing:6.570667pt;}
.ws51{word-spacing:6.688000pt;}
.wsca{word-spacing:6.746667pt;}
.wscb{word-spacing:6.805333pt;}
.wsa7{word-spacing:6.864000pt;}
.ws9e{word-spacing:6.922667pt;}
.wsdf{word-spacing:7.040000pt;}
.wsf4{word-spacing:7.098667pt;}
.wse1{word-spacing:7.157333pt;}
.wsf{word-spacing:7.216000pt;}
.ws60{word-spacing:7.274667pt;}
.ws4c{word-spacing:7.333333pt;}
.ws40{word-spacing:7.392000pt;}
.wsb9{word-spacing:7.450667pt;}
.ws9d{word-spacing:7.568000pt;}
.wsdd{word-spacing:7.626667pt;}
.ws84{word-spacing:7.685333pt;}
.wse3{word-spacing:7.744000pt;}
.ws53{word-spacing:7.802667pt;}
.wsa9{word-spacing:7.861333pt;}
.ws3b{word-spacing:7.978667pt;}
.ws73{word-spacing:8.272000pt;}
.ws67{word-spacing:8.330667pt;}
.wsc5{word-spacing:8.389333pt;}
.wsd2{word-spacing:8.448000pt;}
.wsd8{word-spacing:8.506667pt;}
.wsd6{word-spacing:8.565333pt;}
.ws79{word-spacing:8.624000pt;}
.wsb4{word-spacing:8.682667pt;}
.ws21{word-spacing:8.800000pt;}
.ws7c{word-spacing:8.858667pt;}
.ws36{word-spacing:8.917333pt;}
.wsd3{word-spacing:9.562667pt;}
.wse9{word-spacing:9.621333pt;}
.wsd5{word-spacing:9.680000pt;}
.ws9c{word-spacing:9.738667pt;}
.wsf3{word-spacing:9.914667pt;}
.wsb6{word-spacing:9.973333pt;}
.wsc3{word-spacing:10.325333pt;}
.wsdb{word-spacing:10.560000pt;}
.wsb2{word-spacing:10.794667pt;}
.wscf{word-spacing:11.029333pt;}
.wsc8{word-spacing:11.205333pt;}
.ws61{word-spacing:11.616000pt;}
.ws37{word-spacing:12.026667pt;}
.wsd0{word-spacing:12.730667pt;}
.wsf7{word-spacing:13.610667pt;}
.wseb{word-spacing:14.021333pt;}
.wse5{word-spacing:14.432000pt;}
.ws76{word-spacing:14.490667pt;}
.ws83{word-spacing:14.608000pt;}
.ws27{word-spacing:15.077333pt;}
.wse4{word-spacing:15.136000pt;}
.ws23{word-spacing:15.312000pt;}
.wsc4{word-spacing:15.429333pt;}
.wse2{word-spacing:16.309333pt;}
.wsea{word-spacing:16.485333pt;}
.wscc{word-spacing:17.482667pt;}
.wsd4{word-spacing:19.301333pt;}
.wse6{word-spacing:25.578667pt;}
.wsb5{word-spacing:34.437333pt;}
.wse7{word-spacing:40.186667pt;}
._e{margin-left:-23.558507pt;}
._b{margin-left:-13.690667pt;}
._9{margin-left:-12.641600pt;}
._a{margin-left:-11.691733pt;}
._d{margin-left:-8.315733pt;}
._5{margin-left:-6.250667pt;}
._2{margin-left:-5.205333pt;}
._3{margin-left:-4.172160pt;}
._1{margin-left:-2.645333pt;}
._0{margin-left:-1.280000pt;}
._4{width:0.906667pt;}
._7{width:1.860267pt;}
._8{width:2.858667pt;}
._c{width:5.091733pt;}
._f{width:9.599467pt;}
._6{width:117.032533pt;}
.fsb{font-size:34.202667pt;}
.fsc{font-size:48.960000pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:54.933333pt;}
.fs6{font-size:57.066667pt;}
.fs5{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs1{font-size:104.373333pt;}
.fs7{font-size:133.333333pt;}
.fs3{font-size:221.866667pt;}
.fs2{font-size:231.786667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:95.802800pt;}
.y64{bottom:97.619200pt;}
.y161{bottom:101.829200pt;}
.y13e{bottom:103.162533pt;}
.y17f{bottom:110.711067pt;}
.ye8{bottom:112.044400pt;}
.y10a{bottom:113.377733pt;}
.y74{bottom:114.519733pt;}
.y128{bottom:114.711067pt;}
.y63{bottom:114.952533pt;}
.yc{bottom:115.802800pt;}
.y19a{bottom:116.044400pt;}
.y31{bottom:120.271067pt;}
.y47{bottom:120.566933pt;}
.y160{bottom:124.495867pt;}
.y13d{bottom:125.829200pt;}
.y9e{bottom:129.259867pt;}
.y7a{bottom:129.624133pt;}
.y17e{bottom:133.377733pt;}
.ye7{bottom:134.711067pt;}
.y109{bottom:136.044400pt;}
.y127{bottom:137.377733pt;}
.y199{bottom:138.711067pt;}
.y15f{bottom:147.162533pt;}
.y13c{bottom:148.495867pt;}
.y65{bottom:150.314933pt;}
.y6{bottom:152.549467pt;}
.y30{bottom:152.722533pt;}
.y17d{bottom:156.044400pt;}
.ye6{bottom:157.377733pt;}
.y108{bottom:158.711067pt;}
.y126{bottom:160.044400pt;}
.y198{bottom:161.377733pt;}
.y9d{bottom:163.275600pt;}
.y79{bottom:163.408933pt;}
.y15e{bottom:169.829200pt;}
.y2f{bottom:170.055867pt;}
.y13b{bottom:171.162533pt;}
.y17c{bottom:178.711067pt;}
.y5{bottom:179.216133pt;}
.ye5{bottom:180.044400pt;}
.y107{bottom:181.377733pt;}
.y125{bottom:182.711067pt;}
.y197{bottom:184.044400pt;}
.y2e{bottom:187.389200pt;}
.y46{bottom:188.598400pt;}
.y66{bottom:192.120000pt;}
.y15d{bottom:192.495867pt;}
.y13a{bottom:193.829200pt;}
.y78{bottom:197.193733pt;}
.y9c{bottom:197.291333pt;}
.y17b{bottom:201.377733pt;}
.ye4{bottom:202.711067pt;}
.y106{bottom:204.044400pt;}
.y124{bottom:205.377733pt;}
.yc3{bottom:205.777867pt;}
.y4{bottom:205.882800pt;}
.y196{bottom:206.711067pt;}
.ya4{bottom:207.927467pt;}
.y15c{bottom:215.162533pt;}
.y139{bottom:216.495867pt;}
.y2d{bottom:219.840667pt;}
.y17a{bottom:224.044400pt;}
.ye3{bottom:225.377733pt;}
.y105{bottom:226.711067pt;}
.y123{bottom:228.044400pt;}
.yc2{bottom:228.444533pt;}
.y195{bottom:229.377733pt;}
.y9b{bottom:230.551200pt;}
.y77{bottom:230.978533pt;}
.y19f{bottom:234.164800pt;}
.y2c{bottom:237.174000pt;}
.y45{bottom:237.732267pt;}
.y15b{bottom:237.829200pt;}
.y138{bottom:239.162533pt;}
.y179{bottom:246.711067pt;}
.ye2{bottom:248.044400pt;}
.y104{bottom:249.377733pt;}
.y122{bottom:250.711067pt;}
.yc1{bottom:251.111200pt;}
.y194{bottom:252.044400pt;}
.y19e{bottom:252.831467pt;}
.y3{bottom:254.628667pt;}
.y62{bottom:258.844267pt;}
.y15a{bottom:260.495867pt;}
.y137{bottom:261.829200pt;}
.y76{bottom:264.763333pt;}
.y9a{bottom:265.374667pt;}
.y170{bottom:265.829200pt;}
.y178{bottom:269.377733pt;}
.y2b{bottom:269.625467pt;}
.ye1{bottom:270.711067pt;}
.y19d{bottom:271.498133pt;}
.y103{bottom:272.044400pt;}
.y121{bottom:273.377733pt;}
.yc0{bottom:273.777867pt;}
.y193{bottom:274.711067pt;}
.y61{bottom:276.177600pt;}
.y2{bottom:281.295333pt;}
.y159{bottom:283.162533pt;}
.y136{bottom:284.495867pt;}
.y44{bottom:286.866133pt;}
.y2a{bottom:286.958800pt;}
.y16f{bottom:287.162533pt;}
.y177{bottom:292.044400pt;}
.y73{bottom:293.291333pt;}
.ye0{bottom:293.377733pt;}
.y60{bottom:293.510933pt;}
.y102{bottom:294.711067pt;}
.y148{bottom:296.044400pt;}
.ybf{bottom:296.444533pt;}
.y192{bottom:297.377733pt;}
.y7b{bottom:301.425333pt;}
.y158{bottom:305.829200pt;}
.y135{bottom:307.162533pt;}
.y1{bottom:307.962000pt;}
.y16e{bottom:308.495867pt;}
.y19c{bottom:308.831467pt;}
.y120{bottom:311.162533pt;}
.y176{bottom:314.711067pt;}
.ydf{bottom:316.044400pt;}
.y101{bottom:317.377733pt;}
.y147{bottom:318.711067pt;}
.ybe{bottom:319.111200pt;}
.y29{bottom:319.410133pt;}
.y191{bottom:320.044400pt;}
.y72{bottom:325.795333pt;}
.y5f{bottom:325.962400pt;}
.y19b{bottom:327.498133pt;}
.y157{bottom:328.495867pt;}
.y134{bottom:329.829200pt;}
.y11f{bottom:332.495867pt;}
.y28{bottom:336.743467pt;}
.y175{bottom:337.377867pt;}
.yde{bottom:338.711200pt;}
.y100{bottom:340.044533pt;}
.y75{bottom:340.982667pt;}
.y146{bottom:341.377867pt;}
.ybd{bottom:341.777867pt;}
.y190{bottom:342.711200pt;}
.y156{bottom:351.162533pt;}
.y133{bottom:352.495867pt;}
.y41{bottom:353.002533pt;}
.y11e{bottom:353.829200pt;}
.y27{bottom:354.076800pt;}
.y5e{bottom:358.413867pt;}
.y71{bottom:359.055200pt;}
.y174{bottom:360.044533pt;}
.ydd{bottom:361.377867pt;}
.y152{bottom:362.711200pt;}
.ybc{bottom:364.444533pt;}
.y18f{bottom:365.377867pt;}
.y155{bottom:373.829200pt;}
.y1e{bottom:374.597067pt;}
.y11d{bottom:375.162533pt;}
.yff{bottom:377.829200pt;}
.y145{bottom:379.162533pt;}
.y8{bottom:381.379600pt;}
.y173{bottom:382.711200pt;}
.ydc{bottom:384.044533pt;}
.y151{bottom:385.377867pt;}
.y7c{bottom:385.824000pt;}
.ybb{bottom:387.111200pt;}
.y18e{bottom:388.044533pt;}
.y5d{bottom:390.865200pt;}
.y40{bottom:392.354133pt;}
.y1d{bottom:395.930400pt;}
.y154{bottom:396.495867pt;}
.y132{bottom:397.829200pt;}
.yfe{bottom:399.162533pt;}
.y144{bottom:400.495867pt;}
.y172{bottom:405.377867pt;}
.y70{bottom:408.189067pt;}
.y5c{bottom:408.198533pt;}
.yba{bottom:409.777867pt;}
.y18d{bottom:410.711200pt;}
.y7{bottom:413.379600pt;}
.y1f{bottom:417.145067pt;}
.y1c{bottom:417.263733pt;}
.y153{bottom:419.162533pt;}
.y131{bottom:420.495867pt;}
.ydb{bottom:421.829200pt;}
.y150{bottom:423.162533pt;}
.y171{bottom:428.044533pt;}
.yb9{bottom:432.444533pt;}
.y5b{bottom:440.650000pt;}
.y11c{bottom:441.829200pt;}
.yda{bottom:443.162533pt;}
.y14f{bottom:444.495867pt;}
.y43{bottom:444.768000pt;}
.y3f{bottom:445.122533pt;}
.y18c{bottom:448.495867pt;}
.yb8{bottom:455.111200pt;}
.y99{bottom:456.566933pt;}
.y88{bottom:456.883200pt;}
.y6f{bottom:457.465067pt;}
.y5a{bottom:457.983333pt;}
.yd9{bottom:464.495867pt;}
.yfd{bottom:465.829200pt;}
.y1b{bottom:468.012933pt;}
.y18b{bottom:469.829200pt;}
.y3e{bottom:476.240667pt;}
.y42{bottom:476.249733pt;}
.y16d{bottom:480.947333pt;}
.ya2{bottom:483.400533pt;}
.y11b{bottom:487.162533pt;}
.yfc{bottom:488.495867pt;}
.y87{bottom:489.334667pt;}
.y1a{bottom:489.346267pt;}
.y6e{bottom:490.362267pt;}
.y59{bottom:490.434800pt;}
.yb7{bottom:492.896000pt;}
.y16c{bottom:502.280667pt;}
.y86{bottom:506.668000pt;}
.y11a{bottom:509.829200pt;}
.y19{bottom:510.679600pt;}
.yfb{bottom:511.162533pt;}
.yb6{bottom:514.229333pt;}
.y3c{bottom:519.848800pt;}
.y58{bottom:522.886267pt;}
.y16b{bottom:523.614000pt;}
.y98{bottom:523.741467pt;}
.y85{bottom:524.001333pt;}
.yd8{bottom:531.162533pt;}
.y18{bottom:532.012933pt;}
.y119{bottom:532.495867pt;}
.yfa{bottom:533.829200pt;}
.yb5{bottom:535.562667pt;}
.y18a{bottom:536.495867pt;}
.y6d{bottom:539.499333pt;}
.y57{bottom:540.219600pt;}
.y17{bottom:553.346267pt;}
.yd7{bottom:553.829200pt;}
.y118{bottom:555.162533pt;}
.y84{bottom:556.452800pt;}
.yf9{bottom:556.495867pt;}
.y189{bottom:559.162533pt;}
.y56{bottom:572.671067pt;}
.y97{bottom:573.732267pt;}
.y83{bottom:573.786133pt;}
.y16{bottom:574.679600pt;}
.yd6{bottom:576.495867pt;}
.y117{bottom:577.829200pt;}
.yf8{bottom:579.162533pt;}
.y188{bottom:581.829200pt;}
.y6c{bottom:589.795333pt;}
.y55{bottom:590.004400pt;}
.y16a{bottom:590.280667pt;}
.y15{bottom:596.012933pt;}
.yd5{bottom:599.162533pt;}
.y116{bottom:600.495867pt;}
.yf7{bottom:601.829200pt;}
.yb4{bottom:602.229333pt;}
.y187{bottom:604.495867pt;}
.ya0{bottom:606.036667pt;}
.y82{bottom:606.237600pt;}
.y32{bottom:608.969733pt;}
.y169{bottom:612.947333pt;}
.y14{bottom:617.346267pt;}
.yd4{bottom:621.829200pt;}
.y54{bottom:622.455867pt;}
.y115{bottom:623.162533pt;}
.yf6{bottom:624.495867pt;}
.yb3{bottom:624.896000pt;}
.y186{bottom:627.162533pt;}
.y168{bottom:635.614000pt;}
.y6b{bottom:638.362267pt;}
.y13{bottom:638.679600pt;}
.y81{bottom:638.689067pt;}
.y53{bottom:639.789200pt;}
.yd3{bottom:644.495867pt;}
.y114{bottom:645.829200pt;}
.yf5{bottom:647.162533pt;}
.yb2{bottom:647.562667pt;}
.ya{bottom:649.352667pt;}
.y185{bottom:649.829200pt;}
.y80{bottom:656.022400pt;}
.y167{bottom:658.280667pt;}
.y12{bottom:660.012933pt;}
.y24{bottom:660.999600pt;}
.yd2{bottom:667.162533pt;}
.y113{bottom:668.495867pt;}
.yf4{bottom:669.829200pt;}
.yb1{bottom:670.229333pt;}
.y184{bottom:672.495867pt;}
.y95{bottom:673.185733pt;}
.y7f{bottom:673.355733pt;}
.y51{bottom:676.385600pt;}
.y166{bottom:680.947333pt;}
.y130{bottom:684.947333pt;}
.yd1{bottom:689.829200pt;}
.y112{bottom:691.162533pt;}
.yf3{bottom:692.495867pt;}
.yb0{bottom:692.896000pt;}
.y183{bottom:695.162533pt;}
.y3b{bottom:702.926800pt;}
.y165{bottom:703.614000pt;}
.y7e{bottom:705.807067pt;}
.y12f{bottom:706.280667pt;}
.y25{bottom:709.194267pt;}
.y11{bottom:709.234000pt;}
.yb{bottom:711.043333pt;}
.yd0{bottom:712.495867pt;}
.y111{bottom:713.829200pt;}
.yf2{bottom:715.162533pt;}
.yaf{bottom:715.562667pt;}
.y182{bottom:717.829200pt;}
.y52{bottom:722.558933pt;}
.y7d{bottom:723.140400pt;}
.y93{bottom:723.401600pt;}
.y3a{bottom:725.593467pt;}
.y164{bottom:726.280667pt;}
.y12e{bottom:727.614000pt;}
.ycf{bottom:735.162533pt;}
.y110{bottom:736.495867pt;}
.yf1{bottom:737.829200pt;}
.yae{bottom:738.229333pt;}
.y39{bottom:748.260133pt;}
.y163{bottom:748.947333pt;}
.ya3{bottom:749.353733pt;}
.y181{bottom:755.614000pt;}
.y10{bottom:757.093067pt;}
.yce{bottom:757.829200pt;}
.y10f{bottom:759.162533pt;}
.yf0{bottom:760.495867pt;}
.yad{bottom:760.896000pt;}
.y89{bottom:761.543600pt;}
.y38{bottom:770.926800pt;}
.y9{bottom:771.200800pt;}
.y162{bottom:771.614000pt;}
.yf{bottom:775.759733pt;}
.y180{bottom:776.947333pt;}
.ycd{bottom:780.495867pt;}
.y10e{bottom:781.829200pt;}
.y143{bottom:783.162533pt;}
.yac{bottom:783.562667pt;}
.y37{bottom:793.593467pt;}
.y12d{bottom:794.280667pt;}
.ye{bottom:795.413067pt;}
.y50{bottom:795.877867pt;}
.yef{bottom:798.280667pt;}
.ycc{bottom:803.162533pt;}
.y10d{bottom:804.495867pt;}
.y142{bottom:805.829200pt;}
.yab{bottom:806.229333pt;}
.y69{bottom:812.281067pt;}
.y4f{bottom:813.211200pt;}
.y36{bottom:816.260133pt;}
.y9f{bottom:816.550133pt;}
.y12c{bottom:816.947333pt;}
.y91{bottom:817.461467pt;}
.yee{bottom:819.614000pt;}
.ycb{bottom:825.829200pt;}
.y14e{bottom:827.162533pt;}
.y35{bottom:838.926800pt;}
.y12b{bottom:839.614000pt;}
.yed{bottom:840.947333pt;}
.y10c{bottom:842.280667pt;}
.y141{bottom:843.614000pt;}
.yaa{bottom:844.014133pt;}
.y4e{bottom:845.662533pt;}
.yca{bottom:848.495867pt;}
.y96{bottom:849.637867pt;}
.y14d{bottom:849.829200pt;}
.y90{bottom:849.912933pt;}
.y34{bottom:861.593467pt;}
.y12a{bottom:862.280667pt;}
.y68{bottom:862.488267pt;}
.y4d{bottom:862.995867pt;}
.y10b{bottom:863.614000pt;}
.y140{bottom:864.947333pt;}
.ya9{bottom:865.347467pt;}
.yc9{bottom:871.162533pt;}
.y14c{bottom:872.495867pt;}
.y23{bottom:881.472533pt;}
.y94{bottom:882.141733pt;}
.y8f{bottom:882.364400pt;}
.y33{bottom:884.260133pt;}
.y129{bottom:884.947333pt;}
.y13f{bottom:886.280667pt;}
.ya8{bottom:886.680800pt;}
.yc8{bottom:893.829200pt;}
.y14b{bottom:895.162533pt;}
.y4c{bottom:895.447467pt;}
.y22{bottom:902.805867pt;}
.yec{bottom:907.614000pt;}
.y67{bottom:912.756000pt;}
.y4b{bottom:912.780800pt;}
.y8e{bottom:914.815867pt;}
.yc7{bottom:916.495867pt;}
.y14a{bottom:917.829200pt;}
.ya7{bottom:929.347467pt;}
.yeb{bottom:930.280667pt;}
.y8d{bottom:932.149200pt;}
.yc6{bottom:939.162533pt;}
.y4a{bottom:945.232133pt;}
.y92{bottom:948.661467pt;}
.y8c{bottom:949.482533pt;}
.yea{bottom:952.947333pt;}
.y21{bottom:953.360000pt;}
.y149{bottom:955.614000pt;}
.y49{bottom:962.565467pt;}
.y6a{bottom:963.023733pt;}
.y3d{bottom:971.865067pt;}
.ye9{bottom:975.614000pt;}
.yc5{bottom:976.947333pt;}
.y8b{bottom:981.933867pt;}
.y20{bottom:992.026667pt;}
.ya6{bottom:993.347467pt;}
.ya5{bottom:995.316000pt;}
.yc4{bottom:998.280667pt;}
.ya1{bottom:999.186400pt;}
.y8a{bottom:999.267200pt;}
.y48{bottom:1000.128667pt;}
.y26{bottom:1057.913067pt;}
.ha{height:39.360000pt;}
.h1a{height:40.930560pt;}
.h6{height:44.426667pt;}
.he{height:44.586667pt;}
.h7{height:44.922667pt;}
.h18{height:45.877333pt;}
.hf{height:45.920000pt;}
.hd{height:47.040000pt;}
.h14{height:47.297600pt;}
.h9{height:47.536533pt;}
.h11{height:48.517333pt;}
.h8{height:48.869333pt;}
.h19{height:49.045333pt;}
.h17{height:50.512000pt;}
.h13{height:53.504000pt;}
.h12{height:55.104000pt;}
.h16{height:58.389333pt;}
.h10{height:62.976000pt;}
.h15{height:64.288000pt;}
.h2{height:67.157333pt;}
.hc{height:73.472000pt;}
.h3{height:82.141813pt;}
.hb{height:104.933333pt;}
.h5{height:174.609067pt;}
.h4{height:182.416107pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:77.480267pt;}
.x5{left:82.068000pt;}
.x7{left:112.440933pt;}
.xd{left:113.397733pt;}
.xc{left:145.254667pt;}
.xa{left:151.615333pt;}
.x6{left:152.546933pt;}
.xf{left:170.078800pt;}
.xe{left:187.483333pt;}
.x18{left:205.697600pt;}
.x2{left:228.498400pt;}
.x9{left:233.364533pt;}
.x8{left:238.779067pt;}
.x14{left:271.737733pt;}
.x4{left:275.742533pt;}
.x1a{left:292.827333pt;}
.x11{left:295.120267pt;}
.x19{left:302.207733pt;}
.x1b{left:304.310667pt;}
.x10{left:306.517067pt;}
.x1c{left:326.181200pt;}
.x13{left:328.159600pt;}
.x12{left:349.732933pt;}
.x17{left:389.706000pt;}
.x15{left:390.612800pt;}
.x16{left:392.159467pt;}
.x1{left:393.548533pt;}
.x3{left:450.087200pt;}
}




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