
    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_73544657973ca4fe67279dcb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_5e4bd1d2688b4deb1f197c73.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.968262;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_a7b157aae30623b9d4ce4160.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041992;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_d8551869a1a445bdde4a6196.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_5d043ddfc394cf2809f6a44c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_48968faa25e1f60ed2064cc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_ac12e432ec1e741956ec5de1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976118;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_e0f4e923b7383f278b8911d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136719;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_4fa414a7519f100bd48d777f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_894322430a4d280baa17fd31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738000;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_7dcd50ed86ba1a8da232306d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976600;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_d662f8d942a6422bc4ee31db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770020;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_30c7af1726d97e5c6ca2a00c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.150000px;}
.v1{vertical-align:21.978000px;}
.ls10{letter-spacing:-1.776000px;}
.lsc{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-1.020000px;}
.ls1c{letter-spacing:-0.810000px;}
.ls16{letter-spacing:-0.780000px;}
.ls1d{letter-spacing:-0.756000px;}
.ls4{letter-spacing:-0.691200px;}
.lsd{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.486000px;}
.ls6{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.408000px;}
.ls11{letter-spacing:-0.384000px;}
.ls1e{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.240000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls13{letter-spacing:104.064000px;}
.ls12{letter-spacing:110.784000px;}
.ls14{letter-spacing:112.080000px;}
.ls15{letter-spacing:256.896000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-17.928000px;}
.wsc0{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.ws99{word-spacing:-14.700000px;}
.ws56{word-spacing:-13.446000px;}
.wsc1{word-spacing:-13.392000px;}
.ws9f{word-spacing:-13.230000px;}
.wse6{word-spacing:-13.176000px;}
.wsc2{word-spacing:-13.122000px;}
.wsf9{word-spacing:-13.068000px;}
.wsc3{word-spacing:-12.960000px;}
.wse7{word-spacing:-12.906000px;}
.wsf8{word-spacing:-12.636000px;}
.wsf7{word-spacing:-12.582000px;}
.ws5{word-spacing:-12.366000px;}
.ws6{word-spacing:-12.150000px;}
.ws84{word-spacing:-11.952000px;}
.ws92{word-spacing:-11.568000px;}
.ws1{word-spacing:-10.896000px;}
.ws2{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.ws57{word-spacing:-8.675040px;}
.ws10e{word-spacing:-7.807536px;}
.ws10d{word-spacing:-4.698000px;}
.wsa9{word-spacing:-3.900000px;}
.ws40{word-spacing:-3.360000px;}
.wsce{word-spacing:-3.186000px;}
.ws67{word-spacing:-3.060000px;}
.ws32{word-spacing:-2.880000px;}
.ws7a{word-spacing:-2.820000px;}
.ws79{word-spacing:-2.760000px;}
.wsb3{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.640000px;}
.ws49{word-spacing:-2.580000px;}
.ws107{word-spacing:-2.538000px;}
.ws111{word-spacing:-2.484000px;}
.wsc8{word-spacing:-2.430000px;}
.ws4f{word-spacing:-2.400000px;}
.ws8f{word-spacing:-2.376000px;}
.ws90{word-spacing:-2.322000px;}
.wsd8{word-spacing:-2.268000px;}
.ws46{word-spacing:-2.220000px;}
.ws7d{word-spacing:-2.160000px;}
.ws116{word-spacing:-2.106000px;}
.ws2d{word-spacing:-2.100000px;}
.ws105{word-spacing:-2.052000px;}
.ws69{word-spacing:-2.040000px;}
.wsf4{word-spacing:-1.890000px;}
.wsad{word-spacing:-1.860000px;}
.ws10{word-spacing:-1.836000px;}
.ws71{word-spacing:-1.800000px;}
.ws102{word-spacing:-1.782000px;}
.ws43{word-spacing:-1.740000px;}
.wsf5{word-spacing:-1.728000px;}
.ws30{word-spacing:-1.620000px;}
.wsa8{word-spacing:-1.566000px;}
.ws7b{word-spacing:-1.560000px;}
.wsb6{word-spacing:-1.500000px;}
.wsf3{word-spacing:-1.458000px;}
.ws2c{word-spacing:-1.440000px;}
.ws95{word-spacing:-1.380000px;}
.ws33{word-spacing:-1.320000px;}
.wsf{word-spacing:-1.296000px;}
.wsbd{word-spacing:-1.260000px;}
.ws53{word-spacing:-1.200000px;}
.wsd5{word-spacing:-1.188000px;}
.ws74{word-spacing:-1.140000px;}
.ws6b{word-spacing:-1.026000px;}
.ws5f{word-spacing:-0.960000px;}
.ws91{word-spacing:-0.912000px;}
.ws8a{word-spacing:-0.900000px;}
.ws77{word-spacing:-0.780000px;}
.wsec{word-spacing:-0.756000px;}
.ws6d{word-spacing:-0.660000px;}
.ws34{word-spacing:-0.600000px;}
.ws10c{word-spacing:-0.594000px;}
.ws6a{word-spacing:-0.540000px;}
.wsb2{word-spacing:-0.420000px;}
.wsd7{word-spacing:-0.378000px;}
.ws13{word-spacing:-0.324000px;}
.ws55{word-spacing:-0.300000px;}
.wsca{word-spacing:-0.270000px;}
.ws60{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.216000px;}
.wsaa{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.162000px;}
.ws7{word-spacing:-0.155257px;}
.ws3d{word-spacing:-0.120000px;}
.wsc{word-spacing:-0.108000px;}
.ws29{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws54{word-spacing:0.060000px;}
.ws78{word-spacing:0.120000px;}
.ws73{word-spacing:0.180000px;}
.wsf0{word-spacing:0.216000px;}
.ws28{word-spacing:0.240000px;}
.wsea{word-spacing:0.270000px;}
.ws66{word-spacing:0.300000px;}
.wsb0{word-spacing:0.360000px;}
.wsc9{word-spacing:0.378000px;}
.ws9{word-spacing:0.408000px;}
.ws16{word-spacing:0.420000px;}
.wse5{word-spacing:0.432000px;}
.ws7e{word-spacing:0.480000px;}
.wse{word-spacing:0.486000px;}
.ws3b{word-spacing:0.540000px;}
.wsdb{word-spacing:0.594000px;}
.wsa0{word-spacing:0.600000px;}
.ws110{word-spacing:0.648000px;}
.ws26{word-spacing:0.660000px;}
.wsb{word-spacing:0.691200px;}
.wsa4{word-spacing:0.720000px;}
.wsdf{word-spacing:0.756000px;}
.ws72{word-spacing:0.780000px;}
.wsc5{word-spacing:0.810000px;}
.ws7c{word-spacing:0.840000px;}
.ws14{word-spacing:0.864000px;}
.wsd1{word-spacing:0.918000px;}
.ws80{word-spacing:0.960000px;}
.ws101{word-spacing:0.972000px;}
.ws41{word-spacing:1.020000px;}
.ws31{word-spacing:1.080000px;}
.wsd2{word-spacing:1.134000px;}
.ws6f{word-spacing:1.140000px;}
.ws82{word-spacing:1.200000px;}
.ws39{word-spacing:1.260000px;}
.ws9b{word-spacing:1.296000px;}
.ws5c{word-spacing:1.320000px;}
.ws9a{word-spacing:1.350000px;}
.ws68{word-spacing:1.380000px;}
.ws93{word-spacing:1.440000px;}
.ws42{word-spacing:1.500000px;}
.ws103{word-spacing:1.566000px;}
.ws65{word-spacing:1.620000px;}
.ws118{word-spacing:1.674000px;}
.ws44{word-spacing:1.680000px;}
.ws9c{word-spacing:1.740000px;}
.wsd{word-spacing:1.782000px;}
.wscb{word-spacing:1.836000px;}
.wsb4{word-spacing:1.860000px;}
.wse0{word-spacing:1.890000px;}
.wse3{word-spacing:1.944000px;}
.wsac{word-spacing:1.980000px;}
.wsfc{word-spacing:1.998000px;}
.ws5d{word-spacing:2.040000px;}
.wsff{word-spacing:2.052000px;}
.ws3f{word-spacing:2.100000px;}
.ws81{word-spacing:2.160000px;}
.ws100{word-spacing:2.214000px;}
.wsbc{word-spacing:2.280000px;}
.wseb{word-spacing:2.322000px;}
.ws4b{word-spacing:2.340000px;}
.ws109{word-spacing:2.376000px;}
.ws19{word-spacing:2.400000px;}
.wse8{word-spacing:2.430000px;}
.ws6c{word-spacing:2.520000px;}
.wsbe{word-spacing:2.580000px;}
.ws6e{word-spacing:2.640000px;}
.ws4e{word-spacing:2.760000px;}
.ws4c{word-spacing:2.820000px;}
.ws106{word-spacing:2.862000px;}
.wsf1{word-spacing:2.916000px;}
.ws7f{word-spacing:2.940000px;}
.ws94{word-spacing:3.000000px;}
.ws47{word-spacing:3.060000px;}
.wsb9{word-spacing:3.120000px;}
.ws114{word-spacing:3.132000px;}
.ws1c{word-spacing:3.180000px;}
.wsa7{word-spacing:3.186000px;}
.ws2b{word-spacing:3.240000px;}
.ws115{word-spacing:3.294000px;}
.ws8e{word-spacing:3.300000px;}
.wsf6{word-spacing:3.348000px;}
.ws38{word-spacing:3.360000px;}
.ws9d{word-spacing:3.420000px;}
.ws112{word-spacing:3.456000px;}
.ws9e{word-spacing:3.480000px;}
.wsdd{word-spacing:3.510000px;}
.ws48{word-spacing:3.540000px;}
.wsee{word-spacing:3.618000px;}
.ws1d{word-spacing:3.720000px;}
.wsda{word-spacing:3.726000px;}
.ws8b{word-spacing:3.780000px;}
.wsde{word-spacing:3.834000px;}
.ws1f{word-spacing:3.840000px;}
.wse1{word-spacing:3.888000px;}
.ws2f{word-spacing:3.900000px;}
.wsd0{word-spacing:3.942000px;}
.ws70{word-spacing:4.020000px;}
.wsfe{word-spacing:4.050000px;}
.wsa5{word-spacing:4.104000px;}
.wsa6{word-spacing:4.212000px;}
.wsa2{word-spacing:4.260000px;}
.wsfa{word-spacing:4.266000px;}
.wsa1{word-spacing:4.320000px;}
.ws104{word-spacing:4.374000px;}
.wsb1{word-spacing:4.440000px;}
.ws4a{word-spacing:4.560000px;}
.wsfb{word-spacing:4.590000px;}
.ws45{word-spacing:4.620000px;}
.ws15{word-spacing:4.680000px;}
.ws59{word-spacing:4.860000px;}
.ws58{word-spacing:4.914000px;}
.ws1b{word-spacing:4.920000px;}
.wsdc{word-spacing:4.968000px;}
.ws3a{word-spacing:4.980000px;}
.wscf{word-spacing:5.076000px;}
.wsbf{word-spacing:5.100000px;}
.ws37{word-spacing:5.160000px;}
.ws4d{word-spacing:5.220000px;}
.ws35{word-spacing:5.280000px;}
.ws20{word-spacing:5.340000px;}
.ws10b{word-spacing:5.346000px;}
.wsd9{word-spacing:5.454000px;}
.ws5a{word-spacing:5.460000px;}
.ws18{word-spacing:5.520000px;}
.wsed{word-spacing:5.562000px;}
.wsaf{word-spacing:5.580000px;}
.ws25{word-spacing:5.640000px;}
.wsfd{word-spacing:5.724000px;}
.ws52{word-spacing:5.820000px;}
.ws22{word-spacing:5.880000px;}
.wsba{word-spacing:5.940000px;}
.wsb5{word-spacing:6.000000px;}
.ws63{word-spacing:6.240000px;}
.ws1e{word-spacing:6.300000px;}
.ws8c{word-spacing:6.360000px;}
.ws108{word-spacing:6.534000px;}
.ws8d{word-spacing:6.540000px;}
.wsc6{word-spacing:6.588000px;}
.ws3c{word-spacing:6.600000px;}
.wse9{word-spacing:6.642000px;}
.ws2a{word-spacing:6.780000px;}
.ws2e{word-spacing:6.840000px;}
.ws89{word-spacing:6.900000px;}
.ws10f{word-spacing:7.020000px;}
.ws1a{word-spacing:7.200000px;}
.wse2{word-spacing:7.236000px;}
.wsab{word-spacing:7.260000px;}
.ws61{word-spacing:7.380000px;}
.wsd4{word-spacing:7.398000px;}
.wsc4{word-spacing:7.452000px;}
.wscc{word-spacing:7.506000px;}
.ws50{word-spacing:7.560000px;}
.wsae{word-spacing:7.620000px;}
.ws5e{word-spacing:7.680000px;}
.ws24{word-spacing:7.800000px;}
.ws11{word-spacing:7.830000px;}
.ws64{word-spacing:8.100000px;}
.wsa3{word-spacing:8.220000px;}
.ws113{word-spacing:8.262000px;}
.ws23{word-spacing:8.280000px;}
.ws51{word-spacing:8.340000px;}
.ws75{word-spacing:8.400000px;}
.wsd6{word-spacing:8.748000px;}
.wscd{word-spacing:8.802000px;}
.ws76{word-spacing:8.820000px;}
.wsbb{word-spacing:8.880000px;}
.ws27{word-spacing:8.940000px;}
.ws62{word-spacing:9.420000px;}
.wsb7{word-spacing:9.480000px;}
.wsb8{word-spacing:9.600000px;}
.ws5b{word-spacing:9.660000px;}
.ws119{word-spacing:10.530000px;}
.wsd3{word-spacing:10.746000px;}
.ws21{word-spacing:12.240000px;}
.ws10a{word-spacing:12.366000px;}
.wsf2{word-spacing:13.068000px;}
.wsef{word-spacing:13.878000px;}
.wse4{word-spacing:14.634000px;}
.ws117{word-spacing:14.688000px;}
.ws17{word-spacing:15.840000px;}
.ws36{word-spacing:17.580000px;}
.wsc7{word-spacing:19.494000px;}
.ws98{word-spacing:76.656000px;}
.ws88{word-spacing:148.176000px;}
.ws85{word-spacing:161.712000px;}
.ws87{word-spacing:175.152000px;}
.ws97{word-spacing:222.936000px;}
.ws86{word-spacing:238.944000px;}
.ws83{word-spacing:259.584000px;}
.ws96{word-spacing:1214.208000px;}
._9{margin-left:-11.136000px;}
._5{margin-left:-8.571600px;}
._10{margin-left:-6.989400px;}
._8{margin-left:-5.783400px;}
._6{margin-left:-4.322400px;}
._3{margin-left:-2.909400px;}
._1{margin-left:-1.611600px;}
._2{width:1.009800px;}
._0{width:2.448000px;}
._7{width:3.888000px;}
._d{width:5.139600px;}
._a{width:6.222000px;}
._f{width:7.302000px;}
._e{width:8.670000px;}
._1d{width:10.422000px;}
._b{width:12.024000px;}
._c{width:13.449600px;}
._4{width:36.369600px;}
._1c{width:42.492000px;}
._1b{width:43.629600px;}
._12{width:50.208000px;}
._13{width:168.432000px;}
._19{width:200.592000px;}
._1a{width:223.872000px;}
._16{width:237.360000px;}
._15{width:250.848000px;}
._11{width:348.626400px;}
._17{width:763.968000px;}
._14{width:777.408000px;}
._18{width:780.048000px;}
.fc1{color:rgb(151,68,12);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fs9{font-size:155.257200px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.038450px;}
.y1{bottom:68.124750px;}
.y3d{bottom:71.212050px;}
.y3e{bottom:75.040050px;}
.y13d{bottom:112.790850px;}
.y10d{bottom:112.970700px;}
.y7b{bottom:113.078700px;}
.y70{bottom:113.078850px;}
.yd{bottom:117.205050px;}
.y2b{bottom:117.212700px;}
.y9b{bottom:117.265350px;}
.yc{bottom:131.601450px;}
.y13c{bottom:133.796850px;}
.y10c{bottom:133.976700px;}
.y7a{bottom:134.078700px;}
.y6f{bottom:134.078850px;}
.y9a{bottom:138.169350px;}
.y2a{bottom:138.212700px;}
.yb{bottom:145.997850px;}
.y13b{bottom:154.802850px;}
.y10b{bottom:154.982700px;}
.y79{bottom:155.078700px;}
.y6e{bottom:155.078850px;}
.y99{bottom:159.073350px;}
.y29{bottom:159.212700px;}
.ya{bottom:160.397850px;}
.y13a{bottom:175.808850px;}
.y10a{bottom:175.988700px;}
.yc6{bottom:176.078700px;}
.y6d{bottom:176.078850px;}
.y98{bottom:179.977350px;}
.y28{bottom:180.212700px;}
.y7e{bottom:190.441050px;}
.y139{bottom:196.814850px;}
.y109{bottom:196.994700px;}
.yc5{bottom:197.078700px;}
.y6c{bottom:197.078850px;}
.y97{bottom:200.881350px;}
.y27{bottom:201.212700px;}
.y38{bottom:203.451900px;}
.y138{bottom:217.820850px;}
.y108{bottom:218.000700px;}
.yc4{bottom:218.078700px;}
.y6b{bottom:218.078850px;}
.y37{bottom:221.447400px;}
.y96{bottom:221.785350px;}
.y26{bottom:222.212700px;}
.y137{bottom:238.826850px;}
.y107{bottom:239.006700px;}
.y78{bottom:239.078700px;}
.y6a{bottom:239.078850px;}
.y36{bottom:239.442900px;}
.y95{bottom:242.689350px;}
.y25{bottom:243.212700px;}
.yde{bottom:251.732850px;}
.y35{bottom:257.438400px;}
.y136{bottom:259.832850px;}
.y106{bottom:260.012700px;}
.y77{bottom:260.078700px;}
.y69{bottom:260.078850px;}
.y94{bottom:263.593350px;}
.y24{bottom:264.212700px;}
.ydd{bottom:272.636850px;}
.y34{bottom:275.433900px;}
.y135{bottom:280.838850px;}
.y15e{bottom:280.880850px;}
.y105{bottom:281.018700px;}
.yc3{bottom:281.078700px;}
.y68{bottom:281.078850px;}
.y93{bottom:284.497350px;}
.y23{bottom:285.212700px;}
.y33{bottom:293.429400px;}
.ydc{bottom:293.540850px;}
.y134{bottom:301.844850px;}
.y15d{bottom:301.886850px;}
.y104{bottom:302.024700px;}
.ye2{bottom:302.078700px;}
.y67{bottom:302.078850px;}
.y92{bottom:305.401350px;}
.y22{bottom:306.212700px;}
.y32{bottom:311.424900px;}
.ydb{bottom:314.444850px;}
.y76{bottom:315.082800px;}
.y133{bottom:322.850850px;}
.y15c{bottom:322.892850px;}
.y103{bottom:323.030700px;}
.ye1{bottom:323.078700px;}
.y66{bottom:323.078850px;}
.y91{bottom:326.305350px;}
.y21{bottom:327.212700px;}
.y31{bottom:329.420400px;}
.yc2{bottom:332.297700px;}
.yda{bottom:335.348850px;}
.y132{bottom:343.856850px;}
.y15b{bottom:343.898850px;}
.y102{bottom:344.036700px;}
.ye0{bottom:344.078700px;}
.y65{bottom:344.078850px;}
.y90{bottom:347.209350px;}
.y30{bottom:347.415900px;}
.y20{bottom:348.212700px;}
.yc1{bottom:353.201700px;}
.yd9{bottom:356.252850px;}
.y131{bottom:364.862850px;}
.y15a{bottom:364.904850px;}
.y101{bottom:365.042700px;}
.ydf{bottom:365.078700px;}
.y64{bottom:365.078850px;}
.y8f{bottom:368.113350px;}
.y1f{bottom:369.212700px;}
.yc0{bottom:374.105700px;}
.yd8{bottom:377.156850px;}
.y2f{bottom:382.421400px;}
.y130{bottom:385.868850px;}
.y159{bottom:385.910850px;}
.y100{bottom:386.048700px;}
.y63{bottom:386.078850px;}
.y8e{bottom:389.017350px;}
.y1e{bottom:390.212700px;}
.ybf{bottom:395.009700px;}
.yd7{bottom:398.060850px;}
.y2e{bottom:400.421400px;}
.y12f{bottom:406.874850px;}
.y158{bottom:406.916850px;}
.yff{bottom:407.054700px;}
.y62{bottom:407.078850px;}
.y8d{bottom:409.921350px;}
.y1d{bottom:411.212700px;}
.ybe{bottom:415.913700px;}
.y2d{bottom:418.421400px;}
.yd6{bottom:418.964850px;}
.ye6{bottom:423.689850px;}
.y12e{bottom:427.880850px;}
.y157{bottom:427.922850px;}
.yfe{bottom:428.060700px;}
.y61{bottom:428.078850px;}
.y8c{bottom:430.825350px;}
.y2c{bottom:436.421400px;}
.ybd{bottom:436.817700px;}
.yd5{bottom:439.868850px;}
.ye5{bottom:443.494350px;}
.y1c{bottom:444.952350px;}
.y12d{bottom:448.886850px;}
.y156{bottom:448.928850px;}
.yfd{bottom:449.066700px;}
.y60{bottom:449.078850px;}
.y8b{bottom:451.729350px;}
.ybc{bottom:457.721700px;}
.yd4{bottom:460.772850px;}
.ye4{bottom:463.298850px;}
.ye8{bottom:463.441050px;}
.y12c{bottom:469.892850px;}
.y155{bottom:469.934850px;}
.yfc{bottom:470.072700px;}
.y5f{bottom:470.078850px;}
.y8a{bottom:472.633350px;}
.ybb{bottom:478.625700px;}
.yd3{bottom:481.676850px;}
.ye3{bottom:483.103350px;}
.y12b{bottom:490.898850px;}
.y154{bottom:490.940850px;}
.yfb{bottom:491.078700px;}
.y5e{bottom:491.078850px;}
.y89{bottom:493.537350px;}
.yba{bottom:499.529700px;}
.yd2{bottom:502.580850px;}
.y73{bottom:505.441050px;}
.y12a{bottom:511.904850px;}
.y153{bottom:511.946850px;}
.y5d{bottom:512.078850px;}
.y88{bottom:514.441350px;}
.yb9{bottom:520.433700px;}
.y1b{bottom:521.227950px;}
.yd1{bottom:523.484850px;}
.yfa{bottom:526.440900px;}
.y129{bottom:532.910850px;}
.y152{bottom:532.952850px;}
.y5c{bottom:533.078850px;}
.y87{bottom:535.345350px;}
.yb8{bottom:541.337700px;}
.yd0{bottom:544.388850px;}
.y128{bottom:553.916850px;}
.y151{bottom:553.958850px;}
.y5b{bottom:554.078850px;}
.y86{bottom:556.249350px;}
.yb7{bottom:562.241700px;}
.y1a{bottom:562.242900px;}
.ycf{bottom:565.292850px;}
.y127{bottom:574.922850px;}
.y150{bottom:574.964850px;}
.yf9{bottom:575.078700px;}
.y5a{bottom:575.078850px;}
.y85{bottom:577.153350px;}
.y19{bottom:582.047400px;}
.yb6{bottom:583.145700px;}
.yce{bottom:586.196850px;}
.y126{bottom:595.928850px;}
.y14f{bottom:595.970850px;}
.y59{bottom:596.078850px;}
.y84{bottom:598.057350px;}
.yf8{bottom:601.529250px;}
.y18{bottom:601.851900px;}
.yb5{bottom:604.049700px;}
.ycd{bottom:607.100850px;}
.y125{bottom:616.934850px;}
.y14e{bottom:616.976850px;}
.y58{bottom:617.078850px;}
.y83{bottom:618.961350px;}
.y17{bottom:621.656400px;}
.yb4{bottom:624.953700px;}
.ycc{bottom:628.004850px;}
.y124{bottom:637.940850px;}
.y14d{bottom:637.982850px;}
.yf7{bottom:638.072700px;}
.y57{bottom:638.078850px;}
.y82{bottom:640.717350px;}
.y16{bottom:641.460900px;}
.yb3{bottom:645.857700px;}
.ycb{bottom:648.908850px;}
.y7c{bottom:652.441050px;}
.y123{bottom:658.946850px;}
.y14c{bottom:658.988850px;}
.yf6{bottom:659.072700px;}
.y56{bottom:659.078850px;}
.y15{bottom:661.265400px;}
.yb2{bottom:666.761700px;}
.yca{bottom:670.664850px;}
.y81{bottom:671.194650px;}
.y75{bottom:674.196450px;}
.y122{bottom:679.952850px;}
.y14b{bottom:679.994850px;}
.yf5{bottom:680.072700px;}
.y55{bottom:680.078850px;}
.y14{bottom:681.069900px;}
.yb1{bottom:687.665700px;}
.y80{bottom:690.999150px;}
.y74{bottom:694.000950px;}
.y13{bottom:700.874400px;}
.y121{bottom:700.958850px;}
.y14a{bottom:701.000850px;}
.yf4{bottom:701.072700px;}
.y54{bottom:701.078850px;}
.yc9{bottom:701.146650px;}
.yb0{bottom:708.569700px;}
.y12{bottom:720.678900px;}
.y120{bottom:721.964850px;}
.y149{bottom:722.006850px;}
.yf3{bottom:722.078700px;}
.y53{bottom:722.078850px;}
.yaf{bottom:729.473700px;}
.y11{bottom:740.483400px;}
.y11f{bottom:742.970850px;}
.y148{bottom:743.012850px;}
.y52{bottom:743.078850px;}
.yf2{bottom:748.529250px;}
.yae{bottom:750.377700px;}
.y10{bottom:760.287900px;}
.yc8{bottom:763.487850px;}
.y11e{bottom:763.976850px;}
.y147{bottom:764.018850px;}
.y51{bottom:764.078850px;}
.yad{bottom:771.281700px;}
.yc7{bottom:783.292350px;}
.y11d{bottom:784.982850px;}
.y146{bottom:785.024850px;}
.yf1{bottom:785.072700px;}
.y50{bottom:785.078850px;}
.yf{bottom:791.385300px;}
.yac{bottom:792.185700px;}
.y11c{bottom:805.988850px;}
.y145{bottom:806.030850px;}
.yf0{bottom:806.078700px;}
.y4f{bottom:806.078850px;}
.yab{bottom:813.089700px;}
.y11b{bottom:826.994850px;}
.y144{bottom:827.036850px;}
.y4e{bottom:827.078850px;}
.yef{bottom:832.529250px;}
.yaa{bottom:833.993700px;}
.y7d{bottom:836.441850px;}
.y11a{bottom:848.000850px;}
.y143{bottom:848.042850px;}
.y4d{bottom:848.078850px;}
.ya9{bottom:854.897700px;}
.y119{bottom:869.006850px;}
.y142{bottom:869.048850px;}
.yee{bottom:869.078700px;}
.y4c{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ya8{bottom:875.801700px;}
.y8{bottom:888.666900px;}
.y118{bottom:890.012850px;}
.y141{bottom:890.054850px;}
.y4b{bottom:890.078850px;}
.yed{bottom:895.529250px;}
.ya7{bottom:896.705700px;}
.y7{bottom:906.666900px;}
.y117{bottom:911.018850px;}
.y140{bottom:911.060850px;}
.y4a{bottom:911.078850px;}
.ya6{bottom:917.609700px;}
.y6{bottom:924.666900px;}
.y7f{bottom:925.441050px;}
.y116{bottom:932.024850px;}
.y13f{bottom:932.066850px;}
.y49{bottom:932.078850px;}
.ya5{bottom:938.513700px;}
.y115{bottom:953.030850px;}
.y13e{bottom:953.072850px;}
.y48{bottom:953.078850px;}
.yec{bottom:958.529250px;}
.ya4{bottom:959.417700px;}
.y5{bottom:959.674800px;}
.y114{bottom:974.036850px;}
.y47{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ya3{bottom:980.321700px;}
.y72{bottom:987.513600px;}
.y113{bottom:995.042850px;}
.y46{bottom:995.078850px;}
.ya2{bottom:1001.225700px;}
.y112{bottom:1016.048850px;}
.y45{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y71{bottom:1019.811000px;}
.yeb{bottom:1021.529250px;}
.ya1{bottom:1022.129700px;}
.y111{bottom:1037.054850px;}
.y44{bottom:1037.078850px;}
.ya0{bottom:1043.033700px;}
.y2{bottom:1049.282550px;}
.y110{bottom:1058.060850px;}
.y43{bottom:1058.078850px;}
.y9f{bottom:1063.937700px;}
.y10f{bottom:1079.066850px;}
.y42{bottom:1079.078850px;}
.y9e{bottom:1084.841700px;}
.yea{bottom:1094.822850px;}
.y10e{bottom:1100.072850px;}
.y41{bottom:1100.078850px;}
.y9d{bottom:1105.745700px;}
.ye{bottom:1109.815500px;}
.y40{bottom:1121.078850px;}
.ye9{bottom:1124.326800px;}
.y9c{bottom:1127.801700px;}
.ye7{bottom:1128.578850px;}
.y3b{bottom:1151.596500px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y3f{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h15{height:36.492188px;}
.h11{height:37.477500px;}
.h13{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h16{height:39.000000px;}
.h8{height:41.053711px;}
.h10{height:43.057617px;}
.hf{height:43.321289px;}
.ha{height:43.875000px;}
.h17{height:43.899000px;}
.h18{height:44.043000px;}
.h9{height:45.615234px;}
.hd{height:48.750000px;}
.hb{height:48.990234px;}
.h14{height:50.176758px;}
.h4{height:53.625000px;}
.he{height:54.433594px;}
.hc{height:54.738281px;}
.h3{height:77.545898px;}
.h12{height:112.250956px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:177.072000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:45.315600px;}
.xb{left:71.880000px;}
.x2{left:73.984200px;}
.xd{left:107.071650px;}
.xe{left:108.285450px;}
.x13{left:112.258050px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x12{left:177.646050px;}
.x14{left:181.558050px;}
.x15{left:183.574050px;}
.x16{left:294.453150px;}
.x4{left:300.189000px;}
.x10{left:304.453800px;}
.x17{left:311.463150px;}
.x5{left:317.199000px;}
.xf{left:380.509800px;}
.x3{left:396.050700px;}
.xa{left:667.506450px;}
.x9{left:692.958450px;}
.x11{left:800.519850px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.133333pt;}
.v1{vertical-align:19.536000pt;}
.ls10{letter-spacing:-1.578667pt;}
.lsc{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.906667pt;}
.ls1c{letter-spacing:-0.720000pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls1d{letter-spacing:-0.672000pt;}
.ls4{letter-spacing:-0.614400pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.362667pt;}
.ls11{letter-spacing:-0.341333pt;}
.ls1e{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls13{letter-spacing:92.501333pt;}
.ls12{letter-spacing:98.474667pt;}
.ls14{letter-spacing:99.626667pt;}
.ls15{letter-spacing:228.352000pt;}
.ws4{word-spacing:-15.936000pt;}
.wsc0{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws99{word-spacing:-13.066667pt;}
.ws56{word-spacing:-11.952000pt;}
.wsc1{word-spacing:-11.904000pt;}
.ws9f{word-spacing:-11.760000pt;}
.wse6{word-spacing:-11.712000pt;}
.wsc2{word-spacing:-11.664000pt;}
.wsf9{word-spacing:-11.616000pt;}
.wsc3{word-spacing:-11.520000pt;}
.wse7{word-spacing:-11.472000pt;}
.wsf8{word-spacing:-11.232000pt;}
.wsf7{word-spacing:-11.184000pt;}
.ws5{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.800000pt;}
.ws84{word-spacing:-10.624000pt;}
.ws92{word-spacing:-10.282667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws2{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.ws57{word-spacing:-7.711147pt;}
.ws10e{word-spacing:-6.940032pt;}
.ws10d{word-spacing:-4.176000pt;}
.wsa9{word-spacing:-3.466667pt;}
.ws40{word-spacing:-2.986667pt;}
.wsce{word-spacing:-2.832000pt;}
.ws67{word-spacing:-2.720000pt;}
.ws32{word-spacing:-2.560000pt;}
.ws7a{word-spacing:-2.506667pt;}
.ws79{word-spacing:-2.453333pt;}
.wsb3{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.346667pt;}
.ws49{word-spacing:-2.293333pt;}
.ws107{word-spacing:-2.256000pt;}
.ws111{word-spacing:-2.208000pt;}
.wsc8{word-spacing:-2.160000pt;}
.ws4f{word-spacing:-2.133333pt;}
.ws8f{word-spacing:-2.112000pt;}
.ws90{word-spacing:-2.064000pt;}
.wsd8{word-spacing:-2.016000pt;}
.ws46{word-spacing:-1.973333pt;}
.ws7d{word-spacing:-1.920000pt;}
.ws116{word-spacing:-1.872000pt;}
.ws2d{word-spacing:-1.866667pt;}
.ws105{word-spacing:-1.824000pt;}
.ws69{word-spacing:-1.813333pt;}
.wsf4{word-spacing:-1.680000pt;}
.wsad{word-spacing:-1.653333pt;}
.ws10{word-spacing:-1.632000pt;}
.ws71{word-spacing:-1.600000pt;}
.ws102{word-spacing:-1.584000pt;}
.ws43{word-spacing:-1.546667pt;}
.wsf5{word-spacing:-1.536000pt;}
.ws30{word-spacing:-1.440000pt;}
.wsa8{word-spacing:-1.392000pt;}
.ws7b{word-spacing:-1.386667pt;}
.wsb6{word-spacing:-1.333333pt;}
.wsf3{word-spacing:-1.296000pt;}
.ws2c{word-spacing:-1.280000pt;}
.ws95{word-spacing:-1.226667pt;}
.ws33{word-spacing:-1.173333pt;}
.wsf{word-spacing:-1.152000pt;}
.wsbd{word-spacing:-1.120000pt;}
.ws53{word-spacing:-1.066667pt;}
.wsd5{word-spacing:-1.056000pt;}
.ws74{word-spacing:-1.013333pt;}
.ws6b{word-spacing:-0.912000pt;}
.ws5f{word-spacing:-0.853333pt;}
.ws91{word-spacing:-0.810667pt;}
.ws8a{word-spacing:-0.800000pt;}
.ws77{word-spacing:-0.693333pt;}
.wsec{word-spacing:-0.672000pt;}
.ws6d{word-spacing:-0.586667pt;}
.ws34{word-spacing:-0.533333pt;}
.ws10c{word-spacing:-0.528000pt;}
.ws6a{word-spacing:-0.480000pt;}
.wsb2{word-spacing:-0.373333pt;}
.wsd7{word-spacing:-0.336000pt;}
.ws13{word-spacing:-0.288000pt;}
.ws55{word-spacing:-0.266667pt;}
.wsca{word-spacing:-0.240000pt;}
.ws60{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.192000pt;}
.wsaa{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.144000pt;}
.ws7{word-spacing:-0.138006pt;}
.ws3d{word-spacing:-0.106667pt;}
.wsc{word-spacing:-0.096000pt;}
.ws29{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws54{word-spacing:0.053333pt;}
.ws78{word-spacing:0.106667pt;}
.ws73{word-spacing:0.160000pt;}
.wsf0{word-spacing:0.192000pt;}
.ws28{word-spacing:0.213333pt;}
.wsea{word-spacing:0.240000pt;}
.ws66{word-spacing:0.266667pt;}
.wsb0{word-spacing:0.320000pt;}
.wsc9{word-spacing:0.336000pt;}
.ws9{word-spacing:0.362667pt;}
.ws16{word-spacing:0.373333pt;}
.wse5{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.426667pt;}
.wse{word-spacing:0.432000pt;}
.ws3b{word-spacing:0.480000pt;}
.wsdb{word-spacing:0.528000pt;}
.wsa0{word-spacing:0.533333pt;}
.ws110{word-spacing:0.576000pt;}
.ws26{word-spacing:0.586667pt;}
.wsb{word-spacing:0.614400pt;}
.wsa4{word-spacing:0.640000pt;}
.wsdf{word-spacing:0.672000pt;}
.ws72{word-spacing:0.693333pt;}
.wsc5{word-spacing:0.720000pt;}
.ws7c{word-spacing:0.746667pt;}
.ws14{word-spacing:0.768000pt;}
.wsd1{word-spacing:0.816000pt;}
.ws80{word-spacing:0.853333pt;}
.ws101{word-spacing:0.864000pt;}
.ws41{word-spacing:0.906667pt;}
.ws31{word-spacing:0.960000pt;}
.wsd2{word-spacing:1.008000pt;}
.ws6f{word-spacing:1.013333pt;}
.ws82{word-spacing:1.066667pt;}
.ws39{word-spacing:1.120000pt;}
.ws9b{word-spacing:1.152000pt;}
.ws5c{word-spacing:1.173333pt;}
.ws9a{word-spacing:1.200000pt;}
.ws68{word-spacing:1.226667pt;}
.ws93{word-spacing:1.280000pt;}
.ws42{word-spacing:1.333333pt;}
.ws103{word-spacing:1.392000pt;}
.ws65{word-spacing:1.440000pt;}
.ws118{word-spacing:1.488000pt;}
.ws44{word-spacing:1.493333pt;}
.ws9c{word-spacing:1.546667pt;}
.wsd{word-spacing:1.584000pt;}
.wscb{word-spacing:1.632000pt;}
.wsb4{word-spacing:1.653333pt;}
.wse0{word-spacing:1.680000pt;}
.wse3{word-spacing:1.728000pt;}
.wsac{word-spacing:1.760000pt;}
.wsfc{word-spacing:1.776000pt;}
.ws5d{word-spacing:1.813333pt;}
.wsff{word-spacing:1.824000pt;}
.ws3f{word-spacing:1.866667pt;}
.ws81{word-spacing:1.920000pt;}
.ws100{word-spacing:1.968000pt;}
.wsbc{word-spacing:2.026667pt;}
.wseb{word-spacing:2.064000pt;}
.ws4b{word-spacing:2.080000pt;}
.ws109{word-spacing:2.112000pt;}
.ws19{word-spacing:2.133333pt;}
.wse8{word-spacing:2.160000pt;}
.ws6c{word-spacing:2.240000pt;}
.wsbe{word-spacing:2.293333pt;}
.ws6e{word-spacing:2.346667pt;}
.ws4e{word-spacing:2.453333pt;}
.ws4c{word-spacing:2.506667pt;}
.ws106{word-spacing:2.544000pt;}
.wsf1{word-spacing:2.592000pt;}
.ws7f{word-spacing:2.613333pt;}
.ws94{word-spacing:2.666667pt;}
.ws47{word-spacing:2.720000pt;}
.wsb9{word-spacing:2.773333pt;}
.ws114{word-spacing:2.784000pt;}
.ws1c{word-spacing:2.826667pt;}
.wsa7{word-spacing:2.832000pt;}
.ws2b{word-spacing:2.880000pt;}
.ws115{word-spacing:2.928000pt;}
.ws8e{word-spacing:2.933333pt;}
.wsf6{word-spacing:2.976000pt;}
.ws38{word-spacing:2.986667pt;}
.ws9d{word-spacing:3.040000pt;}
.ws112{word-spacing:3.072000pt;}
.ws9e{word-spacing:3.093333pt;}
.wsdd{word-spacing:3.120000pt;}
.ws48{word-spacing:3.146667pt;}
.wsee{word-spacing:3.216000pt;}
.ws1d{word-spacing:3.306667pt;}
.wsda{word-spacing:3.312000pt;}
.ws8b{word-spacing:3.360000pt;}
.wsde{word-spacing:3.408000pt;}
.ws1f{word-spacing:3.413333pt;}
.wse1{word-spacing:3.456000pt;}
.ws2f{word-spacing:3.466667pt;}
.wsd0{word-spacing:3.504000pt;}
.ws70{word-spacing:3.573333pt;}
.wsfe{word-spacing:3.600000pt;}
.wsa5{word-spacing:3.648000pt;}
.wsa6{word-spacing:3.744000pt;}
.wsa2{word-spacing:3.786667pt;}
.wsfa{word-spacing:3.792000pt;}
.wsa1{word-spacing:3.840000pt;}
.ws104{word-spacing:3.888000pt;}
.wsb1{word-spacing:3.946667pt;}
.ws4a{word-spacing:4.053333pt;}
.wsfb{word-spacing:4.080000pt;}
.ws45{word-spacing:4.106667pt;}
.ws15{word-spacing:4.160000pt;}
.ws59{word-spacing:4.320000pt;}
.ws58{word-spacing:4.368000pt;}
.ws1b{word-spacing:4.373333pt;}
.wsdc{word-spacing:4.416000pt;}
.ws3a{word-spacing:4.426667pt;}
.wscf{word-spacing:4.512000pt;}
.wsbf{word-spacing:4.533333pt;}
.ws37{word-spacing:4.586667pt;}
.ws4d{word-spacing:4.640000pt;}
.ws35{word-spacing:4.693333pt;}
.ws20{word-spacing:4.746667pt;}
.ws10b{word-spacing:4.752000pt;}
.wsd9{word-spacing:4.848000pt;}
.ws5a{word-spacing:4.853333pt;}
.ws18{word-spacing:4.906667pt;}
.wsed{word-spacing:4.944000pt;}
.wsaf{word-spacing:4.960000pt;}
.ws25{word-spacing:5.013333pt;}
.wsfd{word-spacing:5.088000pt;}
.ws52{word-spacing:5.173333pt;}
.ws22{word-spacing:5.226667pt;}
.wsba{word-spacing:5.280000pt;}
.wsb5{word-spacing:5.333333pt;}
.ws63{word-spacing:5.546667pt;}
.ws1e{word-spacing:5.600000pt;}
.ws8c{word-spacing:5.653333pt;}
.ws108{word-spacing:5.808000pt;}
.ws8d{word-spacing:5.813333pt;}
.wsc6{word-spacing:5.856000pt;}
.ws3c{word-spacing:5.866667pt;}
.wse9{word-spacing:5.904000pt;}
.ws2a{word-spacing:6.026667pt;}
.ws2e{word-spacing:6.080000pt;}
.ws89{word-spacing:6.133333pt;}
.ws10f{word-spacing:6.240000pt;}
.ws1a{word-spacing:6.400000pt;}
.wse2{word-spacing:6.432000pt;}
.wsab{word-spacing:6.453333pt;}
.ws61{word-spacing:6.560000pt;}
.wsd4{word-spacing:6.576000pt;}
.wsc4{word-spacing:6.624000pt;}
.wscc{word-spacing:6.672000pt;}
.ws50{word-spacing:6.720000pt;}
.wsae{word-spacing:6.773333pt;}
.ws5e{word-spacing:6.826667pt;}
.ws24{word-spacing:6.933333pt;}
.ws11{word-spacing:6.960000pt;}
.ws64{word-spacing:7.200000pt;}
.wsa3{word-spacing:7.306667pt;}
.ws113{word-spacing:7.344000pt;}
.ws23{word-spacing:7.360000pt;}
.ws51{word-spacing:7.413333pt;}
.ws75{word-spacing:7.466667pt;}
.wsd6{word-spacing:7.776000pt;}
.wscd{word-spacing:7.824000pt;}
.ws76{word-spacing:7.840000pt;}
.wsbb{word-spacing:7.893333pt;}
.ws27{word-spacing:7.946667pt;}
.ws62{word-spacing:8.373333pt;}
.wsb7{word-spacing:8.426667pt;}
.wsb8{word-spacing:8.533333pt;}
.ws5b{word-spacing:8.586667pt;}
.ws119{word-spacing:9.360000pt;}
.wsd3{word-spacing:9.552000pt;}
.ws21{word-spacing:10.880000pt;}
.ws10a{word-spacing:10.992000pt;}
.wsf2{word-spacing:11.616000pt;}
.wsef{word-spacing:12.336000pt;}
.wse4{word-spacing:13.008000pt;}
.ws117{word-spacing:13.056000pt;}
.ws17{word-spacing:14.080000pt;}
.ws36{word-spacing:15.626667pt;}
.wsc7{word-spacing:17.328000pt;}
.ws98{word-spacing:68.138667pt;}
.ws88{word-spacing:131.712000pt;}
.ws85{word-spacing:143.744000pt;}
.ws87{word-spacing:155.690667pt;}
.ws97{word-spacing:198.165333pt;}
.ws86{word-spacing:212.394667pt;}
.ws83{word-spacing:230.741333pt;}
.ws96{word-spacing:1079.296000pt;}
._9{margin-left:-9.898667pt;}
._5{margin-left:-7.619200pt;}
._10{margin-left:-6.212800pt;}
._8{margin-left:-5.140800pt;}
._6{margin-left:-3.842133pt;}
._3{margin-left:-2.586133pt;}
._1{margin-left:-1.432533pt;}
._2{width:0.897600pt;}
._0{width:2.176000pt;}
._7{width:3.456000pt;}
._d{width:4.568533pt;}
._a{width:5.530667pt;}
._f{width:6.490667pt;}
._e{width:7.706667pt;}
._1d{width:9.264000pt;}
._b{width:10.688000pt;}
._c{width:11.955200pt;}
._4{width:32.328533pt;}
._1c{width:37.770667pt;}
._1b{width:38.781867pt;}
._12{width:44.629333pt;}
._13{width:149.717333pt;}
._19{width:178.304000pt;}
._1a{width:198.997333pt;}
._16{width:210.986667pt;}
._15{width:222.976000pt;}
._11{width:309.890133pt;}
._17{width:679.082667pt;}
._14{width:691.029333pt;}
._18{width:693.376000pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fs9{font-size:138.006400pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:3.589733pt;}
.y1{bottom:60.555333pt;}
.y3d{bottom:63.299600pt;}
.y3e{bottom:66.702267pt;}
.y13d{bottom:100.258533pt;}
.y10d{bottom:100.418400pt;}
.y7b{bottom:100.514400pt;}
.y70{bottom:100.514533pt;}
.yd{bottom:104.182267pt;}
.y2b{bottom:104.189067pt;}
.y9b{bottom:104.235867pt;}
.yc{bottom:116.979067pt;}
.y13c{bottom:118.930533pt;}
.y10c{bottom:119.090400pt;}
.y7a{bottom:119.181067pt;}
.y6f{bottom:119.181200pt;}
.y9a{bottom:122.817200pt;}
.y2a{bottom:122.855733pt;}
.yb{bottom:129.775867pt;}
.y13b{bottom:137.602533pt;}
.y10b{bottom:137.762400pt;}
.y79{bottom:137.847733pt;}
.y6e{bottom:137.847867pt;}
.y99{bottom:141.398533pt;}
.y29{bottom:141.522400pt;}
.ya{bottom:142.575867pt;}
.y13a{bottom:156.274533pt;}
.y10a{bottom:156.434400pt;}
.yc6{bottom:156.514400pt;}
.y6d{bottom:156.514533pt;}
.y98{bottom:159.979867pt;}
.y28{bottom:160.189067pt;}
.y7e{bottom:169.280933pt;}
.y139{bottom:174.946533pt;}
.y109{bottom:175.106400pt;}
.yc5{bottom:175.181067pt;}
.y6c{bottom:175.181200pt;}
.y97{bottom:178.561200pt;}
.y27{bottom:178.855733pt;}
.y38{bottom:180.846133pt;}
.y138{bottom:193.618533pt;}
.y108{bottom:193.778400pt;}
.yc4{bottom:193.847733pt;}
.y6b{bottom:193.847867pt;}
.y37{bottom:196.842133pt;}
.y96{bottom:197.142533pt;}
.y26{bottom:197.522400pt;}
.y137{bottom:212.290533pt;}
.y107{bottom:212.450400pt;}
.y78{bottom:212.514400pt;}
.y6a{bottom:212.514533pt;}
.y36{bottom:212.838133pt;}
.y95{bottom:215.723867pt;}
.y25{bottom:216.189067pt;}
.yde{bottom:223.762533pt;}
.y35{bottom:228.834133pt;}
.y136{bottom:230.962533pt;}
.y106{bottom:231.122400pt;}
.y77{bottom:231.181067pt;}
.y69{bottom:231.181200pt;}
.y94{bottom:234.305200pt;}
.y24{bottom:234.855733pt;}
.ydd{bottom:242.343867pt;}
.y34{bottom:244.830133pt;}
.y135{bottom:249.634533pt;}
.y15e{bottom:249.671867pt;}
.y105{bottom:249.794400pt;}
.yc3{bottom:249.847733pt;}
.y68{bottom:249.847867pt;}
.y93{bottom:252.886533pt;}
.y23{bottom:253.522400pt;}
.y33{bottom:260.826133pt;}
.ydc{bottom:260.925200pt;}
.y134{bottom:268.306533pt;}
.y15d{bottom:268.343867pt;}
.y104{bottom:268.466400pt;}
.ye2{bottom:268.514400pt;}
.y67{bottom:268.514533pt;}
.y92{bottom:271.467867pt;}
.y22{bottom:272.189067pt;}
.y32{bottom:276.822133pt;}
.ydb{bottom:279.506533pt;}
.y76{bottom:280.073600pt;}
.y133{bottom:286.978533pt;}
.y15c{bottom:287.015867pt;}
.y103{bottom:287.138400pt;}
.ye1{bottom:287.181067pt;}
.y66{bottom:287.181200pt;}
.y91{bottom:290.049200pt;}
.y21{bottom:290.855733pt;}
.y31{bottom:292.818133pt;}
.yc2{bottom:295.375733pt;}
.yda{bottom:298.087867pt;}
.y132{bottom:305.650533pt;}
.y15b{bottom:305.687867pt;}
.y102{bottom:305.810400pt;}
.ye0{bottom:305.847733pt;}
.y65{bottom:305.847867pt;}
.y90{bottom:308.630533pt;}
.y30{bottom:308.814133pt;}
.y20{bottom:309.522400pt;}
.yc1{bottom:313.957067pt;}
.yd9{bottom:316.669200pt;}
.y131{bottom:324.322533pt;}
.y15a{bottom:324.359867pt;}
.y101{bottom:324.482400pt;}
.ydf{bottom:324.514400pt;}
.y64{bottom:324.514533pt;}
.y8f{bottom:327.211867pt;}
.y1f{bottom:328.189067pt;}
.yc0{bottom:332.538400pt;}
.yd8{bottom:335.250533pt;}
.y2f{bottom:339.930133pt;}
.y130{bottom:342.994533pt;}
.y159{bottom:343.031867pt;}
.y100{bottom:343.154400pt;}
.y63{bottom:343.181200pt;}
.y8e{bottom:345.793200pt;}
.y1e{bottom:346.855733pt;}
.ybf{bottom:351.119733pt;}
.yd7{bottom:353.831867pt;}
.y2e{bottom:355.930133pt;}
.y12f{bottom:361.666533pt;}
.y158{bottom:361.703867pt;}
.yff{bottom:361.826400pt;}
.y62{bottom:361.847867pt;}
.y8d{bottom:364.374533pt;}
.y1d{bottom:365.522400pt;}
.ybe{bottom:369.701067pt;}
.y2d{bottom:371.930133pt;}
.yd6{bottom:372.413200pt;}
.ye6{bottom:376.613200pt;}
.y12e{bottom:380.338533pt;}
.y157{bottom:380.375867pt;}
.yfe{bottom:380.498400pt;}
.y61{bottom:380.514533pt;}
.y8c{bottom:382.955867pt;}
.y2c{bottom:387.930133pt;}
.ybd{bottom:388.282400pt;}
.yd5{bottom:390.994533pt;}
.ye5{bottom:394.217200pt;}
.y1c{bottom:395.513200pt;}
.y12d{bottom:399.010533pt;}
.y156{bottom:399.047867pt;}
.yfd{bottom:399.170400pt;}
.y60{bottom:399.181200pt;}
.y8b{bottom:401.537200pt;}
.ybc{bottom:406.863733pt;}
.yd4{bottom:409.575867pt;}
.ye4{bottom:411.821200pt;}
.ye8{bottom:411.947600pt;}
.y12c{bottom:417.682533pt;}
.y155{bottom:417.719867pt;}
.yfc{bottom:417.842400pt;}
.y5f{bottom:417.847867pt;}
.y8a{bottom:420.118533pt;}
.ybb{bottom:425.445067pt;}
.yd3{bottom:428.157200pt;}
.ye3{bottom:429.425200pt;}
.y12b{bottom:436.354533pt;}
.y154{bottom:436.391867pt;}
.yfb{bottom:436.514400pt;}
.y5e{bottom:436.514533pt;}
.y89{bottom:438.699867pt;}
.yba{bottom:444.026400pt;}
.yd2{bottom:446.738533pt;}
.y73{bottom:449.280933pt;}
.y12a{bottom:455.026533pt;}
.y153{bottom:455.063867pt;}
.y5d{bottom:455.181200pt;}
.y88{bottom:457.281200pt;}
.yb9{bottom:462.607733pt;}
.y1b{bottom:463.313733pt;}
.yd1{bottom:465.319867pt;}
.yfa{bottom:467.947467pt;}
.y129{bottom:473.698533pt;}
.y152{bottom:473.735867pt;}
.y5c{bottom:473.847867pt;}
.y87{bottom:475.862533pt;}
.yb8{bottom:481.189067pt;}
.yd0{bottom:483.901200pt;}
.y128{bottom:492.370533pt;}
.y151{bottom:492.407867pt;}
.y5b{bottom:492.514533pt;}
.y86{bottom:494.443867pt;}
.yb7{bottom:499.770400pt;}
.y1a{bottom:499.771467pt;}
.ycf{bottom:502.482533pt;}
.y127{bottom:511.042533pt;}
.y150{bottom:511.079867pt;}
.yf9{bottom:511.181067pt;}
.y5a{bottom:511.181200pt;}
.y85{bottom:513.025200pt;}
.y19{bottom:517.375467pt;}
.yb6{bottom:518.351733pt;}
.yce{bottom:521.063867pt;}
.y126{bottom:529.714533pt;}
.y14f{bottom:529.751867pt;}
.y59{bottom:529.847867pt;}
.y84{bottom:531.606533pt;}
.yf8{bottom:534.692667pt;}
.y18{bottom:534.979467pt;}
.yb5{bottom:536.933067pt;}
.ycd{bottom:539.645200pt;}
.y125{bottom:548.386533pt;}
.y14e{bottom:548.423867pt;}
.y58{bottom:548.514533pt;}
.y83{bottom:550.187867pt;}
.y17{bottom:552.583467pt;}
.yb4{bottom:555.514400pt;}
.ycc{bottom:558.226533pt;}
.y124{bottom:567.058533pt;}
.y14d{bottom:567.095867pt;}
.yf7{bottom:567.175733pt;}
.y57{bottom:567.181200pt;}
.y82{bottom:569.526533pt;}
.y16{bottom:570.187467pt;}
.yb3{bottom:574.095733pt;}
.ycb{bottom:576.807867pt;}
.y7c{bottom:579.947600pt;}
.y123{bottom:585.730533pt;}
.y14c{bottom:585.767867pt;}
.yf6{bottom:585.842400pt;}
.y56{bottom:585.847867pt;}
.y15{bottom:587.791467pt;}
.yb2{bottom:592.677067pt;}
.yca{bottom:596.146533pt;}
.y81{bottom:596.617467pt;}
.y75{bottom:599.285733pt;}
.y122{bottom:604.402533pt;}
.y14b{bottom:604.439867pt;}
.yf5{bottom:604.509067pt;}
.y55{bottom:604.514533pt;}
.y14{bottom:605.395467pt;}
.yb1{bottom:611.258400pt;}
.y80{bottom:614.221467pt;}
.y74{bottom:616.889733pt;}
.y13{bottom:622.999467pt;}
.y121{bottom:623.074533pt;}
.y14a{bottom:623.111867pt;}
.yf4{bottom:623.175733pt;}
.y54{bottom:623.181200pt;}
.yc9{bottom:623.241467pt;}
.yb0{bottom:629.839733pt;}
.y12{bottom:640.603467pt;}
.y120{bottom:641.746533pt;}
.y149{bottom:641.783867pt;}
.yf3{bottom:641.847733pt;}
.y53{bottom:641.847867pt;}
.yaf{bottom:648.421067pt;}
.y11{bottom:658.207467pt;}
.y11f{bottom:660.418533pt;}
.y148{bottom:660.455867pt;}
.y52{bottom:660.514533pt;}
.yf2{bottom:665.359333pt;}
.yae{bottom:667.002400pt;}
.y10{bottom:675.811467pt;}
.yc8{bottom:678.655867pt;}
.y11e{bottom:679.090533pt;}
.y147{bottom:679.127867pt;}
.y51{bottom:679.181200pt;}
.yad{bottom:685.583733pt;}
.yc7{bottom:696.259867pt;}
.y11d{bottom:697.762533pt;}
.y146{bottom:697.799867pt;}
.yf1{bottom:697.842400pt;}
.y50{bottom:697.847867pt;}
.yf{bottom:703.453600pt;}
.yac{bottom:704.165067pt;}
.y11c{bottom:716.434533pt;}
.y145{bottom:716.471867pt;}
.yf0{bottom:716.514400pt;}
.y4f{bottom:716.514533pt;}
.yab{bottom:722.746400pt;}
.y11b{bottom:735.106533pt;}
.y144{bottom:735.143867pt;}
.y4e{bottom:735.181200pt;}
.yef{bottom:740.026000pt;}
.yaa{bottom:741.327733pt;}
.y7d{bottom:743.503867pt;}
.y11a{bottom:753.778533pt;}
.y143{bottom:753.815867pt;}
.y4d{bottom:753.847867pt;}
.ya9{bottom:759.909067pt;}
.y119{bottom:772.450533pt;}
.y142{bottom:772.487867pt;}
.yee{bottom:772.514400pt;}
.y4c{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ya8{bottom:778.490400pt;}
.y8{bottom:789.926133pt;}
.y118{bottom:791.122533pt;}
.y141{bottom:791.159867pt;}
.y4b{bottom:791.181200pt;}
.yed{bottom:796.026000pt;}
.ya7{bottom:797.071733pt;}
.y7{bottom:805.926133pt;}
.y117{bottom:809.794533pt;}
.y140{bottom:809.831867pt;}
.y4a{bottom:809.847867pt;}
.ya6{bottom:815.653067pt;}
.y6{bottom:821.926133pt;}
.y7f{bottom:822.614267pt;}
.y116{bottom:828.466533pt;}
.y13f{bottom:828.503867pt;}
.y49{bottom:828.514533pt;}
.ya5{bottom:834.234400pt;}
.y115{bottom:847.138533pt;}
.y13e{bottom:847.175867pt;}
.y48{bottom:847.181200pt;}
.yec{bottom:852.026000pt;}
.ya4{bottom:852.815733pt;}
.y5{bottom:853.044267pt;}
.y114{bottom:865.810533pt;}
.y47{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ya3{bottom:871.397067pt;}
.y72{bottom:877.789867pt;}
.y113{bottom:884.482533pt;}
.y46{bottom:884.514533pt;}
.ya2{bottom:889.978400pt;}
.y112{bottom:903.154533pt;}
.y45{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y71{bottom:906.498667pt;}
.yeb{bottom:908.026000pt;}
.ya1{bottom:908.559733pt;}
.y111{bottom:921.826533pt;}
.y44{bottom:921.847867pt;}
.ya0{bottom:927.141067pt;}
.y2{bottom:932.695600pt;}
.y110{bottom:940.498533pt;}
.y43{bottom:940.514533pt;}
.y9f{bottom:945.722400pt;}
.y10f{bottom:959.170533pt;}
.y42{bottom:959.181200pt;}
.y9e{bottom:964.303733pt;}
.yea{bottom:973.175867pt;}
.y10e{bottom:977.842533pt;}
.y41{bottom:977.847867pt;}
.y9d{bottom:982.885067pt;}
.ye{bottom:986.502667pt;}
.y40{bottom:996.514533pt;}
.ye9{bottom:999.401600pt;}
.y9c{bottom:1002.490400pt;}
.ye7{bottom:1003.181200pt;}
.y3b{bottom:1023.641333pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y3f{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h15{height:32.437500pt;}
.h11{height:33.313333pt;}
.h13{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h16{height:34.666667pt;}
.h8{height:36.492188pt;}
.h10{height:38.273438pt;}
.hf{height:38.507812pt;}
.ha{height:39.000000pt;}
.h17{height:39.021333pt;}
.h18{height:39.149333pt;}
.h9{height:40.546875pt;}
.hd{height:43.333333pt;}
.hb{height:43.546875pt;}
.h14{height:44.601562pt;}
.h4{height:47.666667pt;}
.he{height:48.385417pt;}
.hc{height:48.656250pt;}
.h3{height:68.929688pt;}
.h12{height:99.778627pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:157.397333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:40.280533pt;}
.xb{left:63.893333pt;}
.x2{left:65.763733pt;}
.xd{left:95.174800pt;}
.xe{left:96.253733pt;}
.x13{left:99.784933pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x12{left:157.907600pt;}
.x14{left:161.384933pt;}
.x15{left:163.176933pt;}
.x16{left:261.736133pt;}
.x4{left:266.834667pt;}
.x10{left:270.625600pt;}
.x17{left:276.856133pt;}
.x5{left:281.954667pt;}
.xf{left:338.230933pt;}
.x3{left:352.045067pt;}
.xa{left:593.339067pt;}
.x9{left:615.963067pt;}
.x11{left:711.573200pt;}
.x1{left:717.405733pt;}
}




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