
    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_fa9c1da3d04bbb6a4a282b04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_48f7a57f4adc41470fb2b5e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_1705134073d9f241bab0249d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030000;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_9f60c27524cbc058cdaf4c8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.885000;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_ebed949d0c082557044f1e00.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.054000;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_d058242daacd62ed148fb980.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ec6df40e9357f5117ca264b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_15b58024563edade68aaab74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_2ddd53435c00ddd02cc8f9ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v2{vertical-align:21.978000px;}
.ls8{letter-spacing:-4.620000px;}
.ls1{letter-spacing:-2.640000px;}
.ls2{letter-spacing:-2.400000px;}
.ls3{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.264000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000060px;}
.ls15{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.648600px;}
.ls6{letter-spacing:0.726000px;}
.ls14{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.990000px;}
.lsa{letter-spacing:1.705800px;}
.lsd{letter-spacing:1.756200px;}
.ls12{letter-spacing:3.309000px;}
.lsf{letter-spacing:4.479600px;}
.lse{letter-spacing:4.480200px;}
.lsc{letter-spacing:5.024400px;}
.ls16{letter-spacing:5.106000px;}
.ls7{letter-spacing:5.494800px;}
.ls1a{letter-spacing:5.508600px;}
.ls19{letter-spacing:5.509200px;}
.lsb{letter-spacing:5.528400px;}
.ls18{letter-spacing:28.082400px;}
.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;}
}
.wsac{word-spacing:-14.058000px;}
.wsae{word-spacing:-13.860000px;}
.wsba{word-spacing:-13.266000px;}
.ws47{word-spacing:-13.068000px;}
.wsad{word-spacing:-12.804000px;}
.ws11{word-spacing:-12.408000px;}
.wsbb{word-spacing:-12.210000px;}
.ws12{word-spacing:-12.012000px;}
.ws3{word-spacing:-11.880000px;}
.ws7b{word-spacing:-11.352000px;}
.ws4{word-spacing:-10.920000px;}
.ws73{word-spacing:-10.692000px;}
.wsc5{word-spacing:-10.620000px;}
.wsce{word-spacing:-10.320000px;}
.ws6c{word-spacing:-9.828000px;}
.ws1{word-spacing:-8.712000px;}
.ws2{word-spacing:-8.520000px;}
.ws49{word-spacing:-7.757165px;}
.ws48{word-spacing:-7.618644px;}
.wsdb{word-spacing:-3.240000px;}
.wsda{word-spacing:-2.940000px;}
.ws6e{word-spacing:-2.574000px;}
.ws9b{word-spacing:-2.508000px;}
.ws8a{word-spacing:-2.376000px;}
.ws1d{word-spacing:-2.310000px;}
.ws56{word-spacing:-2.244000px;}
.ws68{word-spacing:-2.178000px;}
.ws34{word-spacing:-2.112000px;}
.ws6f{word-spacing:-2.046000px;}
.ws2d{word-spacing:-1.980000px;}
.wse0{word-spacing:-1.920000px;}
.ws78{word-spacing:-1.914000px;}
.ws1c{word-spacing:-1.782000px;}
.ws2e{word-spacing:-1.716000px;}
.ws6b{word-spacing:-1.584000px;}
.ws2a{word-spacing:-1.560000px;}
.ws5e{word-spacing:-1.452000px;}
.ws24{word-spacing:-1.320000px;}
.ws64{word-spacing:-1.254000px;}
.ws23{word-spacing:-1.188000px;}
.wsab{word-spacing:-1.140000px;}
.ws43{word-spacing:-1.122000px;}
.ws63{word-spacing:-1.056000px;}
.ws37{word-spacing:-0.990000px;}
.ws53{word-spacing:-0.924000px;}
.ws80{word-spacing:-0.858000px;}
.wscc{word-spacing:-0.840000px;}
.ws7f{word-spacing:-0.792000px;}
.ws1a{word-spacing:-0.726000px;}
.ws6{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.660000px;}
.wsa2{word-spacing:-0.594000px;}
.ws6d{word-spacing:-0.528000px;}
.ws21{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.462000px;}
.ws32{word-spacing:-0.396000px;}
.wsaf{word-spacing:-0.330000px;}
.ws91{word-spacing:-0.300000px;}
.ws4d{word-spacing:-0.264000px;}
.wsd9{word-spacing:-0.240000px;}
.ws65{word-spacing:-0.198000px;}
.wsca{word-spacing:-0.180000px;}
.ws67{word-spacing:-0.132000px;}
.ws8{word-spacing:-0.120000px;}
.wsb9{word-spacing:-0.066000px;}
.ws92{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws46{word-spacing:0.066000px;}
.ws50{word-spacing:0.132000px;}
.ws2b{word-spacing:0.180000px;}
.ws9a{word-spacing:0.198000px;}
.ws35{word-spacing:0.264000px;}
.wsc{word-spacing:0.300000px;}
.ws27{word-spacing:0.330000px;}
.ws4f{word-spacing:0.396000px;}
.ws70{word-spacing:0.462000px;}
.wse2{word-spacing:0.480000px;}
.ws44{word-spacing:0.528000px;}
.wse3{word-spacing:0.540000px;}
.ws9e{word-spacing:0.594000px;}
.ws4a{word-spacing:0.660000px;}
.ws89{word-spacing:0.726000px;}
.wsb3{word-spacing:0.792000px;}
.wsc3{word-spacing:0.858000px;}
.ws5b{word-spacing:0.924000px;}
.ws5f{word-spacing:0.990000px;}
.ws5a{word-spacing:1.056000px;}
.wsa4{word-spacing:1.080000px;}
.ws4e{word-spacing:1.122000px;}
.ws18{word-spacing:1.188000px;}
.wsa3{word-spacing:1.200000px;}
.ws33{word-spacing:1.254000px;}
.ws17{word-spacing:1.320000px;}
.ws30{word-spacing:1.386000px;}
.wsa{word-spacing:1.440000px;}
.ws4c{word-spacing:1.452000px;}
.ws9f{word-spacing:1.512000px;}
.wsb8{word-spacing:1.518000px;}
.ws98{word-spacing:1.584000px;}
.ws88{word-spacing:1.650000px;}
.ws57{word-spacing:1.716000px;}
.ws26{word-spacing:1.782000px;}
.ws76{word-spacing:1.848000px;}
.ws93{word-spacing:1.914000px;}
.ws81{word-spacing:1.980000px;}
.ws9{word-spacing:2.040000px;}
.wsa5{word-spacing:2.100000px;}
.wsc0{word-spacing:2.112000px;}
.ws95{word-spacing:2.178000px;}
.ws69{word-spacing:2.244000px;}
.wsa6{word-spacing:2.280000px;}
.ws42{word-spacing:2.310000px;}
.ws29{word-spacing:2.376000px;}
.ws1b{word-spacing:2.442000px;}
.ws13{word-spacing:2.508000px;}
.wscd{word-spacing:2.520000px;}
.ws22{word-spacing:2.574000px;}
.wsd{word-spacing:2.580000px;}
.ws66{word-spacing:2.640000px;}
.wse6{word-spacing:2.700000px;}
.ws3b{word-spacing:2.706000px;}
.ws99{word-spacing:2.760000px;}
.ws16{word-spacing:2.772000px;}
.wsd7{word-spacing:2.820000px;}
.ws9c{word-spacing:2.838000px;}
.ws97{word-spacing:2.904000px;}
.wse1{word-spacing:2.940000px;}
.ws3c{word-spacing:2.970000px;}
.ws20{word-spacing:3.000000px;}
.ws77{word-spacing:3.036000px;}
.ws7{word-spacing:3.060000px;}
.wsc6{word-spacing:3.168000px;}
.ws25{word-spacing:3.234000px;}
.ws2c{word-spacing:3.300000px;}
.ws62{word-spacing:3.366000px;}
.ws52{word-spacing:3.432000px;}
.ws9d{word-spacing:3.564000px;}
.wse{word-spacing:3.600000px;}
.ws28{word-spacing:3.630000px;}
.wsd8{word-spacing:3.720000px;}
.wsb2{word-spacing:3.762000px;}
.wsa9{word-spacing:3.780000px;}
.ws55{word-spacing:3.828000px;}
.wsb{word-spacing:3.840000px;}
.ws58{word-spacing:3.894000px;}
.wsb4{word-spacing:3.960000px;}
.ws54{word-spacing:4.026000px;}
.wsd0{word-spacing:4.080000px;}
.wsbc{word-spacing:4.092000px;}
.ws5c{word-spacing:4.158000px;}
.ws59{word-spacing:4.224000px;}
.ws2f{word-spacing:4.290000px;}
.ws14{word-spacing:4.356000px;}
.wsc1{word-spacing:4.422000px;}
.wscf{word-spacing:4.440000px;}
.ws4b{word-spacing:4.488000px;}
.wse9{word-spacing:4.500000px;}
.wsa8{word-spacing:4.554000px;}
.ws96{word-spacing:4.620000px;}
.ws1e{word-spacing:4.680000px;}
.wsb6{word-spacing:4.686000px;}
.wsd4{word-spacing:4.740000px;}
.ws15{word-spacing:4.752000px;}
.ws71{word-spacing:4.860000px;}
.ws7e{word-spacing:4.884000px;}
.ws5d{word-spacing:4.950000px;}
.ws6a{word-spacing:5.016000px;}
.wse4{word-spacing:5.040000px;}
.wsbe{word-spacing:5.082000px;}
.wsd3{word-spacing:5.160000px;}
.wsb7{word-spacing:5.214000px;}
.ws74{word-spacing:5.220000px;}
.ws45{word-spacing:5.280000px;}
.ws75{word-spacing:5.478000px;}
.ws7a{word-spacing:5.610000px;}
.ws51{word-spacing:5.742000px;}
.wsc9{word-spacing:5.760000px;}
.ws94{word-spacing:5.808000px;}
.ws3d{word-spacing:5.874000px;}
.ws1f{word-spacing:5.880000px;}
.ws79{word-spacing:5.940000px;}
.ws86{word-spacing:6.006000px;}
.ws36{word-spacing:6.072000px;}
.wsbd{word-spacing:6.138000px;}
.wsbf{word-spacing:6.270000px;}
.wsea{word-spacing:6.360000px;}
.wsa1{word-spacing:6.468000px;}
.ws38{word-spacing:6.666000px;}
.ws41{word-spacing:6.798000px;}
.ws60{word-spacing:6.864000px;}
.ws3a{word-spacing:7.062000px;}
.ws7c{word-spacing:7.194000px;}
.ws39{word-spacing:7.260000px;}
.ws40{word-spacing:7.392000px;}
.wseb{word-spacing:7.680000px;}
.ws82{word-spacing:7.854000px;}
.ws87{word-spacing:8.382000px;}
.ws3f{word-spacing:8.844000px;}
.ws3e{word-spacing:9.636000px;}
.wsc7{word-spacing:9.720000px;}
.wsd5{word-spacing:9.960000px;}
.wsaa{word-spacing:10.200000px;}
.wsa7{word-spacing:10.428000px;}
.wsc8{word-spacing:10.560000px;}
.wsc2{word-spacing:10.824000px;}
.wsd6{word-spacing:10.860000px;}
.wse8{word-spacing:11.880000px;}
.wsb0{word-spacing:12.012000px;}
.wse7{word-spacing:12.900000px;}
.wsb1{word-spacing:13.068000px;}
.wsdc{word-spacing:13.740000px;}
.wsdd{word-spacing:14.940000px;}
.wscb{word-spacing:15.660000px;}
.wsdf{word-spacing:23.280000px;}
.wsde{word-spacing:25.320000px;}
.wsd1{word-spacing:25.800000px;}
.wsd2{word-spacing:28.080000px;}
.ws85{word-spacing:148.956600px;}
.ws8b{word-spacing:151.446600px;}
.ws8c{word-spacing:156.366000px;}
.ws83{word-spacing:156.366600px;}
.ws8d{word-spacing:157.116600px;}
.ws8f{word-spacing:303.745800px;}
.ws8e{word-spacing:305.846400px;}
.ws84{word-spacing:318.566400px;}
.ws10{word-spacing:521.170800px;}
.ws0{word-spacing:521.171400px;}
.ws90{word-spacing:769.740600px;}
.wsc4{word-spacing:771.126600px;}
.wse5{word-spacing:772.182600px;}
.wsb5{word-spacing:774.162600px;}
.wsa0{word-spacing:775.812600px;}
.wsf{word-spacing:791.058600px;}
.ws72{word-spacing:792.444600px;}
.ws61{word-spacing:793.500600px;}
.ws31{word-spacing:795.150600px;}
._3d{margin-left:-15.684000px;}
._39{margin-left:-14.658000px;}
._34{margin-left:-11.880000px;}
._3a{margin-left:-9.240000px;}
._3{margin-left:-5.653200px;}
._5{margin-left:-4.200000px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.449600px;}
._4{width:1.030200px;}
._2{width:2.683200px;}
._6{width:4.092000px;}
._9{width:5.101800px;}
._a{width:6.214800px;}
._7{width:7.570200px;}
._8{width:8.903400px;}
._3f{width:10.740000px;}
._3b{width:12.300000px;}
._40{width:13.434000px;}
._37{width:14.460000px;}
._3e{width:15.540000px;}
._36{width:16.560000px;}
._30{width:20.580000px;}
._35{width:22.800000px;}
._32{width:24.300000px;}
._33{width:25.680000px;}
._31{width:32.640000px;}
._3c{width:35.364000px;}
._38{width:36.507600px;}
._e{width:39.120000px;}
._2f{width:40.380000px;}
._f{width:41.880000px;}
._41{width:44.061600px;}
._d{width:50.220000px;}
._c{width:58.200000px;}
._b{width:66.540000px;}
._2e{width:92.062800px;}
._2c{width:162.726600px;}
._13{width:168.066600px;}
._2b{width:235.894800px;}
._1d{width:249.864600px;}
._23{width:259.405200px;}
._25{width:260.425200px;}
._21{width:264.244800px;}
._26{width:309.946800px;}
._12{width:312.459600px;}
._20{width:316.629000px;}
._27{width:317.996400px;}
._1c{width:319.119000px;}
._17{width:320.546400px;}
._1a{width:322.406400px;}
._18{width:326.577000px;}
._15{width:329.966400px;}
._10{width:331.436400px;}
._28{width:346.376400px;}
._22{width:371.836800px;}
._1e{width:384.337200px;}
._2a{width:391.351800px;}
._2d{width:396.661800px;}
._14{width:429.039600px;}
._19{width:521.037600px;}
._24{width:522.882000px;}
._1b{width:527.697600px;}
._11{width:578.166600px;}
._16{width:579.181800px;}
._29{width:584.025000px;}
._1f{width:585.186600px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:39.177600px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y1{bottom:68.775600px;}
.y8e{bottom:89.291400px;}
.y176{bottom:89.291550px;}
.y91{bottom:93.385950px;}
.y4a{bottom:96.031950px;}
.y6f{bottom:96.931950px;}
.yc4{bottom:98.733450px;}
.y105{bottom:99.962850px;}
.y19a{bottom:100.737300px;}
.y1d2{bottom:101.637300px;}
.y168{bottom:105.234450px;}
.y9b{bottom:105.491400px;}
.y90{bottom:105.491700px;}
.ye5{bottom:108.549450px;}
.y80{bottom:108.633300px;}
.y8d{bottom:109.585800px;}
.y175{bottom:109.585950px;}
.y49{bottom:114.031950px;}
.y6e{bottom:116.731950px;}
.y1ae{bottom:116.733450px;}
.y104{bottom:117.962850px;}
.yc3{bottom:118.533450px;}
.y1d1{bottom:119.637300px;}
.y199{bottom:120.537300px;}
.y9a{bottom:121.691400px;}
.y127{bottom:123.030600px;}
.y167{bottom:123.234450px;}
.y8f{bottom:125.786100px;}
.y7f{bottom:128.433450px;}
.yc1{bottom:131.337300px;}
.y48{bottom:132.031950px;}
.y1ad{bottom:134.733450px;}
.ye4{bottom:135.321600px;}
.y103{bottom:135.962850px;}
.y6d{bottom:136.531950px;}
.y1d0{bottom:137.637300px;}
.y99{bottom:137.891400px;}
.yc2{bottom:138.333300px;}
.y198{bottom:140.337300px;}
.y166{bottom:141.234450px;}
.y126{bottom:142.830450px;}
.y7e{bottom:148.233450px;}
.y47{bottom:150.031950px;}
.yc0{bottom:151.137300px;}
.y1ac{bottom:152.733450px;}
.y1f{bottom:153.946950px;}
.y98{bottom:154.091400px;}
.y1cf{bottom:155.637300px;}
.y6c{bottom:156.331950px;}
.y8c{bottom:158.133300px;}
.y165{bottom:159.234450px;}
.y197{bottom:160.137300px;}
.ye3{bottom:162.093750px;}
.y125{bottom:162.630450px;}
.y174{bottom:162.631950px;}
.y102{bottom:162.735000px;}
.y46{bottom:168.031950px;}
.y7d{bottom:168.033300px;}
.y97{bottom:170.291400px;}
.y1ab{bottom:170.733300px;}
.ybf{bottom:170.937300px;}
.y1e{bottom:171.946950px;}
.y1ce{bottom:173.637300px;}
.y6b{bottom:176.131950px;}
.y142{bottom:177.031950px;}
.y8b{bottom:177.933450px;}
.y196{bottom:179.937300px;}
.y124{bottom:182.430600px;}
.y173{bottom:182.431950px;}
.y45{bottom:186.031950px;}
.y164{bottom:186.235800px;}
.y96{bottom:186.491400px;}
.y7c{bottom:187.833450px;}
.y1aa{bottom:188.733300px;}
.ye2{bottom:188.865900px;}
.y101{bottom:189.507150px;}
.ybe{bottom:190.737300px;}
.y1cd{bottom:191.637300px;}
.y6a{bottom:195.931950px;}
.y1d{bottom:196.546950px;}
.y141{bottom:196.831950px;}
.y8a{bottom:197.733300px;}
.y195{bottom:199.737300px;}
.y123{bottom:202.230450px;}
.y172{bottom:202.231950px;}
.y44{bottom:204.031950px;}
.y163{bottom:206.035800px;}
.y1a9{bottom:206.733300px;}
.y95{bottom:206.785800px;}
.y7b{bottom:207.633300px;}
.y1cc{bottom:209.637300px;}
.ybd{bottom:210.537300px;}
.y1c{bottom:214.546950px;}
.ye1{bottom:215.638050px;}
.y100{bottom:216.279300px;}
.y140{bottom:216.631950px;}
.y89{bottom:217.533300px;}
.y194{bottom:219.537300px;}
.y122{bottom:222.030600px;}
.y43{bottom:222.031950px;}
.y1a8{bottom:224.733300px;}
.y69{bottom:225.631950px;}
.y162{bottom:225.835800px;}
.y7a{bottom:227.433450px;}
.y1cb{bottom:227.637300px;}
.ybc{bottom:230.337300px;}
.y1b{bottom:232.546950px;}
.y13f{bottom:236.431950px;}
.y88{bottom:237.333450px;}
.y193{bottom:239.337300px;}
.y42{bottom:240.031950px;}
.y121{bottom:241.830600px;}
.y171{bottom:241.831950px;}
.ye0{bottom:242.410350px;}
.y1a7{bottom:242.733300px;}
.yff{bottom:243.051600px;}
.y94{bottom:243.634050px;}
.y161{bottom:245.635800px;}
.y1ca{bottom:245.637300px;}
.y79{bottom:247.233300px;}
.ybb{bottom:250.137300px;}
.y1a{bottom:250.546950px;}
.y13e{bottom:256.231950px;}
.y87{bottom:257.133300px;}
.y192{bottom:259.137300px;}
.y1a6{bottom:260.733300px;}
.y120{bottom:261.630450px;}
.y170{bottom:261.631950px;}
.y93{bottom:261.634050px;}
.y1c9{bottom:263.637300px;}
.y68{bottom:265.231950px;}
.y160{bottom:265.435800px;}
.y41{bottom:267.033300px;}
.y19{bottom:268.546950px;}
.ydf{bottom:269.182500px;}
.yfe{bottom:269.823750px;}
.yba{bottom:269.937300px;}
.y13d{bottom:276.031950px;}
.y86{bottom:276.933450px;}
.y1a5{bottom:278.733300px;}
.y191{bottom:278.937300px;}
.y92{bottom:279.634050px;}
.y11f{bottom:281.430600px;}
.y16f{bottom:281.431950px;}
.y1c8{bottom:281.637300px;}
.y67{bottom:285.031950px;}
.y15f{bottom:285.235800px;}
.y18{bottom:286.546950px;}
.y40{bottom:286.833450px;}
.yde{bottom:287.182500px;}
.yb9{bottom:289.737300px;}
.y13c{bottom:295.831950px;}
.yfd{bottom:296.595900px;}
.y85{bottom:296.733300px;}
.y190{bottom:298.737300px;}
.y1c7{bottom:299.637300px;}
.y11e{bottom:301.230450px;}
.y16e{bottom:301.231950px;}
.y17{bottom:304.546950px;}
.y66{bottom:304.831950px;}
.y15e{bottom:305.035800px;}
.y3f{bottom:306.633300px;}
.yb8{bottom:309.537300px;}
.y1a4{bottom:314.733300px;}
.y13b{bottom:315.631950px;}
.y84{bottom:316.533300px;}
.y1c6{bottom:317.637300px;}
.y18f{bottom:318.537300px;}
.ydd{bottom:319.031850px;}
.y11d{bottom:321.030600px;}
.y16d{bottom:321.031950px;}
.yfc{bottom:323.368050px;}
.y16{bottom:323.610000px;}
.y65{bottom:324.631950px;}
.y15d{bottom:324.835800px;}
.y3e{bottom:326.433450px;}
.yb7{bottom:329.337300px;}
.y1a3{bottom:332.733300px;}
.y13a{bottom:335.431950px;}
.y1c5{bottom:335.637300px;}
.y83{bottom:336.333450px;}
.y18e{bottom:338.337300px;}
.y11c{bottom:340.830600px;}
.y16c{bottom:340.831950px;}
.ydc{bottom:343.083900px;}
.y64{bottom:344.431950px;}
.y15c{bottom:344.635800px;}
.y3d{bottom:346.233300px;}
.yb6{bottom:349.137300px;}
.y15{bottom:350.113950px;}
.yfb{bottom:350.140200px;}
.y1a2{bottom:350.733300px;}
.y1c4{bottom:353.637300px;}
.y139{bottom:355.231950px;}
.y82{bottom:356.133300px;}
.y18d{bottom:358.137300px;}
.y11b{bottom:360.630450px;}
.y16b{bottom:360.631950px;}
.y63{bottom:364.231950px;}
.y15b{bottom:364.435800px;}
.y3c{bottom:366.033300px;}
.y14{bottom:368.113950px;}
.y1a1{bottom:368.733300px;}
.yb5{bottom:368.937300px;}
.y1c3{bottom:371.637300px;}
.y138{bottom:375.031950px;}
.y78{bottom:375.933450px;}
.yfa{bottom:376.912350px;}
.y18c{bottom:377.937300px;}
.y11a{bottom:380.430600px;}
.ydb{bottom:382.683900px;}
.y62{bottom:384.031950px;}
.y15a{bottom:384.235800px;}
.y3b{bottom:385.833450px;}
.y1a0{bottom:386.733300px;}
.yb4{bottom:388.737300px;}
.y1c2{bottom:389.637300px;}
.y13{bottom:392.713950px;}
.y137{bottom:394.831950px;}
.y81{bottom:395.733300px;}
.y18b{bottom:397.737300px;}
.y16a{bottom:400.231950px;}
.yda{bottom:402.483900px;}
.yf9{bottom:403.684500px;}
.y61{bottom:403.831950px;}
.y159{bottom:404.035800px;}
.y19f{bottom:404.733300px;}
.y3a{bottom:405.633300px;}
.y1c1{bottom:407.637300px;}
.yb3{bottom:408.537300px;}
.y12{bottom:410.713950px;}
.y136{bottom:414.631950px;}
.y77{bottom:415.533300px;}
.y18a{bottom:417.537300px;}
.y169{bottom:418.231950px;}
.y119{bottom:420.030600px;}
.yd9{bottom:422.283900px;}
.y19e{bottom:422.733300px;}
.y39{bottom:425.433450px;}
.y1c0{bottom:425.637300px;}
.yb2{bottom:428.337300px;}
.y11{bottom:428.713950px;}
.yf8{bottom:430.456800px;}
.y135{bottom:434.431950px;}
.y76{bottom:435.333450px;}
.y189{bottom:437.337300px;}
.y118{bottom:438.030600px;}
.y19d{bottom:440.733300px;}
.yd8{bottom:442.083900px;}
.y60{bottom:443.431950px;}
.y158{bottom:443.635800px;}
.y1bf{bottom:443.637300px;}
.y38{bottom:445.233300px;}
.y10{bottom:446.713950px;}
.yb1{bottom:448.137300px;}
.y134{bottom:454.231950px;}
.y75{bottom:455.133300px;}
.y117{bottom:456.030600px;}
.y188{bottom:457.137300px;}
.yf7{bottom:457.228950px;}
.y19c{bottom:458.733300px;}
.y5f{bottom:461.431950px;}
.y157{bottom:461.635800px;}
.y1be{bottom:461.637300px;}
.yd7{bottom:461.883900px;}
.yf{bottom:464.713950px;}
.y37{bottom:465.033300px;}
.yb0{bottom:467.937300px;}
.y116{bottom:474.030600px;}
.y133{bottom:474.031950px;}
.y74{bottom:474.933450px;}
.y19b{bottom:476.733300px;}
.y187{bottom:476.937300px;}
.y5e{bottom:479.431950px;}
.y156{bottom:479.635800px;}
.y1bd{bottom:479.637300px;}
.ye{bottom:482.713950px;}
.yf6{bottom:484.001100px;}
.y36{bottom:484.833450px;}
.yaf{bottom:487.737300px;}
.y115{bottom:492.030600px;}
.y132{bottom:493.831950px;}
.y73{bottom:494.733300px;}
.y186{bottom:496.737300px;}
.y5d{bottom:497.431950px;}
.y155{bottom:497.635800px;}
.y1bc{bottom:497.637300px;}
.yd{bottom:500.713950px;}
.yd6{bottom:501.483900px;}
.y35{bottom:504.633300px;}
.yae{bottom:507.537300px;}
.y114{bottom:510.030600px;}
.yf5{bottom:510.773250px;}
.y72{bottom:514.533300px;}
.y154{bottom:515.635800px;}
.y1bb{bottom:515.637300px;}
.y185{bottom:516.537300px;}
.yd5{bottom:519.483900px;}
.yc{bottom:519.776850px;}
.y34{bottom:524.433450px;}
.yad{bottom:527.337300px;}
.y113{bottom:528.030600px;}
.y131{bottom:533.431950px;}
.y153{bottom:533.635800px;}
.y1ba{bottom:533.637300px;}
.y71{bottom:534.333450px;}
.y184{bottom:536.337300px;}
.yf4{bottom:537.545400px;}
.y33{bottom:544.233450px;}
.y112{bottom:546.030600px;}
.yb{bottom:546.280800px;}
.yd4{bottom:546.485250px;}
.yac{bottom:547.137300px;}
.y130{bottom:551.431950px;}
.y1b9{bottom:551.637300px;}
.y5c{bottom:554.133300px;}
.y183{bottom:556.137300px;}
.y152{bottom:560.637300px;}
.y32{bottom:564.033300px;}
.ya{bottom:564.280800px;}
.yf3{bottom:564.317550px;}
.yd3{bottom:566.285250px;}
.yab{bottom:566.937300px;}
.y12f{bottom:569.431950px;}
.y1b8{bottom:569.637300px;}
.y111{bottom:573.031950px;}
.y70{bottom:573.933450px;}
.y182{bottom:575.937300px;}
.y151{bottom:580.437300px;}
.y31{bottom:583.833300px;}
.yd2{bottom:586.085250px;}
.yaa{bottom:586.737300px;}
.y12e{bottom:587.431950px;}
.y1b7{bottom:587.637300px;}
.yf2{bottom:591.089700px;}
.y110{bottom:592.831950px;}
.y5b{bottom:593.733450px;}
.y150{bottom:600.237300px;}
.y9{bottom:602.080800px;}
.y30{bottom:603.633300px;}
.y12d{bottom:605.431950px;}
.y181{bottom:605.637300px;}
.y5a{bottom:613.533300px;}
.yd1{bottom:615.785250px;}
.ya9{bottom:616.437300px;}
.yf1{bottom:617.862000px;}
.y14f{bottom:620.037300px;}
.y8{bottom:621.880800px;}
.y12c{bottom:623.431950px;}
.y2f{bottom:623.433450px;}
.y1b6{bottom:623.637300px;}
.y10f{bottom:632.431950px;}
.y59{bottom:633.333300px;}
.y14e{bottom:639.837300px;}
.y12b{bottom:641.431950px;}
.y1b5{bottom:641.637300px;}
.y7{bottom:641.680800px;}
.y2e{bottom:643.233450px;}
.yf0{bottom:644.634000px;}
.y180{bottom:645.237300px;}
.y1d5{bottom:646.137300px;}
.y10e{bottom:650.431950px;}
.y58{bottom:653.133300px;}
.yd0{bottom:655.385250px;}
.ya8{bottom:656.037300px;}
.y12a{bottom:659.431950px;}
.y14d{bottom:659.637300px;}
.y6{bottom:661.480800px;}
.y2d{bottom:663.033300px;}
.y1d4{bottom:664.137300px;}
.y17f{bottom:665.037300px;}
.y10d{bottom:668.431950px;}
.yef{bottom:671.406300px;}
.y57{bottom:672.933450px;}
.ycf{bottom:675.185250px;}
.ya7{bottom:675.837300px;}
.y129{bottom:677.431950px;}
.y1b4{bottom:677.637300px;}
.y14c{bottom:679.437300px;}
.y2c{bottom:682.833300px;}
.y17e{bottom:684.837300px;}
.y10c{bottom:686.431950px;}
.y1d3{bottom:692.037300px;}
.y56{bottom:692.733450px;}
.yce{bottom:694.985250px;}
.y128{bottom:695.431950px;}
.ya6{bottom:695.637300px;}
.yee{bottom:698.178450px;}
.y14b{bottom:699.237300px;}
.y5{bottom:701.080800px;}
.y2b{bottom:702.633300px;}
.y10b{bottom:704.431950px;}
.y17d{bottom:704.637300px;}
.y55{bottom:712.533300px;}
.y1b3{bottom:713.637300px;}
.ycd{bottom:714.785250px;}
.ya5{bottom:715.437300px;}
.y14a{bottom:719.037300px;}
.y10a{bottom:722.431950px;}
.y2a{bottom:722.433450px;}
.y17c{bottom:724.437300px;}
.yed{bottom:724.950600px;}
.y4{bottom:729.384750px;}
.y1b2{bottom:731.637300px;}
.y54{bottom:732.333300px;}
.ycc{bottom:734.585250px;}
.ya4{bottom:735.237300px;}
.y149{bottom:738.837300px;}
.y109{bottom:740.431950px;}
.y29{bottom:742.233450px;}
.y17b{bottom:744.237300px;}
.y1b1{bottom:749.637300px;}
.yec{bottom:751.722750px;}
.y53{bottom:752.133300px;}
.y3{bottom:753.684750px;}
.ycb{bottom:754.385250px;}
.ya3{bottom:755.037300px;}
.y108{bottom:758.431950px;}
.y148{bottom:758.637300px;}
.y28{bottom:762.033300px;}
.y17a{bottom:764.037300px;}
.y1b0{bottom:767.637300px;}
.y52{bottom:771.933450px;}
.yca{bottom:774.185250px;}
.ya2{bottom:774.837300px;}
.y107{bottom:776.431950px;}
.y147{bottom:778.437300px;}
.yeb{bottom:778.494900px;}
.y27{bottom:781.833300px;}
.y1af{bottom:785.637300px;}
.y51{bottom:791.733450px;}
.yc9{bottom:793.985250px;}
.y106{bottom:794.431950px;}
.ya1{bottom:794.637300px;}
.y146{bottom:798.237300px;}
.y26{bottom:801.633300px;}
.y179{bottom:803.637300px;}
.yea{bottom:805.267050px;}
.y50{bottom:811.533300px;}
.yc8{bottom:813.785400px;}
.ya0{bottom:814.437300px;}
.y145{bottom:818.037300px;}
.y25{bottom:821.433450px;}
.y178{bottom:821.637300px;}
.y4f{bottom:831.333300px;}
.ye9{bottom:832.039350px;}
.y9f{bottom:834.237300px;}
.y177{bottom:839.637300px;}
.y24{bottom:841.233450px;}
.y4e{bottom:851.133300px;}
.yc7{bottom:853.385250px;}
.y9e{bottom:854.037300px;}
.y144{bottom:857.637300px;}
.ye8{bottom:858.811500px;}
.y23{bottom:861.033300px;}
.y4d{bottom:870.933450px;}
.yc6{bottom:871.385250px;}
.y143{bottom:875.637300px;}
.y22{bottom:880.833300px;}
.ye7{bottom:885.583650px;}
.yc5{bottom:889.385250px;}
.y4c{bottom:890.733450px;}
.y9d{bottom:893.637300px;}
.ye6{bottom:903.583650px;}
.y21{bottom:910.533300px;}
.y9c{bottom:911.637300px;}
.y20{bottom:944.548950px;}
.y4b{bottom:945.652950px;}
.ha{height:31.498790px;}
.h2{height:32.064000px;}
.hb{height:36.072000px;}
.hf{height:39.960000px;}
.h4{height:40.080000px;}
.he{height:43.416000px;}
.h8{height:43.956000px;}
.h9{height:44.088000px;}
.h7{height:44.496000px;}
.hc{height:47.681304px;}
.h6{height:48.240000px;}
.hd{height:52.914312px;}
.h5{height:53.064000px;}
.h3{height:53.526000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:97.795200px;}
.x1{left:106.299150px;}
.x11{left:112.447950px;}
.xa{left:114.803250px;}
.x28{left:115.829700px;}
.x12{left:120.262950px;}
.xd{left:123.307050px;}
.x2{left:127.495500px;}
.x1b{left:128.766900px;}
.x24{left:131.106900px;}
.x27{left:133.484550px;}
.x25{left:134.676900px;}
.x4{left:141.940200px;}
.x1a{left:143.032650px;}
.x26{left:147.771600px;}
.x23{left:148.814100px;}
.x22{left:151.236600px;}
.xb{left:153.070950px;}
.xe{left:161.574750px;}
.x10{left:178.582800px;}
.x2d{left:195.590550px;}
.x2f{left:204.094500px;}
.x13{left:213.412350px;}
.x14{left:221.519700px;}
.x1c{left:230.023500px;}
.x29{left:237.365850px;}
.x3{left:287.493450px;}
.x2a{left:302.077200px;}
.x15{left:339.169050px;}
.x1d{left:347.673000px;}
.x16{left:349.294200px;}
.x1e{left:357.798000px;}
.x17{left:455.505750px;}
.x2b{left:457.511850px;}
.x8{left:458.781900px;}
.x18{left:462.765600px;}
.x1f{left:464.009700px;}
.x20{left:471.269550px;}
.x7{left:473.017200px;}
.x6{left:493.131750px;}
.x5{left:514.738950px;}
.x2c{left:551.055150px;}
.x19{left:557.815350px;}
.x21{left:566.319300px;}
.x30{left:605.223150px;}
.x2e{left:607.219650px;}
.xf{left:610.552500px;}
.xc{left:612.549150px;}
@media print{
.v3{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v2{vertical-align:19.536000pt;}
.ls8{letter-spacing:-4.106667pt;}
.ls1{letter-spacing:-2.346667pt;}
.ls2{letter-spacing:-2.133333pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.234667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000053pt;}
.ls15{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.576533pt;}
.ls6{letter-spacing:0.645333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.880000pt;}
.lsa{letter-spacing:1.516267pt;}
.lsd{letter-spacing:1.561067pt;}
.ls12{letter-spacing:2.941333pt;}
.lsf{letter-spacing:3.981867pt;}
.lse{letter-spacing:3.982400pt;}
.lsc{letter-spacing:4.466133pt;}
.ls16{letter-spacing:4.538667pt;}
.ls7{letter-spacing:4.884267pt;}
.ls1a{letter-spacing:4.896533pt;}
.ls19{letter-spacing:4.897067pt;}
.lsb{letter-spacing:4.914133pt;}
.ls18{letter-spacing:24.962133pt;}
.wsac{word-spacing:-12.496000pt;}
.wsae{word-spacing:-12.320000pt;}
.wsba{word-spacing:-11.792000pt;}
.ws47{word-spacing:-11.616000pt;}
.wsad{word-spacing:-11.381333pt;}
.ws11{word-spacing:-11.029333pt;}
.wsbb{word-spacing:-10.853333pt;}
.ws12{word-spacing:-10.677333pt;}
.ws3{word-spacing:-10.560000pt;}
.ws7b{word-spacing:-10.090667pt;}
.ws4{word-spacing:-9.706667pt;}
.ws73{word-spacing:-9.504000pt;}
.wsc5{word-spacing:-9.440000pt;}
.wsce{word-spacing:-9.173333pt;}
.ws6c{word-spacing:-8.736000pt;}
.ws1{word-spacing:-7.744000pt;}
.ws2{word-spacing:-7.573333pt;}
.ws49{word-spacing:-6.895258pt;}
.ws48{word-spacing:-6.772128pt;}
.wsdb{word-spacing:-2.880000pt;}
.wsda{word-spacing:-2.613333pt;}
.ws6e{word-spacing:-2.288000pt;}
.ws9b{word-spacing:-2.229333pt;}
.ws8a{word-spacing:-2.112000pt;}
.ws1d{word-spacing:-2.053333pt;}
.ws56{word-spacing:-1.994667pt;}
.ws68{word-spacing:-1.936000pt;}
.ws34{word-spacing:-1.877333pt;}
.ws6f{word-spacing:-1.818667pt;}
.ws2d{word-spacing:-1.760000pt;}
.wse0{word-spacing:-1.706667pt;}
.ws78{word-spacing:-1.701333pt;}
.ws1c{word-spacing:-1.584000pt;}
.ws2e{word-spacing:-1.525333pt;}
.ws6b{word-spacing:-1.408000pt;}
.ws2a{word-spacing:-1.386667pt;}
.ws5e{word-spacing:-1.290667pt;}
.ws24{word-spacing:-1.173333pt;}
.ws64{word-spacing:-1.114667pt;}
.ws23{word-spacing:-1.056000pt;}
.wsab{word-spacing:-1.013333pt;}
.ws43{word-spacing:-0.997333pt;}
.ws63{word-spacing:-0.938667pt;}
.ws37{word-spacing:-0.880000pt;}
.ws53{word-spacing:-0.821333pt;}
.ws80{word-spacing:-0.762667pt;}
.wscc{word-spacing:-0.746667pt;}
.ws7f{word-spacing:-0.704000pt;}
.ws1a{word-spacing:-0.645333pt;}
.ws6{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.586667pt;}
.wsa2{word-spacing:-0.528000pt;}
.ws6d{word-spacing:-0.469333pt;}
.ws21{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.410667pt;}
.ws32{word-spacing:-0.352000pt;}
.wsaf{word-spacing:-0.293333pt;}
.ws91{word-spacing:-0.266667pt;}
.ws4d{word-spacing:-0.234667pt;}
.wsd9{word-spacing:-0.213333pt;}
.ws65{word-spacing:-0.176000pt;}
.wsca{word-spacing:-0.160000pt;}
.ws67{word-spacing:-0.117333pt;}
.ws8{word-spacing:-0.106667pt;}
.wsb9{word-spacing:-0.058667pt;}
.ws92{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws46{word-spacing:0.058667pt;}
.ws50{word-spacing:0.117333pt;}
.ws2b{word-spacing:0.160000pt;}
.ws9a{word-spacing:0.176000pt;}
.ws35{word-spacing:0.234667pt;}
.wsc{word-spacing:0.266667pt;}
.ws27{word-spacing:0.293333pt;}
.ws4f{word-spacing:0.352000pt;}
.ws70{word-spacing:0.410667pt;}
.wse2{word-spacing:0.426667pt;}
.ws44{word-spacing:0.469333pt;}
.wse3{word-spacing:0.480000pt;}
.ws9e{word-spacing:0.528000pt;}
.ws4a{word-spacing:0.586667pt;}
.ws89{word-spacing:0.645333pt;}
.wsb3{word-spacing:0.704000pt;}
.wsc3{word-spacing:0.762667pt;}
.ws5b{word-spacing:0.821333pt;}
.ws5f{word-spacing:0.880000pt;}
.ws5a{word-spacing:0.938667pt;}
.wsa4{word-spacing:0.960000pt;}
.ws4e{word-spacing:0.997333pt;}
.ws18{word-spacing:1.056000pt;}
.wsa3{word-spacing:1.066667pt;}
.ws33{word-spacing:1.114667pt;}
.ws17{word-spacing:1.173333pt;}
.ws30{word-spacing:1.232000pt;}
.wsa{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.290667pt;}
.ws9f{word-spacing:1.344000pt;}
.wsb8{word-spacing:1.349333pt;}
.ws98{word-spacing:1.408000pt;}
.ws88{word-spacing:1.466667pt;}
.ws57{word-spacing:1.525333pt;}
.ws26{word-spacing:1.584000pt;}
.ws76{word-spacing:1.642667pt;}
.ws93{word-spacing:1.701333pt;}
.ws81{word-spacing:1.760000pt;}
.ws9{word-spacing:1.813333pt;}
.wsa5{word-spacing:1.866667pt;}
.wsc0{word-spacing:1.877333pt;}
.ws95{word-spacing:1.936000pt;}
.ws69{word-spacing:1.994667pt;}
.wsa6{word-spacing:2.026667pt;}
.ws42{word-spacing:2.053333pt;}
.ws29{word-spacing:2.112000pt;}
.ws1b{word-spacing:2.170667pt;}
.ws13{word-spacing:2.229333pt;}
.wscd{word-spacing:2.240000pt;}
.ws22{word-spacing:2.288000pt;}
.wsd{word-spacing:2.293333pt;}
.ws66{word-spacing:2.346667pt;}
.wse6{word-spacing:2.400000pt;}
.ws3b{word-spacing:2.405333pt;}
.ws99{word-spacing:2.453333pt;}
.ws16{word-spacing:2.464000pt;}
.wsd7{word-spacing:2.506667pt;}
.ws9c{word-spacing:2.522667pt;}
.ws97{word-spacing:2.581333pt;}
.wse1{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.640000pt;}
.ws20{word-spacing:2.666667pt;}
.ws77{word-spacing:2.698667pt;}
.ws7{word-spacing:2.720000pt;}
.wsc6{word-spacing:2.816000pt;}
.ws25{word-spacing:2.874667pt;}
.ws2c{word-spacing:2.933333pt;}
.ws62{word-spacing:2.992000pt;}
.ws52{word-spacing:3.050667pt;}
.ws9d{word-spacing:3.168000pt;}
.wse{word-spacing:3.200000pt;}
.ws28{word-spacing:3.226667pt;}
.wsd8{word-spacing:3.306667pt;}
.wsb2{word-spacing:3.344000pt;}
.wsa9{word-spacing:3.360000pt;}
.ws55{word-spacing:3.402667pt;}
.wsb{word-spacing:3.413333pt;}
.ws58{word-spacing:3.461333pt;}
.wsb4{word-spacing:3.520000pt;}
.ws54{word-spacing:3.578667pt;}
.wsd0{word-spacing:3.626667pt;}
.wsbc{word-spacing:3.637333pt;}
.ws5c{word-spacing:3.696000pt;}
.ws59{word-spacing:3.754667pt;}
.ws2f{word-spacing:3.813333pt;}
.ws14{word-spacing:3.872000pt;}
.wsc1{word-spacing:3.930667pt;}
.wscf{word-spacing:3.946667pt;}
.ws4b{word-spacing:3.989333pt;}
.wse9{word-spacing:4.000000pt;}
.wsa8{word-spacing:4.048000pt;}
.ws96{word-spacing:4.106667pt;}
.ws1e{word-spacing:4.160000pt;}
.wsb6{word-spacing:4.165333pt;}
.wsd4{word-spacing:4.213333pt;}
.ws15{word-spacing:4.224000pt;}
.ws71{word-spacing:4.320000pt;}
.ws7e{word-spacing:4.341333pt;}
.ws5d{word-spacing:4.400000pt;}
.ws6a{word-spacing:4.458667pt;}
.wse4{word-spacing:4.480000pt;}
.wsbe{word-spacing:4.517333pt;}
.wsd3{word-spacing:4.586667pt;}
.wsb7{word-spacing:4.634667pt;}
.ws74{word-spacing:4.640000pt;}
.ws45{word-spacing:4.693333pt;}
.ws75{word-spacing:4.869333pt;}
.ws7a{word-spacing:4.986667pt;}
.ws51{word-spacing:5.104000pt;}
.wsc9{word-spacing:5.120000pt;}
.ws94{word-spacing:5.162667pt;}
.ws3d{word-spacing:5.221333pt;}
.ws1f{word-spacing:5.226667pt;}
.ws79{word-spacing:5.280000pt;}
.ws86{word-spacing:5.338667pt;}
.ws36{word-spacing:5.397333pt;}
.wsbd{word-spacing:5.456000pt;}
.wsbf{word-spacing:5.573333pt;}
.wsea{word-spacing:5.653333pt;}
.wsa1{word-spacing:5.749333pt;}
.ws38{word-spacing:5.925333pt;}
.ws41{word-spacing:6.042667pt;}
.ws60{word-spacing:6.101333pt;}
.ws3a{word-spacing:6.277333pt;}
.ws7c{word-spacing:6.394667pt;}
.ws39{word-spacing:6.453333pt;}
.ws40{word-spacing:6.570667pt;}
.wseb{word-spacing:6.826667pt;}
.ws82{word-spacing:6.981333pt;}
.ws87{word-spacing:7.450667pt;}
.ws3f{word-spacing:7.861333pt;}
.ws3e{word-spacing:8.565333pt;}
.wsc7{word-spacing:8.640000pt;}
.wsd5{word-spacing:8.853333pt;}
.wsaa{word-spacing:9.066667pt;}
.wsa7{word-spacing:9.269333pt;}
.wsc8{word-spacing:9.386667pt;}
.wsc2{word-spacing:9.621333pt;}
.wsd6{word-spacing:9.653333pt;}
.wse8{word-spacing:10.560000pt;}
.wsb0{word-spacing:10.677333pt;}
.wse7{word-spacing:11.466667pt;}
.wsb1{word-spacing:11.616000pt;}
.wsdc{word-spacing:12.213333pt;}
.wsdd{word-spacing:13.280000pt;}
.wscb{word-spacing:13.920000pt;}
.wsdf{word-spacing:20.693333pt;}
.wsde{word-spacing:22.506667pt;}
.wsd1{word-spacing:22.933333pt;}
.wsd2{word-spacing:24.960000pt;}
.ws85{word-spacing:132.405867pt;}
.ws8b{word-spacing:134.619200pt;}
.ws8c{word-spacing:138.992000pt;}
.ws83{word-spacing:138.992533pt;}
.ws8d{word-spacing:139.659200pt;}
.ws8f{word-spacing:269.996267pt;}
.ws8e{word-spacing:271.863467pt;}
.ws84{word-spacing:283.170133pt;}
.ws10{word-spacing:463.262933pt;}
.ws0{word-spacing:463.263467pt;}
.ws90{word-spacing:684.213867pt;}
.wsc4{word-spacing:685.445867pt;}
.wse5{word-spacing:686.384533pt;}
.wsb5{word-spacing:688.144533pt;}
.wsa0{word-spacing:689.611200pt;}
.wsf{word-spacing:703.163200pt;}
.ws72{word-spacing:704.395200pt;}
.ws61{word-spacing:705.333867pt;}
.ws31{word-spacing:706.800533pt;}
._3d{margin-left:-13.941333pt;}
._39{margin-left:-13.029333pt;}
._34{margin-left:-10.560000pt;}
._3a{margin-left:-8.213333pt;}
._3{margin-left:-5.025067pt;}
._5{margin-left:-3.733333pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-1.288533pt;}
._4{width:0.915733pt;}
._2{width:2.385067pt;}
._6{width:3.637333pt;}
._9{width:4.534933pt;}
._a{width:5.524267pt;}
._7{width:6.729067pt;}
._8{width:7.914133pt;}
._3f{width:9.546667pt;}
._3b{width:10.933333pt;}
._40{width:11.941333pt;}
._37{width:12.853333pt;}
._3e{width:13.813333pt;}
._36{width:14.720000pt;}
._30{width:18.293333pt;}
._35{width:20.266667pt;}
._32{width:21.600000pt;}
._33{width:22.826667pt;}
._31{width:29.013333pt;}
._3c{width:31.434667pt;}
._38{width:32.451200pt;}
._e{width:34.773333pt;}
._2f{width:35.893333pt;}
._f{width:37.226667pt;}
._41{width:39.165867pt;}
._d{width:44.640000pt;}
._c{width:51.733333pt;}
._b{width:59.146667pt;}
._2e{width:81.833600pt;}
._2c{width:144.645867pt;}
._13{width:149.392533pt;}
._2b{width:209.684267pt;}
._1d{width:222.101867pt;}
._23{width:230.582400pt;}
._25{width:231.489067pt;}
._21{width:234.884267pt;}
._26{width:275.508267pt;}
._12{width:277.741867pt;}
._20{width:281.448000pt;}
._27{width:282.663467pt;}
._1c{width:283.661333pt;}
._17{width:284.930133pt;}
._1a{width:286.583467pt;}
._18{width:290.290667pt;}
._15{width:293.303467pt;}
._10{width:294.610133pt;}
._28{width:307.890133pt;}
._22{width:330.521600pt;}
._1e{width:341.633067pt;}
._2a{width:347.868267pt;}
._2d{width:352.588267pt;}
._14{width:381.368533pt;}
._19{width:463.144533pt;}
._24{width:464.784000pt;}
._1b{width:469.064533pt;}
._11{width:513.925867pt;}
._16{width:514.828267pt;}
._29{width:519.133333pt;}
._1f{width:520.165867pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:34.824533pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y1{bottom:61.133867pt;}
.y8e{bottom:79.370133pt;}
.y176{bottom:79.370267pt;}
.y91{bottom:83.009733pt;}
.y4a{bottom:85.361733pt;}
.y6f{bottom:86.161733pt;}
.yc4{bottom:87.763067pt;}
.y105{bottom:88.855867pt;}
.y19a{bottom:89.544267pt;}
.y1d2{bottom:90.344267pt;}
.y168{bottom:93.541733pt;}
.y9b{bottom:93.770133pt;}
.y90{bottom:93.770400pt;}
.ye5{bottom:96.488400pt;}
.y80{bottom:96.562933pt;}
.y8d{bottom:97.409600pt;}
.y175{bottom:97.409733pt;}
.y49{bottom:101.361733pt;}
.y6e{bottom:103.761733pt;}
.y1ae{bottom:103.763067pt;}
.y104{bottom:104.855867pt;}
.yc3{bottom:105.363067pt;}
.y1d1{bottom:106.344267pt;}
.y199{bottom:107.144267pt;}
.y9a{bottom:108.170133pt;}
.y127{bottom:109.360533pt;}
.y167{bottom:109.541733pt;}
.y8f{bottom:111.809867pt;}
.y7f{bottom:114.163067pt;}
.yc1{bottom:116.744267pt;}
.y48{bottom:117.361733pt;}
.y1ad{bottom:119.763067pt;}
.ye4{bottom:120.285867pt;}
.y103{bottom:120.855867pt;}
.y6d{bottom:121.361733pt;}
.y1d0{bottom:122.344267pt;}
.y99{bottom:122.570133pt;}
.yc2{bottom:122.962933pt;}
.y198{bottom:124.744267pt;}
.y166{bottom:125.541733pt;}
.y126{bottom:126.960400pt;}
.y7e{bottom:131.763067pt;}
.y47{bottom:133.361733pt;}
.yc0{bottom:134.344267pt;}
.y1ac{bottom:135.763067pt;}
.y1f{bottom:136.841733pt;}
.y98{bottom:136.970133pt;}
.y1cf{bottom:138.344267pt;}
.y6c{bottom:138.961733pt;}
.y8c{bottom:140.562933pt;}
.y165{bottom:141.541733pt;}
.y197{bottom:142.344267pt;}
.ye3{bottom:144.083333pt;}
.y125{bottom:144.560400pt;}
.y174{bottom:144.561733pt;}
.y102{bottom:144.653333pt;}
.y46{bottom:149.361733pt;}
.y7d{bottom:149.362933pt;}
.y97{bottom:151.370133pt;}
.y1ab{bottom:151.762933pt;}
.ybf{bottom:151.944267pt;}
.y1e{bottom:152.841733pt;}
.y1ce{bottom:154.344267pt;}
.y6b{bottom:156.561733pt;}
.y142{bottom:157.361733pt;}
.y8b{bottom:158.163067pt;}
.y196{bottom:159.944267pt;}
.y124{bottom:162.160533pt;}
.y173{bottom:162.161733pt;}
.y45{bottom:165.361733pt;}
.y164{bottom:165.542933pt;}
.y96{bottom:165.770133pt;}
.y7c{bottom:166.963067pt;}
.y1aa{bottom:167.762933pt;}
.ye2{bottom:167.880800pt;}
.y101{bottom:168.450800pt;}
.ybe{bottom:169.544267pt;}
.y1cd{bottom:170.344267pt;}
.y6a{bottom:174.161733pt;}
.y1d{bottom:174.708400pt;}
.y141{bottom:174.961733pt;}
.y8a{bottom:175.762933pt;}
.y195{bottom:177.544267pt;}
.y123{bottom:179.760400pt;}
.y172{bottom:179.761733pt;}
.y44{bottom:181.361733pt;}
.y163{bottom:183.142933pt;}
.y1a9{bottom:183.762933pt;}
.y95{bottom:183.809600pt;}
.y7b{bottom:184.562933pt;}
.y1cc{bottom:186.344267pt;}
.ybd{bottom:187.144267pt;}
.y1c{bottom:190.708400pt;}
.ye1{bottom:191.678267pt;}
.y100{bottom:192.248267pt;}
.y140{bottom:192.561733pt;}
.y89{bottom:193.362933pt;}
.y194{bottom:195.144267pt;}
.y122{bottom:197.360533pt;}
.y43{bottom:197.361733pt;}
.y1a8{bottom:199.762933pt;}
.y69{bottom:200.561733pt;}
.y162{bottom:200.742933pt;}
.y7a{bottom:202.163067pt;}
.y1cb{bottom:202.344267pt;}
.ybc{bottom:204.744267pt;}
.y1b{bottom:206.708400pt;}
.y13f{bottom:210.161733pt;}
.y88{bottom:210.963067pt;}
.y193{bottom:212.744267pt;}
.y42{bottom:213.361733pt;}
.y121{bottom:214.960533pt;}
.y171{bottom:214.961733pt;}
.ye0{bottom:215.475867pt;}
.y1a7{bottom:215.762933pt;}
.yff{bottom:216.045867pt;}
.y94{bottom:216.563600pt;}
.y161{bottom:218.342933pt;}
.y1ca{bottom:218.344267pt;}
.y79{bottom:219.762933pt;}
.ybb{bottom:222.344267pt;}
.y1a{bottom:222.708400pt;}
.y13e{bottom:227.761733pt;}
.y87{bottom:228.562933pt;}
.y192{bottom:230.344267pt;}
.y1a6{bottom:231.762933pt;}
.y120{bottom:232.560400pt;}
.y170{bottom:232.561733pt;}
.y93{bottom:232.563600pt;}
.y1c9{bottom:234.344267pt;}
.y68{bottom:235.761733pt;}
.y160{bottom:235.942933pt;}
.y41{bottom:237.362933pt;}
.y19{bottom:238.708400pt;}
.ydf{bottom:239.273333pt;}
.yfe{bottom:239.843333pt;}
.yba{bottom:239.944267pt;}
.y13d{bottom:245.361733pt;}
.y86{bottom:246.163067pt;}
.y1a5{bottom:247.762933pt;}
.y191{bottom:247.944267pt;}
.y92{bottom:248.563600pt;}
.y11f{bottom:250.160533pt;}
.y16f{bottom:250.161733pt;}
.y1c8{bottom:250.344267pt;}
.y67{bottom:253.361733pt;}
.y15f{bottom:253.542933pt;}
.y18{bottom:254.708400pt;}
.y40{bottom:254.963067pt;}
.yde{bottom:255.273333pt;}
.yb9{bottom:257.544267pt;}
.y13c{bottom:262.961733pt;}
.yfd{bottom:263.640800pt;}
.y85{bottom:263.762933pt;}
.y190{bottom:265.544267pt;}
.y1c7{bottom:266.344267pt;}
.y11e{bottom:267.760400pt;}
.y16e{bottom:267.761733pt;}
.y17{bottom:270.708400pt;}
.y66{bottom:270.961733pt;}
.y15e{bottom:271.142933pt;}
.y3f{bottom:272.562933pt;}
.yb8{bottom:275.144267pt;}
.y1a4{bottom:279.762933pt;}
.y13b{bottom:280.561733pt;}
.y84{bottom:281.362933pt;}
.y1c6{bottom:282.344267pt;}
.y18f{bottom:283.144267pt;}
.ydd{bottom:283.583867pt;}
.y11d{bottom:285.360533pt;}
.y16d{bottom:285.361733pt;}
.yfc{bottom:287.438267pt;}
.y16{bottom:287.653333pt;}
.y65{bottom:288.561733pt;}
.y15d{bottom:288.742933pt;}
.y3e{bottom:290.163067pt;}
.yb7{bottom:292.744267pt;}
.y1a3{bottom:295.762933pt;}
.y13a{bottom:298.161733pt;}
.y1c5{bottom:298.344267pt;}
.y83{bottom:298.963067pt;}
.y18e{bottom:300.744267pt;}
.y11c{bottom:302.960533pt;}
.y16c{bottom:302.961733pt;}
.ydc{bottom:304.963467pt;}
.y64{bottom:306.161733pt;}
.y15c{bottom:306.342933pt;}
.y3d{bottom:307.762933pt;}
.yb6{bottom:310.344267pt;}
.y15{bottom:311.212400pt;}
.yfb{bottom:311.235733pt;}
.y1a2{bottom:311.762933pt;}
.y1c4{bottom:314.344267pt;}
.y139{bottom:315.761733pt;}
.y82{bottom:316.562933pt;}
.y18d{bottom:318.344267pt;}
.y11b{bottom:320.560400pt;}
.y16b{bottom:320.561733pt;}
.y63{bottom:323.761733pt;}
.y15b{bottom:323.942933pt;}
.y3c{bottom:325.362933pt;}
.y14{bottom:327.212400pt;}
.y1a1{bottom:327.762933pt;}
.yb5{bottom:327.944267pt;}
.y1c3{bottom:330.344267pt;}
.y138{bottom:333.361733pt;}
.y78{bottom:334.163067pt;}
.yfa{bottom:335.033200pt;}
.y18c{bottom:335.944267pt;}
.y11a{bottom:338.160533pt;}
.ydb{bottom:340.163467pt;}
.y62{bottom:341.361733pt;}
.y15a{bottom:341.542933pt;}
.y3b{bottom:342.963067pt;}
.y1a0{bottom:343.762933pt;}
.yb4{bottom:345.544267pt;}
.y1c2{bottom:346.344267pt;}
.y13{bottom:349.079067pt;}
.y137{bottom:350.961733pt;}
.y81{bottom:351.762933pt;}
.y18b{bottom:353.544267pt;}
.y16a{bottom:355.761733pt;}
.yda{bottom:357.763467pt;}
.yf9{bottom:358.830667pt;}
.y61{bottom:358.961733pt;}
.y159{bottom:359.142933pt;}
.y19f{bottom:359.762933pt;}
.y3a{bottom:360.562933pt;}
.y1c1{bottom:362.344267pt;}
.yb3{bottom:363.144267pt;}
.y12{bottom:365.079067pt;}
.y136{bottom:368.561733pt;}
.y77{bottom:369.362933pt;}
.y18a{bottom:371.144267pt;}
.y169{bottom:371.761733pt;}
.y119{bottom:373.360533pt;}
.yd9{bottom:375.363467pt;}
.y19e{bottom:375.762933pt;}
.y39{bottom:378.163067pt;}
.y1c0{bottom:378.344267pt;}
.yb2{bottom:380.744267pt;}
.y11{bottom:381.079067pt;}
.yf8{bottom:382.628267pt;}
.y135{bottom:386.161733pt;}
.y76{bottom:386.963067pt;}
.y189{bottom:388.744267pt;}
.y118{bottom:389.360533pt;}
.y19d{bottom:391.762933pt;}
.yd8{bottom:392.963467pt;}
.y60{bottom:394.161733pt;}
.y158{bottom:394.342933pt;}
.y1bf{bottom:394.344267pt;}
.y38{bottom:395.762933pt;}
.y10{bottom:397.079067pt;}
.yb1{bottom:398.344267pt;}
.y134{bottom:403.761733pt;}
.y75{bottom:404.562933pt;}
.y117{bottom:405.360533pt;}
.y188{bottom:406.344267pt;}
.yf7{bottom:406.425733pt;}
.y19c{bottom:407.762933pt;}
.y5f{bottom:410.161733pt;}
.y157{bottom:410.342933pt;}
.y1be{bottom:410.344267pt;}
.yd7{bottom:410.563467pt;}
.yf{bottom:413.079067pt;}
.y37{bottom:413.362933pt;}
.yb0{bottom:415.944267pt;}
.y116{bottom:421.360533pt;}
.y133{bottom:421.361733pt;}
.y74{bottom:422.163067pt;}
.y19b{bottom:423.762933pt;}
.y187{bottom:423.944267pt;}
.y5e{bottom:426.161733pt;}
.y156{bottom:426.342933pt;}
.y1bd{bottom:426.344267pt;}
.ye{bottom:429.079067pt;}
.yf6{bottom:430.223200pt;}
.y36{bottom:430.963067pt;}
.yaf{bottom:433.544267pt;}
.y115{bottom:437.360533pt;}
.y132{bottom:438.961733pt;}
.y73{bottom:439.762933pt;}
.y186{bottom:441.544267pt;}
.y5d{bottom:442.161733pt;}
.y155{bottom:442.342933pt;}
.y1bc{bottom:442.344267pt;}
.yd{bottom:445.079067pt;}
.yd6{bottom:445.763467pt;}
.y35{bottom:448.562933pt;}
.yae{bottom:451.144267pt;}
.y114{bottom:453.360533pt;}
.yf5{bottom:454.020667pt;}
.y72{bottom:457.362933pt;}
.y154{bottom:458.342933pt;}
.y1bb{bottom:458.344267pt;}
.y185{bottom:459.144267pt;}
.yd5{bottom:461.763467pt;}
.yc{bottom:462.023867pt;}
.y34{bottom:466.163067pt;}
.yad{bottom:468.744267pt;}
.y113{bottom:469.360533pt;}
.y131{bottom:474.161733pt;}
.y153{bottom:474.342933pt;}
.y1ba{bottom:474.344267pt;}
.y71{bottom:474.963067pt;}
.y184{bottom:476.744267pt;}
.yf4{bottom:477.818133pt;}
.y33{bottom:483.763067pt;}
.y112{bottom:485.360533pt;}
.yb{bottom:485.582933pt;}
.yd4{bottom:485.764667pt;}
.yac{bottom:486.344267pt;}
.y130{bottom:490.161733pt;}
.y1b9{bottom:490.344267pt;}
.y5c{bottom:492.562933pt;}
.y183{bottom:494.344267pt;}
.y152{bottom:498.344267pt;}
.y32{bottom:501.362933pt;}
.ya{bottom:501.582933pt;}
.yf3{bottom:501.615600pt;}
.yd3{bottom:503.364667pt;}
.yab{bottom:503.944267pt;}
.y12f{bottom:506.161733pt;}
.y1b8{bottom:506.344267pt;}
.y111{bottom:509.361733pt;}
.y70{bottom:510.163067pt;}
.y182{bottom:511.944267pt;}
.y151{bottom:515.944267pt;}
.y31{bottom:518.962933pt;}
.yd2{bottom:520.964667pt;}
.yaa{bottom:521.544267pt;}
.y12e{bottom:522.161733pt;}
.y1b7{bottom:522.344267pt;}
.yf2{bottom:525.413067pt;}
.y110{bottom:526.961733pt;}
.y5b{bottom:527.763067pt;}
.y150{bottom:533.544267pt;}
.y9{bottom:535.182933pt;}
.y30{bottom:536.562933pt;}
.y12d{bottom:538.161733pt;}
.y181{bottom:538.344267pt;}
.y5a{bottom:545.362933pt;}
.yd1{bottom:547.364667pt;}
.ya9{bottom:547.944267pt;}
.yf1{bottom:549.210667pt;}
.y14f{bottom:551.144267pt;}
.y8{bottom:552.782933pt;}
.y12c{bottom:554.161733pt;}
.y2f{bottom:554.163067pt;}
.y1b6{bottom:554.344267pt;}
.y10f{bottom:562.161733pt;}
.y59{bottom:562.962933pt;}
.y14e{bottom:568.744267pt;}
.y12b{bottom:570.161733pt;}
.y1b5{bottom:570.344267pt;}
.y7{bottom:570.382933pt;}
.y2e{bottom:571.763067pt;}
.yf0{bottom:573.008000pt;}
.y180{bottom:573.544267pt;}
.y1d5{bottom:574.344267pt;}
.y10e{bottom:578.161733pt;}
.y58{bottom:580.562933pt;}
.yd0{bottom:582.564667pt;}
.ya8{bottom:583.144267pt;}
.y12a{bottom:586.161733pt;}
.y14d{bottom:586.344267pt;}
.y6{bottom:587.982933pt;}
.y2d{bottom:589.362933pt;}
.y1d4{bottom:590.344267pt;}
.y17f{bottom:591.144267pt;}
.y10d{bottom:594.161733pt;}
.yef{bottom:596.805600pt;}
.y57{bottom:598.163067pt;}
.ycf{bottom:600.164667pt;}
.ya7{bottom:600.744267pt;}
.y129{bottom:602.161733pt;}
.y1b4{bottom:602.344267pt;}
.y14c{bottom:603.944267pt;}
.y2c{bottom:606.962933pt;}
.y17e{bottom:608.744267pt;}
.y10c{bottom:610.161733pt;}
.y1d3{bottom:615.144267pt;}
.y56{bottom:615.763067pt;}
.yce{bottom:617.764667pt;}
.y128{bottom:618.161733pt;}
.ya6{bottom:618.344267pt;}
.yee{bottom:620.603067pt;}
.y14b{bottom:621.544267pt;}
.y5{bottom:623.182933pt;}
.y2b{bottom:624.562933pt;}
.y10b{bottom:626.161733pt;}
.y17d{bottom:626.344267pt;}
.y55{bottom:633.362933pt;}
.y1b3{bottom:634.344267pt;}
.ycd{bottom:635.364667pt;}
.ya5{bottom:635.944267pt;}
.y14a{bottom:639.144267pt;}
.y10a{bottom:642.161733pt;}
.y2a{bottom:642.163067pt;}
.y17c{bottom:643.944267pt;}
.yed{bottom:644.400533pt;}
.y4{bottom:648.342000pt;}
.y1b2{bottom:650.344267pt;}
.y54{bottom:650.962933pt;}
.ycc{bottom:652.964667pt;}
.ya4{bottom:653.544267pt;}
.y149{bottom:656.744267pt;}
.y109{bottom:658.161733pt;}
.y29{bottom:659.763067pt;}
.y17b{bottom:661.544267pt;}
.y1b1{bottom:666.344267pt;}
.yec{bottom:668.198000pt;}
.y53{bottom:668.562933pt;}
.y3{bottom:669.942000pt;}
.ycb{bottom:670.564667pt;}
.ya3{bottom:671.144267pt;}
.y108{bottom:674.161733pt;}
.y148{bottom:674.344267pt;}
.y28{bottom:677.362933pt;}
.y17a{bottom:679.144267pt;}
.y1b0{bottom:682.344267pt;}
.y52{bottom:686.163067pt;}
.yca{bottom:688.164667pt;}
.ya2{bottom:688.744267pt;}
.y107{bottom:690.161733pt;}
.y147{bottom:691.944267pt;}
.yeb{bottom:691.995467pt;}
.y27{bottom:694.962933pt;}
.y1af{bottom:698.344267pt;}
.y51{bottom:703.763067pt;}
.yc9{bottom:705.764667pt;}
.y106{bottom:706.161733pt;}
.ya1{bottom:706.344267pt;}
.y146{bottom:709.544267pt;}
.y26{bottom:712.562933pt;}
.y179{bottom:714.344267pt;}
.yea{bottom:715.792933pt;}
.y50{bottom:721.362933pt;}
.yc8{bottom:723.364800pt;}
.ya0{bottom:723.944267pt;}
.y145{bottom:727.144267pt;}
.y25{bottom:730.163067pt;}
.y178{bottom:730.344267pt;}
.y4f{bottom:738.962933pt;}
.ye9{bottom:739.590533pt;}
.y9f{bottom:741.544267pt;}
.y177{bottom:746.344267pt;}
.y24{bottom:747.763067pt;}
.y4e{bottom:756.562933pt;}
.yc7{bottom:758.564667pt;}
.y9e{bottom:759.144267pt;}
.y144{bottom:762.344267pt;}
.ye8{bottom:763.388000pt;}
.y23{bottom:765.362933pt;}
.y4d{bottom:774.163067pt;}
.yc6{bottom:774.564667pt;}
.y143{bottom:778.344267pt;}
.y22{bottom:782.962933pt;}
.ye7{bottom:787.185467pt;}
.yc5{bottom:790.564667pt;}
.y4c{bottom:791.763067pt;}
.y9d{bottom:794.344267pt;}
.ye6{bottom:803.185467pt;}
.y21{bottom:809.362933pt;}
.y9c{bottom:810.344267pt;}
.y20{bottom:839.599067pt;}
.y4b{bottom:840.580400pt;}
.ha{height:27.998925pt;}
.h2{height:28.501333pt;}
.hb{height:32.064000pt;}
.hf{height:35.520000pt;}
.h4{height:35.626667pt;}
.he{height:38.592000pt;}
.h8{height:39.072000pt;}
.h9{height:39.189333pt;}
.h7{height:39.552000pt;}
.hc{height:42.383381pt;}
.h6{height:42.880000pt;}
.hd{height:47.034944pt;}
.h5{height:47.168000pt;}
.h3{height:47.578667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:86.929067pt;}
.x1{left:94.488133pt;}
.x11{left:99.953733pt;}
.xa{left:102.047333pt;}
.x28{left:102.959733pt;}
.x12{left:106.900400pt;}
.xd{left:109.606267pt;}
.x2{left:113.329333pt;}
.x1b{left:114.459467pt;}
.x24{left:116.539467pt;}
.x27{left:118.652933pt;}
.x25{left:119.712800pt;}
.x4{left:126.169067pt;}
.x1a{left:127.140133pt;}
.x26{left:131.352533pt;}
.x23{left:132.279200pt;}
.x22{left:134.432533pt;}
.xb{left:136.063067pt;}
.xe{left:143.622000pt;}
.x10{left:158.740267pt;}
.x2d{left:173.858267pt;}
.x2f{left:181.417333pt;}
.x13{left:189.699867pt;}
.x14{left:196.906400pt;}
.x1c{left:204.465333pt;}
.x29{left:210.991867pt;}
.x3{left:255.549733pt;}
.x2a{left:268.513067pt;}
.x15{left:301.483600pt;}
.x1d{left:309.042667pt;}
.x16{left:310.483733pt;}
.x1e{left:318.042667pt;}
.x17{left:404.894000pt;}
.x2b{left:406.677200pt;}
.x8{left:407.806133pt;}
.x18{left:411.347200pt;}
.x1f{left:412.453067pt;}
.x20{left:418.906267pt;}
.x7{left:420.459733pt;}
.x6{left:438.339333pt;}
.x5{left:457.545733pt;}
.x2c{left:489.826800pt;}
.x19{left:495.835867pt;}
.x21{left:503.394933pt;}
.x30{left:537.976133pt;}
.x2e{left:539.750800pt;}
.xf{left:542.713333pt;}
.xc{left:544.488133pt;}
}




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