
    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_7453571b7083b8589ad0fc36.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_7556b67a3acd02611bcb12b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_dc345c8298d1782cf4a040aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_c2e784faf6d76755cce0c65b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.v3{vertical-align:36.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005520px;}
.ls1{letter-spacing:0.006144px;}
.ls0{letter-spacing:0.006744px;}
.ls5{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.726000px;}
.ls6{letter-spacing:1.320000px;}
.ls8{letter-spacing:1.452000px;}
.lsc{letter-spacing:1.782000px;}
.lse{letter-spacing:2.244000px;}
.lsb{letter-spacing:3.432000px;}
.ls7{letter-spacing:3.564000px;}
.lsf{letter-spacing:5.148000px;}
.lsd{letter-spacing:5.847600px;}
.ls3{letter-spacing:11.739600px;}
.ls9{letter-spacing:16.830000px;}
.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;}
}
.wsbe{word-spacing:-35.178000px;}
.wsc2{word-spacing:-24.195600px;}
.wsbc{word-spacing:-21.912000px;}
.wsc0{word-spacing:-21.780000px;}
.wsc3{word-spacing:-20.592000px;}
.wsc1{word-spacing:-20.130000px;}
.ws0{word-spacing:-20.016000px;}
.wsbd{word-spacing:-19.800000px;}
.wsbb{word-spacing:-19.668000px;}
.wsbf{word-spacing:-19.074000px;}
.ws9c{word-spacing:-19.008000px;}
.ws59{word-spacing:-18.348000px;}
.ws1{word-spacing:-16.680000px;}
.ws7f{word-spacing:-13.344000px;}
.ws50{word-spacing:-6.732000px;}
.wsd2{word-spacing:-5.148000px;}
.ws99{word-spacing:-4.158000px;}
.ws66{word-spacing:-3.960000px;}
.ws79{word-spacing:-3.498000px;}
.ws14{word-spacing:-3.432000px;}
.ws83{word-spacing:-3.300000px;}
.ws36{word-spacing:-3.168000px;}
.ws67{word-spacing:-3.036000px;}
.wsba{word-spacing:-2.772000px;}
.ws23{word-spacing:-2.640000px;}
.ws8b{word-spacing:-2.574000px;}
.ws9d{word-spacing:-2.376000px;}
.ws65{word-spacing:-2.310000px;}
.ws2b{word-spacing:-2.178000px;}
.ws20{word-spacing:-2.112000px;}
.ws94{word-spacing:-1.914000px;}
.ws1a{word-spacing:-1.848000px;}
.wscb{word-spacing:-1.782000px;}
.ws3e{word-spacing:-1.650000px;}
.wsa6{word-spacing:-1.584000px;}
.ws73{word-spacing:-1.452000px;}
.ws9a{word-spacing:-1.386000px;}
.wsa5{word-spacing:-1.320000px;}
.ws11{word-spacing:-1.188000px;}
.ws3f{word-spacing:-1.122000px;}
.wse{word-spacing:-0.990000px;}
.ws58{word-spacing:-0.924000px;}
.ws8d{word-spacing:-0.858000px;}
.ws55{word-spacing:-0.726000px;}
.wsa7{word-spacing:-0.396000px;}
.ws5b{word-spacing:-0.330000px;}
.ws6a{word-spacing:-0.264000px;}
.ws93{word-spacing:-0.198000px;}
.ws2{word-spacing:0.000000px;}
.ws54{word-spacing:0.198000px;}
.ws61{word-spacing:0.264000px;}
.ws7b{word-spacing:0.528000px;}
.wsaf{word-spacing:0.660000px;}
.ws1b{word-spacing:0.726000px;}
.ws57{word-spacing:0.792000px;}
.ws37{word-spacing:0.858000px;}
.ws75{word-spacing:0.924000px;}
.wsa1{word-spacing:0.990000px;}
.ws44{word-spacing:1.122000px;}
.ws4a{word-spacing:1.254000px;}
.ws88{word-spacing:1.452000px;}
.ws26{word-spacing:1.518000px;}
.ws35{word-spacing:1.782000px;}
.ws4e{word-spacing:1.980000px;}
.ws4b{word-spacing:2.046000px;}
.ws31{word-spacing:2.112000px;}
.wsb1{word-spacing:2.178000px;}
.ws5{word-spacing:2.244000px;}
.ws13{word-spacing:2.310000px;}
.ws51{word-spacing:2.442000px;}
.ws4f{word-spacing:2.508000px;}
.ws3d{word-spacing:2.640000px;}
.ws10{word-spacing:2.706000px;}
.ws27{word-spacing:2.772000px;}
.ws22{word-spacing:2.838000px;}
.wsaa{word-spacing:2.970000px;}
.ws96{word-spacing:3.234000px;}
.ws18{word-spacing:3.300000px;}
.ws24{word-spacing:3.366000px;}
.ws8a{word-spacing:3.432000px;}
.ws7a{word-spacing:3.828000px;}
.ws1e{word-spacing:3.894000px;}
.ws3c{word-spacing:3.960000px;}
.ws7c{word-spacing:4.422000px;}
.ws76{word-spacing:4.488000px;}
.ws4c{word-spacing:4.554000px;}
.ws89{word-spacing:4.686000px;}
.ws68{word-spacing:4.752000px;}
.ws3b{word-spacing:4.950000px;}
.ws56{word-spacing:5.016000px;}
.ws45{word-spacing:5.082000px;}
.wsc{word-spacing:5.148000px;}
.wsa9{word-spacing:5.214000px;}
.wsca{word-spacing:5.346000px;}
.ws28{word-spacing:5.412000px;}
.ws2c{word-spacing:5.478000px;}
.wsa2{word-spacing:5.544000px;}
.wscc{word-spacing:5.610000px;}
.ws95{word-spacing:5.676000px;}
.ws21{word-spacing:5.742000px;}
.ws8e{word-spacing:5.808000px;}
.ws69{word-spacing:5.874000px;}
.ws5d{word-spacing:6.006000px;}
.ws90{word-spacing:6.138000px;}
.ws60{word-spacing:6.204000px;}
.ws62{word-spacing:6.270000px;}
.ws15{word-spacing:6.336000px;}
.ws12{word-spacing:6.402000px;}
.wsa3{word-spacing:6.468000px;}
.wsb{word-spacing:6.534000px;}
.ws42{word-spacing:6.600000px;}
.ws5c{word-spacing:6.798000px;}
.wsb0{word-spacing:6.930000px;}
.ws1f{word-spacing:6.996000px;}
.wscd{word-spacing:7.194000px;}
.ws2f{word-spacing:7.416000px;}
.ws43{word-spacing:7.458000px;}
.ws47{word-spacing:7.524000px;}
.ws32{word-spacing:7.590000px;}
.ws9f{word-spacing:7.854000px;}
.ws70{word-spacing:8.052000px;}
.ws17{word-spacing:8.184000px;}
.ws2e{word-spacing:8.250000px;}
.ws71{word-spacing:8.448000px;}
.ws5a{word-spacing:8.514000px;}
.wsb9{word-spacing:8.580000px;}
.ws5f{word-spacing:8.646000px;}
.ws64{word-spacing:8.778000px;}
.ws48{word-spacing:8.844000px;}
.ws63{word-spacing:8.910000px;}
.wsa{word-spacing:9.108000px;}
.wsc9{word-spacing:9.174000px;}
.wsd5{word-spacing:9.240000px;}
.wsb6{word-spacing:9.306000px;}
.ws38{word-spacing:9.372000px;}
.ws3{word-spacing:9.438000px;}
.wsab{word-spacing:9.636000px;}
.wsd{word-spacing:9.834000px;}
.ws19{word-spacing:10.098000px;}
.ws53{word-spacing:10.164000px;}
.ws1c{word-spacing:10.296000px;}
.ws9{word-spacing:10.626000px;}
.ws4{word-spacing:10.692000px;}
.ws97{word-spacing:10.758000px;}
.ws8f{word-spacing:10.890000px;}
.ws5e{word-spacing:11.154000px;}
.ws33{word-spacing:11.220000px;}
.ws1d{word-spacing:11.286000px;}
.ws9b{word-spacing:11.352000px;}
.ws6{word-spacing:11.748000px;}
.ws72{word-spacing:11.814000px;}
.ws6b{word-spacing:11.880000px;}
.ws2a{word-spacing:12.078000px;}
.wsc5{word-spacing:12.210000px;}
.wsa0{word-spacing:12.276000px;}
.ws74{word-spacing:12.408000px;}
.wsa8{word-spacing:12.540000px;}
.ws98{word-spacing:12.672000px;}
.ws49{word-spacing:12.804000px;}
.ws3a{word-spacing:13.068000px;}
.ws92{word-spacing:13.332000px;}
.ws25{word-spacing:13.530000px;}
.ws46{word-spacing:13.596000px;}
.ws78{word-spacing:13.662000px;}
.ws6e{word-spacing:13.860000px;}
.ws8{word-spacing:14.124000px;}
.wsce{word-spacing:14.322000px;}
.wsb2{word-spacing:14.520000px;}
.ws6c{word-spacing:14.916000px;}
.ws4d{word-spacing:14.982000px;}
.wsf{word-spacing:15.180000px;}
.ws8c{word-spacing:15.444000px;}
.ws6f{word-spacing:15.708000px;}
.wsd8{word-spacing:15.906000px;}
.ws16{word-spacing:16.170000px;}
.wsc6{word-spacing:16.302000px;}
.ws41{word-spacing:16.368000px;}
.wsd7{word-spacing:16.566000px;}
.ws52{word-spacing:16.764000px;}
.ws34{word-spacing:16.830000px;}
.wsd6{word-spacing:17.028000px;}
.ws91{word-spacing:17.226000px;}
.wsb5{word-spacing:17.556000px;}
.wsad{word-spacing:17.820000px;}
.ws87{word-spacing:17.952000px;}
.wsac{word-spacing:18.018000px;}
.ws2d{word-spacing:18.084000px;}
.ws29{word-spacing:18.612000px;}
.wsae{word-spacing:18.678000px;}
.ws77{word-spacing:19.866000px;}
.ws39{word-spacing:20.064000px;}
.wscf{word-spacing:21.054000px;}
.ws30{word-spacing:21.516000px;}
.ws9e{word-spacing:21.582000px;}
.ws6d{word-spacing:21.648000px;}
.wsd4{word-spacing:23.562000px;}
.ws40{word-spacing:24.288000px;}
.wsa4{word-spacing:26.730000px;}
.wsd3{word-spacing:27.258000px;}
.wsc4{word-spacing:27.324000px;}
.wsb8{word-spacing:27.786000px;}
.wsd0{word-spacing:28.578000px;}
.ws7{word-spacing:28.842000px;}
.wsb3{word-spacing:31.878000px;}
.wsb4{word-spacing:32.142000px;}
.wsc7{word-spacing:32.340000px;}
.wsd1{word-spacing:45.606000px;}
.wsb7{word-spacing:83.556000px;}
.wsc8{word-spacing:100.320000px;}
.ws86{word-spacing:110.910000px;}
.ws80{word-spacing:131.031000px;}
.ws85{word-spacing:247.650000px;}
.ws82{word-spacing:281.010000px;}
.ws7e{word-spacing:297.936600px;}
.ws7d{word-spacing:314.612400px;}
.ws81{word-spacing:634.110000px;}
.ws84{word-spacing:801.042000px;}
._3a{margin-left:-8.454600px;}
._0{margin-left:-7.409775px;}
._2{margin-left:-6.224400px;}
._1{margin-left:-4.302000px;}
._3{margin-left:-3.091200px;}
._4{margin-left:-1.470000px;}
._7{width:1.306800px;}
._34{width:2.732400px;}
._a{width:3.795000px;}
._9{width:5.332800px;}
._8{width:6.454800px;}
._c{width:8.276400px;}
._d{width:9.279600px;}
._b{width:10.758000px;}
._6{width:12.302400px;}
._3c{width:13.721400px;}
._36{width:14.962200px;}
._35{width:16.156800px;}
._39{width:17.166600px;}
._5{width:19.701000px;}
._37{width:21.183975px;}
._38{width:22.221000px;}
._f{width:24.327600px;}
._3b{width:29.097600px;}
._e{width:66.552000px;}
._32{width:149.640000px;}
._27{width:172.485600px;}
._33{width:224.374800px;}
._2a{width:247.456200px;}
._2f{width:286.584000px;}
._26{width:297.690000px;}
._13{width:314.616600px;}
._20{width:319.740000px;}
._15{width:331.292400px;}
._1a{width:333.519000px;}
._1d{width:347.977200px;}
._11{width:349.690800px;}
._29{width:352.143000px;}
._28{width:357.589200px;}
._30{width:361.114800px;}
._1e{width:469.244400px;}
._21{width:514.305600px;}
._2b{width:545.935800px;}
._2e{width:552.665400px;}
._23{width:559.321800px;}
._25{width:580.227000px;}
._22{width:650.790000px;}
._18{width:727.381200px;}
._1c{width:749.512200px;}
._31{width:817.692000px;}
._2c{width:853.746000px;}
._17{width:914.619000px;}
._1b{width:951.244200px;}
._12{width:955.465800px;}
._19{width:972.150000px;}
._10{width:1016.271000px;}
._16{width:1027.348800px;}
._1f{width:1042.108200px;}
._24{width:1061.940000px;}
._14{width:1102.981200px;}
._2d{width:1446.863400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs4{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:199.724400px;}
.y0{bottom:0.000000px;}
.yd9{bottom:54.714000px;}
.yd8{bottom:73.464000px;}
.y116{bottom:83.073450px;}
.y2{bottom:85.039350px;}
.y7c{bottom:87.962100px;}
.y1c5{bottom:87.967950px;}
.y167{bottom:88.765200px;}
.yd7{bottom:92.214000px;}
.y30{bottom:94.021050px;}
.y145{bottom:94.753350px;}
.y4a{bottom:96.017100px;}
.y1a8{bottom:98.208000px;}
.yab{bottom:100.723800px;}
.y115{bottom:101.073450px;}
.y7b{bottom:106.712100px;}
.y1c4{bottom:106.717950px;}
.y166{bottom:107.515200px;}
.y2f{bottom:112.771050px;}
.y144{bottom:113.503350px;}
.y49{bottom:114.767100px;}
.yd6{bottom:115.215900px;}
.y1a7{bottom:116.958000px;}
.yaa{bottom:119.473800px;}
.y114{bottom:123.993750px;}
.y7a{bottom:125.462100px;}
.y1c3{bottom:125.467950px;}
.y165{bottom:126.265200px;}
.y2e{bottom:131.521050px;}
.y143{bottom:132.253350px;}
.y48{bottom:133.517100px;}
.yd5{bottom:133.965900px;}
.y1a6{bottom:135.708000px;}
.ya9{bottom:138.223800px;}
.y179{bottom:142.475700px;}
.y79{bottom:144.212100px;}
.y164{bottom:145.015200px;}
.y113{bottom:146.914200px;}
.y1c2{bottom:148.469850px;}
.y2d{bottom:150.271050px;}
.y47{bottom:152.267100px;}
.yd4{bottom:152.715900px;}
.y1a5{bottom:154.458000px;}
.y142{bottom:155.255250px;}
.ya8{bottom:156.973800px;}
.y178{bottom:161.225700px;}
.y78{bottom:162.962100px;}
.y163{bottom:163.765200px;}
.y1c1{bottom:167.219850px;}
.y2c{bottom:169.021050px;}
.y112{bottom:169.834650px;}
.y46{bottom:171.017100px;}
.yd3{bottom:171.465900px;}
.y1a4{bottom:173.208000px;}
.y141{bottom:174.005250px;}
.ya7{bottom:175.723800px;}
.y177{bottom:179.975700px;}
.y77{bottom:181.712100px;}
.y162{bottom:182.515200px;}
.y1c0{bottom:185.969850px;}
.y2b{bottom:187.771050px;}
.y111{bottom:187.834650px;}
.y45{bottom:189.767100px;}
.yd2{bottom:190.215900px;}
.y1a3{bottom:191.958000px;}
.y140{bottom:192.755250px;}
.ya6{bottom:194.473800px;}
.y176{bottom:198.725700px;}
.y76{bottom:200.462100px;}
.y161{bottom:201.265200px;}
.y1bf{bottom:204.719850px;}
.y2a{bottom:206.521050px;}
.y44{bottom:208.517100px;}
.yd1{bottom:208.965900px;}
.y1a2{bottom:210.708000px;}
.y110{bottom:210.755100px;}
.y13f{bottom:211.505250px;}
.ya5{bottom:213.223800px;}
.y175{bottom:217.475700px;}
.ye8{bottom:219.212100px;}
.y160{bottom:220.015200px;}
.y75{bottom:223.464000px;}
.y1be{bottom:223.469850px;}
.y29{bottom:225.271050px;}
.y43{bottom:227.267100px;}
.yd0{bottom:227.715900px;}
.y13e{bottom:230.255250px;}
.ya4{bottom:231.973800px;}
.y10f{bottom:233.675400px;}
.y1a1{bottom:233.710050px;}
.y174{bottom:236.225700px;}
.y15f{bottom:238.765200px;}
.y74{bottom:242.214000px;}
.y1bd{bottom:242.219850px;}
.y28{bottom:244.021050px;}
.y42{bottom:246.017100px;}
.ycf{bottom:246.465900px;}
.y13d{bottom:249.005250px;}
.ya3{bottom:250.723800px;}
.y1a0{bottom:252.460050px;}
.y173{bottom:254.975700px;}
.y10e{bottom:256.595850px;}
.y15e{bottom:257.515200px;}
.y73{bottom:260.964000px;}
.y27{bottom:262.771050px;}
.y41{bottom:264.767100px;}
.yce{bottom:265.215900px;}
.y1bc{bottom:265.221900px;}
.y13c{bottom:267.755250px;}
.ya2{bottom:269.473800px;}
.y19f{bottom:271.210050px;}
.y172{bottom:273.725700px;}
.y10d{bottom:274.595850px;}
.y15d{bottom:276.265200px;}
.y72{bottom:279.714000px;}
.y26{bottom:281.521050px;}
.y40{bottom:283.517100px;}
.ycd{bottom:283.965900px;}
.y1bb{bottom:283.971900px;}
.y13b{bottom:286.505250px;}
.ya1{bottom:288.223800px;}
.y19e{bottom:289.960050px;}
.y171{bottom:292.475700px;}
.y15c{bottom:295.015200px;}
.y10c{bottom:297.516300px;}
.y71{bottom:298.464000px;}
.y25{bottom:300.271050px;}
.y3f{bottom:302.267100px;}
.ycc{bottom:302.715900px;}
.y1ba{bottom:302.721900px;}
.y13a{bottom:305.255250px;}
.ya0{bottom:306.973800px;}
.y19d{bottom:308.710050px;}
.y170{bottom:311.225850px;}
.y15b{bottom:313.765200px;}
.y70{bottom:317.214000px;}
.y24{bottom:319.021050px;}
.y10b{bottom:320.436750px;}
.y3e{bottom:321.017100px;}
.ycb{bottom:321.465900px;}
.y1b9{bottom:321.471900px;}
.y139{bottom:324.005250px;}
.y9f{bottom:325.723800px;}
.y19c{bottom:327.460050px;}
.y16f{bottom:329.975850px;}
.y15a{bottom:332.515200px;}
.y6f{bottom:335.964000px;}
.y23{bottom:337.771050px;}
.y3d{bottom:339.767100px;}
.yca{bottom:340.215900px;}
.y1b8{bottom:340.221900px;}
.y138{bottom:342.755250px;}
.y10a{bottom:343.357050px;}
.y9e{bottom:344.473800px;}
.y19b{bottom:346.210050px;}
.y16e{bottom:348.725850px;}
.y159{bottom:351.265200px;}
.y6e{bottom:354.714000px;}
.y22{bottom:356.521050px;}
.y3c{bottom:358.517100px;}
.yc9{bottom:358.965900px;}
.y1b7{bottom:358.971900px;}
.y137{bottom:361.505250px;}
.y9d{bottom:363.223800px;}
.y109{bottom:366.277500px;}
.y16d{bottom:367.475850px;}
.y19a{bottom:369.211950px;}
.y158{bottom:370.015200px;}
.y6d{bottom:373.464000px;}
.y21{bottom:375.271050px;}
.y3b{bottom:377.267100px;}
.y1b6{bottom:377.721900px;}
.y136{bottom:380.255250px;}
.yc8{bottom:381.967950px;}
.y9c{bottom:386.225850px;}
.y199{bottom:387.961950px;}
.y157{bottom:388.765200px;}
.y108{bottom:389.197950px;}
.y6c{bottom:392.214000px;}
.y20{bottom:394.021050px;}
.y3a{bottom:396.017100px;}
.y1b5{bottom:396.471900px;}
.y135{bottom:399.005250px;}
.yc7{bottom:400.717950px;}
.y9b{bottom:404.975850px;}
.y198{bottom:406.711950px;}
.y6b{bottom:410.964000px;}
.y156{bottom:411.767100px;}
.y107{bottom:412.118250px;}
.y1f{bottom:412.771050px;}
.y39{bottom:414.767100px;}
.y1b4{bottom:415.221900px;}
.y134{bottom:417.755250px;}
.yc6{bottom:419.467950px;}
.y9a{bottom:423.725850px;}
.y197{bottom:425.461950px;}
.ye7{bottom:429.714000px;}
.y155{bottom:430.517100px;}
.y1e{bottom:431.521050px;}
.y38{bottom:433.517100px;}
.y6a{bottom:433.965900px;}
.y106{bottom:435.038700px;}
.y133{bottom:436.505250px;}
.yc5{bottom:438.217950px;}
.y1b3{bottom:438.223800px;}
.y99{bottom:442.475850px;}
.y196{bottom:444.211950px;}
.ye6{bottom:448.464000px;}
.y154{bottom:449.267100px;}
.y1d{bottom:450.271050px;}
.y69{bottom:452.715900px;}
.y132{bottom:455.255250px;}
.yc4{bottom:456.967950px;}
.y1b2{bottom:456.973800px;}
.y105{bottom:457.959150px;}
.y98{bottom:461.225850px;}
.y195{bottom:462.961950px;}
.y37{bottom:465.023100px;}
.y153{bottom:468.017100px;}
.y1c{bottom:469.021050px;}
.y68{bottom:471.465900px;}
.yc3{bottom:475.717950px;}
.y1b1{bottom:475.723800px;}
.y131{bottom:478.257300px;}
.y97{bottom:479.975850px;}
.y102{bottom:480.879600px;}
.y152{bottom:486.767100px;}
.y1b{bottom:487.771050px;}
.y104{bottom:489.879600px;}
.y67{bottom:490.215900px;}
.yc2{bottom:494.467950px;}
.y1b0{bottom:494.473800px;}
.y36{bottom:496.275000px;}
.y130{bottom:497.007300px;}
.y96{bottom:498.725850px;}
.y100{bottom:498.879600px;}
.y16c{bottom:502.977750px;}
.y151{bottom:505.517100px;}
.y1a{bottom:506.521050px;}
.yff{bottom:506.799900px;}
.y103{bottom:507.879600px;}
.y66{bottom:508.965900px;}
.yc1{bottom:513.217950px;}
.y1af{bottom:513.223800px;}
.y35{bottom:515.025000px;}
.y12f{bottom:515.757300px;}
.y101{bottom:516.879600px;}
.y95{bottom:517.475850px;}
.y16b{bottom:521.727750px;}
.y150{bottom:524.267100px;}
.y19{bottom:525.271050px;}
.y65{bottom:527.715900px;}
.yc0{bottom:531.967950px;}
.y194{bottom:531.973800px;}
.y12e{bottom:534.507300px;}
.y94{bottom:536.225850px;}
.y34{bottom:538.026900px;}
.yfe{bottom:539.799900px;}
.y16a{bottom:540.477750px;}
.y14f{bottom:543.017100px;}
.y18{bottom:544.021050px;}
.y64{bottom:546.465900px;}
.ybf{bottom:550.717950px;}
.y193{bottom:550.723800px;}
.y12d{bottom:553.257300px;}
.y93{bottom:554.975850px;}
.y33{bottom:556.776900px;}
.y169{bottom:559.227750px;}
.y14e{bottom:561.767100px;}
.y17{bottom:562.771050px;}
.yfd{bottom:563.095350px;}
.y63{bottom:565.215900px;}
.ybe{bottom:569.467950px;}
.y192{bottom:569.473800px;}
.y12c{bottom:572.007300px;}
.y32{bottom:575.526900px;}
.y92{bottom:577.977750px;}
.y14d{bottom:580.517100px;}
.y16{bottom:581.521050px;}
.y62{bottom:583.965900px;}
.ybd{bottom:588.217950px;}
.y191{bottom:588.223800px;}
.y12b{bottom:590.757300px;}
.y31{bottom:594.276900px;}
.yfc{bottom:595.044600px;}
.y91{bottom:596.727750px;}
.y14c{bottom:599.267100px;}
.y61{bottom:602.715900px;}
.ybc{bottom:606.967950px;}
.y190{bottom:606.973800px;}
.y12a{bottom:609.507300px;}
.y15{bottom:613.026900px;}
.yfb{bottom:613.794600px;}
.ye5{bottom:615.471900px;}
.y90{bottom:615.477750px;}
.y14b{bottom:618.017100px;}
.y60{bottom:621.465900px;}
.ybb{bottom:625.717950px;}
.y18f{bottom:625.723800px;}
.y129{bottom:628.257300px;}
.yfa{bottom:632.544600px;}
.y8f{bottom:634.227750px;}
.y5f{bottom:640.215900px;}
.y14a{bottom:641.019150px;}
.yba{bottom:644.467950px;}
.y18e{bottom:644.473800px;}
.y128{bottom:647.007300px;}
.y14{bottom:647.923950px;}
.y1ae{bottom:648.725850px;}
.yf9{bottom:651.294600px;}
.y8e{bottom:652.977750px;}
.y5e{bottom:658.965900px;}
.y149{bottom:659.769150px;}
.yb9{bottom:663.217950px;}
.y18d{bottom:663.223800px;}
.y127{bottom:665.757300px;}
.y13{bottom:665.923950px;}
.y1ad{bottom:667.475850px;}
.y8d{bottom:671.727750px;}
.y5d{bottom:677.715900px;}
.y148{bottom:678.519150px;}
.yf8{bottom:681.767550px;}
.yb8{bottom:681.967950px;}
.y18c{bottom:681.973800px;}
.y12{bottom:683.923950px;}
.y1ac{bottom:686.225850px;}
.y8c{bottom:690.477750px;}
.y5c{bottom:696.465900px;}
.y126{bottom:697.263150px;}
.y147{bottom:697.269150px;}
.yb7{bottom:700.717950px;}
.y18b{bottom:700.723800px;}
.y11{bottom:701.923950px;}
.y1ab{bottom:704.975850px;}
.y8b{bottom:709.227750px;}
.yf7{bottom:712.142550px;}
.y146{bottom:716.019150px;}
.yb6{bottom:719.467950px;}
.y18a{bottom:719.473800px;}
.y1aa{bottom:723.725850px;}
.y10{bottom:724.918950px;}
.y5b{bottom:727.971900px;}
.y8a{bottom:727.977750px;}
.y125{bottom:734.769150px;}
.yf6{bottom:735.063000px;}
.yf{bottom:737.923950px;}
.yb5{bottom:738.217950px;}
.y189{bottom:738.223800px;}
.y1a9{bottom:742.475850px;}
.y89{bottom:746.727750px;}
.y124{bottom:753.519150px;}
.y188{bottom:756.973800px;}
.yf5{bottom:757.983450px;}
.ye{bottom:760.918950px;}
.yb4{bottom:761.219850px;}
.y5a{bottom:761.225850px;}
.y88{bottom:765.477750px;}
.yd{bottom:767.929950px;}
.y123{bottom:772.269150px;}
.yc{bottom:773.923950px;}
.y187{bottom:775.723800px;}
.yb3{bottom:779.969850px;}
.yf4{bottom:780.903750px;}
.y87{bottom:784.227750px;}
.y168{bottom:788.479650px;}
.y122{bottom:791.019150px;}
.yb2{bottom:798.719850px;}
.y186{bottom:798.725850px;}
.y86{bottom:802.977750px;}
.yf3{bottom:803.824200px;}
.y59{bottom:807.229650px;}
.y121{bottom:809.769150px;}
.yb{bottom:809.923950px;}
.yb1{bottom:817.469850px;}
.y185{bottom:817.475850px;}
.y85{bottom:821.727750px;}
.y58{bottom:825.979650px;}
.yf2{bottom:826.744650px;}
.y120{bottom:828.519150px;}
.yb0{bottom:836.219850px;}
.y184{bottom:836.225850px;}
.ye4{bottom:840.477750px;}
.y84{bottom:844.729650px;}
.y11f{bottom:847.269150px;}
.y57{bottom:848.981700px;}
.yf1{bottom:849.665100px;}
.ya{bottom:850.176000px;}
.yaf{bottom:854.969850px;}
.y183{bottom:854.975850px;}
.ye3{bottom:859.227750px;}
.y83{bottom:863.479650px;}
.y11e{bottom:866.019150px;}
.y56{bottom:867.731700px;}
.yf0{bottom:872.585400px;}
.yae{bottom:873.719850px;}
.y182{bottom:873.725850px;}
.ye2{bottom:877.977750px;}
.y82{bottom:882.229650px;}
.y9{bottom:886.176000px;}
.y55{bottom:886.481700px;}
.yad{bottom:892.469850px;}
.y181{bottom:892.475850px;}
.yef{bottom:895.505850px;}
.ye1{bottom:896.727750px;}
.y81{bottom:900.979650px;}
.y11d{bottom:904.971750px;}
.y54{bottom:905.231700px;}
.y180{bottom:911.225850px;}
.ye0{bottom:915.477750px;}
.yee{bottom:918.426300px;}
.y80{bottom:919.729650px;}
.y8{bottom:922.176000px;}
.yac{bottom:923.975850px;}
.y53{bottom:923.981700px;}
.y17f{bottom:929.975850px;}
.ydf{bottom:934.227750px;}
.y11c{bottom:935.346750px;}
.y7f{bottom:938.479650px;}
.yed{bottom:941.346750px;}
.y52{bottom:942.731700px;}
.y17e{bottom:948.725850px;}
.yde{bottom:952.977750px;}
.y7{bottom:955.176000px;}
.y7e{bottom:957.229650px;}
.y11b{bottom:958.267050px;}
.y51{bottom:961.481700px;}
.yec{bottom:964.267050px;}
.y17d{bottom:967.475850px;}
.ydd{bottom:971.727750px;}
.y7d{bottom:975.979650px;}
.y50{bottom:980.231700px;}
.y11a{bottom:981.187500px;}
.y17c{bottom:986.225850px;}
.yeb{bottom:987.187500px;}
.y6{bottom:988.176000px;}
.ydc{bottom:994.729650px;}
.y4f{bottom:998.981700px;}
.y119{bottom:1004.107950px;}
.y17b{bottom:1004.975850px;}
.yea{bottom:1010.107950px;}
.ydb{bottom:1013.479650px;}
.y4e{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.y17a{bottom:1023.725850px;}
.y118{bottom:1027.028250px;}
.yda{bottom:1032.229650px;}
.ye9{bottom:1033.028250px;}
.y4d{bottom:1036.481700px;}
.y4{bottom:1039.823700px;}
.y117{bottom:1049.948700px;}
.y4c{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.y4b{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.ha{height:25.500557px;}
.hf{height:43.335938px;}
.he{height:43.681641px;}
.h5{height:43.740234px;}
.hd{height:48.049805px;}
.hc{height:48.114258px;}
.h7{height:52.488281px;}
.h4{height:54.169922px;}
.hb{height:59.586914px;}
.h2{height:61.236328px;}
.h8{height:65.003906px;}
.h6{height:75.837891px;}
.h10{height:79.740234px;}
.h9{height:88.979906px;}
.h3{height:180.317586px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x2{left:46.396800px;}
.x1{left:85.039350px;}
.xe{left:90.087000px;}
.x6{left:92.408250px;}
.xb{left:96.624450px;}
.x46{left:98.539350px;}
.x9{left:100.500750px;}
.x11{left:102.637200px;}
.x16{left:106.299300px;}
.x7{left:112.244400px;}
.x13{left:115.374000px;}
.xc{left:125.556000px;}
.x40{left:135.687750px;}
.x3c{left:137.916000px;}
.x3b{left:139.179450px;}
.x34{left:140.816400px;}
.x12{left:148.321950px;}
.x10{left:160.135800px;}
.x32{left:167.095650px;}
.x36{left:178.360350px;}
.x41{left:180.447750px;}
.x3e{left:186.277800px;}
.x43{left:187.940400px;}
.x37{left:189.621300px;}
.x28{left:190.677900px;}
.x38{left:194.605500px;}
.x29{left:202.548600px;}
.x35{left:204.628650px;}
.x1c{left:206.110050px;}
.x24{left:217.705950px;}
.x26{left:218.969250px;}
.x33{left:227.557200px;}
.x15{left:230.623950px;}
.x42{left:240.473400px;}
.xf{left:245.115300px;}
.x3f{left:250.478250px;}
.x39{left:259.234350px;}
.x22{left:260.237550px;}
.x25{left:269.411250px;}
.x1f{left:274.395300px;}
.x44{left:275.497800px;}
.x2a{left:277.999050px;}
.x21{left:288.571350px;}
.x1d{left:293.174550px;}
.x20{left:307.347000px;}
.x8{left:338.604450px;}
.xa{left:346.638450px;}
.x14{left:373.805400px;}
.x17{left:476.716500px;}
.x23{left:479.334900px;}
.x1e{left:487.281600px;}
.x45{left:490.216500px;}
.x2c{left:493.263150px;}
.x18{left:497.976450px;}
.x4{left:508.762800px;}
.xd{left:512.319450px;}
.x3d{left:514.521750px;}
.x1b{left:524.976450px;}
.x5{left:548.994750px;}
.x2b{left:552.630900px;}
.x2d{left:571.437000px;}
.x2f{left:572.693100px;}
.x2e{left:577.274400px;}
.x19{left:618.184200px;}
.x30{left:659.712000px;}
.x27{left:663.010950px;}
.x31{left:665.963250px;}
.x3a{left:685.559250px;}
.x3{left:775.393650px;}
.x1a{left:827.035350px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v3{vertical-align:32.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004907pt;}
.ls1{letter-spacing:0.005461pt;}
.ls0{letter-spacing:0.005995pt;}
.ls5{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.645333pt;}
.ls6{letter-spacing:1.173333pt;}
.ls8{letter-spacing:1.290667pt;}
.lsc{letter-spacing:1.584000pt;}
.lse{letter-spacing:1.994667pt;}
.lsb{letter-spacing:3.050667pt;}
.ls7{letter-spacing:3.168000pt;}
.lsf{letter-spacing:4.576000pt;}
.lsd{letter-spacing:5.197867pt;}
.ls3{letter-spacing:10.435200pt;}
.ls9{letter-spacing:14.960000pt;}
.wsbe{word-spacing:-31.269333pt;}
.wsc2{word-spacing:-21.507200pt;}
.wsbc{word-spacing:-19.477333pt;}
.wsc0{word-spacing:-19.360000pt;}
.wsc3{word-spacing:-18.304000pt;}
.wsc1{word-spacing:-17.893333pt;}
.ws0{word-spacing:-17.792000pt;}
.wsbd{word-spacing:-17.600000pt;}
.wsbb{word-spacing:-17.482667pt;}
.wsbf{word-spacing:-16.954667pt;}
.ws9c{word-spacing:-16.896000pt;}
.ws59{word-spacing:-16.309333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws7f{word-spacing:-11.861333pt;}
.ws50{word-spacing:-5.984000pt;}
.wsd2{word-spacing:-4.576000pt;}
.ws99{word-spacing:-3.696000pt;}
.ws66{word-spacing:-3.520000pt;}
.ws79{word-spacing:-3.109333pt;}
.ws14{word-spacing:-3.050667pt;}
.ws83{word-spacing:-2.933333pt;}
.ws36{word-spacing:-2.816000pt;}
.ws67{word-spacing:-2.698667pt;}
.wsba{word-spacing:-2.464000pt;}
.ws23{word-spacing:-2.346667pt;}
.ws8b{word-spacing:-2.288000pt;}
.ws9d{word-spacing:-2.112000pt;}
.ws65{word-spacing:-2.053333pt;}
.ws2b{word-spacing:-1.936000pt;}
.ws20{word-spacing:-1.877333pt;}
.ws94{word-spacing:-1.701333pt;}
.ws1a{word-spacing:-1.642667pt;}
.wscb{word-spacing:-1.584000pt;}
.ws3e{word-spacing:-1.466667pt;}
.wsa6{word-spacing:-1.408000pt;}
.ws73{word-spacing:-1.290667pt;}
.ws9a{word-spacing:-1.232000pt;}
.wsa5{word-spacing:-1.173333pt;}
.ws11{word-spacing:-1.056000pt;}
.ws3f{word-spacing:-0.997333pt;}
.wse{word-spacing:-0.880000pt;}
.ws58{word-spacing:-0.821333pt;}
.ws8d{word-spacing:-0.762667pt;}
.ws55{word-spacing:-0.645333pt;}
.wsa7{word-spacing:-0.352000pt;}
.ws5b{word-spacing:-0.293333pt;}
.ws6a{word-spacing:-0.234667pt;}
.ws93{word-spacing:-0.176000pt;}
.ws2{word-spacing:0.000000pt;}
.ws54{word-spacing:0.176000pt;}
.ws61{word-spacing:0.234667pt;}
.ws7b{word-spacing:0.469333pt;}
.wsaf{word-spacing:0.586667pt;}
.ws1b{word-spacing:0.645333pt;}
.ws57{word-spacing:0.704000pt;}
.ws37{word-spacing:0.762667pt;}
.ws75{word-spacing:0.821333pt;}
.wsa1{word-spacing:0.880000pt;}
.ws44{word-spacing:0.997333pt;}
.ws4a{word-spacing:1.114667pt;}
.ws88{word-spacing:1.290667pt;}
.ws26{word-spacing:1.349333pt;}
.ws35{word-spacing:1.584000pt;}
.ws4e{word-spacing:1.760000pt;}
.ws4b{word-spacing:1.818667pt;}
.ws31{word-spacing:1.877333pt;}
.wsb1{word-spacing:1.936000pt;}
.ws5{word-spacing:1.994667pt;}
.ws13{word-spacing:2.053333pt;}
.ws51{word-spacing:2.170667pt;}
.ws4f{word-spacing:2.229333pt;}
.ws3d{word-spacing:2.346667pt;}
.ws10{word-spacing:2.405333pt;}
.ws27{word-spacing:2.464000pt;}
.ws22{word-spacing:2.522667pt;}
.wsaa{word-spacing:2.640000pt;}
.ws96{word-spacing:2.874667pt;}
.ws18{word-spacing:2.933333pt;}
.ws24{word-spacing:2.992000pt;}
.ws8a{word-spacing:3.050667pt;}
.ws7a{word-spacing:3.402667pt;}
.ws1e{word-spacing:3.461333pt;}
.ws3c{word-spacing:3.520000pt;}
.ws7c{word-spacing:3.930667pt;}
.ws76{word-spacing:3.989333pt;}
.ws4c{word-spacing:4.048000pt;}
.ws89{word-spacing:4.165333pt;}
.ws68{word-spacing:4.224000pt;}
.ws3b{word-spacing:4.400000pt;}
.ws56{word-spacing:4.458667pt;}
.ws45{word-spacing:4.517333pt;}
.wsc{word-spacing:4.576000pt;}
.wsa9{word-spacing:4.634667pt;}
.wsca{word-spacing:4.752000pt;}
.ws28{word-spacing:4.810667pt;}
.ws2c{word-spacing:4.869333pt;}
.wsa2{word-spacing:4.928000pt;}
.wscc{word-spacing:4.986667pt;}
.ws95{word-spacing:5.045333pt;}
.ws21{word-spacing:5.104000pt;}
.ws8e{word-spacing:5.162667pt;}
.ws69{word-spacing:5.221333pt;}
.ws5d{word-spacing:5.338667pt;}
.ws90{word-spacing:5.456000pt;}
.ws60{word-spacing:5.514667pt;}
.ws62{word-spacing:5.573333pt;}
.ws15{word-spacing:5.632000pt;}
.ws12{word-spacing:5.690667pt;}
.wsa3{word-spacing:5.749333pt;}
.wsb{word-spacing:5.808000pt;}
.ws42{word-spacing:5.866667pt;}
.ws5c{word-spacing:6.042667pt;}
.wsb0{word-spacing:6.160000pt;}
.ws1f{word-spacing:6.218667pt;}
.wscd{word-spacing:6.394667pt;}
.ws2f{word-spacing:6.592000pt;}
.ws43{word-spacing:6.629333pt;}
.ws47{word-spacing:6.688000pt;}
.ws32{word-spacing:6.746667pt;}
.ws9f{word-spacing:6.981333pt;}
.ws70{word-spacing:7.157333pt;}
.ws17{word-spacing:7.274667pt;}
.ws2e{word-spacing:7.333333pt;}
.ws71{word-spacing:7.509333pt;}
.ws5a{word-spacing:7.568000pt;}
.wsb9{word-spacing:7.626667pt;}
.ws5f{word-spacing:7.685333pt;}
.ws64{word-spacing:7.802667pt;}
.ws48{word-spacing:7.861333pt;}
.ws63{word-spacing:7.920000pt;}
.wsa{word-spacing:8.096000pt;}
.wsc9{word-spacing:8.154667pt;}
.wsd5{word-spacing:8.213333pt;}
.wsb6{word-spacing:8.272000pt;}
.ws38{word-spacing:8.330667pt;}
.ws3{word-spacing:8.389333pt;}
.wsab{word-spacing:8.565333pt;}
.wsd{word-spacing:8.741333pt;}
.ws19{word-spacing:8.976000pt;}
.ws53{word-spacing:9.034667pt;}
.ws1c{word-spacing:9.152000pt;}
.ws9{word-spacing:9.445333pt;}
.ws4{word-spacing:9.504000pt;}
.ws97{word-spacing:9.562667pt;}
.ws8f{word-spacing:9.680000pt;}
.ws5e{word-spacing:9.914667pt;}
.ws33{word-spacing:9.973333pt;}
.ws1d{word-spacing:10.032000pt;}
.ws9b{word-spacing:10.090667pt;}
.ws6{word-spacing:10.442667pt;}
.ws72{word-spacing:10.501333pt;}
.ws6b{word-spacing:10.560000pt;}
.ws2a{word-spacing:10.736000pt;}
.wsc5{word-spacing:10.853333pt;}
.wsa0{word-spacing:10.912000pt;}
.ws74{word-spacing:11.029333pt;}
.wsa8{word-spacing:11.146667pt;}
.ws98{word-spacing:11.264000pt;}
.ws49{word-spacing:11.381333pt;}
.ws3a{word-spacing:11.616000pt;}
.ws92{word-spacing:11.850667pt;}
.ws25{word-spacing:12.026667pt;}
.ws46{word-spacing:12.085333pt;}
.ws78{word-spacing:12.144000pt;}
.ws6e{word-spacing:12.320000pt;}
.ws8{word-spacing:12.554667pt;}
.wsce{word-spacing:12.730667pt;}
.wsb2{word-spacing:12.906667pt;}
.ws6c{word-spacing:13.258667pt;}
.ws4d{word-spacing:13.317333pt;}
.wsf{word-spacing:13.493333pt;}
.ws8c{word-spacing:13.728000pt;}
.ws6f{word-spacing:13.962667pt;}
.wsd8{word-spacing:14.138667pt;}
.ws16{word-spacing:14.373333pt;}
.wsc6{word-spacing:14.490667pt;}
.ws41{word-spacing:14.549333pt;}
.wsd7{word-spacing:14.725333pt;}
.ws52{word-spacing:14.901333pt;}
.ws34{word-spacing:14.960000pt;}
.wsd6{word-spacing:15.136000pt;}
.ws91{word-spacing:15.312000pt;}
.wsb5{word-spacing:15.605333pt;}
.wsad{word-spacing:15.840000pt;}
.ws87{word-spacing:15.957333pt;}
.wsac{word-spacing:16.016000pt;}
.ws2d{word-spacing:16.074667pt;}
.ws29{word-spacing:16.544000pt;}
.wsae{word-spacing:16.602667pt;}
.ws77{word-spacing:17.658667pt;}
.ws39{word-spacing:17.834667pt;}
.wscf{word-spacing:18.714667pt;}
.ws30{word-spacing:19.125333pt;}
.ws9e{word-spacing:19.184000pt;}
.ws6d{word-spacing:19.242667pt;}
.wsd4{word-spacing:20.944000pt;}
.ws40{word-spacing:21.589333pt;}
.wsa4{word-spacing:23.760000pt;}
.wsd3{word-spacing:24.229333pt;}
.wsc4{word-spacing:24.288000pt;}
.wsb8{word-spacing:24.698667pt;}
.wsd0{word-spacing:25.402667pt;}
.ws7{word-spacing:25.637333pt;}
.wsb3{word-spacing:28.336000pt;}
.wsb4{word-spacing:28.570667pt;}
.wsc7{word-spacing:28.746667pt;}
.wsd1{word-spacing:40.538667pt;}
.wsb7{word-spacing:74.272000pt;}
.wsc8{word-spacing:89.173333pt;}
.ws86{word-spacing:98.586667pt;}
.ws80{word-spacing:116.472000pt;}
.ws85{word-spacing:220.133333pt;}
.ws82{word-spacing:249.786667pt;}
.ws7e{word-spacing:264.832533pt;}
.ws7d{word-spacing:279.655467pt;}
.ws81{word-spacing:563.653333pt;}
.ws84{word-spacing:712.037333pt;}
._3a{margin-left:-7.515200pt;}
._0{margin-left:-6.586467pt;}
._2{margin-left:-5.532800pt;}
._1{margin-left:-3.824000pt;}
._3{margin-left:-2.747733pt;}
._4{margin-left:-1.306667pt;}
._7{width:1.161600pt;}
._34{width:2.428800pt;}
._a{width:3.373333pt;}
._9{width:4.740267pt;}
._8{width:5.737600pt;}
._c{width:7.356800pt;}
._d{width:8.248533pt;}
._b{width:9.562667pt;}
._6{width:10.935467pt;}
._3c{width:12.196800pt;}
._36{width:13.299733pt;}
._35{width:14.361600pt;}
._39{width:15.259200pt;}
._5{width:17.512000pt;}
._37{width:18.830200pt;}
._38{width:19.752000pt;}
._f{width:21.624533pt;}
._3b{width:25.864533pt;}
._e{width:59.157333pt;}
._32{width:133.013333pt;}
._27{width:153.320533pt;}
._33{width:199.444267pt;}
._2a{width:219.961067pt;}
._2f{width:254.741333pt;}
._26{width:264.613333pt;}
._13{width:279.659200pt;}
._20{width:284.213333pt;}
._15{width:294.482133pt;}
._1a{width:296.461333pt;}
._1d{width:309.313067pt;}
._11{width:310.836267pt;}
._29{width:313.016000pt;}
._28{width:317.857067pt;}
._30{width:320.990933pt;}
._1e{width:417.106133pt;}
._21{width:457.160533pt;}
._2b{width:485.276267pt;}
._2e{width:491.258133pt;}
._23{width:497.174933pt;}
._25{width:515.757333pt;}
._22{width:578.480000pt;}
._18{width:646.561067pt;}
._1c{width:666.233067pt;}
._31{width:726.837333pt;}
._2c{width:758.885333pt;}
._17{width:812.994667pt;}
._1b{width:845.550400pt;}
._12{width:849.302933pt;}
._19{width:864.133333pt;}
._10{width:903.352000pt;}
._16{width:913.198933pt;}
._1f{width:926.318400pt;}
._24{width:943.946667pt;}
._14{width:980.427733pt;}
._2d{width:1286.100800pt;}
.fs5{font-size:31.093333pt;}
.fs4{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:177.532800pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:48.634667pt;}
.yd8{bottom:65.301333pt;}
.y116{bottom:73.843067pt;}
.y2{bottom:75.590533pt;}
.y7c{bottom:78.188533pt;}
.y1c5{bottom:78.193733pt;}
.y167{bottom:78.902400pt;}
.yd7{bottom:81.968000pt;}
.y30{bottom:83.574267pt;}
.y145{bottom:84.225200pt;}
.y4a{bottom:85.348533pt;}
.y1a8{bottom:87.296000pt;}
.yab{bottom:89.532267pt;}
.y115{bottom:89.843067pt;}
.y7b{bottom:94.855200pt;}
.y1c4{bottom:94.860400pt;}
.y166{bottom:95.569067pt;}
.y2f{bottom:100.240933pt;}
.y144{bottom:100.891867pt;}
.y49{bottom:102.015200pt;}
.yd6{bottom:102.414133pt;}
.y1a7{bottom:103.962667pt;}
.yaa{bottom:106.198933pt;}
.y114{bottom:110.216667pt;}
.y7a{bottom:111.521867pt;}
.y1c3{bottom:111.527067pt;}
.y165{bottom:112.235733pt;}
.y2e{bottom:116.907600pt;}
.y143{bottom:117.558533pt;}
.y48{bottom:118.681867pt;}
.yd5{bottom:119.080800pt;}
.y1a6{bottom:120.629333pt;}
.ya9{bottom:122.865600pt;}
.y179{bottom:126.645067pt;}
.y79{bottom:128.188533pt;}
.y164{bottom:128.902400pt;}
.y113{bottom:130.590400pt;}
.y1c2{bottom:131.973200pt;}
.y2d{bottom:133.574267pt;}
.y47{bottom:135.348533pt;}
.yd4{bottom:135.747467pt;}
.y1a5{bottom:137.296000pt;}
.y142{bottom:138.004667pt;}
.ya8{bottom:139.532267pt;}
.y178{bottom:143.311733pt;}
.y78{bottom:144.855200pt;}
.y163{bottom:145.569067pt;}
.y1c1{bottom:148.639867pt;}
.y2c{bottom:150.240933pt;}
.y112{bottom:150.964133pt;}
.y46{bottom:152.015200pt;}
.yd3{bottom:152.414133pt;}
.y1a4{bottom:153.962667pt;}
.y141{bottom:154.671333pt;}
.ya7{bottom:156.198933pt;}
.y177{bottom:159.978400pt;}
.y77{bottom:161.521867pt;}
.y162{bottom:162.235733pt;}
.y1c0{bottom:165.306533pt;}
.y2b{bottom:166.907600pt;}
.y111{bottom:166.964133pt;}
.y45{bottom:168.681867pt;}
.yd2{bottom:169.080800pt;}
.y1a3{bottom:170.629333pt;}
.y140{bottom:171.338000pt;}
.ya6{bottom:172.865600pt;}
.y176{bottom:176.645067pt;}
.y76{bottom:178.188533pt;}
.y161{bottom:178.902400pt;}
.y1bf{bottom:181.973200pt;}
.y2a{bottom:183.574267pt;}
.y44{bottom:185.348533pt;}
.yd1{bottom:185.747467pt;}
.y1a2{bottom:187.296000pt;}
.y110{bottom:187.337867pt;}
.y13f{bottom:188.004667pt;}
.ya5{bottom:189.532267pt;}
.y175{bottom:193.311733pt;}
.ye8{bottom:194.855200pt;}
.y160{bottom:195.569067pt;}
.y75{bottom:198.634667pt;}
.y1be{bottom:198.639867pt;}
.y29{bottom:200.240933pt;}
.y43{bottom:202.015200pt;}
.yd0{bottom:202.414133pt;}
.y13e{bottom:204.671333pt;}
.ya4{bottom:206.198933pt;}
.y10f{bottom:207.711467pt;}
.y1a1{bottom:207.742267pt;}
.y174{bottom:209.978400pt;}
.y15f{bottom:212.235733pt;}
.y74{bottom:215.301333pt;}
.y1bd{bottom:215.306533pt;}
.y28{bottom:216.907600pt;}
.y42{bottom:218.681867pt;}
.ycf{bottom:219.080800pt;}
.y13d{bottom:221.338000pt;}
.ya3{bottom:222.865600pt;}
.y1a0{bottom:224.408933pt;}
.y173{bottom:226.645067pt;}
.y10e{bottom:228.085200pt;}
.y15e{bottom:228.902400pt;}
.y73{bottom:231.968000pt;}
.y27{bottom:233.574267pt;}
.y41{bottom:235.348533pt;}
.yce{bottom:235.747467pt;}
.y1bc{bottom:235.752800pt;}
.y13c{bottom:238.004667pt;}
.ya2{bottom:239.532267pt;}
.y19f{bottom:241.075600pt;}
.y172{bottom:243.311733pt;}
.y10d{bottom:244.085200pt;}
.y15d{bottom:245.569067pt;}
.y72{bottom:248.634667pt;}
.y26{bottom:250.240933pt;}
.y40{bottom:252.015200pt;}
.ycd{bottom:252.414133pt;}
.y1bb{bottom:252.419467pt;}
.y13b{bottom:254.671333pt;}
.ya1{bottom:256.198933pt;}
.y19e{bottom:257.742267pt;}
.y171{bottom:259.978400pt;}
.y15c{bottom:262.235733pt;}
.y10c{bottom:264.458933pt;}
.y71{bottom:265.301333pt;}
.y25{bottom:266.907600pt;}
.y3f{bottom:268.681867pt;}
.ycc{bottom:269.080800pt;}
.y1ba{bottom:269.086133pt;}
.y13a{bottom:271.338000pt;}
.ya0{bottom:272.865600pt;}
.y19d{bottom:274.408933pt;}
.y170{bottom:276.645200pt;}
.y15b{bottom:278.902400pt;}
.y70{bottom:281.968000pt;}
.y24{bottom:283.574267pt;}
.y10b{bottom:284.832667pt;}
.y3e{bottom:285.348533pt;}
.ycb{bottom:285.747467pt;}
.y1b9{bottom:285.752800pt;}
.y139{bottom:288.004667pt;}
.y9f{bottom:289.532267pt;}
.y19c{bottom:291.075600pt;}
.y16f{bottom:293.311867pt;}
.y15a{bottom:295.569067pt;}
.y6f{bottom:298.634667pt;}
.y23{bottom:300.240933pt;}
.y3d{bottom:302.015200pt;}
.yca{bottom:302.414133pt;}
.y1b8{bottom:302.419467pt;}
.y138{bottom:304.671333pt;}
.y10a{bottom:305.206267pt;}
.y9e{bottom:306.198933pt;}
.y19b{bottom:307.742267pt;}
.y16e{bottom:309.978533pt;}
.y159{bottom:312.235733pt;}
.y6e{bottom:315.301333pt;}
.y22{bottom:316.907600pt;}
.y3c{bottom:318.681867pt;}
.yc9{bottom:319.080800pt;}
.y1b7{bottom:319.086133pt;}
.y137{bottom:321.338000pt;}
.y9d{bottom:322.865600pt;}
.y109{bottom:325.580000pt;}
.y16d{bottom:326.645200pt;}
.y19a{bottom:328.188400pt;}
.y158{bottom:328.902400pt;}
.y6d{bottom:331.968000pt;}
.y21{bottom:333.574267pt;}
.y3b{bottom:335.348533pt;}
.y1b6{bottom:335.752800pt;}
.y136{bottom:338.004667pt;}
.yc8{bottom:339.527067pt;}
.y9c{bottom:343.311867pt;}
.y199{bottom:344.855067pt;}
.y157{bottom:345.569067pt;}
.y108{bottom:345.953733pt;}
.y6c{bottom:348.634667pt;}
.y20{bottom:350.240933pt;}
.y3a{bottom:352.015200pt;}
.y1b5{bottom:352.419467pt;}
.y135{bottom:354.671333pt;}
.yc7{bottom:356.193733pt;}
.y9b{bottom:359.978533pt;}
.y198{bottom:361.521733pt;}
.y6b{bottom:365.301333pt;}
.y156{bottom:366.015200pt;}
.y107{bottom:366.327333pt;}
.y1f{bottom:366.907600pt;}
.y39{bottom:368.681867pt;}
.y1b4{bottom:369.086133pt;}
.y134{bottom:371.338000pt;}
.yc6{bottom:372.860400pt;}
.y9a{bottom:376.645200pt;}
.y197{bottom:378.188400pt;}
.ye7{bottom:381.968000pt;}
.y155{bottom:382.681867pt;}
.y1e{bottom:383.574267pt;}
.y38{bottom:385.348533pt;}
.y6a{bottom:385.747467pt;}
.y106{bottom:386.701067pt;}
.y133{bottom:388.004667pt;}
.yc5{bottom:389.527067pt;}
.y1b3{bottom:389.532267pt;}
.y99{bottom:393.311867pt;}
.y196{bottom:394.855067pt;}
.ye6{bottom:398.634667pt;}
.y154{bottom:399.348533pt;}
.y1d{bottom:400.240933pt;}
.y69{bottom:402.414133pt;}
.y132{bottom:404.671333pt;}
.yc4{bottom:406.193733pt;}
.y1b2{bottom:406.198933pt;}
.y105{bottom:407.074800pt;}
.y98{bottom:409.978533pt;}
.y195{bottom:411.521733pt;}
.y37{bottom:413.353867pt;}
.y153{bottom:416.015200pt;}
.y1c{bottom:416.907600pt;}
.y68{bottom:419.080800pt;}
.yc3{bottom:422.860400pt;}
.y1b1{bottom:422.865600pt;}
.y131{bottom:425.117600pt;}
.y97{bottom:426.645200pt;}
.y102{bottom:427.448533pt;}
.y152{bottom:432.681867pt;}
.y1b{bottom:433.574267pt;}
.y104{bottom:435.448533pt;}
.y67{bottom:435.747467pt;}
.yc2{bottom:439.527067pt;}
.y1b0{bottom:439.532267pt;}
.y36{bottom:441.133333pt;}
.y130{bottom:441.784267pt;}
.y96{bottom:443.311867pt;}
.y100{bottom:443.448533pt;}
.y16c{bottom:447.091333pt;}
.y151{bottom:449.348533pt;}
.y1a{bottom:450.240933pt;}
.yff{bottom:450.488800pt;}
.y103{bottom:451.448533pt;}
.y66{bottom:452.414133pt;}
.yc1{bottom:456.193733pt;}
.y1af{bottom:456.198933pt;}
.y35{bottom:457.800000pt;}
.y12f{bottom:458.450933pt;}
.y101{bottom:459.448533pt;}
.y95{bottom:459.978533pt;}
.y16b{bottom:463.758000pt;}
.y150{bottom:466.015200pt;}
.y19{bottom:466.907600pt;}
.y65{bottom:469.080800pt;}
.yc0{bottom:472.860400pt;}
.y194{bottom:472.865600pt;}
.y12e{bottom:475.117600pt;}
.y94{bottom:476.645200pt;}
.y34{bottom:478.246133pt;}
.yfe{bottom:479.822133pt;}
.y16a{bottom:480.424667pt;}
.y14f{bottom:482.681867pt;}
.y18{bottom:483.574267pt;}
.y64{bottom:485.747467pt;}
.ybf{bottom:489.527067pt;}
.y193{bottom:489.532267pt;}
.y12d{bottom:491.784267pt;}
.y93{bottom:493.311867pt;}
.y33{bottom:494.912800pt;}
.y169{bottom:497.091333pt;}
.y14e{bottom:499.348533pt;}
.y17{bottom:500.240933pt;}
.yfd{bottom:500.529200pt;}
.y63{bottom:502.414133pt;}
.ybe{bottom:506.193733pt;}
.y192{bottom:506.198933pt;}
.y12c{bottom:508.450933pt;}
.y32{bottom:511.579467pt;}
.y92{bottom:513.758000pt;}
.y14d{bottom:516.015200pt;}
.y16{bottom:516.907600pt;}
.y62{bottom:519.080800pt;}
.ybd{bottom:522.860400pt;}
.y191{bottom:522.865600pt;}
.y12b{bottom:525.117600pt;}
.y31{bottom:528.246133pt;}
.yfc{bottom:528.928533pt;}
.y91{bottom:530.424667pt;}
.y14c{bottom:532.681867pt;}
.y61{bottom:535.747467pt;}
.ybc{bottom:539.527067pt;}
.y190{bottom:539.532267pt;}
.y12a{bottom:541.784267pt;}
.y15{bottom:544.912800pt;}
.yfb{bottom:545.595200pt;}
.ye5{bottom:547.086133pt;}
.y90{bottom:547.091333pt;}
.y14b{bottom:549.348533pt;}
.y60{bottom:552.414133pt;}
.ybb{bottom:556.193733pt;}
.y18f{bottom:556.198933pt;}
.y129{bottom:558.450933pt;}
.yfa{bottom:562.261867pt;}
.y8f{bottom:563.758000pt;}
.y5f{bottom:569.080800pt;}
.y14a{bottom:569.794800pt;}
.yba{bottom:572.860400pt;}
.y18e{bottom:572.865600pt;}
.y128{bottom:575.117600pt;}
.y14{bottom:575.932400pt;}
.y1ae{bottom:576.645200pt;}
.yf9{bottom:578.928533pt;}
.y8e{bottom:580.424667pt;}
.y5e{bottom:585.747467pt;}
.y149{bottom:586.461467pt;}
.yb9{bottom:589.527067pt;}
.y18d{bottom:589.532267pt;}
.y127{bottom:591.784267pt;}
.y13{bottom:591.932400pt;}
.y1ad{bottom:593.311867pt;}
.y8d{bottom:597.091333pt;}
.y5d{bottom:602.414133pt;}
.y148{bottom:603.128133pt;}
.yf8{bottom:606.015600pt;}
.yb8{bottom:606.193733pt;}
.y18c{bottom:606.198933pt;}
.y12{bottom:607.932400pt;}
.y1ac{bottom:609.978533pt;}
.y8c{bottom:613.758000pt;}
.y5c{bottom:619.080800pt;}
.y126{bottom:619.789467pt;}
.y147{bottom:619.794800pt;}
.yb7{bottom:622.860400pt;}
.y18b{bottom:622.865600pt;}
.y11{bottom:623.932400pt;}
.y1ab{bottom:626.645200pt;}
.y8b{bottom:630.424667pt;}
.yf7{bottom:633.015600pt;}
.y146{bottom:636.461467pt;}
.yb6{bottom:639.527067pt;}
.y18a{bottom:639.532267pt;}
.y1aa{bottom:643.311867pt;}
.y10{bottom:644.372400pt;}
.y5b{bottom:647.086133pt;}
.y8a{bottom:647.091333pt;}
.y125{bottom:653.128133pt;}
.yf6{bottom:653.389333pt;}
.yf{bottom:655.932400pt;}
.yb5{bottom:656.193733pt;}
.y189{bottom:656.198933pt;}
.y1a9{bottom:659.978533pt;}
.y89{bottom:663.758000pt;}
.y124{bottom:669.794800pt;}
.y188{bottom:672.865600pt;}
.yf5{bottom:673.763067pt;}
.ye{bottom:676.372400pt;}
.yb4{bottom:676.639867pt;}
.y5a{bottom:676.645200pt;}
.y88{bottom:680.424667pt;}
.yd{bottom:682.604400pt;}
.y123{bottom:686.461467pt;}
.yc{bottom:687.932400pt;}
.y187{bottom:689.532267pt;}
.yb3{bottom:693.306533pt;}
.yf4{bottom:694.136667pt;}
.y87{bottom:697.091333pt;}
.y168{bottom:700.870800pt;}
.y122{bottom:703.128133pt;}
.yb2{bottom:709.973200pt;}
.y186{bottom:709.978533pt;}
.y86{bottom:713.758000pt;}
.yf3{bottom:714.510400pt;}
.y59{bottom:717.537467pt;}
.y121{bottom:719.794800pt;}
.yb{bottom:719.932400pt;}
.yb1{bottom:726.639867pt;}
.y185{bottom:726.645200pt;}
.y85{bottom:730.424667pt;}
.y58{bottom:734.204133pt;}
.yf2{bottom:734.884133pt;}
.y120{bottom:736.461467pt;}
.yb0{bottom:743.306533pt;}
.y184{bottom:743.311867pt;}
.ye4{bottom:747.091333pt;}
.y84{bottom:750.870800pt;}
.y11f{bottom:753.128133pt;}
.y57{bottom:754.650400pt;}
.yf1{bottom:755.257867pt;}
.ya{bottom:755.712000pt;}
.yaf{bottom:759.973200pt;}
.y183{bottom:759.978533pt;}
.ye3{bottom:763.758000pt;}
.y83{bottom:767.537467pt;}
.y11e{bottom:769.794800pt;}
.y56{bottom:771.317067pt;}
.yf0{bottom:775.631467pt;}
.yae{bottom:776.639867pt;}
.y182{bottom:776.645200pt;}
.ye2{bottom:780.424667pt;}
.y82{bottom:784.204133pt;}
.y9{bottom:787.712000pt;}
.y55{bottom:787.983733pt;}
.yad{bottom:793.306533pt;}
.y181{bottom:793.311867pt;}
.yef{bottom:796.005200pt;}
.ye1{bottom:797.091333pt;}
.y81{bottom:800.870800pt;}
.y11d{bottom:804.419333pt;}
.y54{bottom:804.650400pt;}
.y180{bottom:809.978533pt;}
.ye0{bottom:813.758000pt;}
.yee{bottom:816.378933pt;}
.y80{bottom:817.537467pt;}
.y8{bottom:819.712000pt;}
.yac{bottom:821.311867pt;}
.y53{bottom:821.317067pt;}
.y17f{bottom:826.645200pt;}
.ydf{bottom:830.424667pt;}
.y11c{bottom:831.419333pt;}
.y7f{bottom:834.204133pt;}
.yed{bottom:836.752667pt;}
.y52{bottom:837.983733pt;}
.y17e{bottom:843.311867pt;}
.yde{bottom:847.091333pt;}
.y7{bottom:849.045333pt;}
.y7e{bottom:850.870800pt;}
.y11b{bottom:851.792933pt;}
.y51{bottom:854.650400pt;}
.yec{bottom:857.126267pt;}
.y17d{bottom:859.978533pt;}
.ydd{bottom:863.758000pt;}
.y7d{bottom:867.537467pt;}
.y50{bottom:871.317067pt;}
.y11a{bottom:872.166667pt;}
.y17c{bottom:876.645200pt;}
.yeb{bottom:877.500000pt;}
.y6{bottom:878.378667pt;}
.ydc{bottom:884.204133pt;}
.y4f{bottom:887.983733pt;}
.y119{bottom:892.540400pt;}
.y17b{bottom:893.311867pt;}
.yea{bottom:897.873733pt;}
.ydb{bottom:900.870800pt;}
.y4e{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.y17a{bottom:909.978533pt;}
.y118{bottom:912.914000pt;}
.yda{bottom:917.537467pt;}
.ye9{bottom:918.247333pt;}
.y4d{bottom:921.317067pt;}
.y4{bottom:924.287733pt;}
.y117{bottom:933.287733pt;}
.y4c{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.y4b{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.ha{height:22.667161pt;}
.hf{height:38.520833pt;}
.he{height:38.828125pt;}
.h5{height:38.880208pt;}
.hd{height:42.710938pt;}
.hc{height:42.768229pt;}
.h7{height:46.656250pt;}
.h4{height:48.151042pt;}
.hb{height:52.966146pt;}
.h2{height:54.432292pt;}
.h8{height:57.781250pt;}
.h6{height:67.411458pt;}
.h10{height:70.880208pt;}
.h9{height:79.093250pt;}
.h3{height:160.282298pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x2{left:41.241600pt;}
.x1{left:75.590533pt;}
.xe{left:80.077333pt;}
.x6{left:82.140667pt;}
.xb{left:85.888400pt;}
.x46{left:87.590533pt;}
.x9{left:89.334000pt;}
.x11{left:91.233067pt;}
.x16{left:94.488267pt;}
.x7{left:99.772800pt;}
.x13{left:102.554667pt;}
.xc{left:111.605333pt;}
.x40{left:120.611333pt;}
.x3c{left:122.592000pt;}
.x3b{left:123.715067pt;}
.x34{left:125.170133pt;}
.x12{left:131.841733pt;}
.x10{left:142.342933pt;}
.x32{left:148.529467pt;}
.x36{left:158.542533pt;}
.x41{left:160.398000pt;}
.x3e{left:165.580267pt;}
.x43{left:167.058133pt;}
.x37{left:168.552267pt;}
.x28{left:169.491467pt;}
.x38{left:172.982667pt;}
.x29{left:180.043200pt;}
.x35{left:181.892133pt;}
.x1c{left:183.208933pt;}
.x24{left:193.516400pt;}
.x26{left:194.639333pt;}
.x33{left:202.273067pt;}
.x15{left:204.999067pt;}
.x42{left:213.754133pt;}
.xf{left:217.880267pt;}
.x3f{left:222.647333pt;}
.x39{left:230.430533pt;}
.x22{left:231.322267pt;}
.x25{left:239.476667pt;}
.x1f{left:243.906933pt;}
.x44{left:244.886933pt;}
.x2a{left:247.110267pt;}
.x21{left:256.507867pt;}
.x1d{left:260.599600pt;}
.x20{left:273.197333pt;}
.x8{left:300.981733pt;}
.xa{left:308.123067pt;}
.x14{left:332.271467pt;}
.x17{left:423.748000pt;}
.x23{left:426.075467pt;}
.x1e{left:433.139200pt;}
.x45{left:435.748000pt;}
.x2c{left:438.456133pt;}
.x18{left:442.645733pt;}
.x4{left:452.233600pt;}
.xd{left:455.395067pt;}
.x3d{left:457.352667pt;}
.x1b{left:466.645733pt;}
.x5{left:487.995333pt;}
.x2b{left:491.227467pt;}
.x2d{left:507.944000pt;}
.x2f{left:509.060533pt;}
.x2e{left:513.132800pt;}
.x19{left:549.497067pt;}
.x30{left:586.410667pt;}
.x27{left:589.343067pt;}
.x31{left:591.967333pt;}
.x3a{left:609.386000pt;}
.x3{left:689.238800pt;}
.x1a{left:735.142533pt;}
}




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