
    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_419650ed5c3a76605e5bb9d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_434925204df4bc847efd627f.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_17b9f5bd96778fce0dc95c5c.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_5b8c811368b4f7958d0867ea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a3596edd54738499485c7ffd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_00af4af7f51fc5f117516011.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.192383;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_eeef9baacefd4beafd4b7b80.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_6573a7b4e4582ed2419a4a4b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f6acce53edc7b2ee0950fb6a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d30e1d5615af3bdbc2b1b570.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.392000;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_c9407e5d4d9fda9b3eec68f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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:-18.630020px;}
.v8{vertical-align:-14.490051px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.009949px;}
.v4{vertical-align:17.594991px;}
.v2{vertical-align:18.630432px;}
.v1{vertical-align:20.700073px;}
.v6{vertical-align:22.500000px;}
.v9{vertical-align:30.509949px;}
.v5{vertical-align:45.000000px;}
.lse{letter-spacing:-5.376000px;}
.ls10{letter-spacing:-4.860000px;}
.ls1c{letter-spacing:-2.790000px;}
.ls11{letter-spacing:-1.566000px;}
.ls19{letter-spacing:-1.350000px;}
.ls20{letter-spacing:-1.026000px;}
.ls1f{letter-spacing:-0.855000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.486000px;}
.ls18{letter-spacing:-0.315000px;}
.ls1e{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.108000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000006px;}
.ls1{letter-spacing:0.000008px;}
.ls7{letter-spacing:0.000012px;}
.lsd{letter-spacing:0.000018px;}
.ls8{letter-spacing:0.000044px;}
.lsb{letter-spacing:0.000049px;}
.ls16{letter-spacing:0.000088px;}
.ls12{letter-spacing:0.000104px;}
.lsc{letter-spacing:0.000141px;}
.ls3{letter-spacing:0.011429px;}
.ls0{letter-spacing:0.013800px;}
.ls17{letter-spacing:0.188687px;}
.lsf{letter-spacing:0.210000px;}
.ls15{letter-spacing:0.711270px;}
.ls1d{letter-spacing:1.419521px;}
.ls4{letter-spacing:3.000000px;}
.ls14{letter-spacing:4.215176px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.000000px;}
.ws1e{word-spacing:-13.596000px;}
.ws1f{word-spacing:-12.366000px;}
.ws1{word-spacing:-12.258000px;}
.wsc2{word-spacing:-12.042000px;}
.wsce{word-spacing:-11.718000px;}
.wsf5{word-spacing:-11.232000px;}
.ws7b{word-spacing:-10.692000px;}
.wsd2{word-spacing:-10.125000px;}
.wsd0{word-spacing:-9.990000px;}
.wscf{word-spacing:-9.765000px;}
.ws54{word-spacing:-9.744000px;}
.ws52{word-spacing:-9.618000px;}
.ws4f{word-spacing:-9.534000px;}
.ws51{word-spacing:-9.198000px;}
.wsd1{word-spacing:-8.955000px;}
.ws0{word-spacing:-8.580600px;}
.ws50{word-spacing:-6.673800px;}
.ws35{word-spacing:-5.508000px;}
.ws5d{word-spacing:-4.284000px;}
.ws5e{word-spacing:-3.864000px;}
.ws75{word-spacing:-3.834000px;}
.ws97{word-spacing:-3.726000px;}
.ws63{word-spacing:-3.402000px;}
.ws64{word-spacing:-3.132000px;}
.ws3d{word-spacing:-2.700000px;}
.ws61{word-spacing:-2.646000px;}
.ws7f{word-spacing:-2.484000px;}
.ws7e{word-spacing:-2.430000px;}
.ws2b{word-spacing:-2.376000px;}
.wsca{word-spacing:-2.322000px;}
.wsb1{word-spacing:-2.214000px;}
.wse0{word-spacing:-2.205000px;}
.wsb6{word-spacing:-2.160000px;}
.ws4b{word-spacing:-2.106000px;}
.ws43{word-spacing:-2.052000px;}
.wse2{word-spacing:-1.980000px;}
.ws4a{word-spacing:-1.944000px;}
.ws10{word-spacing:-1.890000px;}
.wsab{word-spacing:-1.836000px;}
.ws8a{word-spacing:-1.782000px;}
.ws22{word-spacing:-1.728000px;}
.wse6{word-spacing:-1.710000px;}
.ws72{word-spacing:-1.674000px;}
.wse5{word-spacing:-1.665000px;}
.ws84{word-spacing:-1.620000px;}
.ws6d{word-spacing:-1.566000px;}
.wsd6{word-spacing:-1.530000px;}
.wsb4{word-spacing:-1.512000px;}
.wsd5{word-spacing:-1.485000px;}
.ws11{word-spacing:-1.458000px;}
.ws19{word-spacing:-1.404000px;}
.wsdf{word-spacing:-1.395000px;}
.ws48{word-spacing:-1.350000px;}
.wsc1{word-spacing:-1.296000px;}
.wsec{word-spacing:-1.260000px;}
.wsa8{word-spacing:-1.242000px;}
.wsad{word-spacing:-1.188000px;}
.wsa1{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.026000px;}
.ws59{word-spacing:-0.972000px;}
.ws99{word-spacing:-0.918000px;}
.ws5c{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.810000px;}
.ws76{word-spacing:-0.756000px;}
.wsf2{word-spacing:-0.720000px;}
.wsb0{word-spacing:-0.648000px;}
.ws3f{word-spacing:-0.594000px;}
.wsf6{word-spacing:-0.540000px;}
.wse4{word-spacing:-0.495000px;}
.ws91{word-spacing:-0.486000px;}
.ws2e{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.378000px;}
.wsa4{word-spacing:-0.324000px;}
.ws6e{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.216000px;}
.ws94{word-spacing:-0.162000px;}
.ws4d{word-spacing:-0.108000px;}
.ws49{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsb8{word-spacing:0.054000px;}
.ws1d{word-spacing:0.108000px;}
.wsb9{word-spacing:0.162000px;}
.wsea{word-spacing:0.180000px;}
.ws2f{word-spacing:0.216000px;}
.ws62{word-spacing:0.270000px;}
.wsd7{word-spacing:0.315000px;}
.ws41{word-spacing:0.324000px;}
.ws2c{word-spacing:0.378000px;}
.wsa9{word-spacing:0.486000px;}
.wsb3{word-spacing:0.540000px;}
.wsa7{word-spacing:0.648000px;}
.wsb2{word-spacing:0.702000px;}
.wsdc{word-spacing:0.720000px;}
.ws98{word-spacing:0.756000px;}
.ws27{word-spacing:0.810000px;}
.wsf4{word-spacing:0.855000px;}
.ws12{word-spacing:0.864000px;}
.ws89{word-spacing:0.918000px;}
.wsef{word-spacing:0.945000px;}
.ws23{word-spacing:0.972000px;}
.ws8d{word-spacing:1.026000px;}
.ws1a{word-spacing:1.080000px;}
.wsaf{word-spacing:1.134000px;}
.ws66{word-spacing:1.188000px;}
.ws87{word-spacing:1.242000px;}
.ws16{word-spacing:1.296000px;}
.ws8{word-spacing:1.350000px;}
.wsbe{word-spacing:1.404000px;}
.wsf1{word-spacing:1.440000px;}
.ws8c{word-spacing:1.458000px;}
.wsf0{word-spacing:1.485000px;}
.ws7{word-spacing:1.512000px;}
.ws3b{word-spacing:1.566000px;}
.wsa5{word-spacing:1.620000px;}
.ws34{word-spacing:1.674000px;}
.ws7a{word-spacing:1.728000px;}
.ws9f{word-spacing:1.782000px;}
.ws42{word-spacing:1.836000px;}
.ws47{word-spacing:1.890000px;}
.wsb5{word-spacing:1.944000px;}
.wsdd{word-spacing:1.980000px;}
.ws45{word-spacing:1.998000px;}
.ws3c{word-spacing:2.052000px;}
.wse1{word-spacing:2.070000px;}
.ws4{word-spacing:2.106000px;}
.ws69{word-spacing:2.160000px;}
.ws7d{word-spacing:2.214000px;}
.ws83{word-spacing:2.268000px;}
.ws15{word-spacing:2.322000px;}
.ws2d{word-spacing:2.376000px;}
.wsde{word-spacing:2.385000px;}
.wsb7{word-spacing:2.430000px;}
.wsc0{word-spacing:2.484000px;}
.wsbd{word-spacing:2.538000px;}
.wsa{word-spacing:2.592000px;}
.ws6f{word-spacing:2.646000px;}
.ws85{word-spacing:2.700000px;}
.ws3a{word-spacing:2.754000px;}
.wse8{word-spacing:2.790000px;}
.ws5{word-spacing:2.808000px;}
.ws6b{word-spacing:2.862000px;}
.wsb{word-spacing:2.916000px;}
.wsa3{word-spacing:3.024000px;}
.ws9e{word-spacing:3.078000px;}
.wsbf{word-spacing:3.132000px;}
.wsdb{word-spacing:3.150000px;}
.wsa6{word-spacing:3.186000px;}
.ws29{word-spacing:3.294000px;}
.ws3e{word-spacing:3.348000px;}
.ws40{word-spacing:3.402000px;}
.ws33{word-spacing:3.456000px;}
.wsd{word-spacing:3.510000px;}
.ws86{word-spacing:3.564000px;}
.ws26{word-spacing:3.672000px;}
.ws46{word-spacing:3.726000px;}
.wsbb{word-spacing:3.780000px;}
.ws9c{word-spacing:3.834000px;}
.ws88{word-spacing:3.888000px;}
.wsed{word-spacing:3.915000px;}
.wsaa{word-spacing:3.942000px;}
.wsc{word-spacing:3.996000px;}
.ws60{word-spacing:4.104000px;}
.wsf3{word-spacing:4.140000px;}
.wsa0{word-spacing:4.158000px;}
.wsda{word-spacing:4.185000px;}
.wsd8{word-spacing:4.230000px;}
.ws39{word-spacing:4.266000px;}
.wsd9{word-spacing:4.275000px;}
.ws70{word-spacing:4.320000px;}
.ws80{word-spacing:4.374000px;}
.wsae{word-spacing:4.428000px;}
.wseb{word-spacing:4.455000px;}
.ws9a{word-spacing:4.590000px;}
.ws8f{word-spacing:4.644000px;}
.ws6a{word-spacing:4.698000px;}
.wsc5{word-spacing:4.752000px;}
.ws5f{word-spacing:4.860000px;}
.ws8e{word-spacing:4.914000px;}
.ws71{word-spacing:5.022000px;}
.ws13{word-spacing:5.076000px;}
.wsbc{word-spacing:5.184000px;}
.ws8b{word-spacing:5.238000px;}
.wsac{word-spacing:5.292000px;}
.ws77{word-spacing:5.454000px;}
.ws9d{word-spacing:5.616000px;}
.ws92{word-spacing:5.670000px;}
.ws36{word-spacing:5.724000px;}
.wse3{word-spacing:5.760000px;}
.ws5b{word-spacing:5.778000px;}
.wse9{word-spacing:5.805000px;}
.wse7{word-spacing:5.895000px;}
.ws44{word-spacing:6.048000px;}
.ws90{word-spacing:6.102000px;}
.ws28{word-spacing:6.156000px;}
.ws18{word-spacing:6.264000px;}
.ws24{word-spacing:6.372000px;}
.wsc8{word-spacing:6.426000px;}
.ws68{word-spacing:6.480000px;}
.ws4c{word-spacing:6.534000px;}
.wscb{word-spacing:6.588000px;}
.ws6{word-spacing:6.642000px;}
.wscd{word-spacing:6.696000px;}
.ws81{word-spacing:6.804000px;}
.ws79{word-spacing:6.966000px;}
.ws38{word-spacing:7.074000px;}
.wsf{word-spacing:7.182000px;}
.ws56{word-spacing:7.236000px;}
.ws82{word-spacing:7.344000px;}
.ws21{word-spacing:7.452000px;}
.wsc3{word-spacing:7.560000px;}
.ws55{word-spacing:7.830000px;}
.ws1b{word-spacing:7.884000px;}
.ws14{word-spacing:8.208000px;}
.wscc{word-spacing:8.262000px;}
.ws6c{word-spacing:8.532000px;}
.wsd3{word-spacing:8.802000px;}
.ws9b{word-spacing:8.856000px;}
.ws93{word-spacing:9.018000px;}
.ws74{word-spacing:9.072000px;}
.ws78{word-spacing:9.180000px;}
.wsc4{word-spacing:9.288000px;}
.wsba{word-spacing:9.396000px;}
.ws5a{word-spacing:9.450000px;}
.ws57{word-spacing:9.720000px;}
.ws67{word-spacing:9.774000px;}
.ws20{word-spacing:9.990000px;}
.ws65{word-spacing:10.098000px;}
.ws7c{word-spacing:10.314000px;}
.wsc9{word-spacing:10.368000px;}
.wsc7{word-spacing:10.746000px;}
.ws37{word-spacing:11.016000px;}
.ws58{word-spacing:11.070000px;}
.ws9{word-spacing:11.124000px;}
.wsd4{word-spacing:12.096000px;}
.wsc6{word-spacing:12.582000px;}
.ws31{word-spacing:12.798000px;}
.ws96{word-spacing:12.960000px;}
.ws25{word-spacing:13.122000px;}
.wse{word-spacing:13.230000px;}
.ws32{word-spacing:13.284000px;}
.wsa2{word-spacing:13.662000px;}
.ws30{word-spacing:14.634000px;}
.wsee{word-spacing:18.720000px;}
.ws1c{word-spacing:63.240000px;}
.ws4e{word-spacing:379.902661px;}
.ws53{word-spacing:456.511210px;}
._26{margin-left:-28.935000px;}
._22{margin-left:-18.433178px;}
._c{margin-left:-16.524592px;}
._12{margin-left:-14.648370px;}
._10{margin-left:-13.533678px;}
._25{margin-left:-12.285000px;}
._27{margin-left:-11.160000px;}
._20{margin-left:-10.026382px;}
._a{margin-left:-8.067279px;}
._8{margin-left:-6.125583px;}
._7{margin-left:-4.703400px;}
._0{margin-left:-3.541200px;}
._1{margin-left:-1.591170px;}
._3{width:1.096109px;}
._2{width:2.102339px;}
._f{width:3.862260px;}
._4{width:5.065200px;}
._23{width:6.975000px;}
._11{width:8.309429px;}
._e{width:10.369756px;}
._24{width:11.418678px;}
._9{width:12.928246px;}
._d{width:14.308764px;}
._b{width:16.504748px;}
._5{width:18.410070px;}
._1c{width:43.095000px;}
._17{width:52.680640px;}
._1b{width:117.313830px;}
._18{width:122.179716px;}
._15{width:123.397899px;}
._16{width:127.639899px;}
._1a{width:132.937830px;}
._14{width:225.373808px;}
._1f{width:262.525861px;}
._19{width:267.841830px;}
._1e{width:283.218661px;}
._13{width:297.330661px;}
._1d{width:357.932552px;}
._21{width:2240.029246px;}
._6{width:2270.790599px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.400000px;}
.fs6{font-size:35.699999px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs5{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;}
.y31{bottom:27.634050px;}
.y32{bottom:27.643049px;}
.y165{bottom:66.639748px;}
.y123{bottom:67.980148px;}
.y2f{bottom:68.031452px;}
.y96{bottom:70.416899px;}
.y1a3{bottom:71.903852px;}
.yf9{bottom:74.678850px;}
.yde{bottom:75.638849px;}
.y68{bottom:78.524998px;}
.y164{bottom:81.639748px;}
.y80{bottom:82.709398px;}
.y122{bottom:82.980148px;}
.y2e{bottom:83.031452px;}
.y1a2{bottom:84.503849px;}
.y95{bottom:85.416899px;}
.yf8{bottom:89.678850px;}
.ydd{bottom:90.638849px;}
.y67{bottom:93.524998px;}
.y163{bottom:96.639748px;}
.y1a1{bottom:97.103850px;}
.y7f{bottom:97.709404px;}
.y121{bottom:97.980148px;}
.y94{bottom:100.416904px;}
.yf7{bottom:104.678844px;}
.ydc{bottom:105.638855px;}
.y66{bottom:108.524998px;}
.y1a0{bottom:109.703854px;}
.y162{bottom:111.639748px;}
.y7e{bottom:112.709404px;}
.y120{bottom:112.980148px;}
.y93{bottom:115.416904px;}
.yf6{bottom:119.678844px;}
.ydb{bottom:120.638855px;}
.y19f{bottom:122.303844px;}
.y65{bottom:123.524998px;}
.y7d{bottom:127.709404px;}
.y11f{bottom:127.980148px;}
.y2d{bottom:128.084999px;}
.y92{bottom:130.416904px;}
.yf5{bottom:134.678844px;}
.y19e{bottom:134.903847px;}
.yda{bottom:135.638855px;}
.y64{bottom:138.524998px;}
.y161{bottom:141.639748px;}
.y7c{bottom:142.709404px;}
.y166{bottom:142.980148px;}
.y2c{bottom:143.084999px;}
.y91{bottom:145.416904px;}
.y19d{bottom:147.503849px;}
.yf4{bottom:149.678844px;}
.yd9{bottom:150.638855px;}
.y63{bottom:153.524998px;}
.y160{bottom:156.639748px;}
.y7b{bottom:157.709404px;}
.y11e{bottom:157.980148px;}
.y2b{bottom:158.084999px;}
.y19c{bottom:160.103850px;}
.y90{bottom:160.416904px;}
.yf3{bottom:164.678844px;}
.yd8{bottom:165.638855px;}
.y15f{bottom:171.639748px;}
.y19b{bottom:172.703854px;}
.y7a{bottom:172.709404px;}
.y11d{bottom:172.980148px;}
.y2a{bottom:173.084999px;}
.y8f{bottom:175.416904px;}
.yf2{bottom:179.678844px;}
.yd7{bottom:180.638855px;}
.y19a{bottom:185.303844px;}
.y15e{bottom:186.639748px;}
.y79{bottom:187.709404px;}
.y11c{bottom:187.980148px;}
.y29{bottom:188.084999px;}
.y8e{bottom:190.416904px;}
.yf1{bottom:194.678856px;}
.yd6{bottom:195.638855px;}
.y199{bottom:197.903847px;}
.y15d{bottom:201.639748px;}
.y78{bottom:202.709404px;}
.y11b{bottom:202.980148px;}
.y28{bottom:203.084999px;}
.yf0{bottom:209.678856px;}
.y198{bottom:210.503860px;}
.yd5{bottom:210.638855px;}
.y15c{bottom:216.639748px;}
.y77{bottom:217.709404px;}
.y11a{bottom:217.980148px;}
.y27{bottom:218.084999px;}
.y197{bottom:223.103850px;}
.yef{bottom:224.678856px;}
.yd4{bottom:225.638855px;}
.y15b{bottom:231.639748px;}
.y76{bottom:232.709404px;}
.y119{bottom:232.980148px;}
.y26{bottom:233.084999px;}
.y196{bottom:235.703842px;}
.yee{bottom:239.678856px;}
.yd3{bottom:240.638855px;}
.y15a{bottom:246.639748px;}
.y75{bottom:247.709404px;}
.y118{bottom:247.980148px;}
.y25{bottom:248.084999px;}
.yb1{bottom:248.278358px;}
.y195{bottom:248.303856px;}
.yed{bottom:254.678856px;}
.yd2{bottom:255.638855px;}
.y194{bottom:260.903847px;}
.y159{bottom:261.639748px;}
.y74{bottom:262.709404px;}
.y117{bottom:262.980148px;}
.y24{bottom:263.084999px;}
.yb0{bottom:264.778358px;}
.yec{bottom:269.678856px;}
.yd1{bottom:270.638855px;}
.y193{bottom:273.503860px;}
.y158{bottom:276.639748px;}
.y73{bottom:277.709404px;}
.y116{bottom:277.980148px;}
.y23{bottom:278.084999px;}
.yaf{bottom:281.278358px;}
.y69{bottom:284.205002px;}
.yeb{bottom:284.678856px;}
.yd0{bottom:285.638855px;}
.y192{bottom:286.103850px;}
.y157{bottom:291.639748px;}
.y115{bottom:292.980148px;}
.y22{bottom:293.084999px;}
.y1d1{bottom:294.710403px;}
.yae{bottom:297.778358px;}
.y191{bottom:298.703842px;}
.yea{bottom:299.678856px;}
.ycf{bottom:300.638855px;}
.y156{bottom:306.639748px;}
.y72{bottom:307.709404px;}
.y114{bottom:307.980148px;}
.y21{bottom:308.084999px;}
.y190{bottom:311.303856px;}
.ye9{bottom:314.678856px;}
.yce{bottom:315.638855px;}
.y155{bottom:321.639748px;}
.y71{bottom:322.709404px;}
.y113{bottom:322.980148px;}
.y20{bottom:323.084999px;}
.y18f{bottom:323.903847px;}
.y1d0{bottom:325.910408px;}
.ye8{bottom:329.678856px;}
.yad{bottom:329.680046px;}
.ycd{bottom:330.638855px;}
.y62{bottom:334.980148px;}
.yac{bottom:335.305046px;}
.y18e{bottom:336.503860px;}
.y70{bottom:337.709404px;}
.y112{bottom:337.980148px;}
.y1f{bottom:338.084999px;}
.y1cf{bottom:340.910408px;}
.ye7{bottom:344.678856px;}
.ycc{bottom:345.638855px;}
.y18d{bottom:349.103850px;}
.y61{bottom:349.980148px;}
.y154{bottom:351.639748px;}
.y6f{bottom:352.709404px;}
.y111{bottom:352.980148px;}
.y1e{bottom:353.084999px;}
.y1ce{bottom:355.910408px;}
.yab{bottom:358.513046px;}
.ye6{bottom:359.678856px;}
.ycb{bottom:359.745003px;}
.y18c{bottom:361.703842px;}
.yaa{bottom:364.138046px;}
.y60{bottom:364.980148px;}
.y153{bottom:366.639748px;}
.y6e{bottom:367.709404px;}
.y110{bottom:367.980148px;}
.y1d{bottom:368.084999px;}
.y1cd{bottom:370.910408px;}
.y18b{bottom:374.303856px;}
.ye5{bottom:374.678856px;}
.y5f{bottom:379.980148px;}
.y152{bottom:381.639748px;}
.y6d{bottom:382.709404px;}
.y10f{bottom:382.980148px;}
.y1c{bottom:383.084999px;}
.y1cc{bottom:385.910385px;}
.y18a{bottom:386.903870px;}
.ya9{bottom:387.516129px;}
.ya8{bottom:393.141129px;}
.y5e{bottom:394.980148px;}
.y151{bottom:396.639771px;}
.y6c{bottom:397.709381px;}
.y10e{bottom:397.980148px;}
.y1b{bottom:398.085022px;}
.y189{bottom:399.503860px;}
.y1cb{bottom:400.910385px;}
.ye4{bottom:403.500137px;}
.y5d{bottom:409.980148px;}
.y150{bottom:411.639771px;}
.y188{bottom:412.103850px;}
.y6b{bottom:412.709381px;}
.y10d{bottom:412.980148px;}
.y1a{bottom:413.085022px;}
.y1ca{bottom:415.910385px;}
.ya7{bottom:416.519257px;}
.ye3{bottom:418.500137px;}
.ya6{bottom:422.144257px;}
.y187{bottom:424.703842px;}
.y5c{bottom:424.980148px;}
.y14f{bottom:426.639771px;}
.y10c{bottom:427.980148px;}
.y19{bottom:428.085022px;}
.y1c9{bottom:430.910385px;}
.yfe{bottom:432.540161px;}
.ye2{bottom:433.500137px;}
.y186{bottom:437.303833px;}
.yca{bottom:439.980148px;}
.y14e{bottom:441.639771px;}
.y10b{bottom:442.980148px;}
.y18{bottom:443.085022px;}
.ya5{bottom:445.522339px;}
.yfd{bottom:447.540161px;}
.ye1{bottom:448.500137px;}
.y185{bottom:449.903870px;}
.ya4{bottom:451.147339px;}
.y1c8{bottom:454.910385px;}
.y5b{bottom:454.980148px;}
.y14d{bottom:456.639771px;}
.y10a{bottom:457.980148px;}
.y17{bottom:458.085022px;}
.y184{bottom:462.503860px;}
.yfc{bottom:462.540161px;}
.ye0{bottom:463.500137px;}
.y1c7{bottom:469.910385px;}
.y5a{bottom:469.980148px;}
.y85{bottom:470.570572px;}
.y14c{bottom:471.639771px;}
.y109{bottom:472.980148px;}
.y16{bottom:473.085022px;}
.ya3{bottom:474.525467px;}
.y183{bottom:475.103850px;}
.yfb{bottom:477.540161px;}
.ydf{bottom:478.500137px;}
.ya2{bottom:480.150467px;}
.y59{bottom:484.980148px;}
.y84{bottom:485.570572px;}
.y14b{bottom:486.639771px;}
.y182{bottom:487.703842px;}
.y108{bottom:487.980148px;}
.y15{bottom:488.085022px;}
.y1c6{bottom:492.478958px;}
.yfa{bottom:492.540161px;}
.y58{bottom:499.980148px;}
.y181{bottom:500.303833px;}
.y83{bottom:500.570572px;}
.y14a{bottom:501.639771px;}
.y107{bottom:502.980148px;}
.y14{bottom:503.085022px;}
.ya1{bottom:503.528412px;}
.y180{bottom:512.903870px;}
.ya0{bottom:514.778412px;}
.y57{bottom:514.980148px;}
.y1c5{bottom:515.047485px;}
.y82{bottom:515.570572px;}
.y149{bottom:516.639771px;}
.y106{bottom:517.980148px;}
.y13{bottom:518.085022px;}
.y17f{bottom:525.503860px;}
.y56{bottom:529.980148px;}
.y81{bottom:530.570572px;}
.y148{bottom:531.639771px;}
.y9f{bottom:532.531494px;}
.y105{bottom:532.980148px;}
.y1c4{bottom:537.615921px;}
.y17e{bottom:538.103850px;}
.y9e{bottom:538.156494px;}
.yc9{bottom:544.980148px;}
.y147{bottom:546.639771px;}
.y104{bottom:547.980148px;}
.y12{bottom:548.085022px;}
.y17d{bottom:550.703842px;}
.y1c3{bottom:552.615921px;}
.y55{bottom:559.980148px;}
.y9d{bottom:561.534622px;}
.y146{bottom:561.639771px;}
.y103{bottom:562.980148px;}
.y17c{bottom:563.303833px;}
.y11{bottom:564.585022px;}
.y9c{bottom:567.159622px;}
.y1c2{bottom:567.615921px;}
.y54{bottom:574.980148px;}
.y17b{bottom:575.903870px;}
.y145{bottom:576.639771px;}
.y102{bottom:577.980148px;}
.y10{bottom:581.085022px;}
.y17a{bottom:588.503860px;}
.y53{bottom:589.980148px;}
.y9b{bottom:590.537704px;}
.y144{bottom:591.639771px;}
.y101{bottom:592.980148px;}
.y9a{bottom:596.162704px;}
.yf{bottom:597.585022px;}
.y1c1{bottom:600.615921px;}
.y179{bottom:601.103850px;}
.y52{bottom:604.980148px;}
.y143{bottom:606.639771px;}
.yc8{bottom:607.980148px;}
.y178{bottom:613.703842px;}
.ye{bottom:614.085022px;}
.y1c0{bottom:615.615921px;}
.y86{bottom:616.610550px;}
.y99{bottom:619.332458px;}
.y51{bottom:619.980148px;}
.y142{bottom:621.639771px;}
.yc7{bottom:622.980148px;}
.y177{bottom:626.303833px;}
.yd{bottom:630.585022px;}
.y50{bottom:634.980148px;}
.y141{bottom:636.639771px;}
.y98{bottom:636.715668px;}
.yc6{bottom:637.980148px;}
.y176{bottom:638.903870px;}
.yc{bottom:647.085022px;}
.y1bf{bottom:648.615921px;}
.y4f{bottom:649.980148px;}
.y175{bottom:651.503860px;}
.y140{bottom:651.639771px;}
.yc5{bottom:652.980148px;}
.yb{bottom:663.585022px;}
.y174{bottom:664.103850px;}
.y4e{bottom:664.980148px;}
.y97{bottom:665.348694px;}
.y13f{bottom:666.639771px;}
.yb2{bottom:667.130539px;}
.y100{bottom:667.980148px;}
.y8d{bottom:675.960159px;}
.y173{bottom:676.703842px;}
.y4d{bottom:679.980148px;}
.ya{bottom:680.085022px;}
.y1be{bottom:681.615921px;}
.y13e{bottom:681.639771px;}
.yc4{bottom:682.980148px;}
.y172{bottom:689.303833px;}
.y8c{bottom:690.960159px;}
.y9{bottom:696.585022px;}
.y1bd{bottom:696.615921px;}
.y13d{bottom:696.639771px;}
.yc3{bottom:697.980148px;}
.y171{bottom:701.903870px;}
.y8b{bottom:705.960159px;}
.y4c{bottom:709.980148px;}
.y13c{bottom:711.639771px;}
.yc2{bottom:712.980148px;}
.y8{bottom:713.085022px;}
.y170{bottom:714.503860px;}
.y8a{bottom:720.960159px;}
.y4b{bottom:724.980148px;}
.yba{bottom:726.480148px;}
.y16f{bottom:727.103850px;}
.yc1{bottom:727.980148px;}
.y7{bottom:729.585022px;}
.y1bc{bottom:729.615921px;}
.y89{bottom:735.960159px;}
.y16e{bottom:739.703842px;}
.y4a{bottom:739.980148px;}
.yb9{bottom:741.480148px;}
.y13b{bottom:741.639771px;}
.yc0{bottom:742.980148px;}
.y1bb{bottom:744.615921px;}
.y6{bottom:746.085022px;}
.y88{bottom:750.960159px;}
.y16d{bottom:752.303833px;}
.y49{bottom:754.980148px;}
.yb8{bottom:756.480148px;}
.y13a{bottom:756.639771px;}
.yff{bottom:757.980148px;}
.y1ba{bottom:759.615921px;}
.y16c{bottom:764.903870px;}
.y87{bottom:765.960159px;}
.y48{bottom:769.980194px;}
.yb7{bottom:771.480194px;}
.y139{bottom:771.639771px;}
.ybf{bottom:772.980194px;}
.y1b9{bottom:774.615875px;}
.y5{bottom:775.978821px;}
.y16b{bottom:777.503815px;}
.y47{bottom:784.980194px;}
.yb6{bottom:786.480194px;}
.y138{bottom:786.639771px;}
.ybe{bottom:787.980194px;}
.y46{bottom:799.980194px;}
.yb5{bottom:801.480194px;}
.y137{bottom:801.639771px;}
.ybd{bottom:802.980194px;}
.y1b8{bottom:807.615875px;}
.y4{bottom:808.945679px;}
.y45{bottom:814.980194px;}
.yb4{bottom:816.480194px;}
.y136{bottom:816.639771px;}
.ybc{bottom:817.980194px;}
.y1b7{bottom:822.615875px;}
.y16a{bottom:828.480194px;}
.yb3{bottom:831.480194px;}
.y135{bottom:831.639771px;}
.ybb{bottom:832.980194px;}
.y1b6{bottom:837.615875px;}
.y134{bottom:846.639771px;}
.y44{bottom:847.980194px;}
.y1b5{bottom:852.615875px;}
.y3{bottom:853.945679px;}
.y169{bottom:859.980194px;}
.y133{bottom:861.639771px;}
.y43{bottom:862.980194px;}
.y1b4{bottom:867.615875px;}
.y168{bottom:874.980194px;}
.y132{bottom:876.639771px;}
.y42{bottom:877.980194px;}
.y167{bottom:889.980194px;}
.y131{bottom:891.639771px;}
.y41{bottom:892.980194px;}
.y2{bottom:898.945679px;}
.y1b3{bottom:900.615875px;}
.y130{bottom:906.639771px;}
.y40{bottom:907.980194px;}
.y1b2{bottom:913.215912px;}
.y12f{bottom:921.639771px;}
.y3f{bottom:922.980194px;}
.y1b1{bottom:925.815857px;}
.y12e{bottom:936.639771px;}
.y3e{bottom:937.980194px;}
.y1b0{bottom:938.415894px;}
.y1{bottom:943.945679px;}
.y1af{bottom:951.015930px;}
.y12d{bottom:951.639771px;}
.y30{bottom:952.050934px;}
.y3d{bottom:952.980194px;}
.y1ae{bottom:963.615875px;}
.y12c{bottom:966.639771px;}
.y3c{bottom:967.980194px;}
.y1ad{bottom:976.215912px;}
.y12b{bottom:981.639771px;}
.y3b{bottom:982.980194px;}
.y1ac{bottom:988.815857px;}
.y12a{bottom:996.639771px;}
.y3a{bottom:997.980194px;}
.y1ab{bottom:1001.415894px;}
.y129{bottom:1011.639771px;}
.y39{bottom:1012.980194px;}
.y1aa{bottom:1014.015930px;}
.y1a9{bottom:1026.615875px;}
.y128{bottom:1026.639771px;}
.y38{bottom:1027.980194px;}
.y1a8{bottom:1039.215912px;}
.y127{bottom:1041.639771px;}
.y37{bottom:1042.980194px;}
.y1a7{bottom:1051.815857px;}
.y126{bottom:1056.639771px;}
.y36{bottom:1057.980194px;}
.y1a6{bottom:1064.415894px;}
.y125{bottom:1071.639771px;}
.y35{bottom:1072.980194px;}
.y1a5{bottom:1077.015930px;}
.y124{bottom:1086.639771px;}
.y34{bottom:1087.980194px;}
.y1a4{bottom:1089.615875px;}
.y33{bottom:1140.708343px;}
.y6a{bottom:1140.800079px;}
.hd{height:34.523438px;}
.h1e{height:35.411133px;}
.h5{height:38.838867px;}
.h19{height:41.538000px;}
.h17{height:42.084000px;}
.h13{height:43.008000px;}
.he{height:43.154297px;}
.h18{height:43.344000px;}
.h21{height:44.505000px;}
.h1f{height:45.090000px;}
.hc{height:45.679688px;}
.h20{height:46.080000px;}
.h10{height:47.469727px;}
.ha{height:48.534668px;}
.h4{height:51.051636px;}
.h6{height:53.406000px;}
.h11{height:54.108000px;}
.h12{height:55.296000px;}
.hf{height:56.013350px;}
.h1d{height:56.014083px;}
.h8{height:56.014174px;}
.h1c{height:56.014197px;}
.h9{height:56.014220px;}
.h1b{height:56.014266px;}
.h7{height:56.014632px;}
.h1a{height:62.841797px;}
.h15{height:64.038000px;}
.h16{height:86.538000px;}
.h14{height:88.008000px;}
.hb{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;}
.x3{left:140.352448px;}
.x7{left:157.339806px;}
.x8{left:158.779804px;}
.x9{left:169.579800px;}
.xd{left:211.339806px;}
.x1{left:233.858253px;}
.xa{left:238.569443px;}
.x2{left:251.858550px;}
.xe{left:252.992249px;}
.x5{left:338.775604px;}
.xb{left:369.623108px;}
.xc{left:437.906570px;}
.x6{left:585.853363px;}
@media print{
.v3{vertical-align:-16.560018pt;}
.v8{vertical-align:-12.880046pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.119954pt;}
.v4{vertical-align:15.639992pt;}
.v2{vertical-align:16.560384pt;}
.v1{vertical-align:18.400065pt;}
.v6{vertical-align:20.000000pt;}
.v9{vertical-align:27.119954pt;}
.v5{vertical-align:40.000000pt;}
.lse{letter-spacing:-4.778667pt;}
.ls10{letter-spacing:-4.320000pt;}
.ls1c{letter-spacing:-2.480000pt;}
.ls11{letter-spacing:-1.392000pt;}
.ls19{letter-spacing:-1.200000pt;}
.ls20{letter-spacing:-0.912000pt;}
.ls1f{letter-spacing:-0.760000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.432000pt;}
.ls18{letter-spacing:-0.280000pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000005pt;}
.ls1{letter-spacing:0.000007pt;}
.ls7{letter-spacing:0.000011pt;}
.lsd{letter-spacing:0.000016pt;}
.ls8{letter-spacing:0.000039pt;}
.lsb{letter-spacing:0.000044pt;}
.ls16{letter-spacing:0.000078pt;}
.ls12{letter-spacing:0.000092pt;}
.lsc{letter-spacing:0.000125pt;}
.ls3{letter-spacing:0.010159pt;}
.ls0{letter-spacing:0.012267pt;}
.ls17{letter-spacing:0.167721pt;}
.lsf{letter-spacing:0.186667pt;}
.ls15{letter-spacing:0.632240pt;}
.ls1d{letter-spacing:1.261797pt;}
.ls4{letter-spacing:2.666667pt;}
.ls14{letter-spacing:3.746823pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1e{word-spacing:-12.085333pt;}
.ws1f{word-spacing:-10.992000pt;}
.ws1{word-spacing:-10.896000pt;}
.wsc2{word-spacing:-10.704000pt;}
.wsce{word-spacing:-10.416000pt;}
.wsf5{word-spacing:-9.984000pt;}
.ws7b{word-spacing:-9.504000pt;}
.wsd2{word-spacing:-9.000000pt;}
.wsd0{word-spacing:-8.880000pt;}
.wscf{word-spacing:-8.680000pt;}
.ws54{word-spacing:-8.661333pt;}
.ws52{word-spacing:-8.549333pt;}
.ws4f{word-spacing:-8.474667pt;}
.ws51{word-spacing:-8.176000pt;}
.wsd1{word-spacing:-7.960000pt;}
.ws0{word-spacing:-7.627200pt;}
.ws50{word-spacing:-5.932267pt;}
.ws35{word-spacing:-4.896000pt;}
.ws5d{word-spacing:-3.808000pt;}
.ws5e{word-spacing:-3.434667pt;}
.ws75{word-spacing:-3.408000pt;}
.ws97{word-spacing:-3.312000pt;}
.ws63{word-spacing:-3.024000pt;}
.ws64{word-spacing:-2.784000pt;}
.ws3d{word-spacing:-2.400000pt;}
.ws61{word-spacing:-2.352000pt;}
.ws7f{word-spacing:-2.208000pt;}
.ws7e{word-spacing:-2.160000pt;}
.ws2b{word-spacing:-2.112000pt;}
.wsca{word-spacing:-2.064000pt;}
.wsb1{word-spacing:-1.968000pt;}
.wse0{word-spacing:-1.960000pt;}
.wsb6{word-spacing:-1.920000pt;}
.ws4b{word-spacing:-1.872000pt;}
.ws43{word-spacing:-1.824000pt;}
.wse2{word-spacing:-1.760000pt;}
.ws4a{word-spacing:-1.728000pt;}
.ws10{word-spacing:-1.680000pt;}
.wsab{word-spacing:-1.632000pt;}
.ws8a{word-spacing:-1.584000pt;}
.ws22{word-spacing:-1.536000pt;}
.wse6{word-spacing:-1.520000pt;}
.ws72{word-spacing:-1.488000pt;}
.wse5{word-spacing:-1.480000pt;}
.ws84{word-spacing:-1.440000pt;}
.ws6d{word-spacing:-1.392000pt;}
.wsd6{word-spacing:-1.360000pt;}
.wsb4{word-spacing:-1.344000pt;}
.wsd5{word-spacing:-1.320000pt;}
.ws11{word-spacing:-1.296000pt;}
.ws19{word-spacing:-1.248000pt;}
.wsdf{word-spacing:-1.240000pt;}
.ws48{word-spacing:-1.200000pt;}
.wsc1{word-spacing:-1.152000pt;}
.wsec{word-spacing:-1.120000pt;}
.wsa8{word-spacing:-1.104000pt;}
.wsad{word-spacing:-1.056000pt;}
.wsa1{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.912000pt;}
.ws59{word-spacing:-0.864000pt;}
.ws99{word-spacing:-0.816000pt;}
.ws5c{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.720000pt;}
.ws76{word-spacing:-0.672000pt;}
.wsf2{word-spacing:-0.640000pt;}
.wsb0{word-spacing:-0.576000pt;}
.ws3f{word-spacing:-0.528000pt;}
.wsf6{word-spacing:-0.480000pt;}
.wse4{word-spacing:-0.440000pt;}
.ws91{word-spacing:-0.432000pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.336000pt;}
.wsa4{word-spacing:-0.288000pt;}
.ws6e{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.192000pt;}
.ws94{word-spacing:-0.144000pt;}
.ws4d{word-spacing:-0.096000pt;}
.ws49{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.048000pt;}
.ws1d{word-spacing:0.096000pt;}
.wsb9{word-spacing:0.144000pt;}
.wsea{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.192000pt;}
.ws62{word-spacing:0.240000pt;}
.wsd7{word-spacing:0.280000pt;}
.ws41{word-spacing:0.288000pt;}
.ws2c{word-spacing:0.336000pt;}
.wsa9{word-spacing:0.432000pt;}
.wsb3{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.576000pt;}
.wsb2{word-spacing:0.624000pt;}
.wsdc{word-spacing:0.640000pt;}
.ws98{word-spacing:0.672000pt;}
.ws27{word-spacing:0.720000pt;}
.wsf4{word-spacing:0.760000pt;}
.ws12{word-spacing:0.768000pt;}
.ws89{word-spacing:0.816000pt;}
.wsef{word-spacing:0.840000pt;}
.ws23{word-spacing:0.864000pt;}
.ws8d{word-spacing:0.912000pt;}
.ws1a{word-spacing:0.960000pt;}
.wsaf{word-spacing:1.008000pt;}
.ws66{word-spacing:1.056000pt;}
.ws87{word-spacing:1.104000pt;}
.ws16{word-spacing:1.152000pt;}
.ws8{word-spacing:1.200000pt;}
.wsbe{word-spacing:1.248000pt;}
.wsf1{word-spacing:1.280000pt;}
.ws8c{word-spacing:1.296000pt;}
.wsf0{word-spacing:1.320000pt;}
.ws7{word-spacing:1.344000pt;}
.ws3b{word-spacing:1.392000pt;}
.wsa5{word-spacing:1.440000pt;}
.ws34{word-spacing:1.488000pt;}
.ws7a{word-spacing:1.536000pt;}
.ws9f{word-spacing:1.584000pt;}
.ws42{word-spacing:1.632000pt;}
.ws47{word-spacing:1.680000pt;}
.wsb5{word-spacing:1.728000pt;}
.wsdd{word-spacing:1.760000pt;}
.ws45{word-spacing:1.776000pt;}
.ws3c{word-spacing:1.824000pt;}
.wse1{word-spacing:1.840000pt;}
.ws4{word-spacing:1.872000pt;}
.ws69{word-spacing:1.920000pt;}
.ws7d{word-spacing:1.968000pt;}
.ws83{word-spacing:2.016000pt;}
.ws15{word-spacing:2.064000pt;}
.ws2d{word-spacing:2.112000pt;}
.wsde{word-spacing:2.120000pt;}
.wsb7{word-spacing:2.160000pt;}
.wsc0{word-spacing:2.208000pt;}
.wsbd{word-spacing:2.256000pt;}
.wsa{word-spacing:2.304000pt;}
.ws6f{word-spacing:2.352000pt;}
.ws85{word-spacing:2.400000pt;}
.ws3a{word-spacing:2.448000pt;}
.wse8{word-spacing:2.480000pt;}
.ws5{word-spacing:2.496000pt;}
.ws6b{word-spacing:2.544000pt;}
.wsb{word-spacing:2.592000pt;}
.wsa3{word-spacing:2.688000pt;}
.ws9e{word-spacing:2.736000pt;}
.wsbf{word-spacing:2.784000pt;}
.wsdb{word-spacing:2.800000pt;}
.wsa6{word-spacing:2.832000pt;}
.ws29{word-spacing:2.928000pt;}
.ws3e{word-spacing:2.976000pt;}
.ws40{word-spacing:3.024000pt;}
.ws33{word-spacing:3.072000pt;}
.wsd{word-spacing:3.120000pt;}
.ws86{word-spacing:3.168000pt;}
.ws26{word-spacing:3.264000pt;}
.ws46{word-spacing:3.312000pt;}
.wsbb{word-spacing:3.360000pt;}
.ws9c{word-spacing:3.408000pt;}
.ws88{word-spacing:3.456000pt;}
.wsed{word-spacing:3.480000pt;}
.wsaa{word-spacing:3.504000pt;}
.wsc{word-spacing:3.552000pt;}
.ws60{word-spacing:3.648000pt;}
.wsf3{word-spacing:3.680000pt;}
.wsa0{word-spacing:3.696000pt;}
.wsda{word-spacing:3.720000pt;}
.wsd8{word-spacing:3.760000pt;}
.ws39{word-spacing:3.792000pt;}
.wsd9{word-spacing:3.800000pt;}
.ws70{word-spacing:3.840000pt;}
.ws80{word-spacing:3.888000pt;}
.wsae{word-spacing:3.936000pt;}
.wseb{word-spacing:3.960000pt;}
.ws9a{word-spacing:4.080000pt;}
.ws8f{word-spacing:4.128000pt;}
.ws6a{word-spacing:4.176000pt;}
.wsc5{word-spacing:4.224000pt;}
.ws5f{word-spacing:4.320000pt;}
.ws8e{word-spacing:4.368000pt;}
.ws71{word-spacing:4.464000pt;}
.ws13{word-spacing:4.512000pt;}
.wsbc{word-spacing:4.608000pt;}
.ws8b{word-spacing:4.656000pt;}
.wsac{word-spacing:4.704000pt;}
.ws77{word-spacing:4.848000pt;}
.ws9d{word-spacing:4.992000pt;}
.ws92{word-spacing:5.040000pt;}
.ws36{word-spacing:5.088000pt;}
.wse3{word-spacing:5.120000pt;}
.ws5b{word-spacing:5.136000pt;}
.wse9{word-spacing:5.160000pt;}
.wse7{word-spacing:5.240000pt;}
.ws44{word-spacing:5.376000pt;}
.ws90{word-spacing:5.424000pt;}
.ws28{word-spacing:5.472000pt;}
.ws18{word-spacing:5.568000pt;}
.ws24{word-spacing:5.664000pt;}
.wsc8{word-spacing:5.712000pt;}
.ws68{word-spacing:5.760000pt;}
.ws4c{word-spacing:5.808000pt;}
.wscb{word-spacing:5.856000pt;}
.ws6{word-spacing:5.904000pt;}
.wscd{word-spacing:5.952000pt;}
.ws81{word-spacing:6.048000pt;}
.ws79{word-spacing:6.192000pt;}
.ws38{word-spacing:6.288000pt;}
.wsf{word-spacing:6.384000pt;}
.ws56{word-spacing:6.432000pt;}
.ws82{word-spacing:6.528000pt;}
.ws21{word-spacing:6.624000pt;}
.wsc3{word-spacing:6.720000pt;}
.ws55{word-spacing:6.960000pt;}
.ws1b{word-spacing:7.008000pt;}
.ws14{word-spacing:7.296000pt;}
.wscc{word-spacing:7.344000pt;}
.ws6c{word-spacing:7.584000pt;}
.wsd3{word-spacing:7.824000pt;}
.ws9b{word-spacing:7.872000pt;}
.ws93{word-spacing:8.016000pt;}
.ws74{word-spacing:8.064000pt;}
.ws78{word-spacing:8.160000pt;}
.wsc4{word-spacing:8.256000pt;}
.wsba{word-spacing:8.352000pt;}
.ws5a{word-spacing:8.400000pt;}
.ws57{word-spacing:8.640000pt;}
.ws67{word-spacing:8.688000pt;}
.ws20{word-spacing:8.880000pt;}
.ws65{word-spacing:8.976000pt;}
.ws7c{word-spacing:9.168000pt;}
.wsc9{word-spacing:9.216000pt;}
.wsc7{word-spacing:9.552000pt;}
.ws37{word-spacing:9.792000pt;}
.ws58{word-spacing:9.840000pt;}
.ws9{word-spacing:9.888000pt;}
.wsd4{word-spacing:10.752000pt;}
.wsc6{word-spacing:11.184000pt;}
.ws31{word-spacing:11.376000pt;}
.ws96{word-spacing:11.520000pt;}
.ws25{word-spacing:11.664000pt;}
.wse{word-spacing:11.760000pt;}
.ws32{word-spacing:11.808000pt;}
.wsa2{word-spacing:12.144000pt;}
.ws30{word-spacing:13.008000pt;}
.wsee{word-spacing:16.640000pt;}
.ws1c{word-spacing:56.213333pt;}
.ws4e{word-spacing:337.691254pt;}
.ws53{word-spacing:405.787742pt;}
._26{margin-left:-25.720000pt;}
._22{margin-left:-16.385047pt;}
._c{margin-left:-14.688526pt;}
._12{margin-left:-13.020773pt;}
._10{margin-left:-12.029936pt;}
._25{margin-left:-10.920000pt;}
._27{margin-left:-9.920000pt;}
._20{margin-left:-8.912339pt;}
._a{margin-left:-7.170915pt;}
._8{margin-left:-5.444962pt;}
._7{margin-left:-4.180800pt;}
._0{margin-left:-3.147733pt;}
._1{margin-left:-1.414373pt;}
._3{width:0.974319pt;}
._2{width:1.868746pt;}
._f{width:3.433120pt;}
._4{width:4.502400pt;}
._23{width:6.200000pt;}
._11{width:7.386159pt;}
._e{width:9.217561pt;}
._24{width:10.149936pt;}
._9{width:11.491774pt;}
._d{width:12.718902pt;}
._b{width:14.670887pt;}
._5{width:16.364507pt;}
._1c{width:38.306667pt;}
._17{width:46.827236pt;}
._1b{width:104.278960pt;}
._18{width:108.604192pt;}
._15{width:109.687021pt;}
._16{width:113.457688pt;}
._1a{width:118.166960pt;}
._14{width:200.332273pt;}
._1f{width:233.356321pt;}
._19{width:238.081627pt;}
._1e{width:251.749921pt;}
._13{width:264.293921pt;}
._1d{width:318.162268pt;}
._21{width:1991.137108pt;}
._6{width:2018.480532pt;}
.fsa{font-size:26.133333pt;}
.fs6{font-size:31.733332pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs5{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;}
.y31{bottom:24.563600pt;}
.y32{bottom:24.571599pt;}
.y165{bottom:59.235331pt;}
.y123{bottom:60.426799pt;}
.y2f{bottom:60.472402pt;}
.y96{bottom:62.592799pt;}
.y1a3{bottom:63.914536pt;}
.yf9{bottom:66.381200pt;}
.yde{bottom:67.234533pt;}
.y68{bottom:69.799998pt;}
.y164{bottom:72.568665pt;}
.y80{bottom:73.519465pt;}
.y122{bottom:73.760132pt;}
.y2e{bottom:73.805735pt;}
.y1a2{bottom:75.114532pt;}
.y95{bottom:75.926132pt;}
.yf8{bottom:79.714533pt;}
.ydd{bottom:80.567866pt;}
.y67{bottom:83.133331pt;}
.y163{bottom:85.901998pt;}
.y1a1{bottom:86.314533pt;}
.y7f{bottom:86.852804pt;}
.y121{bottom:87.093465pt;}
.y94{bottom:89.259471pt;}
.yf7{bottom:93.047862pt;}
.ydc{bottom:93.901204pt;}
.y66{bottom:96.466665pt;}
.y1a0{bottom:97.514537pt;}
.y162{bottom:99.235331pt;}
.y7e{bottom:100.186137pt;}
.y120{bottom:100.426799pt;}
.y93{bottom:102.592804pt;}
.yf6{bottom:106.381195pt;}
.ydb{bottom:107.234538pt;}
.y19f{bottom:108.714528pt;}
.y65{bottom:109.799998pt;}
.y7d{bottom:113.519470pt;}
.y11f{bottom:113.760132pt;}
.y2d{bottom:113.853333pt;}
.y92{bottom:115.926137pt;}
.yf5{bottom:119.714528pt;}
.y19e{bottom:119.914530pt;}
.yda{bottom:120.567871pt;}
.y64{bottom:123.133331pt;}
.y161{bottom:125.901998pt;}
.y7c{bottom:126.852804pt;}
.y166{bottom:127.093465pt;}
.y2c{bottom:127.186666pt;}
.y91{bottom:129.259471pt;}
.y19d{bottom:131.114532pt;}
.yf4{bottom:133.047862pt;}
.yd9{bottom:133.901204pt;}
.y63{bottom:136.466665pt;}
.y160{bottom:139.235331pt;}
.y7b{bottom:140.186137pt;}
.y11e{bottom:140.426799pt;}
.y2b{bottom:140.519999pt;}
.y19c{bottom:142.314533pt;}
.y90{bottom:142.592804pt;}
.yf3{bottom:146.381195pt;}
.yd8{bottom:147.234538pt;}
.y15f{bottom:152.568665pt;}
.y19b{bottom:153.514537pt;}
.y7a{bottom:153.519470pt;}
.y11d{bottom:153.760132pt;}
.y2a{bottom:153.853333pt;}
.y8f{bottom:155.926137pt;}
.yf2{bottom:159.714528pt;}
.yd7{bottom:160.567871pt;}
.y19a{bottom:164.714528pt;}
.y15e{bottom:165.901998pt;}
.y79{bottom:166.852804pt;}
.y11c{bottom:167.093465pt;}
.y29{bottom:167.186666pt;}
.y8e{bottom:169.259471pt;}
.yf1{bottom:173.047872pt;}
.yd6{bottom:173.901204pt;}
.y199{bottom:175.914530pt;}
.y15d{bottom:179.235331pt;}
.y78{bottom:180.186137pt;}
.y11b{bottom:180.426799pt;}
.y28{bottom:180.519999pt;}
.yf0{bottom:186.381205pt;}
.y198{bottom:187.114543pt;}
.yd5{bottom:187.234538pt;}
.y15c{bottom:192.568665pt;}
.y77{bottom:193.519470pt;}
.y11a{bottom:193.760132pt;}
.y27{bottom:193.853333pt;}
.y197{bottom:198.314533pt;}
.yef{bottom:199.714539pt;}
.yd4{bottom:200.567871pt;}
.y15b{bottom:205.901998pt;}
.y76{bottom:206.852804pt;}
.y119{bottom:207.093465pt;}
.y26{bottom:207.186666pt;}
.y196{bottom:209.514526pt;}
.yee{bottom:213.047872pt;}
.yd3{bottom:213.901204pt;}
.y15a{bottom:219.235331pt;}
.y75{bottom:220.186137pt;}
.y118{bottom:220.426799pt;}
.y25{bottom:220.519999pt;}
.yb1{bottom:220.691874pt;}
.y195{bottom:220.714539pt;}
.yed{bottom:226.381205pt;}
.yd2{bottom:227.234538pt;}
.y194{bottom:231.914530pt;}
.y159{bottom:232.568665pt;}
.y74{bottom:233.519470pt;}
.y117{bottom:233.760132pt;}
.y24{bottom:233.853333pt;}
.yb0{bottom:235.358541pt;}
.yec{bottom:239.714539pt;}
.yd1{bottom:240.567871pt;}
.y193{bottom:243.114543pt;}
.y158{bottom:245.901998pt;}
.y73{bottom:246.852804pt;}
.y116{bottom:247.093465pt;}
.y23{bottom:247.186666pt;}
.yaf{bottom:250.025208pt;}
.y69{bottom:252.626668pt;}
.yeb{bottom:253.047872pt;}
.yd0{bottom:253.901204pt;}
.y192{bottom:254.314533pt;}
.y157{bottom:259.235331pt;}
.y115{bottom:260.426799pt;}
.y22{bottom:260.519999pt;}
.y1d1{bottom:261.964803pt;}
.yae{bottom:264.691874pt;}
.y191{bottom:265.514526pt;}
.yea{bottom:266.381205pt;}
.ycf{bottom:267.234538pt;}
.y156{bottom:272.568665pt;}
.y72{bottom:273.519470pt;}
.y114{bottom:273.760132pt;}
.y21{bottom:273.853333pt;}
.y190{bottom:276.714539pt;}
.ye9{bottom:279.714539pt;}
.yce{bottom:280.567871pt;}
.y155{bottom:285.901998pt;}
.y71{bottom:286.852804pt;}
.y113{bottom:287.093465pt;}
.y20{bottom:287.186666pt;}
.y18f{bottom:287.914530pt;}
.y1d0{bottom:289.698140pt;}
.ye8{bottom:293.047872pt;}
.yad{bottom:293.048930pt;}
.ycd{bottom:293.901204pt;}
.y62{bottom:297.760132pt;}
.yac{bottom:298.048930pt;}
.y18e{bottom:299.114543pt;}
.y70{bottom:300.186137pt;}
.y112{bottom:300.426799pt;}
.y1f{bottom:300.519999pt;}
.y1cf{bottom:303.031474pt;}
.ye7{bottom:306.381205pt;}
.ycc{bottom:307.234538pt;}
.y18d{bottom:310.314533pt;}
.y61{bottom:311.093465pt;}
.y154{bottom:312.568665pt;}
.y6f{bottom:313.519470pt;}
.y111{bottom:313.760132pt;}
.y1e{bottom:313.853333pt;}
.y1ce{bottom:316.364807pt;}
.yab{bottom:318.678263pt;}
.ye6{bottom:319.714539pt;}
.ycb{bottom:319.773336pt;}
.y18c{bottom:321.514526pt;}
.yaa{bottom:323.678263pt;}
.y60{bottom:324.426799pt;}
.y153{bottom:325.901998pt;}
.y6e{bottom:326.852804pt;}
.y110{bottom:327.093465pt;}
.y1d{bottom:327.186666pt;}
.y1cd{bottom:329.698140pt;}
.y18b{bottom:332.714539pt;}
.ye5{bottom:333.047872pt;}
.y5f{bottom:337.760132pt;}
.y152{bottom:339.235331pt;}
.y6d{bottom:340.186137pt;}
.y10f{bottom:340.426799pt;}
.y1c{bottom:340.519999pt;}
.y1cc{bottom:343.031453pt;}
.y18a{bottom:343.914551pt;}
.ya9{bottom:344.458781pt;}
.ya8{bottom:349.458781pt;}
.y5e{bottom:351.093465pt;}
.y151{bottom:352.568685pt;}
.y6c{bottom:353.519450pt;}
.y10e{bottom:353.760132pt;}
.y1b{bottom:353.853353pt;}
.y189{bottom:355.114543pt;}
.y1cb{bottom:356.364787pt;}
.ye4{bottom:358.666789pt;}
.y5d{bottom:364.426799pt;}
.y150{bottom:365.902018pt;}
.y188{bottom:366.314533pt;}
.y6b{bottom:366.852783pt;}
.y10d{bottom:367.093465pt;}
.y1a{bottom:367.186686pt;}
.y1ca{bottom:369.698120pt;}
.ya7{bottom:370.239339pt;}
.ye3{bottom:372.000122pt;}
.ya6{bottom:375.239339pt;}
.y187{bottom:377.514526pt;}
.y5c{bottom:377.760132pt;}
.y14f{bottom:379.235352pt;}
.y10c{bottom:380.426799pt;}
.y19{bottom:380.520020pt;}
.y1c9{bottom:383.031453pt;}
.yfe{bottom:384.480143pt;}
.ye2{bottom:385.333455pt;}
.y186{bottom:388.714518pt;}
.yca{bottom:391.093465pt;}
.y14e{bottom:392.568685pt;}
.y10b{bottom:393.760132pt;}
.y18{bottom:393.853353pt;}
.ya5{bottom:396.019857pt;}
.yfd{bottom:397.813477pt;}
.ye1{bottom:398.666789pt;}
.y185{bottom:399.914551pt;}
.ya4{bottom:401.019857pt;}
.y1c8{bottom:404.364787pt;}
.y5b{bottom:404.426799pt;}
.y14d{bottom:405.902018pt;}
.y10a{bottom:407.093465pt;}
.y17{bottom:407.186686pt;}
.y184{bottom:411.114543pt;}
.yfc{bottom:411.146810pt;}
.ye0{bottom:412.000122pt;}
.y1c7{bottom:417.698120pt;}
.y5a{bottom:417.760132pt;}
.y85{bottom:418.284953pt;}
.y14c{bottom:419.235352pt;}
.y109{bottom:420.426799pt;}
.y16{bottom:420.520020pt;}
.ya3{bottom:421.800415pt;}
.y183{bottom:422.314533pt;}
.yfb{bottom:424.480143pt;}
.ydf{bottom:425.333455pt;}
.ya2{bottom:426.800415pt;}
.y59{bottom:431.093465pt;}
.y84{bottom:431.618286pt;}
.y14b{bottom:432.568685pt;}
.y182{bottom:433.514526pt;}
.y108{bottom:433.760132pt;}
.y15{bottom:433.853353pt;}
.y1c6{bottom:437.759074pt;}
.yfa{bottom:437.813477pt;}
.y58{bottom:444.426799pt;}
.y181{bottom:444.714518pt;}
.y83{bottom:444.951619pt;}
.y14a{bottom:445.902018pt;}
.y107{bottom:447.093465pt;}
.y14{bottom:447.186686pt;}
.ya1{bottom:447.580811pt;}
.y180{bottom:455.914551pt;}
.ya0{bottom:457.580811pt;}
.y57{bottom:457.760132pt;}
.y1c5{bottom:457.819987pt;}
.y82{bottom:458.284953pt;}
.y149{bottom:459.235352pt;}
.y106{bottom:460.426799pt;}
.y13{bottom:460.520020pt;}
.y17f{bottom:467.114543pt;}
.y56{bottom:471.093465pt;}
.y81{bottom:471.618286pt;}
.y148{bottom:472.568685pt;}
.y9f{bottom:473.361328pt;}
.y105{bottom:473.760132pt;}
.y1c4{bottom:477.880819pt;}
.y17e{bottom:478.314533pt;}
.y9e{bottom:478.361328pt;}
.yc9{bottom:484.426799pt;}
.y147{bottom:485.902018pt;}
.y104{bottom:487.093465pt;}
.y12{bottom:487.186686pt;}
.y17d{bottom:489.514526pt;}
.y1c3{bottom:491.214152pt;}
.y55{bottom:497.760132pt;}
.y9d{bottom:499.141886pt;}
.y146{bottom:499.235352pt;}
.y103{bottom:500.426799pt;}
.y17c{bottom:500.714518pt;}
.y11{bottom:501.853353pt;}
.y9c{bottom:504.141886pt;}
.y1c2{bottom:504.547485pt;}
.y54{bottom:511.093465pt;}
.y17b{bottom:511.914551pt;}
.y145{bottom:512.568685pt;}
.y102{bottom:513.760132pt;}
.y10{bottom:516.520020pt;}
.y17a{bottom:523.114543pt;}
.y53{bottom:524.426799pt;}
.y9b{bottom:524.922404pt;}
.y144{bottom:525.902018pt;}
.y101{bottom:527.093465pt;}
.y9a{bottom:529.922404pt;}
.yf{bottom:531.186686pt;}
.y1c1{bottom:533.880819pt;}
.y179{bottom:534.314533pt;}
.y52{bottom:537.760132pt;}
.y143{bottom:539.235352pt;}
.yc8{bottom:540.426799pt;}
.y178{bottom:545.514526pt;}
.ye{bottom:545.853353pt;}
.y1c0{bottom:547.214152pt;}
.y86{bottom:548.098267pt;}
.y99{bottom:550.517741pt;}
.y51{bottom:551.093465pt;}
.y142{bottom:552.568685pt;}
.yc7{bottom:553.760132pt;}
.y177{bottom:556.714518pt;}
.yd{bottom:560.520020pt;}
.y50{bottom:564.426799pt;}
.y141{bottom:565.902018pt;}
.y98{bottom:565.969482pt;}
.yc6{bottom:567.093465pt;}
.y176{bottom:567.914551pt;}
.yc{bottom:575.186686pt;}
.y1bf{bottom:576.547485pt;}
.y4f{bottom:577.760132pt;}
.y175{bottom:579.114543pt;}
.y140{bottom:579.235352pt;}
.yc5{bottom:580.426799pt;}
.yb{bottom:589.853353pt;}
.y174{bottom:590.314533pt;}
.y4e{bottom:591.093465pt;}
.y97{bottom:591.421061pt;}
.y13f{bottom:592.568685pt;}
.yb2{bottom:593.004924pt;}
.y100{bottom:593.760132pt;}
.y8d{bottom:600.853475pt;}
.y173{bottom:601.514526pt;}
.y4d{bottom:604.426799pt;}
.ya{bottom:604.520020pt;}
.y1be{bottom:605.880819pt;}
.y13e{bottom:605.902018pt;}
.yc4{bottom:607.093465pt;}
.y172{bottom:612.714518pt;}
.y8c{bottom:614.186808pt;}
.y9{bottom:619.186686pt;}
.y1bd{bottom:619.214152pt;}
.y13d{bottom:619.235352pt;}
.yc3{bottom:620.426799pt;}
.y171{bottom:623.914551pt;}
.y8b{bottom:627.520142pt;}
.y4c{bottom:631.093465pt;}
.y13c{bottom:632.568685pt;}
.yc2{bottom:633.760132pt;}
.y8{bottom:633.853353pt;}
.y170{bottom:635.114543pt;}
.y8a{bottom:640.853475pt;}
.y4b{bottom:644.426799pt;}
.yba{bottom:645.760132pt;}
.y16f{bottom:646.314533pt;}
.yc1{bottom:647.093465pt;}
.y7{bottom:648.520020pt;}
.y1bc{bottom:648.547485pt;}
.y89{bottom:654.186808pt;}
.y16e{bottom:657.514526pt;}
.y4a{bottom:657.760132pt;}
.yb9{bottom:659.093465pt;}
.y13b{bottom:659.235352pt;}
.yc0{bottom:660.426799pt;}
.y1bb{bottom:661.880819pt;}
.y6{bottom:663.186686pt;}
.y88{bottom:667.520142pt;}
.y16d{bottom:668.714518pt;}
.y49{bottom:671.093465pt;}
.yb8{bottom:672.426799pt;}
.y13a{bottom:672.568685pt;}
.yff{bottom:673.760132pt;}
.y1ba{bottom:675.214152pt;}
.y16c{bottom:679.914551pt;}
.y87{bottom:680.853475pt;}
.y48{bottom:684.426839pt;}
.yb7{bottom:685.760173pt;}
.y139{bottom:685.902018pt;}
.ybf{bottom:687.093506pt;}
.y1b9{bottom:688.547445pt;}
.y5{bottom:689.758952pt;}
.y16b{bottom:691.114502pt;}
.y47{bottom:697.760173pt;}
.yb6{bottom:699.093506pt;}
.y138{bottom:699.235352pt;}
.ybe{bottom:700.426839pt;}
.y46{bottom:711.093506pt;}
.yb5{bottom:712.426839pt;}
.y137{bottom:712.568685pt;}
.ybd{bottom:713.760173pt;}
.y1b8{bottom:717.880778pt;}
.y4{bottom:719.062826pt;}
.y45{bottom:724.426839pt;}
.yb4{bottom:725.760173pt;}
.y136{bottom:725.902018pt;}
.ybc{bottom:727.093506pt;}
.y1b7{bottom:731.214111pt;}
.y16a{bottom:736.426839pt;}
.yb3{bottom:739.093506pt;}
.y135{bottom:739.235352pt;}
.ybb{bottom:740.426839pt;}
.y1b6{bottom:744.547445pt;}
.y134{bottom:752.568685pt;}
.y44{bottom:753.760173pt;}
.y1b5{bottom:757.880778pt;}
.y3{bottom:759.062826pt;}
.y169{bottom:764.426839pt;}
.y133{bottom:765.902018pt;}
.y43{bottom:767.093506pt;}
.y1b4{bottom:771.214111pt;}
.y168{bottom:777.760173pt;}
.y132{bottom:779.235352pt;}
.y42{bottom:780.426839pt;}
.y167{bottom:791.093506pt;}
.y131{bottom:792.568685pt;}
.y41{bottom:793.760173pt;}
.y2{bottom:799.062826pt;}
.y1b3{bottom:800.547445pt;}
.y130{bottom:805.902018pt;}
.y40{bottom:807.093506pt;}
.y1b2{bottom:811.747477pt;}
.y12f{bottom:819.235352pt;}
.y3f{bottom:820.426839pt;}
.y1b1{bottom:822.947428pt;}
.y12e{bottom:832.568685pt;}
.y3e{bottom:833.760173pt;}
.y1b0{bottom:834.147461pt;}
.y1{bottom:839.062826pt;}
.y1af{bottom:845.347493pt;}
.y12d{bottom:845.902018pt;}
.y30{bottom:846.267497pt;}
.y3d{bottom:847.093506pt;}
.y1ae{bottom:856.547445pt;}
.y12c{bottom:859.235352pt;}
.y3c{bottom:860.426839pt;}
.y1ad{bottom:867.747477pt;}
.y12b{bottom:872.568685pt;}
.y3b{bottom:873.760173pt;}
.y1ac{bottom:878.947428pt;}
.y12a{bottom:885.902018pt;}
.y3a{bottom:887.093506pt;}
.y1ab{bottom:890.147461pt;}
.y129{bottom:899.235352pt;}
.y39{bottom:900.426839pt;}
.y1aa{bottom:901.347493pt;}
.y1a9{bottom:912.547445pt;}
.y128{bottom:912.568685pt;}
.y38{bottom:913.760173pt;}
.y1a8{bottom:923.747477pt;}
.y127{bottom:925.902018pt;}
.y37{bottom:927.093506pt;}
.y1a7{bottom:934.947428pt;}
.y126{bottom:939.235352pt;}
.y36{bottom:940.426839pt;}
.y1a6{bottom:946.147461pt;}
.y125{bottom:952.568685pt;}
.y35{bottom:953.760173pt;}
.y1a5{bottom:957.347493pt;}
.y124{bottom:965.902018pt;}
.y34{bottom:967.093506pt;}
.y1a4{bottom:968.547445pt;}
.y33{bottom:1013.962972pt;}
.y6a{bottom:1014.044515pt;}
.hd{height:30.687500pt;}
.h1e{height:31.476562pt;}
.h5{height:34.523438pt;}
.h19{height:36.922667pt;}
.h17{height:37.408000pt;}
.h13{height:38.229333pt;}
.he{height:38.359375pt;}
.h18{height:38.528000pt;}
.h21{height:39.560000pt;}
.h1f{height:40.080000pt;}
.hc{height:40.604167pt;}
.h20{height:40.960000pt;}
.h10{height:42.195312pt;}
.ha{height:43.141927pt;}
.h4{height:45.379232pt;}
.h6{height:47.472000pt;}
.h11{height:48.096000pt;}
.h12{height:49.152000pt;}
.hf{height:49.789645pt;}
.h1d{height:49.790296pt;}
.h8{height:49.790377pt;}
.h1c{height:49.790398pt;}
.h9{height:49.790418pt;}
.h1b{height:49.790459pt;}
.h7{height:49.790784pt;}
.h1a{height:55.859375pt;}
.h15{height:56.922667pt;}
.h16{height:76.922667pt;}
.h14{height:78.229333pt;}
.hb{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;}
.x3{left:124.757731pt;}
.x7{left:139.857605pt;}
.x8{left:141.137604pt;}
.x9{left:150.737600pt;}
.xd{left:187.857605pt;}
.x1{left:207.874003pt;}
.xa{left:212.061727pt;}
.x2{left:223.874267pt;}
.xe{left:224.881999pt;}
.x5{left:301.133870pt;}
.xb{left:328.553874pt;}
.xc{left:389.250285pt;}
.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; }
  