
    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_8de4133d6cc53c9057ebd4c0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_fc3fa84437bc1a643aac7120.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_073686d71fdd0adb7b7abd3a.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7144bd8c26cf9983f6023369.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0b0094dabcfbe8f176cf8c68.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7488af3275f142bae378c258.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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_44a145717c707c407173bef4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_10923019126cfd4b9ce65af2.woff')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2403cdaf0ee860d2341475a0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.994000px;}
.ls0{letter-spacing:-6.132000px;}
.ls7{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.726000px;}
.ls4{letter-spacing:101.574000px;}
.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;}
}
.ws7{word-spacing:-24.948000px;}
.wsb5{word-spacing:-18.678000px;}
.ws0{word-spacing:-18.348000px;}
.wsa2{word-spacing:-17.688000px;}
.wsa9{word-spacing:-17.028000px;}
.ws9a{word-spacing:-15.012000px;}
.ws9c{word-spacing:-14.958000px;}
.ws6b{word-spacing:-8.580000px;}
.ws10{word-spacing:-6.072000px;}
.ws6e{word-spacing:-5.742000px;}
.wsb0{word-spacing:-4.686000px;}
.ws6a{word-spacing:-4.554000px;}
.wsf{word-spacing:-4.422000px;}
.ws5b{word-spacing:-4.158000px;}
.wsb2{word-spacing:-3.828000px;}
.ws54{word-spacing:-3.762000px;}
.wsa4{word-spacing:-3.630000px;}
.ws21{word-spacing:-3.498000px;}
.ws38{word-spacing:-3.432000px;}
.ws35{word-spacing:-3.366000px;}
.ws2f{word-spacing:-3.234000px;}
.wsd{word-spacing:-3.168000px;}
.ws77{word-spacing:-3.102000px;}
.wsaf{word-spacing:-3.036000px;}
.ws4e{word-spacing:-2.970000px;}
.wsac{word-spacing:-2.904000px;}
.ws34{word-spacing:-2.838000px;}
.wsc{word-spacing:-2.706000px;}
.ws75{word-spacing:-2.640000px;}
.ws4f{word-spacing:-2.574000px;}
.ws41{word-spacing:-2.508000px;}
.ws1e{word-spacing:-2.442000px;}
.ws2a{word-spacing:-2.112000px;}
.ws98{word-spacing:-1.980000px;}
.ws15{word-spacing:-1.914000px;}
.ws3e{word-spacing:-1.848000px;}
.ws5a{word-spacing:-1.782000px;}
.ws73{word-spacing:-1.650000px;}
.ws40{word-spacing:-1.452000px;}
.ws42{word-spacing:-1.386000px;}
.ws16{word-spacing:-1.320000px;}
.ws3f{word-spacing:-1.254000px;}
.ws63{word-spacing:-1.056000px;}
.ws25{word-spacing:-0.990000px;}
.ws92{word-spacing:-0.924000px;}
.ws9d{word-spacing:-0.702000px;}
.ws18{word-spacing:-0.660000px;}
.ws57{word-spacing:-0.594000px;}
.ws56{word-spacing:-0.462000px;}
.ws95{word-spacing:-0.396000px;}
.ws62{word-spacing:-0.330000px;}
.ws53{word-spacing:-0.264000px;}
.wsbe{word-spacing:-0.198000px;}
.ws43{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws22{word-spacing:0.066000px;}
.wsaa{word-spacing:0.132000px;}
.ws51{word-spacing:0.198000px;}
.ws6c{word-spacing:0.264000px;}
.ws14{word-spacing:0.396000px;}
.ws2d{word-spacing:0.462000px;}
.ws5c{word-spacing:0.528000px;}
.ws45{word-spacing:0.594000px;}
.ws52{word-spacing:0.660000px;}
.ws89{word-spacing:0.726000px;}
.ws49{word-spacing:0.792000px;}
.ws4d{word-spacing:0.858000px;}
.ws6{word-spacing:0.924000px;}
.ws39{word-spacing:0.990000px;}
.ws99{word-spacing:1.056000px;}
.ws48{word-spacing:1.122000px;}
.ws66{word-spacing:1.188000px;}
.ws17{word-spacing:1.254000px;}
.ws5{word-spacing:1.320000px;}
.wsb8{word-spacing:1.386000px;}
.ws7a{word-spacing:1.518000px;}
.ws90{word-spacing:1.584000px;}
.wsbb{word-spacing:1.650000px;}
.ws5e{word-spacing:1.716000px;}
.ws1c{word-spacing:1.782000px;}
.ws30{word-spacing:1.848000px;}
.ws31{word-spacing:1.914000px;}
.ws72{word-spacing:1.980000px;}
.ws60{word-spacing:2.046000px;}
.ws23{word-spacing:2.112000px;}
.ws58{word-spacing:2.178000px;}
.ws8a{word-spacing:2.244000px;}
.ws65{word-spacing:2.376000px;}
.ws13{word-spacing:2.442000px;}
.ws68{word-spacing:2.508000px;}
.ws2c{word-spacing:2.574000px;}
.ws8c{word-spacing:2.640000px;}
.ws1a{word-spacing:2.706000px;}
.ws27{word-spacing:2.838000px;}
.ws6f{word-spacing:2.904000px;}
.ws6d{word-spacing:2.970000px;}
.ws76{word-spacing:3.036000px;}
.ws7e{word-spacing:3.102000px;}
.wsab{word-spacing:3.168000px;}
.ws44{word-spacing:3.234000px;}
.wsa1{word-spacing:3.366000px;}
.ws29{word-spacing:3.432000px;}
.ws84{word-spacing:3.564000px;}
.ws55{word-spacing:3.762000px;}
.wsae{word-spacing:3.828000px;}
.wsb6{word-spacing:3.894000px;}
.ws91{word-spacing:4.026000px;}
.ws1b{word-spacing:4.092000px;}
.ws85{word-spacing:4.158000px;}
.ws26{word-spacing:4.224000px;}
.ws82{word-spacing:4.290000px;}
.ws47{word-spacing:4.356000px;}
.ws59{word-spacing:4.488000px;}
.ws5f{word-spacing:4.554000px;}
.ws1f{word-spacing:4.752000px;}
.wsa6{word-spacing:4.818000px;}
.ws7f{word-spacing:4.884000px;}
.ws69{word-spacing:5.016000px;}
.ws8b{word-spacing:5.082000px;}
.ws3c{word-spacing:5.148000px;}
.wsb1{word-spacing:5.214000px;}
.ws8e{word-spacing:5.412000px;}
.wsb3{word-spacing:5.478000px;}
.wsa7{word-spacing:5.544000px;}
.wsb9{word-spacing:5.610000px;}
.wse{word-spacing:5.676000px;}
.ws50{word-spacing:5.808000px;}
.ws80{word-spacing:5.874000px;}
.ws71{word-spacing:5.940000px;}
.ws9f{word-spacing:6.006000px;}
.ws1{word-spacing:6.132000px;}
.ws3a{word-spacing:6.138000px;}
.wsba{word-spacing:6.270000px;}
.ws70{word-spacing:6.402000px;}
.wsad{word-spacing:6.468000px;}
.ws8d{word-spacing:6.534000px;}
.wsa3{word-spacing:6.732000px;}
.ws33{word-spacing:6.798000px;}
.ws74{word-spacing:6.864000px;}
.ws24{word-spacing:6.930000px;}
.ws37{word-spacing:6.996000px;}
.ws83{word-spacing:7.062000px;}
.ws19{word-spacing:7.128000px;}
.ws67{word-spacing:7.194000px;}
.ws61{word-spacing:7.458000px;}
.ws2e{word-spacing:7.524000px;}
.ws36{word-spacing:7.590000px;}
.ws78{word-spacing:7.656000px;}
.ws7c{word-spacing:7.722000px;}
.ws28{word-spacing:7.788000px;}
.ws32{word-spacing:7.986000px;}
.ws2b{word-spacing:8.118000px;}
.wsb{word-spacing:8.184000px;}
.ws5d{word-spacing:8.250000px;}
.ws9{word-spacing:8.448000px;}
.ws7d{word-spacing:8.646000px;}
.ws4b{word-spacing:8.712000px;}
.ws87{word-spacing:8.778000px;}
.ws86{word-spacing:8.976000px;}
.ws64{word-spacing:9.042000px;}
.ws3b{word-spacing:9.306000px;}
.ws3d{word-spacing:9.570000px;}
.ws94{word-spacing:9.636000px;}
.ws79{word-spacing:9.834000px;}
.wsb7{word-spacing:10.164000px;}
.ws88{word-spacing:10.230000px;}
.ws46{word-spacing:10.494000px;}
.wsa0{word-spacing:10.626000px;}
.ws81{word-spacing:10.692000px;}
.ws8{word-spacing:10.956000px;}
.ws1d{word-spacing:11.154000px;}
.wsbc{word-spacing:11.484000px;}
.ws12{word-spacing:11.748000px;}
.wsa5{word-spacing:11.814000px;}
.wsa{word-spacing:12.606000px;}
.wsb4{word-spacing:12.738000px;}
.ws4c{word-spacing:13.134000px;}
.ws93{word-spacing:13.530000px;}
.ws3{word-spacing:14.124000px;}
.ws8f{word-spacing:14.916000px;}
.ws11{word-spacing:15.048000px;}
.wsa8{word-spacing:16.302000px;}
.ws7b{word-spacing:17.424000px;}
.ws4{word-spacing:18.678000px;}
.ws20{word-spacing:20.526000px;}
.ws4a{word-spacing:25.476000px;}
.wsbd{word-spacing:26.928000px;}
.ws9b{word-spacing:71.550000px;}
.ws96{word-spacing:167.778000px;}
.ws97{word-spacing:190.512000px;}
.ws9e{word-spacing:287.820000px;}
._a{margin-left:-10.098000px;}
._8{margin-left:-8.127000px;}
._5{margin-left:-6.072000px;}
._7{margin-left:-4.861800px;}
._4{margin-left:-3.630000px;}
._0{margin-left:-2.203200px;}
._3{margin-left:-1.194600px;}
._6{width:1.181400px;}
._1{width:2.361600px;}
._2{width:4.377600px;}
._1a{width:6.308400px;}
._17{width:7.603200px;}
._19{width:9.253200px;}
._9{width:11.748000px;}
._18{width:16.839000px;}
._e{width:49.788000px;}
._12{width:58.968000px;}
._10{width:86.562000px;}
._d{width:101.574000px;}
._15{width:102.924000px;}
._16{width:189.756000px;}
._b{width:197.748000px;}
._f{width:205.578000px;}
._13{width:220.591800px;}
._11{width:230.688000px;}
._c{width:247.752000px;}
._14{width:287.844000px;}
.fc4{color:rgb(111,144,202);}
.fc6{color:rgb(238,39,46);}
.fc5{color:rgb(124,153,207);}
.fc3{color:rgb(31,97,171);}
.fc7{color:rgb(255,255,255);}
.fc2{color:rgb(46,42,43);}
.fc1{color:rgb(22,93,167);}
.fc0{color:rgb(41,102,175);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:71.467650px;}
.y28e{bottom:118.820850px;}
.y17{bottom:133.352550px;}
.y85{bottom:136.066200px;}
.y38{bottom:136.156500px;}
.y1{bottom:136.896000px;}
.yd9{bottom:139.717800px;}
.y28d{bottom:139.825350px;}
.ye9{bottom:141.975600px;}
.yc5{bottom:142.009800px;}
.y26f{bottom:145.449300px;}
.y2af{bottom:150.291600px;}
.y84{bottom:157.070700px;}
.y37{bottom:157.161000px;}
.ya1{bottom:160.059600px;}
.yd8{bottom:160.722300px;}
.y28c{bottom:160.829850px;}
.ye8{bottom:162.980100px;}
.yc4{bottom:163.014300px;}
.y26e{bottom:166.453800px;}
.y2ae{bottom:171.296100px;}
.y83{bottom:178.075200px;}
.y36{bottom:178.165500px;}
.ya0{bottom:181.064100px;}
.yd7{bottom:181.726800px;}
.ye7{bottom:183.984600px;}
.yc3{bottom:184.018800px;}
.y26d{bottom:187.458300px;}
.y1ce{bottom:190.741950px;}
.y2ad{bottom:192.300600px;}
.y176{bottom:193.077450px;}
.y28b{bottom:194.588850px;}
.y82{bottom:199.079700px;}
.y35{bottom:199.170000px;}
.y235{bottom:200.853450px;}
.y9f{bottom:202.068600px;}
.yd6{bottom:202.731300px;}
.ye6{bottom:204.989100px;}
.yc2{bottom:205.023300px;}
.y171{bottom:205.578450px;}
.y1cd{bottom:207.238950px;}
.y26c{bottom:208.462800px;}
.y175{bottom:209.574450px;}
.y230{bottom:213.354450px;}
.y28a{bottom:215.593350px;}
.y234{bottom:217.350450px;}
.y16{bottom:219.018750px;}
.y1c7{bottom:219.726450px;}
.y81{bottom:220.084200px;}
.y34{bottom:220.174500px;}
.y170{bottom:222.075450px;}
.y9e{bottom:223.073100px;}
.yd5{bottom:223.735800px;}
.y1cc{bottom:223.735950px;}
.ye5{bottom:225.993600px;}
.yc1{bottom:226.027800px;}
.y2ac{bottom:226.059600px;}
.y174{bottom:226.071450px;}
.y6b{bottom:227.577600px;}
.y26b{bottom:229.467300px;}
.y22d{bottom:229.851450px;}
.y16d{bottom:230.323950px;}
.y233{bottom:233.847450px;}
.y1c6{bottom:236.223450px;}
.y22c{bottom:238.099950px;}
.y16f{bottom:238.572450px;}
.y15{bottom:240.023250px;}
.y1cb{bottom:240.232950px;}
.y80{bottom:241.088700px;}
.y33{bottom:241.179000px;}
.y119{bottom:243.016050px;}
.y9d{bottom:244.077600px;}
.y1c3{bottom:244.471950px;}
.yd4{bottom:244.740300px;}
.y22f{bottom:246.348450px;}
.y173{bottom:246.820950px;}
.ye4{bottom:246.998100px;}
.y2ab{bottom:247.064100px;}
.y6a{bottom:248.582100px;}
.y289{bottom:249.352350px;}
.y1c5{bottom:252.720450px;}
.y232{bottom:254.596950px;}
.y16e{bottom:255.069450px;}
.y1ca{bottom:256.729950px;}
.y118{bottom:259.513050px;}
.yc0{bottom:259.786800px;}
.y14{bottom:261.027750px;}
.y7f{bottom:262.093200px;}
.y32{bottom:262.183500px;}
.y22e{bottom:262.845450px;}
.y26a{bottom:263.226300px;}
.y9c{bottom:265.082100px;}
.yd3{bottom:265.744800px;}
.y172{bottom:267.570450px;}
.y1c4{bottom:269.217450px;}
.y69{bottom:269.586600px;}
.y288{bottom:270.356850px;}
.y113{bottom:272.000550px;}
.y2be{bottom:272.573100px;}
.y231{bottom:275.346450px;}
.y117{bottom:276.010050px;}
.y1c9{bottom:277.479450px;}
.y111{bottom:280.249050px;}
.ye3{bottom:280.757100px;}
.ybf{bottom:280.791300px;}
.y2aa{bottom:280.823100px;}
.y13{bottom:282.032250px;}
.y7e{bottom:283.097700px;}
.y269{bottom:284.230800px;}
.y9b{bottom:286.086600px;}
.yd2{bottom:286.749300px;}
.y110{bottom:288.497550px;}
.y68{bottom:290.591100px;}
.y16c{bottom:291.276450px;}
.y116{bottom:292.507050px;}
.y2bd{bottom:293.577600px;}
.y168{bottom:295.528950px;}
.y31{bottom:295.942500px;}
.y1c8{bottom:298.228950px;}
.y22b{bottom:299.052450px;}
.ye2{bottom:301.761600px;}
.ybe{bottom:301.795800px;}
.y2a9{bottom:301.827600px;}
.y12{bottom:303.036750px;}
.y227{bottom:303.304950px;}
.y164{bottom:303.763950px;}
.y7d{bottom:304.102200px;}
.y287{bottom:304.115850px;}
.y112{bottom:304.994550px;}
.y268{bottom:305.235300px;}
.yd1{bottom:307.753800px;}
.y16b{bottom:307.773450px;}
.y67{bottom:311.595600px;}
.y167{bottom:312.025950px;}
.y115{bottom:313.256550px;}
.y22a{bottom:315.549450px;}
.y30{bottom:316.947000px;}
.y222{bottom:319.788450px;}
.y226{bottom:319.801950px;}
.y9a{bottom:319.845600px;}
.y162{bottom:320.260950px;}
.y169{bottom:320.274450px;}
.y1c2{bottom:321.934950px;}
.ye1{bottom:322.766100px;}
.ybd{bottom:322.800300px;}
.y2a8{bottom:322.832100px;}
.y7c{bottom:325.106700px;}
.y286{bottom:325.120350px;}
.y2bc{bottom:327.336600px;}
.y166{bottom:328.522950px;}
.yd0{bottom:328.758300px;}
.y229{bottom:332.046450px;}
.y114{bottom:334.006050px;}
.y220{bottom:336.285450px;}
.y225{bottom:336.298950px;}
.y163{bottom:336.757950px;}
.y2f{bottom:337.951500px;}
.y1c1{bottom:338.431950px;}
.y99{bottom:340.850100px;}
.y1b9{bottom:342.657450px;}
.ye0{bottom:343.770600px;}
.ybc{bottom:343.804800px;}
.y165{bottom:345.019950px;}
.y66{bottom:345.354600px;}
.y7b{bottom:346.111200px;}
.y285{bottom:346.124850px;}
.y267{bottom:347.495100px;}
.y2bb{bottom:348.341100px;}
.y16a{bottom:349.272450px;}
.ycf{bottom:349.762800px;}
.y221{bottom:352.782450px;}
.y224{bottom:352.795950px;}
.y1c0{bottom:354.928950px;}
.y2a7{bottom:356.591100px;}
.y10f{bottom:357.698550px;}
.y2e{bottom:358.956000px;}
.y1b8{bottom:359.154450px;}
.y98{bottom:361.854600px;}
.ydf{bottom:364.775100px;}
.y65{bottom:366.359100px;}
.y7a{bottom:367.115700px;}
.y223{bottom:369.292950px;}
.yce{bottom:370.767300px;}
.y1bf{bottom:371.425950px;}
.y161{bottom:372.964950px;}
.y228{bottom:373.545450px;}
.y10e{bottom:374.195550px;}
.y1b3{bottom:375.637950px;}
.y1b7{bottom:375.651450px;}
.ybb{bottom:377.563800px;}
.y2a6{bottom:377.595600px;}
.y284{bottom:379.883850px;}
.y2d{bottom:379.960500px;}
.y2ba{bottom:382.100100px;}
.y97{bottom:382.859100px;}
.y1b2{bottom:383.886450px;}
.y1ba{bottom:383.913450px;}
.y15d{bottom:385.465950px;}
.yde{bottom:385.779600px;}
.y10a{bottom:386.696550px;}
.y64{bottom:387.363600px;}
.y1be{bottom:387.922950px;}
.y79{bottom:388.120200px;}
.y160{bottom:389.461950px;}
.y10d{bottom:390.692550px;}
.ycd{bottom:391.771800px;}
.y1b6{bottom:392.148450px;}
.y109{bottom:394.945050px;}
.y21f{bottom:397.237950px;}
.yba{bottom:398.568300px;}
.y11{bottom:399.264750px;}
.y283{bottom:400.888350px;}
.y2c{bottom:400.965000px;}
.y21b{bottom:401.490450px;}
.y15b{bottom:401.962950px;}
.y96{bottom:403.863600px;}
.y1bd{bottom:404.419950px;}
.y266{bottom:405.904950px;}
.ydd{bottom:406.784100px;}
.y63{bottom:408.368100px;}
.y1b5{bottom:408.645450px;}
.y78{bottom:409.124700px;}
.y15f{bottom:410.211450px;}
.y2a5{bottom:411.354600px;}
.y10c{bottom:411.442050px;}
.y21e{bottom:413.734950px;}
.y2b9{bottom:415.859100px;}
.y21a{bottom:417.987450px;}
.y15c{bottom:418.459950px;}
.yb9{bottom:419.572800px;}
.y10{bottom:420.269250px;}
.y282{bottom:421.892850px;}
.y265{bottom:422.401950px;}
.y95{bottom:424.868100px;}
.y1b4{bottom:425.142450px;}
.y1bc{bottom:425.169450px;}
.ycc{bottom:425.530800px;}
.y216{bottom:426.222450px;}
.y262{bottom:426.654450px;}
.y62{bottom:429.372600px;}
.y21d{bottom:430.231950px;}
.y15e{bottom:430.960950px;}
.y10b{bottom:432.191550px;}
.y2a4{bottom:432.359100px;}
.y215{bottom:434.470950px;}
.y219{bottom:434.484450px;}
.y2b{bottom:434.724000px;}
.y260{bottom:434.902950px;}
.y2b8{bottom:436.863600px;}
.y264{bottom:438.898950px;}
.yb8{bottom:440.577300px;}
.yf{bottom:441.273750px;}
.y77{bottom:442.883700px;}
.y25f{bottom:443.151450px;}
.y94{bottom:445.872600px;}
.y1bb{bottom:445.918950px;}
.ycb{bottom:446.535300px;}
.y61{bottom:450.377100px;}
.y218{bottom:450.981450px;}
.y15a{bottom:454.666950px;}
.y281{bottom:455.651850px;}
.y2a{bottom:455.728500px;}
.y108{bottom:455.897550px;}
.y2b7{bottom:457.868100px;}
.y261{bottom:459.648450px;}
.yb7{bottom:461.581800px;}
.y76{bottom:463.888200px;}
.y2a3{bottom:466.118100px;}
.y156{bottom:467.167950px;}
.y217{bottom:467.478450px;}
.yca{bottom:467.539800px;}
.y1b1{bottom:469.597950px;}
.ye{bottom:470.775750px;}
.y159{bottom:471.163950px;}
.y60{bottom:471.381600px;}
.y21c{bottom:471.730950px;}
.y107{bottom:472.394550px;}
.y154{bottom:475.416450px;}
.y280{bottom:476.656350px;}
.y29{bottom:476.733000px;}
.y93{bottom:479.631600px;}
.y263{bottom:480.397950px;}
.yb6{bottom:482.586300px;}
.y153{bottom:483.664950px;}
.y102{bottom:484.882050px;}
.y75{bottom:484.892700px;}
.y1b0{bottom:486.094950px;}
.y2a2{bottom:487.122600px;}
.yc9{bottom:488.544300px;}
.y106{bottom:488.891550px;}
.y2b6{bottom:491.627100px;}
.yd{bottom:491.780250px;}
.y158{bottom:491.913450px;}
.y5f{bottom:492.386100px;}
.y214{bottom:495.423450px;}
.y27f{bottom:497.660850px;}
.y28{bottom:497.737500px;}
.y210{bottom:499.675950px;}
.y155{bottom:500.161950px;}
.y92{bottom:500.636100px;}
.y100{bottom:501.379050px;}
.y1af{bottom:502.591950px;}
.yb5{bottom:503.590800px;}
.y25e{bottom:504.103950px;}
.y105{bottom:505.388550px;}
.y74{bottom:505.897200px;}
.y1a8{bottom:506.830950px;}
.yc8{bottom:509.548800px;}
.y213{bottom:511.920450px;}
.y2b5{bottom:512.631600px;}
.y157{bottom:512.662950px;}
.yc{bottom:512.784750px;}
.y1a4{bottom:515.065950px;}
.y20b{bottom:516.159450px;}
.y20f{bottom:516.172950px;}
.y101{bottom:517.876050px;}
.y27{bottom:518.742000px;}
.y1ae{bottom:519.088950px;}
.y25d{bottom:520.600950px;}
.y2a1{bottom:520.881600px;}
.y91{bottom:521.640600px;}
.y1a7{bottom:523.327950px;}
.y104{bottom:526.138050px;}
.y5e{bottom:526.145100px;}
.y73{bottom:526.901700px;}
.y212{bottom:528.417450px;}
.y27e{bottom:531.419850px;}
.y1a2{bottom:531.562950px;}
.y1a9{bottom:531.576450px;}
.y209{bottom:532.656450px;}
.y20e{bottom:532.669950px;}
.y259{bottom:533.101950px;}
.y2b4{bottom:533.636100px;}
.y1ad{bottom:535.585950px;}
.y152{bottom:536.368950px;}
.y25c{bottom:537.097950px;}
.y26{bottom:539.746500px;}
.y1a6{bottom:539.824950px;}
.y258{bottom:541.350450px;}
.y2a0{bottom:541.886100px;}
.yb{bottom:542.286750px;}
.y90{bottom:542.645100px;}
.y103{bottom:546.887550px;}
.y5d{bottom:547.149600px;}
.y72{bottom:547.906200px;}
.y1a3{bottom:548.059950px;}
.y14e{bottom:548.869950px;}
.y20a{bottom:549.153450px;}
.y20d{bottom:549.166950px;}
.y1ac{bottom:552.082950px;}
.y27d{bottom:552.424350px;}
.y151{bottom:552.865950px;}
.y1a5{bottom:556.321950px;}
.y25b{bottom:557.847450px;}
.y25{bottom:560.751000px;}
.ya{bottom:563.291250px;}
.y8f{bottom:563.649600px;}
.y14c{bottom:565.366950px;}
.y20c{bottom:565.663950px;}
.y2b3{bottom:567.395100px;}
.y5c{bottom:568.154100px;}
.y71{bottom:568.910700px;}
.y211{bottom:569.916450px;}
.yff{bottom:570.580050px;}
.y1ab{bottom:572.832450px;}
.y150{bottom:573.615450px;}
.y29f{bottom:575.645100px;}
.y25a{bottom:578.596950px;}
.y24{bottom:581.755500px;}
.y14d{bottom:581.863950px;}
.y9{bottom:584.295750px;}
.y8e{bottom:584.654100px;}
.y27c{bottom:586.183350px;}
.yfe{bottom:587.077050px;}
.y2b2{bottom:588.399600px;}
.y5b{bottom:589.158600px;}
.y1aa{bottom:593.581950px;}
.y208{bottom:593.608950px;}
.y14f{bottom:594.364950px;}
.yf9{bottom:599.564550px;}
.y257{bottom:602.302950px;}
.y70{bottom:602.669700px;}
.y23{bottom:602.760000px;}
.yfd{bottom:603.574050px;}
.y27b{bottom:607.187850px;}
.yf7{bottom:607.813050px;}
.y29e{bottom:609.404100px;}
.y207{bottom:610.105950px;}
.y5a{bottom:610.163100px;}
.y8{bottom:613.797750px;}
.yf6{bottom:616.061550px;}
.y1a1{bottom:617.274450px;}
.y14b{bottom:618.070950px;}
.y8d{bottom:618.413100px;}
.y256{bottom:618.799950px;}
.yfc{bottom:620.071050px;}
.y6f{bottom:623.674200px;}
.y206{bottom:626.602950px;}
.y29d{bottom:630.408600px;}
.y200{bottom:630.841950px;}
.y59{bottom:631.167600px;}
.y252{bottom:631.300950px;}
.yf8{bottom:632.558550px;}
.y1a0{bottom:633.771450px;}
.y14a{bottom:634.567950px;}
.y7{bottom:634.802250px;}
.y255{bottom:635.296950px;}
.yb4{bottom:636.274650px;}
.y22{bottom:636.519000px;}
.y145{bottom:638.806950px;}
.y8c{bottom:639.417600px;}
.y251{bottom:639.549450px;}
.yfb{bottom:640.820550px;}
.y27a{bottom:640.946850px;}
.y205{bottom:643.099950px;}
.y2b1{bottom:643.163100px;}
.y6e{bottom:644.678700px;}
.y1fd{bottom:647.338950px;}
.y19f{bottom:650.268450px;}
.y149{bottom:651.064950px;}
.y58{bottom:652.172100px;}
.yb3{bottom:652.771650px;}
.y142{bottom:655.303950px;}
.y1fc{bottom:655.587450px;}
.y6{bottom:655.806750px;}
.y254{bottom:656.046450px;}
.y21{bottom:657.523500px;}
.y204{bottom:659.596950px;}
.y8b{bottom:660.422100px;}
.yfa{bottom:661.570050px;}
.y279{bottom:661.951350px;}
.y198{bottom:662.755950px;}
.y141{bottom:663.552450px;}
.y1ff{bottom:663.835950px;}
.y29c{bottom:664.167600px;}
.y19e{bottom:666.765450px;}
.y148{bottom:667.561950px;}
.y194{bottom:670.990950px;}
.y144{bottom:671.800950px;}
.y57{bottom:673.176600px;}
.y203{bottom:676.093950px;}
.y253{bottom:676.795950px;}
.yb2{bottom:677.681100px;}
.y20{bottom:678.528000px;}
.y197{bottom:679.252950px;}
.y1fe{bottom:680.332950px;}
.y8a{bottom:681.426600px;}
.y278{bottom:682.955850px;}
.y19d{bottom:683.262450px;}
.y29b{bottom:685.172100px;}
.y192{bottom:687.487950px;}
.y143{bottom:688.297950px;}
.y147{bottom:688.311450px;}
.yf5{bottom:690.878550px;}
.y56{bottom:694.181100px;}
.y196{bottom:695.749950px;}
.y202{bottom:696.843450px;}
.yb1{bottom:698.685600px;}
.yf4{bottom:699.127050px;}
.y1f{bottom:699.532500px;}
.y19c{bottom:699.759450px;}
.y250{bottom:700.501950px;}
.y89{bottom:702.431100px;}
.y277{bottom:703.960350px;}
.y193{bottom:703.984950px;}
.y29a{bottom:706.176600px;}
.y146{bottom:709.060950px;}
.y195{bottom:712.246950px;}
.y55{bottom:715.185600px;}
.y19b{bottom:716.256450px;}
.y24f{bottom:716.998950px;}
.y201{bottom:717.592950px;}
.yb0{bottom:719.690100px;}
.y1e{bottom:720.537000px;}
.y24b{bottom:729.499950px;}
.y140{bottom:732.753450px;}
.y24e{bottom:733.495950px;}
.y54{bottom:736.190100px;}
.y19a{bottom:737.005950px;}
.yf3{bottom:737.495100px;}
.y276{bottom:737.719350px;}
.y24a{bottom:737.748450px;}
.y299{bottom:739.935600px;}
.y5{bottom:740.622300px;}
.yaf{bottom:740.694600px;}
.y1fb{bottom:741.298950px;}
.y1d{bottom:741.541500px;}
.y13f{bottom:749.250450px;}
.y13c{bottom:753.502950px;}
.yf2{bottom:753.992100px;}
.y24d{bottom:754.245450px;}
.y53{bottom:757.194600px;}
.y199{bottom:757.755450px;}
.y1fa{bottom:757.795950px;}
.y275{bottom:758.723850px;}
.y298{bottom:760.940100px;}
.yae{bottom:761.699100px;}
.y1ed{bottom:762.007950px;}
.y1f2{bottom:762.021450px;}
.y1c{bottom:762.546000px;}
.y13e{bottom:765.747450px;}
.y13a{bottom:769.999950px;}
.y1f9{bottom:774.292950px;}
.y24c{bottom:774.994950px;}
.y52{bottom:778.199100px;}
.y1ec{bottom:778.504950px;}
.y1f1{bottom:778.518450px;}
.yc7{bottom:779.022600px;}
.y4{bottom:779.610300px;}
.y274{bottom:779.728350px;}
.y191{bottom:781.447950px;}
.y297{bottom:781.944600px;}
.yad{bottom:782.703600px;}
.yf1{bottom:783.222450px;}
.y13b{bottom:786.496950px;}
.y1f4{bottom:786.780450px;}
.y1f8{bottom:790.789950px;}
.y1e9{bottom:795.001950px;}
.y1f0{bottom:795.015450px;}
.yc6{bottom:795.519600px;}
.y190{bottom:797.944950px;}
.y249{bottom:798.700950px;}
.y1f3{bottom:803.277450px;}
.yac{bottom:803.708100px;}
.yf0{bottom:804.226950px;}
.y1b{bottom:804.805800px;}
.y13d{bottom:807.246450px;}
.y1f7{bottom:807.286950px;}
.y1eb{bottom:811.498950px;}
.y1ef{bottom:811.512450px;}
.y51{bottom:811.958100px;}
.y18f{bottom:814.441950px;}
.y248{bottom:815.197950px;}
.y296{bottom:815.703600px;}
.y3{bottom:818.598300px;}
.y189{bottom:818.680950px;}
.y245{bottom:819.450450px;}
.y273{bottom:821.988150px;}
.yab{bottom:824.712600px;}
.yef{bottom:825.231450px;}
.y243{bottom:827.698950px;}
.y1ea{bottom:827.995950px;}
.y1ee{bottom:828.009450px;}
.y1f6{bottom:828.036450px;}
.y18e{bottom:830.938950px;}
.y139{bottom:830.952450px;}
.y247{bottom:831.694950px;}
.y50{bottom:832.962600px;}
.y186{bottom:835.177950px;}
.y242{bottom:835.947450px;}
.y295{bottom:836.708100px;}
.y130{bottom:843.426450px;}
.yaa{bottom:845.717100px;}
.y18d{bottom:847.435950px;}
.y138{bottom:847.449450px;}
.y1f5{bottom:848.785950px;}
.y188{bottom:851.674950px;}
.y244{bottom:852.444450px;}
.y4f{bottom:853.967100px;}
.y2{bottom:857.586300px;}
.y294{bottom:857.712600px;}
.yee{bottom:858.990450px;}
.y12f{bottom:859.923450px;}
.y18c{bottom:863.932950px;}
.y137{bottom:863.946450px;}
.ya9{bottom:866.721600px;}
.y129{bottom:868.158450px;}
.y187{bottom:868.171950px;}
.y2b0{bottom:870.467100px;}
.y1e8{bottom:872.464950px;}
.y246{bottom:873.193950px;}
.y4e{bottom:874.971600px;}
.y272{bottom:875.743050px;}
.ydc{bottom:875.769750px;}
.y12e{bottom:876.420450px;}
.yed{bottom:879.994950px;}
.y136{bottom:880.443450px;}
.y128{bottom:884.655450px;}
.y18b{bottom:884.682450px;}
.ya8{bottom:887.726100px;}
.y1e7{bottom:888.961950px;}
.y42{bottom:890.596500px;}
.y293{bottom:891.471600px;}
.ydb{bottom:892.266750px;}
.y125{bottom:892.903950px;}
.y12d{bottom:892.917450px;}
.y131{bottom:892.930950px;}
.y1e2{bottom:893.200950px;}
.y4d{bottom:895.976100px;}
.y271{bottom:896.747550px;}
.y241{bottom:896.899950px;}
.y135{bottom:896.940450px;}
.yec{bottom:900.999450px;}
.y127{bottom:901.152450px;}
.y1e0{bottom:901.449450px;}
.y18a{bottom:905.431950px;}
.y1e6{bottom:905.458950px;}
.ya7{bottom:908.730600px;}
.yda{bottom:908.763750px;}
.y12c{bottom:909.414450px;}
.y1df{bottom:909.697950px;}
.y41{bottom:911.601000px;}
.y292{bottom:912.476100px;}
.y240{bottom:913.396950px;}
.y134{bottom:913.437450px;}
.y4c{bottom:916.980600px;}
.y126{bottom:917.649450px;}
.y270{bottom:917.752050px;}
.y1e3{bottom:917.946450px;}
.yeb{bottom:922.003950px;}
.y12b{bottom:925.911450px;}
.y1e1{bottom:926.194950px;}
.y1e5{bottom:926.208450px;}
.y185{bottom:929.137950px;}
.ya6{bottom:929.735100px;}
.y23f{bottom:929.893950px;}
.y23c{bottom:934.146450px;}
.y133{bottom:934.186950px;}
.y4b{bottom:937.985100px;}
.y12a{bottom:942.408450px;}
.y40{bottom:945.357000px;}
.y184{bottom:945.634950px;}
.y291{bottom:946.235100px;}
.y1e4{bottom:946.957950px;}
.y23d{bottom:950.643450px;}
.ya5{bottom:950.739600px;}
.y132{bottom:954.936450px;}
.y17b{bottom:958.108950px;}
.y4a{bottom:958.989600px;}
.yea{bottom:960.011850px;}
.y183{bottom:962.131950px;}
.y290{bottom:967.239600px;}
.y1d6{bottom:970.623450px;}
.y23e{bottom:971.392950px;}
.ya4{bottom:971.744100px;}
.y17a{bottom:974.605950px;}
.y1de{bottom:974.646450px;}
.y124{bottom:978.615450px;}
.y182{bottom:978.628950px;}
.y49{bottom:979.994100px;}
.y3f{bottom:982.090350px;}
.y1d5{bottom:987.120450px;}
.y28f{bottom:988.244100px;}
.y178{bottom:991.089450px;}
.y179{bottom:991.102950px;}
.y1dd{bottom:991.143450px;}
.ya3{bottom:992.748600px;}
.y23b{bottom:995.098950px;}
.y123{bottom:995.112450px;}
.y181{bottom:995.125950px;}
.y177{bottom:999.337950px;}
.y17c{bottom:999.364950px;}
.y48{bottom:1000.998600px;}
.y3e{bottom:1003.094850px;}
.y1d4{bottom:1003.617450px;}
.y11e{bottom:1007.599950px;}
.y1dc{bottom:1007.640450px;}
.y23a{bottom:1011.595950px;}
.y122{bottom:1011.609450px;}
.y180{bottom:1011.622950px;}
.y1d0{bottom:1011.852450px;}
.y1d8{bottom:1011.879450px;}
.ya2{bottom:1013.753100px;}
.y1cf{bottom:1020.100950px;}
.y1d3{bottom:1020.114450px;}
.y88{bottom:1022.003100px;}
.y11c{bottom:1024.096950px;}
.y3d{bottom:1024.099350px;}
.y1db{bottom:1024.137450px;}
.y239{bottom:1028.092950px;}
.y121{bottom:1028.106450px;}
.y17f{bottom:1028.119950px;}
.y1d7{bottom:1028.376450px;}
.y236{bottom:1032.345450px;}
.y47{bottom:1034.757600px;}
.y1d2{bottom:1036.611450px;}
.y11d{bottom:1040.593950px;}
.y87{bottom:1043.007600px;}
.y1da{bottom:1044.886950px;}
.y3c{bottom:1045.103850px;}
.y238{bottom:1048.842450px;}
.y120{bottom:1048.855950px;}
.y17e{bottom:1048.869450px;}
.y1d1{bottom:1053.108450px;}
.y46{bottom:1055.762100px;}
.y86{bottom:1064.012100px;}
.y1d9{bottom:1065.636450px;}
.y3b{bottom:1066.108350px;}
.y237{bottom:1069.591950px;}
.y11f{bottom:1069.605450px;}
.y17d{bottom:1069.618950px;}
.y45{bottom:1076.766600px;}
.y3a{bottom:1087.112850px;}
.y44{bottom:1097.771100px;}
.y11b{bottom:1098.913950px;}
.y6d{bottom:1101.026100px;}
.y11a{bottom:1107.162450px;}
.y43{bottom:1118.775600px;}
.y39{bottom:1120.868850px;}
.y6c{bottom:1121.775600px;}
.y19{bottom:1180.236150px;}
.y18{bottom:1198.231650px;}
.h6{height:40.500000px;}
.h8{height:40.824000px;}
.h9{height:47.682000px;}
.h4{height:49.896000px;}
.ha{height:50.688000px;}
.h2{height:55.986328px;}
.h5{height:58.278000px;}
.h7{height:63.000000px;}
.hb{height:74.466000px;}
.hc{height:80.676000px;}
.h3{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299150px;}
.xb{left:122.751450px;}
.x7{left:126.858150px;}
.xd{left:159.025950px;}
.xa{left:181.299150px;}
.x8{left:184.150350px;}
.x2{left:186.163050px;}
.x4{left:190.735050px;}
.x3{left:221.119050px;}
.xe{left:266.742450px;}
.x9{left:330.800850px;}
.xc{left:398.002950px;}
.x11{left:415.039950px;}
.x12{left:417.267450px;}
.xf{left:428.661450px;}
.x10{left:487.845450px;}
.x5{left:542.455050px;}
.x1{left:816.378000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.328000pt;}
.ls0{letter-spacing:-5.450667pt;}
.ls7{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.645333pt;}
.ls4{letter-spacing:90.288000pt;}
.ws7{word-spacing:-22.176000pt;}
.wsb5{word-spacing:-16.602667pt;}
.ws0{word-spacing:-16.309333pt;}
.wsa2{word-spacing:-15.722667pt;}
.wsa9{word-spacing:-15.136000pt;}
.ws9a{word-spacing:-13.344000pt;}
.ws9c{word-spacing:-13.296000pt;}
.ws6b{word-spacing:-7.626667pt;}
.ws10{word-spacing:-5.397333pt;}
.ws6e{word-spacing:-5.104000pt;}
.wsb0{word-spacing:-4.165333pt;}
.ws6a{word-spacing:-4.048000pt;}
.wsf{word-spacing:-3.930667pt;}
.ws5b{word-spacing:-3.696000pt;}
.wsb2{word-spacing:-3.402667pt;}
.ws54{word-spacing:-3.344000pt;}
.wsa4{word-spacing:-3.226667pt;}
.ws21{word-spacing:-3.109333pt;}
.ws38{word-spacing:-3.050667pt;}
.ws35{word-spacing:-2.992000pt;}
.ws2f{word-spacing:-2.874667pt;}
.wsd{word-spacing:-2.816000pt;}
.ws77{word-spacing:-2.757333pt;}
.wsaf{word-spacing:-2.698667pt;}
.ws4e{word-spacing:-2.640000pt;}
.wsac{word-spacing:-2.581333pt;}
.ws34{word-spacing:-2.522667pt;}
.wsc{word-spacing:-2.405333pt;}
.ws75{word-spacing:-2.346667pt;}
.ws4f{word-spacing:-2.288000pt;}
.ws41{word-spacing:-2.229333pt;}
.ws1e{word-spacing:-2.170667pt;}
.ws2a{word-spacing:-1.877333pt;}
.ws98{word-spacing:-1.760000pt;}
.ws15{word-spacing:-1.701333pt;}
.ws3e{word-spacing:-1.642667pt;}
.ws5a{word-spacing:-1.584000pt;}
.ws73{word-spacing:-1.466667pt;}
.ws40{word-spacing:-1.290667pt;}
.ws42{word-spacing:-1.232000pt;}
.ws16{word-spacing:-1.173333pt;}
.ws3f{word-spacing:-1.114667pt;}
.ws63{word-spacing:-0.938667pt;}
.ws25{word-spacing:-0.880000pt;}
.ws92{word-spacing:-0.821333pt;}
.ws9d{word-spacing:-0.624000pt;}
.ws18{word-spacing:-0.586667pt;}
.ws57{word-spacing:-0.528000pt;}
.ws56{word-spacing:-0.410667pt;}
.ws95{word-spacing:-0.352000pt;}
.ws62{word-spacing:-0.293333pt;}
.ws53{word-spacing:-0.234667pt;}
.wsbe{word-spacing:-0.176000pt;}
.ws43{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws22{word-spacing:0.058667pt;}
.wsaa{word-spacing:0.117333pt;}
.ws51{word-spacing:0.176000pt;}
.ws6c{word-spacing:0.234667pt;}
.ws14{word-spacing:0.352000pt;}
.ws2d{word-spacing:0.410667pt;}
.ws5c{word-spacing:0.469333pt;}
.ws45{word-spacing:0.528000pt;}
.ws52{word-spacing:0.586667pt;}
.ws89{word-spacing:0.645333pt;}
.ws49{word-spacing:0.704000pt;}
.ws4d{word-spacing:0.762667pt;}
.ws6{word-spacing:0.821333pt;}
.ws39{word-spacing:0.880000pt;}
.ws99{word-spacing:0.938667pt;}
.ws48{word-spacing:0.997333pt;}
.ws66{word-spacing:1.056000pt;}
.ws17{word-spacing:1.114667pt;}
.ws5{word-spacing:1.173333pt;}
.wsb8{word-spacing:1.232000pt;}
.ws7a{word-spacing:1.349333pt;}
.ws90{word-spacing:1.408000pt;}
.wsbb{word-spacing:1.466667pt;}
.ws5e{word-spacing:1.525333pt;}
.ws1c{word-spacing:1.584000pt;}
.ws30{word-spacing:1.642667pt;}
.ws31{word-spacing:1.701333pt;}
.ws72{word-spacing:1.760000pt;}
.ws60{word-spacing:1.818667pt;}
.ws23{word-spacing:1.877333pt;}
.ws58{word-spacing:1.936000pt;}
.ws8a{word-spacing:1.994667pt;}
.ws65{word-spacing:2.112000pt;}
.ws13{word-spacing:2.170667pt;}
.ws68{word-spacing:2.229333pt;}
.ws2c{word-spacing:2.288000pt;}
.ws8c{word-spacing:2.346667pt;}
.ws1a{word-spacing:2.405333pt;}
.ws27{word-spacing:2.522667pt;}
.ws6f{word-spacing:2.581333pt;}
.ws6d{word-spacing:2.640000pt;}
.ws76{word-spacing:2.698667pt;}
.ws7e{word-spacing:2.757333pt;}
.wsab{word-spacing:2.816000pt;}
.ws44{word-spacing:2.874667pt;}
.wsa1{word-spacing:2.992000pt;}
.ws29{word-spacing:3.050667pt;}
.ws84{word-spacing:3.168000pt;}
.ws55{word-spacing:3.344000pt;}
.wsae{word-spacing:3.402667pt;}
.wsb6{word-spacing:3.461333pt;}
.ws91{word-spacing:3.578667pt;}
.ws1b{word-spacing:3.637333pt;}
.ws85{word-spacing:3.696000pt;}
.ws26{word-spacing:3.754667pt;}
.ws82{word-spacing:3.813333pt;}
.ws47{word-spacing:3.872000pt;}
.ws59{word-spacing:3.989333pt;}
.ws5f{word-spacing:4.048000pt;}
.ws1f{word-spacing:4.224000pt;}
.wsa6{word-spacing:4.282667pt;}
.ws7f{word-spacing:4.341333pt;}
.ws69{word-spacing:4.458667pt;}
.ws8b{word-spacing:4.517333pt;}
.ws3c{word-spacing:4.576000pt;}
.wsb1{word-spacing:4.634667pt;}
.ws8e{word-spacing:4.810667pt;}
.wsb3{word-spacing:4.869333pt;}
.wsa7{word-spacing:4.928000pt;}
.wsb9{word-spacing:4.986667pt;}
.wse{word-spacing:5.045333pt;}
.ws50{word-spacing:5.162667pt;}
.ws80{word-spacing:5.221333pt;}
.ws71{word-spacing:5.280000pt;}
.ws9f{word-spacing:5.338667pt;}
.ws1{word-spacing:5.450667pt;}
.ws3a{word-spacing:5.456000pt;}
.wsba{word-spacing:5.573333pt;}
.ws70{word-spacing:5.690667pt;}
.wsad{word-spacing:5.749333pt;}
.ws8d{word-spacing:5.808000pt;}
.wsa3{word-spacing:5.984000pt;}
.ws33{word-spacing:6.042667pt;}
.ws74{word-spacing:6.101333pt;}
.ws24{word-spacing:6.160000pt;}
.ws37{word-spacing:6.218667pt;}
.ws83{word-spacing:6.277333pt;}
.ws19{word-spacing:6.336000pt;}
.ws67{word-spacing:6.394667pt;}
.ws61{word-spacing:6.629333pt;}
.ws2e{word-spacing:6.688000pt;}
.ws36{word-spacing:6.746667pt;}
.ws78{word-spacing:6.805333pt;}
.ws7c{word-spacing:6.864000pt;}
.ws28{word-spacing:6.922667pt;}
.ws32{word-spacing:7.098667pt;}
.ws2b{word-spacing:7.216000pt;}
.wsb{word-spacing:7.274667pt;}
.ws5d{word-spacing:7.333333pt;}
.ws9{word-spacing:7.509333pt;}
.ws7d{word-spacing:7.685333pt;}
.ws4b{word-spacing:7.744000pt;}
.ws87{word-spacing:7.802667pt;}
.ws86{word-spacing:7.978667pt;}
.ws64{word-spacing:8.037333pt;}
.ws3b{word-spacing:8.272000pt;}
.ws3d{word-spacing:8.506667pt;}
.ws94{word-spacing:8.565333pt;}
.ws79{word-spacing:8.741333pt;}
.wsb7{word-spacing:9.034667pt;}
.ws88{word-spacing:9.093333pt;}
.ws46{word-spacing:9.328000pt;}
.wsa0{word-spacing:9.445333pt;}
.ws81{word-spacing:9.504000pt;}
.ws8{word-spacing:9.738667pt;}
.ws1d{word-spacing:9.914667pt;}
.wsbc{word-spacing:10.208000pt;}
.ws12{word-spacing:10.442667pt;}
.wsa5{word-spacing:10.501333pt;}
.wsa{word-spacing:11.205333pt;}
.wsb4{word-spacing:11.322667pt;}
.ws4c{word-spacing:11.674667pt;}
.ws93{word-spacing:12.026667pt;}
.ws3{word-spacing:12.554667pt;}
.ws8f{word-spacing:13.258667pt;}
.ws11{word-spacing:13.376000pt;}
.wsa8{word-spacing:14.490667pt;}
.ws7b{word-spacing:15.488000pt;}
.ws4{word-spacing:16.602667pt;}
.ws20{word-spacing:18.245333pt;}
.ws4a{word-spacing:22.645333pt;}
.wsbd{word-spacing:23.936000pt;}
.ws9b{word-spacing:63.600000pt;}
.ws96{word-spacing:149.136000pt;}
.ws97{word-spacing:169.344000pt;}
.ws9e{word-spacing:255.840000pt;}
._a{margin-left:-8.976000pt;}
._8{margin-left:-7.224000pt;}
._5{margin-left:-5.397333pt;}
._7{margin-left:-4.321600pt;}
._4{margin-left:-3.226667pt;}
._0{margin-left:-1.958400pt;}
._3{margin-left:-1.061867pt;}
._6{width:1.050133pt;}
._1{width:2.099200pt;}
._2{width:3.891200pt;}
._1a{width:5.607467pt;}
._17{width:6.758400pt;}
._19{width:8.225067pt;}
._9{width:10.442667pt;}
._18{width:14.968000pt;}
._e{width:44.256000pt;}
._12{width:52.416000pt;}
._10{width:76.944000pt;}
._d{width:90.288000pt;}
._15{width:91.488000pt;}
._16{width:168.672000pt;}
._b{width:175.776000pt;}
._f{width:182.736000pt;}
._13{width:196.081600pt;}
._11{width:205.056000pt;}
._c{width:220.224000pt;}
._14{width:255.861333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:63.526800pt;}
.y28e{bottom:105.618533pt;}
.y17{bottom:118.535600pt;}
.y85{bottom:120.947733pt;}
.y38{bottom:121.028000pt;}
.y1{bottom:121.685333pt;}
.yd9{bottom:124.193600pt;}
.y28d{bottom:124.289200pt;}
.ye9{bottom:126.200533pt;}
.yc5{bottom:126.230933pt;}
.y26f{bottom:129.288267pt;}
.y2af{bottom:133.592533pt;}
.y84{bottom:139.618400pt;}
.y37{bottom:139.698667pt;}
.ya1{bottom:142.275200pt;}
.yd8{bottom:142.864267pt;}
.y28c{bottom:142.959867pt;}
.ye8{bottom:144.871200pt;}
.yc4{bottom:144.901600pt;}
.y26e{bottom:147.958933pt;}
.y2ae{bottom:152.263200pt;}
.y83{bottom:158.289067pt;}
.y36{bottom:158.369333pt;}
.ya0{bottom:160.945867pt;}
.yd7{bottom:161.534933pt;}
.ye7{bottom:163.541867pt;}
.yc3{bottom:163.572267pt;}
.y26d{bottom:166.629600pt;}
.y1ce{bottom:169.548400pt;}
.y2ad{bottom:170.933867pt;}
.y176{bottom:171.624400pt;}
.y28b{bottom:172.967867pt;}
.y82{bottom:176.959733pt;}
.y35{bottom:177.040000pt;}
.y235{bottom:178.536400pt;}
.y9f{bottom:179.616533pt;}
.yd6{bottom:180.205600pt;}
.ye6{bottom:182.212533pt;}
.yc2{bottom:182.242933pt;}
.y171{bottom:182.736400pt;}
.y1cd{bottom:184.212400pt;}
.y26c{bottom:185.300267pt;}
.y175{bottom:186.288400pt;}
.y230{bottom:189.648400pt;}
.y28a{bottom:191.638533pt;}
.y234{bottom:193.200400pt;}
.y16{bottom:194.683333pt;}
.y1c7{bottom:195.312400pt;}
.y81{bottom:195.630400pt;}
.y34{bottom:195.710667pt;}
.y170{bottom:197.400400pt;}
.y9e{bottom:198.287200pt;}
.yd5{bottom:198.876267pt;}
.y1cc{bottom:198.876400pt;}
.ye5{bottom:200.883200pt;}
.yc1{bottom:200.913600pt;}
.y2ac{bottom:200.941867pt;}
.y174{bottom:200.952400pt;}
.y6b{bottom:202.291200pt;}
.y26b{bottom:203.970933pt;}
.y22d{bottom:204.312400pt;}
.y16d{bottom:204.732400pt;}
.y233{bottom:207.864400pt;}
.y1c6{bottom:209.976400pt;}
.y22c{bottom:211.644400pt;}
.y16f{bottom:212.064400pt;}
.y15{bottom:213.354000pt;}
.y1cb{bottom:213.540400pt;}
.y80{bottom:214.301067pt;}
.y33{bottom:214.381333pt;}
.y119{bottom:216.014267pt;}
.y9d{bottom:216.957867pt;}
.y1c3{bottom:217.308400pt;}
.yd4{bottom:217.546933pt;}
.y22f{bottom:218.976400pt;}
.y173{bottom:219.396400pt;}
.ye4{bottom:219.553867pt;}
.y2ab{bottom:219.612533pt;}
.y6a{bottom:220.961867pt;}
.y289{bottom:221.646533pt;}
.y1c5{bottom:224.640400pt;}
.y232{bottom:226.308400pt;}
.y16e{bottom:226.728400pt;}
.y1ca{bottom:228.204400pt;}
.y118{bottom:230.678267pt;}
.yc0{bottom:230.921600pt;}
.y14{bottom:232.024667pt;}
.y7f{bottom:232.971733pt;}
.y32{bottom:233.052000pt;}
.y22e{bottom:233.640400pt;}
.y26a{bottom:233.978933pt;}
.y9c{bottom:235.628533pt;}
.yd3{bottom:236.217600pt;}
.y172{bottom:237.840400pt;}
.y1c4{bottom:239.304400pt;}
.y69{bottom:239.632533pt;}
.y288{bottom:240.317200pt;}
.y113{bottom:241.778267pt;}
.y2be{bottom:242.287200pt;}
.y231{bottom:244.752400pt;}
.y117{bottom:245.342267pt;}
.y1c9{bottom:246.648400pt;}
.y111{bottom:249.110267pt;}
.ye3{bottom:249.561867pt;}
.ybf{bottom:249.592267pt;}
.y2aa{bottom:249.620533pt;}
.y13{bottom:250.695333pt;}
.y7e{bottom:251.642400pt;}
.y269{bottom:252.649600pt;}
.y9b{bottom:254.299200pt;}
.yd2{bottom:254.888267pt;}
.y110{bottom:256.442267pt;}
.y68{bottom:258.303200pt;}
.y16c{bottom:258.912400pt;}
.y116{bottom:260.006267pt;}
.y2bd{bottom:260.957867pt;}
.y168{bottom:262.692400pt;}
.y31{bottom:263.060000pt;}
.y1c8{bottom:265.092400pt;}
.y22b{bottom:265.824400pt;}
.ye2{bottom:268.232533pt;}
.ybe{bottom:268.262933pt;}
.y2a9{bottom:268.291200pt;}
.y12{bottom:269.366000pt;}
.y227{bottom:269.604400pt;}
.y164{bottom:270.012400pt;}
.y7d{bottom:270.313067pt;}
.y287{bottom:270.325200pt;}
.y112{bottom:271.106267pt;}
.y268{bottom:271.320267pt;}
.yd1{bottom:273.558933pt;}
.y16b{bottom:273.576400pt;}
.y67{bottom:276.973867pt;}
.y167{bottom:277.356400pt;}
.y115{bottom:278.450267pt;}
.y22a{bottom:280.488400pt;}
.y30{bottom:281.730667pt;}
.y222{bottom:284.256400pt;}
.y226{bottom:284.268400pt;}
.y9a{bottom:284.307200pt;}
.y162{bottom:284.676400pt;}
.y169{bottom:284.688400pt;}
.y1c2{bottom:286.164400pt;}
.ye1{bottom:286.903200pt;}
.ybd{bottom:286.933600pt;}
.y2a8{bottom:286.961867pt;}
.y7c{bottom:288.983733pt;}
.y286{bottom:288.995867pt;}
.y2bc{bottom:290.965867pt;}
.y166{bottom:292.020400pt;}
.yd0{bottom:292.229600pt;}
.y229{bottom:295.152400pt;}
.y114{bottom:296.894267pt;}
.y220{bottom:298.920400pt;}
.y225{bottom:298.932400pt;}
.y163{bottom:299.340400pt;}
.y2f{bottom:300.401333pt;}
.y1c1{bottom:300.828400pt;}
.y99{bottom:302.977867pt;}
.y1b9{bottom:304.584400pt;}
.ye0{bottom:305.573867pt;}
.ybc{bottom:305.604267pt;}
.y165{bottom:306.684400pt;}
.y66{bottom:306.981867pt;}
.y7b{bottom:307.654400pt;}
.y285{bottom:307.666533pt;}
.y267{bottom:308.884533pt;}
.y2bb{bottom:309.636533pt;}
.y16a{bottom:310.464400pt;}
.ycf{bottom:310.900267pt;}
.y221{bottom:313.584400pt;}
.y224{bottom:313.596400pt;}
.y1c0{bottom:315.492400pt;}
.y2a7{bottom:316.969867pt;}
.y10f{bottom:317.954267pt;}
.y2e{bottom:319.072000pt;}
.y1b8{bottom:319.248400pt;}
.y98{bottom:321.648533pt;}
.ydf{bottom:324.244533pt;}
.y65{bottom:325.652533pt;}
.y7a{bottom:326.325067pt;}
.y223{bottom:328.260400pt;}
.yce{bottom:329.570933pt;}
.y1bf{bottom:330.156400pt;}
.y161{bottom:331.524400pt;}
.y228{bottom:332.040400pt;}
.y10e{bottom:332.618267pt;}
.y1b3{bottom:333.900400pt;}
.y1b7{bottom:333.912400pt;}
.ybb{bottom:335.612267pt;}
.y2a6{bottom:335.640533pt;}
.y284{bottom:337.674533pt;}
.y2d{bottom:337.742667pt;}
.y2ba{bottom:339.644533pt;}
.y97{bottom:340.319200pt;}
.y1b2{bottom:341.232400pt;}
.y1ba{bottom:341.256400pt;}
.y15d{bottom:342.636400pt;}
.yde{bottom:342.915200pt;}
.y10a{bottom:343.730267pt;}
.y64{bottom:344.323200pt;}
.y1be{bottom:344.820400pt;}
.y79{bottom:344.995733pt;}
.y160{bottom:346.188400pt;}
.y10d{bottom:347.282267pt;}
.ycd{bottom:348.241600pt;}
.y1b6{bottom:348.576400pt;}
.y109{bottom:351.062267pt;}
.y21f{bottom:353.100400pt;}
.yba{bottom:354.282933pt;}
.y11{bottom:354.902000pt;}
.y283{bottom:356.345200pt;}
.y2c{bottom:356.413333pt;}
.y21b{bottom:356.880400pt;}
.y15b{bottom:357.300400pt;}
.y96{bottom:358.989867pt;}
.y1bd{bottom:359.484400pt;}
.y266{bottom:360.804400pt;}
.ydd{bottom:361.585867pt;}
.y63{bottom:362.993867pt;}
.y1b5{bottom:363.240400pt;}
.y78{bottom:363.666400pt;}
.y15f{bottom:364.632400pt;}
.y2a5{bottom:365.648533pt;}
.y10c{bottom:365.726267pt;}
.y21e{bottom:367.764400pt;}
.y2b9{bottom:369.652533pt;}
.y21a{bottom:371.544400pt;}
.y15c{bottom:371.964400pt;}
.yb9{bottom:372.953600pt;}
.y10{bottom:373.572667pt;}
.y282{bottom:375.015867pt;}
.y265{bottom:375.468400pt;}
.y95{bottom:377.660533pt;}
.y1b4{bottom:377.904400pt;}
.y1bc{bottom:377.928400pt;}
.ycc{bottom:378.249600pt;}
.y216{bottom:378.864400pt;}
.y262{bottom:379.248400pt;}
.y62{bottom:381.664533pt;}
.y21d{bottom:382.428400pt;}
.y15e{bottom:383.076400pt;}
.y10b{bottom:384.170267pt;}
.y2a4{bottom:384.319200pt;}
.y215{bottom:386.196400pt;}
.y219{bottom:386.208400pt;}
.y2b{bottom:386.421333pt;}
.y260{bottom:386.580400pt;}
.y2b8{bottom:388.323200pt;}
.y264{bottom:390.132400pt;}
.yb8{bottom:391.624267pt;}
.yf{bottom:392.243333pt;}
.y77{bottom:393.674400pt;}
.y25f{bottom:393.912400pt;}
.y94{bottom:396.331200pt;}
.y1bb{bottom:396.372400pt;}
.ycb{bottom:396.920267pt;}
.y61{bottom:400.335200pt;}
.y218{bottom:400.872400pt;}
.y15a{bottom:404.148400pt;}
.y281{bottom:405.023867pt;}
.y2a{bottom:405.092000pt;}
.y108{bottom:405.242267pt;}
.y2b7{bottom:406.993867pt;}
.y261{bottom:408.576400pt;}
.yb7{bottom:410.294933pt;}
.y76{bottom:412.345067pt;}
.y2a3{bottom:414.327200pt;}
.y156{bottom:415.260400pt;}
.y217{bottom:415.536400pt;}
.yca{bottom:415.590933pt;}
.y1b1{bottom:417.420400pt;}
.ye{bottom:418.467333pt;}
.y159{bottom:418.812400pt;}
.y60{bottom:419.005867pt;}
.y21c{bottom:419.316400pt;}
.y107{bottom:419.906267pt;}
.y154{bottom:422.592400pt;}
.y280{bottom:423.694533pt;}
.y29{bottom:423.762667pt;}
.y93{bottom:426.339200pt;}
.y263{bottom:427.020400pt;}
.yb6{bottom:428.965600pt;}
.y153{bottom:429.924400pt;}
.y102{bottom:431.006267pt;}
.y75{bottom:431.015733pt;}
.y1b0{bottom:432.084400pt;}
.y2a2{bottom:432.997867pt;}
.yc9{bottom:434.261600pt;}
.y106{bottom:434.570267pt;}
.y2b6{bottom:437.001867pt;}
.yd{bottom:437.138000pt;}
.y158{bottom:437.256400pt;}
.y5f{bottom:437.676533pt;}
.y214{bottom:440.376400pt;}
.y27f{bottom:442.365200pt;}
.y28{bottom:442.433333pt;}
.y210{bottom:444.156400pt;}
.y155{bottom:444.588400pt;}
.y92{bottom:445.009867pt;}
.y100{bottom:445.670267pt;}
.y1af{bottom:446.748400pt;}
.yb5{bottom:447.636267pt;}
.y25e{bottom:448.092400pt;}
.y105{bottom:449.234267pt;}
.y74{bottom:449.686400pt;}
.y1a8{bottom:450.516400pt;}
.yc8{bottom:452.932267pt;}
.y213{bottom:455.040400pt;}
.y2b5{bottom:455.672533pt;}
.y157{bottom:455.700400pt;}
.yc{bottom:455.808667pt;}
.y1a4{bottom:457.836400pt;}
.y20b{bottom:458.808400pt;}
.y20f{bottom:458.820400pt;}
.y101{bottom:460.334267pt;}
.y27{bottom:461.104000pt;}
.y1ae{bottom:461.412400pt;}
.y25d{bottom:462.756400pt;}
.y2a1{bottom:463.005867pt;}
.y91{bottom:463.680533pt;}
.y1a7{bottom:465.180400pt;}
.y104{bottom:467.678267pt;}
.y5e{bottom:467.684533pt;}
.y73{bottom:468.357067pt;}
.y212{bottom:469.704400pt;}
.y27e{bottom:472.373200pt;}
.y1a2{bottom:472.500400pt;}
.y1a9{bottom:472.512400pt;}
.y209{bottom:473.472400pt;}
.y20e{bottom:473.484400pt;}
.y259{bottom:473.868400pt;}
.y2b4{bottom:474.343200pt;}
.y1ad{bottom:476.076400pt;}
.y152{bottom:476.772400pt;}
.y25c{bottom:477.420400pt;}
.y26{bottom:479.774667pt;}
.y1a6{bottom:479.844400pt;}
.y258{bottom:481.200400pt;}
.y2a0{bottom:481.676533pt;}
.yb{bottom:482.032667pt;}
.y90{bottom:482.351200pt;}
.y103{bottom:486.122267pt;}
.y5d{bottom:486.355200pt;}
.y72{bottom:487.027733pt;}
.y1a3{bottom:487.164400pt;}
.y14e{bottom:487.884400pt;}
.y20a{bottom:488.136400pt;}
.y20d{bottom:488.148400pt;}
.y1ac{bottom:490.740400pt;}
.y27d{bottom:491.043867pt;}
.y151{bottom:491.436400pt;}
.y1a5{bottom:494.508400pt;}
.y25b{bottom:495.864400pt;}
.y25{bottom:498.445333pt;}
.ya{bottom:500.703333pt;}
.y8f{bottom:501.021867pt;}
.y14c{bottom:502.548400pt;}
.y20c{bottom:502.812400pt;}
.y2b3{bottom:504.351200pt;}
.y5c{bottom:505.025867pt;}
.y71{bottom:505.698400pt;}
.y211{bottom:506.592400pt;}
.yff{bottom:507.182267pt;}
.y1ab{bottom:509.184400pt;}
.y150{bottom:509.880400pt;}
.y29f{bottom:511.684533pt;}
.y25a{bottom:514.308400pt;}
.y24{bottom:517.116000pt;}
.y14d{bottom:517.212400pt;}
.y9{bottom:519.374000pt;}
.y8e{bottom:519.692533pt;}
.y27c{bottom:521.051867pt;}
.yfe{bottom:521.846267pt;}
.y2b2{bottom:523.021867pt;}
.y5b{bottom:523.696533pt;}
.y1aa{bottom:527.628400pt;}
.y208{bottom:527.652400pt;}
.y14f{bottom:528.324400pt;}
.yf9{bottom:532.946267pt;}
.y257{bottom:535.380400pt;}
.y70{bottom:535.706400pt;}
.y23{bottom:535.786667pt;}
.yfd{bottom:536.510267pt;}
.y27b{bottom:539.722533pt;}
.yf7{bottom:540.278267pt;}
.y29e{bottom:541.692533pt;}
.y207{bottom:542.316400pt;}
.y5a{bottom:542.367200pt;}
.y8{bottom:545.598000pt;}
.yf6{bottom:547.610267pt;}
.y1a1{bottom:548.688400pt;}
.y14b{bottom:549.396400pt;}
.y8d{bottom:549.700533pt;}
.y256{bottom:550.044400pt;}
.yfc{bottom:551.174267pt;}
.y6f{bottom:554.377067pt;}
.y206{bottom:556.980400pt;}
.y29d{bottom:560.363200pt;}
.y200{bottom:560.748400pt;}
.y59{bottom:561.037867pt;}
.y252{bottom:561.156400pt;}
.yf8{bottom:562.274267pt;}
.y1a0{bottom:563.352400pt;}
.y14a{bottom:564.060400pt;}
.y7{bottom:564.268667pt;}
.y255{bottom:564.708400pt;}
.yb4{bottom:565.577467pt;}
.y22{bottom:565.794667pt;}
.y145{bottom:567.828400pt;}
.y8c{bottom:568.371200pt;}
.y251{bottom:568.488400pt;}
.yfb{bottom:569.618267pt;}
.y27a{bottom:569.730533pt;}
.y205{bottom:571.644400pt;}
.y2b1{bottom:571.700533pt;}
.y6e{bottom:573.047733pt;}
.y1fd{bottom:575.412400pt;}
.y19f{bottom:578.016400pt;}
.y149{bottom:578.724400pt;}
.y58{bottom:579.708533pt;}
.yb3{bottom:580.241467pt;}
.y142{bottom:582.492400pt;}
.y1fc{bottom:582.744400pt;}
.y6{bottom:582.939333pt;}
.y254{bottom:583.152400pt;}
.y21{bottom:584.465333pt;}
.y204{bottom:586.308400pt;}
.y8b{bottom:587.041867pt;}
.yfa{bottom:588.062267pt;}
.y279{bottom:588.401200pt;}
.y198{bottom:589.116400pt;}
.y141{bottom:589.824400pt;}
.y1ff{bottom:590.076400pt;}
.y29c{bottom:590.371200pt;}
.y19e{bottom:592.680400pt;}
.y148{bottom:593.388400pt;}
.y194{bottom:596.436400pt;}
.y144{bottom:597.156400pt;}
.y57{bottom:598.379200pt;}
.y203{bottom:600.972400pt;}
.y253{bottom:601.596400pt;}
.yb2{bottom:602.383200pt;}
.y20{bottom:603.136000pt;}
.y197{bottom:603.780400pt;}
.y1fe{bottom:604.740400pt;}
.y8a{bottom:605.712533pt;}
.y278{bottom:607.071867pt;}
.y19d{bottom:607.344400pt;}
.y29b{bottom:609.041867pt;}
.y192{bottom:611.100400pt;}
.y143{bottom:611.820400pt;}
.y147{bottom:611.832400pt;}
.yf5{bottom:614.114267pt;}
.y56{bottom:617.049867pt;}
.y196{bottom:618.444400pt;}
.y202{bottom:619.416400pt;}
.yb1{bottom:621.053867pt;}
.yf4{bottom:621.446267pt;}
.y1f{bottom:621.806667pt;}
.y19c{bottom:622.008400pt;}
.y250{bottom:622.668400pt;}
.y89{bottom:624.383200pt;}
.y277{bottom:625.742533pt;}
.y193{bottom:625.764400pt;}
.y29a{bottom:627.712533pt;}
.y146{bottom:630.276400pt;}
.y195{bottom:633.108400pt;}
.y55{bottom:635.720533pt;}
.y19b{bottom:636.672400pt;}
.y24f{bottom:637.332400pt;}
.y201{bottom:637.860400pt;}
.yb0{bottom:639.724533pt;}
.y1e{bottom:640.477333pt;}
.y24b{bottom:648.444400pt;}
.y140{bottom:651.336400pt;}
.y24e{bottom:651.996400pt;}
.y54{bottom:654.391200pt;}
.y19a{bottom:655.116400pt;}
.yf3{bottom:655.551200pt;}
.y276{bottom:655.750533pt;}
.y24a{bottom:655.776400pt;}
.y299{bottom:657.720533pt;}
.y5{bottom:658.330933pt;}
.yaf{bottom:658.395200pt;}
.y1fb{bottom:658.932400pt;}
.y1d{bottom:659.148000pt;}
.y13f{bottom:666.000400pt;}
.y13c{bottom:669.780400pt;}
.yf2{bottom:670.215200pt;}
.y24d{bottom:670.440400pt;}
.y53{bottom:673.061867pt;}
.y199{bottom:673.560400pt;}
.y1fa{bottom:673.596400pt;}
.y275{bottom:674.421200pt;}
.y298{bottom:676.391200pt;}
.yae{bottom:677.065867pt;}
.y1ed{bottom:677.340400pt;}
.y1f2{bottom:677.352400pt;}
.y1c{bottom:677.818667pt;}
.y13e{bottom:680.664400pt;}
.y13a{bottom:684.444400pt;}
.y1f9{bottom:688.260400pt;}
.y24c{bottom:688.884400pt;}
.y52{bottom:691.732533pt;}
.y1ec{bottom:692.004400pt;}
.y1f1{bottom:692.016400pt;}
.yc7{bottom:692.464533pt;}
.y4{bottom:692.986933pt;}
.y274{bottom:693.091867pt;}
.y191{bottom:694.620400pt;}
.y297{bottom:695.061867pt;}
.yad{bottom:695.736533pt;}
.yf1{bottom:696.197733pt;}
.y13b{bottom:699.108400pt;}
.y1f4{bottom:699.360400pt;}
.y1f8{bottom:702.924400pt;}
.y1e9{bottom:706.668400pt;}
.y1f0{bottom:706.680400pt;}
.yc6{bottom:707.128533pt;}
.y190{bottom:709.284400pt;}
.y249{bottom:709.956400pt;}
.y1f3{bottom:714.024400pt;}
.yac{bottom:714.407200pt;}
.yf0{bottom:714.868400pt;}
.y1b{bottom:715.382933pt;}
.y13d{bottom:717.552400pt;}
.y1f7{bottom:717.588400pt;}
.y1eb{bottom:721.332400pt;}
.y1ef{bottom:721.344400pt;}
.y51{bottom:721.740533pt;}
.y18f{bottom:723.948400pt;}
.y248{bottom:724.620400pt;}
.y296{bottom:725.069867pt;}
.y3{bottom:727.642933pt;}
.y189{bottom:727.716400pt;}
.y245{bottom:728.400400pt;}
.y273{bottom:730.656133pt;}
.yab{bottom:733.077867pt;}
.yef{bottom:733.539067pt;}
.y243{bottom:735.732400pt;}
.y1ea{bottom:735.996400pt;}
.y1ee{bottom:736.008400pt;}
.y1f6{bottom:736.032400pt;}
.y18e{bottom:738.612400pt;}
.y139{bottom:738.624400pt;}
.y247{bottom:739.284400pt;}
.y50{bottom:740.411200pt;}
.y186{bottom:742.380400pt;}
.y242{bottom:743.064400pt;}
.y295{bottom:743.740533pt;}
.y130{bottom:749.712400pt;}
.yaa{bottom:751.748533pt;}
.y18d{bottom:753.276400pt;}
.y138{bottom:753.288400pt;}
.y1f5{bottom:754.476400pt;}
.y188{bottom:757.044400pt;}
.y244{bottom:757.728400pt;}
.y4f{bottom:759.081867pt;}
.y2{bottom:762.298933pt;}
.y294{bottom:762.411200pt;}
.yee{bottom:763.547067pt;}
.y12f{bottom:764.376400pt;}
.y18c{bottom:767.940400pt;}
.y137{bottom:767.952400pt;}
.ya9{bottom:770.419200pt;}
.y129{bottom:771.696400pt;}
.y187{bottom:771.708400pt;}
.y2b0{bottom:773.748533pt;}
.y1e8{bottom:775.524400pt;}
.y246{bottom:776.172400pt;}
.y4e{bottom:777.752533pt;}
.y272{bottom:778.438267pt;}
.ydc{bottom:778.462000pt;}
.y12e{bottom:779.040400pt;}
.yed{bottom:782.217733pt;}
.y136{bottom:782.616400pt;}
.y128{bottom:786.360400pt;}
.y18b{bottom:786.384400pt;}
.ya8{bottom:789.089867pt;}
.y1e7{bottom:790.188400pt;}
.y42{bottom:791.641333pt;}
.y293{bottom:792.419200pt;}
.ydb{bottom:793.126000pt;}
.y125{bottom:793.692400pt;}
.y12d{bottom:793.704400pt;}
.y131{bottom:793.716400pt;}
.y1e2{bottom:793.956400pt;}
.y4d{bottom:796.423200pt;}
.y271{bottom:797.108933pt;}
.y241{bottom:797.244400pt;}
.y135{bottom:797.280400pt;}
.yec{bottom:800.888400pt;}
.y127{bottom:801.024400pt;}
.y1e0{bottom:801.288400pt;}
.y18a{bottom:804.828400pt;}
.y1e6{bottom:804.852400pt;}
.ya7{bottom:807.760533pt;}
.yda{bottom:807.790000pt;}
.y12c{bottom:808.368400pt;}
.y1df{bottom:808.620400pt;}
.y41{bottom:810.312000pt;}
.y292{bottom:811.089867pt;}
.y240{bottom:811.908400pt;}
.y134{bottom:811.944400pt;}
.y4c{bottom:815.093867pt;}
.y126{bottom:815.688400pt;}
.y270{bottom:815.779600pt;}
.y1e3{bottom:815.952400pt;}
.yeb{bottom:819.559067pt;}
.y12b{bottom:823.032400pt;}
.y1e1{bottom:823.284400pt;}
.y1e5{bottom:823.296400pt;}
.y185{bottom:825.900400pt;}
.ya6{bottom:826.431200pt;}
.y23f{bottom:826.572400pt;}
.y23c{bottom:830.352400pt;}
.y133{bottom:830.388400pt;}
.y4b{bottom:833.764533pt;}
.y12a{bottom:837.696400pt;}
.y40{bottom:840.317333pt;}
.y184{bottom:840.564400pt;}
.y291{bottom:841.097867pt;}
.y1e4{bottom:841.740400pt;}
.y23d{bottom:845.016400pt;}
.ya5{bottom:845.101867pt;}
.y132{bottom:848.832400pt;}
.y17b{bottom:851.652400pt;}
.y4a{bottom:852.435200pt;}
.yea{bottom:853.343867pt;}
.y183{bottom:855.228400pt;}
.y290{bottom:859.768533pt;}
.y1d6{bottom:862.776400pt;}
.y23e{bottom:863.460400pt;}
.ya4{bottom:863.772533pt;}
.y17a{bottom:866.316400pt;}
.y1de{bottom:866.352400pt;}
.y124{bottom:869.880400pt;}
.y182{bottom:869.892400pt;}
.y49{bottom:871.105867pt;}
.y3f{bottom:872.969200pt;}
.y1d5{bottom:877.440400pt;}
.y28f{bottom:878.439200pt;}
.y178{bottom:880.968400pt;}
.y179{bottom:880.980400pt;}
.y1dd{bottom:881.016400pt;}
.ya3{bottom:882.443200pt;}
.y23b{bottom:884.532400pt;}
.y123{bottom:884.544400pt;}
.y181{bottom:884.556400pt;}
.y177{bottom:888.300400pt;}
.y17c{bottom:888.324400pt;}
.y48{bottom:889.776533pt;}
.y3e{bottom:891.639867pt;}
.y1d4{bottom:892.104400pt;}
.y11e{bottom:895.644400pt;}
.y1dc{bottom:895.680400pt;}
.y23a{bottom:899.196400pt;}
.y122{bottom:899.208400pt;}
.y180{bottom:899.220400pt;}
.y1d0{bottom:899.424400pt;}
.y1d8{bottom:899.448400pt;}
.ya2{bottom:901.113867pt;}
.y1cf{bottom:906.756400pt;}
.y1d3{bottom:906.768400pt;}
.y88{bottom:908.447200pt;}
.y11c{bottom:910.308400pt;}
.y3d{bottom:910.310533pt;}
.y1db{bottom:910.344400pt;}
.y239{bottom:913.860400pt;}
.y121{bottom:913.872400pt;}
.y17f{bottom:913.884400pt;}
.y1d7{bottom:914.112400pt;}
.y236{bottom:917.640400pt;}
.y47{bottom:919.784533pt;}
.y1d2{bottom:921.432400pt;}
.y11d{bottom:924.972400pt;}
.y87{bottom:927.117867pt;}
.y1da{bottom:928.788400pt;}
.y3c{bottom:928.981200pt;}
.y238{bottom:932.304400pt;}
.y120{bottom:932.316400pt;}
.y17e{bottom:932.328400pt;}
.y1d1{bottom:936.096400pt;}
.y46{bottom:938.455200pt;}
.y86{bottom:945.788533pt;}
.y1d9{bottom:947.232400pt;}
.y3b{bottom:947.651867pt;}
.y237{bottom:950.748400pt;}
.y11f{bottom:950.760400pt;}
.y17d{bottom:950.772400pt;}
.y45{bottom:957.125867pt;}
.y3a{bottom:966.322533pt;}
.y44{bottom:975.796533pt;}
.y11b{bottom:976.812400pt;}
.y6d{bottom:978.689867pt;}
.y11a{bottom:984.144400pt;}
.y43{bottom:994.467200pt;}
.y39{bottom:996.327867pt;}
.y6c{bottom:997.133867pt;}
.y19{bottom:1049.098800pt;}
.y18{bottom:1065.094800pt;}
.h6{height:36.000000pt;}
.h8{height:36.288000pt;}
.h9{height:42.384000pt;}
.h4{height:44.352000pt;}
.ha{height:45.056000pt;}
.h2{height:49.765625pt;}
.h5{height:51.802667pt;}
.h7{height:56.000000pt;}
.hb{height:66.192000pt;}
.hc{height:71.712000pt;}
.h3{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488133pt;}
.xb{left:109.112400pt;}
.x7{left:112.762800pt;}
.xd{left:141.356400pt;}
.xa{left:161.154800pt;}
.x8{left:163.689200pt;}
.x2{left:165.478267pt;}
.x4{left:169.542267pt;}
.x3{left:196.550267pt;}
.xe{left:237.104400pt;}
.x9{left:294.045200pt;}
.xc{left:353.780400pt;}
.x11{left:368.924400pt;}
.x12{left:370.904400pt;}
.xf{left:381.032400pt;}
.x10{left:433.640400pt;}
.x5{left:482.182267pt;}
.x1{left:725.669333pt;}
}




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