
    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_2fce7542d562a2fbf6c65525.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191406;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_bcfc74eef2661402c882a7d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_5bcac018c481ec839c9d6a66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_592b0c8ccb2c903d2ad00f7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_de363da6c517095639e45b13.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_015c50a4078f4f160724cf3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.362000;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_59b4ab12c86ef08d8ad10e1d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_a8e0d2a550c0c990a3044155.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.190918;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_909a4adea6fcb9c3614c9af1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.191406;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_90906611684f50b6aa801eb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_f6acce53edc7b2ee0950fb6a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.384000;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_0d120243e3d4daece5538ca4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.594971px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.629883px;}
.v1{vertical-align:20.700073px;}
.ls1a{letter-spacing:-5.124000px;}
.ls1f{letter-spacing:-4.860000px;}
.ls35{letter-spacing:-3.375000px;}
.ls38{letter-spacing:-2.790000px;}
.ls39{letter-spacing:-2.250000px;}
.ls14{letter-spacing:-1.566000px;}
.ls28{letter-spacing:-1.395000px;}
.ls18{letter-spacing:-1.344000px;}
.ls34{letter-spacing:-1.305000px;}
.ls1d{letter-spacing:-1.260000px;}
.ls15{letter-spacing:-1.242000px;}
.ls29{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.050000px;}
.ls3a{letter-spacing:-1.035000px;}
.ls33{letter-spacing:-0.990000px;}
.lse{letter-spacing:-0.972000px;}
.ls22{letter-spacing:-0.864000px;}
.ls32{letter-spacing:-0.855000px;}
.ls1b{letter-spacing:-0.756000px;}
.ls30{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.630000px;}
.ls2e{letter-spacing:-0.585000px;}
.ls23{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls2b{letter-spacing:-0.450000px;}
.ls31{letter-spacing:-0.405000px;}
.lsd{letter-spacing:-0.378000px;}
.ls37{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.315000px;}
.ls21{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.168000px;}
.ls17{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.108000px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000008px;}
.ls5{letter-spacing:0.000012px;}
.ls4{letter-spacing:0.000017px;}
.ls10{letter-spacing:0.000044px;}
.ls20{letter-spacing:0.000082px;}
.ls2d{letter-spacing:0.000088px;}
.ls6{letter-spacing:0.000104px;}
.ls7{letter-spacing:0.000287px;}
.ls9{letter-spacing:0.011429px;}
.ls1{letter-spacing:0.013800px;}
.ls0{letter-spacing:0.014433px;}
.ls2{letter-spacing:0.014437px;}
.ls3{letter-spacing:0.020855px;}
.lsc{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.637295px;}
.ls25{letter-spacing:0.931729px;}
.ls26{letter-spacing:1.690884px;}
.ls36{letter-spacing:2.304653px;}
.lsa{letter-spacing:3.000000px;}
.ls24{letter-spacing:4.766323px;}
.ls2c{letter-spacing:5.987637px;}
.ls11{letter-spacing:65.283597px;}
.ls12{letter-spacing:80.487597px;}
.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;}
}
.ws4{word-spacing:-15.000000px;}
.ws20{word-spacing:-13.596000px;}
.ws31{word-spacing:-12.366000px;}
.ws21{word-spacing:-12.360000px;}
.ws22{word-spacing:-12.258000px;}
.ws69{word-spacing:-11.826000px;}
.ws1f{word-spacing:-11.718000px;}
.ws2{word-spacing:-11.286000px;}
.ws0{word-spacing:-11.124000px;}
.wsc7{word-spacing:-10.305000px;}
.wsb4{word-spacing:-10.215000px;}
.wsc2{word-spacing:-10.125000px;}
.wsa6{word-spacing:-9.990000px;}
.wsc3{word-spacing:-9.900000px;}
.wsa4{word-spacing:-9.765000px;}
.wsc4{word-spacing:-9.450000px;}
.wsc5{word-spacing:-9.315000px;}
.wsed{word-spacing:-9.270000px;}
.wsc6{word-spacing:-9.000000px;}
.wsa5{word-spacing:-8.910000px;}
.ws1{word-spacing:-8.580600px;}
.ws3{word-spacing:-7.140000px;}
.ws55{word-spacing:-5.508000px;}
.ws2f{word-spacing:-4.410000px;}
.ws6a{word-spacing:-4.212000px;}
.ws80{word-spacing:-3.726000px;}
.ws6c{word-spacing:-3.510000px;}
.wsbd{word-spacing:-3.420000px;}
.ws4b{word-spacing:-3.348000px;}
.ws18{word-spacing:-3.294000px;}
.wsbe{word-spacing:-3.150000px;}
.ws63{word-spacing:-2.940000px;}
.wsa1{word-spacing:-2.916000px;}
.ws3d{word-spacing:-2.808000px;}
.ws14{word-spacing:-2.700000px;}
.ws56{word-spacing:-2.538000px;}
.ws72{word-spacing:-2.484000px;}
.ws73{word-spacing:-2.430000px;}
.ws59{word-spacing:-2.322000px;}
.ws45{word-spacing:-2.268000px;}
.wsde{word-spacing:-2.250000px;}
.ws1a{word-spacing:-2.214000px;}
.wsa9{word-spacing:-2.106000px;}
.wsef{word-spacing:-1.980000px;}
.wsf9{word-spacing:-1.935000px;}
.ws8b{word-spacing:-1.890000px;}
.ws12{word-spacing:-1.836000px;}
.ws48{word-spacing:-1.782000px;}
.wsb0{word-spacing:-1.755000px;}
.ws10{word-spacing:-1.674000px;}
.ws62{word-spacing:-1.620000px;}
.ws50{word-spacing:-1.566000px;}
.ws8a{word-spacing:-1.512000px;}
.ws7b{word-spacing:-1.458000px;}
.wse1{word-spacing:-1.440000px;}
.wsec{word-spacing:-1.395000px;}
.ws11{word-spacing:-1.350000px;}
.wse2{word-spacing:-1.305000px;}
.wsff{word-spacing:-1.242000px;}
.ws7{word-spacing:-1.134000px;}
.ws81{word-spacing:-1.080000px;}
.ws88{word-spacing:-0.972000px;}
.ws19{word-spacing:-0.918000px;}
.wsd1{word-spacing:-0.855000px;}
.ws8{word-spacing:-0.810000px;}
.wsbf{word-spacing:-0.765000px;}
.ws7d{word-spacing:-0.702000px;}
.wsd4{word-spacing:-0.630000px;}
.ws91{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.486000px;}
.wsf6{word-spacing:-0.450000px;}
.wsfc{word-spacing:-0.432000px;}
.wse5{word-spacing:-0.405000px;}
.ws3c{word-spacing:-0.378000px;}
.ws9a{word-spacing:-0.324000px;}
.wsd7{word-spacing:-0.315000px;}
.ws85{word-spacing:-0.270000px;}
.ws94{word-spacing:-0.216000px;}
.wsc8{word-spacing:-0.180000px;}
.ws64{word-spacing:-0.162000px;}
.wse7{word-spacing:-0.135000px;}
.ws8f{word-spacing:-0.108000px;}
.ws4a{word-spacing:-0.054000px;}
.wse3{word-spacing:-0.045000px;}
.ws5{word-spacing:0.000000px;}
.wsf4{word-spacing:0.045000px;}
.wsc{word-spacing:0.054000px;}
.wscd{word-spacing:0.090000px;}
.ws1e{word-spacing:0.108000px;}
.ws83{word-spacing:0.162000px;}
.wsdb{word-spacing:0.180000px;}
.wsad{word-spacing:0.216000px;}
.wsbb{word-spacing:0.315000px;}
.ws7e{word-spacing:0.324000px;}
.ws1d{word-spacing:0.357000px;}
.wsdd{word-spacing:0.360000px;}
.wscf{word-spacing:0.405000px;}
.ws7f{word-spacing:0.432000px;}
.wsb5{word-spacing:0.450000px;}
.wsba{word-spacing:0.495000px;}
.ws53{word-spacing:0.540000px;}
.wsc0{word-spacing:0.585000px;}
.ws8d{word-spacing:0.594000px;}
.wsb9{word-spacing:0.630000px;}
.wsae{word-spacing:0.648000px;}
.wsbc{word-spacing:0.720000px;}
.wsce{word-spacing:0.765000px;}
.ws16{word-spacing:0.864000px;}
.wsc1{word-spacing:0.900000px;}
.ws7c{word-spacing:0.918000px;}
.wsb3{word-spacing:0.945000px;}
.ws96{word-spacing:0.972000px;}
.ws17{word-spacing:1.026000px;}
.wse6{word-spacing:1.035000px;}
.ws5a{word-spacing:1.080000px;}
.wsd0{word-spacing:1.125000px;}
.ws13{word-spacing:1.188000px;}
.wsf5{word-spacing:1.215000px;}
.ws3f{word-spacing:1.242000px;}
.ws32{word-spacing:1.296000px;}
.wsd9{word-spacing:1.395000px;}
.ws5b{word-spacing:1.404000px;}
.ws97{word-spacing:1.458000px;}
.wse8{word-spacing:1.485000px;}
.wsfb{word-spacing:1.512000px;}
.ws6d{word-spacing:1.566000px;}
.wsda{word-spacing:1.620000px;}
.ws92{word-spacing:1.674000px;}
.wsb6{word-spacing:1.710000px;}
.ws60{word-spacing:1.728000px;}
.wsd8{word-spacing:1.755000px;}
.ws3b{word-spacing:1.782000px;}
.ws74{word-spacing:1.890000px;}
.ws71{word-spacing:1.944000px;}
.wsf1{word-spacing:1.980000px;}
.wsfa{word-spacing:2.025000px;}
.ws51{word-spacing:2.052000px;}
.wsd6{word-spacing:2.070000px;}
.wsb7{word-spacing:2.160000px;}
.wsf3{word-spacing:2.250000px;}
.ws9c{word-spacing:2.268000px;}
.wsf0{word-spacing:2.295000px;}
.ws84{word-spacing:2.322000px;}
.wsf7{word-spacing:2.340000px;}
.wsab{word-spacing:2.430000px;}
.ws15{word-spacing:2.484000px;}
.wsb8{word-spacing:2.565000px;}
.ws67{word-spacing:2.592000px;}
.ws38{word-spacing:2.646000px;}
.ws3e{word-spacing:2.700000px;}
.wsdf{word-spacing:2.745000px;}
.ws34{word-spacing:2.754000px;}
.wsf2{word-spacing:2.790000px;}
.ws39{word-spacing:2.808000px;}
.ws6e{word-spacing:2.862000px;}
.ws75{word-spacing:2.916000px;}
.wse0{word-spacing:2.925000px;}
.wsfd{word-spacing:3.024000px;}
.wsfe{word-spacing:3.078000px;}
.wsa{word-spacing:3.132000px;}
.ws46{word-spacing:3.186000px;}
.ws61{word-spacing:3.240000px;}
.ws5f{word-spacing:3.294000px;}
.wse4{word-spacing:3.375000px;}
.ws37{word-spacing:3.402000px;}
.ws8c{word-spacing:3.456000px;}
.ws5c{word-spacing:3.510000px;}
.ws9{word-spacing:3.618000px;}
.wsac{word-spacing:3.672000px;}
.ws35{word-spacing:3.726000px;}
.ws89{word-spacing:3.780000px;}
.ws7a{word-spacing:3.834000px;}
.ws6b{word-spacing:3.888000px;}
.ws4c{word-spacing:3.942000px;}
.ws33{word-spacing:3.996000px;}
.wsd2{word-spacing:4.095000px;}
.wsd3{word-spacing:4.140000px;}
.ws41{word-spacing:4.158000px;}
.ws40{word-spacing:4.212000px;}
.ws36{word-spacing:4.320000px;}
.wsc9{word-spacing:4.365000px;}
.wsa3{word-spacing:4.374000px;}
.wsaa{word-spacing:4.428000px;}
.ws57{word-spacing:4.536000px;}
.ws58{word-spacing:4.590000px;}
.ws65{word-spacing:4.644000px;}
.wsaf{word-spacing:4.770000px;}
.ws8e{word-spacing:4.806000px;}
.ws54{word-spacing:4.860000px;}
.wsf8{word-spacing:4.905000px;}
.ws6f{word-spacing:4.914000px;}
.ws1b{word-spacing:5.022000px;}
.ws47{word-spacing:5.076000px;}
.wsea{word-spacing:5.085000px;}
.wsa2{word-spacing:5.130000px;}
.ws98{word-spacing:5.184000px;}
.ws43{word-spacing:5.238000px;}
.wsb1{word-spacing:5.355000px;}
.ws44{word-spacing:5.616000px;}
.ws87{word-spacing:5.670000px;}
.wseb{word-spacing:5.715000px;}
.ws9b{word-spacing:5.724000px;}
.ws66{word-spacing:5.832000px;}
.wsdc{word-spacing:5.895000px;}
.wsca{word-spacing:5.985000px;}
.wscc{word-spacing:6.030000px;}
.ws4f{word-spacing:6.102000px;}
.wsb2{word-spacing:6.165000px;}
.ws70{word-spacing:6.210000px;}
.ws9f{word-spacing:6.318000px;}
.wsa7{word-spacing:6.372000px;}
.wscb{word-spacing:6.480000px;}
.ws42{word-spacing:6.696000px;}
.ws3a{word-spacing:6.804000px;}
.wsa8{word-spacing:7.020000px;}
.wsb{word-spacing:7.128000px;}
.ws5d{word-spacing:7.182000px;}
.ws79{word-spacing:7.398000px;}
.wsee{word-spacing:7.425000px;}
.ws49{word-spacing:7.776000px;}
.wse9{word-spacing:8.415000px;}
.ws76{word-spacing:8.478000px;}
.ws4d{word-spacing:8.586000px;}
.wsa0{word-spacing:8.640000px;}
.ws4e{word-spacing:8.694000px;}
.ws82{word-spacing:8.856000px;}
.ws90{word-spacing:9.072000px;}
.ws78{word-spacing:9.126000px;}
.ws68{word-spacing:9.234000px;}
.ws77{word-spacing:9.450000px;}
.ws99{word-spacing:9.504000px;}
.ws5e{word-spacing:9.720000px;}
.wse{word-spacing:9.990000px;}
.wsd5{word-spacing:10.440000px;}
.wsf{word-spacing:10.476000px;}
.ws86{word-spacing:10.530000px;}
.ws6{word-spacing:12.636000px;}
.ws95{word-spacing:12.852000px;}
.ws9e{word-spacing:12.906000px;}
.ws9d{word-spacing:12.960000px;}
.wsd{word-spacing:14.418000px;}
.ws93{word-spacing:14.472000px;}
.ws1c{word-spacing:23.766000px;}
.ws29{word-spacing:32.989170px;}
.ws25{word-spacing:33.656956px;}
.ws26{word-spacing:36.096509px;}
.ws2a{word-spacing:37.861228px;}
.ws2d{word-spacing:39.457228px;}
.ws2c{word-spacing:53.149170px;}
.ws30{word-spacing:64.699228px;}
.ws23{word-spacing:100.231811px;}
.ws2b{word-spacing:117.615000px;}
.ws24{word-spacing:121.231228px;}
.ws28{word-spacing:122.571000px;}
.ws2e{word-spacing:125.010550px;}
.ws27{word-spacing:159.781942px;}
._23{margin-left:-20.655000px;}
._26{margin-left:-18.630000px;}
._22{margin-left:-16.200000px;}
._1a{margin-left:-15.029946px;}
._1c{margin-left:-12.473973px;}
._1b{margin-left:-11.424561px;}
._19{margin-left:-9.756108px;}
._18{margin-left:-8.675946px;}
._0{margin-left:-7.191600px;}
._4{margin-left:-5.507884px;}
._3{margin-left:-4.158039px;}
._2{margin-left:-2.664054px;}
._1{margin-left:-1.224000px;}
._6{width:1.110600px;}
._7{width:2.129400px;}
._25{width:3.194400px;}
._11{width:4.200000px;}
._e{width:6.048000px;}
._1f{width:7.497000px;}
._1d{width:8.667000px;}
._21{width:10.894554px;}
._1e{width:12.960000px;}
._17{width:14.129386px;}
._24{width:16.190946px;}
._5{width:17.278779px;}
._20{width:23.085000px;}
._9{width:26.209863px;}
._b{width:42.290478px;}
._10{width:55.297942px;}
._c{width:65.623038px;}
._a{width:70.140682px;}
._13{width:72.323920px;}
._12{width:73.431589px;}
._14{width:80.487597px;}
._15{width:174.763661px;}
._d{width:202.105661px;}
._f{width:236.681268px;}
._16{width:238.529268px;}
._8{width:2268.935429px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.699999px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:27.634050px;}
.y31{bottom:27.643049px;}
.yd2{bottom:64.980148px;}
.y191{bottom:69.015902px;}
.y2e{bottom:72.430200px;}
.y1aa{bottom:72.478952px;}
.y13f{bottom:76.647898px;}
.y6d{bottom:78.524998px;}
.y8f{bottom:79.418850px;}
.yd1{bottom:79.980148px;}
.y190{bottom:81.615898px;}
.y2d{bottom:87.430200px;}
.y1a9{bottom:87.478952px;}
.y13e{bottom:89.247900px;}
.y18f{bottom:94.215900px;}
.y8e{bottom:94.418850px;}
.yd0{bottom:94.980148px;}
.y6c{bottom:95.024998px;}
.y13d{bottom:101.847897px;}
.y2c{bottom:102.430195px;}
.y18e{bottom:106.815903px;}
.y8d{bottom:109.418850px;}
.ycf{bottom:109.980148px;}
.y1a8{bottom:110.047348px;}
.y6b{bottom:111.524998px;}
.y13c{bottom:114.447899px;}
.yfc{bottom:114.468452px;}
.y18d{bottom:119.415905px;}
.y8c{bottom:124.418850px;}
.yce{bottom:124.980148px;}
.y13b{bottom:127.047900px;}
.y6a{bottom:128.024998px;}
.yfb{bottom:129.468452px;}
.y18c{bottom:132.015896px;}
.y1a7{bottom:132.615898px;}
.y2b{bottom:137.829150px;}
.y8b{bottom:139.418850px;}
.y13a{bottom:139.647903px;}
.ycd{bottom:139.980148px;}
.yfa{bottom:144.468452px;}
.y69{bottom:144.524998px;}
.y18b{bottom:144.615898px;}
.y1a6{bottom:147.615898px;}
.y139{bottom:152.247894px;}
.y2a{bottom:152.829150px;}
.y8a{bottom:154.418850px;}
.ycc{bottom:154.980148px;}
.y18a{bottom:157.215900px;}
.yf9{bottom:159.468452px;}
.y138{bottom:164.847897px;}
.y29{bottom:167.829150px;}
.y89{bottom:169.418850px;}
.y189{bottom:169.815903px;}
.ycb{bottom:169.980148px;}
.yf8{bottom:174.468452px;}
.y68{bottom:176.426846px;}
.y137{bottom:177.447899px;}
.y1a5{bottom:180.615898px;}
.y188{bottom:182.415905px;}
.y28{bottom:182.829150px;}
.y88{bottom:184.418850px;}
.yca{bottom:184.980148px;}
.yf7{bottom:189.468452px;}
.y136{bottom:190.047900px;}
.y67{bottom:194.009857px;}
.y187{bottom:195.015907px;}
.y1a4{bottom:195.615898px;}
.y27{bottom:197.829140px;}
.y87{bottom:199.418861px;}
.yc9{bottom:199.980148px;}
.y135{bottom:202.647903px;}
.yf6{bottom:204.468452px;}
.y186{bottom:207.615898px;}
.y66{bottom:211.762939px;}
.y26{bottom:212.829140px;}
.y86{bottom:214.418861px;}
.yc8{bottom:214.980148px;}
.y134{bottom:215.247894px;}
.yf5{bottom:219.468452px;}
.y185{bottom:220.215889px;}
.y25{bottom:227.829140px;}
.y133{bottom:227.847908px;}
.y1a3{bottom:228.615898px;}
.y85{bottom:229.418861px;}
.y65{bottom:229.516045px;}
.yc7{bottom:229.980148px;}
.y184{bottom:232.815903px;}
.yf4{bottom:234.468452px;}
.y132{bottom:240.447899px;}
.y24{bottom:242.829140px;}
.yc6{bottom:244.980148px;}
.y183{bottom:245.415894px;}
.y64{bottom:247.269150px;}
.yf3{bottom:249.468452px;}
.y131{bottom:253.047890px;}
.y23{bottom:257.829140px;}
.y182{bottom:258.015907px;}
.y84{bottom:259.418861px;}
.yc5{bottom:259.980148px;}
.y1a2{bottom:261.615898px;}
.y63{bottom:265.022255px;}
.y130{bottom:265.647903px;}
.y181{bottom:270.615898px;}
.y22{bottom:272.829140px;}
.y83{bottom:274.418861px;}
.yc4{bottom:274.980148px;}
.y1a1{bottom:276.615898px;}
.y12f{bottom:278.247894px;}
.yf2{bottom:282.468452px;}
.y62{bottom:282.775200px;}
.y180{bottom:283.215889px;}
.y21{bottom:287.829140px;}
.y82{bottom:289.418861px;}
.yc3{bottom:289.980148px;}
.y12e{bottom:290.847908px;}
.y17f{bottom:295.815903px;}
.yf1{bottom:297.468452px;}
.y61{bottom:300.528305px;}
.y20{bottom:302.829140px;}
.y12d{bottom:303.447899px;}
.y81{bottom:304.418861px;}
.yc2{bottom:304.980148px;}
.y17e{bottom:308.415894px;}
.y1a0{bottom:309.615898px;}
.yf0{bottom:312.468452px;}
.y12c{bottom:316.047890px;}
.y1f{bottom:317.829140px;}
.y60{bottom:318.073059px;}
.y80{bottom:319.418861px;}
.y6e{bottom:319.854904px;}
.yc1{bottom:319.980148px;}
.y17d{bottom:321.015907px;}
.y19f{bottom:324.615898px;}
.yef{bottom:327.468452px;}
.y12b{bottom:328.647903px;}
.y1e{bottom:332.829140px;}
.y17c{bottom:333.615898px;}
.y7f{bottom:334.418861px;}
.y19e{bottom:339.615898px;}
.y12a{bottom:341.247894px;}
.yee{bottom:342.468452px;}
.y17b{bottom:346.215889px;}
.y1d{bottom:347.829140px;}
.y7e{bottom:349.418861px;}
.yc0{bottom:349.980148px;}
.y129{bottom:353.847908px;}
.y19d{bottom:354.615898px;}
.y17a{bottom:358.815903px;}
.y1c{bottom:362.829140px;}
.y7d{bottom:364.418861px;}
.ybf{bottom:364.980148px;}
.y128{bottom:366.447899px;}
.y5f{bottom:369.468452px;}
.yed{bottom:370.224289px;}
.y179{bottom:371.415894px;}
.y1b{bottom:377.829140px;}
.y127{bottom:379.047890px;}
.y7c{bottom:379.418861px;}
.ybe{bottom:379.980148px;}
.y178{bottom:384.015884px;}
.y5e{bottom:384.468430px;}
.yec{bottom:385.224289px;}
.y19c{bottom:387.615921px;}
.y126{bottom:391.647903px;}
.y1a{bottom:392.829163px;}
.y7b{bottom:394.418838px;}
.ybd{bottom:394.980148px;}
.y177{bottom:396.615921px;}
.y5d{bottom:399.468430px;}
.yeb{bottom:400.224289px;}
.y19b{bottom:402.615921px;}
.y125{bottom:404.247894px;}
.y19{bottom:407.829163px;}
.y176{bottom:409.215912px;}
.y7a{bottom:409.418838px;}
.ybc{bottom:409.980148px;}
.y5c{bottom:414.468430px;}
.yea{bottom:415.224289px;}
.y124{bottom:416.847885px;}
.y19a{bottom:417.615921px;}
.y175{bottom:421.815903px;}
.y18{bottom:422.829163px;}
.ybb{bottom:424.980148px;}
.y123{bottom:429.447922px;}
.y199{bottom:432.615921px;}
.y174{bottom:434.415894px;}
.y17{bottom:437.829163px;}
.y79{bottom:439.418838px;}
.yba{bottom:439.980148px;}
.y122{bottom:442.047913px;}
.ye9{bottom:442.980148px;}
.y5b{bottom:444.468430px;}
.y173{bottom:447.015884px;}
.y198{bottom:447.615921px;}
.y16{bottom:452.829163px;}
.y78{bottom:454.418838px;}
.y121{bottom:454.647903px;}
.yb9{bottom:454.980148px;}
.ye8{bottom:457.980148px;}
.y5a{bottom:459.468430px;}
.y172{bottom:459.615921px;}
.y197{bottom:462.615921px;}
.y120{bottom:467.247894px;}
.y77{bottom:469.418838px;}
.yb8{bottom:469.980148px;}
.y171{bottom:472.215912px;}
.ye7{bottom:472.980148px;}
.y59{bottom:474.468430px;}
.y196{bottom:477.615921px;}
.y11f{bottom:479.847885px;}
.y76{bottom:484.418838px;}
.y170{bottom:484.815903px;}
.yb7{bottom:484.980148px;}
.y15{bottom:485.829163px;}
.ye6{bottom:487.980148px;}
.y58{bottom:489.468430px;}
.y11e{bottom:492.447922px;}
.y195{bottom:492.615921px;}
.y16f{bottom:497.415894px;}
.y75{bottom:499.418838px;}
.yb6{bottom:499.980148px;}
.y14{bottom:502.329163px;}
.ye5{bottom:502.980148px;}
.y57{bottom:504.468430px;}
.y11d{bottom:505.047913px;}
.y194{bottom:507.615921px;}
.y16e{bottom:510.015884px;}
.y74{bottom:514.418838px;}
.yb5{bottom:514.980148px;}
.ye4{bottom:517.980148px;}
.y16d{bottom:522.615921px;}
.y73{bottom:529.418838px;}
.yb4{bottom:529.980148px;}
.y13{bottom:531.585022px;}
.ye3{bottom:532.980148px;}
.y16c{bottom:535.215912px;}
.y56{bottom:537.468430px;}
.y193{bottom:537.615921px;}
.y72{bottom:544.418838px;}
.yb3{bottom:544.980148px;}
.y16b{bottom:547.815903px;}
.y12{bottom:548.085022px;}
.y55{bottom:552.468430px;}
.y192{bottom:552.615921px;}
.y11c{bottom:556.024338px;}
.y71{bottom:559.418838px;}
.yb2{bottom:559.980148px;}
.y16a{bottom:560.415894px;}
.ye2{bottom:562.980148px;}
.y11{bottom:564.585022px;}
.y54{bottom:567.468430px;}
.y169{bottom:573.015884px;}
.y70{bottom:574.418838px;}
.yb1{bottom:574.980148px;}
.ye1{bottom:577.980148px;}
.y10{bottom:581.085022px;}
.y53{bottom:582.468430px;}
.y168{bottom:585.615921px;}
.y11b{bottom:587.524338px;}
.yb0{bottom:589.980148px;}
.ye0{bottom:592.980148px;}
.y52{bottom:597.468430px;}
.yf{bottom:597.585022px;}
.y167{bottom:598.215912px;}
.y11a{bottom:602.524338px;}
.yaf{bottom:604.980148px;}
.ydf{bottom:607.980148px;}
.y166{bottom:610.815903px;}
.y51{bottom:612.468430px;}
.ye{bottom:614.085022px;}
.y119{bottom:617.524338px;}
.yae{bottom:619.980148px;}
.yde{bottom:622.980148px;}
.y165{bottom:623.415894px;}
.y50{bottom:627.468430px;}
.yd{bottom:630.585022px;}
.y92{bottom:632.280167px;}
.yad{bottom:634.980148px;}
.y164{bottom:636.015884px;}
.ydd{bottom:637.980148px;}
.y4f{bottom:642.468430px;}
.yc{bottom:647.085022px;}
.y91{bottom:647.280167px;}
.y163{bottom:648.615921px;}
.yac{bottom:649.980148px;}
.y118{bottom:650.524338px;}
.ydc{bottom:652.980148px;}
.y4e{bottom:657.468430px;}
.y162{bottom:661.215912px;}
.y90{bottom:662.280167px;}
.yb{bottom:663.585022px;}
.yab{bottom:664.980148px;}
.y117{bottom:665.524338px;}
.ydb{bottom:667.980148px;}
.y4d{bottom:672.468430px;}
.y161{bottom:673.815903px;}
.yaa{bottom:679.980148px;}
.ya{bottom:680.085022px;}
.y116{bottom:680.524338px;}
.yda{bottom:682.980148px;}
.y160{bottom:686.415894px;}
.y4c{bottom:687.468430px;}
.ya9{bottom:694.980148px;}
.y115{bottom:695.524338px;}
.y9{bottom:696.585022px;}
.yd9{bottom:697.980148px;}
.y15f{bottom:699.015884px;}
.ya8{bottom:709.980148px;}
.y114{bottom:710.524338px;}
.y15e{bottom:711.615921px;}
.yd8{bottom:712.980148px;}
.y8{bottom:713.085022px;}
.y4b{bottom:715.224289px;}
.y15d{bottom:724.215912px;}
.ya7{bottom:724.980148px;}
.y113{bottom:725.524338px;}
.yd7{bottom:727.980148px;}
.y7{bottom:729.585022px;}
.y4a{bottom:730.224289px;}
.y15c{bottom:736.815903px;}
.ya6{bottom:739.980148px;}
.y112{bottom:740.524338px;}
.yd6{bottom:742.980148px;}
.y49{bottom:745.224289px;}
.y6{bottom:746.085022px;}
.y15b{bottom:749.415894px;}
.ya5{bottom:754.980148px;}
.y111{bottom:755.524338px;}
.yd5{bottom:757.980148px;}
.y48{bottom:760.224289px;}
.y15a{bottom:762.015884px;}
.ya4{bottom:769.980194px;}
.y110{bottom:770.524384px;}
.yd4{bottom:772.980194px;}
.y159{bottom:774.615875px;}
.y47{bottom:775.224335px;}
.y5{bottom:775.978821px;}
.ya3{bottom:784.980194px;}
.y158{bottom:787.215912px;}
.yd3{bottom:787.980194px;}
.y157{bottom:799.815857px;}
.y10f{bottom:800.524384px;}
.y46{bottom:802.980194px;}
.y4{bottom:808.945679px;}
.y156{bottom:812.415894px;}
.ya2{bottom:814.980194px;}
.y10e{bottom:815.524384px;}
.y45{bottom:817.980194px;}
.y155{bottom:825.015930px;}
.ya1{bottom:829.980194px;}
.y10d{bottom:830.524384px;}
.y44{bottom:832.980194px;}
.y154{bottom:837.615875px;}
.ya0{bottom:844.980194px;}
.y10c{bottom:845.524384px;}
.y43{bottom:847.980194px;}
.y153{bottom:850.215912px;}
.y3{bottom:853.945679px;}
.y9f{bottom:859.980194px;}
.y10b{bottom:860.524384px;}
.y152{bottom:862.815857px;}
.y42{bottom:862.980194px;}
.y9e{bottom:874.980194px;}
.y151{bottom:875.415894px;}
.y10a{bottom:875.524384px;}
.y41{bottom:877.980194px;}
.y150{bottom:888.015930px;}
.y9d{bottom:889.980194px;}
.y109{bottom:890.524384px;}
.y40{bottom:892.980194px;}
.y2{bottom:898.945679px;}
.y14f{bottom:900.615875px;}
.y9c{bottom:904.980194px;}
.y108{bottom:905.524384px;}
.y3f{bottom:907.980194px;}
.y14e{bottom:913.215912px;}
.y9b{bottom:919.980194px;}
.y107{bottom:920.524384px;}
.y3e{bottom:922.980194px;}
.y14d{bottom:925.815857px;}
.y9a{bottom:934.980194px;}
.y3d{bottom:937.980194px;}
.y14c{bottom:938.415894px;}
.y1{bottom:943.945679px;}
.y99{bottom:949.980194px;}
.y106{bottom:950.524384px;}
.y14b{bottom:951.015930px;}
.y1ab{bottom:951.780121px;}
.y2f{bottom:952.050934px;}
.y3c{bottom:952.980194px;}
.y14a{bottom:963.615875px;}
.y98{bottom:964.980194px;}
.y105{bottom:965.524384px;}
.y3b{bottom:967.980194px;}
.y149{bottom:976.215912px;}
.y97{bottom:979.980194px;}
.y104{bottom:980.524384px;}
.y3a{bottom:982.980194px;}
.y148{bottom:988.815857px;}
.y96{bottom:994.980194px;}
.y103{bottom:995.524384px;}
.y39{bottom:997.980194px;}
.y147{bottom:1001.415894px;}
.y95{bottom:1009.980194px;}
.y102{bottom:1010.524384px;}
.y38{bottom:1012.980194px;}
.y146{bottom:1014.015930px;}
.y94{bottom:1024.980194px;}
.y101{bottom:1025.524384px;}
.y145{bottom:1026.615875px;}
.y37{bottom:1027.980194px;}
.y144{bottom:1039.215912px;}
.y93{bottom:1039.980194px;}
.y100{bottom:1040.524384px;}
.y36{bottom:1042.980194px;}
.y143{bottom:1051.815857px;}
.yff{bottom:1055.524384px;}
.y35{bottom:1057.980194px;}
.y142{bottom:1064.415894px;}
.yfe{bottom:1070.524384px;}
.y34{bottom:1072.980194px;}
.y141{bottom:1077.015930px;}
.yfd{bottom:1085.524384px;}
.y33{bottom:1087.980194px;}
.y140{bottom:1089.615875px;}
.y32{bottom:1140.708343px;}
.y6f{bottom:1140.800079px;}
.he{height:25.798827px;}
.hd{height:30.939677px;}
.hc{height:30.939697px;}
.h11{height:34.523438px;}
.h1c{height:35.411133px;}
.h5{height:38.838867px;}
.h16{height:41.538000px;}
.h15{height:43.008000px;}
.h1a{height:43.154297px;}
.h1f{height:44.505000px;}
.h1e{height:45.090000px;}
.h10{height:45.679688px;}
.h1d{height:46.080000px;}
.h14{height:47.469727px;}
.h6{height:51.416016px;}
.h8{height:53.406000px;}
.h7{height:54.108000px;}
.h17{height:55.296000px;}
.h13{height:56.013350px;}
.h9{height:56.014083px;}
.h1b{height:56.014174px;}
.hb{height:56.014179px;}
.h18{height:56.014220px;}
.ha{height:56.014266px;}
.h12{height:57.099609px;}
.h4{height:57.128906px;}
.h19{height:62.841797px;}
.hf{height:102.832031px;}
.h3{height:112.201172px;}
.h2{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:61.653448px;}
.x9{left:108.379795px;}
.x3{left:140.352448px;}
.x1{left:233.858253px;}
.x8{left:238.569443px;}
.x7{left:248.740059px;}
.x2{left:251.858253px;}
.xa{left:252.992249px;}
.x5{left:338.775604px;}
.x6{left:585.853363px;}
@media print{
.v3{vertical-align:-15.639974pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.559896pt;}
.v1{vertical-align:18.400065pt;}
.ls1a{letter-spacing:-4.554667pt;}
.ls1f{letter-spacing:-4.320000pt;}
.ls35{letter-spacing:-3.000000pt;}
.ls38{letter-spacing:-2.480000pt;}
.ls39{letter-spacing:-2.000000pt;}
.ls14{letter-spacing:-1.392000pt;}
.ls28{letter-spacing:-1.240000pt;}
.ls18{letter-spacing:-1.194667pt;}
.ls34{letter-spacing:-1.160000pt;}
.ls1d{letter-spacing:-1.120000pt;}
.ls15{letter-spacing:-1.104000pt;}
.ls29{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.933333pt;}
.ls3a{letter-spacing:-0.920000pt;}
.ls33{letter-spacing:-0.880000pt;}
.lse{letter-spacing:-0.864000pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls32{letter-spacing:-0.760000pt;}
.ls1b{letter-spacing:-0.672000pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.560000pt;}
.ls2e{letter-spacing:-0.520000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls2b{letter-spacing:-0.400000pt;}
.ls31{letter-spacing:-0.360000pt;}
.lsd{letter-spacing:-0.336000pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.280000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.149333pt;}
.ls17{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000007pt;}
.ls5{letter-spacing:0.000011pt;}
.ls4{letter-spacing:0.000015pt;}
.ls10{letter-spacing:0.000039pt;}
.ls20{letter-spacing:0.000073pt;}
.ls2d{letter-spacing:0.000078pt;}
.ls6{letter-spacing:0.000092pt;}
.ls7{letter-spacing:0.000255pt;}
.ls9{letter-spacing:0.010159pt;}
.ls1{letter-spacing:0.012267pt;}
.ls0{letter-spacing:0.012829pt;}
.ls2{letter-spacing:0.012833pt;}
.ls3{letter-spacing:0.018538pt;}
.lsc{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.566484pt;}
.ls25{letter-spacing:0.828203pt;}
.ls26{letter-spacing:1.503008pt;}
.ls36{letter-spacing:2.048581pt;}
.lsa{letter-spacing:2.666667pt;}
.ls24{letter-spacing:4.236732pt;}
.ls2c{letter-spacing:5.322344pt;}
.ls11{letter-spacing:58.029864pt;}
.ls12{letter-spacing:71.544531pt;}
.ws4{word-spacing:-13.333333pt;}
.ws20{word-spacing:-12.085333pt;}
.ws31{word-spacing:-10.992000pt;}
.ws21{word-spacing:-10.986667pt;}
.ws22{word-spacing:-10.896000pt;}
.ws69{word-spacing:-10.512000pt;}
.ws1f{word-spacing:-10.416000pt;}
.ws2{word-spacing:-10.032000pt;}
.ws0{word-spacing:-9.888000pt;}
.wsc7{word-spacing:-9.160000pt;}
.wsb4{word-spacing:-9.080000pt;}
.wsc2{word-spacing:-9.000000pt;}
.wsa6{word-spacing:-8.880000pt;}
.wsc3{word-spacing:-8.800000pt;}
.wsa4{word-spacing:-8.680000pt;}
.wsc4{word-spacing:-8.400000pt;}
.wsc5{word-spacing:-8.280000pt;}
.wsed{word-spacing:-8.240000pt;}
.wsc6{word-spacing:-8.000000pt;}
.wsa5{word-spacing:-7.920000pt;}
.ws1{word-spacing:-7.627200pt;}
.ws3{word-spacing:-6.346666pt;}
.ws55{word-spacing:-4.896000pt;}
.ws2f{word-spacing:-3.920000pt;}
.ws6a{word-spacing:-3.744000pt;}
.ws80{word-spacing:-3.312000pt;}
.ws6c{word-spacing:-3.120000pt;}
.wsbd{word-spacing:-3.040000pt;}
.ws4b{word-spacing:-2.976000pt;}
.ws18{word-spacing:-2.928000pt;}
.wsbe{word-spacing:-2.800000pt;}
.ws63{word-spacing:-2.613333pt;}
.wsa1{word-spacing:-2.592000pt;}
.ws3d{word-spacing:-2.496000pt;}
.ws14{word-spacing:-2.400000pt;}
.ws56{word-spacing:-2.256000pt;}
.ws72{word-spacing:-2.208000pt;}
.ws73{word-spacing:-2.160000pt;}
.ws59{word-spacing:-2.064000pt;}
.ws45{word-spacing:-2.016000pt;}
.wsde{word-spacing:-2.000000pt;}
.ws1a{word-spacing:-1.968000pt;}
.wsa9{word-spacing:-1.872000pt;}
.wsef{word-spacing:-1.760000pt;}
.wsf9{word-spacing:-1.720000pt;}
.ws8b{word-spacing:-1.680000pt;}
.ws12{word-spacing:-1.632000pt;}
.ws48{word-spacing:-1.584000pt;}
.wsb0{word-spacing:-1.560000pt;}
.ws10{word-spacing:-1.488000pt;}
.ws62{word-spacing:-1.440000pt;}
.ws50{word-spacing:-1.392000pt;}
.ws8a{word-spacing:-1.344000pt;}
.ws7b{word-spacing:-1.296000pt;}
.wse1{word-spacing:-1.280000pt;}
.wsec{word-spacing:-1.240000pt;}
.ws11{word-spacing:-1.200000pt;}
.wse2{word-spacing:-1.160000pt;}
.wsff{word-spacing:-1.104000pt;}
.ws7{word-spacing:-1.008000pt;}
.ws81{word-spacing:-0.960000pt;}
.ws88{word-spacing:-0.864000pt;}
.ws19{word-spacing:-0.816000pt;}
.wsd1{word-spacing:-0.760000pt;}
.ws8{word-spacing:-0.720000pt;}
.wsbf{word-spacing:-0.680000pt;}
.ws7d{word-spacing:-0.624000pt;}
.wsd4{word-spacing:-0.560000pt;}
.ws91{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.432000pt;}
.wsf6{word-spacing:-0.400000pt;}
.wsfc{word-spacing:-0.384000pt;}
.wse5{word-spacing:-0.360000pt;}
.ws3c{word-spacing:-0.336000pt;}
.ws9a{word-spacing:-0.288000pt;}
.wsd7{word-spacing:-0.280000pt;}
.ws85{word-spacing:-0.240000pt;}
.ws94{word-spacing:-0.192000pt;}
.wsc8{word-spacing:-0.160000pt;}
.ws64{word-spacing:-0.144000pt;}
.wse7{word-spacing:-0.120000pt;}
.ws8f{word-spacing:-0.096000pt;}
.ws4a{word-spacing:-0.048000pt;}
.wse3{word-spacing:-0.040000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf4{word-spacing:0.040000pt;}
.wsc{word-spacing:0.048000pt;}
.wscd{word-spacing:0.080000pt;}
.ws1e{word-spacing:0.096000pt;}
.ws83{word-spacing:0.144000pt;}
.wsdb{word-spacing:0.160000pt;}
.wsad{word-spacing:0.192000pt;}
.wsbb{word-spacing:0.280000pt;}
.ws7e{word-spacing:0.288000pt;}
.ws1d{word-spacing:0.317333pt;}
.wsdd{word-spacing:0.320000pt;}
.wscf{word-spacing:0.360000pt;}
.ws7f{word-spacing:0.384000pt;}
.wsb5{word-spacing:0.400000pt;}
.wsba{word-spacing:0.440000pt;}
.ws53{word-spacing:0.480000pt;}
.wsc0{word-spacing:0.520000pt;}
.ws8d{word-spacing:0.528000pt;}
.wsb9{word-spacing:0.560000pt;}
.wsae{word-spacing:0.576000pt;}
.wsbc{word-spacing:0.640000pt;}
.wsce{word-spacing:0.680000pt;}
.ws16{word-spacing:0.768000pt;}
.wsc1{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.816000pt;}
.wsb3{word-spacing:0.840000pt;}
.ws96{word-spacing:0.864000pt;}
.ws17{word-spacing:0.912000pt;}
.wse6{word-spacing:0.920000pt;}
.ws5a{word-spacing:0.960000pt;}
.wsd0{word-spacing:1.000000pt;}
.ws13{word-spacing:1.056000pt;}
.wsf5{word-spacing:1.080000pt;}
.ws3f{word-spacing:1.104000pt;}
.ws32{word-spacing:1.152000pt;}
.wsd9{word-spacing:1.240000pt;}
.ws5b{word-spacing:1.248000pt;}
.ws97{word-spacing:1.296000pt;}
.wse8{word-spacing:1.320000pt;}
.wsfb{word-spacing:1.344000pt;}
.ws6d{word-spacing:1.392000pt;}
.wsda{word-spacing:1.440000pt;}
.ws92{word-spacing:1.488000pt;}
.wsb6{word-spacing:1.520000pt;}
.ws60{word-spacing:1.536000pt;}
.wsd8{word-spacing:1.560000pt;}
.ws3b{word-spacing:1.584000pt;}
.ws74{word-spacing:1.680000pt;}
.ws71{word-spacing:1.728000pt;}
.wsf1{word-spacing:1.760000pt;}
.wsfa{word-spacing:1.800000pt;}
.ws51{word-spacing:1.824000pt;}
.wsd6{word-spacing:1.840000pt;}
.wsb7{word-spacing:1.920000pt;}
.wsf3{word-spacing:2.000000pt;}
.ws9c{word-spacing:2.016000pt;}
.wsf0{word-spacing:2.040000pt;}
.ws84{word-spacing:2.064000pt;}
.wsf7{word-spacing:2.080000pt;}
.wsab{word-spacing:2.160000pt;}
.ws15{word-spacing:2.208000pt;}
.wsb8{word-spacing:2.280000pt;}
.ws67{word-spacing:2.304000pt;}
.ws38{word-spacing:2.352000pt;}
.ws3e{word-spacing:2.400000pt;}
.wsdf{word-spacing:2.440000pt;}
.ws34{word-spacing:2.448000pt;}
.wsf2{word-spacing:2.480000pt;}
.ws39{word-spacing:2.496000pt;}
.ws6e{word-spacing:2.544000pt;}
.ws75{word-spacing:2.592000pt;}
.wse0{word-spacing:2.600000pt;}
.wsfd{word-spacing:2.688000pt;}
.wsfe{word-spacing:2.736000pt;}
.wsa{word-spacing:2.784000pt;}
.ws46{word-spacing:2.832000pt;}
.ws61{word-spacing:2.880000pt;}
.ws5f{word-spacing:2.928000pt;}
.wse4{word-spacing:3.000000pt;}
.ws37{word-spacing:3.024000pt;}
.ws8c{word-spacing:3.072000pt;}
.ws5c{word-spacing:3.120000pt;}
.ws9{word-spacing:3.216000pt;}
.wsac{word-spacing:3.264000pt;}
.ws35{word-spacing:3.312000pt;}
.ws89{word-spacing:3.360000pt;}
.ws7a{word-spacing:3.408000pt;}
.ws6b{word-spacing:3.456000pt;}
.ws4c{word-spacing:3.504000pt;}
.ws33{word-spacing:3.552000pt;}
.wsd2{word-spacing:3.640000pt;}
.wsd3{word-spacing:3.680000pt;}
.ws41{word-spacing:3.696000pt;}
.ws40{word-spacing:3.744000pt;}
.ws36{word-spacing:3.840000pt;}
.wsc9{word-spacing:3.880000pt;}
.wsa3{word-spacing:3.888000pt;}
.wsaa{word-spacing:3.936000pt;}
.ws57{word-spacing:4.032000pt;}
.ws58{word-spacing:4.080000pt;}
.ws65{word-spacing:4.128000pt;}
.wsaf{word-spacing:4.240000pt;}
.ws8e{word-spacing:4.272000pt;}
.ws54{word-spacing:4.320000pt;}
.wsf8{word-spacing:4.360000pt;}
.ws6f{word-spacing:4.368000pt;}
.ws1b{word-spacing:4.464000pt;}
.ws47{word-spacing:4.512000pt;}
.wsea{word-spacing:4.520000pt;}
.wsa2{word-spacing:4.560000pt;}
.ws98{word-spacing:4.608000pt;}
.ws43{word-spacing:4.656000pt;}
.wsb1{word-spacing:4.760000pt;}
.ws44{word-spacing:4.992000pt;}
.ws87{word-spacing:5.040000pt;}
.wseb{word-spacing:5.080000pt;}
.ws9b{word-spacing:5.088000pt;}
.ws66{word-spacing:5.184000pt;}
.wsdc{word-spacing:5.240000pt;}
.wsca{word-spacing:5.320000pt;}
.wscc{word-spacing:5.360000pt;}
.ws4f{word-spacing:5.424000pt;}
.wsb2{word-spacing:5.480000pt;}
.ws70{word-spacing:5.520000pt;}
.ws9f{word-spacing:5.616000pt;}
.wsa7{word-spacing:5.664000pt;}
.wscb{word-spacing:5.760000pt;}
.ws42{word-spacing:5.952000pt;}
.ws3a{word-spacing:6.048000pt;}
.wsa8{word-spacing:6.240000pt;}
.wsb{word-spacing:6.336000pt;}
.ws5d{word-spacing:6.384000pt;}
.ws79{word-spacing:6.576000pt;}
.wsee{word-spacing:6.600000pt;}
.ws49{word-spacing:6.912000pt;}
.wse9{word-spacing:7.480000pt;}
.ws76{word-spacing:7.536000pt;}
.ws4d{word-spacing:7.632000pt;}
.wsa0{word-spacing:7.680000pt;}
.ws4e{word-spacing:7.728000pt;}
.ws82{word-spacing:7.872000pt;}
.ws90{word-spacing:8.064000pt;}
.ws78{word-spacing:8.112000pt;}
.ws68{word-spacing:8.208000pt;}
.ws77{word-spacing:8.400000pt;}
.ws99{word-spacing:8.448000pt;}
.ws5e{word-spacing:8.640000pt;}
.wse{word-spacing:8.880000pt;}
.wsd5{word-spacing:9.280000pt;}
.wsf{word-spacing:9.312000pt;}
.ws86{word-spacing:9.360000pt;}
.ws6{word-spacing:11.232000pt;}
.ws95{word-spacing:11.424000pt;}
.ws9e{word-spacing:11.472000pt;}
.ws9d{word-spacing:11.520000pt;}
.wsd{word-spacing:12.816000pt;}
.ws93{word-spacing:12.864000pt;}
.ws1c{word-spacing:21.125333pt;}
.ws29{word-spacing:29.323707pt;}
.ws25{word-spacing:29.917294pt;}
.ws26{word-spacing:32.085785pt;}
.ws2a{word-spacing:33.654424pt;}
.ws2d{word-spacing:35.073091pt;}
.ws2c{word-spacing:47.243707pt;}
.ws30{word-spacing:57.510424pt;}
.ws23{word-spacing:89.094943pt;}
.ws2b{word-spacing:104.546667pt;}
.ws24{word-spacing:107.761091pt;}
.ws28{word-spacing:108.952000pt;}
.ws2e{word-spacing:111.120489pt;}
.ws27{word-spacing:142.028393pt;}
._23{margin-left:-18.360000pt;}
._26{margin-left:-16.560000pt;}
._22{margin-left:-14.400000pt;}
._1a{margin-left:-13.359952pt;}
._1c{margin-left:-11.087976pt;}
._1b{margin-left:-10.155166pt;}
._19{margin-left:-8.672096pt;}
._18{margin-left:-7.711952pt;}
._0{margin-left:-6.392533pt;}
._4{margin-left:-4.895897pt;}
._3{margin-left:-3.696034pt;}
._2{margin-left:-2.368048pt;}
._1{margin-left:-1.088000pt;}
._6{width:0.987200pt;}
._7{width:1.892800pt;}
._25{width:2.839467pt;}
._11{width:3.733333pt;}
._e{width:5.376000pt;}
._1f{width:6.664000pt;}
._1d{width:7.704000pt;}
._21{width:9.684048pt;}
._1e{width:11.520000pt;}
._17{width:12.559454pt;}
._24{width:14.391952pt;}
._5{width:15.358915pt;}
._20{width:20.520000pt;}
._9{width:23.297656pt;}
._b{width:37.591536pt;}
._10{width:49.153727pt;}
._c{width:58.331589pt;}
._a{width:62.347273pt;}
._13{width:64.287929pt;}
._12{width:65.272523pt;}
._14{width:71.544531pt;}
._15{width:155.345476pt;}
._d{width:179.649476pt;}
._f{width:210.383349pt;}
._16{width:212.026016pt;}
._8{width:2016.831493pt;}
.fs5{font-size:31.733332pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:24.563600pt;}
.y31{bottom:24.571599pt;}
.yd2{bottom:57.760132pt;}
.y191{bottom:61.347468pt;}
.y2e{bottom:64.382400pt;}
.y1aa{bottom:64.425735pt;}
.y13f{bottom:68.131465pt;}
.y6d{bottom:69.799998pt;}
.y8f{bottom:70.594533pt;}
.yd1{bottom:71.093465pt;}
.y190{bottom:72.547465pt;}
.y2d{bottom:77.715733pt;}
.y1a9{bottom:77.759069pt;}
.y13e{bottom:79.331467pt;}
.y18f{bottom:83.747467pt;}
.y8e{bottom:83.927867pt;}
.yd0{bottom:84.426799pt;}
.y6c{bottom:84.466665pt;}
.y13d{bottom:90.531464pt;}
.y2c{bottom:91.049062pt;}
.y18e{bottom:94.947469pt;}
.y8d{bottom:97.261200pt;}
.ycf{bottom:97.760132pt;}
.y1a8{bottom:97.819865pt;}
.y6b{bottom:99.133331pt;}
.y13c{bottom:101.731466pt;}
.yfc{bottom:101.749736pt;}
.y18d{bottom:106.147471pt;}
.y8c{bottom:110.594533pt;}
.yce{bottom:111.093465pt;}
.y13b{bottom:112.931467pt;}
.y6a{bottom:113.799998pt;}
.yfb{bottom:115.083069pt;}
.y18c{bottom:117.347463pt;}
.y1a7{bottom:117.880798pt;}
.y2b{bottom:122.514800pt;}
.y8b{bottom:123.927867pt;}
.y13a{bottom:124.131470pt;}
.ycd{bottom:124.426799pt;}
.yfa{bottom:128.416402pt;}
.y69{bottom:128.466665pt;}
.y18b{bottom:128.547465pt;}
.y1a6{bottom:131.214132pt;}
.y139{bottom:135.331462pt;}
.y2a{bottom:135.848133pt;}
.y8a{bottom:137.261200pt;}
.ycc{bottom:137.760132pt;}
.y18a{bottom:139.747467pt;}
.yf9{bottom:141.749736pt;}
.y138{bottom:146.531464pt;}
.y29{bottom:149.181467pt;}
.y89{bottom:150.594533pt;}
.y189{bottom:150.947469pt;}
.ycb{bottom:151.093465pt;}
.yf8{bottom:155.083069pt;}
.y68{bottom:156.823863pt;}
.y137{bottom:157.731466pt;}
.y1a5{bottom:160.547465pt;}
.y188{bottom:162.147471pt;}
.y28{bottom:162.514800pt;}
.y88{bottom:163.927867pt;}
.yca{bottom:164.426799pt;}
.yf7{bottom:168.416402pt;}
.y136{bottom:168.931467pt;}
.y67{bottom:172.453206pt;}
.y187{bottom:173.347473pt;}
.y1a4{bottom:173.880798pt;}
.y27{bottom:175.848124pt;}
.y87{bottom:177.261210pt;}
.yc9{bottom:177.760132pt;}
.y135{bottom:180.131470pt;}
.yf6{bottom:181.749736pt;}
.y186{bottom:184.547465pt;}
.y66{bottom:188.233724pt;}
.y26{bottom:189.181458pt;}
.y86{bottom:190.594543pt;}
.yc8{bottom:191.093465pt;}
.y134{bottom:191.331462pt;}
.yf5{bottom:195.083069pt;}
.y185{bottom:195.747457pt;}
.y25{bottom:202.514791pt;}
.y133{bottom:202.531474pt;}
.y1a3{bottom:203.214132pt;}
.y85{bottom:203.927877pt;}
.y65{bottom:204.014262pt;}
.yc7{bottom:204.426799pt;}
.y184{bottom:206.947469pt;}
.yf4{bottom:208.416402pt;}
.y132{bottom:213.731466pt;}
.y24{bottom:215.848124pt;}
.yc6{bottom:217.760132pt;}
.y183{bottom:218.147461pt;}
.y64{bottom:219.794800pt;}
.yf3{bottom:221.749736pt;}
.y131{bottom:224.931458pt;}
.y23{bottom:229.181458pt;}
.y182{bottom:229.347473pt;}
.y84{bottom:230.594543pt;}
.yc5{bottom:231.093465pt;}
.y1a2{bottom:232.547465pt;}
.y63{bottom:235.575338pt;}
.y130{bottom:236.131470pt;}
.y181{bottom:240.547465pt;}
.y22{bottom:242.514791pt;}
.y83{bottom:243.927877pt;}
.yc4{bottom:244.426799pt;}
.y1a1{bottom:245.880798pt;}
.y12f{bottom:247.331462pt;}
.yf2{bottom:251.083069pt;}
.y62{bottom:251.355733pt;}
.y180{bottom:251.747457pt;}
.y21{bottom:255.848124pt;}
.y82{bottom:257.261210pt;}
.yc3{bottom:257.760132pt;}
.y12e{bottom:258.531474pt;}
.y17f{bottom:262.947469pt;}
.yf1{bottom:264.416402pt;}
.y61{bottom:267.136271pt;}
.y20{bottom:269.181458pt;}
.y12d{bottom:269.731466pt;}
.y81{bottom:270.594543pt;}
.yc2{bottom:271.093465pt;}
.y17e{bottom:274.147461pt;}
.y1a0{bottom:275.214132pt;}
.yf0{bottom:277.749736pt;}
.y12c{bottom:280.931458pt;}
.y1f{bottom:282.514791pt;}
.y60{bottom:282.731608pt;}
.y80{bottom:283.927877pt;}
.y6e{bottom:284.315470pt;}
.yc1{bottom:284.426799pt;}
.y17d{bottom:285.347473pt;}
.y19f{bottom:288.547465pt;}
.yef{bottom:291.083069pt;}
.y12b{bottom:292.131470pt;}
.y1e{bottom:295.848124pt;}
.y17c{bottom:296.547465pt;}
.y7f{bottom:297.261210pt;}
.y19e{bottom:301.880798pt;}
.y12a{bottom:303.331462pt;}
.yee{bottom:304.416402pt;}
.y17b{bottom:307.747457pt;}
.y1d{bottom:309.181458pt;}
.y7e{bottom:310.594543pt;}
.yc0{bottom:311.093465pt;}
.y129{bottom:314.531474pt;}
.y19d{bottom:315.214132pt;}
.y17a{bottom:318.947469pt;}
.y1c{bottom:322.514791pt;}
.y7d{bottom:323.927877pt;}
.ybf{bottom:324.426799pt;}
.y128{bottom:325.731466pt;}
.y5f{bottom:328.416402pt;}
.yed{bottom:329.088257pt;}
.y179{bottom:330.147461pt;}
.y1b{bottom:335.848124pt;}
.y127{bottom:336.931458pt;}
.y7c{bottom:337.261210pt;}
.ybe{bottom:337.760132pt;}
.y178{bottom:341.347453pt;}
.y5e{bottom:341.749715pt;}
.yec{bottom:342.421590pt;}
.y19c{bottom:344.547485pt;}
.y126{bottom:348.131470pt;}
.y1a{bottom:349.181478pt;}
.y7b{bottom:350.594523pt;}
.ybd{bottom:351.093465pt;}
.y177{bottom:352.547485pt;}
.y5d{bottom:355.083049pt;}
.yeb{bottom:355.754924pt;}
.y19b{bottom:357.880819pt;}
.y125{bottom:359.331462pt;}
.y19{bottom:362.514811pt;}
.y176{bottom:363.747477pt;}
.y7a{bottom:363.927856pt;}
.ybc{bottom:364.426799pt;}
.y5c{bottom:368.416382pt;}
.yea{bottom:369.088257pt;}
.y124{bottom:370.531453pt;}
.y19a{bottom:371.214152pt;}
.y175{bottom:374.947469pt;}
.y18{bottom:375.848145pt;}
.ybb{bottom:377.760132pt;}
.y123{bottom:381.731486pt;}
.y199{bottom:384.547485pt;}
.y174{bottom:386.147461pt;}
.y17{bottom:389.181478pt;}
.y79{bottom:390.594523pt;}
.yba{bottom:391.093465pt;}
.y122{bottom:392.931478pt;}
.ye9{bottom:393.760132pt;}
.y5b{bottom:395.083049pt;}
.y173{bottom:397.347453pt;}
.y198{bottom:397.880819pt;}
.y16{bottom:402.514811pt;}
.y78{bottom:403.927856pt;}
.y121{bottom:404.131470pt;}
.yb9{bottom:404.426799pt;}
.ye8{bottom:407.093465pt;}
.y5a{bottom:408.416382pt;}
.y172{bottom:408.547485pt;}
.y197{bottom:411.214152pt;}
.y120{bottom:415.331462pt;}
.y77{bottom:417.261190pt;}
.yb8{bottom:417.760132pt;}
.y171{bottom:419.747477pt;}
.ye7{bottom:420.426799pt;}
.y59{bottom:421.749715pt;}
.y196{bottom:424.547485pt;}
.y11f{bottom:426.531453pt;}
.y76{bottom:430.594523pt;}
.y170{bottom:430.947469pt;}
.yb7{bottom:431.093465pt;}
.y15{bottom:431.848145pt;}
.ye6{bottom:433.760132pt;}
.y58{bottom:435.083049pt;}
.y11e{bottom:437.731486pt;}
.y195{bottom:437.880819pt;}
.y16f{bottom:442.147461pt;}
.y75{bottom:443.927856pt;}
.yb6{bottom:444.426799pt;}
.y14{bottom:446.514811pt;}
.ye5{bottom:447.093465pt;}
.y57{bottom:448.416382pt;}
.y11d{bottom:448.931478pt;}
.y194{bottom:451.214152pt;}
.y16e{bottom:453.347453pt;}
.y74{bottom:457.261190pt;}
.yb5{bottom:457.760132pt;}
.ye4{bottom:460.426799pt;}
.y16d{bottom:464.547485pt;}
.y73{bottom:470.594523pt;}
.yb4{bottom:471.093465pt;}
.y13{bottom:472.520020pt;}
.ye3{bottom:473.760132pt;}
.y16c{bottom:475.747477pt;}
.y56{bottom:477.749715pt;}
.y193{bottom:477.880819pt;}
.y72{bottom:483.927856pt;}
.yb3{bottom:484.426799pt;}
.y16b{bottom:486.947469pt;}
.y12{bottom:487.186686pt;}
.y55{bottom:491.083049pt;}
.y192{bottom:491.214152pt;}
.y11c{bottom:494.243856pt;}
.y71{bottom:497.261190pt;}
.yb2{bottom:497.760132pt;}
.y16a{bottom:498.147461pt;}
.ye2{bottom:500.426799pt;}
.y11{bottom:501.853353pt;}
.y54{bottom:504.416382pt;}
.y169{bottom:509.347453pt;}
.y70{bottom:510.594523pt;}
.yb1{bottom:511.093465pt;}
.ye1{bottom:513.760132pt;}
.y10{bottom:516.520020pt;}
.y53{bottom:517.749715pt;}
.y168{bottom:520.547485pt;}
.y11b{bottom:522.243856pt;}
.yb0{bottom:524.426799pt;}
.ye0{bottom:527.093465pt;}
.y52{bottom:531.083049pt;}
.yf{bottom:531.186686pt;}
.y167{bottom:531.747477pt;}
.y11a{bottom:535.577189pt;}
.yaf{bottom:537.760132pt;}
.ydf{bottom:540.426799pt;}
.y166{bottom:542.947469pt;}
.y51{bottom:544.416382pt;}
.ye{bottom:545.853353pt;}
.y119{bottom:548.910522pt;}
.yae{bottom:551.093465pt;}
.yde{bottom:553.760132pt;}
.y165{bottom:554.147461pt;}
.y50{bottom:557.749715pt;}
.yd{bottom:560.520020pt;}
.y92{bottom:562.026815pt;}
.yad{bottom:564.426799pt;}
.y164{bottom:565.347453pt;}
.ydd{bottom:567.093465pt;}
.y4f{bottom:571.083049pt;}
.yc{bottom:575.186686pt;}
.y91{bottom:575.360148pt;}
.y163{bottom:576.547485pt;}
.yac{bottom:577.760132pt;}
.y118{bottom:578.243856pt;}
.ydc{bottom:580.426799pt;}
.y4e{bottom:584.416382pt;}
.y162{bottom:587.747477pt;}
.y90{bottom:588.693481pt;}
.yb{bottom:589.853353pt;}
.yab{bottom:591.093465pt;}
.y117{bottom:591.577189pt;}
.ydb{bottom:593.760132pt;}
.y4d{bottom:597.749715pt;}
.y161{bottom:598.947469pt;}
.yaa{bottom:604.426799pt;}
.ya{bottom:604.520020pt;}
.y116{bottom:604.910522pt;}
.yda{bottom:607.093465pt;}
.y160{bottom:610.147461pt;}
.y4c{bottom:611.083049pt;}
.ya9{bottom:617.760132pt;}
.y115{bottom:618.243856pt;}
.y9{bottom:619.186686pt;}
.yd9{bottom:620.426799pt;}
.y15f{bottom:621.347453pt;}
.ya8{bottom:631.093465pt;}
.y114{bottom:631.577189pt;}
.y15e{bottom:632.547485pt;}
.yd8{bottom:633.760132pt;}
.y8{bottom:633.853353pt;}
.y4b{bottom:635.754924pt;}
.y15d{bottom:643.747477pt;}
.ya7{bottom:644.426799pt;}
.y113{bottom:644.910522pt;}
.yd7{bottom:647.093465pt;}
.y7{bottom:648.520020pt;}
.y4a{bottom:649.088257pt;}
.y15c{bottom:654.947469pt;}
.ya6{bottom:657.760132pt;}
.y112{bottom:658.243856pt;}
.yd6{bottom:660.426799pt;}
.y49{bottom:662.421590pt;}
.y6{bottom:663.186686pt;}
.y15b{bottom:666.147461pt;}
.ya5{bottom:671.093465pt;}
.y111{bottom:671.577189pt;}
.yd5{bottom:673.760132pt;}
.y48{bottom:675.754924pt;}
.y15a{bottom:677.347453pt;}
.ya4{bottom:684.426839pt;}
.y110{bottom:684.910563pt;}
.yd4{bottom:687.093506pt;}
.y159{bottom:688.547445pt;}
.y47{bottom:689.088298pt;}
.y5{bottom:689.758952pt;}
.ya3{bottom:697.760173pt;}
.y158{bottom:699.747477pt;}
.yd3{bottom:700.426839pt;}
.y157{bottom:710.947428pt;}
.y10f{bottom:711.577230pt;}
.y46{bottom:713.760173pt;}
.y4{bottom:719.062826pt;}
.y156{bottom:722.147461pt;}
.ya2{bottom:724.426839pt;}
.y10e{bottom:724.910563pt;}
.y45{bottom:727.093506pt;}
.y155{bottom:733.347493pt;}
.ya1{bottom:737.760173pt;}
.y10d{bottom:738.243896pt;}
.y44{bottom:740.426839pt;}
.y154{bottom:744.547445pt;}
.ya0{bottom:751.093506pt;}
.y10c{bottom:751.577230pt;}
.y43{bottom:753.760173pt;}
.y153{bottom:755.747477pt;}
.y3{bottom:759.062826pt;}
.y9f{bottom:764.426839pt;}
.y10b{bottom:764.910563pt;}
.y152{bottom:766.947428pt;}
.y42{bottom:767.093506pt;}
.y9e{bottom:777.760173pt;}
.y151{bottom:778.147461pt;}
.y10a{bottom:778.243896pt;}
.y41{bottom:780.426839pt;}
.y150{bottom:789.347493pt;}
.y9d{bottom:791.093506pt;}
.y109{bottom:791.577230pt;}
.y40{bottom:793.760173pt;}
.y2{bottom:799.062826pt;}
.y14f{bottom:800.547445pt;}
.y9c{bottom:804.426839pt;}
.y108{bottom:804.910563pt;}
.y3f{bottom:807.093506pt;}
.y14e{bottom:811.747477pt;}
.y9b{bottom:817.760173pt;}
.y107{bottom:818.243896pt;}
.y3e{bottom:820.426839pt;}
.y14d{bottom:822.947428pt;}
.y9a{bottom:831.093506pt;}
.y3d{bottom:833.760173pt;}
.y14c{bottom:834.147461pt;}
.y1{bottom:839.062826pt;}
.y99{bottom:844.426839pt;}
.y106{bottom:844.910563pt;}
.y14b{bottom:845.347493pt;}
.y1ab{bottom:846.026774pt;}
.y2f{bottom:846.267497pt;}
.y3c{bottom:847.093506pt;}
.y14a{bottom:856.547445pt;}
.y98{bottom:857.760173pt;}
.y105{bottom:858.243896pt;}
.y3b{bottom:860.426839pt;}
.y149{bottom:867.747477pt;}
.y97{bottom:871.093506pt;}
.y104{bottom:871.577230pt;}
.y3a{bottom:873.760173pt;}
.y148{bottom:878.947428pt;}
.y96{bottom:884.426839pt;}
.y103{bottom:884.910563pt;}
.y39{bottom:887.093506pt;}
.y147{bottom:890.147461pt;}
.y95{bottom:897.760173pt;}
.y102{bottom:898.243896pt;}
.y38{bottom:900.426839pt;}
.y146{bottom:901.347493pt;}
.y94{bottom:911.093506pt;}
.y101{bottom:911.577230pt;}
.y145{bottom:912.547445pt;}
.y37{bottom:913.760173pt;}
.y144{bottom:923.747477pt;}
.y93{bottom:924.426839pt;}
.y100{bottom:924.910563pt;}
.y36{bottom:927.093506pt;}
.y143{bottom:934.947428pt;}
.yff{bottom:938.243896pt;}
.y35{bottom:940.426839pt;}
.y142{bottom:946.147461pt;}
.yfe{bottom:951.577230pt;}
.y34{bottom:953.760173pt;}
.y141{bottom:957.347493pt;}
.yfd{bottom:964.910563pt;}
.y33{bottom:967.093506pt;}
.y140{bottom:968.547445pt;}
.y32{bottom:1013.962972pt;}
.y6f{bottom:1014.044515pt;}
.he{height:22.932291pt;}
.hd{height:27.501935pt;}
.hc{height:27.501953pt;}
.h11{height:30.687500pt;}
.h1c{height:31.476562pt;}
.h5{height:34.523438pt;}
.h16{height:36.922667pt;}
.h15{height:38.229333pt;}
.h1a{height:38.359375pt;}
.h1f{height:39.560000pt;}
.h1e{height:40.080000pt;}
.h10{height:40.604167pt;}
.h1d{height:40.960000pt;}
.h14{height:42.195312pt;}
.h6{height:45.703125pt;}
.h8{height:47.472000pt;}
.h7{height:48.096000pt;}
.h17{height:49.152000pt;}
.h13{height:49.789645pt;}
.h9{height:49.790296pt;}
.h1b{height:49.790377pt;}
.hb{height:49.790381pt;}
.h18{height:49.790418pt;}
.ha{height:49.790459pt;}
.h12{height:50.755208pt;}
.h4{height:50.781250pt;}
.h19{height:55.859375pt;}
.hf{height:91.406250pt;}
.h3{height:99.734375pt;}
.h2{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:54.803065pt;}
.x9{left:96.337596pt;}
.x3{left:124.757731pt;}
.x1{left:207.874003pt;}
.x8{left:212.061727pt;}
.x7{left:221.102275pt;}
.x2{left:223.874003pt;}
.xa{left:224.881999pt;}
.x5{left:301.133870pt;}
.x6{left:520.758545pt;}
}




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