
    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_25c69617170a58b7d7fce837.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0450e2ebaea010aca67c4baf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_881c7b76493f6872ab8fcd60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fc3fd9e001a706d690ea9ec6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_60bf611e50d424035c05638e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ae00fee636e41dd191e7224.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f13f4226552f3723b7808981.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4701577aa8fc1c3db2366146.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_33e7598350647c779d340d33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5cab035a4abbc4f9a9324d9.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v7{vertical-align:-18.899780px;}
.v4{vertical-align:-17.850037px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.713469px;}
.v2{vertical-align:21.000000px;}
.v6{vertical-align:22.512000px;}
.v5{vertical-align:44.982000px;}
.ls14{letter-spacing:-5.238000px;}
.ls15{letter-spacing:-1.680000px;}
.ls3c{letter-spacing:-1.035000px;}
.ls2a{letter-spacing:-0.702000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.378000px;}
.ls34{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.324000px;}
.ls35{letter-spacing:-0.315000px;}
.ls16{letter-spacing:-0.270000px;}
.ls37{letter-spacing:-0.225000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.210000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.162000px;}
.ls25{letter-spacing:-0.140400px;}
.ls32{letter-spacing:-0.135000px;}
.ls20{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.045000px;}
.lsd{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013223px;}
.ls6{letter-spacing:0.013406px;}
.ls3{letter-spacing:0.013772px;}
.ls4{letter-spacing:0.013956px;}
.lsc{letter-spacing:0.020245px;}
.ls33{letter-spacing:0.045000px;}
.ls19{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.135000px;}
.ls31{letter-spacing:0.157500px;}
.ls1b{letter-spacing:0.157950px;}
.ls18{letter-spacing:0.158836px;}
.lsa{letter-spacing:0.159019px;}
.ls29{letter-spacing:0.159751px;}
.ls1e{letter-spacing:0.162000px;}
.ls27{letter-spacing:0.175500px;}
.ls2c{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.202500px;}
.ls7{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.225000px;}
.ls2b{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.270000px;}
.ls39{letter-spacing:0.315000px;}
.ls21{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.340202px;}
.ls3a{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.378000px;}
.ls1a{letter-spacing:0.448143px;}
.ls8{letter-spacing:0.468284px;}
.ls3f{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.540000px;}
.ls2f{letter-spacing:0.585000px;}
.lse{letter-spacing:0.594000px;}
.ls38{letter-spacing:0.630000px;}
.ls28{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.702000px;}
.ls23{letter-spacing:0.756000px;}
.ls40{letter-spacing:0.810000px;}
.ls30{letter-spacing:1.755000px;}
.ls0{letter-spacing:1.872000px;}
.ls1{letter-spacing:3.000000px;}
.lsb{letter-spacing:7.591350px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-15.000000px;}
.wsa3{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.596000px;}
.ws83{word-spacing:-12.798000px;}
.ws2{word-spacing:-12.360000px;}
.ws8e{word-spacing:-12.258000px;}
.ws6e{word-spacing:-12.204000px;}
.ws86{word-spacing:-12.096000px;}
.ws9f{word-spacing:-12.042000px;}
.ws20{word-spacing:-11.988000px;}
.ws85{word-spacing:-11.880000px;}
.ws67{word-spacing:-11.718000px;}
.wsa2{word-spacing:-11.556000px;}
.wsa8{word-spacing:-10.530000px;}
.wsa9{word-spacing:-10.485000px;}
.wsaa{word-spacing:-10.417500px;}
.wsab{word-spacing:-10.350000px;}
.wsa6{word-spacing:-10.260000px;}
.wsa7{word-spacing:-10.080000px;}
.wsa5{word-spacing:-9.990000px;}
.wsa4{word-spacing:-9.765000px;}
.ws0{word-spacing:-9.600000px;}
.ws70{word-spacing:-8.143200px;}
.ws3b{word-spacing:-7.967700px;}
.ws6f{word-spacing:-7.827300px;}
.ws3{word-spacing:-6.630000px;}
.wsc8{word-spacing:-6.345000px;}
.wsc9{word-spacing:-6.030000px;}
.wsc5{word-spacing:-5.850000px;}
.wsc7{word-spacing:-5.760000px;}
.ws80{word-spacing:-5.508000px;}
.ws66{word-spacing:-4.284000px;}
.ws64{word-spacing:-3.726000px;}
.ws3e{word-spacing:-3.480000px;}
.ws91{word-spacing:-3.348000px;}
.ws40{word-spacing:-2.646000px;}
.ws8{word-spacing:-2.640000px;}
.ws41{word-spacing:-2.430000px;}
.ws9{word-spacing:-2.340000px;}
.wsaf{word-spacing:-2.268000px;}
.ws4e{word-spacing:-2.160000px;}
.ws76{word-spacing:-2.106000px;}
.ws77{word-spacing:-1.836000px;}
.ws2e{word-spacing:-1.674000px;}
.ws5d{word-spacing:-1.566000px;}
.ws51{word-spacing:-1.458000px;}
.ws6{word-spacing:-1.440000px;}
.ws4d{word-spacing:-1.296000px;}
.ws2b{word-spacing:-1.242000px;}
.wsb7{word-spacing:-1.215000px;}
.wsb2{word-spacing:-1.200000px;}
.ws81{word-spacing:-1.188000px;}
.ws7{word-spacing:-1.140000px;}
.ws9d{word-spacing:-1.134000px;}
.ws87{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.035000px;}
.ws8a{word-spacing:-0.972000px;}
.ws31{word-spacing:-0.918000px;}
.ws5{word-spacing:-0.912000px;}
.ws4c{word-spacing:-0.864000px;}
.ws7c{word-spacing:-0.810000px;}
.ws82{word-spacing:-0.756000px;}
.ws8c{word-spacing:-0.702000px;}
.wscb{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.648000px;}
.wsb8{word-spacing:-0.630000px;}
.wsb4{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.486000px;}
.wsbe{word-spacing:-0.450000px;}
.ws36{word-spacing:-0.432000px;}
.ws96{word-spacing:-0.378000px;}
.ws61{word-spacing:-0.324000px;}
.ws57{word-spacing:-0.270000px;}
.wsbd{word-spacing:-0.225000px;}
.wsb{word-spacing:-0.216000px;}
.wsba{word-spacing:-0.180000px;}
.wsc4{word-spacing:-0.135000px;}
.ws9b{word-spacing:-0.108000px;}
.ws4{word-spacing:0.000000px;}
.ws7e{word-spacing:0.054000px;}
.ws43{word-spacing:0.162000px;}
.wsc6{word-spacing:0.180000px;}
.ws65{word-spacing:0.210000px;}
.ws49{word-spacing:0.216000px;}
.ws7b{word-spacing:0.270000px;}
.ws56{word-spacing:0.324000px;}
.wsb9{word-spacing:0.360000px;}
.wsf{word-spacing:0.378000px;}
.ws7f{word-spacing:0.432000px;}
.wsc3{word-spacing:0.450000px;}
.ws5e{word-spacing:0.486000px;}
.ws44{word-spacing:0.540000px;}
.ws17{word-spacing:0.561000px;}
.ws7d{word-spacing:0.594000px;}
.wsca{word-spacing:0.648000px;}
.ws97{word-spacing:0.702000px;}
.wsb3{word-spacing:0.756000px;}
.wsae{word-spacing:0.780000px;}
.ws7a{word-spacing:0.810000px;}
.ws79{word-spacing:0.840000px;}
.wsb1{word-spacing:0.864000px;}
.ws10{word-spacing:0.918000px;}
.wscc{word-spacing:0.972000px;}
.wsbf{word-spacing:0.990000px;}
.ws90{word-spacing:1.026000px;}
.wsbb{word-spacing:1.035000px;}
.ws8b{word-spacing:1.134000px;}
.ws84{word-spacing:1.188000px;}
.wsc0{word-spacing:1.215000px;}
.wsc{word-spacing:1.242000px;}
.wsc1{word-spacing:1.260000px;}
.ws78{word-spacing:1.320000px;}
.ws8f{word-spacing:1.350000px;}
.ws9a{word-spacing:1.404000px;}
.wsc2{word-spacing:1.440000px;}
.ws9c{word-spacing:1.458000px;}
.wsbc{word-spacing:1.485000px;}
.ws58{word-spacing:1.512000px;}
.ws89{word-spacing:1.620000px;}
.wse{word-spacing:1.728000px;}
.wsd{word-spacing:1.782000px;}
.ws1d{word-spacing:1.785000px;}
.ws5b{word-spacing:1.944000px;}
.ws88{word-spacing:1.998000px;}
.ws3a{word-spacing:2.052000px;}
.ws72{word-spacing:2.106000px;}
.ws54{word-spacing:2.160000px;}
.ws93{word-spacing:2.268000px;}
.ws92{word-spacing:2.376000px;}
.ws1a{word-spacing:2.397000px;}
.ws35{word-spacing:2.538000px;}
.ws5a{word-spacing:2.808000px;}
.ws37{word-spacing:3.024000px;}
.ws48{word-spacing:3.132000px;}
.ws9e{word-spacing:3.294000px;}
.ws34{word-spacing:3.402000px;}
.ws33{word-spacing:3.420000px;}
.ws30{word-spacing:3.456000px;}
.ws71{word-spacing:3.510000px;}
.ws4f{word-spacing:3.672000px;}
.ws2f{word-spacing:3.726000px;}
.wsa0{word-spacing:3.780000px;}
.ws42{word-spacing:3.834000px;}
.wsb5{word-spacing:3.840000px;}
.ws32{word-spacing:3.942000px;}
.ws47{word-spacing:3.996000px;}
.ws59{word-spacing:4.320000px;}
.ws52{word-spacing:4.374000px;}
.ws50{word-spacing:4.482000px;}
.ws19{word-spacing:4.590000px;}
.ws2d{word-spacing:4.620000px;}
.ws73{word-spacing:4.806000px;}
.wsa1{word-spacing:4.968000px;}
.ws46{word-spacing:5.184000px;}
.ws3f{word-spacing:5.238000px;}
.ws5c{word-spacing:5.292000px;}
.wsce{word-spacing:5.670000px;}
.ws4b{word-spacing:5.724000px;}
.ws53{word-spacing:5.778000px;}
.ws1b{word-spacing:5.814000px;}
.ws4a{word-spacing:5.820000px;}
.ws60{word-spacing:5.940000px;}
.ws18{word-spacing:5.967000px;}
.ws5f{word-spacing:6.000000px;}
.ws55{word-spacing:6.102000px;}
.wscf{word-spacing:6.264000px;}
.ws45{word-spacing:6.318000px;}
.ws38{word-spacing:6.426000px;}
.ws39{word-spacing:6.480000px;}
.wsb0{word-spacing:6.696000px;}
.wscd{word-spacing:6.750000px;}
.ws98{word-spacing:6.804000px;}
.ws75{word-spacing:6.858000px;}
.ws74{word-spacing:6.900000px;}
.ws99{word-spacing:7.020000px;}
.wsad{word-spacing:7.398000px;}
.wsac{word-spacing:7.500000px;}
.ws1c{word-spacing:7.803000px;}
.ws95{word-spacing:8.100000px;}
.ws94{word-spacing:8.220000px;}
.ws14{word-spacing:10.302000px;}
.ws1e{word-spacing:11.679000px;}
.ws12{word-spacing:12.240000px;}
.ws15{word-spacing:12.291000px;}
.ws16{word-spacing:14.382000px;}
.ws6d{word-spacing:15.282000px;}
.ws13{word-spacing:16.728000px;}
.ws63{word-spacing:20.196000px;}
.ws62{word-spacing:20.400000px;}
.ws11{word-spacing:50.796000px;}
.ws69{word-spacing:94.625992px;}
.ws6b{word-spacing:113.693992px;}
.ws6c{word-spacing:134.568000px;}
.ws3d{word-spacing:231.000000px;}
.ws68{word-spacing:440.500200px;}
.ws3c{word-spacing:459.522000px;}
.ws6a{word-spacing:482.622000px;}
.ws27{word-spacing:880.151962px;}
.ws29{word-spacing:963.694162px;}
.ws26{word-spacing:974.152162px;}
.ws28{word-spacing:1007.374162px;}
.ws23{word-spacing:1067.933962px;}
.ws21{word-spacing:1073.435962px;}
.ws22{word-spacing:1104.767962px;}
.ws24{word-spacing:1151.849962px;}
.ws25{word-spacing:1161.971962px;}
.ws2a{word-spacing:1183.853962px;}
._28{margin-left:-25.815588px;}
._31{margin-left:-20.952007px;}
._3f{margin-left:-13.827570px;}
._6{margin-left:-12.814770px;}
._d{margin-left:-10.998030px;}
._21{margin-left:-8.977200px;}
._23{margin-left:-7.668000px;}
._c{margin-left:-5.791200px;}
._4{margin-left:-4.527591px;}
._2{margin-left:-3.229200px;}
._0{margin-left:-1.876800px;}
._3{width:1.151970px;}
._5{width:2.231814px;}
._37{width:3.990000px;}
._20{width:5.238000px;}
._9{width:7.221600px;}
._7{width:9.006594px;}
._a{width:11.490300px;}
._8{width:12.785700px;}
._3e{width:13.824000px;}
._e{width:15.997200px;}
._43{width:17.145000px;}
._42{width:19.007989px;}
._27{width:27.109113px;}
._41{width:36.018000px;}
._40{width:39.096000px;}
._3d{width:40.387811px;}
._24{width:41.955661px;}
._b{width:43.880285px;}
._22{width:46.275131px;}
._26{width:48.465498px;}
._25{width:49.652419px;}
._1f{width:51.177585px;}
._29{width:54.579638px;}
._32{width:57.329992px;}
._1d{width:75.224362px;}
._1e{width:83.283592px;}
._11{width:84.315623px;}
._38{width:85.385992px;}
._1c{width:119.450362px;}
._2a{width:141.199200px;}
._2c{width:163.904362px;}
._1b{width:173.360392px;}
._2e{width:180.054000px;}
._1a{width:209.774392px;}
._19{width:229.863592px;}
._3b{width:278.712000px;}
._2f{width:287.574000px;}
._35{width:289.072782px;}
._36{width:297.066000px;}
._3a{width:298.116000px;}
._33{width:302.903982px;}
._39{width:309.607813px;}
._1{width:314.068782px;}
._3c{width:335.199625px;}
._30{width:348.582030px;}
._2b{width:360.417577px;}
._34{width:396.029370px;}
._2d{width:410.844000px;}
._10{width:451.912823px;}
._16{width:504.333592px;}
._14{width:510.958762px;}
._f{width:731.807962px;}
._13{width:811.985962px;}
._15{width:858.335962px;}
._17{width:904.918762px;}
._18{width:962.385592px;}
._12{width:1070.831962px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.199200px;}
.y32{bottom:3.199350px;}
.yb8{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y31{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ya5{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y30{bottom:68.037452px;}
.y9c{bottom:69.637197px;}
.yf9{bottom:73.981648px;}
.y131{bottom:76.983148px;}
.y49{bottom:80.880152px;}
.y171{bottom:81.641248px;}
.yae{bottom:82.767600px;}
.y2f{bottom:83.037452px;}
.y9b{bottom:84.635697px;}
.yf8{bottom:88.983148px;}
.y130{bottom:91.981648px;}
.y48{bottom:95.878652px;}
.y170{bottom:96.639748px;}
.yad{bottom:97.766100px;}
.y2e{bottom:98.037452px;}
.y9a{bottom:99.634197px;}
.yf7{bottom:103.981648px;}
.y12f{bottom:106.980148px;}
.y47{bottom:110.877152px;}
.y16f{bottom:111.639748px;}
.yac{bottom:112.764600px;}
.y2d{bottom:113.037452px;}
.yf6{bottom:118.992148px;}
.y46{bottom:125.875652px;}
.yab{bottom:127.763100px;}
.y2c{bottom:128.037452px;}
.y99{bottom:132.637197px;}
.yf5{bottom:133.990648px;}
.y12e{bottom:139.986148px;}
.y45{bottom:140.874152px;}
.y16e{bottom:141.763521px;}
.yaa{bottom:142.761600px;}
.y2b{bottom:143.043452px;}
.y98{bottom:147.635697px;}
.yf4{bottom:148.989148px;}
.y16d{bottom:154.509771px;}
.y12d{bottom:154.984648px;}
.y44{bottom:155.872652px;}
.y2a{bottom:158.037452px;}
.y97{bottom:162.634197px;}
.yf3{bottom:163.987648px;}
.y16c{bottom:167.256021px;}
.y12c{bottom:169.983148px;}
.y43{bottom:170.871152px;}
.y29{bottom:173.043441px;}
.yb7{bottom:174.971100px;}
.y96{bottom:177.634197px;}
.yf2{bottom:178.986148px;}
.y16b{bottom:180.002271px;}
.y12b{bottom:184.981648px;}
.y42{bottom:185.869652px;}
.yb6{bottom:186.216600px;}
.y28{bottom:188.037441px;}
.y16a{bottom:192.748521px;}
.yf1{bottom:193.984648px;}
.y12a{bottom:199.980148px;}
.y27{bottom:203.037441px;}
.yb5{bottom:203.751600px;}
.y169{bottom:205.494771px;}
.yf0{bottom:208.983148px;}
.y95{bottom:210.637209px;}
.yb4{bottom:214.997100px;}
.y26{bottom:218.049441px;}
.y168{bottom:218.241021px;}
.y41{bottom:218.881652px;}
.yef{bottom:223.981648px;}
.y94{bottom:225.635709px;}
.y167{bottom:230.987271px;}
.yb3{bottom:232.532100px;}
.y129{bottom:232.996648px;}
.y25{bottom:233.043441px;}
.y40{bottom:233.880152px;}
.yee{bottom:238.987648px;}
.y93{bottom:240.646209px;}
.y166{bottom:243.733521px;}
.yb2{bottom:243.777600px;}
.y128{bottom:247.995148px;}
.y24{bottom:248.037441px;}
.y3f{bottom:248.878652px;}
.yed{bottom:253.986148px;}
.y92{bottom:255.644709px;}
.y165{bottom:256.479771px;}
.yb1{bottom:261.312600px;}
.y127{bottom:262.993648px;}
.y3e{bottom:263.877152px;}
.y23{bottom:267.493950px;}
.yec{bottom:268.984648px;}
.y164{bottom:269.226021px;}
.y91{bottom:270.643209px;}
.yb0{bottom:272.558100px;}
.y126{bottom:277.992148px;}
.y3d{bottom:278.875652px;}
.y163{bottom:281.972271px;}
.yeb{bottom:283.983148px;}
.y90{bottom:285.641709px;}
.yaf{bottom:290.093100px;}
.y125{bottom:292.990648px;}
.y3c{bottom:293.874152px;}
.y162{bottom:294.718521px;}
.yea{bottom:298.981648px;}
.y19a{bottom:299.026655px;}
.y8f{bottom:300.640209px;}
.y161{bottom:307.464771px;}
.y124{bottom:307.989148px;}
.y3b{bottom:308.872652px;}
.y21{bottom:312.305844px;}
.ye9{bottom:314.001148px;}
.y8e{bottom:315.638709px;}
.y160{bottom:320.211021px;}
.y123{bottom:322.987648px;}
.y3a{bottom:323.871152px;}
.y20{bottom:327.308844px;}
.ye8{bottom:328.999648px;}
.y199{bottom:329.023653px;}
.y8d{bottom:330.637209px;}
.y15f{bottom:332.957271px;}
.y122{bottom:337.986148px;}
.y39{bottom:338.869652px;}
.y1f{bottom:342.307344px;}
.ye7{bottom:343.998148px;}
.y198{bottom:344.022153px;}
.y8c{bottom:345.635709px;}
.y15e{bottom:345.703521px;}
.y38{bottom:353.869652px;}
.y1e{bottom:357.305844px;}
.y15d{bottom:358.449771px;}
.ye6{bottom:358.996648px;}
.y197{bottom:359.020653px;}
.y8b{bottom:360.634209px;}
.y121{bottom:370.980148px;}
.y15c{bottom:371.196021px;}
.y1d{bottom:372.350830px;}
.ye5{bottom:373.995148px;}
.y196{bottom:374.019153px;}
.y15b{bottom:383.942271px;}
.y37{bottom:386.874129px;}
.y1c{bottom:387.349330px;}
.ye4{bottom:388.993648px;}
.y195{bottom:389.017653px;}
.y8a{bottom:393.638686px;}
.y15a{bottom:396.688521px;}
.y36{bottom:401.872629px;}
.ye3{bottom:403.992148px;}
.y120{bottom:403.993648px;}
.y194{bottom:404.016153px;}
.y89{bottom:408.637186px;}
.y159{bottom:409.434771px;}
.y35{bottom:416.871129px;}
.ye2{bottom:418.990648px;}
.y11f{bottom:418.992148px;}
.y193{bottom:419.014653px;}
.y158{bottom:422.181021px;}
.y88{bottom:423.635686px;}
.y34{bottom:431.869629px;}
.y1b{bottom:432.493330px;}
.ye1{bottom:433.989148px;}
.y11e{bottom:433.990648px;}
.y192{bottom:434.013153px;}
.y157{bottom:434.927271px;}
.ya9{bottom:437.254648px;}
.y87{bottom:438.634186px;}
.y156{bottom:447.673521px;}
.ye0{bottom:448.987648px;}
.y11d{bottom:448.989148px;}
.y1a{bottom:448.990330px;}
.ya8{bottom:452.253148px;}
.y191{bottom:456.505653px;}
.y155{bottom:460.419771px;}
.ydf{bottom:463.986148px;}
.y11c{bottom:463.987648px;}
.y19{bottom:465.487330px;}
.ya7{bottom:467.251648px;}
.y190{bottom:471.504153px;}
.y86{bottom:471.644686px;}
.y154{bottom:473.166021px;}
.yde{bottom:478.984648px;}
.y11b{bottom:478.986148px;}
.y18{bottom:481.984330px;}
.y153{bottom:485.912271px;}
.y85{bottom:486.643186px;}
.ydd{bottom:493.983148px;}
.y11a{bottom:493.984648px;}
.y18f{bottom:494.008653px;}
.y17{bottom:498.481330px;}
.y152{bottom:498.658521px;}
.y4d{bottom:500.721739px;}
.y84{bottom:501.641686px;}
.ydc{bottom:508.981648px;}
.y119{bottom:508.983148px;}
.y151{bottom:511.404771px;}
.y16{bottom:514.978330px;}
.y4c{bottom:515.720239px;}
.y18e{bottom:516.513153px;}
.y83{bottom:516.640186px;}
.y118{bottom:523.981648px;}
.ydb{bottom:523.983148px;}
.y150{bottom:524.151021px;}
.y4b{bottom:530.718739px;}
.y15{bottom:531.475330px;}
.y18d{bottom:531.513153px;}
.y82{bottom:531.638686px;}
.y14f{bottom:536.897271px;}
.yda{bottom:538.981648px;}
.y117{bottom:538.989148px;}
.y4a{bottom:545.717239px;}
.y81{bottom:546.637186px;}
.y14{bottom:547.972330px;}
.y14e{bottom:549.643521px;}
.yd9{bottom:553.983148px;}
.y116{bottom:553.987648px;}
.y18c{bottom:561.535653px;}
.y80{bottom:561.635686px;}
.y14d{bottom:562.389771px;}
.y13{bottom:564.469330px;}
.yd8{bottom:568.981648px;}
.y115{bottom:568.986148px;}
.y14c{bottom:575.139771px;}
.y18b{bottom:576.534153px;}
.y7f{bottom:576.634186px;}
.y6b{bottom:577.683944px;}
.y12{bottom:580.966330px;}
.yd7{bottom:583.981648px;}
.y114{bottom:583.984648px;}
.y18a{bottom:591.532653px;}
.y6a{bottom:595.218944px;}
.y11{bottom:597.463330px;}
.y113{bottom:598.983148px;}
.yd6{bottom:598.984648px;}
.y189{bottom:606.531153px;}
.y7e{bottom:609.638686px;}
.y69{bottom:612.753944px;}
.y10{bottom:613.960330px;}
.y112{bottom:613.981648px;}
.yd5{bottom:613.983148px;}
.y188{bottom:621.529653px;}
.y7d{bottom:624.637186px;}
.y14b{bottom:624.639771px;}
.y111{bottom:628.980148px;}
.yd4{bottom:628.981648px;}
.y68{bottom:630.288944px;}
.yf{bottom:630.457330px;}
.y187{bottom:636.528153px;}
.y7c{bottom:639.635686px;}
.yd3{bottom:643.986148px;}
.ye{bottom:646.954330px;}
.y67{bottom:647.823944px;}
.y186{bottom:651.526653px;}
.y7b{bottom:654.634186px;}
.y14a{bottom:654.647271px;}
.yd2{bottom:658.984648px;}
.y110{bottom:661.984648px;}
.y66{bottom:665.358944px;}
.y185{bottom:666.525153px;}
.y149{bottom:669.645771px;}
.yd1{bottom:673.983148px;}
.yd{bottom:676.954330px;}
.y10f{bottom:676.983148px;}
.y184{bottom:681.523653px;}
.y65{bottom:682.893944px;}
.y148{bottom:684.644271px;}
.y7a{bottom:687.643186px;}
.yd0{bottom:688.981648px;}
.y10e{bottom:691.981648px;}
.yc{bottom:694.954330px;}
.y183{bottom:696.522153px;}
.y147{bottom:699.642771px;}
.y64{bottom:700.428944px;}
.y79{bottom:702.641686px;}
.ycf{bottom:703.980148px;}
.y10d{bottom:706.980148px;}
.y182{bottom:711.520653px;}
.yb{bottom:712.954330px;}
.y146{bottom:714.641271px;}
.y78{bottom:717.640186px;}
.y63{bottom:717.963944px;}
.yce{bottom:718.980148px;}
.y181{bottom:726.519153px;}
.y145{bottom:729.639771px;}
.ya{bottom:730.954330px;}
.y77{bottom:732.638686px;}
.y62{bottom:735.498944px;}
.y10c{bottom:739.987694px;}
.y180{bottom:741.517653px;}
.y76{bottom:747.637186px;}
.y9{bottom:748.954330px;}
.ycd{bottom:751.992194px;}
.y61{bottom:753.033944px;}
.y10b{bottom:754.986194px;}
.y17f{bottom:756.516153px;}
.y75{bottom:762.635686px;}
.y144{bottom:762.647271px;}
.ycc{bottom:766.990694px;}
.y10a{bottom:769.984694px;}
.y60{bottom:770.568944px;}
.y17e{bottom:771.514653px;}
.y74{bottom:777.634186px;}
.y143{bottom:777.645771px;}
.y8{bottom:781.936376px;}
.ycb{bottom:781.989194px;}
.y109{bottom:784.983194px;}
.y17d{bottom:786.513153px;}
.y5f{bottom:788.103944px;}
.y142{bottom:792.644271px;}
.yca{bottom:796.987694px;}
.y108{bottom:799.981694px;}
.y17c{bottom:801.513153px;}
.y5e{bottom:805.638944px;}
.y141{bottom:807.642771px;}
.y73{bottom:810.643186px;}
.yc9{bottom:811.986194px;}
.y107{bottom:814.980194px;}
.y140{bottom:822.641271px;}
.y5d{bottom:823.173944px;}
.y72{bottom:825.641686px;}
.y7{bottom:826.942376px;}
.yc8{bottom:826.984694px;}
.y106{bottom:829.980194px;}
.y17b{bottom:832.992194px;}
.y13f{bottom:837.639771px;}
.y71{bottom:840.640186px;}
.y5c{bottom:840.708944px;}
.yc7{bottom:841.983194px;}
.y17a{bottom:847.990694px;}
.y70{bottom:855.638686px;}
.yc6{bottom:856.981694px;}
.y5b{bottom:858.243944px;}
.y105{bottom:862.987694px;}
.y179{bottom:862.989194px;}
.y6f{bottom:870.637186px;}
.y13e{bottom:870.644271px;}
.y6{bottom:871.948376px;}
.yc5{bottom:871.980194px;}
.y5a{bottom:875.778944px;}
.y104{bottom:877.986194px;}
.y178{bottom:877.987694px;}
.y6e{bottom:885.635686px;}
.y13d{bottom:885.642771px;}
.yc4{bottom:886.980194px;}
.y103{bottom:892.984694px;}
.y177{bottom:892.986194px;}
.y59{bottom:893.313944px;}
.y6d{bottom:900.634186px;}
.y13c{bottom:900.641271px;}
.y102{bottom:907.983194px;}
.y176{bottom:907.984694px;}
.y58{bottom:910.848944px;}
.y13b{bottom:915.644271px;}
.y5{bottom:916.954376px;}
.yc3{bottom:919.989194px;}
.y101{bottom:922.981694px;}
.y175{bottom:922.983194px;}
.y22{bottom:924.602509px;}
.y57{bottom:928.383944px;}
.y13a{bottom:930.642771px;}
.yc2{bottom:934.987694px;}
.y174{bottom:937.981694px;}
.y100{bottom:937.995194px;}
.y139{bottom:945.641271px;}
.y56{bottom:945.918944px;}
.yc1{bottom:949.986194px;}
.y173{bottom:952.980194px;}
.yff{bottom:952.993694px;}
.y138{bottom:960.639771px;}
.y55{bottom:963.453944px;}
.yc0{bottom:964.984694px;}
.y172{bottom:967.980194px;}
.yfe{bottom:967.992194px;}
.y9e{bottom:969.023106px;}
.ybf{bottom:979.983194px;}
.y54{bottom:980.988944px;}
.yfd{bottom:982.990694px;}
.y9d{bottom:984.021606px;}
.y137{bottom:993.644271px;}
.ybe{bottom:994.981694px;}
.yfc{bottom:997.989194px;}
.y53{bottom:998.523944px;}
.y136{bottom:1008.642771px;}
.ybd{bottom:1009.980194px;}
.yfb{bottom:1012.987694px;}
.ya3{bottom:1016.058486px;}
.y52{bottom:1016.058944px;}
.y135{bottom:1023.641271px;}
.yfa{bottom:1027.986194px;}
.ya2{bottom:1033.593486px;}
.y51{bottom:1033.593944px;}
.y134{bottom:1038.639771px;}
.ybc{bottom:1042.984694px;}
.ya1{bottom:1051.128486px;}
.y50{bottom:1051.128944px;}
.ybb{bottom:1057.983194px;}
.ya0{bottom:1068.663486px;}
.y4f{bottom:1068.663944px;}
.y133{bottom:1071.641271px;}
.yba{bottom:1072.981694px;}
.y9f{bottom:1086.198486px;}
.y4e{bottom:1086.198944px;}
.y132{bottom:1086.639771px;}
.yb9{bottom:1087.980194px;}
.y6c{bottom:1140.640320px;}
.ya6{bottom:1140.746521px;}
.y33{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.he{height:30.684631px;}
.h3{height:34.523438px;}
.h2b{height:35.411133px;}
.h11{height:36.681152px;}
.h9{height:38.838867px;}
.h17{height:41.538000px;}
.h16{height:43.008000px;}
.h19{height:43.154297px;}
.h2e{height:44.505000px;}
.h2d{height:45.090000px;}
.h2{height:45.679688px;}
.h4{height:45.703125px;}
.h2c{height:46.080000px;}
.h10{height:48.462668px;}
.hf{height:48.534668px;}
.h12{height:49.373525px;}
.h8{height:51.416016px;}
.ha{height:53.406000px;}
.hb{height:53.427369px;}
.h20{height:53.529863px;}
.h27{height:53.547863px;}
.h25{height:53.553680px;}
.h18{height:53.565863px;}
.h22{height:53.565907px;}
.h26{height:53.577863px;}
.h21{height:53.583863px;}
.h1c{height:53.589863px;}
.h28{height:53.589907px;}
.hc{height:53.595314px;}
.h2a{height:53.595680px;}
.h1d{height:53.595863px;}
.h1f{height:53.601863px;}
.h23{height:53.601907px;}
.h29{height:53.607680px;}
.h1e{height:53.607863px;}
.h24{height:53.613680px;}
.h15{height:54.108000px;}
.h14{height:55.296000px;}
.h5{height:57.099609px;}
.h7{height:57.128906px;}
.h13{height:62.841797px;}
.h1b{height:64.050000px;}
.h1a{height:87.990000px;}
.hd{height:102.832031px;}
.h6{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.228350px;}
.x3{left:61.887897px;}
.xe{left:66.374691px;}
.x6{left:141.395702px;}
.xc{left:215.128189px;}
.x5{left:233.858253px;}
.x9{left:238.570496px;}
.x8{left:251.853753px;}
.xf{left:253.630632px;}
.x10{left:302.498703px;}
.xb{left:320.890990px;}
.xd{left:439.103687px;}
.x4{left:586.814117px;}
.xa{left:797.390808px;}
.x2{left:798.901611px;}
.x1{left:825.774628px;}
@media print{
.v7{vertical-align:-16.799805pt;}
.v4{vertical-align:-15.866700pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.634195pt;}
.v2{vertical-align:18.666667pt;}
.v6{vertical-align:20.010667pt;}
.v5{vertical-align:39.984000pt;}
.ls14{letter-spacing:-4.656000pt;}
.ls15{letter-spacing:-1.493333pt;}
.ls3c{letter-spacing:-0.920000pt;}
.ls2a{letter-spacing:-0.624000pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.288000pt;}
.ls35{letter-spacing:-0.280000pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls37{letter-spacing:-0.200000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.186667pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls25{letter-spacing:-0.124800pt;}
.ls32{letter-spacing:-0.120000pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.040000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011754pt;}
.ls6{letter-spacing:0.011917pt;}
.ls3{letter-spacing:0.012242pt;}
.ls4{letter-spacing:0.012405pt;}
.lsc{letter-spacing:0.017996pt;}
.ls33{letter-spacing:0.040000pt;}
.ls19{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.120000pt;}
.ls31{letter-spacing:0.140000pt;}
.ls1b{letter-spacing:0.140400pt;}
.ls18{letter-spacing:0.141187pt;}
.lsa{letter-spacing:0.141350pt;}
.ls29{letter-spacing:0.142001pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls27{letter-spacing:0.156000pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.180000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.200000pt;}
.ls2b{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.240000pt;}
.ls39{letter-spacing:0.280000pt;}
.ls21{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.302402pt;}
.ls3a{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.336000pt;}
.ls1a{letter-spacing:0.398349pt;}
.ls8{letter-spacing:0.416253pt;}
.ls3f{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:0.520000pt;}
.lse{letter-spacing:0.528000pt;}
.ls38{letter-spacing:0.560000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.624000pt;}
.ls23{letter-spacing:0.672000pt;}
.ls40{letter-spacing:0.720000pt;}
.ls30{letter-spacing:1.560000pt;}
.ls0{letter-spacing:1.664000pt;}
.ls1{letter-spacing:2.666667pt;}
.lsb{letter-spacing:6.747867pt;}
.ws1{word-spacing:-13.333333pt;}
.wsa3{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.085333pt;}
.ws83{word-spacing:-11.376000pt;}
.ws2{word-spacing:-10.986667pt;}
.ws8e{word-spacing:-10.896000pt;}
.ws6e{word-spacing:-10.848000pt;}
.ws86{word-spacing:-10.752000pt;}
.ws9f{word-spacing:-10.704000pt;}
.ws20{word-spacing:-10.656000pt;}
.ws85{word-spacing:-10.560000pt;}
.ws67{word-spacing:-10.416000pt;}
.wsa2{word-spacing:-10.272000pt;}
.wsa8{word-spacing:-9.360000pt;}
.wsa9{word-spacing:-9.320000pt;}
.wsaa{word-spacing:-9.260000pt;}
.wsab{word-spacing:-9.200000pt;}
.wsa6{word-spacing:-9.120000pt;}
.wsa7{word-spacing:-8.960000pt;}
.wsa5{word-spacing:-8.880000pt;}
.wsa4{word-spacing:-8.680000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws70{word-spacing:-7.238400pt;}
.ws3b{word-spacing:-7.082400pt;}
.ws6f{word-spacing:-6.957600pt;}
.ws3{word-spacing:-5.893333pt;}
.wsc8{word-spacing:-5.640000pt;}
.wsc9{word-spacing:-5.360000pt;}
.wsc5{word-spacing:-5.200000pt;}
.wsc7{word-spacing:-5.120000pt;}
.ws80{word-spacing:-4.896000pt;}
.ws66{word-spacing:-3.808000pt;}
.ws64{word-spacing:-3.312000pt;}
.ws3e{word-spacing:-3.093333pt;}
.ws91{word-spacing:-2.976000pt;}
.ws40{word-spacing:-2.352000pt;}
.ws8{word-spacing:-2.346667pt;}
.ws41{word-spacing:-2.160000pt;}
.ws9{word-spacing:-2.080000pt;}
.wsaf{word-spacing:-2.016000pt;}
.ws4e{word-spacing:-1.920000pt;}
.ws76{word-spacing:-1.872000pt;}
.ws77{word-spacing:-1.632000pt;}
.ws2e{word-spacing:-1.488000pt;}
.ws5d{word-spacing:-1.392000pt;}
.ws51{word-spacing:-1.296000pt;}
.ws6{word-spacing:-1.280000pt;}
.ws4d{word-spacing:-1.152000pt;}
.ws2b{word-spacing:-1.104000pt;}
.wsb7{word-spacing:-1.080000pt;}
.wsb2{word-spacing:-1.066667pt;}
.ws81{word-spacing:-1.056000pt;}
.ws7{word-spacing:-1.013333pt;}
.ws9d{word-spacing:-1.008000pt;}
.ws87{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.920000pt;}
.ws8a{word-spacing:-0.864000pt;}
.ws31{word-spacing:-0.816000pt;}
.ws5{word-spacing:-0.810667pt;}
.ws4c{word-spacing:-0.768000pt;}
.ws7c{word-spacing:-0.720000pt;}
.ws82{word-spacing:-0.672000pt;}
.ws8c{word-spacing:-0.624000pt;}
.wscb{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.576000pt;}
.wsb8{word-spacing:-0.560000pt;}
.wsb4{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.432000pt;}
.wsbe{word-spacing:-0.400000pt;}
.ws36{word-spacing:-0.384000pt;}
.ws96{word-spacing:-0.336000pt;}
.ws61{word-spacing:-0.288000pt;}
.ws57{word-spacing:-0.240000pt;}
.wsbd{word-spacing:-0.200000pt;}
.wsb{word-spacing:-0.192000pt;}
.wsba{word-spacing:-0.160000pt;}
.wsc4{word-spacing:-0.120000pt;}
.ws9b{word-spacing:-0.096000pt;}
.ws4{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.048000pt;}
.ws43{word-spacing:0.144000pt;}
.wsc6{word-spacing:0.160000pt;}
.ws65{word-spacing:0.186667pt;}
.ws49{word-spacing:0.192000pt;}
.ws7b{word-spacing:0.240000pt;}
.ws56{word-spacing:0.288000pt;}
.wsb9{word-spacing:0.320000pt;}
.wsf{word-spacing:0.336000pt;}
.ws7f{word-spacing:0.384000pt;}
.wsc3{word-spacing:0.400000pt;}
.ws5e{word-spacing:0.432000pt;}
.ws44{word-spacing:0.480000pt;}
.ws17{word-spacing:0.498667pt;}
.ws7d{word-spacing:0.528000pt;}
.wsca{word-spacing:0.576000pt;}
.ws97{word-spacing:0.624000pt;}
.wsb3{word-spacing:0.672000pt;}
.wsae{word-spacing:0.693333pt;}
.ws7a{word-spacing:0.720000pt;}
.ws79{word-spacing:0.746667pt;}
.wsb1{word-spacing:0.768000pt;}
.ws10{word-spacing:0.816000pt;}
.wscc{word-spacing:0.864000pt;}
.wsbf{word-spacing:0.880000pt;}
.ws90{word-spacing:0.912000pt;}
.wsbb{word-spacing:0.920000pt;}
.ws8b{word-spacing:1.008000pt;}
.ws84{word-spacing:1.056000pt;}
.wsc0{word-spacing:1.080000pt;}
.wsc{word-spacing:1.104000pt;}
.wsc1{word-spacing:1.120000pt;}
.ws78{word-spacing:1.173333pt;}
.ws8f{word-spacing:1.200000pt;}
.ws9a{word-spacing:1.248000pt;}
.wsc2{word-spacing:1.280000pt;}
.ws9c{word-spacing:1.296000pt;}
.wsbc{word-spacing:1.320000pt;}
.ws58{word-spacing:1.344000pt;}
.ws89{word-spacing:1.440000pt;}
.wse{word-spacing:1.536000pt;}
.wsd{word-spacing:1.584000pt;}
.ws1d{word-spacing:1.586667pt;}
.ws5b{word-spacing:1.728000pt;}
.ws88{word-spacing:1.776000pt;}
.ws3a{word-spacing:1.824000pt;}
.ws72{word-spacing:1.872000pt;}
.ws54{word-spacing:1.920000pt;}
.ws93{word-spacing:2.016000pt;}
.ws92{word-spacing:2.112000pt;}
.ws1a{word-spacing:2.130667pt;}
.ws35{word-spacing:2.256000pt;}
.ws5a{word-spacing:2.496000pt;}
.ws37{word-spacing:2.688000pt;}
.ws48{word-spacing:2.784000pt;}
.ws9e{word-spacing:2.928000pt;}
.ws34{word-spacing:3.024000pt;}
.ws33{word-spacing:3.040000pt;}
.ws30{word-spacing:3.072000pt;}
.ws71{word-spacing:3.120000pt;}
.ws4f{word-spacing:3.264000pt;}
.ws2f{word-spacing:3.312000pt;}
.wsa0{word-spacing:3.360000pt;}
.ws42{word-spacing:3.408000pt;}
.wsb5{word-spacing:3.413333pt;}
.ws32{word-spacing:3.504000pt;}
.ws47{word-spacing:3.552000pt;}
.ws59{word-spacing:3.840000pt;}
.ws52{word-spacing:3.888000pt;}
.ws50{word-spacing:3.984000pt;}
.ws19{word-spacing:4.080000pt;}
.ws2d{word-spacing:4.106667pt;}
.ws73{word-spacing:4.272000pt;}
.wsa1{word-spacing:4.416000pt;}
.ws46{word-spacing:4.608000pt;}
.ws3f{word-spacing:4.656000pt;}
.ws5c{word-spacing:4.704000pt;}
.wsce{word-spacing:5.040000pt;}
.ws4b{word-spacing:5.088000pt;}
.ws53{word-spacing:5.136000pt;}
.ws1b{word-spacing:5.168000pt;}
.ws4a{word-spacing:5.173333pt;}
.ws60{word-spacing:5.280000pt;}
.ws18{word-spacing:5.304000pt;}
.ws5f{word-spacing:5.333333pt;}
.ws55{word-spacing:5.424000pt;}
.wscf{word-spacing:5.568000pt;}
.ws45{word-spacing:5.616000pt;}
.ws38{word-spacing:5.712000pt;}
.ws39{word-spacing:5.760000pt;}
.wsb0{word-spacing:5.952000pt;}
.wscd{word-spacing:6.000000pt;}
.ws98{word-spacing:6.048000pt;}
.ws75{word-spacing:6.096000pt;}
.ws74{word-spacing:6.133333pt;}
.ws99{word-spacing:6.240000pt;}
.wsad{word-spacing:6.576000pt;}
.wsac{word-spacing:6.666667pt;}
.ws1c{word-spacing:6.936000pt;}
.ws95{word-spacing:7.200000pt;}
.ws94{word-spacing:7.306667pt;}
.ws14{word-spacing:9.157333pt;}
.ws1e{word-spacing:10.381333pt;}
.ws12{word-spacing:10.880000pt;}
.ws15{word-spacing:10.925333pt;}
.ws16{word-spacing:12.784000pt;}
.ws6d{word-spacing:13.584000pt;}
.ws13{word-spacing:14.869333pt;}
.ws63{word-spacing:17.952000pt;}
.ws62{word-spacing:18.133333pt;}
.ws11{word-spacing:45.152000pt;}
.ws69{word-spacing:84.111993pt;}
.ws6b{word-spacing:101.061326pt;}
.ws6c{word-spacing:119.616000pt;}
.ws3d{word-spacing:205.333333pt;}
.ws68{word-spacing:391.555733pt;}
.ws3c{word-spacing:408.464000pt;}
.ws6a{word-spacing:428.997333pt;}
.ws27{word-spacing:782.357300pt;}
.ws29{word-spacing:856.617033pt;}
.ws26{word-spacing:865.913033pt;}
.ws28{word-spacing:895.443700pt;}
.ws23{word-spacing:949.274633pt;}
.ws21{word-spacing:954.165300pt;}
.ws22{word-spacing:982.015966pt;}
.ws24{word-spacing:1023.866633pt;}
.ws25{word-spacing:1032.863966pt;}
.ws2a{word-spacing:1052.314633pt;}
._28{margin-left:-22.947189pt;}
._31{margin-left:-18.624006pt;}
._3f{margin-left:-12.291173pt;}
._6{margin-left:-11.390907pt;}
._d{margin-left:-9.776027pt;}
._21{margin-left:-7.979733pt;}
._23{margin-left:-6.816000pt;}
._c{margin-left:-5.147733pt;}
._4{margin-left:-4.024525pt;}
._2{margin-left:-2.870400pt;}
._0{margin-left:-1.668267pt;}
._3{width:1.023973pt;}
._5{width:1.983835pt;}
._37{width:3.546667pt;}
._20{width:4.656000pt;}
._9{width:6.419200pt;}
._7{width:8.005861pt;}
._a{width:10.213600pt;}
._8{width:11.365067pt;}
._3e{width:12.288000pt;}
._e{width:14.219733pt;}
._43{width:15.240000pt;}
._42{width:16.895990pt;}
._27{width:24.096989pt;}
._41{width:32.016000pt;}
._40{width:34.752000pt;}
._3d{width:35.900277pt;}
._24{width:37.293921pt;}
._b{width:39.004698pt;}
._22{width:41.133450pt;}
._26{width:43.080443pt;}
._25{width:44.135483pt;}
._1f{width:45.491187pt;}
._29{width:48.515234pt;}
._32{width:50.959993pt;}
._1d{width:66.866100pt;}
._1e{width:74.029860pt;}
._11{width:74.947220pt;}
._38{width:75.898660pt;}
._1c{width:106.178100pt;}
._2a{width:125.510400pt;}
._2c{width:145.692766pt;}
._1b{width:154.098127pt;}
._2e{width:160.048000pt;}
._1a{width:186.466127pt;}
._19{width:204.323193pt;}
._3b{width:247.744000pt;}
._2f{width:255.621333pt;}
._35{width:256.953584pt;}
._36{width:264.058667pt;}
._3a{width:264.992000pt;}
._33{width:269.247984pt;}
._39{width:275.206945pt;}
._1{width:279.172251pt;}
._3c{width:297.955222pt;}
._30{width:309.850694pt;}
._2b{width:320.371180pt;}
._34{width:352.026106pt;}
._2d{width:365.194667pt;}
._10{width:401.700287pt;}
._16{width:448.296527pt;}
._14{width:454.185566pt;}
._f{width:650.495966pt;}
._13{width:721.765300pt;}
._15{width:762.965300pt;}
._17{width:804.372233pt;}
._18{width:855.453860pt;}
._12{width:951.850633pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.843733pt;}
.y32{bottom:2.843867pt;}
.yb8{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y31{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ya5{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y30{bottom:60.477735pt;}
.y9c{bottom:61.899731pt;}
.yf9{bottom:65.761465pt;}
.y131{bottom:68.429465pt;}
.y49{bottom:71.893468pt;}
.y171{bottom:72.569998pt;}
.yae{bottom:73.571200pt;}
.y2f{bottom:73.811069pt;}
.y9b{bottom:75.231731pt;}
.yf8{bottom:79.096132pt;}
.y130{bottom:81.761465pt;}
.y48{bottom:85.225468pt;}
.y170{bottom:85.901998pt;}
.yad{bottom:86.903200pt;}
.y2e{bottom:87.144402pt;}
.y9a{bottom:88.563731pt;}
.yf7{bottom:92.428132pt;}
.y12f{bottom:95.093465pt;}
.y47{bottom:98.557468pt;}
.y16f{bottom:99.235331pt;}
.yac{bottom:100.235200pt;}
.y2d{bottom:100.477735pt;}
.yf6{bottom:105.770799pt;}
.y46{bottom:111.889468pt;}
.yab{bottom:113.567200pt;}
.y2c{bottom:113.811069pt;}
.y99{bottom:117.899731pt;}
.yf5{bottom:119.102799pt;}
.y12e{bottom:124.432132pt;}
.y45{bottom:125.221468pt;}
.y16e{bottom:126.012018pt;}
.yaa{bottom:126.899200pt;}
.y2b{bottom:127.149735pt;}
.y98{bottom:131.231731pt;}
.yf4{bottom:132.434799pt;}
.y16d{bottom:137.342018pt;}
.y12d{bottom:137.764132pt;}
.y44{bottom:138.553468pt;}
.y2a{bottom:140.477735pt;}
.y97{bottom:144.563731pt;}
.yf3{bottom:145.766799pt;}
.y16c{bottom:148.672018pt;}
.y12c{bottom:151.096132pt;}
.y43{bottom:151.885468pt;}
.y29{bottom:153.816392pt;}
.yb7{bottom:155.529867pt;}
.y96{bottom:157.897064pt;}
.yf2{bottom:159.098799pt;}
.y16b{bottom:160.002018pt;}
.y12b{bottom:164.428132pt;}
.y42{bottom:165.217468pt;}
.yb6{bottom:165.525867pt;}
.y28{bottom:167.144392pt;}
.y16a{bottom:171.332018pt;}
.yf1{bottom:172.430799pt;}
.y12a{bottom:177.760132pt;}
.y27{bottom:180.477725pt;}
.yb5{bottom:181.112533pt;}
.y169{bottom:182.662018pt;}
.yf0{bottom:185.762799pt;}
.y95{bottom:187.233074pt;}
.yb4{bottom:191.108533pt;}
.y26{bottom:193.821725pt;}
.y168{bottom:193.992018pt;}
.y41{bottom:194.561468pt;}
.yef{bottom:199.094799pt;}
.y94{bottom:200.565074pt;}
.y167{bottom:205.322018pt;}
.yb3{bottom:206.695200pt;}
.y129{bottom:207.108132pt;}
.y25{bottom:207.149725pt;}
.y40{bottom:207.893468pt;}
.yee{bottom:212.433465pt;}
.y93{bottom:213.907741pt;}
.y166{bottom:216.652018pt;}
.yb2{bottom:216.691200pt;}
.y128{bottom:220.440132pt;}
.y24{bottom:220.477725pt;}
.y3f{bottom:221.225468pt;}
.yed{bottom:225.765465pt;}
.y92{bottom:227.239741pt;}
.y165{bottom:227.982018pt;}
.yb1{bottom:232.277867pt;}
.y127{bottom:233.772132pt;}
.y3e{bottom:234.557468pt;}
.y23{bottom:237.772400pt;}
.yec{bottom:239.097465pt;}
.y164{bottom:239.312018pt;}
.y91{bottom:240.571741pt;}
.yb0{bottom:242.273867pt;}
.y126{bottom:247.104132pt;}
.y3d{bottom:247.889468pt;}
.y163{bottom:250.642018pt;}
.yeb{bottom:252.429465pt;}
.y90{bottom:253.903741pt;}
.yaf{bottom:257.860533pt;}
.y125{bottom:260.436132pt;}
.y3c{bottom:261.221468pt;}
.y162{bottom:261.972018pt;}
.yea{bottom:265.761465pt;}
.y19a{bottom:265.801471pt;}
.y8f{bottom:267.235741pt;}
.y161{bottom:273.302018pt;}
.y124{bottom:273.768132pt;}
.y3b{bottom:274.553468pt;}
.y21{bottom:277.605195pt;}
.ye9{bottom:279.112132pt;}
.y8e{bottom:280.567741pt;}
.y160{bottom:284.632018pt;}
.y123{bottom:287.100132pt;}
.y3a{bottom:287.885468pt;}
.y20{bottom:290.941195pt;}
.ye8{bottom:292.444132pt;}
.y199{bottom:292.465469pt;}
.y8d{bottom:293.899741pt;}
.y15f{bottom:295.962018pt;}
.y122{bottom:300.432132pt;}
.y39{bottom:301.217468pt;}
.y1f{bottom:304.273195pt;}
.ye7{bottom:305.776132pt;}
.y198{bottom:305.797469pt;}
.y8c{bottom:307.231741pt;}
.y15e{bottom:307.292018pt;}
.y38{bottom:314.550802pt;}
.y1e{bottom:317.605195pt;}
.y15d{bottom:318.622018pt;}
.ye6{bottom:319.108132pt;}
.y197{bottom:319.129469pt;}
.y8b{bottom:320.563741pt;}
.y121{bottom:329.760132pt;}
.y15c{bottom:329.952018pt;}
.y1d{bottom:330.978516pt;}
.ye5{bottom:332.440132pt;}
.y196{bottom:332.461469pt;}
.y15b{bottom:341.282018pt;}
.y37{bottom:343.888115pt;}
.y1c{bottom:344.310516pt;}
.ye4{bottom:345.772132pt;}
.y195{bottom:345.793469pt;}
.y8a{bottom:349.901054pt;}
.y15a{bottom:352.612018pt;}
.y36{bottom:357.220115pt;}
.ye3{bottom:359.104132pt;}
.y120{bottom:359.105465pt;}
.y194{bottom:359.125469pt;}
.y89{bottom:363.233054pt;}
.y159{bottom:363.942018pt;}
.y35{bottom:370.552115pt;}
.ye2{bottom:372.436132pt;}
.y11f{bottom:372.437465pt;}
.y193{bottom:372.457469pt;}
.y158{bottom:375.272018pt;}
.y88{bottom:376.565054pt;}
.y34{bottom:383.884115pt;}
.y1b{bottom:384.438516pt;}
.ye1{bottom:385.768132pt;}
.y11e{bottom:385.769465pt;}
.y192{bottom:385.789469pt;}
.y157{bottom:386.602018pt;}
.ya9{bottom:388.670798pt;}
.y87{bottom:389.897054pt;}
.y156{bottom:397.932018pt;}
.ye0{bottom:399.100132pt;}
.y11d{bottom:399.101465pt;}
.y1a{bottom:399.102516pt;}
.ya8{bottom:402.002798pt;}
.y191{bottom:405.782803pt;}
.y155{bottom:409.262018pt;}
.ydf{bottom:412.432132pt;}
.y11c{bottom:412.433465pt;}
.y19{bottom:413.766516pt;}
.ya7{bottom:415.334798pt;}
.y190{bottom:419.114803pt;}
.y86{bottom:419.239721pt;}
.y154{bottom:420.592018pt;}
.yde{bottom:425.764132pt;}
.y11b{bottom:425.765465pt;}
.y18{bottom:428.430516pt;}
.y153{bottom:431.922018pt;}
.y85{bottom:432.571721pt;}
.ydd{bottom:439.096132pt;}
.y11a{bottom:439.097465pt;}
.y18f{bottom:439.118803pt;}
.y17{bottom:443.094516pt;}
.y152{bottom:443.252018pt;}
.y4d{bottom:445.085991pt;}
.y84{bottom:445.903721pt;}
.ydc{bottom:452.428132pt;}
.y119{bottom:452.429465pt;}
.y151{bottom:454.582018pt;}
.y16{bottom:457.758516pt;}
.y4c{bottom:458.417991pt;}
.y18e{bottom:459.122803pt;}
.y83{bottom:459.235721pt;}
.y118{bottom:465.761465pt;}
.ydb{bottom:465.762799pt;}
.y150{bottom:465.912018pt;}
.y4b{bottom:471.749991pt;}
.y15{bottom:472.422516pt;}
.y18d{bottom:472.456136pt;}
.y82{bottom:472.567721pt;}
.y14f{bottom:477.242018pt;}
.yda{bottom:479.094799pt;}
.y117{bottom:479.101465pt;}
.y4a{bottom:485.081991pt;}
.y81{bottom:485.899721pt;}
.y14{bottom:487.086516pt;}
.y14e{bottom:488.572018pt;}
.yd9{bottom:492.429465pt;}
.y116{bottom:492.433465pt;}
.y18c{bottom:499.142803pt;}
.y80{bottom:499.231721pt;}
.y14d{bottom:499.902018pt;}
.y13{bottom:501.750516pt;}
.yd8{bottom:505.761465pt;}
.y115{bottom:505.765465pt;}
.y14c{bottom:511.235352pt;}
.y18b{bottom:512.474803pt;}
.y7f{bottom:512.563721pt;}
.y6b{bottom:513.496839pt;}
.y12{bottom:516.414516pt;}
.yd7{bottom:519.094799pt;}
.y114{bottom:519.097465pt;}
.y18a{bottom:525.806803pt;}
.y6a{bottom:529.083506pt;}
.y11{bottom:531.078516pt;}
.y113{bottom:532.429465pt;}
.yd6{bottom:532.430799pt;}
.y189{bottom:539.138803pt;}
.y7e{bottom:541.901054pt;}
.y69{bottom:544.670173pt;}
.y10{bottom:545.742516pt;}
.y112{bottom:545.761465pt;}
.yd5{bottom:545.762799pt;}
.y188{bottom:552.470803pt;}
.y7d{bottom:555.233054pt;}
.y14b{bottom:555.235352pt;}
.y111{bottom:559.093465pt;}
.yd4{bottom:559.094799pt;}
.y68{bottom:560.256839pt;}
.yf{bottom:560.406516pt;}
.y187{bottom:565.802803pt;}
.y7c{bottom:568.565054pt;}
.yd3{bottom:572.432132pt;}
.ye{bottom:575.070516pt;}
.y67{bottom:575.843506pt;}
.y186{bottom:579.134803pt;}
.y7b{bottom:581.897054pt;}
.y14a{bottom:581.908685pt;}
.yd2{bottom:585.764132pt;}
.y110{bottom:588.430799pt;}
.y66{bottom:591.430173pt;}
.y185{bottom:592.466803pt;}
.y149{bottom:595.240685pt;}
.yd1{bottom:599.096132pt;}
.yd{bottom:601.737183pt;}
.y10f{bottom:601.762799pt;}
.y184{bottom:605.798803pt;}
.y65{bottom:607.016839pt;}
.y148{bottom:608.572685pt;}
.y7a{bottom:611.238387pt;}
.yd0{bottom:612.428132pt;}
.y10e{bottom:615.094799pt;}
.yc{bottom:617.737183pt;}
.y183{bottom:619.130803pt;}
.y147{bottom:621.904685pt;}
.y64{bottom:622.603506pt;}
.y79{bottom:624.570387pt;}
.ycf{bottom:625.760132pt;}
.y10d{bottom:628.426799pt;}
.y182{bottom:632.462803pt;}
.yb{bottom:633.737183pt;}
.y146{bottom:635.236685pt;}
.y78{bottom:637.902387pt;}
.y63{bottom:638.190173pt;}
.yce{bottom:639.093465pt;}
.y181{bottom:645.794803pt;}
.y145{bottom:648.568685pt;}
.ya{bottom:649.737183pt;}
.y77{bottom:651.234387pt;}
.y62{bottom:653.776839pt;}
.y10c{bottom:657.766839pt;}
.y180{bottom:659.126803pt;}
.y76{bottom:664.566387pt;}
.y9{bottom:665.737183pt;}
.ycd{bottom:668.437506pt;}
.y61{bottom:669.363506pt;}
.y10b{bottom:671.098839pt;}
.y17f{bottom:672.458803pt;}
.y75{bottom:677.898387pt;}
.y144{bottom:677.908685pt;}
.ycc{bottom:681.769506pt;}
.y10a{bottom:684.430839pt;}
.y60{bottom:684.950173pt;}
.y17e{bottom:685.790803pt;}
.y74{bottom:691.230387pt;}
.y143{bottom:691.240685pt;}
.y8{bottom:695.054557pt;}
.ycb{bottom:695.101506pt;}
.y109{bottom:697.762839pt;}
.y17d{bottom:699.122803pt;}
.y5f{bottom:700.536839pt;}
.y142{bottom:704.572685pt;}
.yca{bottom:708.433506pt;}
.y108{bottom:711.094839pt;}
.y17c{bottom:712.456136pt;}
.y5e{bottom:716.123506pt;}
.y141{bottom:717.904685pt;}
.y73{bottom:720.571721pt;}
.yc9{bottom:721.765506pt;}
.y107{bottom:724.426839pt;}
.y140{bottom:731.236685pt;}
.y5d{bottom:731.710173pt;}
.y72{bottom:733.903721pt;}
.y7{bottom:735.059890pt;}
.yc8{bottom:735.097506pt;}
.y106{bottom:737.760173pt;}
.y17b{bottom:740.437506pt;}
.y13f{bottom:744.568685pt;}
.y71{bottom:747.235721pt;}
.y5c{bottom:747.296839pt;}
.yc7{bottom:748.429506pt;}
.y17a{bottom:753.769506pt;}
.y70{bottom:760.567721pt;}
.yc6{bottom:761.761506pt;}
.y5b{bottom:762.883506pt;}
.y105{bottom:767.100173pt;}
.y179{bottom:767.101506pt;}
.y6f{bottom:773.899721pt;}
.y13e{bottom:773.906018pt;}
.y6{bottom:775.065223pt;}
.yc5{bottom:775.093506pt;}
.y5a{bottom:778.470173pt;}
.y104{bottom:780.432173pt;}
.y178{bottom:780.433506pt;}
.y6e{bottom:787.231721pt;}
.y13d{bottom:787.238018pt;}
.yc4{bottom:788.426839pt;}
.y103{bottom:793.764173pt;}
.y177{bottom:793.765506pt;}
.y59{bottom:794.056839pt;}
.y6d{bottom:800.563721pt;}
.y13c{bottom:800.570018pt;}
.y102{bottom:807.096173pt;}
.y176{bottom:807.097506pt;}
.y58{bottom:809.643506pt;}
.y13b{bottom:813.906018pt;}
.y5{bottom:815.070557pt;}
.yc3{bottom:817.768173pt;}
.y101{bottom:820.428173pt;}
.y175{bottom:820.429506pt;}
.y22{bottom:821.868896pt;}
.y57{bottom:825.230173pt;}
.y13a{bottom:827.238018pt;}
.yc2{bottom:831.100173pt;}
.y174{bottom:833.761506pt;}
.y100{bottom:833.773506pt;}
.y139{bottom:840.570018pt;}
.y56{bottom:840.816839pt;}
.yc1{bottom:844.432173pt;}
.y173{bottom:847.093506pt;}
.yff{bottom:847.105506pt;}
.y138{bottom:853.902018pt;}
.y55{bottom:856.403506pt;}
.yc0{bottom:857.764173pt;}
.y172{bottom:860.426839pt;}
.yfe{bottom:860.437506pt;}
.y9e{bottom:861.353872pt;}
.ybf{bottom:871.096173pt;}
.y54{bottom:871.990173pt;}
.yfd{bottom:873.769506pt;}
.y9d{bottom:874.685872pt;}
.y137{bottom:883.239352pt;}
.ybe{bottom:884.428173pt;}
.yfc{bottom:887.101506pt;}
.y53{bottom:887.576839pt;}
.y136{bottom:896.571352pt;}
.ybd{bottom:897.760173pt;}
.yfb{bottom:900.433506pt;}
.ya3{bottom:903.163099pt;}
.y52{bottom:903.163506pt;}
.y135{bottom:909.903352pt;}
.yfa{bottom:913.765506pt;}
.ya2{bottom:918.749766pt;}
.y51{bottom:918.750173pt;}
.y134{bottom:923.235352pt;}
.ybc{bottom:927.097506pt;}
.ya1{bottom:934.336432pt;}
.y50{bottom:934.336839pt;}
.ybb{bottom:940.429506pt;}
.ya0{bottom:949.923099pt;}
.y4f{bottom:949.923506pt;}
.y133{bottom:952.570018pt;}
.yba{bottom:953.761506pt;}
.y9f{bottom:965.509766pt;}
.y4e{bottom:965.510173pt;}
.y132{bottom:965.902018pt;}
.yb9{bottom:967.093506pt;}
.y6c{bottom:1013.902507pt;}
.ya6{bottom:1013.996908pt;}
.y33{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.he{height:27.275227pt;}
.h3{height:30.687500pt;}
.h2b{height:31.476562pt;}
.h11{height:32.605469pt;}
.h9{height:34.523438pt;}
.h17{height:36.922667pt;}
.h16{height:38.229333pt;}
.h19{height:38.359375pt;}
.h2e{height:39.560000pt;}
.h2d{height:40.080000pt;}
.h2{height:40.604167pt;}
.h4{height:40.625000pt;}
.h2c{height:40.960000pt;}
.h10{height:43.077927pt;}
.hf{height:43.141927pt;}
.h12{height:43.887578pt;}
.h8{height:45.703125pt;}
.ha{height:47.472000pt;}
.hb{height:47.490995pt;}
.h20{height:47.582101pt;}
.h27{height:47.598101pt;}
.h25{height:47.603271pt;}
.h18{height:47.614101pt;}
.h22{height:47.614139pt;}
.h26{height:47.624767pt;}
.h21{height:47.630101pt;}
.h1c{height:47.635434pt;}
.h28{height:47.635473pt;}
.hc{height:47.640279pt;}
.h2a{height:47.640605pt;}
.h1d{height:47.640767pt;}
.h1f{height:47.646101pt;}
.h23{height:47.646139pt;}
.h29{height:47.651271pt;}
.h1e{height:47.651434pt;}
.h24{height:47.656605pt;}
.h15{height:48.096000pt;}
.h14{height:49.152000pt;}
.h5{height:50.755208pt;}
.h7{height:50.781250pt;}
.h13{height:55.859375pt;}
.h1b{height:56.933333pt;}
.h1a{height:78.213333pt;}
.hd{height:91.406250pt;}
.h6{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.425200pt;}
.x3{left:55.011464pt;}
.xe{left:58.999726pt;}
.x6{left:125.685069pt;}
.xc{left:191.225057pt;}
.x5{left:207.874003pt;}
.x9{left:212.062663pt;}
.x8{left:223.870003pt;}
.xf{left:225.449451pt;}
.x10{left:268.887736pt;}
.xb{left:285.236435pt;}
.xd{left:390.314389pt;}
.x4{left:521.612549pt;}
.xa{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1{left:734.021891pt;}
}




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