
    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_33c5021c66a13519d6192f28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171000;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_17a0d5b3298c172a86334189.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.171000;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_3e5badbc0991f91ab29909bf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7f3bbaa4d082e9cf77e54912.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_263e58ae318af9ae376104d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_763c508d7254e3586cd4fda5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_63c93ed1301bb9b94a5ee778.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_4cdb0a6cbdb6e0df1b65423d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-41.736000px;}
.ws0{word-spacing:-30.024000px;}
.ws17{word-spacing:-18.348000px;}
.wsbe{word-spacing:-5.976000px;}
.ws4b{word-spacing:-5.808000px;}
.ws83{word-spacing:-4.818000px;}
.wsb2{word-spacing:-4.680000px;}
.ws8f{word-spacing:-4.356000px;}
.ws81{word-spacing:-4.092000px;}
.ws40{word-spacing:-3.828000px;}
.ws53{word-spacing:-3.762000px;}
.ws88{word-spacing:-3.564000px;}
.ws87{word-spacing:-3.234000px;}
.ws2c{word-spacing:-3.168000px;}
.ws31{word-spacing:-3.102000px;}
.wsda{word-spacing:-2.970000px;}
.ws77{word-spacing:-2.904000px;}
.ws4{word-spacing:-2.838000px;}
.wsdb{word-spacing:-2.772000px;}
.wsc8{word-spacing:-2.664000px;}
.ws84{word-spacing:-2.574000px;}
.wsb{word-spacing:-2.508000px;}
.ws4d{word-spacing:-2.310000px;}
.ws2b{word-spacing:-2.178000px;}
.wsae{word-spacing:-2.112000px;}
.wse7{word-spacing:-2.046000px;}
.ws68{word-spacing:-1.980000px;}
.wsa3{word-spacing:-1.914000px;}
.wsb6{word-spacing:-1.872000px;}
.wsa5{word-spacing:-1.848000px;}
.ws44{word-spacing:-1.782000px;}
.wsed{word-spacing:-1.716000px;}
.ws5c{word-spacing:-1.650000px;}
.wsf3{word-spacing:-1.584000px;}
.wse3{word-spacing:-1.452000px;}
.ws28{word-spacing:-1.386000px;}
.ws74{word-spacing:-1.320000px;}
.wsdd{word-spacing:-1.254000px;}
.ws73{word-spacing:-1.122000px;}
.ws27{word-spacing:-0.990000px;}
.wsec{word-spacing:-0.924000px;}
.ws4a{word-spacing:-0.858000px;}
.ws5{word-spacing:-0.792000px;}
.ws20{word-spacing:-0.726000px;}
.ws85{word-spacing:-0.660000px;}
.wscf{word-spacing:-0.648000px;}
.ws7d{word-spacing:-0.594000px;}
.wsa7{word-spacing:-0.528000px;}
.wsd6{word-spacing:-0.462000px;}
.ws3d{word-spacing:-0.330000px;}
.ws14{word-spacing:-0.264000px;}
.ws69{word-spacing:-0.198000px;}
.ws76{word-spacing:-0.132000px;}
.ws13{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.wsc4{word-spacing:0.072000px;}
.wsd5{word-spacing:0.132000px;}
.wseb{word-spacing:0.198000px;}
.ws7b{word-spacing:0.264000px;}
.wscd{word-spacing:0.288000px;}
.ws66{word-spacing:0.330000px;}
.ws9a{word-spacing:0.462000px;}
.wsd9{word-spacing:0.528000px;}
.ws30{word-spacing:0.594000px;}
.wsf2{word-spacing:0.660000px;}
.ws1a{word-spacing:0.726000px;}
.ws19{word-spacing:0.792000px;}
.ws43{word-spacing:0.858000px;}
.ws6e{word-spacing:1.056000px;}
.wscb{word-spacing:1.080000px;}
.ws25{word-spacing:1.254000px;}
.ws54{word-spacing:1.320000px;}
.ws11{word-spacing:1.386000px;}
.wsd4{word-spacing:1.518000px;}
.ws3c{word-spacing:1.584000px;}
.wsf0{word-spacing:1.716000px;}
.ws8c{word-spacing:1.782000px;}
.ws58{word-spacing:1.848000px;}
.wsee{word-spacing:2.046000px;}
.ws4f{word-spacing:2.112000px;}
.wsdc{word-spacing:2.178000px;}
.ws92{word-spacing:2.310000px;}
.wsf1{word-spacing:2.376000px;}
.ws99{word-spacing:2.508000px;}
.ws6{word-spacing:2.574000px;}
.ws72{word-spacing:2.640000px;}
.ws9c{word-spacing:2.706000px;}
.wsef{word-spacing:2.838000px;}
.ws18{word-spacing:2.904000px;}
.wsb7{word-spacing:3.024000px;}
.ws64{word-spacing:3.102000px;}
.ws16{word-spacing:3.366000px;}
.wsb0{word-spacing:3.432000px;}
.ws95{word-spacing:3.498000px;}
.ws1d{word-spacing:3.564000px;}
.wsd1{word-spacing:3.762000px;}
.ws6a{word-spacing:3.828000px;}
.ws46{word-spacing:3.960000px;}
.wsd8{word-spacing:4.026000px;}
.ws10{word-spacing:4.092000px;}
.ws6b{word-spacing:4.158000px;}
.wse5{word-spacing:4.224000px;}
.ws7c{word-spacing:4.356000px;}
.wsac{word-spacing:4.422000px;}
.ws15{word-spacing:4.488000px;}
.ws9b{word-spacing:4.554000px;}
.ws5a{word-spacing:4.818000px;}
.wsd0{word-spacing:4.824000px;}
.ws63{word-spacing:4.950000px;}
.wsb1{word-spacing:4.968000px;}
.wse{word-spacing:5.016000px;}
.wsbc{word-spacing:5.040000px;}
.ws39{word-spacing:5.082000px;}
.wsa{word-spacing:5.214000px;}
.wse2{word-spacing:5.280000px;}
.ws96{word-spacing:5.346000px;}
.wsc9{word-spacing:5.688000px;}
.ws7{word-spacing:5.808000px;}
.ws9{word-spacing:5.940000px;}
.ws91{word-spacing:6.006000px;}
.wsd7{word-spacing:6.072000px;}
.ws9f{word-spacing:6.138000px;}
.ws62{word-spacing:6.204000px;}
.wsad{word-spacing:6.270000px;}
.wsa8{word-spacing:6.402000px;}
.ws4c{word-spacing:6.468000px;}
.ws26{word-spacing:6.600000px;}
.ws7f{word-spacing:6.798000px;}
.ws51{word-spacing:6.864000px;}
.ws4e{word-spacing:6.930000px;}
.wsf{word-spacing:6.996000px;}
.ws35{word-spacing:7.194000px;}
.ws12{word-spacing:7.260000px;}
.wsd3{word-spacing:7.326000px;}
.ws56{word-spacing:7.458000px;}
.ws67{word-spacing:7.524000px;}
.ws2d{word-spacing:7.590000px;}
.wsbb{word-spacing:7.632000px;}
.wsc{word-spacing:7.656000px;}
.wse1{word-spacing:7.722000px;}
.ws23{word-spacing:7.788000px;}
.ws24{word-spacing:7.854000px;}
.ws37{word-spacing:7.920000px;}
.ws70{word-spacing:7.986000px;}
.wsc3{word-spacing:7.992000px;}
.wsb4{word-spacing:8.064000px;}
.wse4{word-spacing:8.118000px;}
.ws2f{word-spacing:8.184000px;}
.wsd2{word-spacing:8.250000px;}
.ws49{word-spacing:8.382000px;}
.ws8{word-spacing:8.448000px;}
.ws1f{word-spacing:8.646000px;}
.ws52{word-spacing:8.712000px;}
.ws3f{word-spacing:8.844000px;}
.wsbd{word-spacing:8.928000px;}
.wse9{word-spacing:9.042000px;}
.ws38{word-spacing:9.174000px;}
.ws61{word-spacing:9.240000px;}
.wsc2{word-spacing:9.288000px;}
.ws5f{word-spacing:9.306000px;}
.wsa0{word-spacing:9.438000px;}
.wsa4{word-spacing:9.570000px;}
.ws71{word-spacing:9.636000px;}
.ws78{word-spacing:9.834000px;}
.ws75{word-spacing:9.900000px;}
.wsb8{word-spacing:9.936000px;}
.ws3a{word-spacing:9.966000px;}
.ws79{word-spacing:10.098000px;}
.ws22{word-spacing:10.362000px;}
.ws8d{word-spacing:10.428000px;}
.wsd{word-spacing:10.494000px;}
.ws80{word-spacing:10.692000px;}
.wscc{word-spacing:10.728000px;}
.ws6c{word-spacing:10.824000px;}
.ws3{word-spacing:10.890000px;}
.ws9d{word-spacing:11.088000px;}
.wsb9{word-spacing:11.448000px;}
.ws3e{word-spacing:11.616000px;}
.ws47{word-spacing:11.814000px;}
.wsa2{word-spacing:11.880000px;}
.ws33{word-spacing:11.946000px;}
.wsa1{word-spacing:12.012000px;}
.ws59{word-spacing:12.342000px;}
.wsbf{word-spacing:12.456000px;}
.ws90{word-spacing:12.804000px;}
.ws8a{word-spacing:12.936000px;}
.wsaf{word-spacing:13.266000px;}
.ws9e{word-spacing:13.332000px;}
.ws7e{word-spacing:13.530000px;}
.wsca{word-spacing:13.752000px;}
.ws6f{word-spacing:13.860000px;}
.ws2e{word-spacing:13.926000px;}
.wsb5{word-spacing:14.040000px;}
.ws8b{word-spacing:14.322000px;}
.wsc0{word-spacing:14.400000px;}
.ws86{word-spacing:14.454000px;}
.ws7a{word-spacing:14.520000px;}
.wse6{word-spacing:14.784000px;}
.ws97{word-spacing:14.850000px;}
.wse0{word-spacing:14.982000px;}
.ws1c{word-spacing:15.114000px;}
.ws5b{word-spacing:15.180000px;}
.ws2a{word-spacing:15.378000px;}
.wsea{word-spacing:15.642000px;}
.wsf4{word-spacing:15.972000px;}
.ws93{word-spacing:16.302000px;}
.ws29{word-spacing:16.698000px;}
.wsc7{word-spacing:16.776000px;}
.ws41{word-spacing:17.226000px;}
.ws42{word-spacing:17.292000px;}
.ws50{word-spacing:17.556000px;}
.ws3b{word-spacing:17.754000px;}
.ws48{word-spacing:18.216000px;}
.ws60{word-spacing:18.282000px;}
.ws6d{word-spacing:18.744000px;}
.wsa9{word-spacing:18.876000px;}
.ws1e{word-spacing:19.668000px;}
.ws32{word-spacing:20.592000px;}
.ws89{word-spacing:21.252000px;}
.ws21{word-spacing:21.318000px;}
.wsa6{word-spacing:21.516000px;}
.ws8e{word-spacing:21.780000px;}
.wse8{word-spacing:21.846000px;}
.wsc1{word-spacing:22.320000px;}
.wsdf{word-spacing:22.506000px;}
.ws5d{word-spacing:22.836000px;}
.wsde{word-spacing:23.496000px;}
.wsaa{word-spacing:24.288000px;}
.ws34{word-spacing:25.080000px;}
.ws57{word-spacing:25.278000px;}
.wsba{word-spacing:25.344000px;}
.wsc6{word-spacing:25.992000px;}
.ws82{word-spacing:27.192000px;}
.wsce{word-spacing:27.288000px;}
.ws45{word-spacing:27.918000px;}
.wsb3{word-spacing:28.584000px;}
.ws94{word-spacing:29.172000px;}
.ws65{word-spacing:29.502000px;}
.ws98{word-spacing:31.680000px;}
.ws5e{word-spacing:32.538000px;}
.ws55{word-spacing:33.396000px;}
.ws36{word-spacing:36.036000px;}
.wsab{word-spacing:36.168000px;}
.ws1b{word-spacing:41.778000px;}
.wsc5{word-spacing:98.640000px;}
._1d{margin-left:-1378.293000px;}
._32{margin-left:-1289.274600px;}
._c{margin-left:-1284.057600px;}
._1b{margin-left:-1255.435200px;}
._14{margin-left:-1231.888200px;}
._33{margin-left:-1148.556000px;}
._31{margin-left:-1107.535800px;}
._19{margin-left:-952.566600px;}
._4{margin-left:-861.198600px;}
._10{margin-left:-18.162000px;}
._0{margin-left:-7.359000px;}
._2{margin-left:-5.335200px;}
._f{margin-left:-4.155600px;}
._9{margin-left:-2.516400px;}
._1{margin-left:-1.512000px;}
._5{width:1.320000px;}
._6{width:2.428800px;}
._12{width:3.603600px;}
._8{width:4.765200px;}
._7{width:5.920200px;}
._a{width:7.075200px;}
._b{width:9.009600px;}
._e{width:10.672200px;}
._23{width:11.781000px;}
._18{width:12.876600px;}
._11{width:14.058000px;}
._16{width:15.523200px;}
._1a{width:16.638600px;}
._2c{width:18.079200px;}
._17{width:19.648800px;}
._15{width:20.988000px;}
._24{width:23.073600px;}
._d{width:24.103200px;}
._26{width:25.594800px;}
._20{width:26.637600px;}
._1f{width:30.031800px;}
._1c{width:31.620600px;}
._30{width:32.736000px;}
._2f{width:35.620200px;}
._21{width:36.940200px;}
._2b{width:38.040600px;}
._2d{width:40.118400px;}
._2e{width:41.204400px;}
._2a{width:44.114400px;}
._13{width:50.193000px;}
._1e{width:66.376200px;}
._29{width:101.535000px;}
._35{width:164.670000px;}
._34{width:197.670000px;}
._28{width:495.296400px;}
._3{width:607.775400px;}
._27{width:1964.141400px;}
._22{width:3951.801000px;}
._25{width:4200.705000px;}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(142,143,141);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:141.000000px;}
.y0{bottom:0.000000px;}
.y189{bottom:53.999100px;}
.y3{bottom:54.000000px;}
.y18f{bottom:54.000300px;}
.y1f{bottom:55.918050px;}
.y55{bottom:58.500000px;}
.y45{bottom:58.917900px;}
.y3d{bottom:58.918350px;}
.y6{bottom:59.520450px;}
.y172{bottom:59.772300px;}
.y5a{bottom:60.000000px;}
.y99{bottom:61.500000px;}
.y54{bottom:61.500150px;}
.y88{bottom:62.289000px;}
.y98{bottom:62.598300px;}
.y97{bottom:62.598600px;}
.y1b5{bottom:63.989850px;}
.y188{bottom:73.799100px;}
.y18e{bottom:73.800300px;}
.ydc{bottom:78.660600px;}
.y44{bottom:78.717900px;}
.y3c{bottom:78.718350px;}
.y171{bottom:79.572300px;}
.y59{bottom:79.800000px;}
.y5{bottom:81.120450px;}
.yc0{bottom:81.300000px;}
.y53{bottom:81.300150px;}
.y87{bottom:82.089000px;}
.y96{bottom:82.398600px;}
.y1b4{bottom:83.789850px;}
.y1a0{bottom:84.164400px;}
.yfa{bottom:85.067850px;}
.y112{bottom:93.003300px;}
.y187{bottom:93.599100px;}
.y145{bottom:97.757550px;}
.y43{bottom:98.517900px;}
.y170{bottom:99.372300px;}
.y58{bottom:99.600000px;}
.ybf{bottom:101.100000px;}
.y52{bottom:101.100150px;}
.y86{bottom:101.889000px;}
.y95{bottom:102.198600px;}
.y4{bottom:102.720450px;}
.y1b3{bottom:103.589850px;}
.y19f{bottom:103.964400px;}
.y11b{bottom:105.748500px;}
.yf9{bottom:106.667700px;}
.y111{bottom:112.803300px;}
.y144{bottom:117.557550px;}
.y3b{bottom:118.318350px;}
.y16f{bottom:119.172300px;}
.y57{bottom:119.400000px;}
.ybe{bottom:120.900000px;}
.y51{bottom:120.900150px;}
.y85{bottom:121.689000px;}
.y94{bottom:121.998600px;}
.y1b2{bottom:123.389850px;}
.yfc{bottom:128.267700px;}
.y1e5{bottom:129.413100px;}
.y7{bottom:132.484350px;}
.y110{bottom:132.603300px;}
.y42{bottom:138.117900px;}
.y3a{bottom:138.118350px;}
.ybd{bottom:140.700000px;}
.y50{bottom:140.700150px;}
.y93{bottom:141.798600px;}
.y1e4{bottom:149.213100px;}
.yf8{bottom:149.867700px;}
.y10f{bottom:152.403300px;}
.y143{bottom:157.157550px;}
.y41{bottom:157.917900px;}
.y56{bottom:159.000000px;}
.ybc{bottom:160.500000px;}
.ya1{bottom:160.500150px;}
.y7d{bottom:161.598450px;}
.y84{bottom:161.598600px;}
.y60{bottom:162.371700px;}
.y1b1{bottom:170.906850px;}
.yf7{bottom:171.467700px;}
.y10e{bottom:172.203300px;}
.y142{bottom:176.957550px;}
.y39{bottom:177.718350px;}
.yda{bottom:177.849450px;}
.yc1{bottom:180.300000px;}
.y4f{bottom:180.300150px;}
.y1cd{bottom:180.807450px;}
.y7c{bottom:181.398450px;}
.y83{bottom:181.398600px;}
.y1e3{bottom:188.813100px;}
.y1b0{bottom:190.706850px;}
.y10d{bottom:192.003300px;}
.yf6{bottom:193.067850px;}
.y141{bottom:196.757550px;}
.y40{bottom:197.517900px;}
.y38{bottom:197.518350px;}
.yd9{bottom:197.649450px;}
.ybb{bottom:200.100000px;}
.y4e{bottom:200.100150px;}
.y186{bottom:200.606850px;}
.y1cc{bottom:200.607450px;}
.y7b{bottom:201.198450px;}
.y82{bottom:201.198600px;}
.y5f{bottom:201.971850px;}
.y1e2{bottom:208.613100px;}
.y1af{bottom:210.506850px;}
.yf5{bottom:214.667700px;}
.y140{bottom:216.557550px;}
.y3f{bottom:217.317900px;}
.y37{bottom:217.318350px;}
.yd8{bottom:217.449300px;}
.yba{bottom:219.900000px;}
.y4d{bottom:219.900150px;}
.y185{bottom:220.406700px;}
.y16e{bottom:220.406850px;}
.y1cb{bottom:220.407450px;}
.y7a{bottom:220.998450px;}
.y81{bottom:220.998600px;}
.y10c{bottom:221.375250px;}
.y5e{bottom:221.771850px;}
.y1ae{bottom:230.306850px;}
.yf4{bottom:236.267700px;}
.y13f{bottom:236.357550px;}
.y3e{bottom:237.117900px;}
.y36{bottom:237.118350px;}
.yd7{bottom:237.249450px;}
.yb9{bottom:239.700000px;}
.ya0{bottom:239.700150px;}
.y184{bottom:240.206700px;}
.y16d{bottom:240.206850px;}
.y1ca{bottom:240.207450px;}
.y79{bottom:240.798450px;}
.y80{bottom:240.798600px;}
.y10b{bottom:241.175250px;}
.y5d{bottom:241.571850px;}
.y1e1{bottom:248.213100px;}
.y1ad{bottom:250.106850px;}
.y13e{bottom:256.157550px;}
.yd6{bottom:257.049450px;}
.yf3{bottom:257.867700px;}
.yb8{bottom:259.500000px;}
.y4c{bottom:259.500150px;}
.y2{bottom:259.629900px;}
.y183{bottom:260.006700px;}
.y16c{bottom:260.006850px;}
.y1c9{bottom:260.007450px;}
.y78{bottom:260.598450px;}
.y7f{bottom:260.598600px;}
.y10a{bottom:260.975250px;}
.y46{bottom:269.456550px;}
.y1ac{bottom:269.906850px;}
.y13d{bottom:275.957550px;}
.yd5{bottom:276.849450px;}
.yb7{bottom:279.300000px;}
.y9f{bottom:279.300150px;}
.yf2{bottom:279.467700px;}
.y182{bottom:279.806700px;}
.y16b{bottom:279.806850px;}
.y1c8{bottom:279.807450px;}
.y77{bottom:280.398450px;}
.y35{bottom:280.398600px;}
.y109{bottom:280.775250px;}
.y1e0{bottom:287.813100px;}
.y1ab{bottom:289.706850px;}
.y1{bottom:289.771650px;}
.y13c{bottom:295.757550px;}
.yd4{bottom:296.649450px;}
.yb6{bottom:299.100000px;}
.y9e{bottom:299.100150px;}
.y18d{bottom:299.606700px;}
.y16a{bottom:299.606850px;}
.y76{bottom:300.198450px;}
.y34{bottom:300.198600px;}
.y108{bottom:300.575250px;}
.yfb{bottom:301.067700px;}
.y1df{bottom:307.613100px;}
.y1d{bottom:309.506850px;}
.y13b{bottom:315.557550px;}
.yd3{bottom:316.449450px;}
.y10{bottom:318.822150px;}
.yb5{bottom:318.900000px;}
.y9d{bottom:318.900150px;}
.y181{bottom:319.406700px;}
.y169{bottom:319.406850px;}
.y1c7{bottom:319.407450px;}
.y75{bottom:319.998450px;}
.y33{bottom:319.998600px;}
.y107{bottom:320.375250px;}
.yf1{bottom:322.667700px;}
.y1de{bottom:327.413100px;}
.y1c{bottom:329.306850px;}
.y13a{bottom:335.357550px;}
.yd2{bottom:336.249450px;}
.yb4{bottom:338.700000px;}
.y9c{bottom:338.700150px;}
.y180{bottom:339.206700px;}
.y168{bottom:339.206850px;}
.y1c6{bottom:339.207450px;}
.y74{bottom:339.798450px;}
.y32{bottom:339.798600px;}
.y106{bottom:340.175250px;}
.yf0{bottom:344.267700px;}
.y1ea{bottom:347.213100px;}
.yf{bottom:348.480900px;}
.y1b{bottom:349.106850px;}
.y139{bottom:355.157550px;}
.yd1{bottom:356.049450px;}
.yb3{bottom:358.500000px;}
.y9b{bottom:358.500150px;}
.y17f{bottom:359.006700px;}
.y167{bottom:359.006850px;}
.y1c5{bottom:359.007450px;}
.y73{bottom:359.598450px;}
.y31{bottom:359.598600px;}
.y105{bottom:359.975250px;}
.yef{bottom:365.867700px;}
.y1dd{bottom:367.013100px;}
.y1a{bottom:368.906850px;}
.y138{bottom:374.957550px;}
.yd0{bottom:375.849450px;}
.ye{bottom:378.139500px;}
.yb2{bottom:378.300000px;}
.y9a{bottom:378.300150px;}
.y17e{bottom:378.806700px;}
.y1a2{bottom:378.806850px;}
.y1c4{bottom:378.807450px;}
.y72{bottom:379.398450px;}
.y30{bottom:379.398600px;}
.y104{bottom:379.775250px;}
.y15a{bottom:386.473350px;}
.y1dc{bottom:386.813100px;}
.yee{bottom:387.467700px;}
.y19{bottom:388.706850px;}
.y137{bottom:394.757550px;}
.ycf{bottom:395.649450px;}
.yb1{bottom:398.100000px;}
.y18c{bottom:398.606700px;}
.y166{bottom:398.606850px;}
.y1c3{bottom:398.607450px;}
.y71{bottom:399.198450px;}
.y2f{bottom:399.198600px;}
.y103{bottom:399.575250px;}
.y159{bottom:406.273200px;}
.y1db{bottom:406.613100px;}
.yd{bottom:407.798100px;}
.y18{bottom:408.506850px;}
.yed{bottom:409.067850px;}
.y148{bottom:414.557550px;}
.yce{bottom:415.449300px;}
.yaf{bottom:417.702300px;}
.y17d{bottom:418.406700px;}
.y165{bottom:418.406850px;}
.y1c2{bottom:418.407450px;}
.y2e{bottom:418.998600px;}
.y102{bottom:419.375250px;}
.y158{bottom:426.073350px;}
.y1da{bottom:426.413100px;}
.y1aa{bottom:428.306850px;}
.yec{bottom:430.667700px;}
.y136{bottom:434.357550px;}
.ycd{bottom:435.249450px;}
.yc{bottom:437.456700px;}
.yae{bottom:437.502300px;}
.y17c{bottom:438.206700px;}
.y164{bottom:438.206850px;}
.y2d{bottom:438.798600px;}
.y101{bottom:439.175250px;}
.y157{bottom:445.873200px;}
.y17{bottom:448.106850px;}
.yc2{bottom:450.262200px;}
.yeb{bottom:452.267700px;}
.y135{bottom:454.157550px;}
.ycc{bottom:455.049450px;}
.yad{bottom:457.302300px;}
.y17b{bottom:458.006700px;}
.y163{bottom:458.006850px;}
.y1c1{bottom:458.007450px;}
.y70{bottom:458.598450px;}
.y2c{bottom:458.598600px;}
.y100{bottom:458.975250px;}
.y156{bottom:465.673350px;}
.y1d9{bottom:466.013100px;}
.y11a{bottom:466.256550px;}
.yb{bottom:467.115450px;}
.y16{bottom:467.906850px;}
.yea{bottom:473.867700px;}
.y134{bottom:473.957550px;}
.yc3{bottom:474.354150px;}
.ycb{bottom:474.849450px;}
.yac{bottom:477.102300px;}
.y17a{bottom:477.806700px;}
.y162{bottom:477.806850px;}
.y1c0{bottom:477.807450px;}
.y92{bottom:478.397850px;}
.y6f{bottom:478.398450px;}
.y2b{bottom:478.398600px;}
.yff{bottom:478.775250px;}
.y127{bottom:480.534000px;}
.y155{bottom:485.473350px;}
.y1d8{bottom:485.813100px;}
.y119{bottom:486.056550px;}
.y15{bottom:487.706850px;}
.y133{bottom:493.757550px;}
.yca{bottom:494.649450px;}
.y4b{bottom:494.775150px;}
.y19e{bottom:495.249600px;}
.ye9{bottom:495.467700px;}
.ya{bottom:496.774050px;}
.yab{bottom:496.902300px;}
.y18b{bottom:497.606700px;}
.y161{bottom:497.606850px;}
.y1bf{bottom:497.607450px;}
.y91{bottom:498.197850px;}
.y6e{bottom:498.198450px;}
.y5b{bottom:498.198600px;}
.yfe{bottom:498.575250px;}
.y126{bottom:500.334000px;}
.y154{bottom:505.273200px;}
.y1d7{bottom:505.613100px;}
.y118{bottom:505.856550px;}
.y14{bottom:507.506850px;}
.y132{bottom:513.557550px;}
.yc9{bottom:514.449300px;}
.y19d{bottom:515.049600px;}
.yaa{bottom:516.702300px;}
.ye8{bottom:517.067850px;}
.y179{bottom:517.406700px;}
.y1a1{bottom:517.406850px;}
.y1be{bottom:517.407450px;}
.y6d{bottom:517.998450px;}
.y2a{bottom:517.998600px;}
.yfd{bottom:518.375250px;}
.y125{bottom:520.134000px;}
.y117{bottom:525.656550px;}
.y9{bottom:526.432800px;}
.y13{bottom:527.306850px;}
.y131{bottom:533.357550px;}
.yc8{bottom:534.249450px;}
.y4a{bottom:534.375150px;}
.y19c{bottom:534.849600px;}
.ya9{bottom:536.502300px;}
.y178{bottom:537.206700px;}
.y160{bottom:537.206850px;}
.y1bd{bottom:537.207450px;}
.y90{bottom:537.797850px;}
.y6c{bottom:537.798450px;}
.y5c{bottom:537.798600px;}
.ye7{bottom:538.667700px;}
.y124{bottom:539.934000px;}
.y153{bottom:544.873200px;}
.y1d6{bottom:545.213100px;}
.y116{bottom:545.456550px;}
.y115{bottom:545.553750px;}
.y12{bottom:547.106850px;}
.y147{bottom:553.157550px;}
.yc7{bottom:554.049450px;}
.y49{bottom:554.175150px;}
.y19b{bottom:554.649600px;}
.y8{bottom:556.091550px;}
.ya8{bottom:556.302300px;}
.y177{bottom:557.006700px;}
.y15f{bottom:557.006850px;}
.y6b{bottom:557.598450px;}
.y29{bottom:557.598600px;}
.y123{bottom:559.734000px;}
.ye6{bottom:560.267700px;}
.y152{bottom:564.673350px;}
.y1e9{bottom:565.013100px;}
.y114{bottom:565.353750px;}
.y11{bottom:566.906850px;}
.y130{bottom:572.957550px;}
.y19a{bottom:574.449600px;}
.y176{bottom:576.806700px;}
.y15e{bottom:576.806850px;}
.y1bc{bottom:576.807450px;}
.y8f{bottom:577.397850px;}
.y6a{bottom:577.398450px;}
.y28{bottom:577.398600px;}
.y122{bottom:579.534000px;}
.y151{bottom:584.473350px;}
.y1d5{bottom:584.813100px;}
.y113{bottom:585.153750px;}
.y1a9{bottom:586.706850px;}
.y12f{bottom:592.757550px;}
.yc6{bottom:593.649450px;}
.y48{bottom:593.775150px;}
.y199{bottom:594.249600px;}
.y15d{bottom:596.606850px;}
.y1bb{bottom:596.607450px;}
.y8e{bottom:597.197850px;}
.y69{bottom:597.198450px;}
.y27{bottom:597.198600px;}
.y121{bottom:599.334000px;}
.y150{bottom:604.273200px;}
.y1d4{bottom:604.613100px;}
.y1a8{bottom:606.506850px;}
.ye5{bottom:612.331950px;}
.y12e{bottom:612.557550px;}
.yc5{bottom:613.449300px;}
.y198{bottom:614.049600px;}
.ya7{bottom:615.702300px;}
.y175{bottom:616.406700px;}
.y1ba{bottom:616.407450px;}
.y68{bottom:616.998450px;}
.y26{bottom:616.998600px;}
.y120{bottom:619.134000px;}
.y14f{bottom:624.073350px;}
.y1a7{bottom:626.306850px;}
.ye4{bottom:632.131950px;}
.y146{bottom:632.357550px;}
.yc4{bottom:633.249450px;}
.y197{bottom:633.849600px;}
.ya6{bottom:635.502300px;}
.y18a{bottom:636.206700px;}
.y15c{bottom:636.206850px;}
.y1b9{bottom:636.207450px;}
.y8d{bottom:636.797850px;}
.y67{bottom:636.798450px;}
.y25{bottom:636.798600px;}
.y11f{bottom:638.934000px;}
.y14e{bottom:643.873200px;}
.y1d3{bottom:644.213100px;}
.y1a6{bottom:646.106850px;}
.ye3{bottom:651.931950px;}
.y12d{bottom:652.157550px;}
.y196{bottom:653.649600px;}
.ya5{bottom:655.302300px;}
.y174{bottom:656.006700px;}
.y15b{bottom:656.006850px;}
.y1b8{bottom:656.007450px;}
.y7e{bottom:656.598450px;}
.y24{bottom:656.598600px;}
.y11e{bottom:658.734000px;}
.y14d{bottom:663.673350px;}
.y1d2{bottom:664.013100px;}
.y1a5{bottom:665.906850px;}
.ye2{bottom:671.732100px;}
.y12c{bottom:671.957550px;}
.y195{bottom:673.449600px;}
.y173{bottom:675.806700px;}
.y1b7{bottom:675.807450px;}
.y8c{bottom:676.397850px;}
.y66{bottom:676.398450px;}
.y23{bottom:676.398600px;}
.y11d{bottom:678.534000px;}
.y14c{bottom:683.473350px;}
.y1d1{bottom:683.813100px;}
.y1a4{bottom:685.706850px;}
.ye1{bottom:691.531950px;}
.y12b{bottom:691.757550px;}
.y194{bottom:693.249600px;}
.y1b6{bottom:695.607450px;}
.y8b{bottom:696.197850px;}
.y65{bottom:696.198450px;}
.y47{bottom:696.198600px;}
.ydb{bottom:697.064250px;}
.y11c{bottom:698.334000px;}
.y14b{bottom:703.273200px;}
.y1e8{bottom:703.613100px;}
.y1a3{bottom:705.506850px;}
.ye0{bottom:711.331950px;}
.y12a{bottom:711.557550px;}
.y193{bottom:713.049600px;}
.ya4{bottom:714.702300px;}
.y64{bottom:715.998450px;}
.y22{bottom:715.998600px;}
.y14a{bottom:723.073350px;}
.y1e7{bottom:723.413100px;}
.ydf{bottom:731.131950px;}
.y192{bottom:732.849600px;}
.ya3{bottom:734.502300px;}
.y8a{bottom:735.797850px;}
.y63{bottom:735.798450px;}
.y21{bottom:735.798600px;}
.y1d0{bottom:743.213100px;}
.yde{bottom:750.931950px;}
.y129{bottom:751.157550px;}
.ya2{bottom:754.302300px;}
.y89{bottom:755.597850px;}
.y62{bottom:755.598450px;}
.y20{bottom:755.598600px;}
.y128{bottom:757.098600px;}
.y149{bottom:762.673350px;}
.y1cf{bottom:763.013100px;}
.y191{bottom:772.449600px;}
.y1ce{bottom:782.813100px;}
.y190{bottom:792.249600px;}
.yb0{bottom:799.313100px;}
.y1e6{bottom:802.613100px;}
.ydd{bottom:817.913100px;}
.y61{bottom:820.913100px;}
.y1e{bottom:822.413100px;}
.h8{height:47.520000px;}
.h7{height:50.688000px;}
.h9{height:55.296000px;}
.h6{height:58.278000px;}
.hb{height:58.872000px;}
.h4{height:63.576000px;}
.ha{height:64.224000px;}
.h3{height:74.172000px;}
.h2{height:95.364000px;}
.h5{height:126.900000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x3f{left:54.000000px;}
.x5{left:60.165300px;}
.x3a{left:96.094500px;}
.x4{left:109.926450px;}
.x38{left:191.870100px;}
.x35{left:204.519600px;}
.x3c{left:336.543300px;}
.x6{left:348.874050px;}
.x33{left:358.202250px;}
.x1d{left:370.479450px;}
.x14{left:380.477100px;}
.x22{left:382.488150px;}
.x16{left:383.843250px;}
.x1e{left:391.763100px;}
.x13{left:413.773200px;}
.x27{left:431.184150px;}
.x30{left:434.250150px;}
.x31{left:438.903450px;}
.x18{left:460.534200px;}
.x32{left:463.306500px;}
.x19{left:469.691400px;}
.x1c{left:474.922350px;}
.x1b{left:477.644550px;}
.x39{left:505.878000px;}
.x1a{left:532.407750px;}
.x15{left:572.997150px;}
.x12{left:591.878700px;}
.x3b{left:601.653600px;}
.x7{left:605.235900px;}
.x24{left:625.251900px;}
.x1{left:637.872150px;}
.x36{left:781.511850px;}
.x37{left:794.586600px;}
.x25{left:805.463700px;}
.x34{left:839.804250px;}
.x23{left:867.904350px;}
.x21{left:901.778700px;}
.x28{left:915.791400px;}
.x26{left:923.208600px;}
.x9{left:926.291400px;}
.xf{left:927.998100px;}
.xd{left:930.803250px;}
.x20{left:932.445600px;}
.x2d{left:935.570100px;}
.x17{left:938.332650px;}
.x2a{left:939.513450px;}
.x10{left:940.851450px;}
.xb{left:947.896800px;}
.x40{left:959.164800px;}
.x2e{left:963.489300px;}
.xc{left:969.180300px;}
.x29{left:1000.051050px;}
.x1f{left:1008.161850px;}
.x2b{left:1009.225350px;}
.x2{left:1025.255100px;}
.x3e{left:1027.650150px;}
.x3{left:1031.177550px;}
.xe{left:1055.195550px;}
.x2c{left:1058.775300px;}
.xa{left:1109.445150px;}
.x11{left:1116.490950px;}
.x2f{left:1151.321850px;}
.x3d{left:1165.973400px;}
.x8{left:1183.133550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-37.098667pt;}
.ws0{word-spacing:-26.688000pt;}
.ws17{word-spacing:-16.309333pt;}
.wsbe{word-spacing:-5.312000pt;}
.ws4b{word-spacing:-5.162667pt;}
.ws83{word-spacing:-4.282667pt;}
.wsb2{word-spacing:-4.160000pt;}
.ws8f{word-spacing:-3.872000pt;}
.ws81{word-spacing:-3.637333pt;}
.ws40{word-spacing:-3.402667pt;}
.ws53{word-spacing:-3.344000pt;}
.ws88{word-spacing:-3.168000pt;}
.ws87{word-spacing:-2.874667pt;}
.ws2c{word-spacing:-2.816000pt;}
.ws31{word-spacing:-2.757333pt;}
.wsda{word-spacing:-2.640000pt;}
.ws77{word-spacing:-2.581333pt;}
.ws4{word-spacing:-2.522667pt;}
.wsdb{word-spacing:-2.464000pt;}
.wsc8{word-spacing:-2.368000pt;}
.ws84{word-spacing:-2.288000pt;}
.wsb{word-spacing:-2.229333pt;}
.ws4d{word-spacing:-2.053333pt;}
.ws2b{word-spacing:-1.936000pt;}
.wsae{word-spacing:-1.877333pt;}
.wse7{word-spacing:-1.818667pt;}
.ws68{word-spacing:-1.760000pt;}
.wsa3{word-spacing:-1.701333pt;}
.wsb6{word-spacing:-1.664000pt;}
.wsa5{word-spacing:-1.642667pt;}
.ws44{word-spacing:-1.584000pt;}
.wsed{word-spacing:-1.525333pt;}
.ws5c{word-spacing:-1.466667pt;}
.wsf3{word-spacing:-1.408000pt;}
.wse3{word-spacing:-1.290667pt;}
.ws28{word-spacing:-1.232000pt;}
.ws74{word-spacing:-1.173333pt;}
.wsdd{word-spacing:-1.114667pt;}
.ws73{word-spacing:-0.997333pt;}
.ws27{word-spacing:-0.880000pt;}
.wsec{word-spacing:-0.821333pt;}
.ws4a{word-spacing:-0.762667pt;}
.ws5{word-spacing:-0.704000pt;}
.ws20{word-spacing:-0.645333pt;}
.ws85{word-spacing:-0.586667pt;}
.wscf{word-spacing:-0.576000pt;}
.ws7d{word-spacing:-0.528000pt;}
.wsa7{word-spacing:-0.469333pt;}
.wsd6{word-spacing:-0.410667pt;}
.ws3d{word-spacing:-0.293333pt;}
.ws14{word-spacing:-0.234667pt;}
.ws69{word-spacing:-0.176000pt;}
.ws76{word-spacing:-0.117333pt;}
.ws13{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.064000pt;}
.wsd5{word-spacing:0.117333pt;}
.wseb{word-spacing:0.176000pt;}
.ws7b{word-spacing:0.234667pt;}
.wscd{word-spacing:0.256000pt;}
.ws66{word-spacing:0.293333pt;}
.ws9a{word-spacing:0.410667pt;}
.wsd9{word-spacing:0.469333pt;}
.ws30{word-spacing:0.528000pt;}
.wsf2{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.645333pt;}
.ws19{word-spacing:0.704000pt;}
.ws43{word-spacing:0.762667pt;}
.ws6e{word-spacing:0.938667pt;}
.wscb{word-spacing:0.960000pt;}
.ws25{word-spacing:1.114667pt;}
.ws54{word-spacing:1.173333pt;}
.ws11{word-spacing:1.232000pt;}
.wsd4{word-spacing:1.349333pt;}
.ws3c{word-spacing:1.408000pt;}
.wsf0{word-spacing:1.525333pt;}
.ws8c{word-spacing:1.584000pt;}
.ws58{word-spacing:1.642667pt;}
.wsee{word-spacing:1.818667pt;}
.ws4f{word-spacing:1.877333pt;}
.wsdc{word-spacing:1.936000pt;}
.ws92{word-spacing:2.053333pt;}
.wsf1{word-spacing:2.112000pt;}
.ws99{word-spacing:2.229333pt;}
.ws6{word-spacing:2.288000pt;}
.ws72{word-spacing:2.346667pt;}
.ws9c{word-spacing:2.405333pt;}
.wsef{word-spacing:2.522667pt;}
.ws18{word-spacing:2.581333pt;}
.wsb7{word-spacing:2.688000pt;}
.ws64{word-spacing:2.757333pt;}
.ws16{word-spacing:2.992000pt;}
.wsb0{word-spacing:3.050667pt;}
.ws95{word-spacing:3.109333pt;}
.ws1d{word-spacing:3.168000pt;}
.wsd1{word-spacing:3.344000pt;}
.ws6a{word-spacing:3.402667pt;}
.ws46{word-spacing:3.520000pt;}
.wsd8{word-spacing:3.578667pt;}
.ws10{word-spacing:3.637333pt;}
.ws6b{word-spacing:3.696000pt;}
.wse5{word-spacing:3.754667pt;}
.ws7c{word-spacing:3.872000pt;}
.wsac{word-spacing:3.930667pt;}
.ws15{word-spacing:3.989333pt;}
.ws9b{word-spacing:4.048000pt;}
.ws5a{word-spacing:4.282667pt;}
.wsd0{word-spacing:4.288000pt;}
.ws63{word-spacing:4.400000pt;}
.wsb1{word-spacing:4.416000pt;}
.wse{word-spacing:4.458667pt;}
.wsbc{word-spacing:4.480000pt;}
.ws39{word-spacing:4.517333pt;}
.wsa{word-spacing:4.634667pt;}
.wse2{word-spacing:4.693333pt;}
.ws96{word-spacing:4.752000pt;}
.wsc9{word-spacing:5.056000pt;}
.ws7{word-spacing:5.162667pt;}
.ws9{word-spacing:5.280000pt;}
.ws91{word-spacing:5.338667pt;}
.wsd7{word-spacing:5.397333pt;}
.ws9f{word-spacing:5.456000pt;}
.ws62{word-spacing:5.514667pt;}
.wsad{word-spacing:5.573333pt;}
.wsa8{word-spacing:5.690667pt;}
.ws4c{word-spacing:5.749333pt;}
.ws26{word-spacing:5.866667pt;}
.ws7f{word-spacing:6.042667pt;}
.ws51{word-spacing:6.101333pt;}
.ws4e{word-spacing:6.160000pt;}
.wsf{word-spacing:6.218667pt;}
.ws35{word-spacing:6.394667pt;}
.ws12{word-spacing:6.453333pt;}
.wsd3{word-spacing:6.512000pt;}
.ws56{word-spacing:6.629333pt;}
.ws67{word-spacing:6.688000pt;}
.ws2d{word-spacing:6.746667pt;}
.wsbb{word-spacing:6.784000pt;}
.wsc{word-spacing:6.805333pt;}
.wse1{word-spacing:6.864000pt;}
.ws23{word-spacing:6.922667pt;}
.ws24{word-spacing:6.981333pt;}
.ws37{word-spacing:7.040000pt;}
.ws70{word-spacing:7.098667pt;}
.wsc3{word-spacing:7.104000pt;}
.wsb4{word-spacing:7.168000pt;}
.wse4{word-spacing:7.216000pt;}
.ws2f{word-spacing:7.274667pt;}
.wsd2{word-spacing:7.333333pt;}
.ws49{word-spacing:7.450667pt;}
.ws8{word-spacing:7.509333pt;}
.ws1f{word-spacing:7.685333pt;}
.ws52{word-spacing:7.744000pt;}
.ws3f{word-spacing:7.861333pt;}
.wsbd{word-spacing:7.936000pt;}
.wse9{word-spacing:8.037333pt;}
.ws38{word-spacing:8.154667pt;}
.ws61{word-spacing:8.213333pt;}
.wsc2{word-spacing:8.256000pt;}
.ws5f{word-spacing:8.272000pt;}
.wsa0{word-spacing:8.389333pt;}
.wsa4{word-spacing:8.506667pt;}
.ws71{word-spacing:8.565333pt;}
.ws78{word-spacing:8.741333pt;}
.ws75{word-spacing:8.800000pt;}
.wsb8{word-spacing:8.832000pt;}
.ws3a{word-spacing:8.858667pt;}
.ws79{word-spacing:8.976000pt;}
.ws22{word-spacing:9.210667pt;}
.ws8d{word-spacing:9.269333pt;}
.wsd{word-spacing:9.328000pt;}
.ws80{word-spacing:9.504000pt;}
.wscc{word-spacing:9.536000pt;}
.ws6c{word-spacing:9.621333pt;}
.ws3{word-spacing:9.680000pt;}
.ws9d{word-spacing:9.856000pt;}
.wsb9{word-spacing:10.176000pt;}
.ws3e{word-spacing:10.325333pt;}
.ws47{word-spacing:10.501333pt;}
.wsa2{word-spacing:10.560000pt;}
.ws33{word-spacing:10.618667pt;}
.wsa1{word-spacing:10.677333pt;}
.ws59{word-spacing:10.970667pt;}
.wsbf{word-spacing:11.072000pt;}
.ws90{word-spacing:11.381333pt;}
.ws8a{word-spacing:11.498667pt;}
.wsaf{word-spacing:11.792000pt;}
.ws9e{word-spacing:11.850667pt;}
.ws7e{word-spacing:12.026667pt;}
.wsca{word-spacing:12.224000pt;}
.ws6f{word-spacing:12.320000pt;}
.ws2e{word-spacing:12.378667pt;}
.wsb5{word-spacing:12.480000pt;}
.ws8b{word-spacing:12.730667pt;}
.wsc0{word-spacing:12.800000pt;}
.ws86{word-spacing:12.848000pt;}
.ws7a{word-spacing:12.906667pt;}
.wse6{word-spacing:13.141333pt;}
.ws97{word-spacing:13.200000pt;}
.wse0{word-spacing:13.317333pt;}
.ws1c{word-spacing:13.434667pt;}
.ws5b{word-spacing:13.493333pt;}
.ws2a{word-spacing:13.669333pt;}
.wsea{word-spacing:13.904000pt;}
.wsf4{word-spacing:14.197333pt;}
.ws93{word-spacing:14.490667pt;}
.ws29{word-spacing:14.842667pt;}
.wsc7{word-spacing:14.912000pt;}
.ws41{word-spacing:15.312000pt;}
.ws42{word-spacing:15.370667pt;}
.ws50{word-spacing:15.605333pt;}
.ws3b{word-spacing:15.781333pt;}
.ws48{word-spacing:16.192000pt;}
.ws60{word-spacing:16.250667pt;}
.ws6d{word-spacing:16.661333pt;}
.wsa9{word-spacing:16.778667pt;}
.ws1e{word-spacing:17.482667pt;}
.ws32{word-spacing:18.304000pt;}
.ws89{word-spacing:18.890667pt;}
.ws21{word-spacing:18.949333pt;}
.wsa6{word-spacing:19.125333pt;}
.ws8e{word-spacing:19.360000pt;}
.wse8{word-spacing:19.418667pt;}
.wsc1{word-spacing:19.840000pt;}
.wsdf{word-spacing:20.005333pt;}
.ws5d{word-spacing:20.298667pt;}
.wsde{word-spacing:20.885333pt;}
.wsaa{word-spacing:21.589333pt;}
.ws34{word-spacing:22.293333pt;}
.ws57{word-spacing:22.469333pt;}
.wsba{word-spacing:22.528000pt;}
.wsc6{word-spacing:23.104000pt;}
.ws82{word-spacing:24.170667pt;}
.wsce{word-spacing:24.256000pt;}
.ws45{word-spacing:24.816000pt;}
.wsb3{word-spacing:25.408000pt;}
.ws94{word-spacing:25.930667pt;}
.ws65{word-spacing:26.224000pt;}
.ws98{word-spacing:28.160000pt;}
.ws5e{word-spacing:28.922667pt;}
.ws55{word-spacing:29.685333pt;}
.ws36{word-spacing:32.032000pt;}
.wsab{word-spacing:32.149333pt;}
.ws1b{word-spacing:37.136000pt;}
.wsc5{word-spacing:87.680000pt;}
._1d{margin-left:-1225.149333pt;}
._32{margin-left:-1146.021867pt;}
._c{margin-left:-1141.384533pt;}
._1b{margin-left:-1115.942400pt;}
._14{margin-left:-1095.011733pt;}
._33{margin-left:-1020.938667pt;}
._31{margin-left:-984.476267pt;}
._19{margin-left:-846.725867pt;}
._4{margin-left:-765.509867pt;}
._10{margin-left:-16.144000pt;}
._0{margin-left:-6.541333pt;}
._2{margin-left:-4.742400pt;}
._f{margin-left:-3.693867pt;}
._9{margin-left:-2.236800pt;}
._1{margin-left:-1.344000pt;}
._5{width:1.173333pt;}
._6{width:2.158933pt;}
._12{width:3.203200pt;}
._8{width:4.235733pt;}
._7{width:5.262400pt;}
._a{width:6.289067pt;}
._b{width:8.008533pt;}
._e{width:9.486400pt;}
._23{width:10.472000pt;}
._18{width:11.445867pt;}
._11{width:12.496000pt;}
._16{width:13.798400pt;}
._1a{width:14.789867pt;}
._2c{width:16.070400pt;}
._17{width:17.465600pt;}
._15{width:18.656000pt;}
._24{width:20.509867pt;}
._d{width:21.425067pt;}
._26{width:22.750933pt;}
._20{width:23.677867pt;}
._1f{width:26.694933pt;}
._1c{width:28.107200pt;}
._30{width:29.098667pt;}
._2f{width:31.662400pt;}
._21{width:32.835733pt;}
._2b{width:33.813867pt;}
._2d{width:35.660800pt;}
._2e{width:36.626133pt;}
._2a{width:39.212800pt;}
._13{width:44.616000pt;}
._1e{width:59.001067pt;}
._29{width:90.253333pt;}
._35{width:146.373333pt;}
._34{width:175.706667pt;}
._28{width:440.263467pt;}
._3{width:540.244800pt;}
._27{width:1745.903467pt;}
._22{width:3512.712000pt;}
._25{width:3733.960000pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:125.333333pt;}
.y0{bottom:0.000000pt;}
.y189{bottom:47.999200pt;}
.y3{bottom:48.000000pt;}
.y18f{bottom:48.000267pt;}
.y1f{bottom:49.704933pt;}
.y55{bottom:52.000000pt;}
.y45{bottom:52.371467pt;}
.y3d{bottom:52.371867pt;}
.y6{bottom:52.907067pt;}
.y172{bottom:53.130933pt;}
.y5a{bottom:53.333333pt;}
.y99{bottom:54.666667pt;}
.y54{bottom:54.666800pt;}
.y88{bottom:55.368000pt;}
.y98{bottom:55.642933pt;}
.y97{bottom:55.643200pt;}
.y1b5{bottom:56.879867pt;}
.y188{bottom:65.599200pt;}
.y18e{bottom:65.600267pt;}
.ydc{bottom:69.920533pt;}
.y44{bottom:69.971467pt;}
.y3c{bottom:69.971867pt;}
.y171{bottom:70.730933pt;}
.y59{bottom:70.933333pt;}
.y5{bottom:72.107067pt;}
.yc0{bottom:72.266667pt;}
.y53{bottom:72.266800pt;}
.y87{bottom:72.968000pt;}
.y96{bottom:73.243200pt;}
.y1b4{bottom:74.479867pt;}
.y1a0{bottom:74.812800pt;}
.yfa{bottom:75.615867pt;}
.y112{bottom:82.669600pt;}
.y187{bottom:83.199200pt;}
.y145{bottom:86.895600pt;}
.y43{bottom:87.571467pt;}
.y170{bottom:88.330933pt;}
.y58{bottom:88.533333pt;}
.ybf{bottom:89.866667pt;}
.y52{bottom:89.866800pt;}
.y86{bottom:90.568000pt;}
.y95{bottom:90.843200pt;}
.y4{bottom:91.307067pt;}
.y1b3{bottom:92.079867pt;}
.y19f{bottom:92.412800pt;}
.y11b{bottom:93.998667pt;}
.yf9{bottom:94.815733pt;}
.y111{bottom:100.269600pt;}
.y144{bottom:104.495600pt;}
.y3b{bottom:105.171867pt;}
.y16f{bottom:105.930933pt;}
.y57{bottom:106.133333pt;}
.ybe{bottom:107.466667pt;}
.y51{bottom:107.466800pt;}
.y85{bottom:108.168000pt;}
.y94{bottom:108.443200pt;}
.y1b2{bottom:109.679867pt;}
.yfc{bottom:114.015733pt;}
.y1e5{bottom:115.033867pt;}
.y7{bottom:117.763867pt;}
.y110{bottom:117.869600pt;}
.y42{bottom:122.771467pt;}
.y3a{bottom:122.771867pt;}
.ybd{bottom:125.066667pt;}
.y50{bottom:125.066800pt;}
.y93{bottom:126.043200pt;}
.y1e4{bottom:132.633867pt;}
.yf8{bottom:133.215733pt;}
.y10f{bottom:135.469600pt;}
.y143{bottom:139.695600pt;}
.y41{bottom:140.371467pt;}
.y56{bottom:141.333333pt;}
.ybc{bottom:142.666667pt;}
.ya1{bottom:142.666800pt;}
.y7d{bottom:143.643067pt;}
.y84{bottom:143.643200pt;}
.y60{bottom:144.330400pt;}
.y1b1{bottom:151.917200pt;}
.yf7{bottom:152.415733pt;}
.y10e{bottom:153.069600pt;}
.y142{bottom:157.295600pt;}
.y39{bottom:157.971867pt;}
.yda{bottom:158.088400pt;}
.yc1{bottom:160.266667pt;}
.y4f{bottom:160.266800pt;}
.y1cd{bottom:160.717733pt;}
.y7c{bottom:161.243067pt;}
.y83{bottom:161.243200pt;}
.y1e3{bottom:167.833867pt;}
.y1b0{bottom:169.517200pt;}
.y10d{bottom:170.669600pt;}
.yf6{bottom:171.615867pt;}
.y141{bottom:174.895600pt;}
.y40{bottom:175.571467pt;}
.y38{bottom:175.571867pt;}
.yd9{bottom:175.688400pt;}
.ybb{bottom:177.866667pt;}
.y4e{bottom:177.866800pt;}
.y186{bottom:178.317200pt;}
.y1cc{bottom:178.317733pt;}
.y7b{bottom:178.843067pt;}
.y82{bottom:178.843200pt;}
.y5f{bottom:179.530533pt;}
.y1e2{bottom:185.433867pt;}
.y1af{bottom:187.117200pt;}
.yf5{bottom:190.815733pt;}
.y140{bottom:192.495600pt;}
.y3f{bottom:193.171467pt;}
.y37{bottom:193.171867pt;}
.yd8{bottom:193.288267pt;}
.yba{bottom:195.466667pt;}
.y4d{bottom:195.466800pt;}
.y185{bottom:195.917067pt;}
.y16e{bottom:195.917200pt;}
.y1cb{bottom:195.917733pt;}
.y7a{bottom:196.443067pt;}
.y81{bottom:196.443200pt;}
.y10c{bottom:196.778000pt;}
.y5e{bottom:197.130533pt;}
.y1ae{bottom:204.717200pt;}
.yf4{bottom:210.015733pt;}
.y13f{bottom:210.095600pt;}
.y3e{bottom:210.771467pt;}
.y36{bottom:210.771867pt;}
.yd7{bottom:210.888400pt;}
.yb9{bottom:213.066667pt;}
.ya0{bottom:213.066800pt;}
.y184{bottom:213.517067pt;}
.y16d{bottom:213.517200pt;}
.y1ca{bottom:213.517733pt;}
.y79{bottom:214.043067pt;}
.y80{bottom:214.043200pt;}
.y10b{bottom:214.378000pt;}
.y5d{bottom:214.730533pt;}
.y1e1{bottom:220.633867pt;}
.y1ad{bottom:222.317200pt;}
.y13e{bottom:227.695600pt;}
.yd6{bottom:228.488400pt;}
.yf3{bottom:229.215733pt;}
.yb8{bottom:230.666667pt;}
.y4c{bottom:230.666800pt;}
.y2{bottom:230.782133pt;}
.y183{bottom:231.117067pt;}
.y16c{bottom:231.117200pt;}
.y1c9{bottom:231.117733pt;}
.y78{bottom:231.643067pt;}
.y7f{bottom:231.643200pt;}
.y10a{bottom:231.978000pt;}
.y46{bottom:239.516933pt;}
.y1ac{bottom:239.917200pt;}
.y13d{bottom:245.295600pt;}
.yd5{bottom:246.088400pt;}
.yb7{bottom:248.266667pt;}
.y9f{bottom:248.266800pt;}
.yf2{bottom:248.415733pt;}
.y182{bottom:248.717067pt;}
.y16b{bottom:248.717200pt;}
.y1c8{bottom:248.717733pt;}
.y77{bottom:249.243067pt;}
.y35{bottom:249.243200pt;}
.y109{bottom:249.578000pt;}
.y1e0{bottom:255.833867pt;}
.y1ab{bottom:257.517200pt;}
.y1{bottom:257.574800pt;}
.y13c{bottom:262.895600pt;}
.yd4{bottom:263.688400pt;}
.yb6{bottom:265.866667pt;}
.y9e{bottom:265.866800pt;}
.y18d{bottom:266.317067pt;}
.y16a{bottom:266.317200pt;}
.y76{bottom:266.843067pt;}
.y34{bottom:266.843200pt;}
.y108{bottom:267.178000pt;}
.yfb{bottom:267.615733pt;}
.y1df{bottom:273.433867pt;}
.y1d{bottom:275.117200pt;}
.y13b{bottom:280.495600pt;}
.yd3{bottom:281.288400pt;}
.y10{bottom:283.397467pt;}
.yb5{bottom:283.466667pt;}
.y9d{bottom:283.466800pt;}
.y181{bottom:283.917067pt;}
.y169{bottom:283.917200pt;}
.y1c7{bottom:283.917733pt;}
.y75{bottom:284.443067pt;}
.y33{bottom:284.443200pt;}
.y107{bottom:284.778000pt;}
.yf1{bottom:286.815733pt;}
.y1de{bottom:291.033867pt;}
.y1c{bottom:292.717200pt;}
.y13a{bottom:298.095600pt;}
.yd2{bottom:298.888400pt;}
.yb4{bottom:301.066667pt;}
.y9c{bottom:301.066800pt;}
.y180{bottom:301.517067pt;}
.y168{bottom:301.517200pt;}
.y1c6{bottom:301.517733pt;}
.y74{bottom:302.043067pt;}
.y32{bottom:302.043200pt;}
.y106{bottom:302.378000pt;}
.yf0{bottom:306.015733pt;}
.y1ea{bottom:308.633867pt;}
.yf{bottom:309.760800pt;}
.y1b{bottom:310.317200pt;}
.y139{bottom:315.695600pt;}
.yd1{bottom:316.488400pt;}
.yb3{bottom:318.666667pt;}
.y9b{bottom:318.666800pt;}
.y17f{bottom:319.117067pt;}
.y167{bottom:319.117200pt;}
.y1c5{bottom:319.117733pt;}
.y73{bottom:319.643067pt;}
.y31{bottom:319.643200pt;}
.y105{bottom:319.978000pt;}
.yef{bottom:325.215733pt;}
.y1dd{bottom:326.233867pt;}
.y1a{bottom:327.917200pt;}
.y138{bottom:333.295600pt;}
.yd0{bottom:334.088400pt;}
.ye{bottom:336.124000pt;}
.yb2{bottom:336.266667pt;}
.y9a{bottom:336.266800pt;}
.y17e{bottom:336.717067pt;}
.y1a2{bottom:336.717200pt;}
.y1c4{bottom:336.717733pt;}
.y72{bottom:337.243067pt;}
.y30{bottom:337.243200pt;}
.y104{bottom:337.578000pt;}
.y15a{bottom:343.531867pt;}
.y1dc{bottom:343.833867pt;}
.yee{bottom:344.415733pt;}
.y19{bottom:345.517200pt;}
.y137{bottom:350.895600pt;}
.ycf{bottom:351.688400pt;}
.yb1{bottom:353.866667pt;}
.y18c{bottom:354.317067pt;}
.y166{bottom:354.317200pt;}
.y1c3{bottom:354.317733pt;}
.y71{bottom:354.843067pt;}
.y2f{bottom:354.843200pt;}
.y103{bottom:355.178000pt;}
.y159{bottom:361.131733pt;}
.y1db{bottom:361.433867pt;}
.yd{bottom:362.487200pt;}
.y18{bottom:363.117200pt;}
.yed{bottom:363.615867pt;}
.y148{bottom:368.495600pt;}
.yce{bottom:369.288267pt;}
.yaf{bottom:371.290933pt;}
.y17d{bottom:371.917067pt;}
.y165{bottom:371.917200pt;}
.y1c2{bottom:371.917733pt;}
.y2e{bottom:372.443200pt;}
.y102{bottom:372.778000pt;}
.y158{bottom:378.731867pt;}
.y1da{bottom:379.033867pt;}
.y1aa{bottom:380.717200pt;}
.yec{bottom:382.815733pt;}
.y136{bottom:386.095600pt;}
.ycd{bottom:386.888400pt;}
.yc{bottom:388.850400pt;}
.yae{bottom:388.890933pt;}
.y17c{bottom:389.517067pt;}
.y164{bottom:389.517200pt;}
.y2d{bottom:390.043200pt;}
.y101{bottom:390.378000pt;}
.y157{bottom:396.331733pt;}
.y17{bottom:398.317200pt;}
.yc2{bottom:400.233067pt;}
.yeb{bottom:402.015733pt;}
.y135{bottom:403.695600pt;}
.ycc{bottom:404.488400pt;}
.yad{bottom:406.490933pt;}
.y17b{bottom:407.117067pt;}
.y163{bottom:407.117200pt;}
.y1c1{bottom:407.117733pt;}
.y70{bottom:407.643067pt;}
.y2c{bottom:407.643200pt;}
.y100{bottom:407.978000pt;}
.y156{bottom:413.931867pt;}
.y1d9{bottom:414.233867pt;}
.y11a{bottom:414.450267pt;}
.yb{bottom:415.213733pt;}
.y16{bottom:415.917200pt;}
.yea{bottom:421.215733pt;}
.y134{bottom:421.295600pt;}
.yc3{bottom:421.648133pt;}
.ycb{bottom:422.088400pt;}
.yac{bottom:424.090933pt;}
.y17a{bottom:424.717067pt;}
.y162{bottom:424.717200pt;}
.y1c0{bottom:424.717733pt;}
.y92{bottom:425.242533pt;}
.y6f{bottom:425.243067pt;}
.y2b{bottom:425.243200pt;}
.yff{bottom:425.578000pt;}
.y127{bottom:427.141333pt;}
.y155{bottom:431.531867pt;}
.y1d8{bottom:431.833867pt;}
.y119{bottom:432.050267pt;}
.y15{bottom:433.517200pt;}
.y133{bottom:438.895600pt;}
.yca{bottom:439.688400pt;}
.y4b{bottom:439.800133pt;}
.y19e{bottom:440.221867pt;}
.ye9{bottom:440.415733pt;}
.ya{bottom:441.576933pt;}
.yab{bottom:441.690933pt;}
.y18b{bottom:442.317067pt;}
.y161{bottom:442.317200pt;}
.y1bf{bottom:442.317733pt;}
.y91{bottom:442.842533pt;}
.y6e{bottom:442.843067pt;}
.y5b{bottom:442.843200pt;}
.yfe{bottom:443.178000pt;}
.y126{bottom:444.741333pt;}
.y154{bottom:449.131733pt;}
.y1d7{bottom:449.433867pt;}
.y118{bottom:449.650267pt;}
.y14{bottom:451.117200pt;}
.y132{bottom:456.495600pt;}
.yc9{bottom:457.288267pt;}
.y19d{bottom:457.821867pt;}
.yaa{bottom:459.290933pt;}
.ye8{bottom:459.615867pt;}
.y179{bottom:459.917067pt;}
.y1a1{bottom:459.917200pt;}
.y1be{bottom:459.917733pt;}
.y6d{bottom:460.443067pt;}
.y2a{bottom:460.443200pt;}
.yfd{bottom:460.778000pt;}
.y125{bottom:462.341333pt;}
.y117{bottom:467.250267pt;}
.y9{bottom:467.940267pt;}
.y13{bottom:468.717200pt;}
.y131{bottom:474.095600pt;}
.yc8{bottom:474.888400pt;}
.y4a{bottom:475.000133pt;}
.y19c{bottom:475.421867pt;}
.ya9{bottom:476.890933pt;}
.y178{bottom:477.517067pt;}
.y160{bottom:477.517200pt;}
.y1bd{bottom:477.517733pt;}
.y90{bottom:478.042533pt;}
.y6c{bottom:478.043067pt;}
.y5c{bottom:478.043200pt;}
.ye7{bottom:478.815733pt;}
.y124{bottom:479.941333pt;}
.y153{bottom:484.331733pt;}
.y1d6{bottom:484.633867pt;}
.y116{bottom:484.850267pt;}
.y115{bottom:484.936667pt;}
.y12{bottom:486.317200pt;}
.y147{bottom:491.695600pt;}
.yc7{bottom:492.488400pt;}
.y49{bottom:492.600133pt;}
.y19b{bottom:493.021867pt;}
.y8{bottom:494.303600pt;}
.ya8{bottom:494.490933pt;}
.y177{bottom:495.117067pt;}
.y15f{bottom:495.117200pt;}
.y6b{bottom:495.643067pt;}
.y29{bottom:495.643200pt;}
.y123{bottom:497.541333pt;}
.ye6{bottom:498.015733pt;}
.y152{bottom:501.931867pt;}
.y1e9{bottom:502.233867pt;}
.y114{bottom:502.536667pt;}
.y11{bottom:503.917200pt;}
.y130{bottom:509.295600pt;}
.y19a{bottom:510.621867pt;}
.y176{bottom:512.717067pt;}
.y15e{bottom:512.717200pt;}
.y1bc{bottom:512.717733pt;}
.y8f{bottom:513.242533pt;}
.y6a{bottom:513.243067pt;}
.y28{bottom:513.243200pt;}
.y122{bottom:515.141333pt;}
.y151{bottom:519.531867pt;}
.y1d5{bottom:519.833867pt;}
.y113{bottom:520.136667pt;}
.y1a9{bottom:521.517200pt;}
.y12f{bottom:526.895600pt;}
.yc6{bottom:527.688400pt;}
.y48{bottom:527.800133pt;}
.y199{bottom:528.221867pt;}
.y15d{bottom:530.317200pt;}
.y1bb{bottom:530.317733pt;}
.y8e{bottom:530.842533pt;}
.y69{bottom:530.843067pt;}
.y27{bottom:530.843200pt;}
.y121{bottom:532.741333pt;}
.y150{bottom:537.131733pt;}
.y1d4{bottom:537.433867pt;}
.y1a8{bottom:539.117200pt;}
.ye5{bottom:544.295067pt;}
.y12e{bottom:544.495600pt;}
.yc5{bottom:545.288267pt;}
.y198{bottom:545.821867pt;}
.ya7{bottom:547.290933pt;}
.y175{bottom:547.917067pt;}
.y1ba{bottom:547.917733pt;}
.y68{bottom:548.443067pt;}
.y26{bottom:548.443200pt;}
.y120{bottom:550.341333pt;}
.y14f{bottom:554.731867pt;}
.y1a7{bottom:556.717200pt;}
.ye4{bottom:561.895067pt;}
.y146{bottom:562.095600pt;}
.yc4{bottom:562.888400pt;}
.y197{bottom:563.421867pt;}
.ya6{bottom:564.890933pt;}
.y18a{bottom:565.517067pt;}
.y15c{bottom:565.517200pt;}
.y1b9{bottom:565.517733pt;}
.y8d{bottom:566.042533pt;}
.y67{bottom:566.043067pt;}
.y25{bottom:566.043200pt;}
.y11f{bottom:567.941333pt;}
.y14e{bottom:572.331733pt;}
.y1d3{bottom:572.633867pt;}
.y1a6{bottom:574.317200pt;}
.ye3{bottom:579.495067pt;}
.y12d{bottom:579.695600pt;}
.y196{bottom:581.021867pt;}
.ya5{bottom:582.490933pt;}
.y174{bottom:583.117067pt;}
.y15b{bottom:583.117200pt;}
.y1b8{bottom:583.117733pt;}
.y7e{bottom:583.643067pt;}
.y24{bottom:583.643200pt;}
.y11e{bottom:585.541333pt;}
.y14d{bottom:589.931867pt;}
.y1d2{bottom:590.233867pt;}
.y1a5{bottom:591.917200pt;}
.ye2{bottom:597.095200pt;}
.y12c{bottom:597.295600pt;}
.y195{bottom:598.621867pt;}
.y173{bottom:600.717067pt;}
.y1b7{bottom:600.717733pt;}
.y8c{bottom:601.242533pt;}
.y66{bottom:601.243067pt;}
.y23{bottom:601.243200pt;}
.y11d{bottom:603.141333pt;}
.y14c{bottom:607.531867pt;}
.y1d1{bottom:607.833867pt;}
.y1a4{bottom:609.517200pt;}
.ye1{bottom:614.695067pt;}
.y12b{bottom:614.895600pt;}
.y194{bottom:616.221867pt;}
.y1b6{bottom:618.317733pt;}
.y8b{bottom:618.842533pt;}
.y65{bottom:618.843067pt;}
.y47{bottom:618.843200pt;}
.ydb{bottom:619.612667pt;}
.y11c{bottom:620.741333pt;}
.y14b{bottom:625.131733pt;}
.y1e8{bottom:625.433867pt;}
.y1a3{bottom:627.117200pt;}
.ye0{bottom:632.295067pt;}
.y12a{bottom:632.495600pt;}
.y193{bottom:633.821867pt;}
.ya4{bottom:635.290933pt;}
.y64{bottom:636.443067pt;}
.y22{bottom:636.443200pt;}
.y14a{bottom:642.731867pt;}
.y1e7{bottom:643.033867pt;}
.ydf{bottom:649.895067pt;}
.y192{bottom:651.421867pt;}
.ya3{bottom:652.890933pt;}
.y8a{bottom:654.042533pt;}
.y63{bottom:654.043067pt;}
.y21{bottom:654.043200pt;}
.y1d0{bottom:660.633867pt;}
.yde{bottom:667.495067pt;}
.y129{bottom:667.695600pt;}
.ya2{bottom:670.490933pt;}
.y89{bottom:671.642533pt;}
.y62{bottom:671.643067pt;}
.y20{bottom:671.643200pt;}
.y128{bottom:672.976533pt;}
.y149{bottom:677.931867pt;}
.y1cf{bottom:678.233867pt;}
.y191{bottom:686.621867pt;}
.y1ce{bottom:695.833867pt;}
.y190{bottom:704.221867pt;}
.yb0{bottom:710.500533pt;}
.y1e6{bottom:713.433867pt;}
.ydd{bottom:727.033867pt;}
.y61{bottom:729.700533pt;}
.y1e{bottom:731.033867pt;}
.h8{height:42.240000pt;}
.h7{height:45.056000pt;}
.h9{height:49.152000pt;}
.h6{height:51.802667pt;}
.hb{height:52.330667pt;}
.h4{height:56.512000pt;}
.ha{height:57.088000pt;}
.h3{height:65.930667pt;}
.h2{height:84.768000pt;}
.h5{height:112.800000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3f{left:48.000000pt;}
.x5{left:53.480267pt;}
.x3a{left:85.417333pt;}
.x4{left:97.712400pt;}
.x38{left:170.551200pt;}
.x35{left:181.795200pt;}
.x3c{left:299.149600pt;}
.x6{left:310.110267pt;}
.x33{left:318.402000pt;}
.x1d{left:329.315067pt;}
.x14{left:338.201867pt;}
.x22{left:339.989467pt;}
.x16{left:341.194000pt;}
.x1e{left:348.233867pt;}
.x13{left:367.798400pt;}
.x27{left:383.274800pt;}
.x30{left:386.000133pt;}
.x31{left:390.136400pt;}
.x18{left:409.363733pt;}
.x32{left:411.828000pt;}
.x19{left:417.503467pt;}
.x1c{left:422.153200pt;}
.x1b{left:424.572933pt;}
.x39{left:449.669333pt;}
.x1a{left:473.251333pt;}
.x15{left:509.330800pt;}
.x12{left:526.114400pt;}
.x3b{left:534.803200pt;}
.x7{left:537.987467pt;}
.x24{left:555.779467pt;}
.x1{left:566.997467pt;}
.x36{left:694.677200pt;}
.x37{left:706.299200pt;}
.x25{left:715.967733pt;}
.x34{left:746.492667pt;}
.x23{left:771.470533pt;}
.x21{left:801.581067pt;}
.x28{left:814.036800pt;}
.x26{left:820.629867pt;}
.x9{left:823.370133pt;}
.xf{left:824.887200pt;}
.xd{left:827.380667pt;}
.x20{left:828.840533pt;}
.x2d{left:831.617867pt;}
.x17{left:834.073467pt;}
.x2a{left:835.123067pt;}
.x10{left:836.312400pt;}
.xb{left:842.574933pt;}
.x40{left:852.590933pt;}
.x2e{left:856.434933pt;}
.xc{left:861.493600pt;}
.x29{left:888.934267pt;}
.x1f{left:896.143867pt;}
.x2b{left:897.089200pt;}
.x2{left:911.337867pt;}
.x3e{left:913.466800pt;}
.x3{left:916.602267pt;}
.xe{left:937.951600pt;}
.x2c{left:941.133600pt;}
.xa{left:986.173467pt;}
.x11{left:992.436400pt;}
.x2f{left:1023.397200pt;}
.x3d{left:1036.420800pt;}
.x8{left:1051.674267pt;}
}




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