
    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_13587e0b3d922212ddac4004.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.751000;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_f15387c660f6c06ede38101b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.784000;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_fbc4095b0ce991f7ac29b215.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106445;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_3dbb6e2831bf2ed07d28041b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_21fe4ce57c3d00ac0b00566c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_79a3e9fb8236838e1b8d9859.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_81e8b6a9dc35de76a546db04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.133301;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_13587e0b3d922212ddac4004.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.751000;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_025cc5494ca0dc8f93d3074e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_05e38f26c02498fb69c2157a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a6c5d95f9b0408297aee2c65.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d3a687f7e14a98a33457ec40.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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;}
.m2{transform:matrix(0.000000,-0.216250,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.216250,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.216250,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.273379,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.273379,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.273379,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228620,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.640600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:117.000000px;}
.ls13{letter-spacing:-1.224000px;}
.ls2{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.437155px;}
.ls9{letter-spacing:-0.434434px;}
.lsa{letter-spacing:-0.397282px;}
.ls5{letter-spacing:-0.378139px;}
.ls12{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.108608px;}
.ls7{letter-spacing:-0.094535px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.010200px;}
.ls16{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.275875px;}
.ls8{letter-spacing:0.283604px;}
.lsc{letter-spacing:0.325825px;}
.ls3{letter-spacing:0.472674px;}
.lsd{letter-spacing:0.543042px;}
.lsf{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.224000px;}
.ls10{letter-spacing:2.016000px;}
.ls1{letter-spacing:11.755487px;}
.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;}
}
.ws1{word-spacing:-36.000000px;}
.ws44{word-spacing:-25.088540px;}
.ws34{word-spacing:-21.837539px;}
.ws4{word-spacing:-21.600000px;}
.ws2{word-spacing:-16.800000px;}
.wsc4{word-spacing:-16.620000px;}
.ws86{word-spacing:-10.368000px;}
.wsbe{word-spacing:-10.008000px;}
.ws90{word-spacing:-9.864000px;}
.wsa4{word-spacing:-9.792000px;}
.ws45{word-spacing:-8.712000px;}
.ws8e{word-spacing:-8.640000px;}
.ws76{word-spacing:-8.568000px;}
.ws3a{word-spacing:-8.064000px;}
.ws9e{word-spacing:-7.992000px;}
.ws95{word-spacing:-7.344000px;}
.ws68{word-spacing:-7.200000px;}
.ws69{word-spacing:-6.840000px;}
.ws8b{word-spacing:-6.696000px;}
.ws26{word-spacing:-6.552000px;}
.ws80{word-spacing:-6.192000px;}
.wsf6{word-spacing:-6.060000px;}
.ws91{word-spacing:-5.688000px;}
.ws59{word-spacing:-5.544000px;}
.ws4b{word-spacing:-5.256000px;}
.wscf{word-spacing:-5.184000px;}
.ws22{word-spacing:-4.968000px;}
.ws63{word-spacing:-4.896000px;}
.wsc8{word-spacing:-4.824000px;}
.wsff{word-spacing:-4.800000px;}
.ws72{word-spacing:-4.680000px;}
.ws4a{word-spacing:-4.608000px;}
.ws27{word-spacing:-4.536000px;}
.wsbc{word-spacing:-4.392000px;}
.ws28{word-spacing:-4.320000px;}
.wsb6{word-spacing:-3.960000px;}
.ws1d{word-spacing:-3.888000px;}
.ws32{word-spacing:-3.816000px;}
.ws55{word-spacing:-3.744000px;}
.ws67{word-spacing:-3.672000px;}
.ws40{word-spacing:-3.456000px;}
.ws12{word-spacing:-3.312000px;}
.ws84{word-spacing:-3.168000px;}
.wsee{word-spacing:-3.000000px;}
.wsb0{word-spacing:-2.880000px;}
.wsaf{word-spacing:-2.808000px;}
.ws8d{word-spacing:-2.664000px;}
.ws8{word-spacing:-2.448000px;}
.wsb5{word-spacing:-2.232000px;}
.wsf2{word-spacing:-2.220000px;}
.wsa1{word-spacing:-2.088000px;}
.wse7{word-spacing:-1.980000px;}
.ws6d{word-spacing:-1.872000px;}
.wsca{word-spacing:-1.800000px;}
.wsda{word-spacing:-1.740000px;}
.ws7b{word-spacing:-1.728000px;}
.wse6{word-spacing:-1.680000px;}
.wsc0{word-spacing:-1.656000px;}
.ws9b{word-spacing:-1.512000px;}
.wsf1{word-spacing:-1.500000px;}
.ws54{word-spacing:-1.440000px;}
.wsa9{word-spacing:-1.296000px;}
.ws7d{word-spacing:-1.152000px;}
.ws1a{word-spacing:-1.008000px;}
.wsf4{word-spacing:-0.960000px;}
.ws4c{word-spacing:-0.792000px;}
.ws57{word-spacing:-0.720000px;}
.wsb3{word-spacing:-0.504000px;}
.ws50{word-spacing:-0.217217px;}
.ws5a{word-spacing:-0.216000px;}
.wsb9{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.wsf0{word-spacing:0.120000px;}
.ws85{word-spacing:0.216000px;}
.ws2b{word-spacing:0.288000px;}
.wse8{word-spacing:0.300000px;}
.wsab{word-spacing:0.360000px;}
.ws43{word-spacing:0.378139px;}
.ws9d{word-spacing:0.432000px;}
.ws4f{word-spacing:0.434434px;}
.wsd9{word-spacing:0.480000px;}
.wse4{word-spacing:0.600000px;}
.ws41{word-spacing:0.661744px;}
.ws4e{word-spacing:0.695243px;}
.ws25{word-spacing:0.720000px;}
.ws4d{word-spacing:0.760259px;}
.ws42{word-spacing:0.765022px;}
.ws5e{word-spacing:0.864000px;}
.wsa3{word-spacing:0.936000px;}
.ws19{word-spacing:1.008000px;}
.wsdc{word-spacing:1.020000px;}
.wsd3{word-spacing:1.140000px;}
.ws8a{word-spacing:1.224000px;}
.ws7c{word-spacing:1.368000px;}
.wse9{word-spacing:1.440000px;}
.ws1f{word-spacing:1.872000px;}
.ws8f{word-spacing:1.944000px;}
.ws39{word-spacing:2.016000px;}
.wsbd{word-spacing:2.088000px;}
.wsbf{word-spacing:2.160000px;}
.wsfa{word-spacing:2.220000px;}
.ws23{word-spacing:2.376000px;}
.ws5d{word-spacing:2.592000px;}
.wsec{word-spacing:2.700000px;}
.ws77{word-spacing:3.168000px;}
.ws2f{word-spacing:3.240000px;}
.wsd7{word-spacing:3.300000px;}
.wsd{word-spacing:3.456000px;}
.wsce{word-spacing:3.528000px;}
.ws93{word-spacing:3.600000px;}
.ws14{word-spacing:3.672000px;}
.wsa{word-spacing:3.744000px;}
.wsea{word-spacing:3.840000px;}
.wsad{word-spacing:4.032000px;}
.wsdd{word-spacing:4.140000px;}
.ws6b{word-spacing:4.248000px;}
.wsc6{word-spacing:4.392000px;}
.ws35{word-spacing:4.464000px;}
.ws11{word-spacing:4.536000px;}
.wsef{word-spacing:4.620000px;}
.wse3{word-spacing:4.680000px;}
.ws1b{word-spacing:4.824000px;}
.wsed{word-spacing:4.860000px;}
.wsaa{word-spacing:4.968000px;}
.ws6c{word-spacing:5.112000px;}
.ws5c{word-spacing:5.184000px;}
.wsde{word-spacing:5.280000px;}
.ws66{word-spacing:5.328000px;}
.wscd{word-spacing:5.400000px;}
.wsc2{word-spacing:5.616000px;}
.ws6e{word-spacing:5.688000px;}
.wscc{word-spacing:5.904000px;}
.wse5{word-spacing:5.940000px;}
.ws21{word-spacing:6.048000px;}
.wsd8{word-spacing:6.060000px;}
.ws6{word-spacing:6.120000px;}
.ws97{word-spacing:6.192000px;}
.ws7f{word-spacing:6.264000px;}
.ws20{word-spacing:6.408000px;}
.wsa2{word-spacing:6.552000px;}
.wsdf{word-spacing:6.600000px;}
.ws29{word-spacing:6.624000px;}
.wsfc{word-spacing:6.660000px;}
.ws6a{word-spacing:6.696000px;}
.ws94{word-spacing:6.768000px;}
.wsfd{word-spacing:6.780000px;}
.wsf9{word-spacing:6.840000px;}
.wsc9{word-spacing:6.912000px;}
.wsd4{word-spacing:6.960000px;}
.ws92{word-spacing:6.984000px;}
.wsb1{word-spacing:7.128000px;}
.wsf7{word-spacing:7.140000px;}
.ws75{word-spacing:7.200000px;}
.ws9c{word-spacing:7.272000px;}
.wsb2{word-spacing:7.632000px;}
.wse2{word-spacing:7.800000px;}
.ws8c{word-spacing:7.848000px;}
.ws96{word-spacing:8.208000px;}
.ws3c{word-spacing:8.280000px;}
.ws65{word-spacing:8.424000px;}
.ws99{word-spacing:8.784000px;}
.wsd6{word-spacing:8.880000px;}
.ws48{word-spacing:9.000000px;}
.wsb4{word-spacing:9.144000px;}
.ws2c{word-spacing:9.216000px;}
.wseb{word-spacing:9.480000px;}
.ws56{word-spacing:9.504000px;}
.ws87{word-spacing:9.648000px;}
.wsc7{word-spacing:9.864000px;}
.wsa8{word-spacing:10.008000px;}
.ws88{word-spacing:10.080000px;}
.ws89{word-spacing:10.152000px;}
.wsf5{word-spacing:10.320000px;}
.wsf3{word-spacing:10.500000px;}
.ws38{word-spacing:10.584000px;}
.ws6f{word-spacing:10.656000px;}
.wsdb{word-spacing:10.680000px;}
.wsd2{word-spacing:10.980000px;}
.ws46{word-spacing:11.088000px;}
.wsae{word-spacing:11.304000px;}
.ws16{word-spacing:11.376000px;}
.ws3b{word-spacing:11.448000px;}
.wse0{word-spacing:11.700000px;}
.ws33{word-spacing:11.736000px;}
.wsc5{word-spacing:11.880000px;}
.ws5f{word-spacing:11.952000px;}
.wse1{word-spacing:12.000000px;}
.ws2d{word-spacing:12.096000px;}
.ws73{word-spacing:12.168000px;}
.ws81{word-spacing:12.312000px;}
.ws18{word-spacing:12.528000px;}
.ws9{word-spacing:12.744000px;}
.ws2a{word-spacing:12.816000px;}
.ws74{word-spacing:12.888000px;}
.wsf{word-spacing:13.032000px;}
.ws62{word-spacing:13.104000px;}
.ws10{word-spacing:13.680000px;}
.ws36{word-spacing:13.752000px;}
.wsf8{word-spacing:13.800000px;}
.ws53{word-spacing:13.824000px;}
.ws101{word-spacing:13.860000px;}
.wse{word-spacing:14.400000px;}
.ws61{word-spacing:14.544000px;}
.ws5{word-spacing:14.688000px;}
.ws70{word-spacing:14.760000px;}
.ws24{word-spacing:14.832000px;}
.ws82{word-spacing:14.904000px;}
.ws79{word-spacing:15.192000px;}
.ws7{word-spacing:15.552000px;}
.ws37{word-spacing:15.696000px;}
.wsc3{word-spacing:15.840000px;}
.wsfe{word-spacing:16.140000px;}
.wsc{word-spacing:16.200000px;}
.wsa7{word-spacing:16.560000px;}
.ws15{word-spacing:16.704000px;}
.ws64{word-spacing:16.920000px;}
.wsac{word-spacing:17.280000px;}
.ws83{word-spacing:17.424000px;}
.ws47{word-spacing:18.144000px;}
.ws103{word-spacing:18.180000px;}
.wsb{word-spacing:18.360000px;}
.wsb7{word-spacing:18.432000px;}
.ws9f{word-spacing:18.504000px;}
.ws7e{word-spacing:18.576000px;}
.ws30{word-spacing:19.008000px;}
.wscb{word-spacing:19.080000px;}
.ws1c{word-spacing:19.656000px;}
.wsfb{word-spacing:19.680000px;}
.wsc1{word-spacing:19.728000px;}
.ws2e{word-spacing:19.800000px;}
.wsbb{word-spacing:20.160000px;}
.ws1e{word-spacing:20.736000px;}
.ws100{word-spacing:20.820000px;}
.ws52{word-spacing:21.456000px;}
.wsba{word-spacing:21.528000px;}
.ws17{word-spacing:21.672000px;}
.wsd5{word-spacing:21.780000px;}
.ws78{word-spacing:22.248000px;}
.wsa6{word-spacing:22.824000px;}
.ws5b{word-spacing:23.400000px;}
.ws49{word-spacing:23.472000px;}
.wsd0{word-spacing:25.848000px;}
.ws71{word-spacing:26.208000px;}
.ws13{word-spacing:27.432000px;}
.ws3d{word-spacing:27.504000px;}
.ws102{word-spacing:27.960000px;}
.ws7a{word-spacing:28.152000px;}
.ws31{word-spacing:29.880000px;}
.ws58{word-spacing:30.384000px;}
.wsb8{word-spacing:30.744000px;}
.ws51{word-spacing:31.176000px;}
.ws9a{word-spacing:31.752000px;}
.wsa5{word-spacing:33.624000px;}
.ws3e{word-spacing:35.064000px;}
.wsd1{word-spacing:35.700000px;}
.wsa0{word-spacing:37.224000px;}
.ws98{word-spacing:40.464000px;}
.ws60{word-spacing:40.824000px;}
.ws3f{word-spacing:45.576000px;}
.ws0{word-spacing:100.463400px;}
._1b{margin-left:-11.793600px;}
._2{margin-left:-9.900000px;}
._17{margin-left:-8.697600px;}
._16{margin-left:-7.185600px;}
._b{margin-left:-5.904000px;}
._1{margin-left:-4.500000px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.350000px;}
._8{width:1.180800px;}
._d{width:2.731258px;}
._1a{width:4.183200px;}
._c{width:5.248800px;}
._15{width:6.278400px;}
._11{width:7.725600px;}
._6{width:8.892000px;}
._5{width:10.015200px;}
._7{width:11.491200px;}
._10{width:12.657600px;}
._13{width:13.687200px;}
._9{width:15.645600px;}
._12{width:16.776000px;}
._e{width:17.791200px;}
._a{width:18.885600px;}
._f{width:22.341600px;}
._1f{width:26.892000px;}
._1c{width:28.224000px;}
._1e{width:29.676000px;}
._19{width:33.621000px;}
._21{width:34.858800px;}
._14{width:36.907200px;}
._1d{width:41.520000px;}
._18{width:63.576000px;}
._20{width:77.835000px;}
._4{width:122.307000px;}
.fc5{color:transparent;}
.fc3{color:rgb(60,106,112);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(229,137,29);}
.fs5{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs9{font-size:94.534800px;}
.fsd{font-size:99.320400px;}
.fs6{font-size:102.000000px;}
.fs8{font-size:104.785800px;}
.fsc{font-size:108.608400px;}
.fsa{font-size:109.288800px;}
.fsb{font-size:120.385200px;}
.fs2{font-size:126.000000px;}
.fs7{font-size:234.893400px;}
.y0{bottom:0.000000px;}
.y9e{bottom:16.493700px;}
.y85{bottom:17.084550px;}
.y2e{bottom:38.232300px;}
.y2d{bottom:38.870100px;}
.y89{bottom:78.589950px;}
.y8c{bottom:80.014200px;}
.y160{bottom:87.271800px;}
.y87{bottom:87.986850px;}
.y50{bottom:89.521800px;}
.ycb{bottom:90.138900px;}
.ya2{bottom:90.289350px;}
.ya8{bottom:91.923600px;}
.ya5{bottom:91.924500px;}
.y81{bottom:93.224550px;}
.y14d{bottom:93.271800px;}
.y132{bottom:94.470450px;}
.y111{bottom:97.759950px;}
.ya0{bottom:101.084400px;}
.y1aa{bottom:102.986100px;}
.yfa{bottom:106.263900px;}
.y8b{bottom:108.773400px;}
.y9b{bottom:111.224550px;}
.y72{bottom:111.975750px;}
.y15f{bottom:117.271800px;}
.y4f{bottom:118.771800px;}
.y176{bottom:119.728500px;}
.yca{bottom:120.138900px;}
.y1a9{bottom:120.986100px;}
.yec{bottom:123.271800px;}
.y131{bottom:123.720450px;}
.y80{bottom:123.824550px;}
.ya7{bottom:124.964100px;}
.ya4{bottom:124.965000px;}
.yaa{bottom:125.292150px;}
.y110{bottom:127.759950px;}
.yf9{bottom:136.263900px;}
.y175{bottom:137.728500px;}
.y9a{bottom:141.224550px;}
.y71{bottom:142.575600px;}
.y11d{bottom:144.091650px;}
.y15e{bottom:147.271800px;}
.y1a8{bottom:147.490050px;}
.y4e{bottom:148.021800px;}
.yc9{bottom:150.138900px;}
.yeb{bottom:153.271800px;}
.y7f{bottom:154.424400px;}
.y174{bottom:155.728500px;}
.y10f{bottom:157.759950px;}
.y130{bottom:161.474550px;}
.y1d1{bottom:162.490200px;}
.y1a7{bottom:165.490050px;}
.y173{bottom:173.728500px;}
.yf8{bottom:174.767700px;}
.y4d{bottom:177.271800px;}
.y99{bottom:179.728500px;}
.yc8{bottom:180.138900px;}
.y70{bottom:181.679700px;}
.y11c{bottom:182.595450px;}
.yea{bottom:183.271800px;}
.y1a6{bottom:183.490050px;}
.y7e{bottom:185.024550px;}
.y15d{bottom:185.775750px;}
.y10e{bottom:187.759950px;}
.y1d0{bottom:187.990200px;}
.y12f{bottom:199.228500px;}
.y172{bottom:200.232300px;}
.y1a5{bottom:201.490050px;}
.yf7{bottom:204.767700px;}
.y4c{bottom:206.521800px;}
.y98{bottom:209.728500px;}
.y1cf{bottom:211.240200px;}
.y6f{bottom:212.279550px;}
.ye9{bottom:213.271800px;}
.y7d{bottom:215.624400px;}
.y15c{bottom:215.775750px;}
.y171{bottom:218.232300px;}
.yc7{bottom:218.642700px;}
.y1a4{bottom:219.490050px;}
.y14c{bottom:221.775750px;}
.y10d{bottom:226.263900px;}
.y12e{bottom:228.478500px;}
.y2b{bottom:228.771600px;}
.yf6{bottom:234.767700px;}
.y4b{bottom:235.771800px;}
.y97{bottom:239.728500px;}
.y6e{bottom:242.879550px;}
.y2a{bottom:243.171450px;}
.ye8{bottom:243.271800px;}
.y170{bottom:244.736250px;}
.y15b{bottom:245.775750px;}
.y1a3{bottom:245.994000px;}
.yc6{bottom:248.642700px;}
.y14b{bottom:251.775750px;}
.y7c{bottom:254.728500px;}
.y10c{bottom:256.263900px;}
.y29{bottom:257.571600px;}
.y1ce{bottom:257.740200px;}
.y16f{bottom:262.736250px;}
.y1a2{bottom:263.994000px;}
.y4a{bottom:265.021800px;}
.y12d{bottom:266.232300px;}
.y96{bottom:269.728500px;}
.ye7{bottom:273.271800px;}
.y6d{bottom:273.479700px;}
.y1cd{bottom:275.740200px;}
.y15a{bottom:275.775750px;}
.yc5{bottom:278.642700px;}
.y14a{bottom:281.775750px;}
.y1a1{bottom:281.994000px;}
.y7b{bottom:285.328350px;}
.y10b{bottom:286.263900px;}
.y16e{bottom:289.240200px;}
.y1cc{bottom:293.740200px;}
.y49{bottom:294.271800px;}
.y12c{bottom:295.482300px;}
.y95{bottom:299.728500px;}
.y28{bottom:300.171300px;}
.y25{bottom:302.421300px;}
.ye6{bottom:303.271800px;}
.y6c{bottom:304.079550px;}
.y159{bottom:305.775750px;}
.y16d{bottom:307.240200px;}
.y1a0{bottom:308.497950px;}
.yc4{bottom:308.642700px;}
.y1cb{bottom:311.740200px;}
.y7a{bottom:315.928500px;}
.y27{bottom:318.171300px;}
.y149{bottom:320.279550px;}
.y24{bottom:320.421300px;}
.y12b{bottom:324.732300px;}
.y10a{bottom:324.767700px;}
.y19f{bottom:326.497950px;}
.y94{bottom:329.728500px;}
.y1ca{bottom:329.740200px;}
.y48{bottom:332.025750px;}
.yf5{bottom:333.271800px;}
.y16c{bottom:333.744150px;}
.y6b{bottom:334.679700px;}
.y26{bottom:336.171300px;}
.y23{bottom:338.421300px;}
.yc3{bottom:338.642700px;}
.ye5{bottom:341.775750px;}
.y158{bottom:344.279550px;}
.y19e{bottom:344.497950px;}
.y79{bottom:346.528350px;}
.y148{bottom:350.279550px;}
.y109{bottom:354.767700px;}
.y16b{bottom:360.248100px;}
.y47{bottom:361.275750px;}
.y12a{bottom:362.486250px;}
.y19d{bottom:362.497950px;}
.y93{bottom:368.232300px;}
.yc2{bottom:368.642700px;}
.ye4{bottom:371.775750px;}
.y6a{bottom:373.783500px;}
.y157{bottom:374.279550px;}
.y1c9{bottom:376.240200px;}
.y16a{bottom:378.248100px;}
.y147{bottom:380.279550px;}
.y19c{bottom:380.497950px;}
.y22{bottom:381.021150px;}
.y108{bottom:384.767700px;}
.y78{bottom:385.632450px;}
.y46{bottom:390.525750px;}
.y129{bottom:391.736250px;}
.y1c8{bottom:394.240200px;}
.y92{bottom:398.232300px;}
.ye3{bottom:401.775750px;}
.y156{bottom:404.279550px;}
.y69{bottom:404.383650px;}
.y169{bottom:404.752050px;}
.y19b{bottom:407.001900px;}
.yc1{bottom:407.146800px;}
.y1c7{bottom:412.240200px;}
.y77{bottom:416.232450px;}
.y146{bottom:418.783500px;}
.y45{bottom:419.775600px;}
.y107{bottom:423.271800px;}
.y19a{bottom:425.001900px;}
.y21{bottom:428.121000px;}
.y91{bottom:428.232450px;}
.y128{bottom:429.490200px;}
.y1c6{bottom:430.240200px;}
.ye2{bottom:431.775600px;}
.y68{bottom:434.983500px;}
.yc0{bottom:437.146800px;}
.y155{bottom:442.783500px;}
.y199{bottom:443.001900px;}
.y83{bottom:446.076900px;}
.y20{bottom:446.121000px;}
.y1c5{bottom:448.240200px;}
.y145{bottom:448.783500px;}
.y44{bottom:449.025600px;}
.y106{bottom:453.271800px;}
.y90{bottom:458.232450px;}
.y127{bottom:458.740200px;}
.ye1{bottom:461.775600px;}
.y1f{bottom:464.121000px;}
.y1c4{bottom:466.240200px;}
.ybf{bottom:467.146800px;}
.y198{bottom:469.505850px;}
.y67{bottom:474.087450px;}
.y144{bottom:478.783500px;}
.y1e{bottom:482.121000px;}
.y105{bottom:483.271800px;}
.y43{bottom:486.779550px;}
.y197{bottom:487.505850px;}
.y168{bottom:487.759950px;}
.y8f{bottom:488.232450px;}
.y11b{bottom:490.627050px;}
.ye0{bottom:491.775600px;}
.y76{bottom:494.440200px;}
.y126{bottom:496.494150px;}
.ybe{bottom:497.146800px;}
.y1c3{bottom:497.994150px;}
.y1d{bottom:500.121000px;}
.y66{bottom:504.687450px;}
.y196{bottom:505.505850px;}
.y143{bottom:508.783500px;}
.y104{bottom:513.271800px;}
.y42{bottom:516.029550px;}
.y9d{bottom:518.316000px;}
.yf4{bottom:521.775600px;}
.y125{bottom:525.744150px;}
.y154{bottom:525.791400px;}
.y167{bottom:526.263900px;}
.y1c{bottom:526.624950px;}
.ybd{bottom:527.146800px;}
.y82{bottom:529.369500px;}
.ydf{bottom:530.279550px;}
.y195{bottom:532.009800px;}
.y84{bottom:533.809500px;}
.y65{bottom:535.287450px;}
.y1c2{bottom:542.498100px;}
.y1b{bottom:544.624950px;}
.y41{bottom:545.279550px;}
.y142{bottom:547.287450px;}
.y194{bottom:550.009800px;}
.y103{bottom:551.775600px;}
.y124{bottom:554.994150px;}
.y153{bottom:555.791400px;}
.ybc{bottom:557.146800px;}
.yde{bottom:560.279550px;}
.y1a{bottom:562.624950px;}
.y166{bottom:564.767850px;}
.y8e{bottom:565.240200px;}
.y193{bottom:568.009800px;}
.y1c1{bottom:569.002050px;}
.y64{bottom:574.391400px;}
.y40{bottom:574.529550px;}
.y141{bottom:577.287450px;}
.y19{bottom:580.624950px;}
.y102{bottom:581.775600px;}
.y86{bottom:583.923000px;}
.y152{bottom:585.791400px;}
.ydd{bottom:590.279550px;}
.y123{bottom:592.748100px;}
.y192{bottom:594.513600px;}
.y165{bottom:594.767850px;}
.y8d{bottom:595.240200px;}
.y1c0{bottom:595.506000px;}
.ybb{bottom:595.650600px;}
.y18{bottom:598.624950px;}
.y3f{bottom:603.779550px;}
.y63{bottom:604.991400px;}
.y140{bottom:607.287450px;}
.y101{bottom:611.775600px;}
.y191{bottom:612.513600px;}
.y1bf{bottom:613.506000px;}
.y151{bottom:615.791400px;}
.ydc{bottom:620.279550px;}
.y122{bottom:621.998100px;}
.y17{bottom:625.128900px;}
.yba{bottom:625.650600px;}
.y9c{bottom:631.416000px;}
.y164{bottom:633.271800px;}
.y62{bottom:635.591400px;}
.y190{bottom:639.017550px;}
.y1be{bottom:640.009950px;}
.y3e{bottom:641.533500px;}
.y100{bottom:641.775600px;}
.y16{bottom:643.128900px;}
.y13f{bottom:645.791400px;}
.y121{bottom:651.248100px;}
.yb9{bottom:655.650600px;}
.y18f{bottom:657.017550px;}
.y1bd{bottom:658.009950px;}
.ydb{bottom:658.783500px;}
.y15{bottom:661.128900px;}
.y61{bottom:666.191400px;}
.yf{bottom:670.624950px;}
.y3d{bottom:670.783500px;}
.y163{bottom:671.775600px;}
.y18e{bottom:675.017550px;}
.y13e{bottom:675.791400px;}
.y1bc{bottom:676.009950px;}
.y14{bottom:679.128900px;}
.yff{bottom:680.279550px;}
.y9f{bottom:686.184000px;}
.ye{bottom:688.624950px;}
.yda{bottom:688.783500px;}
.y120{bottom:689.002050px;}
.y18d{bottom:693.017550px;}
.yb8{bottom:694.154550px;}
.y60{bottom:696.791400px;}
.y13{bottom:697.128900px;}
.y3c{bottom:700.033500px;}
.y1bb{bottom:702.513900px;}
.y88{bottom:704.370000px;}
.y13d{bottom:705.791400px;}
.ya1{bottom:709.083000px;}
.yfe{bottom:710.279550px;}
.yd{bottom:715.128900px;}
.y11f{bottom:718.252050px;}
.yd9{bottom:718.783500px;}
.y18c{bottom:719.521500px;}
.y1ba{bottom:720.513900px;}
.y12{bottom:723.632850px;}
.y5f{bottom:727.391400px;}
.y3b{bottom:729.283500px;}
.yc{bottom:733.128900px;}
.y13c{bottom:735.791400px;}
.y18b{bottom:737.521500px;}
.yfd{bottom:740.279550px;}
.y11{bottom:741.632850px;}
.y1b9{bottom:747.017850px;}
.yd8{bottom:748.783500px;}
.y18a{bottom:755.521500px;}
.y5e{bottom:757.991400px;}
.y3a{bottom:758.533500px;}
.yb{bottom:759.632850px;}
.y1b8{bottom:765.017850px;}
.y13b{bottom:765.791400px;}
.y10{bottom:768.136800px;}
.yb7{bottom:777.162450px;}
.yd7{bottom:778.783500px;}
.y189{bottom:782.025450px;}
.y1b7{bottom:783.017700px;}
.ya{bottom:786.136800px;}
.yf3{bottom:787.287450px;}
.y39{bottom:787.783500px;}
.y5d{bottom:788.591400px;}
.y11e{bottom:793.759950px;}
.y150{bottom:795.791400px;}
.y11a{bottom:798.658500px;}
.y188{bottom:800.025600px;}
.ya3{bottom:800.026500px;}
.y9{bottom:804.136800px;}
.y13a{bottom:804.295350px;}
.yb6{bottom:807.162450px;}
.yd6{bottom:808.783500px;}
.y1b6{bottom:809.521800px;}
.yf2{bottom:817.287450px;}
.y187{bottom:818.025600px;}
.y5c{bottom:819.191400px;}
.y38{bottom:825.537450px;}
.y14f{bottom:825.791400px;}
.y1b5{bottom:827.521800px;}
.y119{bottom:828.658500px;}
.y139{bottom:834.295350px;}
.y186{bottom:836.025600px;}
.yb5{bottom:837.162450px;}
.yd5{bottom:838.783500px;}
.y8a{bottom:843.324000px;}
.yf1{bottom:847.287450px;}
.y8{bottom:848.986650px;}
.y5b{bottom:849.791400px;}
.y185{bottom:854.025600px;}
.y1b4{bottom:854.025750px;}
.y37{bottom:854.787450px;}
.y14e{bottom:855.791400px;}
.y118{bottom:858.658500px;}
.y138{bottom:864.295350px;}
.y1b3{bottom:872.025750px;}
.yb4{bottom:875.666400px;}
.yd4{bottom:877.287450px;}
.y5a{bottom:880.391400px;}
.y184{bottom:880.529550px;}
.y36{bottom:884.037450px;}
.y162{bottom:885.791400px;}
.y137{bottom:894.295350px;}
.y7{bottom:896.086500px;}
.y117{bottom:897.162450px;}
.y183{bottom:898.529550px;}
.yb3{bottom:905.666400px;}
.yd3{bottom:907.287450px;}
.y59{bottom:910.991400px;}
.y35{bottom:913.287450px;}
.y161{bottom:915.791400px;}
.y182{bottom:916.529550px;}
.y136{bottom:924.295350px;}
.y116{bottom:927.162450px;}
.y6{bottom:933.886500px;}
.y181{bottom:934.529550px;}
.yb2{bottom:935.666400px;}
.yd2{bottom:937.287450px;}
.y34{bottom:942.537450px;}
.yf0{bottom:945.791400px;}
.y58{bottom:950.095350px;}
.y180{bottom:952.529550px;}
.y135{bottom:954.295350px;}
.y115{bottom:957.162450px;}
.ya6{bottom:959.341500px;}
.y1b2{bottom:961.033500px;}
.yb1{bottom:965.666400px;}
.yd1{bottom:967.287450px;}
.y5{bottom:971.686500px;}
.y33{bottom:971.787450px;}
.yef{bottom:975.791400px;}
.y17f{bottom:979.033500px;}
.y57{bottom:980.695350px;}
.y134{bottom:984.295350px;}
.y114{bottom:987.162450px;}
.yb0{bottom:995.666400px;}
.y17e{bottom:997.033500px;}
.yfc{bottom:997.287450px;}
.y32{bottom:1001.037450px;}
.yd0{bottom:1005.791400px;}
.y56{bottom:1011.295350px;}
.y133{bottom:1014.295350px;}
.y1b1{bottom:1015.033500px;}
.y113{bottom:1017.162450px;}
.ya9{bottom:1017.243000px;}
.y17d{bottom:1023.537450px;}
.yaf{bottom:1025.666400px;}
.y4{bottom:1028.911350px;}
.y31{bottom:1030.287450px;}
.y1b0{bottom:1033.033500px;}
.ycf{bottom:1035.791400px;}
.y17c{bottom:1041.537450px;}
.y55{bottom:1041.895350px;}
.yee{bottom:1044.295350px;}
.y112{bottom:1047.162450px;}
.yae{bottom:1055.666400px;}
.y30{bottom:1059.537450px;}
.yce{bottom:1065.791400px;}
.y75{bottom:1072.495200px;}
.y54{bottom:1072.495350px;}
.yed{bottom:1074.295350px;}
.y1af{bottom:1077.537450px;}
.yad{bottom:1085.666400px;}
.y17b{bottom:1086.041250px;}
.y1ae{bottom:1095.537450px;}
.yfb{bottom:1095.791400px;}
.y53{bottom:1103.095350px;}
.y17a{bottom:1104.041250px;}
.ycd{bottom:1104.295350px;}
.yac{bottom:1115.666400px;}
.y179{bottom:1122.041250px;}
.y1ad{bottom:1122.041400px;}
.y2f{bottom:1126.541400px;}
.y74{bottom:1133.695200px;}
.y52{bottom:1133.695350px;}
.ycc{bottom:1134.295350px;}
.y1ac{bottom:1140.041400px;}
.y3{bottom:1146.439950px;}
.y178{bottom:1148.545200px;}
.yab{bottom:1154.170350px;}
.y73{bottom:1164.295200px;}
.y51{bottom:1164.295350px;}
.y177{bottom:1166.545200px;}
.y1ab{bottom:1166.545350px;}
.y2{bottom:1174.939950px;}
.y1{bottom:1203.439950px;}
.y2c{bottom:1215.602400px;}
.hc{height:36.048000px;}
.h13{height:39.579000px;}
.h1c{height:42.336000px;}
.hb{height:43.125000px;}
.h23{height:45.000000px;}
.h8{height:53.759766px;}
.h7{height:53.906250px;}
.ha{height:54.000000px;}
.h6{height:54.072000px;}
.h9{height:55.517578px;}
.hd{height:57.142603px;}
.h10{height:64.511719px;}
.h14{height:64.623398px;}
.hf{height:64.687500px;}
.h19{height:66.621094px;}
.h3{height:67.500000px;}
.h2{height:67.590000px;}
.h1f{height:67.894805px;}
.h12{height:71.630918px;}
.h1d{height:74.244023px;}
.h16{height:74.709141px;}
.h4{height:75.468750px;}
.h1b{height:82.294570px;}
.h5{height:94.500000px;}
.h17{height:101.083500px;}
.h20{height:116.133000px;}
.h18{height:131.551500px;}
.h21{height:151.135500px;}
.h22{height:151.137000px;}
.he{height:211.037039px;}
.h15{height:409.746000px;}
.h11{height:470.563500px;}
.h1e{height:470.743500px;}
.h1a{height:542.125500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:41.583000px;}
.w4{width:45.757500px;}
.wa{width:279.114000px;}
.wb{width:281.506500px;}
.wc{width:281.508000px;}
.w5{width:306.799500px;}
.w6{width:309.762000px;}
.wd{width:364.972500px;}
.w8{width:395.485500px;}
.w3{width:434.851500px;}
.w7{width:643.188000px;}
.w2{width:703.794000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:17.950500px;}
.x1b{left:19.752000px;}
.x23{left:23.932500px;}
.x19{left:26.334750px;}
.xa{left:50.503050px;}
.xe{left:53.136750px;}
.xf{left:56.025450px;}
.x5{left:69.629250px;}
.x10{left:84.401550px;}
.x8{left:85.813050px;}
.x28{left:87.354300px;}
.x2b{left:91.039350px;}
.xb{left:93.833100px;}
.x7{left:98.498550px;}
.x18{left:104.152500px;}
.x14{left:106.299150px;}
.x9{left:109.279800px;}
.x6{left:113.432700px;}
.x13{left:116.448300px;}
.xc{left:126.015750px;}
.x1f{left:127.576500px;}
.x21{left:133.125750px;}
.x22{left:137.448000px;}
.x17{left:146.487450px;}
.x12{left:181.722450px;}
.x27{left:200.569500px;}
.x1d{left:203.926500px;}
.xd{left:218.981100px;}
.x4{left:227.485050px;}
.x2a{left:236.894250px;}
.x16{left:247.017000px;}
.x2c{left:255.803100px;}
.x20{left:266.982000px;}
.x15{left:276.607650px;}
.x29{left:308.059200px;}
.x1e{left:338.249700px;}
.x25{left:485.965500px;}
.x1c{left:487.651500px;}
.x26{left:488.658000px;}
.x1a{left:490.612500px;}
.x11{left:492.696900px;}
.x2d{left:594.472350px;}
.x3{left:699.531900px;}
.x2{left:704.370300px;}
.x1{left:722.978100px;}
@media print{
.v1{vertical-align:-21.013867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:104.000000pt;}
.ls13{letter-spacing:-1.088000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.388582pt;}
.ls9{letter-spacing:-0.386163pt;}
.lsa{letter-spacing:-0.353139pt;}
.ls5{letter-spacing:-0.336124pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.096541pt;}
.ls7{letter-spacing:-0.084031pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.009067pt;}
.ls16{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.245223pt;}
.ls8{letter-spacing:0.252093pt;}
.lsc{letter-spacing:0.289622pt;}
.ls3{letter-spacing:0.420155pt;}
.lsd{letter-spacing:0.482704pt;}
.lsf{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.792000pt;}
.ls1{letter-spacing:10.449322pt;}
.ws1{word-spacing:-32.000000pt;}
.ws44{word-spacing:-22.300925pt;}
.ws34{word-spacing:-19.411146pt;}
.ws4{word-spacing:-19.200000pt;}
.ws2{word-spacing:-14.933333pt;}
.wsc4{word-spacing:-14.773333pt;}
.ws86{word-spacing:-9.216000pt;}
.wsbe{word-spacing:-8.896000pt;}
.ws90{word-spacing:-8.768000pt;}
.wsa4{word-spacing:-8.704000pt;}
.ws45{word-spacing:-7.744000pt;}
.ws8e{word-spacing:-7.680000pt;}
.ws76{word-spacing:-7.616000pt;}
.ws3a{word-spacing:-7.168000pt;}
.ws9e{word-spacing:-7.104000pt;}
.ws95{word-spacing:-6.528000pt;}
.ws68{word-spacing:-6.400000pt;}
.ws69{word-spacing:-6.080000pt;}
.ws8b{word-spacing:-5.952000pt;}
.ws26{word-spacing:-5.824000pt;}
.ws80{word-spacing:-5.504000pt;}
.wsf6{word-spacing:-5.386667pt;}
.ws91{word-spacing:-5.056000pt;}
.ws59{word-spacing:-4.928000pt;}
.ws4b{word-spacing:-4.672000pt;}
.wscf{word-spacing:-4.608000pt;}
.ws22{word-spacing:-4.416000pt;}
.ws63{word-spacing:-4.352000pt;}
.wsc8{word-spacing:-4.288000pt;}
.wsff{word-spacing:-4.266667pt;}
.ws72{word-spacing:-4.160000pt;}
.ws4a{word-spacing:-4.096000pt;}
.ws27{word-spacing:-4.032000pt;}
.wsbc{word-spacing:-3.904000pt;}
.ws28{word-spacing:-3.840000pt;}
.wsb6{word-spacing:-3.520000pt;}
.ws1d{word-spacing:-3.456000pt;}
.ws32{word-spacing:-3.392000pt;}
.ws55{word-spacing:-3.328000pt;}
.ws67{word-spacing:-3.264000pt;}
.ws40{word-spacing:-3.072000pt;}
.ws12{word-spacing:-2.944000pt;}
.ws84{word-spacing:-2.816000pt;}
.wsee{word-spacing:-2.666667pt;}
.wsb0{word-spacing:-2.560000pt;}
.wsaf{word-spacing:-2.496000pt;}
.ws8d{word-spacing:-2.368000pt;}
.ws8{word-spacing:-2.176000pt;}
.wsb5{word-spacing:-1.984000pt;}
.wsf2{word-spacing:-1.973333pt;}
.wsa1{word-spacing:-1.856000pt;}
.wse7{word-spacing:-1.760000pt;}
.ws6d{word-spacing:-1.664000pt;}
.wsca{word-spacing:-1.600000pt;}
.wsda{word-spacing:-1.546667pt;}
.ws7b{word-spacing:-1.536000pt;}
.wse6{word-spacing:-1.493333pt;}
.wsc0{word-spacing:-1.472000pt;}
.ws9b{word-spacing:-1.344000pt;}
.wsf1{word-spacing:-1.333333pt;}
.ws54{word-spacing:-1.280000pt;}
.wsa9{word-spacing:-1.152000pt;}
.ws7d{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-0.896000pt;}
.wsf4{word-spacing:-0.853333pt;}
.ws4c{word-spacing:-0.704000pt;}
.ws57{word-spacing:-0.640000pt;}
.wsb3{word-spacing:-0.448000pt;}
.ws50{word-spacing:-0.193082pt;}
.ws5a{word-spacing:-0.192000pt;}
.wsb9{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.wsf0{word-spacing:0.106667pt;}
.ws85{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.256000pt;}
.wse8{word-spacing:0.266667pt;}
.wsab{word-spacing:0.320000pt;}
.ws43{word-spacing:0.336124pt;}
.ws9d{word-spacing:0.384000pt;}
.ws4f{word-spacing:0.386163pt;}
.wsd9{word-spacing:0.426667pt;}
.wse4{word-spacing:0.533333pt;}
.ws41{word-spacing:0.588217pt;}
.ws4e{word-spacing:0.617994pt;}
.ws25{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.675786pt;}
.ws42{word-spacing:0.680019pt;}
.ws5e{word-spacing:0.768000pt;}
.wsa3{word-spacing:0.832000pt;}
.ws19{word-spacing:0.896000pt;}
.wsdc{word-spacing:0.906667pt;}
.wsd3{word-spacing:1.013333pt;}
.ws8a{word-spacing:1.088000pt;}
.ws7c{word-spacing:1.216000pt;}
.wse9{word-spacing:1.280000pt;}
.ws1f{word-spacing:1.664000pt;}
.ws8f{word-spacing:1.728000pt;}
.ws39{word-spacing:1.792000pt;}
.wsbd{word-spacing:1.856000pt;}
.wsbf{word-spacing:1.920000pt;}
.wsfa{word-spacing:1.973333pt;}
.ws23{word-spacing:2.112000pt;}
.ws5d{word-spacing:2.304000pt;}
.wsec{word-spacing:2.400000pt;}
.ws77{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.880000pt;}
.wsd7{word-spacing:2.933333pt;}
.wsd{word-spacing:3.072000pt;}
.wsce{word-spacing:3.136000pt;}
.ws93{word-spacing:3.200000pt;}
.ws14{word-spacing:3.264000pt;}
.wsa{word-spacing:3.328000pt;}
.wsea{word-spacing:3.413333pt;}
.wsad{word-spacing:3.584000pt;}
.wsdd{word-spacing:3.680000pt;}
.ws6b{word-spacing:3.776000pt;}
.wsc6{word-spacing:3.904000pt;}
.ws35{word-spacing:3.968000pt;}
.ws11{word-spacing:4.032000pt;}
.wsef{word-spacing:4.106667pt;}
.wse3{word-spacing:4.160000pt;}
.ws1b{word-spacing:4.288000pt;}
.wsed{word-spacing:4.320000pt;}
.wsaa{word-spacing:4.416000pt;}
.ws6c{word-spacing:4.544000pt;}
.ws5c{word-spacing:4.608000pt;}
.wsde{word-spacing:4.693333pt;}
.ws66{word-spacing:4.736000pt;}
.wscd{word-spacing:4.800000pt;}
.wsc2{word-spacing:4.992000pt;}
.ws6e{word-spacing:5.056000pt;}
.wscc{word-spacing:5.248000pt;}
.wse5{word-spacing:5.280000pt;}
.ws21{word-spacing:5.376000pt;}
.wsd8{word-spacing:5.386667pt;}
.ws6{word-spacing:5.440000pt;}
.ws97{word-spacing:5.504000pt;}
.ws7f{word-spacing:5.568000pt;}
.ws20{word-spacing:5.696000pt;}
.wsa2{word-spacing:5.824000pt;}
.wsdf{word-spacing:5.866667pt;}
.ws29{word-spacing:5.888000pt;}
.wsfc{word-spacing:5.920000pt;}
.ws6a{word-spacing:5.952000pt;}
.ws94{word-spacing:6.016000pt;}
.wsfd{word-spacing:6.026667pt;}
.wsf9{word-spacing:6.080000pt;}
.wsc9{word-spacing:6.144000pt;}
.wsd4{word-spacing:6.186667pt;}
.ws92{word-spacing:6.208000pt;}
.wsb1{word-spacing:6.336000pt;}
.wsf7{word-spacing:6.346667pt;}
.ws75{word-spacing:6.400000pt;}
.ws9c{word-spacing:6.464000pt;}
.wsb2{word-spacing:6.784000pt;}
.wse2{word-spacing:6.933333pt;}
.ws8c{word-spacing:6.976000pt;}
.ws96{word-spacing:7.296000pt;}
.ws3c{word-spacing:7.360000pt;}
.ws65{word-spacing:7.488000pt;}
.ws99{word-spacing:7.808000pt;}
.wsd6{word-spacing:7.893333pt;}
.ws48{word-spacing:8.000000pt;}
.wsb4{word-spacing:8.128000pt;}
.ws2c{word-spacing:8.192000pt;}
.wseb{word-spacing:8.426667pt;}
.ws56{word-spacing:8.448000pt;}
.ws87{word-spacing:8.576000pt;}
.wsc7{word-spacing:8.768000pt;}
.wsa8{word-spacing:8.896000pt;}
.ws88{word-spacing:8.960000pt;}
.ws89{word-spacing:9.024000pt;}
.wsf5{word-spacing:9.173333pt;}
.wsf3{word-spacing:9.333333pt;}
.ws38{word-spacing:9.408000pt;}
.ws6f{word-spacing:9.472000pt;}
.wsdb{word-spacing:9.493333pt;}
.wsd2{word-spacing:9.760000pt;}
.ws46{word-spacing:9.856000pt;}
.wsae{word-spacing:10.048000pt;}
.ws16{word-spacing:10.112000pt;}
.ws3b{word-spacing:10.176000pt;}
.wse0{word-spacing:10.400000pt;}
.ws33{word-spacing:10.432000pt;}
.wsc5{word-spacing:10.560000pt;}
.ws5f{word-spacing:10.624000pt;}
.wse1{word-spacing:10.666667pt;}
.ws2d{word-spacing:10.752000pt;}
.ws73{word-spacing:10.816000pt;}
.ws81{word-spacing:10.944000pt;}
.ws18{word-spacing:11.136000pt;}
.ws9{word-spacing:11.328000pt;}
.ws2a{word-spacing:11.392000pt;}
.ws74{word-spacing:11.456000pt;}
.wsf{word-spacing:11.584000pt;}
.ws62{word-spacing:11.648000pt;}
.ws10{word-spacing:12.160000pt;}
.ws36{word-spacing:12.224000pt;}
.wsf8{word-spacing:12.266667pt;}
.ws53{word-spacing:12.288000pt;}
.ws101{word-spacing:12.320000pt;}
.wse{word-spacing:12.800000pt;}
.ws61{word-spacing:12.928000pt;}
.ws5{word-spacing:13.056000pt;}
.ws70{word-spacing:13.120000pt;}
.ws24{word-spacing:13.184000pt;}
.ws82{word-spacing:13.248000pt;}
.ws79{word-spacing:13.504000pt;}
.ws7{word-spacing:13.824000pt;}
.ws37{word-spacing:13.952000pt;}
.wsc3{word-spacing:14.080000pt;}
.wsfe{word-spacing:14.346667pt;}
.wsc{word-spacing:14.400000pt;}
.wsa7{word-spacing:14.720000pt;}
.ws15{word-spacing:14.848000pt;}
.ws64{word-spacing:15.040000pt;}
.wsac{word-spacing:15.360000pt;}
.ws83{word-spacing:15.488000pt;}
.ws47{word-spacing:16.128000pt;}
.ws103{word-spacing:16.160000pt;}
.wsb{word-spacing:16.320000pt;}
.wsb7{word-spacing:16.384000pt;}
.ws9f{word-spacing:16.448000pt;}
.ws7e{word-spacing:16.512000pt;}
.ws30{word-spacing:16.896000pt;}
.wscb{word-spacing:16.960000pt;}
.ws1c{word-spacing:17.472000pt;}
.wsfb{word-spacing:17.493333pt;}
.wsc1{word-spacing:17.536000pt;}
.ws2e{word-spacing:17.600000pt;}
.wsbb{word-spacing:17.920000pt;}
.ws1e{word-spacing:18.432000pt;}
.ws100{word-spacing:18.506667pt;}
.ws52{word-spacing:19.072000pt;}
.wsba{word-spacing:19.136000pt;}
.ws17{word-spacing:19.264000pt;}
.wsd5{word-spacing:19.360000pt;}
.ws78{word-spacing:19.776000pt;}
.wsa6{word-spacing:20.288000pt;}
.ws5b{word-spacing:20.800000pt;}
.ws49{word-spacing:20.864000pt;}
.wsd0{word-spacing:22.976000pt;}
.ws71{word-spacing:23.296000pt;}
.ws13{word-spacing:24.384000pt;}
.ws3d{word-spacing:24.448000pt;}
.ws102{word-spacing:24.853333pt;}
.ws7a{word-spacing:25.024000pt;}
.ws31{word-spacing:26.560000pt;}
.ws58{word-spacing:27.008000pt;}
.wsb8{word-spacing:27.328000pt;}
.ws51{word-spacing:27.712000pt;}
.ws9a{word-spacing:28.224000pt;}
.wsa5{word-spacing:29.888000pt;}
.ws3e{word-spacing:31.168000pt;}
.wsd1{word-spacing:31.733333pt;}
.wsa0{word-spacing:33.088000pt;}
.ws98{word-spacing:35.968000pt;}
.ws60{word-spacing:36.288000pt;}
.ws3f{word-spacing:40.512000pt;}
.ws0{word-spacing:89.300800pt;}
._1b{margin-left:-10.483200pt;}
._2{margin-left:-8.800000pt;}
._17{margin-left:-7.731200pt;}
._16{margin-left:-6.387200pt;}
._b{margin-left:-5.248000pt;}
._1{margin-left:-4.000000pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.200000pt;}
._8{width:1.049600pt;}
._d{width:2.427785pt;}
._1a{width:3.718400pt;}
._c{width:4.665600pt;}
._15{width:5.580800pt;}
._11{width:6.867200pt;}
._6{width:7.904000pt;}
._5{width:8.902400pt;}
._7{width:10.214400pt;}
._10{width:11.251200pt;}
._13{width:12.166400pt;}
._9{width:13.907200pt;}
._12{width:14.912000pt;}
._e{width:15.814400pt;}
._a{width:16.787200pt;}
._f{width:19.859200pt;}
._1f{width:23.904000pt;}
._1c{width:25.088000pt;}
._1e{width:26.378667pt;}
._19{width:29.885333pt;}
._21{width:30.985600pt;}
._14{width:32.806400pt;}
._1d{width:36.906667pt;}
._18{width:56.512000pt;}
._20{width:69.186667pt;}
._4{width:108.717333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs9{font-size:84.030933pt;}
.fsd{font-size:88.284800pt;}
.fs6{font-size:90.666667pt;}
.fs8{font-size:93.142933pt;}
.fsc{font-size:96.540800pt;}
.fsa{font-size:97.145600pt;}
.fsb{font-size:107.009067pt;}
.fs2{font-size:112.000000pt;}
.fs7{font-size:208.794133pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:14.661067pt;}
.y85{bottom:15.186267pt;}
.y2e{bottom:33.984267pt;}
.y2d{bottom:34.551200pt;}
.y89{bottom:69.857733pt;}
.y8c{bottom:71.123733pt;}
.y160{bottom:77.574933pt;}
.y87{bottom:78.210533pt;}
.y50{bottom:79.574933pt;}
.ycb{bottom:80.123467pt;}
.ya2{bottom:80.257200pt;}
.ya8{bottom:81.709867pt;}
.ya5{bottom:81.710667pt;}
.y81{bottom:82.866267pt;}
.y14d{bottom:82.908267pt;}
.y132{bottom:83.973733pt;}
.y111{bottom:86.897733pt;}
.ya0{bottom:89.852800pt;}
.y1aa{bottom:91.543200pt;}
.yfa{bottom:94.456800pt;}
.y8b{bottom:96.687467pt;}
.y9b{bottom:98.866267pt;}
.y72{bottom:99.534000pt;}
.y15f{bottom:104.241600pt;}
.y4f{bottom:105.574933pt;}
.y176{bottom:106.425333pt;}
.yca{bottom:106.790133pt;}
.y1a9{bottom:107.543200pt;}
.yec{bottom:109.574933pt;}
.y131{bottom:109.973733pt;}
.y80{bottom:110.066267pt;}
.ya7{bottom:111.079200pt;}
.ya4{bottom:111.080000pt;}
.yaa{bottom:111.370800pt;}
.y110{bottom:113.564400pt;}
.yf9{bottom:121.123467pt;}
.y175{bottom:122.425333pt;}
.y9a{bottom:125.532933pt;}
.y71{bottom:126.733867pt;}
.y11d{bottom:128.081467pt;}
.y15e{bottom:130.908267pt;}
.y1a8{bottom:131.102267pt;}
.y4e{bottom:131.574933pt;}
.yc9{bottom:133.456800pt;}
.yeb{bottom:136.241600pt;}
.y7f{bottom:137.266133pt;}
.y174{bottom:138.425333pt;}
.y10f{bottom:140.231067pt;}
.y130{bottom:143.532933pt;}
.y1d1{bottom:144.435733pt;}
.y1a7{bottom:147.102267pt;}
.y173{bottom:154.425333pt;}
.yf8{bottom:155.349067pt;}
.y4d{bottom:157.574933pt;}
.y99{bottom:159.758667pt;}
.yc8{bottom:160.123467pt;}
.y70{bottom:161.493067pt;}
.y11c{bottom:162.307067pt;}
.yea{bottom:162.908267pt;}
.y1a6{bottom:163.102267pt;}
.y7e{bottom:164.466267pt;}
.y15d{bottom:165.134000pt;}
.y10e{bottom:166.897733pt;}
.y1d0{bottom:167.102400pt;}
.y12f{bottom:177.092000pt;}
.y172{bottom:177.984267pt;}
.y1a5{bottom:179.102267pt;}
.yf7{bottom:182.015733pt;}
.y4c{bottom:183.574933pt;}
.y98{bottom:186.425333pt;}
.y1cf{bottom:187.769067pt;}
.y6f{bottom:188.692933pt;}
.ye9{bottom:189.574933pt;}
.y7d{bottom:191.666133pt;}
.y15c{bottom:191.800667pt;}
.y171{bottom:193.984267pt;}
.yc7{bottom:194.349067pt;}
.y1a4{bottom:195.102267pt;}
.y14c{bottom:197.134000pt;}
.y10d{bottom:201.123467pt;}
.y12e{bottom:203.092000pt;}
.y2b{bottom:203.352533pt;}
.yf6{bottom:208.682400pt;}
.y4b{bottom:209.574933pt;}
.y97{bottom:213.092000pt;}
.y6e{bottom:215.892933pt;}
.y2a{bottom:216.152400pt;}
.ye8{bottom:216.241600pt;}
.y170{bottom:217.543333pt;}
.y15b{bottom:218.467333pt;}
.y1a3{bottom:218.661333pt;}
.yc6{bottom:221.015733pt;}
.y14b{bottom:223.800667pt;}
.y7c{bottom:226.425333pt;}
.y10c{bottom:227.790133pt;}
.y29{bottom:228.952533pt;}
.y1ce{bottom:229.102400pt;}
.y16f{bottom:233.543333pt;}
.y1a2{bottom:234.661333pt;}
.y4a{bottom:235.574933pt;}
.y12d{bottom:236.650933pt;}
.y96{bottom:239.758667pt;}
.ye7{bottom:242.908267pt;}
.y6d{bottom:243.093067pt;}
.y1cd{bottom:245.102400pt;}
.y15a{bottom:245.134000pt;}
.yc5{bottom:247.682400pt;}
.y14a{bottom:250.467333pt;}
.y1a1{bottom:250.661333pt;}
.y7b{bottom:253.625200pt;}
.y10b{bottom:254.456800pt;}
.y16e{bottom:257.102400pt;}
.y1cc{bottom:261.102400pt;}
.y49{bottom:261.574933pt;}
.y12c{bottom:262.650933pt;}
.y95{bottom:266.425333pt;}
.y28{bottom:266.818933pt;}
.y25{bottom:268.818933pt;}
.ye6{bottom:269.574933pt;}
.y6c{bottom:270.292933pt;}
.y159{bottom:271.800667pt;}
.y16d{bottom:273.102400pt;}
.y1a0{bottom:274.220400pt;}
.yc4{bottom:274.349067pt;}
.y1cb{bottom:277.102400pt;}
.y7a{bottom:280.825333pt;}
.y27{bottom:282.818933pt;}
.y149{bottom:284.692933pt;}
.y24{bottom:284.818933pt;}
.y12b{bottom:288.650933pt;}
.y10a{bottom:288.682400pt;}
.y19f{bottom:290.220400pt;}
.y94{bottom:293.092000pt;}
.y1ca{bottom:293.102400pt;}
.y48{bottom:295.134000pt;}
.yf5{bottom:296.241600pt;}
.y16c{bottom:296.661467pt;}
.y6b{bottom:297.493067pt;}
.y26{bottom:298.818933pt;}
.y23{bottom:300.818933pt;}
.yc3{bottom:301.015733pt;}
.ye5{bottom:303.800667pt;}
.y158{bottom:306.026267pt;}
.y19e{bottom:306.220400pt;}
.y79{bottom:308.025200pt;}
.y148{bottom:311.359600pt;}
.y109{bottom:315.349067pt;}
.y16b{bottom:320.220533pt;}
.y47{bottom:321.134000pt;}
.y12a{bottom:322.210000pt;}
.y19d{bottom:322.220400pt;}
.y93{bottom:327.317600pt;}
.yc2{bottom:327.682400pt;}
.ye4{bottom:330.467333pt;}
.y6a{bottom:332.252000pt;}
.y157{bottom:332.692933pt;}
.y1c9{bottom:334.435733pt;}
.y16a{bottom:336.220533pt;}
.y147{bottom:338.026267pt;}
.y19c{bottom:338.220400pt;}
.y22{bottom:338.685467pt;}
.y108{bottom:342.015733pt;}
.y78{bottom:342.784400pt;}
.y46{bottom:347.134000pt;}
.y129{bottom:348.210000pt;}
.y1c8{bottom:350.435733pt;}
.y92{bottom:353.984267pt;}
.ye3{bottom:357.134000pt;}
.y156{bottom:359.359600pt;}
.y69{bottom:359.452133pt;}
.y169{bottom:359.779600pt;}
.y19b{bottom:361.779467pt;}
.yc1{bottom:361.908267pt;}
.y1c7{bottom:366.435733pt;}
.y77{bottom:369.984400pt;}
.y146{bottom:372.252000pt;}
.y45{bottom:373.133867pt;}
.y107{bottom:376.241600pt;}
.y19a{bottom:377.779467pt;}
.y21{bottom:380.552000pt;}
.y91{bottom:380.651067pt;}
.y128{bottom:381.769067pt;}
.y1c6{bottom:382.435733pt;}
.ye2{bottom:383.800533pt;}
.y68{bottom:386.652000pt;}
.yc0{bottom:388.574933pt;}
.y155{bottom:393.585333pt;}
.y199{bottom:393.779467pt;}
.y83{bottom:396.512800pt;}
.y20{bottom:396.552000pt;}
.y1c5{bottom:398.435733pt;}
.y145{bottom:398.918667pt;}
.y44{bottom:399.133867pt;}
.y106{bottom:402.908267pt;}
.y90{bottom:407.317733pt;}
.y127{bottom:407.769067pt;}
.ye1{bottom:410.467200pt;}
.y1f{bottom:412.552000pt;}
.y1c4{bottom:414.435733pt;}
.ybf{bottom:415.241600pt;}
.y198{bottom:417.338533pt;}
.y67{bottom:421.411067pt;}
.y144{bottom:425.585333pt;}
.y1e{bottom:428.552000pt;}
.y105{bottom:429.574933pt;}
.y43{bottom:432.692933pt;}
.y197{bottom:433.338533pt;}
.y168{bottom:433.564400pt;}
.y8f{bottom:433.984400pt;}
.y11b{bottom:436.112933pt;}
.ye0{bottom:437.133867pt;}
.y76{bottom:439.502400pt;}
.y126{bottom:441.328133pt;}
.ybe{bottom:441.908267pt;}
.y1c3{bottom:442.661467pt;}
.y1d{bottom:444.552000pt;}
.y66{bottom:448.611067pt;}
.y196{bottom:449.338533pt;}
.y143{bottom:452.252000pt;}
.y104{bottom:456.241600pt;}
.y42{bottom:458.692933pt;}
.y9d{bottom:460.725333pt;}
.yf4{bottom:463.800533pt;}
.y125{bottom:467.328133pt;}
.y154{bottom:467.370133pt;}
.y167{bottom:467.790133pt;}
.y1c{bottom:468.111067pt;}
.ybd{bottom:468.574933pt;}
.y82{bottom:470.550667pt;}
.ydf{bottom:471.359600pt;}
.y195{bottom:472.897600pt;}
.y84{bottom:474.497333pt;}
.y65{bottom:475.811067pt;}
.y1c2{bottom:482.220533pt;}
.y1b{bottom:484.111067pt;}
.y41{bottom:484.692933pt;}
.y142{bottom:486.477733pt;}
.y194{bottom:488.897600pt;}
.y103{bottom:490.467200pt;}
.y124{bottom:493.328133pt;}
.y153{bottom:494.036800pt;}
.ybc{bottom:495.241600pt;}
.yde{bottom:498.026267pt;}
.y1a{bottom:500.111067pt;}
.y166{bottom:502.015867pt;}
.y8e{bottom:502.435733pt;}
.y193{bottom:504.897600pt;}
.y1c1{bottom:505.779600pt;}
.y64{bottom:510.570133pt;}
.y40{bottom:510.692933pt;}
.y141{bottom:513.144400pt;}
.y19{bottom:516.111067pt;}
.y102{bottom:517.133867pt;}
.y86{bottom:519.042667pt;}
.y152{bottom:520.703467pt;}
.ydd{bottom:524.692933pt;}
.y123{bottom:526.887200pt;}
.y192{bottom:528.456533pt;}
.y165{bottom:528.682533pt;}
.y8d{bottom:529.102400pt;}
.y1c0{bottom:529.338667pt;}
.ybb{bottom:529.467200pt;}
.y18{bottom:532.111067pt;}
.y3f{bottom:536.692933pt;}
.y63{bottom:537.770133pt;}
.y140{bottom:539.811067pt;}
.y101{bottom:543.800533pt;}
.y191{bottom:544.456533pt;}
.y1bf{bottom:545.338667pt;}
.y151{bottom:547.370133pt;}
.ydc{bottom:551.359600pt;}
.y122{bottom:552.887200pt;}
.y17{bottom:555.670133pt;}
.yba{bottom:556.133867pt;}
.y9c{bottom:561.258667pt;}
.y164{bottom:562.908267pt;}
.y62{bottom:564.970133pt;}
.y190{bottom:568.015600pt;}
.y1be{bottom:568.897733pt;}
.y3e{bottom:570.252000pt;}
.y100{bottom:570.467200pt;}
.y16{bottom:571.670133pt;}
.y13f{bottom:574.036800pt;}
.y121{bottom:578.887200pt;}
.yb9{bottom:582.800533pt;}
.y18f{bottom:584.015600pt;}
.y1bd{bottom:584.897733pt;}
.ydb{bottom:585.585333pt;}
.y15{bottom:587.670133pt;}
.y61{bottom:592.170133pt;}
.yf{bottom:596.111067pt;}
.y3d{bottom:596.252000pt;}
.y163{bottom:597.133867pt;}
.y18e{bottom:600.015600pt;}
.y13e{bottom:600.703467pt;}
.y1bc{bottom:600.897733pt;}
.y14{bottom:603.670133pt;}
.yff{bottom:604.692933pt;}
.y9f{bottom:609.941333pt;}
.ye{bottom:612.111067pt;}
.yda{bottom:612.252000pt;}
.y120{bottom:612.446267pt;}
.y18d{bottom:616.015600pt;}
.yb8{bottom:617.026267pt;}
.y60{bottom:619.370133pt;}
.y13{bottom:619.670133pt;}
.y3c{bottom:622.252000pt;}
.y1bb{bottom:624.456800pt;}
.y88{bottom:626.106667pt;}
.y13d{bottom:627.370133pt;}
.ya1{bottom:630.296000pt;}
.yfe{bottom:631.359600pt;}
.yd{bottom:635.670133pt;}
.y11f{bottom:638.446267pt;}
.yd9{bottom:638.918667pt;}
.y18c{bottom:639.574667pt;}
.y1ba{bottom:640.456800pt;}
.y12{bottom:643.229200pt;}
.y5f{bottom:646.570133pt;}
.y3b{bottom:648.252000pt;}
.yc{bottom:651.670133pt;}
.y13c{bottom:654.036800pt;}
.y18b{bottom:655.574667pt;}
.yfd{bottom:658.026267pt;}
.y11{bottom:659.229200pt;}
.y1b9{bottom:664.015867pt;}
.yd8{bottom:665.585333pt;}
.y18a{bottom:671.574667pt;}
.y5e{bottom:673.770133pt;}
.y3a{bottom:674.252000pt;}
.yb{bottom:675.229200pt;}
.y1b8{bottom:680.015867pt;}
.y13b{bottom:680.703467pt;}
.y10{bottom:682.788267pt;}
.yb7{bottom:690.811067pt;}
.yd7{bottom:692.252000pt;}
.y189{bottom:695.133733pt;}
.y1b7{bottom:696.015733pt;}
.ya{bottom:698.788267pt;}
.yf3{bottom:699.811067pt;}
.y39{bottom:700.252000pt;}
.y5d{bottom:700.970133pt;}
.y11e{bottom:705.564400pt;}
.y150{bottom:707.370133pt;}
.y11a{bottom:709.918667pt;}
.y188{bottom:711.133867pt;}
.ya3{bottom:711.134667pt;}
.y9{bottom:714.788267pt;}
.y13a{bottom:714.929200pt;}
.yb6{bottom:717.477733pt;}
.yd6{bottom:718.918667pt;}
.y1b6{bottom:719.574933pt;}
.yf2{bottom:726.477733pt;}
.y187{bottom:727.133867pt;}
.y5c{bottom:728.170133pt;}
.y38{bottom:733.811067pt;}
.y14f{bottom:734.036800pt;}
.y1b5{bottom:735.574933pt;}
.y119{bottom:736.585333pt;}
.y139{bottom:741.595867pt;}
.y186{bottom:743.133867pt;}
.yb5{bottom:744.144400pt;}
.yd5{bottom:745.585333pt;}
.y8a{bottom:749.621333pt;}
.yf1{bottom:753.144400pt;}
.y8{bottom:754.654800pt;}
.y5b{bottom:755.370133pt;}
.y185{bottom:759.133867pt;}
.y1b4{bottom:759.134000pt;}
.y37{bottom:759.811067pt;}
.y14e{bottom:760.703467pt;}
.y118{bottom:763.252000pt;}
.y138{bottom:768.262533pt;}
.y1b3{bottom:775.134000pt;}
.yb4{bottom:778.370133pt;}
.yd4{bottom:779.811067pt;}
.y5a{bottom:782.570133pt;}
.y184{bottom:782.692933pt;}
.y36{bottom:785.811067pt;}
.y162{bottom:787.370133pt;}
.y137{bottom:794.929200pt;}
.y7{bottom:796.521333pt;}
.y117{bottom:797.477733pt;}
.y183{bottom:798.692933pt;}
.yb3{bottom:805.036800pt;}
.yd3{bottom:806.477733pt;}
.y59{bottom:809.770133pt;}
.y35{bottom:811.811067pt;}
.y161{bottom:814.036800pt;}
.y182{bottom:814.692933pt;}
.y136{bottom:821.595867pt;}
.y116{bottom:824.144400pt;}
.y6{bottom:830.121333pt;}
.y181{bottom:830.692933pt;}
.yb2{bottom:831.703467pt;}
.yd2{bottom:833.144400pt;}
.y34{bottom:837.811067pt;}
.yf0{bottom:840.703467pt;}
.y58{bottom:844.529200pt;}
.y180{bottom:846.692933pt;}
.y135{bottom:848.262533pt;}
.y115{bottom:850.811067pt;}
.ya6{bottom:852.748000pt;}
.y1b2{bottom:854.252000pt;}
.yb1{bottom:858.370133pt;}
.yd1{bottom:859.811067pt;}
.y5{bottom:863.721333pt;}
.y33{bottom:863.811067pt;}
.yef{bottom:867.370133pt;}
.y17f{bottom:870.252000pt;}
.y57{bottom:871.729200pt;}
.y134{bottom:874.929200pt;}
.y114{bottom:877.477733pt;}
.yb0{bottom:885.036800pt;}
.y17e{bottom:886.252000pt;}
.yfc{bottom:886.477733pt;}
.y32{bottom:889.811067pt;}
.yd0{bottom:894.036800pt;}
.y56{bottom:898.929200pt;}
.y133{bottom:901.595867pt;}
.y1b1{bottom:902.252000pt;}
.y113{bottom:904.144400pt;}
.ya9{bottom:904.216000pt;}
.y17d{bottom:909.811067pt;}
.yaf{bottom:911.703467pt;}
.y4{bottom:914.587867pt;}
.y31{bottom:915.811067pt;}
.y1b0{bottom:918.252000pt;}
.ycf{bottom:920.703467pt;}
.y17c{bottom:925.811067pt;}
.y55{bottom:926.129200pt;}
.yee{bottom:928.262533pt;}
.y112{bottom:930.811067pt;}
.yae{bottom:938.370133pt;}
.y30{bottom:941.811067pt;}
.yce{bottom:947.370133pt;}
.y75{bottom:953.329067pt;}
.y54{bottom:953.329200pt;}
.yed{bottom:954.929200pt;}
.y1af{bottom:957.811067pt;}
.yad{bottom:965.036800pt;}
.y17b{bottom:965.370000pt;}
.y1ae{bottom:973.811067pt;}
.yfb{bottom:974.036800pt;}
.y53{bottom:980.529200pt;}
.y17a{bottom:981.370000pt;}
.ycd{bottom:981.595867pt;}
.yac{bottom:991.703467pt;}
.y179{bottom:997.370000pt;}
.y1ad{bottom:997.370133pt;}
.y2f{bottom:1001.370133pt;}
.y74{bottom:1007.729067pt;}
.y52{bottom:1007.729200pt;}
.ycc{bottom:1008.262533pt;}
.y1ac{bottom:1013.370133pt;}
.y3{bottom:1019.057733pt;}
.y178{bottom:1020.929067pt;}
.yab{bottom:1025.929200pt;}
.y73{bottom:1034.929067pt;}
.y51{bottom:1034.929200pt;}
.y177{bottom:1036.929067pt;}
.y1ab{bottom:1036.929200pt;}
.y2{bottom:1044.391067pt;}
.y1{bottom:1069.724400pt;}
.y2c{bottom:1080.535467pt;}
.hc{height:32.042667pt;}
.h13{height:35.181333pt;}
.h1c{height:37.632000pt;}
.hb{height:38.333333pt;}
.h23{height:40.000000pt;}
.h8{height:47.786458pt;}
.h7{height:47.916667pt;}
.ha{height:48.000000pt;}
.h6{height:48.064000pt;}
.h9{height:49.348958pt;}
.hd{height:50.793425pt;}
.h10{height:57.343750pt;}
.h14{height:57.443021pt;}
.hf{height:57.500000pt;}
.h19{height:59.218750pt;}
.h3{height:60.000000pt;}
.h2{height:60.080000pt;}
.h1f{height:60.350937pt;}
.h12{height:63.671927pt;}
.h1d{height:65.994688pt;}
.h16{height:66.408125pt;}
.h4{height:67.083333pt;}
.h1b{height:73.150729pt;}
.h5{height:84.000000pt;}
.h17{height:89.852000pt;}
.h20{height:103.229333pt;}
.h18{height:116.934667pt;}
.h21{height:134.342667pt;}
.h22{height:134.344000pt;}
.he{height:187.588479pt;}
.h15{height:364.218667pt;}
.h11{height:418.278667pt;}
.h1e{height:418.438667pt;}
.h1a{height:481.889333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:36.962667pt;}
.w4{width:40.673333pt;}
.wa{width:248.101333pt;}
.wb{width:250.228000pt;}
.wc{width:250.229333pt;}
.w5{width:272.710667pt;}
.w6{width:275.344000pt;}
.wd{width:324.420000pt;}
.w8{width:351.542667pt;}
.w3{width:386.534667pt;}
.w7{width:571.722667pt;}
.w2{width:625.594667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:15.956000pt;}
.x1b{left:17.557333pt;}
.x23{left:21.273333pt;}
.x19{left:23.408667pt;}
.xa{left:44.891600pt;}
.xe{left:47.232667pt;}
.xf{left:49.800400pt;}
.x5{left:61.892667pt;}
.x10{left:75.023600pt;}
.x8{left:76.278267pt;}
.x28{left:77.648267pt;}
.x2b{left:80.923867pt;}
.xb{left:83.407200pt;}
.x7{left:87.554267pt;}
.x18{left:92.580000pt;}
.x14{left:94.488133pt;}
.x9{left:97.137600pt;}
.x6{left:100.829067pt;}
.x13{left:103.509600pt;}
.xc{left:112.014000pt;}
.x1f{left:113.401333pt;}
.x21{left:118.334000pt;}
.x22{left:122.176000pt;}
.x17{left:130.211067pt;}
.x12{left:161.531067pt;}
.x27{left:178.284000pt;}
.x1d{left:181.268000pt;}
.xd{left:194.649867pt;}
.x4{left:202.208933pt;}
.x2a{left:210.572667pt;}
.x16{left:219.570667pt;}
.x2c{left:227.380533pt;}
.x20{left:237.317333pt;}
.x15{left:245.873467pt;}
.x29{left:273.830400pt;}
.x1e{left:300.666400pt;}
.x25{left:431.969333pt;}
.x1c{left:433.468000pt;}
.x26{left:434.362667pt;}
.x1a{left:436.100000pt;}
.x11{left:437.952800pt;}
.x2d{left:528.419867pt;}
.x3{left:621.806133pt;}
.x2{left:626.106933pt;}
.x1{left:642.647200pt;}
}




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