
    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_8b79abdda25d44a8b3abf0f7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.814000;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_3365f77cc6b632aaa538e198.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_dbaa80d0b714e3538e7b6c5c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.903809;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_e0204319f794f8c88f2a994b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_03a3b1700c7d7af0711e8618.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ace2a6188b8448ca40a705a5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_88b9e58a4e077c031ae9e275.woff')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_8ef70120e5a0bccc9834dd75.woff')format("woff");}.ff8{font-family:ff8;line-height:0.967000;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_bab35889cbd0afa4a5f3ba6c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_a1cb5aad245c05e57d065bd1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_bc8882ef3e134383397ba4de.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_ace2a6188b8448ca40a705a5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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:ffd;src:url('chunks/assets/font_ace2a6188b8448ca40a705a5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.951000;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:ffe;src:url('chunks/assets/font_0c3784a09b8c96b4622fa582.woff')format("woff");}.ffe{font-family:ffe;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);}
.v1{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.ls9{letter-spacing:-3.510000px;}
.ls8{letter-spacing:-1.620000px;}
.ls6{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.066000px;}
.ls2{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.702000px;}
.ls7{letter-spacing:1.723200px;}
.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;}
}
.wscc{word-spacing:-14.202000px;}
.wscb{word-spacing:-14.040000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.960000px;}
.ws44{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.520000px;}
.ws92{word-spacing:-9.990000px;}
.ws2{word-spacing:-9.288000px;}
.ws91{word-spacing:-7.870500px;}
.wsd9{word-spacing:-4.752000px;}
.wsde{word-spacing:-4.374000px;}
.wse7{word-spacing:-3.996000px;}
.wsa5{word-spacing:-3.618000px;}
.wse5{word-spacing:-3.240000px;}
.wsd4{word-spacing:-3.186000px;}
.wse8{word-spacing:-3.024000px;}
.wse2{word-spacing:-2.970000px;}
.ws5b{word-spacing:-2.592000px;}
.ws47{word-spacing:-2.538000px;}
.wsc3{word-spacing:-2.268000px;}
.wsa3{word-spacing:-2.214000px;}
.ws54{word-spacing:-1.998000px;}
.ws96{word-spacing:-1.944000px;}
.ws49{word-spacing:-1.890000px;}
.wsc1{word-spacing:-1.836000px;}
.wsa2{word-spacing:-1.782000px;}
.wsb1{word-spacing:-1.728000px;}
.ws1a{word-spacing:-1.674000px;}
.wsa1{word-spacing:-1.620000px;}
.ws62{word-spacing:-1.566000px;}
.wsc{word-spacing:-1.512000px;}
.ws34{word-spacing:-1.350000px;}
.ws38{word-spacing:-1.242000px;}
.ws2e{word-spacing:-1.188000px;}
.ws12{word-spacing:-1.134000px;}
.ws6{word-spacing:-1.080000px;}
.ws26{word-spacing:-1.026000px;}
.ws6a{word-spacing:-0.972000px;}
.ws13{word-spacing:-0.918000px;}
.wsb8{word-spacing:-0.864000px;}
.ws69{word-spacing:-0.810000px;}
.ws3f{word-spacing:-0.756000px;}
.ws2d{word-spacing:-0.702000px;}
.ws89{word-spacing:-0.648000px;}
.ws99{word-spacing:-0.594000px;}
.ws9{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.486000px;}
.ws43{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.378000px;}
.ws42{word-spacing:-0.324000px;}
.ws57{word-spacing:-0.270000px;}
.ws9a{word-spacing:-0.162000px;}
.ws5d{word-spacing:-0.108000px;}
.ws8b{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws5c{word-spacing:0.054000px;}
.ws6b{word-spacing:0.108000px;}
.ws41{word-spacing:0.162000px;}
.ws2c{word-spacing:0.216000px;}
.ws37{word-spacing:0.270000px;}
.ws39{word-spacing:0.378000px;}
.ws9f{word-spacing:0.432000px;}
.ws36{word-spacing:0.486000px;}
.ws8{word-spacing:0.540000px;}
.ws50{word-spacing:0.594000px;}
.ws25{word-spacing:0.648000px;}
.ws61{word-spacing:0.702000px;}
.ws10{word-spacing:0.810000px;}
.ws2a{word-spacing:0.864000px;}
.ws60{word-spacing:0.918000px;}
.ws11{word-spacing:0.972000px;}
.ws72{word-spacing:1.026000px;}
.wsf{word-spacing:1.080000px;}
.ws16{word-spacing:1.134000px;}
.ws3d{word-spacing:1.188000px;}
.ws14{word-spacing:1.242000px;}
.ws17{word-spacing:1.296000px;}
.ws53{word-spacing:1.350000px;}
.ws7a{word-spacing:1.404000px;}
.ws95{word-spacing:1.458000px;}
.ws40{word-spacing:1.512000px;}
.ws9e{word-spacing:1.566000px;}
.ws3a{word-spacing:1.620000px;}
.wsc4{word-spacing:1.674000px;}
.ws70{word-spacing:1.728000px;}
.wsa0{word-spacing:1.782000px;}
.ws5a{word-spacing:1.944000px;}
.ws32{word-spacing:1.998000px;}
.ws46{word-spacing:2.052000px;}
.ws18{word-spacing:2.106000px;}
.wsd{word-spacing:2.160000px;}
.ws3c{word-spacing:2.214000px;}
.ws8e{word-spacing:2.268000px;}
.ws58{word-spacing:2.322000px;}
.ws24{word-spacing:2.376000px;}
.wsc0{word-spacing:2.430000px;}
.ws8a{word-spacing:2.484000px;}
.ws29{word-spacing:2.538000px;}
.ws63{word-spacing:2.646000px;}
.wsb9{word-spacing:2.700000px;}
.wsbf{word-spacing:2.754000px;}
.ws8d{word-spacing:2.808000px;}
.wsb0{word-spacing:2.862000px;}
.ws90{word-spacing:2.916000px;}
.ws4c{word-spacing:2.970000px;}
.ws15{word-spacing:3.078000px;}
.ws28{word-spacing:3.132000px;}
.ws4e{word-spacing:3.186000px;}
.wsc2{word-spacing:3.240000px;}
.ws30{word-spacing:3.294000px;}
.wsb5{word-spacing:3.348000px;}
.ws88{word-spacing:3.402000px;}
.ws2f{word-spacing:3.456000px;}
.wsc5{word-spacing:3.510000px;}
.ws81{word-spacing:3.564000px;}
.ws27{word-spacing:3.618000px;}
.wsc8{word-spacing:3.672000px;}
.wsc7{word-spacing:3.726000px;}
.ws1d{word-spacing:3.780000px;}
.ws1b{word-spacing:3.942000px;}
.ws48{word-spacing:3.996000px;}
.ws64{word-spacing:4.050000px;}
.ws7{word-spacing:4.104000px;}
.wsb{word-spacing:4.158000px;}
.ws9c{word-spacing:4.212000px;}
.wsa4{word-spacing:4.266000px;}
.ws59{word-spacing:4.320000px;}
.ws22{word-spacing:4.374000px;}
.ws6d{word-spacing:4.428000px;}
.ws1f{word-spacing:4.482000px;}
.ws9b{word-spacing:4.590000px;}
.wsb6{word-spacing:4.644000px;}
.ws3e{word-spacing:4.698000px;}
.ws98{word-spacing:4.806000px;}
.ws8f{word-spacing:4.914000px;}
.ws7d{word-spacing:5.022000px;}
.ws3b{word-spacing:5.076000px;}
.ws67{word-spacing:5.130000px;}
.ws9d{word-spacing:5.238000px;}
.ws2b{word-spacing:5.292000px;}
.ws51{word-spacing:5.400000px;}
.ws1e{word-spacing:5.454000px;}
.wsc6{word-spacing:5.508000px;}
.ws6c{word-spacing:5.562000px;}
.wsc9{word-spacing:5.616000px;}
.ws5f{word-spacing:5.724000px;}
.ws4d{word-spacing:5.778000px;}
.ws86{word-spacing:5.832000px;}
.ws5e{word-spacing:5.886000px;}
.wsbb{word-spacing:5.994000px;}
.ws71{word-spacing:6.102000px;}
.ws84{word-spacing:6.156000px;}
.ws66{word-spacing:6.210000px;}
.ws8c{word-spacing:6.264000px;}
.ws33{word-spacing:6.318000px;}
.ws19{word-spacing:6.372000px;}
.wsbe{word-spacing:6.426000px;}
.ws68{word-spacing:6.480000px;}
.wse{word-spacing:6.588000px;}
.ws45{word-spacing:6.642000px;}
.wsbc{word-spacing:6.696000px;}
.ws7f{word-spacing:6.750000px;}
.wse6{word-spacing:6.858000px;}
.wsaa{word-spacing:6.966000px;}
.ws35{word-spacing:7.074000px;}
.ws31{word-spacing:7.128000px;}
.ws65{word-spacing:7.182000px;}
.ws6f{word-spacing:7.236000px;}
.ws7c{word-spacing:7.290000px;}
.ws55{word-spacing:7.344000px;}
.wscd{word-spacing:7.398000px;}
.wsca{word-spacing:7.452000px;}
.ws56{word-spacing:7.506000px;}
.ws6e{word-spacing:7.614000px;}
.ws20{word-spacing:7.668000px;}
.ws87{word-spacing:7.938000px;}
.wsb3{word-spacing:7.992000px;}
.wsb4{word-spacing:8.100000px;}
.ws82{word-spacing:8.154000px;}
.ws4f{word-spacing:8.208000px;}
.ws21{word-spacing:8.370000px;}
.wse3{word-spacing:8.424000px;}
.wsbd{word-spacing:8.586000px;}
.wsac{word-spacing:8.910000px;}
.wsa{word-spacing:9.126000px;}
.wsb7{word-spacing:9.180000px;}
.ws77{word-spacing:9.342000px;}
.ws80{word-spacing:9.558000px;}
.ws94{word-spacing:9.612000px;}
.wsa6{word-spacing:9.882000px;}
.wsdb{word-spacing:9.936000px;}
.ws97{word-spacing:10.044000px;}
.ws4a{word-spacing:10.098000px;}
.wsce{word-spacing:10.530000px;}
.ws79{word-spacing:10.638000px;}
.wsb2{word-spacing:10.854000px;}
.wsda{word-spacing:10.908000px;}
.ws75{word-spacing:10.962000px;}
.wse1{word-spacing:11.016000px;}
.wsa7{word-spacing:11.394000px;}
.ws23{word-spacing:11.610000px;}
.ws7b{word-spacing:11.718000px;}
.wsdc{word-spacing:11.826000px;}
.ws7e{word-spacing:11.934000px;}
.ws78{word-spacing:12.258000px;}
.wsba{word-spacing:12.366000px;}
.wse4{word-spacing:12.636000px;}
.ws83{word-spacing:13.284000px;}
.wsd6{word-spacing:13.824000px;}
.ws85{word-spacing:13.878000px;}
.ws74{word-spacing:13.986000px;}
.ws4b{word-spacing:14.094000px;}
.wsd0{word-spacing:14.418000px;}
.wsd3{word-spacing:14.796000px;}
.wsd7{word-spacing:15.660000px;}
.ws76{word-spacing:15.714000px;}
.wsaf{word-spacing:16.038000px;}
.ws93{word-spacing:16.632000px;}
.wsab{word-spacing:18.198000px;}
.wsa8{word-spacing:19.440000px;}
.wscf{word-spacing:20.250000px;}
.wsad{word-spacing:20.952000px;}
.wsd8{word-spacing:21.168000px;}
.wsdf{word-spacing:22.788000px;}
.wse0{word-spacing:22.950000px;}
.wsd5{word-spacing:23.544000px;}
.ws73{word-spacing:24.894000px;}
.wsd2{word-spacing:30.672000px;}
.wsa9{word-spacing:33.210000px;}
.wsae{word-spacing:33.372000px;}
.wsd1{word-spacing:33.642000px;}
.wsdd{word-spacing:44.118000px;}
._f{margin-left:-26.946000px;}
._e{margin-left:-24.894000px;}
._14{margin-left:-21.060000px;}
._9{margin-left:-16.507800px;}
._11{margin-left:-12.690000px;}
._10{margin-left:-10.638000px;}
._4{margin-left:-6.656400px;}
._1{margin-left:-5.529600px;}
._c{margin-left:-4.320000px;}
._5{margin-left:-3.288000px;}
._0{margin-left:-1.857600px;}
._3{width:1.632000px;}
._6{width:3.100800px;}
._2{width:4.766400px;}
._7{width:5.866200px;}
._8{width:7.279200px;}
._d{width:8.688600px;}
._12{width:10.697400px;}
._b{width:12.079800px;}
._13{width:15.859800px;}
._a{width:18.623400px;}
._19{width:23.152200px;}
._17{width:25.776600px;}
._16{width:32.809800px;}
._15{width:34.457400px;}
._18{width:44.617800px;}
.fc2{color:rgb(65,71,81);}
.fc1{color:rgb(39,91,155);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:44.100000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:42.246900px;}
.y1{bottom:42.247500px;}
.y17f{bottom:102.048300px;}
.y1a8{bottom:102.608250px;}
.y5c{bottom:103.398450px;}
.y115{bottom:103.848300px;}
.y12{bottom:104.307000px;}
.y8d{bottom:104.809950px;}
.y15c{bottom:105.106200px;}
.y194{bottom:105.856200px;}
.yeb{bottom:105.868050px;}
.y135{bottom:106.340550px;}
.ybd{bottom:109.836600px;}
.y11{bottom:118.707000px;}
.y17e{bottom:119.898450px;}
.y1a7{bottom:120.608250px;}
.y5b{bottom:121.398450px;}
.y114{bottom:121.848300px;}
.y8c{bottom:122.809950px;}
.y15b{bottom:123.106200px;}
.y193{bottom:123.706200px;}
.yea{bottom:123.868050px;}
.y134{bottom:124.340550px;}
.ybc{bottom:127.836600px;}
.y10{bottom:133.107000px;}
.y17d{bottom:137.748300px;}
.y1a6{bottom:138.608250px;}
.y113{bottom:139.698450px;}
.y8b{bottom:140.809950px;}
.y192{bottom:141.556200px;}
.ye9{bottom:141.868050px;}
.y133{bottom:142.340550px;}
.yf{bottom:147.507000px;}
.y5a{bottom:147.902250px;}
.y15a{bottom:153.862200px;}
.y17c{bottom:155.598300px;}
.y1a5{bottom:156.608250px;}
.y112{bottom:157.548300px;}
.ybb{bottom:158.592450px;}
.y8a{bottom:158.809950px;}
.y191{bottom:159.406200px;}
.ye8{bottom:159.868050px;}
.y132{bottom:160.340550px;}
.y59{bottom:165.902250px;}
.y159{bottom:171.862200px;}
.y17b{bottom:173.448450px;}
.y1a4{bottom:174.608250px;}
.y111{bottom:175.398450px;}
.y89{bottom:176.809950px;}
.y190{bottom:177.256200px;}
.y58{bottom:183.902250px;}
.ye7{bottom:186.372000px;}
.y131{bottom:191.096400px;}
.y17a{bottom:191.298300px;}
.y110{bottom:193.248300px;}
.y88{bottom:194.809950px;}
.yba{bottom:197.852400px;}
.y1a3{bottom:201.112200px;}
.y57{bottom:201.902250px;}
.y18f{bottom:203.610150px;}
.ye6{bottom:204.372000px;}
.y179{bottom:209.148450px;}
.y10f{bottom:211.098300px;}
.y158{bottom:211.122000px;}
.y87{bottom:212.809950px;}
.yb9{bottom:215.852400px;}
.y1a2{bottom:219.112200px;}
.y56{bottom:219.902250px;}
.y18e{bottom:221.460150px;}
.y130{bottom:221.852400px;}
.ye5{bottom:222.372000px;}
.y178{bottom:226.998300px;}
.y10e{bottom:228.948450px;}
.y157{bottom:229.122000px;}
.y86{bottom:230.809950px;}
.yb8{bottom:233.852400px;}
.y1a1{bottom:237.112200px;}
.y55{bottom:237.902250px;}
.y18d{bottom:239.310150px;}
.y12f{bottom:239.852400px;}
.ye4{bottom:240.372000px;}
.y177{bottom:244.848300px;}
.y156{bottom:246.972000px;}
.y85{bottom:248.809950px;}
.yb7{bottom:251.852400px;}
.y1a0{bottom:255.112200px;}
.y10d{bottom:255.302250px;}
.y54{bottom:255.902250px;}
.y18c{bottom:257.160150px;}
.ye3{bottom:258.372000px;}
.y176{bottom:262.698450px;}
.y155{bottom:264.822000px;}
.y84{bottom:266.809950px;}
.yb6{bottom:269.852400px;}
.y19f{bottom:273.112200px;}
.y10c{bottom:273.152250px;}
.y53{bottom:273.902250px;}
.y18b{bottom:275.010150px;}
.ye2{bottom:276.372000px;}
.y175{bottom:280.548300px;}
.y154{bottom:282.672000px;}
.y12e{bottom:283.364100px;}
.y83{bottom:284.809950px;}
.yb5{bottom:287.852400px;}
.y10b{bottom:291.002250px;}
.y19e{bottom:291.112200px;}
.y18a{bottom:292.860150px;}
.ye1{bottom:294.372000px;}
.y174{bottom:298.398450px;}
.y52{bottom:300.406200px;}
.y153{bottom:300.522000px;}
.y12d{bottom:301.364100px;}
.y82{bottom:302.809950px;}
.yb4{bottom:305.852250px;}
.y10a{bottom:308.852250px;}
.y19d{bottom:309.112200px;}
.y189{bottom:310.710150px;}
.y152{bottom:318.372000px;}
.y51{bottom:318.406200px;}
.y12c{bottom:319.214100px;}
.y81{bottom:320.809950px;}
.ye0{bottom:320.875950px;}
.yb3{bottom:323.852250px;}
.y173{bottom:324.752250px;}
.y109{bottom:326.702250px;}
.y19c{bottom:327.112200px;}
.y188{bottom:328.560150px;}
.y151{bottom:336.222000px;}
.y50{bottom:336.406200px;}
.y12b{bottom:337.064100px;}
.y80{bottom:338.809950px;}
.ydf{bottom:338.875950px;}
.yb2{bottom:341.852250px;}
.y172{bottom:342.602250px;}
.y19b{bottom:345.112200px;}
.y1e2{bottom:345.686400px;}
.y108{bottom:353.056200px;}
.y1c4{bottom:353.990550px;}
.y150{bottom:354.072000px;}
.y4f{bottom:354.406200px;}
.y12a{bottom:354.914100px;}
.y7f{bottom:356.809950px;}
.yde{bottom:356.875950px;}
.yb1{bottom:359.852250px;}
.y171{bottom:360.452250px;}
.y19a{bottom:363.112200px;}
.y1e1{bottom:363.536400px;}
.y107{bottom:370.906200px;}
.y14f{bottom:371.922000px;}
.y1c3{bottom:371.990550px;}
.y4e{bottom:372.406200px;}
.y187{bottom:372.764100px;}
.y7e{bottom:374.809950px;}
.ydd{bottom:374.875950px;}
.yb0{bottom:377.852250px;}
.y170{bottom:378.302250px;}
.y199{bottom:381.112200px;}
.y129{bottom:381.268050px;}
.y106{bottom:388.756200px;}
.y14e{bottom:389.772000px;}
.y1e0{bottom:389.890200px;}
.y4d{bottom:390.406200px;}
.y186{bottom:390.614100px;}
.y28{bottom:392.373000px;}
.y7d{bottom:392.809950px;}
.ydc{bottom:392.875950px;}
.yaf{bottom:395.852250px;}
.y16f{bottom:396.152250px;}
.y1c2{bottom:398.494350px;}
.y198{bottom:399.112200px;}
.y128{bottom:399.118050px;}
.y105{bottom:406.606200px;}
.y27{bottom:406.771500px;}
.y1df{bottom:407.740350px;}
.y4c{bottom:408.406200px;}
.y185{bottom:408.464100px;}
.ydb{bottom:410.875950px;}
.y16e{bottom:414.002250px;}
.y14d{bottom:416.125950px;}
.y1c1{bottom:416.494350px;}
.ye{bottom:416.956500px;}
.y127{bottom:416.968050px;}
.y7c{bottom:419.313900px;}
.y26{bottom:421.173000px;}
.yae{bottom:422.356200px;}
.y1de{bottom:425.590350px;}
.y184{bottom:426.314100px;}
.y4b{bottom:426.406200px;}
.yda{bottom:428.875950px;}
.y197{bottom:429.868050px;}
.yd{bottom:431.356500px;}
.y104{bottom:432.960150px;}
.y14c{bottom:433.975950px;}
.y1c0{bottom:434.494350px;}
.y126{bottom:434.818050px;}
.y25{bottom:435.573000px;}
.y7b{bottom:437.313900px;}
.yad{bottom:440.356200px;}
.y1dd{bottom:443.440350px;}
.y16d{bottom:444.608250px;}
.yc{bottom:445.756500px;}
.yd9{bottom:446.875950px;}
.y196{bottom:447.868050px;}
.y24{bottom:449.973000px;}
.y103{bottom:450.810150px;}
.y14b{bottom:451.825950px;}
.y1bf{bottom:452.494350px;}
.y125{bottom:452.668050px;}
.y7a{bottom:455.313900px;}
.y4a{bottom:457.162050px;}
.yac{bottom:458.356200px;}
.yb{bottom:460.156500px;}
.y1dc{bottom:461.290350px;}
.y16c{bottom:462.608250px;}
.y23{bottom:464.373000px;}
.yd8{bottom:464.875950px;}
.y102{bottom:468.660150px;}
.y14a{bottom:469.675950px;}
.y1be{bottom:470.494350px;}
.y124{bottom:470.518050px;}
.y79{bottom:473.313900px;}
.y49{bottom:475.162050px;}
.y22{bottom:478.771500px;}
.yd7{bottom:482.875950px;}
.yab{bottom:484.860150px;}
.y101{bottom:486.510150px;}
.y149{bottom:487.525950px;}
.y1db{bottom:487.644300px;}
.y123{bottom:488.368050px;}
.y78{bottom:491.313900px;}
.y195{bottom:491.379900px;}
.y48{bottom:493.162050px;}
.y1bd{bottom:496.998300px;}
.y16b{bottom:501.868050px;}
.yaa{bottom:502.860150px;}
.y148{bottom:505.375950px;}
.y1da{bottom:505.494300px;}
.y122{bottom:506.218050px;}
.y77{bottom:509.313900px;}
.yd6{bottom:509.379900px;}
.y4{bottom:511.267500px;}
.y100{bottom:512.864100px;}
.y1bc{bottom:514.998300px;}
.y16a{bottom:519.868050px;}
.ya9{bottom:520.860150px;}
.y147{bottom:523.225950px;}
.y1d9{bottom:523.344150px;}
.y183{bottom:524.068050px;}
.yd5{bottom:527.379900px;}
.yff{bottom:530.714100px;}
.y47{bottom:532.422000px;}
.y121{bottom:532.572000px;}
.y1bb{bottom:532.998300px;}
.y76{bottom:535.817850px;}
.y169{bottom:537.868050px;}
.ya8{bottom:538.860150px;}
.y146{bottom:541.075950px;}
.y182{bottom:541.918050px;}
.yd4{bottom:545.379900px;}
.yfe{bottom:548.564100px;}
.y1d8{bottom:549.698250px;}
.y46{bottom:550.422000px;}
.y1ba{bottom:550.998300px;}
.y21{bottom:551.229000px;}
.y75{bottom:553.817850px;}
.y168{bottom:555.868050px;}
.y145{bottom:558.925950px;}
.y181{bottom:559.768050px;}
.yd3{bottom:563.379900px;}
.ya7{bottom:565.364100px;}
.yfd{bottom:566.414100px;}
.y1d7{bottom:567.548100px;}
.y45{bottom:568.272000px;}
.y74{bottom:571.817850px;}
.y167{bottom:573.868050px;}
.y144{bottom:576.775950px;}
.y1b9{bottom:577.502250px;}
.y180{bottom:577.618050px;}
.yd2{bottom:581.379900px;}
.ya6{bottom:583.364100px;}
.yfc{bottom:584.264100px;}
.y1d6{bottom:585.398100px;}
.y44{bottom:586.122000px;}
.y73{bottom:589.817850px;}
.y166{bottom:591.868050px;}
.y143{bottom:594.625950px;}
.y1b8{bottom:595.502250px;}
.ya{bottom:599.244000px;}
.yd1{bottom:599.379900px;}
.ya5{bottom:601.364100px;}
.yfb{bottom:602.114100px;}
.y1d5{bottom:603.248100px;}
.y43{bottom:603.972000px;}
.y72{bottom:607.817850px;}
.y165{bottom:609.868050px;}
.y142{bottom:612.475950px;}
.y1b7{bottom:613.502250px;}
.y9{bottom:613.644000px;}
.y20{bottom:613.783500px;}
.yd0{bottom:617.379900px;}
.ya4{bottom:619.364100px;}
.y1d4{bottom:621.098250px;}
.y120{bottom:621.822000px;}
.y71{bottom:625.817850px;}
.y164{bottom:627.868050px;}
.y8{bottom:628.044000px;}
.y1f{bottom:628.183500px;}
.yfa{bottom:628.468050px;}
.y42{bottom:630.325950px;}
.ycf{bottom:635.379900px;}
.ya3{bottom:637.364100px;}
.y11f{bottom:639.672000px;}
.y1b6{bottom:640.006200px;}
.y7{bottom:642.444000px;}
.y1e{bottom:642.583500px;}
.yf9{bottom:646.318050px;}
.y1d3{bottom:647.452050px;}
.y41{bottom:648.175950px;}
.yce{bottom:653.379900px;}
.y163{bottom:654.372000px;}
.y70{bottom:656.573850px;}
.y1d{bottom:656.983500px;}
.y11e{bottom:657.522000px;}
.y1b5{bottom:658.006200px;}
.ya2{bottom:663.868050px;}
.y1d2{bottom:665.302050px;}
.y40{bottom:666.025950px;}
.ycd{bottom:671.379900px;}
.y1c{bottom:671.383500px;}
.y162{bottom:672.372000px;}
.yf8{bottom:672.672000px;}
.y141{bottom:674.529900px;}
.y11d{bottom:675.372000px;}
.y1b4{bottom:676.006200px;}
.ya1{bottom:681.868050px;}
.y6{bottom:683.106000px;}
.y3f{bottom:683.875950px;}
.y1b{bottom:685.783500px;}
.y6f{bottom:687.329700px;}
.ycc{bottom:689.379750px;}
.y161{bottom:690.372000px;}
.yf7{bottom:690.522000px;}
.y1d1{bottom:691.656000px;}
.y140{bottom:692.379750px;}
.y11c{bottom:693.222000px;}
.y5{bottom:697.506000px;}
.ya0{bottom:699.868050px;}
.y1a{bottom:700.183500px;}
.y3e{bottom:701.725950px;}
.y1b3{bottom:702.510150px;}
.ycb{bottom:707.379750px;}
.y160{bottom:708.372000px;}
.y1d0{bottom:709.506000px;}
.y13f{bottom:710.229900px;}
.yf6{bottom:716.875950px;}
.y3d{bottom:719.575950px;}
.y1b2{bottom:720.510150px;}
.yca{bottom:725.379750px;}
.y9f{bottom:726.372000px;}
.y1cf{bottom:727.356000px;}
.y13e{bottom:728.079900px;}
.y6e{bottom:730.841550px;}
.y3{bottom:732.082500px;}
.yf5{bottom:734.875950px;}
.y3c{bottom:737.425950px;}
.y1b1{bottom:738.510150px;}
.yc9{bottom:743.379750px;}
.y9e{bottom:744.372000px;}
.y13d{bottom:745.929900px;}
.y6d{bottom:748.841550px;}
.yf4{bottom:752.875950px;}
.y1ce{bottom:753.709950px;}
.y3b{bottom:755.275950px;}
.yc8{bottom:761.379750px;}
.y9d{bottom:762.372000px;}
.y13c{bottom:763.779900px;}
.y1b0{bottom:765.014100px;}
.y6c{bottom:766.841550px;}
.yf3{bottom:770.875950px;}
.y3a{bottom:773.125950px;}
.yc7{bottom:779.379750px;}
.y1cd{bottom:780.063900px;}
.y13b{bottom:781.629750px;}
.y1af{bottom:783.014100px;}
.y6b{bottom:784.841550px;}
.y9c{bottom:788.875950px;}
.y39{bottom:790.975950px;}
.yf2{bottom:797.379750px;}
.y1cc{bottom:797.913900px;}
.y13a{bottom:799.479900px;}
.y19{bottom:800.944500px;}
.y6a{bottom:802.841550px;}
.yc6{bottom:805.883850px;}
.y9b{bottom:806.875950px;}
.y38{bottom:808.825950px;}
.y1ae{bottom:809.518050px;}
.yf1{bottom:815.379750px;}
.y1cb{bottom:815.763900px;}
.y11b{bottom:817.329900px;}
.y69{bottom:820.841550px;}
.yc5{bottom:823.883850px;}
.y9a{bottom:824.875950px;}
.y37{bottom:826.675950px;}
.y1ad{bottom:827.518050px;}
.yf0{bottom:833.379750px;}
.y1ca{bottom:833.613900px;}
.y18{bottom:834.151500px;}
.y11a{bottom:835.179900px;}
.y68{bottom:838.841550px;}
.yc4{bottom:841.883850px;}
.y99{bottom:842.875950px;}
.y36{bottom:844.525950px;}
.yef{bottom:851.379750px;}
.y1c9{bottom:851.463900px;}
.y119{bottom:853.029900px;}
.y1ac{bottom:853.872000px;}
.y67{bottom:856.841550px;}
.yc3{bottom:859.883850px;}
.y98{bottom:860.875950px;}
.y35{bottom:862.375950px;}
.yee{bottom:869.379750px;}
.y118{bottom:870.879750px;}
.y1ab{bottom:871.721850px;}
.y17{bottom:873.660000px;}
.y66{bottom:874.841550px;}
.yc2{bottom:877.883850px;}
.y97{bottom:878.875950px;}
.y34{bottom:880.225950px;}
.y1c8{bottom:882.069900px;}
.yed{bottom:887.379750px;}
.y117{bottom:888.729900px;}
.yc1{bottom:895.883850px;}
.y1aa{bottom:898.075950px;}
.y16{bottom:900.660000px;}
.y65{bottom:901.345500px;}
.y96{bottom:905.379750px;}
.y33{bottom:906.579900px;}
.yc0{bottom:913.883850px;}
.y1a9{bottom:915.925950px;}
.y64{bottom:919.345500px;}
.y1c7{bottom:921.329700px;}
.y95{bottom:923.379750px;}
.y32{bottom:924.429900px;}
.ybf{bottom:931.883850px;}
.y139{bottom:932.933850px;}
.y2{bottom:936.325500px;}
.y63{bottom:937.345500px;}
.y1c6{bottom:939.329700px;}
.y94{bottom:941.379750px;}
.y31{bottom:942.279900px;}
.ybe{bottom:949.883850px;}
.y138{bottom:950.783700px;}
.y62{bottom:955.345500px;}
.yec{bottom:959.379750px;}
.y30{bottom:960.129750px;}
.y93{bottom:967.883850px;}
.y137{bottom:968.633850px;}
.y1c5{bottom:970.085550px;}
.y61{bottom:973.345500px;}
.y15f{bottom:977.379750px;}
.y2f{bottom:977.979900px;}
.y92{bottom:985.883850px;}
.y136{bottom:986.483850px;}
.y60{bottom:991.345500px;}
.y15{bottom:993.742500px;}
.y15e{bottom:995.379750px;}
.y2e{bottom:995.829900px;}
.y91{bottom:1003.883850px;}
.y116{bottom:1004.333700px;}
.y5f{bottom:1009.345500px;}
.y15d{bottom:1013.379750px;}
.y90{bottom:1021.883850px;}
.y2d{bottom:1022.183850px;}
.y14{bottom:1024.021500px;}
.y5e{bottom:1027.345500px;}
.y8f{bottom:1039.883850px;}
.y2c{bottom:1040.033700px;}
.y2b{bottom:1057.883850px;}
.y5d{bottom:1058.101350px;}
.y13{bottom:1064.286000px;}
.y2a{bottom:1104.742800px;}
.y8e{bottom:1108.994850px;}
.h9{height:26.532000px;}
.h5{height:32.507812px;}
.he{height:32.589900px;}
.h7{height:35.472000px;}
.hf{height:36.966797px;}
.h10{height:37.494141px;}
.h2{height:37.632000px;}
.h3{height:42.117188px;}
.h6{height:42.632812px;}
.hd{height:45.181641px;}
.hc{height:47.381836px;}
.h4{height:47.961914px;}
.ha{height:57.503906px;}
.hb{height:58.620117px;}
.h8{height:85.500000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:63.779550px;}
.xe{left:68.810100px;}
.x13{left:76.535400px;}
.x5{left:89.292000px;}
.x2{left:90.556500px;}
.x1c{left:95.490300px;}
.x3{left:97.795500px;}
.x1a{left:102.047250px;}
.x1e{left:106.299300px;}
.x22{left:114.803100px;}
.x9{left:119.764500px;}
.x1d{left:140.314950px;}
.x15{left:162.980400px;}
.x1f{left:165.122700px;}
.x12{left:204.980100px;}
.x20{left:230.745750px;}
.x21{left:234.262500px;}
.xd{left:274.960500px;}
.x16{left:282.256800px;}
.x4{left:286.299000px;}
.xf{left:290.928150px;}
.x8{left:304.921500px;}
.x7{left:306.171000px;}
.x6{left:340.072500px;}
.xc{left:345.708000px;}
.xb{left:374.106000px;}
.xa{left:399.757500px;}
.x10{left:446.456700px;}
.x11{left:459.212550px;}
.x1b{left:463.464450px;}
.x17{left:472.290300px;}
.x18{left:485.046300px;}
.x19{left:497.802150px;}
.x1{left:799.086000px;}
@media print{
.v1{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.ls9{letter-spacing:-3.120000pt;}
.ls8{letter-spacing:-1.440000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.624000pt;}
.ls7{letter-spacing:1.531733pt;}
.wscc{word-spacing:-12.624000pt;}
.wscb{word-spacing:-12.480000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.520000pt;}
.ws44{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.240000pt;}
.ws92{word-spacing:-8.880000pt;}
.ws2{word-spacing:-8.256000pt;}
.ws91{word-spacing:-6.996000pt;}
.wsd9{word-spacing:-4.224000pt;}
.wsde{word-spacing:-3.888000pt;}
.wse7{word-spacing:-3.552000pt;}
.wsa5{word-spacing:-3.216000pt;}
.wse5{word-spacing:-2.880000pt;}
.wsd4{word-spacing:-2.832000pt;}
.wse8{word-spacing:-2.688000pt;}
.wse2{word-spacing:-2.640000pt;}
.ws5b{word-spacing:-2.304000pt;}
.ws47{word-spacing:-2.256000pt;}
.wsc3{word-spacing:-2.016000pt;}
.wsa3{word-spacing:-1.968000pt;}
.ws54{word-spacing:-1.776000pt;}
.ws96{word-spacing:-1.728000pt;}
.ws49{word-spacing:-1.680000pt;}
.wsc1{word-spacing:-1.632000pt;}
.wsa2{word-spacing:-1.584000pt;}
.wsb1{word-spacing:-1.536000pt;}
.ws1a{word-spacing:-1.488000pt;}
.wsa1{word-spacing:-1.440000pt;}
.ws62{word-spacing:-1.392000pt;}
.wsc{word-spacing:-1.344000pt;}
.ws34{word-spacing:-1.200000pt;}
.ws38{word-spacing:-1.104000pt;}
.ws2e{word-spacing:-1.056000pt;}
.ws12{word-spacing:-1.008000pt;}
.ws6{word-spacing:-0.960000pt;}
.ws26{word-spacing:-0.912000pt;}
.ws6a{word-spacing:-0.864000pt;}
.ws13{word-spacing:-0.816000pt;}
.wsb8{word-spacing:-0.768000pt;}
.ws69{word-spacing:-0.720000pt;}
.ws3f{word-spacing:-0.672000pt;}
.ws2d{word-spacing:-0.624000pt;}
.ws89{word-spacing:-0.576000pt;}
.ws99{word-spacing:-0.528000pt;}
.ws9{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.432000pt;}
.ws43{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.336000pt;}
.ws42{word-spacing:-0.288000pt;}
.ws57{word-spacing:-0.240000pt;}
.ws9a{word-spacing:-0.144000pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws8b{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.048000pt;}
.ws6b{word-spacing:0.096000pt;}
.ws41{word-spacing:0.144000pt;}
.ws2c{word-spacing:0.192000pt;}
.ws37{word-spacing:0.240000pt;}
.ws39{word-spacing:0.336000pt;}
.ws9f{word-spacing:0.384000pt;}
.ws36{word-spacing:0.432000pt;}
.ws8{word-spacing:0.480000pt;}
.ws50{word-spacing:0.528000pt;}
.ws25{word-spacing:0.576000pt;}
.ws61{word-spacing:0.624000pt;}
.ws10{word-spacing:0.720000pt;}
.ws2a{word-spacing:0.768000pt;}
.ws60{word-spacing:0.816000pt;}
.ws11{word-spacing:0.864000pt;}
.ws72{word-spacing:0.912000pt;}
.wsf{word-spacing:0.960000pt;}
.ws16{word-spacing:1.008000pt;}
.ws3d{word-spacing:1.056000pt;}
.ws14{word-spacing:1.104000pt;}
.ws17{word-spacing:1.152000pt;}
.ws53{word-spacing:1.200000pt;}
.ws7a{word-spacing:1.248000pt;}
.ws95{word-spacing:1.296000pt;}
.ws40{word-spacing:1.344000pt;}
.ws9e{word-spacing:1.392000pt;}
.ws3a{word-spacing:1.440000pt;}
.wsc4{word-spacing:1.488000pt;}
.ws70{word-spacing:1.536000pt;}
.wsa0{word-spacing:1.584000pt;}
.ws5a{word-spacing:1.728000pt;}
.ws32{word-spacing:1.776000pt;}
.ws46{word-spacing:1.824000pt;}
.ws18{word-spacing:1.872000pt;}
.wsd{word-spacing:1.920000pt;}
.ws3c{word-spacing:1.968000pt;}
.ws8e{word-spacing:2.016000pt;}
.ws58{word-spacing:2.064000pt;}
.ws24{word-spacing:2.112000pt;}
.wsc0{word-spacing:2.160000pt;}
.ws8a{word-spacing:2.208000pt;}
.ws29{word-spacing:2.256000pt;}
.ws63{word-spacing:2.352000pt;}
.wsb9{word-spacing:2.400000pt;}
.wsbf{word-spacing:2.448000pt;}
.ws8d{word-spacing:2.496000pt;}
.wsb0{word-spacing:2.544000pt;}
.ws90{word-spacing:2.592000pt;}
.ws4c{word-spacing:2.640000pt;}
.ws15{word-spacing:2.736000pt;}
.ws28{word-spacing:2.784000pt;}
.ws4e{word-spacing:2.832000pt;}
.wsc2{word-spacing:2.880000pt;}
.ws30{word-spacing:2.928000pt;}
.wsb5{word-spacing:2.976000pt;}
.ws88{word-spacing:3.024000pt;}
.ws2f{word-spacing:3.072000pt;}
.wsc5{word-spacing:3.120000pt;}
.ws81{word-spacing:3.168000pt;}
.ws27{word-spacing:3.216000pt;}
.wsc8{word-spacing:3.264000pt;}
.wsc7{word-spacing:3.312000pt;}
.ws1d{word-spacing:3.360000pt;}
.ws1b{word-spacing:3.504000pt;}
.ws48{word-spacing:3.552000pt;}
.ws64{word-spacing:3.600000pt;}
.ws7{word-spacing:3.648000pt;}
.wsb{word-spacing:3.696000pt;}
.ws9c{word-spacing:3.744000pt;}
.wsa4{word-spacing:3.792000pt;}
.ws59{word-spacing:3.840000pt;}
.ws22{word-spacing:3.888000pt;}
.ws6d{word-spacing:3.936000pt;}
.ws1f{word-spacing:3.984000pt;}
.ws9b{word-spacing:4.080000pt;}
.wsb6{word-spacing:4.128000pt;}
.ws3e{word-spacing:4.176000pt;}
.ws98{word-spacing:4.272000pt;}
.ws8f{word-spacing:4.368000pt;}
.ws7d{word-spacing:4.464000pt;}
.ws3b{word-spacing:4.512000pt;}
.ws67{word-spacing:4.560000pt;}
.ws9d{word-spacing:4.656000pt;}
.ws2b{word-spacing:4.704000pt;}
.ws51{word-spacing:4.800000pt;}
.ws1e{word-spacing:4.848000pt;}
.wsc6{word-spacing:4.896000pt;}
.ws6c{word-spacing:4.944000pt;}
.wsc9{word-spacing:4.992000pt;}
.ws5f{word-spacing:5.088000pt;}
.ws4d{word-spacing:5.136000pt;}
.ws86{word-spacing:5.184000pt;}
.ws5e{word-spacing:5.232000pt;}
.wsbb{word-spacing:5.328000pt;}
.ws71{word-spacing:5.424000pt;}
.ws84{word-spacing:5.472000pt;}
.ws66{word-spacing:5.520000pt;}
.ws8c{word-spacing:5.568000pt;}
.ws33{word-spacing:5.616000pt;}
.ws19{word-spacing:5.664000pt;}
.wsbe{word-spacing:5.712000pt;}
.ws68{word-spacing:5.760000pt;}
.wse{word-spacing:5.856000pt;}
.ws45{word-spacing:5.904000pt;}
.wsbc{word-spacing:5.952000pt;}
.ws7f{word-spacing:6.000000pt;}
.wse6{word-spacing:6.096000pt;}
.wsaa{word-spacing:6.192000pt;}
.ws35{word-spacing:6.288000pt;}
.ws31{word-spacing:6.336000pt;}
.ws65{word-spacing:6.384000pt;}
.ws6f{word-spacing:6.432000pt;}
.ws7c{word-spacing:6.480000pt;}
.ws55{word-spacing:6.528000pt;}
.wscd{word-spacing:6.576000pt;}
.wsca{word-spacing:6.624000pt;}
.ws56{word-spacing:6.672000pt;}
.ws6e{word-spacing:6.768000pt;}
.ws20{word-spacing:6.816000pt;}
.ws87{word-spacing:7.056000pt;}
.wsb3{word-spacing:7.104000pt;}
.wsb4{word-spacing:7.200000pt;}
.ws82{word-spacing:7.248000pt;}
.ws4f{word-spacing:7.296000pt;}
.ws21{word-spacing:7.440000pt;}
.wse3{word-spacing:7.488000pt;}
.wsbd{word-spacing:7.632000pt;}
.wsac{word-spacing:7.920000pt;}
.wsa{word-spacing:8.112000pt;}
.wsb7{word-spacing:8.160000pt;}
.ws77{word-spacing:8.304000pt;}
.ws80{word-spacing:8.496000pt;}
.ws94{word-spacing:8.544000pt;}
.wsa6{word-spacing:8.784000pt;}
.wsdb{word-spacing:8.832000pt;}
.ws97{word-spacing:8.928000pt;}
.ws4a{word-spacing:8.976000pt;}
.wsce{word-spacing:9.360000pt;}
.ws79{word-spacing:9.456000pt;}
.wsb2{word-spacing:9.648000pt;}
.wsda{word-spacing:9.696000pt;}
.ws75{word-spacing:9.744000pt;}
.wse1{word-spacing:9.792000pt;}
.wsa7{word-spacing:10.128000pt;}
.ws23{word-spacing:10.320000pt;}
.ws7b{word-spacing:10.416000pt;}
.wsdc{word-spacing:10.512000pt;}
.ws7e{word-spacing:10.608000pt;}
.ws78{word-spacing:10.896000pt;}
.wsba{word-spacing:10.992000pt;}
.wse4{word-spacing:11.232000pt;}
.ws83{word-spacing:11.808000pt;}
.wsd6{word-spacing:12.288000pt;}
.ws85{word-spacing:12.336000pt;}
.ws74{word-spacing:12.432000pt;}
.ws4b{word-spacing:12.528000pt;}
.wsd0{word-spacing:12.816000pt;}
.wsd3{word-spacing:13.152000pt;}
.wsd7{word-spacing:13.920000pt;}
.ws76{word-spacing:13.968000pt;}
.wsaf{word-spacing:14.256000pt;}
.ws93{word-spacing:14.784000pt;}
.wsab{word-spacing:16.176000pt;}
.wsa8{word-spacing:17.280000pt;}
.wscf{word-spacing:18.000000pt;}
.wsad{word-spacing:18.624000pt;}
.wsd8{word-spacing:18.816000pt;}
.wsdf{word-spacing:20.256000pt;}
.wse0{word-spacing:20.400000pt;}
.wsd5{word-spacing:20.928000pt;}
.ws73{word-spacing:22.128000pt;}
.wsd2{word-spacing:27.264000pt;}
.wsa9{word-spacing:29.520000pt;}
.wsae{word-spacing:29.664000pt;}
.wsd1{word-spacing:29.904000pt;}
.wsdd{word-spacing:39.216000pt;}
._f{margin-left:-23.952000pt;}
._e{margin-left:-22.128000pt;}
._14{margin-left:-18.720000pt;}
._9{margin-left:-14.673600pt;}
._11{margin-left:-11.280000pt;}
._10{margin-left:-9.456000pt;}
._4{margin-left:-5.916800pt;}
._1{margin-left:-4.915200pt;}
._c{margin-left:-3.840000pt;}
._5{margin-left:-2.922667pt;}
._0{margin-left:-1.651200pt;}
._3{width:1.450667pt;}
._6{width:2.756267pt;}
._2{width:4.236800pt;}
._7{width:5.214400pt;}
._8{width:6.470400pt;}
._d{width:7.723200pt;}
._12{width:9.508800pt;}
._b{width:10.737600pt;}
._13{width:14.097600pt;}
._a{width:16.554133pt;}
._19{width:20.579733pt;}
._17{width:22.912533pt;}
._16{width:29.164267pt;}
._15{width:30.628800pt;}
._18{width:39.660267pt;}
.fs7{font-size:27.984000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:39.200000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:37.552800pt;}
.y1{bottom:37.553333pt;}
.y17f{bottom:90.709600pt;}
.y1a8{bottom:91.207333pt;}
.y5c{bottom:91.909733pt;}
.y115{bottom:92.309600pt;}
.y12{bottom:92.717333pt;}
.y8d{bottom:93.164400pt;}
.y15c{bottom:93.427733pt;}
.y194{bottom:94.094400pt;}
.yeb{bottom:94.104933pt;}
.y135{bottom:94.524933pt;}
.ybd{bottom:97.632533pt;}
.y11{bottom:105.517333pt;}
.y17e{bottom:106.576400pt;}
.y1a7{bottom:107.207333pt;}
.y5b{bottom:107.909733pt;}
.y114{bottom:108.309600pt;}
.y8c{bottom:109.164400pt;}
.y15b{bottom:109.427733pt;}
.y193{bottom:109.961067pt;}
.yea{bottom:110.104933pt;}
.y134{bottom:110.524933pt;}
.ybc{bottom:113.632533pt;}
.y10{bottom:118.317333pt;}
.y17d{bottom:122.442933pt;}
.y1a6{bottom:123.207333pt;}
.y113{bottom:124.176400pt;}
.y8b{bottom:125.164400pt;}
.y192{bottom:125.827733pt;}
.ye9{bottom:126.104933pt;}
.y133{bottom:126.524933pt;}
.yf{bottom:131.117333pt;}
.y5a{bottom:131.468667pt;}
.y15a{bottom:136.766400pt;}
.y17c{bottom:138.309600pt;}
.y1a5{bottom:139.207333pt;}
.y112{bottom:140.042933pt;}
.ybb{bottom:140.971067pt;}
.y8a{bottom:141.164400pt;}
.y191{bottom:141.694400pt;}
.ye8{bottom:142.104933pt;}
.y132{bottom:142.524933pt;}
.y59{bottom:147.468667pt;}
.y159{bottom:152.766400pt;}
.y17b{bottom:154.176400pt;}
.y1a4{bottom:155.207333pt;}
.y111{bottom:155.909733pt;}
.y89{bottom:157.164400pt;}
.y190{bottom:157.561067pt;}
.y58{bottom:163.468667pt;}
.ye7{bottom:165.664000pt;}
.y131{bottom:169.863467pt;}
.y17a{bottom:170.042933pt;}
.y110{bottom:171.776267pt;}
.y88{bottom:173.164400pt;}
.yba{bottom:175.868800pt;}
.y1a3{bottom:178.766400pt;}
.y57{bottom:179.468667pt;}
.y18f{bottom:180.986800pt;}
.ye6{bottom:181.664000pt;}
.y179{bottom:185.909733pt;}
.y10f{bottom:187.642933pt;}
.y158{bottom:187.664000pt;}
.y87{bottom:189.164400pt;}
.yb9{bottom:191.868800pt;}
.y1a2{bottom:194.766400pt;}
.y56{bottom:195.468667pt;}
.y18e{bottom:196.853467pt;}
.y130{bottom:197.202133pt;}
.ye5{bottom:197.664000pt;}
.y178{bottom:201.776267pt;}
.y10e{bottom:203.509733pt;}
.y157{bottom:203.664000pt;}
.y86{bottom:205.164400pt;}
.yb8{bottom:207.868800pt;}
.y1a1{bottom:210.766400pt;}
.y55{bottom:211.468667pt;}
.y18d{bottom:212.720133pt;}
.y12f{bottom:213.202133pt;}
.ye4{bottom:213.664000pt;}
.y177{bottom:217.642933pt;}
.y156{bottom:219.530667pt;}
.y85{bottom:221.164400pt;}
.yb7{bottom:223.868800pt;}
.y1a0{bottom:226.766400pt;}
.y10d{bottom:226.935333pt;}
.y54{bottom:227.468667pt;}
.y18c{bottom:228.586800pt;}
.ye3{bottom:229.664000pt;}
.y176{bottom:233.509733pt;}
.y155{bottom:235.397333pt;}
.y84{bottom:237.164400pt;}
.yb6{bottom:239.868800pt;}
.y19f{bottom:242.766400pt;}
.y10c{bottom:242.802000pt;}
.y53{bottom:243.468667pt;}
.y18b{bottom:244.453467pt;}
.ye2{bottom:245.664000pt;}
.y175{bottom:249.376267pt;}
.y154{bottom:251.264000pt;}
.y12e{bottom:251.879200pt;}
.y83{bottom:253.164400pt;}
.yb5{bottom:255.868800pt;}
.y10b{bottom:258.668667pt;}
.y19e{bottom:258.766400pt;}
.y18a{bottom:260.320133pt;}
.ye1{bottom:261.664000pt;}
.y174{bottom:265.243067pt;}
.y52{bottom:267.027733pt;}
.y153{bottom:267.130667pt;}
.y12d{bottom:267.879200pt;}
.y82{bottom:269.164400pt;}
.yb4{bottom:271.868667pt;}
.y10a{bottom:274.535333pt;}
.y19d{bottom:274.766400pt;}
.y189{bottom:276.186800pt;}
.y152{bottom:282.997333pt;}
.y51{bottom:283.027733pt;}
.y12c{bottom:283.745867pt;}
.y81{bottom:285.164400pt;}
.ye0{bottom:285.223067pt;}
.yb3{bottom:287.868667pt;}
.y173{bottom:288.668667pt;}
.y109{bottom:290.402000pt;}
.y19c{bottom:290.766400pt;}
.y188{bottom:292.053467pt;}
.y151{bottom:298.864000pt;}
.y50{bottom:299.027733pt;}
.y12b{bottom:299.612533pt;}
.y80{bottom:301.164400pt;}
.ydf{bottom:301.223067pt;}
.yb2{bottom:303.868667pt;}
.y172{bottom:304.535333pt;}
.y19b{bottom:306.766400pt;}
.y1e2{bottom:307.276800pt;}
.y108{bottom:313.827733pt;}
.y1c4{bottom:314.658267pt;}
.y150{bottom:314.730667pt;}
.y4f{bottom:315.027733pt;}
.y12a{bottom:315.479200pt;}
.y7f{bottom:317.164400pt;}
.yde{bottom:317.223067pt;}
.yb1{bottom:319.868667pt;}
.y171{bottom:320.402000pt;}
.y19a{bottom:322.766400pt;}
.y1e1{bottom:323.143467pt;}
.y107{bottom:329.694400pt;}
.y14f{bottom:330.597333pt;}
.y1c3{bottom:330.658267pt;}
.y4e{bottom:331.027733pt;}
.y187{bottom:331.345867pt;}
.y7e{bottom:333.164400pt;}
.ydd{bottom:333.223067pt;}
.yb0{bottom:335.868667pt;}
.y170{bottom:336.268667pt;}
.y199{bottom:338.766400pt;}
.y129{bottom:338.904933pt;}
.y106{bottom:345.561067pt;}
.y14e{bottom:346.464000pt;}
.y1e0{bottom:346.569067pt;}
.y4d{bottom:347.027733pt;}
.y186{bottom:347.212533pt;}
.y28{bottom:348.776000pt;}
.y7d{bottom:349.164400pt;}
.ydc{bottom:349.223067pt;}
.yaf{bottom:351.868667pt;}
.y16f{bottom:352.135333pt;}
.y1c2{bottom:354.217200pt;}
.y198{bottom:354.766400pt;}
.y128{bottom:354.771600pt;}
.y105{bottom:361.427733pt;}
.y27{bottom:361.574667pt;}
.y1df{bottom:362.435867pt;}
.y4c{bottom:363.027733pt;}
.y185{bottom:363.079200pt;}
.ydb{bottom:365.223067pt;}
.y16e{bottom:368.002000pt;}
.y14d{bottom:369.889733pt;}
.y1c1{bottom:370.217200pt;}
.ye{bottom:370.628000pt;}
.y127{bottom:370.638267pt;}
.y7c{bottom:372.723467pt;}
.y26{bottom:374.376000pt;}
.yae{bottom:375.427733pt;}
.y1de{bottom:378.302533pt;}
.y184{bottom:378.945867pt;}
.y4b{bottom:379.027733pt;}
.yda{bottom:381.223067pt;}
.y197{bottom:382.104933pt;}
.yd{bottom:383.428000pt;}
.y104{bottom:384.853467pt;}
.y14c{bottom:385.756400pt;}
.y1c0{bottom:386.217200pt;}
.y126{bottom:386.504933pt;}
.y25{bottom:387.176000pt;}
.y7b{bottom:388.723467pt;}
.yad{bottom:391.427733pt;}
.y1dd{bottom:394.169200pt;}
.y16d{bottom:395.207333pt;}
.yc{bottom:396.228000pt;}
.yd9{bottom:397.223067pt;}
.y196{bottom:398.104933pt;}
.y24{bottom:399.976000pt;}
.y103{bottom:400.720133pt;}
.y14b{bottom:401.623067pt;}
.y1bf{bottom:402.217200pt;}
.y125{bottom:402.371600pt;}
.y7a{bottom:404.723467pt;}
.y4a{bottom:406.366267pt;}
.yac{bottom:407.427733pt;}
.yb{bottom:409.028000pt;}
.y1dc{bottom:410.035867pt;}
.y16c{bottom:411.207333pt;}
.y23{bottom:412.776000pt;}
.yd8{bottom:413.223067pt;}
.y102{bottom:416.586800pt;}
.y14a{bottom:417.489733pt;}
.y1be{bottom:418.217200pt;}
.y124{bottom:418.238267pt;}
.y79{bottom:420.723467pt;}
.y49{bottom:422.366267pt;}
.y22{bottom:425.574667pt;}
.yd7{bottom:429.223067pt;}
.yab{bottom:430.986800pt;}
.y101{bottom:432.453467pt;}
.y149{bottom:433.356400pt;}
.y1db{bottom:433.461600pt;}
.y123{bottom:434.104933pt;}
.y78{bottom:436.723467pt;}
.y195{bottom:436.782133pt;}
.y48{bottom:438.366267pt;}
.y1bd{bottom:441.776267pt;}
.y16b{bottom:446.104933pt;}
.yaa{bottom:446.986800pt;}
.y148{bottom:449.223067pt;}
.y1da{bottom:449.328267pt;}
.y122{bottom:449.971600pt;}
.y77{bottom:452.723467pt;}
.yd6{bottom:452.782133pt;}
.y4{bottom:454.460000pt;}
.y100{bottom:455.879200pt;}
.y1bc{bottom:457.776267pt;}
.y16a{bottom:462.104933pt;}
.ya9{bottom:462.986800pt;}
.y147{bottom:465.089733pt;}
.y1d9{bottom:465.194800pt;}
.y183{bottom:465.838267pt;}
.yd5{bottom:468.782133pt;}
.yff{bottom:471.745867pt;}
.y47{bottom:473.264000pt;}
.y121{bottom:473.397333pt;}
.y1bb{bottom:473.776267pt;}
.y76{bottom:476.282533pt;}
.y169{bottom:478.104933pt;}
.ya8{bottom:478.986800pt;}
.y146{bottom:480.956400pt;}
.y182{bottom:481.704933pt;}
.yd4{bottom:484.782133pt;}
.yfe{bottom:487.612533pt;}
.y1d8{bottom:488.620667pt;}
.y46{bottom:489.264000pt;}
.y1ba{bottom:489.776267pt;}
.y21{bottom:489.981333pt;}
.y75{bottom:492.282533pt;}
.y168{bottom:494.104933pt;}
.y145{bottom:496.823067pt;}
.y181{bottom:497.571600pt;}
.yd3{bottom:500.782133pt;}
.ya7{bottom:502.545867pt;}
.yfd{bottom:503.479200pt;}
.y1d7{bottom:504.487200pt;}
.y45{bottom:505.130667pt;}
.y74{bottom:508.282533pt;}
.y167{bottom:510.104933pt;}
.y144{bottom:512.689733pt;}
.y1b9{bottom:513.335333pt;}
.y180{bottom:513.438267pt;}
.yd2{bottom:516.782133pt;}
.ya6{bottom:518.545867pt;}
.yfc{bottom:519.345867pt;}
.y1d6{bottom:520.353867pt;}
.y44{bottom:520.997333pt;}
.y73{bottom:524.282533pt;}
.y166{bottom:526.104933pt;}
.y143{bottom:528.556400pt;}
.y1b8{bottom:529.335333pt;}
.ya{bottom:532.661333pt;}
.yd1{bottom:532.782133pt;}
.ya5{bottom:534.545867pt;}
.yfb{bottom:535.212533pt;}
.y1d5{bottom:536.220533pt;}
.y43{bottom:536.864000pt;}
.y72{bottom:540.282533pt;}
.y165{bottom:542.104933pt;}
.y142{bottom:544.423067pt;}
.y1b7{bottom:545.335333pt;}
.y9{bottom:545.461333pt;}
.y20{bottom:545.585333pt;}
.yd0{bottom:548.782133pt;}
.ya4{bottom:550.545867pt;}
.y1d4{bottom:552.087333pt;}
.y120{bottom:552.730667pt;}
.y71{bottom:556.282533pt;}
.y164{bottom:558.104933pt;}
.y8{bottom:558.261333pt;}
.y1f{bottom:558.385333pt;}
.yfa{bottom:558.638267pt;}
.y42{bottom:560.289733pt;}
.ycf{bottom:564.782133pt;}
.ya3{bottom:566.545867pt;}
.y11f{bottom:568.597333pt;}
.y1b6{bottom:568.894400pt;}
.y7{bottom:571.061333pt;}
.y1e{bottom:571.185333pt;}
.yf9{bottom:574.504933pt;}
.y1d3{bottom:575.512933pt;}
.y41{bottom:576.156400pt;}
.yce{bottom:580.782133pt;}
.y163{bottom:581.664000pt;}
.y70{bottom:583.621200pt;}
.y1d{bottom:583.985333pt;}
.y11e{bottom:584.464000pt;}
.y1b5{bottom:584.894400pt;}
.ya2{bottom:590.104933pt;}
.y1d2{bottom:591.379600pt;}
.y40{bottom:592.023067pt;}
.ycd{bottom:596.782133pt;}
.y1c{bottom:596.785333pt;}
.y162{bottom:597.664000pt;}
.yf8{bottom:597.930667pt;}
.y141{bottom:599.582133pt;}
.y11d{bottom:600.330667pt;}
.y1b4{bottom:600.894400pt;}
.ya1{bottom:606.104933pt;}
.y6{bottom:607.205333pt;}
.y3f{bottom:607.889733pt;}
.y1b{bottom:609.585333pt;}
.y6f{bottom:610.959733pt;}
.ycc{bottom:612.782000pt;}
.y161{bottom:613.664000pt;}
.yf7{bottom:613.797333pt;}
.y1d1{bottom:614.805333pt;}
.y140{bottom:615.448667pt;}
.y11c{bottom:616.197333pt;}
.y5{bottom:620.005333pt;}
.ya0{bottom:622.104933pt;}
.y1a{bottom:622.385333pt;}
.y3e{bottom:623.756400pt;}
.y1b3{bottom:624.453467pt;}
.ycb{bottom:628.782000pt;}
.y160{bottom:629.664000pt;}
.y1d0{bottom:630.672000pt;}
.y13f{bottom:631.315467pt;}
.yf6{bottom:637.223067pt;}
.y3d{bottom:639.623067pt;}
.y1b2{bottom:640.453467pt;}
.yca{bottom:644.782000pt;}
.y9f{bottom:645.664000pt;}
.y1cf{bottom:646.538667pt;}
.y13e{bottom:647.182133pt;}
.y6e{bottom:649.636933pt;}
.y3{bottom:650.740000pt;}
.yf5{bottom:653.223067pt;}
.y3c{bottom:655.489733pt;}
.y1b1{bottom:656.453467pt;}
.yc9{bottom:660.782000pt;}
.y9e{bottom:661.664000pt;}
.y13d{bottom:663.048800pt;}
.y6d{bottom:665.636933pt;}
.yf4{bottom:669.223067pt;}
.y1ce{bottom:669.964400pt;}
.y3b{bottom:671.356400pt;}
.yc8{bottom:676.782000pt;}
.y9d{bottom:677.664000pt;}
.y13c{bottom:678.915467pt;}
.y1b0{bottom:680.012533pt;}
.y6c{bottom:681.636933pt;}
.yf3{bottom:685.223067pt;}
.y3a{bottom:687.223067pt;}
.yc7{bottom:692.782000pt;}
.y1cd{bottom:693.390133pt;}
.y13b{bottom:694.782000pt;}
.y1af{bottom:696.012533pt;}
.y6b{bottom:697.636933pt;}
.y9c{bottom:701.223067pt;}
.y39{bottom:703.089733pt;}
.yf2{bottom:708.782000pt;}
.y1cc{bottom:709.256800pt;}
.y13a{bottom:710.648800pt;}
.y19{bottom:711.950667pt;}
.y6a{bottom:713.636933pt;}
.yc6{bottom:716.341200pt;}
.y9b{bottom:717.223067pt;}
.y38{bottom:718.956400pt;}
.y1ae{bottom:719.571600pt;}
.yf1{bottom:724.782000pt;}
.y1cb{bottom:725.123467pt;}
.y11b{bottom:726.515467pt;}
.y69{bottom:729.636933pt;}
.yc5{bottom:732.341200pt;}
.y9a{bottom:733.223067pt;}
.y37{bottom:734.823067pt;}
.y1ad{bottom:735.571600pt;}
.yf0{bottom:740.782000pt;}
.y1ca{bottom:740.990133pt;}
.y18{bottom:741.468000pt;}
.y11a{bottom:742.382133pt;}
.y68{bottom:745.636933pt;}
.yc4{bottom:748.341200pt;}
.y99{bottom:749.223067pt;}
.y36{bottom:750.689733pt;}
.yef{bottom:756.782000pt;}
.y1c9{bottom:756.856800pt;}
.y119{bottom:758.248800pt;}
.y1ac{bottom:758.997333pt;}
.y67{bottom:761.636933pt;}
.yc3{bottom:764.341200pt;}
.y98{bottom:765.223067pt;}
.y35{bottom:766.556400pt;}
.yee{bottom:772.782000pt;}
.y118{bottom:774.115333pt;}
.y1ab{bottom:774.863867pt;}
.y17{bottom:776.586667pt;}
.y66{bottom:777.636933pt;}
.yc2{bottom:780.341200pt;}
.y97{bottom:781.223067pt;}
.y34{bottom:782.423067pt;}
.y1c8{bottom:784.062133pt;}
.yed{bottom:788.782000pt;}
.y117{bottom:789.982133pt;}
.yc1{bottom:796.341200pt;}
.y1aa{bottom:798.289733pt;}
.y16{bottom:800.586667pt;}
.y65{bottom:801.196000pt;}
.y96{bottom:804.782000pt;}
.y33{bottom:805.848800pt;}
.yc0{bottom:812.341200pt;}
.y1a9{bottom:814.156400pt;}
.y64{bottom:817.196000pt;}
.y1c7{bottom:818.959733pt;}
.y95{bottom:820.782000pt;}
.y32{bottom:821.715467pt;}
.ybf{bottom:828.341200pt;}
.y139{bottom:829.274533pt;}
.y2{bottom:832.289333pt;}
.y63{bottom:833.196000pt;}
.y1c6{bottom:834.959733pt;}
.y94{bottom:836.782000pt;}
.y31{bottom:837.582133pt;}
.ybe{bottom:844.341200pt;}
.y138{bottom:845.141067pt;}
.y62{bottom:849.196000pt;}
.yec{bottom:852.782000pt;}
.y30{bottom:853.448667pt;}
.y93{bottom:860.341200pt;}
.y137{bottom:861.007867pt;}
.y1c5{bottom:862.298267pt;}
.y61{bottom:865.196000pt;}
.y15f{bottom:868.782000pt;}
.y2f{bottom:869.315467pt;}
.y92{bottom:876.341200pt;}
.y136{bottom:876.874533pt;}
.y60{bottom:881.196000pt;}
.y15{bottom:883.326667pt;}
.y15e{bottom:884.782000pt;}
.y2e{bottom:885.182133pt;}
.y91{bottom:892.341200pt;}
.y116{bottom:892.741067pt;}
.y5f{bottom:897.196000pt;}
.y15d{bottom:900.782000pt;}
.y90{bottom:908.341200pt;}
.y2d{bottom:908.607867pt;}
.y14{bottom:910.241333pt;}
.y5e{bottom:913.196000pt;}
.y8f{bottom:924.341200pt;}
.y2c{bottom:924.474400pt;}
.y2b{bottom:940.341200pt;}
.y5d{bottom:940.534533pt;}
.y13{bottom:946.032000pt;}
.y2a{bottom:981.993600pt;}
.y8e{bottom:985.773200pt;}
.h9{height:23.584000pt;}
.h5{height:28.895833pt;}
.he{height:28.968800pt;}
.h7{height:31.530667pt;}
.hf{height:32.859375pt;}
.h10{height:33.328125pt;}
.h2{height:33.450667pt;}
.h3{height:37.437500pt;}
.h6{height:37.895833pt;}
.hd{height:40.161458pt;}
.hc{height:42.117188pt;}
.h4{height:42.632812pt;}
.ha{height:51.114583pt;}
.hb{height:52.106771pt;}
.h8{height:76.000000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:56.692933pt;}
.xe{left:61.164533pt;}
.x13{left:68.031467pt;}
.x5{left:79.370667pt;}
.x2{left:80.494667pt;}
.x1c{left:84.880267pt;}
.x3{left:86.929333pt;}
.x1a{left:90.708667pt;}
.x1e{left:94.488267pt;}
.x22{left:102.047200pt;}
.x9{left:106.457333pt;}
.x1d{left:124.724400pt;}
.x15{left:144.871467pt;}
.x1f{left:146.775733pt;}
.x12{left:182.204533pt;}
.x20{left:205.107333pt;}
.x21{left:208.233333pt;}
.xd{left:244.409333pt;}
.x16{left:250.894933pt;}
.x4{left:254.488000pt;}
.xf{left:258.602800pt;}
.x8{left:271.041333pt;}
.x7{left:272.152000pt;}
.x6{left:302.286667pt;}
.xc{left:307.296000pt;}
.xb{left:332.538667pt;}
.xa{left:355.340000pt;}
.x10{left:396.850400pt;}
.x11{left:408.188933pt;}
.x1b{left:411.968400pt;}
.x17{left:419.813600pt;}
.x18{left:431.152267pt;}
.x19{left:442.490800pt;}
.x1{left:710.298667pt;}
}




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