
    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_9a95cb54110975aaeab701aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_c86f8d25a00ce559201f587b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.039062;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_431a94fe7ed5c4f314227c36.woff')format("woff");}.ff3{font-family:ff3;line-height:0.833496;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_aaface0d0a237b675e8d24bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_e3437164824e132d8a0c6ddb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.142000;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_3b17ffbd1ce5796848f05446.woff')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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_f89e8ff8260bec1b40f27885.woff')format("woff");}.ff7{font-family:ff7;line-height:1.132000;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_db2c5e15b57df2cf01e0db61.woff')format("woff");}.ff8{font-family:ff8;line-height:1.121000;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_d642e10195a700abc2bca701.woff')format("woff");}.ff9{font-family:ff9;line-height:1.142000;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_262a9620b642951506049cc0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_bef634144d30a8a31e01c5d1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_10929b4f1d1a61a2141727d8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_332565dfe630085a770d8ef5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.039062;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_2f4e9f6df914727d9d8b71b4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.833496;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:fff;src:url('chunks/assets/font_aaface0d0a237b675e8d24bf.woff')format("woff");}.fff{font-family:fff;line-height:0.958008;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:21.978000px;}
.ls7{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.630000px;}
.ls1{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.385200px;}
.ls5{letter-spacing:0.660000px;}
.ls3{letter-spacing:1.176000px;}
.ls8{letter-spacing:1.180800px;}
.ls2{letter-spacing:1.512000px;}
.ls9{letter-spacing:15.295200px;}
.ls4{letter-spacing:101.719800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-21.000000px;}
.ws26{word-spacing:-16.500000px;}
.wsbf{word-spacing:-15.750000px;}
.wsd0{word-spacing:-15.120000px;}
.ws1c{word-spacing:-15.000000px;}
.ws53{word-spacing:-13.500000px;}
.ws78{word-spacing:-9.619500px;}
.wsc9{word-spacing:-9.009000px;}
.ws3d{word-spacing:-8.745000px;}
.ws3e{word-spacing:-7.870500px;}
.wsab{word-spacing:-5.016000px;}
.ws86{word-spacing:-3.366000px;}
.ws7{word-spacing:-3.240000px;}
.ws54{word-spacing:-3.234000px;}
.ws69{word-spacing:-3.168000px;}
.wsb8{word-spacing:-3.102000px;}
.wsd9{word-spacing:-3.087000px;}
.ws4f{word-spacing:-3.036000px;}
.wsf{word-spacing:-3.000000px;}
.ws70{word-spacing:-2.970000px;}
.ws10{word-spacing:-2.940000px;}
.wsb0{word-spacing:-2.904000px;}
.ws92{word-spacing:-2.838000px;}
.wsd6{word-spacing:-2.835000px;}
.ws56{word-spacing:-2.772000px;}
.ws0{word-spacing:-2.760000px;}
.wsb7{word-spacing:-2.706000px;}
.ws3f{word-spacing:-2.640000px;}
.ws6e{word-spacing:-2.574000px;}
.wsd{word-spacing:-2.520000px;}
.ws45{word-spacing:-2.442000px;}
.ws97{word-spacing:-2.376000px;}
.ws4a{word-spacing:-2.310000px;}
.ws2d{word-spacing:-2.244000px;}
.wsc{word-spacing:-2.220000px;}
.ws64{word-spacing:-2.214000px;}
.ws2c{word-spacing:-2.178000px;}
.ws71{word-spacing:-2.112000px;}
.ws91{word-spacing:-2.046000px;}
.ws62{word-spacing:-1.980000px;}
.ws87{word-spacing:-1.914000px;}
.wsbc{word-spacing:-1.848000px;}
.ws16{word-spacing:-1.800000px;}
.ws55{word-spacing:-1.782000px;}
.wsd2{word-spacing:-1.764000px;}
.ws4{word-spacing:-1.680000px;}
.wsa7{word-spacing:-1.650000px;}
.wsa2{word-spacing:-1.584000px;}
.ws31{word-spacing:-1.518000px;}
.ws2{word-spacing:-1.500000px;}
.ws46{word-spacing:-1.452000px;}
.ws73{word-spacing:-1.386000px;}
.wsa8{word-spacing:-1.320000px;}
.ws9e{word-spacing:-1.254000px;}
.ws77{word-spacing:-1.188000px;}
.ws44{word-spacing:-1.122000px;}
.ws1a{word-spacing:-1.080000px;}
.ws61{word-spacing:-1.056000px;}
.ws5f{word-spacing:-0.990000px;}
.ws1f{word-spacing:-0.960000px;}
.ws7e{word-spacing:-0.924000px;}
.ws65{word-spacing:-0.864000px;}
.wsaf{word-spacing:-0.858000px;}
.ws3c{word-spacing:-0.792000px;}
.ws18{word-spacing:-0.756000px;}
.ws30{word-spacing:-0.726000px;}
.ws25{word-spacing:-0.720000px;}
.ws6c{word-spacing:-0.660000px;}
.ws40{word-spacing:-0.594000px;}
.ws19{word-spacing:-0.588000px;}
.ws35{word-spacing:-0.528000px;}
.wsc0{word-spacing:-0.504000px;}
.ws82{word-spacing:-0.462000px;}
.ws98{word-spacing:-0.396000px;}
.wsb{word-spacing:-0.360000px;}
.wsae{word-spacing:-0.330000px;}
.wsaa{word-spacing:-0.264000px;}
.ws38{word-spacing:-0.198000px;}
.wsbd{word-spacing:-0.132000px;}
.ws96{word-spacing:-0.066000px;}
.ws1b{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws2f{word-spacing:0.066000px;}
.ws13{word-spacing:0.120000px;}
.ws2a{word-spacing:0.132000px;}
.ws1e{word-spacing:0.180000px;}
.ws49{word-spacing:0.198000px;}
.ws15{word-spacing:0.240000px;}
.ws41{word-spacing:0.264000px;}
.ws22{word-spacing:0.300000px;}
.ws60{word-spacing:0.330000px;}
.ws83{word-spacing:0.396000px;}
.ws3{word-spacing:0.420000px;}
.ws7c{word-spacing:0.462000px;}
.ws52{word-spacing:0.486000px;}
.ws4b{word-spacing:0.528000px;}
.ws3a{word-spacing:0.594000px;}
.ws94{word-spacing:0.660000px;}
.ws66{word-spacing:0.702000px;}
.ws43{word-spacing:0.726000px;}
.wsd4{word-spacing:0.756000px;}
.ws63{word-spacing:0.792000px;}
.ws50{word-spacing:0.858000px;}
.ws84{word-spacing:0.924000px;}
.wsb9{word-spacing:0.990000px;}
.ws57{word-spacing:1.056000px;}
.wsd3{word-spacing:1.071000px;}
.ws48{word-spacing:1.122000px;}
.ws9{word-spacing:1.140000px;}
.wsa6{word-spacing:1.188000px;}
.ws6{word-spacing:1.200000px;}
.ws67{word-spacing:1.242000px;}
.ws32{word-spacing:1.254000px;}
.ws11{word-spacing:1.260000px;}
.wsa3{word-spacing:1.320000px;}
.ws51{word-spacing:1.386000px;}
.ws29{word-spacing:1.452000px;}
.ws6f{word-spacing:1.518000px;}
.wse{word-spacing:1.560000px;}
.ws85{word-spacing:1.650000px;}
.wsad{word-spacing:1.716000px;}
.ws4d{word-spacing:1.782000px;}
.ws28{word-spacing:1.848000px;}
.ws36{word-spacing:1.914000px;}
.ws34{word-spacing:1.980000px;}
.wsa4{word-spacing:2.046000px;}
.wsda{word-spacing:2.079000px;}
.ws2e{word-spacing:2.112000px;}
.ws9a{word-spacing:2.178000px;}
.ws9f{word-spacing:2.244000px;}
.ws33{word-spacing:2.310000px;}
.ws4e{word-spacing:2.376000px;}
.wsc4{word-spacing:2.394000px;}
.wsb2{word-spacing:2.442000px;}
.ws24{word-spacing:2.460000px;}
.ws3b{word-spacing:2.508000px;}
.wsa0{word-spacing:2.574000px;}
.ws23{word-spacing:2.640000px;}
.wsa5{word-spacing:2.706000px;}
.ws81{word-spacing:2.772000px;}
.ws5a{word-spacing:2.838000px;}
.ws68{word-spacing:2.904000px;}
.ws42{word-spacing:2.970000px;}
.ws14{word-spacing:3.000000px;}
.ws5c{word-spacing:3.036000px;}
.ws47{word-spacing:3.102000px;}
.ws4c{word-spacing:3.168000px;}
.ws8b{word-spacing:3.234000px;}
.ws5e{word-spacing:3.300000px;}
.wsbb{word-spacing:3.366000px;}
.ws12{word-spacing:3.420000px;}
.ws39{word-spacing:3.432000px;}
.wsa9{word-spacing:3.498000px;}
.wsb1{word-spacing:3.564000px;}
.ws2b{word-spacing:3.630000px;}
.wsa1{word-spacing:3.696000px;}
.ws6a{word-spacing:3.762000px;}
.ws7f{word-spacing:3.828000px;}
.wsac{word-spacing:3.894000px;}
.ws7d{word-spacing:3.960000px;}
.ws9d{word-spacing:4.092000px;}
.wsb5{word-spacing:4.158000px;}
.wsd5{word-spacing:4.221000px;}
.ws90{word-spacing:4.224000px;}
.wsb3{word-spacing:4.290000px;}
.ws6b{word-spacing:4.356000px;}
.ws99{word-spacing:4.422000px;}
.ws1d{word-spacing:4.440000px;}
.wsdb{word-spacing:4.473000px;}
.ws9c{word-spacing:4.488000px;}
.ws80{word-spacing:4.554000px;}
.ws5d{word-spacing:4.686000px;}
.ws6d{word-spacing:4.818000px;}
.ws88{word-spacing:4.860000px;}
.ws5{word-spacing:4.920000px;}
.ws76{word-spacing:4.950000px;}
.ws8c{word-spacing:5.016000px;}
.wsba{word-spacing:5.082000px;}
.wsb6{word-spacing:5.214000px;}
.ws72{word-spacing:5.280000px;}
.wsa{word-spacing:5.340000px;}
.ws89{word-spacing:5.478000px;}
.wsbe{word-spacing:5.544000px;}
.wscc{word-spacing:5.607000px;}
.wsc3{word-spacing:5.859000px;}
.ws5b{word-spacing:5.874000px;}
.ws74{word-spacing:5.940000px;}
.ws20{word-spacing:6.000000px;}
.ws79{word-spacing:6.072000px;}
.ws7a{word-spacing:6.204000px;}
.ws7b{word-spacing:6.402000px;}
.ws75{word-spacing:6.468000px;}
.ws37{word-spacing:6.534000px;}
.ws9b{word-spacing:6.600000px;}
.ws95{word-spacing:6.666000px;}
.wsc6{word-spacing:6.930000px;}
.wsb4{word-spacing:7.194000px;}
.wsd8{word-spacing:7.245000px;}
.ws93{word-spacing:7.260000px;}
.ws58{word-spacing:7.392000px;}
.ws21{word-spacing:7.560000px;}
.ws8d{word-spacing:7.656000px;}
.ws8e{word-spacing:7.722000px;}
.ws8a{word-spacing:7.854000px;}
.ws8f{word-spacing:8.712000px;}
.ws8{word-spacing:9.120000px;}
.wsca{word-spacing:9.198000px;}
.wsc7{word-spacing:9.450000px;}
.ws59{word-spacing:10.164000px;}
.wscf{word-spacing:10.458000px;}
.wsd1{word-spacing:10.647000px;}
.wsd7{word-spacing:11.466000px;}
.ws27{word-spacing:11.592000px;}
.wscb{word-spacing:12.537000px;}
.wsc8{word-spacing:12.663000px;}
.wsce{word-spacing:14.112000px;}
.wsc2{word-spacing:15.309000px;}
.wscd{word-spacing:15.435000px;}
.wsc1{word-spacing:15.561000px;}
.wsc5{word-spacing:24.570000px;}
._e{margin-left:-2211.024000px;}
._0{margin-left:-860.364000px;}
._2{margin-left:-350.280000px;}
._12{margin-left:-18.994200px;}
._a{margin-left:-16.056000px;}
._11{margin-left:-13.176000px;}
._16{margin-left:-11.664000px;}
._18{margin-left:-9.576000px;}
._9{margin-left:-8.280000px;}
._5{margin-left:-6.372000px;}
._8{margin-left:-5.227200px;}
._7{margin-left:-3.859200px;}
._6{margin-left:-2.700000px;}
._3{margin-left:-1.512000px;}
._4{width:1.296000px;}
._14{width:2.335200px;}
._15{width:3.582000px;}
._13{width:6.262200px;}
._17{width:7.358400px;}
._19{width:10.516800px;}
._c{width:11.592000px;}
._f{width:19.077600px;}
._d{width:101.719800px;}
._10{width:102.924000px;}
._b{width:1643.626800px;}
._1{width:7443.684000px;}
.fc1{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs5{font-size:36.000000px;}
.fsd{font-size:38.478000px;}
.fse{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fs2{font-size:216.000000px;}
.y28{bottom:-20.763750px;}
.y1c2{bottom:-16.511850px;}
.y0{bottom:0.000000px;}
.y9a{bottom:85.039500px;}
.y170{bottom:85.563750px;}
.y58{bottom:85.739250px;}
.y74{bottom:86.978550px;}
.y127{bottom:90.283350px;}
.y10b{bottom:91.743300px;}
.y160{bottom:103.039350px;}
.y13d{bottom:104.499150px;}
.y57{bottom:105.239250px;}
.y16f{bottom:105.363600px;}
.y99{bottom:105.735000px;}
.y73{bottom:106.778400px;}
.y14c{bottom:107.007750px;}
.y126{bottom:110.083350px;}
.y10a{bottom:111.543150px;}
.ybb{bottom:117.439650px;}
.y15f{bottom:122.839200px;}
.y13c{bottom:124.299150px;}
.y16e{bottom:125.163600px;}
.y72{bottom:126.578550px;}
.y14b{bottom:126.807750px;}
.y187{bottom:127.707750px;}
.y109{bottom:131.343150px;}
.yba{bottom:138.135150px;}
.y125{bottom:138.387300px;}
.yd9{bottom:141.179400px;}
.y15e{bottom:142.639200px;}
.y168{bottom:144.099150px;}
.y16d{bottom:144.963750px;}
.y71{bottom:146.378550px;}
.y14a{bottom:146.607750px;}
.y98{bottom:149.527500px;}
.yb9{bottom:149.839800px;}
.y108{bottom:151.143150px;}
.y13b{bottom:152.603100px;}
.y124{bottom:158.187300px;}
.yd8{bottom:160.979400px;}
.y15d{bottom:162.439200px;}
.y56{bottom:163.739250px;}
.y167{bottom:163.899150px;}
.y16c{bottom:164.763750px;}
.y186{bottom:165.507750px;}
.y70{bottom:166.178400px;}
.y149{bottom:166.407750px;}
.y97{bottom:169.327500px;}
.yb8{bottom:170.535300px;}
.y107{bottom:170.943150px;}
.y13a{bottom:172.403100px;}
.y123{bottom:177.987300px;}
.yd7{bottom:180.779400px;}
.y15c{bottom:182.239350px;}
.yb7{bottom:182.239950px;}
.y55{bottom:183.239250px;}
.y166{bottom:183.699150px;}
.y185{bottom:184.407750px;}
.y6f{bottom:185.978550px;}
.y148{bottom:186.207750px;}
.y1d{bottom:187.796850px;}
.y96{bottom:189.127500px;}
.ye4{bottom:189.283350px;}
.y106{bottom:190.743150px;}
.y1b7{bottom:192.048750px;}
.y139{bottom:192.203100px;}
.y122{bottom:197.787300px;}
.yd6{bottom:200.579400px;}
.y15b{bottom:202.039200px;}
.y54{bottom:202.739250px;}
.yb6{bottom:202.935450px;}
.y165{bottom:203.499150px;}
.y6e{bottom:205.778400px;}
.y16b{bottom:205.823550px;}
.y147{bottom:206.007750px;}
.y95{bottom:208.927500px;}
.ye3{bottom:209.083350px;}
.y105{bottom:210.543300px;}
.y184{bottom:211.811700px;}
.y138{bottom:212.003100px;}
.y121{bottom:217.587300px;}
.y15a{bottom:221.839350px;}
.y3d{bottom:222.465150px;}
.y164{bottom:223.299150px;}
.y6d{bottom:225.578550px;}
.y146{bottom:225.807750px;}
.y94{bottom:228.727500px;}
.yd5{bottom:228.883350px;}
.y104{bottom:230.343150px;}
.y183{bottom:230.711700px;}
.y137{bottom:231.803100px;}
.y120{bottom:237.387300px;}
.y159{bottom:241.639350px;}
.y163{bottom:243.099150px;}
.y6c{bottom:245.378550px;}
.y145{bottom:245.607750px;}
.y16a{bottom:246.883350px;}
.y93{bottom:248.527500px;}
.yd4{bottom:248.683350px;}
.y182{bottom:249.611700px;}
.y103{bottom:250.143150px;}
.yb5{bottom:251.603100px;}
.y11f{bottom:257.187300px;}
.y53{bottom:261.239250px;}
.y158{bottom:261.439200px;}
.y3c{bottom:261.465150px;}
.y162{bottom:262.899150px;}
.y6b{bottom:265.178400px;}
.y144{bottom:265.407750px;}
.y92{bottom:268.327500px;}
.yd3{bottom:268.483350px;}
.y181{bottom:268.511700px;}
.y102{bottom:269.943150px;}
.yb4{bottom:271.403100px;}
.ye2{bottom:276.987300px;}
.y52{bottom:280.739250px;}
.y161{bottom:282.699150px;}
.y6a{bottom:284.978550px;}
.y143{bottom:285.207750px;}
.y91{bottom:288.127500px;}
.yd2{bottom:288.283350px;}
.y101{bottom:289.743150px;}
.yb3{bottom:291.203100px;}
.y180{bottom:295.915650px;}
.ye1{bottom:296.787300px;}
.y1e{bottom:298.593900px;}
.y51{bottom:300.239250px;}
.y3b{bottom:300.465150px;}
.y27{bottom:300.619950px;}
.y1b8{bottom:302.845800px;}
.y69{bottom:304.778400px;}
.y1c1{bottom:304.871850px;}
.y142{bottom:305.007750px;}
.y90{bottom:307.927500px;}
.yd1{bottom:308.083350px;}
.y100{bottom:309.543300px;}
.yb2{bottom:311.003100px;}
.y17f{bottom:314.815650px;}
.ye0{bottom:316.587300px;}
.y136{bottom:319.507050px;}
.y50{bottom:319.739250px;}
.y68{bottom:324.578550px;}
.y141{bottom:324.807750px;}
.y8f{bottom:327.727500px;}
.yd0{bottom:327.883350px;}
.yff{bottom:329.343150px;}
.yb1{bottom:330.803100px;}
.y17e{bottom:333.715650px;}
.y26{bottom:334.323900px;}
.ydf{bottom:336.387300px;}
.y1c0{bottom:338.575800px;}
.y4f{bottom:339.239250px;}
.y135{bottom:339.307050px;}
.y3a{bottom:339.465150px;}
.y67{bottom:344.378550px;}
.y140{bottom:344.607750px;}
.y8e{bottom:347.527500px;}
.ycf{bottom:347.683350px;}
.yfe{bottom:349.143150px;}
.yb0{bottom:350.603100px;}
.yde{bottom:356.187300px;}
.y4e{bottom:358.739250px;}
.y134{bottom:359.107050px;}
.y17d{bottom:361.119600px;}
.y25{bottom:363.123900px;}
.y66{bottom:364.178400px;}
.y1bf{bottom:367.375800px;}
.yce{bottom:367.483350px;}
.yfd{bottom:368.943150px;}
.yaf{bottom:370.403100px;}
.y8d{bottom:375.831450px;}
.ydd{bottom:375.987300px;}
.y39{bottom:378.465150px;}
.y133{bottom:378.907050px;}
.y17c{bottom:380.019600px;}
.y65{bottom:383.978550px;}
.y13f{bottom:385.667700px;}
.ycd{bottom:387.283350px;}
.yfc{bottom:388.743150px;}
.yae{bottom:390.203100px;}
.y8c{bottom:395.631450px;}
.ydc{bottom:395.787300px;}
.y132{bottom:398.707050px;}
.y64{bottom:403.778400px;}
.ycc{bottom:407.083350px;}
.y17b{bottom:407.423550px;}
.yfb{bottom:408.543300px;}
.yad{bottom:410.003100px;}
.y8b{bottom:415.431450px;}
.ydb{bottom:415.587300px;}
.y4d{bottom:417.239250px;}
.y38{bottom:417.465150px;}
.y131{bottom:418.507050px;}
.y63{bottom:423.578550px;}
.y11e{bottom:424.091250px;}
.y17a{bottom:426.323550px;}
.y157{bottom:428.343150px;}
.yac{bottom:429.803100px;}
.y8a{bottom:435.231450px;}
.ycb{bottom:435.387300px;}
.y4c{bottom:436.739250px;}
.yfa{bottom:436.847100px;}
.y130{bottom:438.307050px;}
.y62{bottom:443.378400px;}
.y11d{bottom:443.891250px;}
.y179{bottom:445.223550px;}
.y156{bottom:448.143150px;}
.yab{bottom:449.603100px;}
.y89{bottom:455.031450px;}
.yca{bottom:455.187300px;}
.y4b{bottom:456.239250px;}
.y37{bottom:456.465150px;}
.yf9{bottom:456.647100px;}
.y12f{bottom:458.107050px;}
.y61{bottom:463.178400px;}
.y11c{bottom:463.691250px;}
.y155{bottom:467.943150px;}
.yaa{bottom:469.403100px;}
.y178{bottom:472.627500px;}
.y88{bottom:474.831450px;}
.yc9{bottom:474.987300px;}
.y4a{bottom:475.739250px;}
.yf8{bottom:476.447100px;}
.y12e{bottom:477.907050px;}
.y1b{bottom:482.476200px;}
.y60{bottom:482.978550px;}
.y11b{bottom:483.491250px;}
.y1b5{bottom:486.724950px;}
.y154{bottom:487.743150px;}
.ya9{bottom:489.203100px;}
.y177{bottom:491.527500px;}
.y87{bottom:494.631450px;}
.yc8{bottom:494.787300px;}
.y36{bottom:495.465150px;}
.yf7{bottom:496.247100px;}
.y12d{bottom:497.707050px;}
.y1a{bottom:500.476200px;}
.y11a{bottom:503.291250px;}
.y1b4{bottom:504.724950px;}
.y153{bottom:507.543300px;}
.ya8{bottom:509.003100px;}
.y176{bottom:510.427500px;}
.y19a{bottom:513.331050px;}
.y86{bottom:514.431450px;}
.yc7{bottom:514.587300px;}
.y49{bottom:514.739250px;}
.yf6{bottom:516.047100px;}
.y12c{bottom:517.507050px;}
.y19{bottom:518.476200px;}
.y1b3{bottom:522.724950px;}
.y119{bottom:523.091250px;}
.y5f{bottom:524.038350px;}
.y152{bottom:527.343150px;}
.ya7{bottom:528.803100px;}
.y199{bottom:532.231050px;}
.y85{bottom:534.231450px;}
.y48{bottom:534.239250px;}
.yc6{bottom:534.387300px;}
.y35{bottom:534.465150px;}
.yf5{bottom:535.847100px;}
.y18{bottom:536.476200px;}
.y12b{bottom:537.307050px;}
.y175{bottom:537.831450px;}
.y1b2{bottom:540.724950px;}
.y118{bottom:542.891250px;}
.y151{bottom:547.143150px;}
.y2e{bottom:548.091300px;}
.ya6{bottom:548.603100px;}
.y198{bottom:551.131050px;}
.y1c{bottom:551.152950px;}
.y84{bottom:554.031300px;}
.yc5{bottom:554.187300px;}
.y17{bottom:554.476200px;}
.y1b6{bottom:555.404850px;}
.yf4{bottom:555.647100px;}
.y174{bottom:556.731450px;}
.y12a{bottom:557.107050px;}
.y1b1{bottom:558.724950px;}
.y117{bottom:562.691250px;}
.ya5{bottom:568.403100px;}
.y16{bottom:572.476200px;}
.y34{bottom:573.465150px;}
.y83{bottom:573.831450px;}
.yc4{bottom:573.987300px;}
.yf3{bottom:575.447100px;}
.y173{bottom:575.631450px;}
.y1b0{bottom:576.724950px;}
.y129{bottom:576.907050px;}
.y197{bottom:578.535000px;}
.y2d{bottom:581.143350px;}
.y116{bottom:582.491250px;}
.yc3{bottom:593.787300px;}
.y172{bottom:594.531300px;}
.yf2{bottom:595.247100px;}
.ya4{bottom:596.707050px;}
.y196{bottom:597.435000px;}
.y15{bottom:598.980150px;}
.y115{bottom:602.291250px;}
.y24{bottom:602.336250px;}
.y1af{bottom:603.229950px;}
.y1be{bottom:606.588150px;}
.y2c{bottom:610.595250px;}
.y33{bottom:612.465150px;}
.yc2{bottom:613.587300px;}
.y82{bottom:614.891250px;}
.y150{bottom:615.047100px;}
.y195{bottom:616.335000px;}
.ya3{bottom:616.507050px;}
.y14{bottom:616.980150px;}
.y5e{bottom:619.069800px;}
.y1ae{bottom:621.229950px;}
.y114{bottom:622.091250px;}
.yf1{bottom:623.551050px;}
.y169{bottom:633.387300px;}
.y171{bottom:634.691250px;}
.yda{bottom:634.847100px;}
.y13{bottom:634.980150px;}
.ya2{bottom:636.307050px;}
.y23{bottom:638.336250px;}
.y5d{bottom:638.869800px;}
.y1ad{bottom:639.229950px;}
.y113{bottom:641.891250px;}
.y1bd{bottom:642.588150px;}
.yf0{bottom:643.351050px;}
.y194{bottom:643.738950px;}
.y32{bottom:651.465150px;}
.y12{bottom:652.980150px;}
.yc1{bottom:654.647100px;}
.ya1{bottom:656.107050px;}
.y1ac{bottom:657.229950px;}
.y5c{bottom:658.669800px;}
.y112{bottom:661.691250px;}
.y193{bottom:662.638950px;}
.yef{bottom:663.151050px;}
.y128{bottom:664.611000px;}
.y11{bottom:670.980150px;}
.y22{bottom:674.336250px;}
.yc0{bottom:674.447100px;}
.y1ab{bottom:675.229950px;}
.ya0{bottom:675.907050px;}
.y2b{bottom:678.315000px;}
.y1bc{bottom:678.588150px;}
.y111{bottom:681.491250px;}
.yee{bottom:682.951050px;}
.y81{bottom:684.411000px;}
.y10{bottom:688.980150px;}
.y192{bottom:690.042900px;}
.y1aa{bottom:693.229950px;}
.y14f{bottom:694.247100px;}
.y9f{bottom:695.707050px;}
.y110{bottom:701.291250px;}
.yed{bottom:702.751050px;}
.y80{bottom:704.210850px;}
.y2a{bottom:705.315000px;}
.y191{bottom:708.042900px;}
.y47{bottom:709.798350px;}
.y21{bottom:710.336250px;}
.y14e{bottom:714.047100px;}
.y1bb{bottom:714.588150px;}
.yf{bottom:715.484100px;}
.y9e{bottom:715.507050px;}
.y31{bottom:719.034600px;}
.y1a9{bottom:719.734950px;}
.y5b{bottom:720.989550px;}
.y10f{bottom:721.091250px;}
.yec{bottom:722.551050px;}
.y7f{bottom:724.011000px;}
.y190{bottom:726.042900px;}
.y46{bottom:729.298350px;}
.ye{bottom:733.484100px;}
.y14d{bottom:733.847100px;}
.y9d{bottom:735.307050px;}
.y1a8{bottom:737.734950px;}
.y10e{bottom:740.891250px;}
.yeb{bottom:742.351050px;}
.y7e{bottom:743.811000px;}
.y29{bottom:745.070850px;}
.y5a{bottom:746.189550px;}
.y30{bottom:747.834750px;}
.yd{bottom:751.484100px;}
.y18f{bottom:753.446850px;}
.y9c{bottom:755.107050px;}
.y1a7{bottom:755.734950px;}
.y45{bottom:757.798350px;}
.y10d{bottom:760.691250px;}
.yea{bottom:762.151050px;}
.y7d{bottom:763.610850px;}
.yc{bottom:769.484100px;}
.y18e{bottom:772.346850px;}
.y1a6{bottom:773.734950px;}
.y9b{bottom:774.907050px;}
.y44{bottom:777.298350px;}
.y10c{bottom:780.491250px;}
.ye9{bottom:781.951050px;}
.y7c{bottom:783.410850px;}
.yb{bottom:787.484100px;}
.y2f{bottom:787.590600px;}
.y18d{bottom:791.246850px;}
.y1a5{bottom:791.734950px;}
.y59{bottom:792.649350px;}
.ybf{bottom:794.707050px;}
.y43{bottom:796.798350px;}
.y13e{bottom:800.291250px;}
.ye8{bottom:801.751050px;}
.y7b{bottom:803.210850px;}
.ya{bottom:805.484100px;}
.y20{bottom:807.536250px;}
.y1a4{bottom:809.734950px;}
.y1ba{bottom:811.788150px;}
.ybe{bottom:814.506900px;}
.y18c{bottom:818.650800px;}
.ye7{bottom:821.551050px;}
.y7a{bottom:823.011000px;}
.y9{bottom:823.484100px;}
.y42{bottom:825.298350px;}
.y1a3{bottom:827.734950px;}
.ybd{bottom:834.307050px;}
.ye6{bottom:841.351200px;}
.y8{bottom:841.484100px;}
.y79{bottom:842.811000px;}
.y41{bottom:844.798350px;}
.y1a2{bottom:845.734950px;}
.y18b{bottom:846.054600px;}
.ybc{bottom:854.107050px;}
.ye5{bottom:861.151050px;}
.y78{bottom:862.611000px;}
.y40{bottom:864.298350px;}
.y18a{bottom:864.954750px;}
.y7{bottom:867.988050px;}
.y1a1{bottom:872.239950px;}
.y1f{bottom:872.336250px;}
.y1b9{bottom:876.588150px;}
.y77{bottom:882.410850px;}
.y3f{bottom:883.798350px;}
.y189{bottom:883.854750px;}
.y6{bottom:885.988050px;}
.y1a0{bottom:890.239950px;}
.y76{bottom:902.210850px;}
.y188{bottom:902.754600px;}
.y3e{bottom:903.298350px;}
.y5{bottom:903.988050px;}
.y19f{bottom:908.239950px;}
.y4{bottom:921.988050px;}
.y19e{bottom:926.239950px;}
.y3{bottom:939.988050px;}
.y19d{bottom:944.239950px;}
.y2{bottom:957.988050px;}
.y75{bottom:961.341600px;}
.y19c{bottom:962.239950px;}
.y1{bottom:975.988050px;}
.y19b{bottom:980.239950px;}
.ha{height:26.542969px;}
.h17{height:28.620000px;}
.h18{height:46.602000px;}
.h5{height:49.013672px;}
.h12{height:50.160000px;}
.h2{height:50.185547px;}
.h4{height:51.562500px;}
.h11{height:51.780000px;}
.h1a{height:54.369000px;}
.h15{height:55.176000px;}
.h14{height:56.958000px;}
.h19{height:57.618000px;}
.h10{height:62.136000px;}
.h16{height:62.856000px;}
.h9{height:68.619141px;}
.h3{height:72.187500px;}
.hf{height:72.492000px;}
.h13{height:73.332000px;}
.he{height:78.570000px;}
.h8{height:82.500000px;}
.hd{height:94.284000px;}
.h7{height:103.125000px;}
.h6{height:185.625000px;}
.h1b{height:1019.000850px;}
.h1c{height:1019.250000px;}
.hb{height:1020.472500px;}
.hc{height:1020.750000px;}
.h1{height:1022.250000px;}
.h0{height:1022.604450px;}
.w5{width:722.250000px;}
.w4{width:722.535000px;}
.w2{width:722.835000px;}
.w3{width:723.000000px;}
.w0{width:724.324500px;}
.w1{width:724.500000px;}
.xf{left:-1110.035700px;}
.x2{left:-755.114400px;}
.x1{left:-733.854600px;}
.x40{left:-327.673200px;}
.x4{left:-34.443450px;}
.x3{left:-23.073300px;}
.x5{left:-16.443450px;}
.x0{left:0.000000px;}
.x33{left:27.237900px;}
.x7{left:36.786450px;}
.x32{left:48.507900px;}
.x11{left:85.504800px;}
.x10{left:88.076250px;}
.x2c{left:104.402100px;}
.x30{left:106.299150px;}
.x9{left:112.155450px;}
.xb{left:113.532450px;}
.x8{left:121.838100px;}
.x1e{left:125.543550px;}
.x6{left:127.423650px;}
.x29{left:132.424350px;}
.x19{left:136.649400px;}
.x17{left:139.187250px;}
.x1a{left:143.129250px;}
.x1c{left:150.671250px;}
.x16{left:152.930550px;}
.x18{left:156.899100px;}
.x1d{left:165.134100px;}
.x12{left:169.000950px;}
.x1b{left:174.943950px;}
.x2a{left:176.479350px;}
.x2d{left:179.434350px;}
.xd{left:211.465200px;}
.x14{left:223.418100px;}
.xa{left:226.947900px;}
.xc{left:240.896850px;}
.x13{left:260.167800px;}
.x2b{left:295.404750px;}
.xe{left:310.891500px;}
.x15{left:321.140100px;}
.x27{left:384.048150px;}
.x28{left:396.809250px;}
.x23{left:400.427550px;}
.x1f{left:405.593400px;}
.x21{left:410.579700px;}
.x20{left:419.101950px;}
.x22{left:424.889250px;}
.x24{left:445.985100px;}
.x26{left:451.663950px;}
.x25{left:457.738800px;}
.x2f{left:501.061800px;}
.x2e{left:520.696050px;}
.x31{left:613.045350px;}
.x35{left:747.919050px;}
.x34{left:759.289200px;}
.x36{left:765.919050px;}
.x38{left:819.120150px;}
.x3a{left:894.510600px;}
.x3c{left:895.860600px;}
.x39{left:904.200600px;}
.x37{left:909.786150px;}
.x3e{left:993.835350px;}
.x3b{left:1009.290600px;}
.x3d{left:1023.259350px;}
.x3f{left:1093.254000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:19.536000pt;}
.ls7{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.342400pt;}
.ls5{letter-spacing:0.586667pt;}
.ls3{letter-spacing:1.045333pt;}
.ls8{letter-spacing:1.049600pt;}
.ls2{letter-spacing:1.344000pt;}
.ls9{letter-spacing:13.595733pt;}
.ls4{letter-spacing:90.417600pt;}
.ws17{word-spacing:-18.666667pt;}
.ws26{word-spacing:-14.666667pt;}
.wsbf{word-spacing:-14.000000pt;}
.wsd0{word-spacing:-13.440000pt;}
.ws1c{word-spacing:-13.333333pt;}
.ws53{word-spacing:-12.000000pt;}
.ws78{word-spacing:-8.550667pt;}
.wsc9{word-spacing:-8.008000pt;}
.ws3d{word-spacing:-7.773333pt;}
.ws3e{word-spacing:-6.996000pt;}
.wsab{word-spacing:-4.458667pt;}
.ws86{word-spacing:-2.992000pt;}
.ws7{word-spacing:-2.880000pt;}
.ws54{word-spacing:-2.874667pt;}
.ws69{word-spacing:-2.816000pt;}
.wsb8{word-spacing:-2.757333pt;}
.wsd9{word-spacing:-2.744000pt;}
.ws4f{word-spacing:-2.698667pt;}
.wsf{word-spacing:-2.666667pt;}
.ws70{word-spacing:-2.640000pt;}
.ws10{word-spacing:-2.613333pt;}
.wsb0{word-spacing:-2.581333pt;}
.ws92{word-spacing:-2.522667pt;}
.wsd6{word-spacing:-2.520000pt;}
.ws56{word-spacing:-2.464000pt;}
.ws0{word-spacing:-2.453333pt;}
.wsb7{word-spacing:-2.405333pt;}
.ws3f{word-spacing:-2.346667pt;}
.ws6e{word-spacing:-2.288000pt;}
.wsd{word-spacing:-2.240000pt;}
.ws45{word-spacing:-2.170667pt;}
.ws97{word-spacing:-2.112000pt;}
.ws4a{word-spacing:-2.053333pt;}
.ws2d{word-spacing:-1.994667pt;}
.wsc{word-spacing:-1.973333pt;}
.ws64{word-spacing:-1.968000pt;}
.ws2c{word-spacing:-1.936000pt;}
.ws71{word-spacing:-1.877333pt;}
.ws91{word-spacing:-1.818667pt;}
.ws62{word-spacing:-1.760000pt;}
.ws87{word-spacing:-1.701333pt;}
.wsbc{word-spacing:-1.642667pt;}
.ws16{word-spacing:-1.600000pt;}
.ws55{word-spacing:-1.584000pt;}
.wsd2{word-spacing:-1.568000pt;}
.ws4{word-spacing:-1.493333pt;}
.wsa7{word-spacing:-1.466667pt;}
.wsa2{word-spacing:-1.408000pt;}
.ws31{word-spacing:-1.349333pt;}
.ws2{word-spacing:-1.333333pt;}
.ws46{word-spacing:-1.290667pt;}
.ws73{word-spacing:-1.232000pt;}
.wsa8{word-spacing:-1.173333pt;}
.ws9e{word-spacing:-1.114667pt;}
.ws77{word-spacing:-1.056000pt;}
.ws44{word-spacing:-0.997333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws61{word-spacing:-0.938667pt;}
.ws5f{word-spacing:-0.880000pt;}
.ws1f{word-spacing:-0.853333pt;}
.ws7e{word-spacing:-0.821333pt;}
.ws65{word-spacing:-0.768000pt;}
.wsaf{word-spacing:-0.762667pt;}
.ws3c{word-spacing:-0.704000pt;}
.ws18{word-spacing:-0.672000pt;}
.ws30{word-spacing:-0.645333pt;}
.ws25{word-spacing:-0.640000pt;}
.ws6c{word-spacing:-0.586667pt;}
.ws40{word-spacing:-0.528000pt;}
.ws19{word-spacing:-0.522667pt;}
.ws35{word-spacing:-0.469333pt;}
.wsc0{word-spacing:-0.448000pt;}
.ws82{word-spacing:-0.410667pt;}
.ws98{word-spacing:-0.352000pt;}
.wsb{word-spacing:-0.320000pt;}
.wsae{word-spacing:-0.293333pt;}
.wsaa{word-spacing:-0.234667pt;}
.ws38{word-spacing:-0.176000pt;}
.wsbd{word-spacing:-0.117333pt;}
.ws96{word-spacing:-0.058667pt;}
.ws1b{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.058667pt;}
.ws13{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.117333pt;}
.ws1e{word-spacing:0.160000pt;}
.ws49{word-spacing:0.176000pt;}
.ws15{word-spacing:0.213333pt;}
.ws41{word-spacing:0.234667pt;}
.ws22{word-spacing:0.266667pt;}
.ws60{word-spacing:0.293333pt;}
.ws83{word-spacing:0.352000pt;}
.ws3{word-spacing:0.373333pt;}
.ws7c{word-spacing:0.410667pt;}
.ws52{word-spacing:0.432000pt;}
.ws4b{word-spacing:0.469333pt;}
.ws3a{word-spacing:0.528000pt;}
.ws94{word-spacing:0.586667pt;}
.ws66{word-spacing:0.624000pt;}
.ws43{word-spacing:0.645333pt;}
.wsd4{word-spacing:0.672000pt;}
.ws63{word-spacing:0.704000pt;}
.ws50{word-spacing:0.762667pt;}
.ws84{word-spacing:0.821333pt;}
.wsb9{word-spacing:0.880000pt;}
.ws57{word-spacing:0.938667pt;}
.wsd3{word-spacing:0.952000pt;}
.ws48{word-spacing:0.997333pt;}
.ws9{word-spacing:1.013333pt;}
.wsa6{word-spacing:1.056000pt;}
.ws6{word-spacing:1.066667pt;}
.ws67{word-spacing:1.104000pt;}
.ws32{word-spacing:1.114667pt;}
.ws11{word-spacing:1.120000pt;}
.wsa3{word-spacing:1.173333pt;}
.ws51{word-spacing:1.232000pt;}
.ws29{word-spacing:1.290667pt;}
.ws6f{word-spacing:1.349333pt;}
.wse{word-spacing:1.386667pt;}
.ws85{word-spacing:1.466667pt;}
.wsad{word-spacing:1.525333pt;}
.ws4d{word-spacing:1.584000pt;}
.ws28{word-spacing:1.642667pt;}
.ws36{word-spacing:1.701333pt;}
.ws34{word-spacing:1.760000pt;}
.wsa4{word-spacing:1.818667pt;}
.wsda{word-spacing:1.848000pt;}
.ws2e{word-spacing:1.877333pt;}
.ws9a{word-spacing:1.936000pt;}
.ws9f{word-spacing:1.994667pt;}
.ws33{word-spacing:2.053333pt;}
.ws4e{word-spacing:2.112000pt;}
.wsc4{word-spacing:2.128000pt;}
.wsb2{word-spacing:2.170667pt;}
.ws24{word-spacing:2.186667pt;}
.ws3b{word-spacing:2.229333pt;}
.wsa0{word-spacing:2.288000pt;}
.ws23{word-spacing:2.346667pt;}
.wsa5{word-spacing:2.405333pt;}
.ws81{word-spacing:2.464000pt;}
.ws5a{word-spacing:2.522667pt;}
.ws68{word-spacing:2.581333pt;}
.ws42{word-spacing:2.640000pt;}
.ws14{word-spacing:2.666667pt;}
.ws5c{word-spacing:2.698667pt;}
.ws47{word-spacing:2.757333pt;}
.ws4c{word-spacing:2.816000pt;}
.ws8b{word-spacing:2.874667pt;}
.ws5e{word-spacing:2.933333pt;}
.wsbb{word-spacing:2.992000pt;}
.ws12{word-spacing:3.040000pt;}
.ws39{word-spacing:3.050667pt;}
.wsa9{word-spacing:3.109333pt;}
.wsb1{word-spacing:3.168000pt;}
.ws2b{word-spacing:3.226667pt;}
.wsa1{word-spacing:3.285333pt;}
.ws6a{word-spacing:3.344000pt;}
.ws7f{word-spacing:3.402667pt;}
.wsac{word-spacing:3.461333pt;}
.ws7d{word-spacing:3.520000pt;}
.ws9d{word-spacing:3.637333pt;}
.wsb5{word-spacing:3.696000pt;}
.wsd5{word-spacing:3.752000pt;}
.ws90{word-spacing:3.754667pt;}
.wsb3{word-spacing:3.813333pt;}
.ws6b{word-spacing:3.872000pt;}
.ws99{word-spacing:3.930667pt;}
.ws1d{word-spacing:3.946667pt;}
.wsdb{word-spacing:3.976000pt;}
.ws9c{word-spacing:3.989333pt;}
.ws80{word-spacing:4.048000pt;}
.ws5d{word-spacing:4.165333pt;}
.ws6d{word-spacing:4.282667pt;}
.ws88{word-spacing:4.320000pt;}
.ws5{word-spacing:4.373333pt;}
.ws76{word-spacing:4.400000pt;}
.ws8c{word-spacing:4.458667pt;}
.wsba{word-spacing:4.517333pt;}
.wsb6{word-spacing:4.634667pt;}
.ws72{word-spacing:4.693333pt;}
.wsa{word-spacing:4.746667pt;}
.ws89{word-spacing:4.869333pt;}
.wsbe{word-spacing:4.928000pt;}
.wscc{word-spacing:4.984000pt;}
.wsc3{word-spacing:5.208000pt;}
.ws5b{word-spacing:5.221333pt;}
.ws74{word-spacing:5.280000pt;}
.ws20{word-spacing:5.333333pt;}
.ws79{word-spacing:5.397333pt;}
.ws7a{word-spacing:5.514667pt;}
.ws7b{word-spacing:5.690667pt;}
.ws75{word-spacing:5.749333pt;}
.ws37{word-spacing:5.808000pt;}
.ws9b{word-spacing:5.866667pt;}
.ws95{word-spacing:5.925333pt;}
.wsc6{word-spacing:6.160000pt;}
.wsb4{word-spacing:6.394667pt;}
.wsd8{word-spacing:6.440000pt;}
.ws93{word-spacing:6.453333pt;}
.ws58{word-spacing:6.570667pt;}
.ws21{word-spacing:6.720000pt;}
.ws8d{word-spacing:6.805333pt;}
.ws8e{word-spacing:6.864000pt;}
.ws8a{word-spacing:6.981333pt;}
.ws8f{word-spacing:7.744000pt;}
.ws8{word-spacing:8.106667pt;}
.wsca{word-spacing:8.176000pt;}
.wsc7{word-spacing:8.400000pt;}
.ws59{word-spacing:9.034667pt;}
.wscf{word-spacing:9.296000pt;}
.wsd1{word-spacing:9.464000pt;}
.wsd7{word-spacing:10.192000pt;}
.ws27{word-spacing:10.304000pt;}
.wscb{word-spacing:11.144000pt;}
.wsc8{word-spacing:11.256000pt;}
.wsce{word-spacing:12.544000pt;}
.wsc2{word-spacing:13.608000pt;}
.wscd{word-spacing:13.720000pt;}
.wsc1{word-spacing:13.832000pt;}
.wsc5{word-spacing:21.840000pt;}
._e{margin-left:-1965.354667pt;}
._0{margin-left:-764.768000pt;}
._2{margin-left:-311.360000pt;}
._12{margin-left:-16.883733pt;}
._a{margin-left:-14.272000pt;}
._11{margin-left:-11.712000pt;}
._16{margin-left:-10.368000pt;}
._18{margin-left:-8.512000pt;}
._9{margin-left:-7.360000pt;}
._5{margin-left:-5.664000pt;}
._8{margin-left:-4.646400pt;}
._7{margin-left:-3.430400pt;}
._6{margin-left:-2.400000pt;}
._3{margin-left:-1.344000pt;}
._4{width:1.152000pt;}
._14{width:2.075733pt;}
._15{width:3.184000pt;}
._13{width:5.566400pt;}
._17{width:6.540800pt;}
._19{width:9.348267pt;}
._c{width:10.304000pt;}
._f{width:16.957867pt;}
._d{width:90.417600pt;}
._10{width:91.488000pt;}
._b{width:1461.001600pt;}
._1{width:6616.608000pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs5{font-size:32.000000pt;}
.fsd{font-size:34.202667pt;}
.fse{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fs2{font-size:192.000000pt;}
.y28{bottom:-18.456667pt;}
.y1c2{bottom:-14.677200pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:75.590667pt;}
.y170{bottom:76.056667pt;}
.y58{bottom:76.212667pt;}
.y74{bottom:77.314267pt;}
.y127{bottom:80.251867pt;}
.y10b{bottom:81.549600pt;}
.y160{bottom:91.590533pt;}
.y13d{bottom:92.888133pt;}
.y57{bottom:93.546000pt;}
.y16f{bottom:93.656533pt;}
.y99{bottom:93.986667pt;}
.y73{bottom:94.914133pt;}
.y14c{bottom:95.118000pt;}
.y126{bottom:97.851867pt;}
.y10a{bottom:99.149467pt;}
.ybb{bottom:104.390800pt;}
.y15f{bottom:109.190400pt;}
.y13c{bottom:110.488133pt;}
.y16e{bottom:111.256533pt;}
.y72{bottom:112.514267pt;}
.y14b{bottom:112.718000pt;}
.y187{bottom:113.518000pt;}
.y109{bottom:116.749467pt;}
.yba{bottom:122.786800pt;}
.y125{bottom:123.010933pt;}
.yd9{bottom:125.492800pt;}
.y15e{bottom:126.790400pt;}
.y168{bottom:128.088133pt;}
.y16d{bottom:128.856667pt;}
.y71{bottom:130.114267pt;}
.y14a{bottom:130.318000pt;}
.y98{bottom:132.913333pt;}
.yb9{bottom:133.190933pt;}
.y108{bottom:134.349467pt;}
.y13b{bottom:135.647200pt;}
.y124{bottom:140.610933pt;}
.yd8{bottom:143.092800pt;}
.y15d{bottom:144.390400pt;}
.y56{bottom:145.546000pt;}
.y167{bottom:145.688133pt;}
.y16c{bottom:146.456667pt;}
.y186{bottom:147.118000pt;}
.y70{bottom:147.714133pt;}
.y149{bottom:147.918000pt;}
.y97{bottom:150.513333pt;}
.yb8{bottom:151.586933pt;}
.y107{bottom:151.949467pt;}
.y13a{bottom:153.247200pt;}
.y123{bottom:158.210933pt;}
.yd7{bottom:160.692800pt;}
.y15c{bottom:161.990533pt;}
.yb7{bottom:161.991067pt;}
.y55{bottom:162.879333pt;}
.y166{bottom:163.288133pt;}
.y185{bottom:163.918000pt;}
.y6f{bottom:165.314267pt;}
.y148{bottom:165.518000pt;}
.y1d{bottom:166.930533pt;}
.y96{bottom:168.113333pt;}
.ye4{bottom:168.251867pt;}
.y106{bottom:169.549467pt;}
.y1b7{bottom:170.710000pt;}
.y139{bottom:170.847200pt;}
.y122{bottom:175.810933pt;}
.yd6{bottom:178.292800pt;}
.y15b{bottom:179.590400pt;}
.y54{bottom:180.212667pt;}
.yb6{bottom:180.387067pt;}
.y165{bottom:180.888133pt;}
.y6e{bottom:182.914133pt;}
.y16b{bottom:182.954267pt;}
.y147{bottom:183.118000pt;}
.y95{bottom:185.713333pt;}
.ye3{bottom:185.851867pt;}
.y105{bottom:187.149600pt;}
.y184{bottom:188.277067pt;}
.y138{bottom:188.447200pt;}
.y121{bottom:193.410933pt;}
.y15a{bottom:197.190533pt;}
.y3d{bottom:197.746800pt;}
.y164{bottom:198.488133pt;}
.y6d{bottom:200.514267pt;}
.y146{bottom:200.718000pt;}
.y94{bottom:203.313333pt;}
.yd5{bottom:203.451867pt;}
.y104{bottom:204.749467pt;}
.y183{bottom:205.077067pt;}
.y137{bottom:206.047200pt;}
.y120{bottom:211.010933pt;}
.y159{bottom:214.790533pt;}
.y163{bottom:216.088133pt;}
.y6c{bottom:218.114267pt;}
.y145{bottom:218.318000pt;}
.y16a{bottom:219.451867pt;}
.y93{bottom:220.913333pt;}
.yd4{bottom:221.051867pt;}
.y182{bottom:221.877067pt;}
.y103{bottom:222.349467pt;}
.yb5{bottom:223.647200pt;}
.y11f{bottom:228.610933pt;}
.y53{bottom:232.212667pt;}
.y158{bottom:232.390400pt;}
.y3c{bottom:232.413467pt;}
.y162{bottom:233.688133pt;}
.y6b{bottom:235.714133pt;}
.y144{bottom:235.918000pt;}
.y92{bottom:238.513333pt;}
.yd3{bottom:238.651867pt;}
.y181{bottom:238.677067pt;}
.y102{bottom:239.949467pt;}
.yb4{bottom:241.247200pt;}
.ye2{bottom:246.210933pt;}
.y52{bottom:249.546000pt;}
.y161{bottom:251.288133pt;}
.y6a{bottom:253.314267pt;}
.y143{bottom:253.518000pt;}
.y91{bottom:256.113333pt;}
.yd2{bottom:256.251867pt;}
.y101{bottom:257.549467pt;}
.yb3{bottom:258.847200pt;}
.y180{bottom:263.036133pt;}
.ye1{bottom:263.810933pt;}
.y1e{bottom:265.416800pt;}
.y51{bottom:266.879333pt;}
.y3b{bottom:267.080133pt;}
.y27{bottom:267.217733pt;}
.y1b8{bottom:269.196267pt;}
.y69{bottom:270.914133pt;}
.y1c1{bottom:270.997200pt;}
.y142{bottom:271.118000pt;}
.y90{bottom:273.713333pt;}
.yd1{bottom:273.851867pt;}
.y100{bottom:275.149600pt;}
.yb2{bottom:276.447200pt;}
.y17f{bottom:279.836133pt;}
.ye0{bottom:281.410933pt;}
.y136{bottom:284.006267pt;}
.y50{bottom:284.212667pt;}
.y68{bottom:288.514267pt;}
.y141{bottom:288.718000pt;}
.y8f{bottom:291.313333pt;}
.yd0{bottom:291.451867pt;}
.yff{bottom:292.749467pt;}
.yb1{bottom:294.047200pt;}
.y17e{bottom:296.636133pt;}
.y26{bottom:297.176800pt;}
.ydf{bottom:299.010933pt;}
.y1c0{bottom:300.956267pt;}
.y4f{bottom:301.546000pt;}
.y135{bottom:301.606267pt;}
.y3a{bottom:301.746800pt;}
.y67{bottom:306.114267pt;}
.y140{bottom:306.318000pt;}
.y8e{bottom:308.913333pt;}
.ycf{bottom:309.051867pt;}
.yfe{bottom:310.349467pt;}
.yb0{bottom:311.647200pt;}
.yde{bottom:316.610933pt;}
.y4e{bottom:318.879333pt;}
.y134{bottom:319.206267pt;}
.y17d{bottom:320.995200pt;}
.y25{bottom:322.776800pt;}
.y66{bottom:323.714133pt;}
.y1bf{bottom:326.556267pt;}
.yce{bottom:326.651867pt;}
.yfd{bottom:327.949467pt;}
.yaf{bottom:329.247200pt;}
.y8d{bottom:334.072400pt;}
.ydd{bottom:334.210933pt;}
.y39{bottom:336.413467pt;}
.y133{bottom:336.806267pt;}
.y17c{bottom:337.795200pt;}
.y65{bottom:341.314267pt;}
.y13f{bottom:342.815733pt;}
.ycd{bottom:344.251867pt;}
.yfc{bottom:345.549467pt;}
.yae{bottom:346.847200pt;}
.y8c{bottom:351.672400pt;}
.ydc{bottom:351.810933pt;}
.y132{bottom:354.406267pt;}
.y64{bottom:358.914133pt;}
.ycc{bottom:361.851867pt;}
.y17b{bottom:362.154267pt;}
.yfb{bottom:363.149600pt;}
.yad{bottom:364.447200pt;}
.y8b{bottom:369.272400pt;}
.ydb{bottom:369.410933pt;}
.y4d{bottom:370.879333pt;}
.y38{bottom:371.080133pt;}
.y131{bottom:372.006267pt;}
.y63{bottom:376.514267pt;}
.y11e{bottom:376.970000pt;}
.y17a{bottom:378.954267pt;}
.y157{bottom:380.749467pt;}
.yac{bottom:382.047200pt;}
.y8a{bottom:386.872400pt;}
.ycb{bottom:387.010933pt;}
.y4c{bottom:388.212667pt;}
.yfa{bottom:388.308533pt;}
.y130{bottom:389.606267pt;}
.y62{bottom:394.114133pt;}
.y11d{bottom:394.570000pt;}
.y179{bottom:395.754267pt;}
.y156{bottom:398.349467pt;}
.yab{bottom:399.647200pt;}
.y89{bottom:404.472400pt;}
.yca{bottom:404.610933pt;}
.y4b{bottom:405.546000pt;}
.y37{bottom:405.746800pt;}
.yf9{bottom:405.908533pt;}
.y12f{bottom:407.206267pt;}
.y61{bottom:411.714133pt;}
.y11c{bottom:412.170000pt;}
.y155{bottom:415.949467pt;}
.yaa{bottom:417.247200pt;}
.y178{bottom:420.113333pt;}
.y88{bottom:422.072400pt;}
.yc9{bottom:422.210933pt;}
.y4a{bottom:422.879333pt;}
.yf8{bottom:423.508533pt;}
.y12e{bottom:424.806267pt;}
.y1b{bottom:428.867733pt;}
.y60{bottom:429.314267pt;}
.y11b{bottom:429.770000pt;}
.y1b5{bottom:432.644400pt;}
.y154{bottom:433.549467pt;}
.ya9{bottom:434.847200pt;}
.y177{bottom:436.913333pt;}
.y87{bottom:439.672400pt;}
.yc8{bottom:439.810933pt;}
.y36{bottom:440.413467pt;}
.yf7{bottom:441.108533pt;}
.y12d{bottom:442.406267pt;}
.y1a{bottom:444.867733pt;}
.y11a{bottom:447.370000pt;}
.y1b4{bottom:448.644400pt;}
.y153{bottom:451.149600pt;}
.ya8{bottom:452.447200pt;}
.y176{bottom:453.713333pt;}
.y19a{bottom:456.294267pt;}
.y86{bottom:457.272400pt;}
.yc7{bottom:457.410933pt;}
.y49{bottom:457.546000pt;}
.yf6{bottom:458.708533pt;}
.y12c{bottom:460.006267pt;}
.y19{bottom:460.867733pt;}
.y1b3{bottom:464.644400pt;}
.y119{bottom:464.970000pt;}
.y5f{bottom:465.811867pt;}
.y152{bottom:468.749467pt;}
.ya7{bottom:470.047200pt;}
.y199{bottom:473.094267pt;}
.y85{bottom:474.872400pt;}
.y48{bottom:474.879333pt;}
.yc6{bottom:475.010933pt;}
.y35{bottom:475.080133pt;}
.yf5{bottom:476.308533pt;}
.y18{bottom:476.867733pt;}
.y12b{bottom:477.606267pt;}
.y175{bottom:478.072400pt;}
.y1b2{bottom:480.644400pt;}
.y118{bottom:482.570000pt;}
.y151{bottom:486.349467pt;}
.y2e{bottom:487.192267pt;}
.ya6{bottom:487.647200pt;}
.y198{bottom:489.894267pt;}
.y1c{bottom:489.913733pt;}
.y84{bottom:492.472267pt;}
.yc5{bottom:492.610933pt;}
.y17{bottom:492.867733pt;}
.y1b6{bottom:493.693200pt;}
.yf4{bottom:493.908533pt;}
.y174{bottom:494.872400pt;}
.y12a{bottom:495.206267pt;}
.y1b1{bottom:496.644400pt;}
.y117{bottom:500.170000pt;}
.ya5{bottom:505.247200pt;}
.y16{bottom:508.867733pt;}
.y34{bottom:509.746800pt;}
.y83{bottom:510.072400pt;}
.yc4{bottom:510.210933pt;}
.yf3{bottom:511.508533pt;}
.y173{bottom:511.672400pt;}
.y1b0{bottom:512.644400pt;}
.y129{bottom:512.806267pt;}
.y197{bottom:514.253333pt;}
.y2d{bottom:516.571867pt;}
.y116{bottom:517.770000pt;}
.yc3{bottom:527.810933pt;}
.y172{bottom:528.472267pt;}
.yf2{bottom:529.108533pt;}
.ya4{bottom:530.406267pt;}
.y196{bottom:531.053333pt;}
.y15{bottom:532.426800pt;}
.y115{bottom:535.370000pt;}
.y24{bottom:535.410000pt;}
.y1af{bottom:536.204400pt;}
.y1be{bottom:539.189467pt;}
.y2c{bottom:542.751333pt;}
.y33{bottom:544.413467pt;}
.yc2{bottom:545.410933pt;}
.y82{bottom:546.570000pt;}
.y150{bottom:546.708533pt;}
.y195{bottom:547.853333pt;}
.ya3{bottom:548.006267pt;}
.y14{bottom:548.426800pt;}
.y5e{bottom:550.284267pt;}
.y1ae{bottom:552.204400pt;}
.y114{bottom:552.970000pt;}
.yf1{bottom:554.267600pt;}
.y169{bottom:563.010933pt;}
.y171{bottom:564.170000pt;}
.yda{bottom:564.308533pt;}
.y13{bottom:564.426800pt;}
.ya2{bottom:565.606267pt;}
.y23{bottom:567.410000pt;}
.y5d{bottom:567.884267pt;}
.y1ad{bottom:568.204400pt;}
.y113{bottom:570.570000pt;}
.y1bd{bottom:571.189467pt;}
.yf0{bottom:571.867600pt;}
.y194{bottom:572.212400pt;}
.y32{bottom:579.080133pt;}
.y12{bottom:580.426800pt;}
.yc1{bottom:581.908533pt;}
.ya1{bottom:583.206267pt;}
.y1ac{bottom:584.204400pt;}
.y5c{bottom:585.484267pt;}
.y112{bottom:588.170000pt;}
.y193{bottom:589.012400pt;}
.yef{bottom:589.467600pt;}
.y128{bottom:590.765333pt;}
.y11{bottom:596.426800pt;}
.y22{bottom:599.410000pt;}
.yc0{bottom:599.508533pt;}
.y1ab{bottom:600.204400pt;}
.ya0{bottom:600.806267pt;}
.y2b{bottom:602.946667pt;}
.y1bc{bottom:603.189467pt;}
.y111{bottom:605.770000pt;}
.yee{bottom:607.067600pt;}
.y81{bottom:608.365333pt;}
.y10{bottom:612.426800pt;}
.y192{bottom:613.371467pt;}
.y1aa{bottom:616.204400pt;}
.y14f{bottom:617.108533pt;}
.y9f{bottom:618.406267pt;}
.y110{bottom:623.370000pt;}
.yed{bottom:624.667600pt;}
.y80{bottom:625.965200pt;}
.y2a{bottom:626.946667pt;}
.y191{bottom:629.371467pt;}
.y47{bottom:630.931867pt;}
.y21{bottom:631.410000pt;}
.y14e{bottom:634.708533pt;}
.y1bb{bottom:635.189467pt;}
.yf{bottom:635.985867pt;}
.y9e{bottom:636.006267pt;}
.y31{bottom:639.141867pt;}
.y1a9{bottom:639.764400pt;}
.y5b{bottom:640.879600pt;}
.y10f{bottom:640.970000pt;}
.yec{bottom:642.267600pt;}
.y7f{bottom:643.565333pt;}
.y190{bottom:645.371467pt;}
.y46{bottom:648.265200pt;}
.ye{bottom:651.985867pt;}
.y14d{bottom:652.308533pt;}
.y9d{bottom:653.606267pt;}
.y1a8{bottom:655.764400pt;}
.y10e{bottom:658.570000pt;}
.yeb{bottom:659.867600pt;}
.y7e{bottom:661.165333pt;}
.y29{bottom:662.285200pt;}
.y5a{bottom:663.279600pt;}
.y30{bottom:664.742000pt;}
.yd{bottom:667.985867pt;}
.y18f{bottom:669.730533pt;}
.y9c{bottom:671.206267pt;}
.y1a7{bottom:671.764400pt;}
.y45{bottom:673.598533pt;}
.y10d{bottom:676.170000pt;}
.yea{bottom:677.467600pt;}
.y7d{bottom:678.765200pt;}
.yc{bottom:683.985867pt;}
.y18e{bottom:686.530533pt;}
.y1a6{bottom:687.764400pt;}
.y9b{bottom:688.806267pt;}
.y44{bottom:690.931867pt;}
.y10c{bottom:693.770000pt;}
.ye9{bottom:695.067600pt;}
.y7c{bottom:696.365200pt;}
.yb{bottom:699.985867pt;}
.y2f{bottom:700.080533pt;}
.y18d{bottom:703.330533pt;}
.y1a5{bottom:703.764400pt;}
.y59{bottom:704.577200pt;}
.ybf{bottom:706.406267pt;}
.y43{bottom:708.265200pt;}
.y13e{bottom:711.370000pt;}
.ye8{bottom:712.667600pt;}
.y7b{bottom:713.965200pt;}
.ya{bottom:715.985867pt;}
.y20{bottom:717.810000pt;}
.y1a4{bottom:719.764400pt;}
.y1ba{bottom:721.589467pt;}
.ybe{bottom:724.006133pt;}
.y18c{bottom:727.689600pt;}
.ye7{bottom:730.267600pt;}
.y7a{bottom:731.565333pt;}
.y9{bottom:731.985867pt;}
.y42{bottom:733.598533pt;}
.y1a3{bottom:735.764400pt;}
.ybd{bottom:741.606267pt;}
.ye6{bottom:747.867733pt;}
.y8{bottom:747.985867pt;}
.y79{bottom:749.165333pt;}
.y41{bottom:750.931867pt;}
.y1a2{bottom:751.764400pt;}
.y18b{bottom:752.048533pt;}
.ybc{bottom:759.206267pt;}
.ye5{bottom:765.467600pt;}
.y78{bottom:766.765333pt;}
.y40{bottom:768.265200pt;}
.y18a{bottom:768.848667pt;}
.y7{bottom:771.544933pt;}
.y1a1{bottom:775.324400pt;}
.y1f{bottom:775.410000pt;}
.y1b9{bottom:779.189467pt;}
.y77{bottom:784.365200pt;}
.y3f{bottom:785.598533pt;}
.y189{bottom:785.648667pt;}
.y6{bottom:787.544933pt;}
.y1a0{bottom:791.324400pt;}
.y76{bottom:801.965200pt;}
.y188{bottom:802.448533pt;}
.y3e{bottom:802.931867pt;}
.y5{bottom:803.544933pt;}
.y19f{bottom:807.324400pt;}
.y4{bottom:819.544933pt;}
.y19e{bottom:823.324400pt;}
.y3{bottom:835.544933pt;}
.y19d{bottom:839.324400pt;}
.y2{bottom:851.544933pt;}
.y75{bottom:854.525867pt;}
.y19c{bottom:855.324400pt;}
.y1{bottom:867.544933pt;}
.y19b{bottom:871.324400pt;}
.ha{height:23.593750pt;}
.h17{height:25.440000pt;}
.h18{height:41.424000pt;}
.h5{height:43.567708pt;}
.h12{height:44.586667pt;}
.h2{height:44.609375pt;}
.h4{height:45.833333pt;}
.h11{height:46.026667pt;}
.h1a{height:48.328000pt;}
.h15{height:49.045333pt;}
.h14{height:50.629333pt;}
.h19{height:51.216000pt;}
.h10{height:55.232000pt;}
.h16{height:55.872000pt;}
.h9{height:60.994792pt;}
.h3{height:64.166667pt;}
.hf{height:64.437333pt;}
.h13{height:65.184000pt;}
.he{height:69.840000pt;}
.h8{height:73.333333pt;}
.hd{height:83.808000pt;}
.h7{height:91.666667pt;}
.h6{height:165.000000pt;}
.h1b{height:905.778533pt;}
.h1c{height:906.000000pt;}
.hb{height:907.086667pt;}
.hc{height:907.333333pt;}
.h1{height:908.666667pt;}
.h0{height:908.981733pt;}
.w5{width:642.000000pt;}
.w4{width:642.253333pt;}
.w2{width:642.520000pt;}
.w3{width:642.666667pt;}
.w0{width:643.844000pt;}
.w1{width:644.000000pt;}
.xf{left:-986.698400pt;}
.x2{left:-671.212800pt;}
.x1{left:-652.315200pt;}
.x40{left:-291.265067pt;}
.x4{left:-30.616400pt;}
.x3{left:-20.509600pt;}
.x5{left:-14.616400pt;}
.x0{left:0.000000pt;}
.x33{left:24.211467pt;}
.x7{left:32.699067pt;}
.x32{left:43.118133pt;}
.x11{left:76.004267pt;}
.x10{left:78.290000pt;}
.x2c{left:92.801867pt;}
.x30{left:94.488133pt;}
.x9{left:99.693733pt;}
.xb{left:100.917733pt;}
.x8{left:108.300533pt;}
.x1e{left:111.594267pt;}
.x6{left:113.265467pt;}
.x29{left:117.710533pt;}
.x19{left:121.466133pt;}
.x17{left:123.722000pt;}
.x1a{left:127.226000pt;}
.x1c{left:133.930000pt;}
.x16{left:135.938267pt;}
.x18{left:139.465867pt;}
.x1d{left:146.785867pt;}
.x12{left:150.223067pt;}
.x1b{left:155.505733pt;}
.x2a{left:156.870533pt;}
.x2d{left:159.497200pt;}
.xd{left:187.969067pt;}
.x14{left:198.593867pt;}
.xa{left:201.731467pt;}
.xc{left:214.130533pt;}
.x13{left:231.260267pt;}
.x2b{left:262.582000pt;}
.xe{left:276.348000pt;}
.x15{left:285.457867pt;}
.x27{left:341.376133pt;}
.x28{left:352.719333pt;}
.x23{left:355.935600pt;}
.x1f{left:360.527467pt;}
.x21{left:364.959733pt;}
.x20{left:372.535067pt;}
.x22{left:377.679333pt;}
.x24{left:396.431200pt;}
.x26{left:401.479067pt;}
.x25{left:406.878933pt;}
.x2f{left:445.388267pt;}
.x2e{left:462.840933pt;}
.x31{left:544.929200pt;}
.x35{left:664.816933pt;}
.x34{left:674.923733pt;}
.x36{left:680.816933pt;}
.x38{left:728.106800pt;}
.x3a{left:795.120533pt;}
.x3c{left:796.320533pt;}
.x39{left:803.733867pt;}
.x37{left:808.698800pt;}
.x3e{left:883.409200pt;}
.x3b{left:897.147200pt;}
.x3d{left:909.563867pt;}
.x3f{left:971.781333pt;}
}




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