
    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_2d91091f1ebcd3e5f3e96c7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_7c17f93bb6997023753be545.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.155000;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_328dd9c3e133cc2690689cec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.244000;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_961179293cd5360018e608ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_4d75ebc220946f7fc8f645af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.101074;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_ba4d39619ef76585c73b0ebc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.262000;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_748a806c6b16e55df9bdbc88.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.055176;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_d88368093ba106bbfee25805.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_6189e18ad7b5875cc91c326b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.235000;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_d88368093ba106bbfee25805.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_e45347fa42578bb77413a3c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_24983030460a36e931ced3e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.274000;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);}
.v4{vertical-align:-19.980000px;}
.v5{vertical-align:-18.556800px;}
.v2{vertical-align:-1.562400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.562400px;}
.v6{vertical-align:18.581400px;}
.v1{vertical-align:19.980600px;}
.ls18{letter-spacing:-9.240000px;}
.ls1a{letter-spacing:-8.593200px;}
.ls58{letter-spacing:-7.854000px;}
.ls39{letter-spacing:-4.266000px;}
.ls1f{letter-spacing:-3.459600px;}
.ls68{letter-spacing:-2.754000px;}
.ls5f{letter-spacing:-2.592000px;}
.ls5c{letter-spacing:-2.376000px;}
.ls49{letter-spacing:-2.268000px;}
.ls54{letter-spacing:-2.214000px;}
.ls22{letter-spacing:-2.100000px;}
.ls57{letter-spacing:-2.052000px;}
.ls4a{letter-spacing:-1.800000px;}
.ls34{letter-spacing:-1.728000px;}
.ls11{letter-spacing:-1.500000px;}
.lsb{letter-spacing:-1.224000px;}
.ls5d{letter-spacing:-0.900000px;}
.ls69{letter-spacing:-0.892800px;}
.ls5e{letter-spacing:-0.840000px;}
.ls40{letter-spacing:-0.781200px;}
.ls3b{letter-spacing:-0.780000px;}
.ls3a{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.613800px;}
.ls3c{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.561000px;}
.ls3e{letter-spacing:-0.558000px;}
.ls21{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.502200px;}
.ls4b{letter-spacing:-0.480000px;}
.ls43{letter-spacing:-0.446400px;}
.ls2d{letter-spacing:-0.420000px;}
.ls42{letter-spacing:-0.390600px;}
.ls4c{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.279000px;}
.ls10{letter-spacing:-0.240000px;}
.ls41{letter-spacing:-0.223200px;}
.ls2f{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.167400px;}
.ls20{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.060000px;}
.lsa{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000329px;}
.ls62{letter-spacing:0.001800px;}
.ls33{letter-spacing:0.030000px;}
.ls2c{letter-spacing:0.038400px;}
.ls4{letter-spacing:0.060000px;}
.ls4e{letter-spacing:0.084420px;}
.ls30{letter-spacing:0.090000px;}
.ls56{letter-spacing:0.111600px;}
.ls19{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.150000px;}
.ls28{letter-spacing:0.165420px;}
.ls48{letter-spacing:0.167400px;}
.ls37{letter-spacing:0.173760px;}
.ls45{letter-spacing:0.177840px;}
.ls36{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.202620px;}
.lsc{letter-spacing:0.204000px;}
.ls2b{letter-spacing:0.221580px;}
.ls12{letter-spacing:0.222000px;}
.ls27{letter-spacing:0.229620px;}
.ls8{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.255000px;}
.ls46{letter-spacing:0.270000px;}
.ls29{letter-spacing:0.279000px;}
.ls66{letter-spacing:0.282000px;}
.ls3{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.330000px;}
.ls13{letter-spacing:0.333000px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.450000px;}
.ls14{letter-spacing:0.480000px;}
.ls5b{letter-spacing:0.492000px;}
.ls38{letter-spacing:0.502200px;}
.ls5{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.570000px;}
.ls1c{letter-spacing:0.600000px;}
.ls67{letter-spacing:0.660000px;}
.ls26{letter-spacing:0.660600px;}
.ls63{letter-spacing:0.720000px;}
.ls64{letter-spacing:0.750000px;}
.ls65{letter-spacing:0.780000px;}
.ls1d{letter-spacing:0.900000px;}
.ls35{letter-spacing:0.918000px;}
.ls47{letter-spacing:1.050000px;}
.ls17{letter-spacing:1.080000px;}
.lse{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.224000px;}
.ls1e{letter-spacing:1.242000px;}
.ls60{letter-spacing:2.340000px;}
.ls59{letter-spacing:5.580000px;}
.ls61{letter-spacing:6.305400px;}
.ls55{letter-spacing:6.540000px;}
.ls9{letter-spacing:6.780000px;}
.ls5a{letter-spacing:7.200000px;}
.ls4f{letter-spacing:7.260000px;}
.ls6{letter-spacing:7.320000px;}
.ls50{letter-spacing:8.520000px;}
.ls1b{letter-spacing:247.473000px;}
.ls52{letter-spacing:306.565200px;}
.ls53{letter-spacing:320.850000px;}
.ls51{letter-spacing:340.212600px;}
.ls25{letter-spacing:385.299000px;}
.ls23{letter-spacing:390.321000px;}
.ls24{letter-spacing:390.544200px;}
.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;}
}
.ws3b{word-spacing:-303.273000px;}
.ws25{word-spacing:-60.000000px;}
.ws91{word-spacing:-55.800000px;}
.ws23{word-spacing:-32.376000px;}
.wsc1{word-spacing:-32.316000px;}
.ws27{word-spacing:-30.104100px;}
.wse1{word-spacing:-30.053880px;}
.wsc0{word-spacing:-27.555300px;}
.wsd4{word-spacing:-27.504300px;}
.ws90{word-spacing:-12.900000px;}
.ws24{word-spacing:-12.600000px;}
.wse3{word-spacing:-12.495000px;}
.wsdf{word-spacing:-11.997000px;}
.ws60{word-spacing:-11.700000px;}
.ws92{word-spacing:-11.606400px;}
.ws61{word-spacing:-11.580000px;}
.wsb5{word-spacing:-11.400000px;}
.wsa7{word-spacing:-11.340000px;}
.ws2{word-spacing:-11.280000px;}
.ws62{word-spacing:-11.160000px;}
.ws82{word-spacing:-11.070000px;}
.ws83{word-spacing:-11.040000px;}
.wsa9{word-spacing:-10.980000px;}
.wse4{word-spacing:-10.965000px;}
.wsbf{word-spacing:-10.746000px;}
.ws1{word-spacing:-10.710000px;}
.wsd3{word-spacing:-10.680000px;}
.wse7{word-spacing:-10.584000px;}
.wsa6{word-spacing:-10.530000px;}
.wsc9{word-spacing:-10.440000px;}
.wsd2{word-spacing:-10.206000px;}
.ws0{word-spacing:-10.047000px;}
.wsa8{word-spacing:-9.480000px;}
.ws26{word-spacing:-8.901000px;}
.ws58{word-spacing:-7.345800px;}
.wse0{word-spacing:-6.994251px;}
.ws63{word-spacing:-6.115903px;}
.wsce{word-spacing:-2.340000px;}
.wsab{word-spacing:-2.280000px;}
.ws73{word-spacing:-2.220000px;}
.wscd{word-spacing:-2.100000px;}
.ws85{word-spacing:-2.040000px;}
.wsa5{word-spacing:-2.008800px;}
.ws55{word-spacing:-1.980000px;}
.ws15{word-spacing:-1.920000px;}
.ws14{word-spacing:-1.860000px;}
.ws7a{word-spacing:-1.841400px;}
.ws95{word-spacing:-1.800000px;}
.ws72{word-spacing:-1.785600px;}
.ws57{word-spacing:-1.740000px;}
.ws4d{word-spacing:-1.680000px;}
.wsd1{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.500000px;}
.wscc{word-spacing:-1.440000px;}
.ws97{word-spacing:-1.380000px;}
.ws29{word-spacing:-1.320000px;}
.wsb3{word-spacing:-1.260000px;}
.ws49{word-spacing:-1.242000px;}
.wsf{word-spacing:-1.200000px;}
.ws87{word-spacing:-1.140000px;}
.wse{word-spacing:-1.122000px;}
.ws20{word-spacing:-1.080000px;}
.ws53{word-spacing:-1.020000px;}
.wsa3{word-spacing:-1.004400px;}
.ws96{word-spacing:-0.960000px;}
.ws2e{word-spacing:-0.900000px;}
.wsc4{word-spacing:-0.892800px;}
.wsbe{word-spacing:-0.840000px;}
.ws6e{word-spacing:-0.837000px;}
.wse6{word-spacing:-0.781200px;}
.ws19{word-spacing:-0.780000px;}
.ws1a{word-spacing:-0.720000px;}
.wse9{word-spacing:-0.714000px;}
.ws9b{word-spacing:-0.669600px;}
.ws2a{word-spacing:-0.660000px;}
.wsd7{word-spacing:-0.600000px;}
.ws79{word-spacing:-0.558000px;}
.ws35{word-spacing:-0.540000px;}
.ws2d{word-spacing:-0.480000px;}
.wsc{word-spacing:-0.408000px;}
.ws8c{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.355200px;}
.ws34{word-spacing:-0.300000px;}
.wsa2{word-spacing:-0.279000px;}
.ws16{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.223200px;}
.ws22{word-spacing:-0.222000px;}
.wsd{word-spacing:-0.204000px;}
.ws56{word-spacing:-0.180000px;}
.ws7b{word-spacing:-0.167400px;}
.ws75{word-spacing:-0.120000px;}
.ws1d{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws70{word-spacing:0.055800px;}
.ws6c{word-spacing:0.060000px;}
.ws5{word-spacing:0.102000px;}
.ws64{word-spacing:0.180000px;}
.ws9c{word-spacing:0.223200px;}
.ws69{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws31{word-spacing:0.420000px;}
.wsa0{word-spacing:0.446400px;}
.ws21{word-spacing:0.480000px;}
.ws71{word-spacing:0.502200px;}
.ws54{word-spacing:0.540000px;}
.wsa1{word-spacing:0.558000px;}
.wsaf{word-spacing:0.600000px;}
.wsb0{word-spacing:0.660000px;}
.ws9f{word-spacing:0.669600px;}
.ws6d{word-spacing:0.720000px;}
.ws4f{word-spacing:0.780000px;}
.ws4b{word-spacing:0.840000px;}
.ws76{word-spacing:0.900000px;}
.ws4c{word-spacing:0.960000px;}
.ws36{word-spacing:1.020000px;}
.ws8d{word-spacing:1.080000px;}
.ws2b{word-spacing:1.140000px;}
.wsb4{word-spacing:1.171800px;}
.ws6{word-spacing:1.173000px;}
.ws51{word-spacing:1.200000px;}
.ws38{word-spacing:1.227600px;}
.wsd0{word-spacing:1.260000px;}
.wsb{word-spacing:1.275000px;}
.ws8b{word-spacing:1.320000px;}
.ws88{word-spacing:1.380000px;}
.ws77{word-spacing:1.440000px;}
.wsad{word-spacing:1.500000px;}
.ws33{word-spacing:1.560000px;}
.ws9{word-spacing:1.581000px;}
.ws86{word-spacing:1.620000px;}
.wsbc{word-spacing:1.680000px;}
.wsa{word-spacing:1.734000px;}
.ws66{word-spacing:1.740000px;}
.ws9a{word-spacing:1.785600px;}
.ws65{word-spacing:1.800000px;}
.wsc3{word-spacing:1.841400px;}
.ws13{word-spacing:1.860000px;}
.ws8{word-spacing:1.887000px;}
.ws1f{word-spacing:1.920000px;}
.ws6f{word-spacing:2.008800px;}
.ws67{word-spacing:2.040000px;}
.wsbd{word-spacing:2.100000px;}
.ws7{word-spacing:2.142000px;}
.ws52{word-spacing:2.160000px;}
.ws6a{word-spacing:2.220000px;}
.ws9d{word-spacing:2.232000px;}
.ws32{word-spacing:2.280000px;}
.wsac{word-spacing:2.340000px;}
.ws12{word-spacing:2.400000px;}
.ws6b{word-spacing:2.460000px;}
.ws8a{word-spacing:2.520000px;}
.ws1c{word-spacing:2.640000px;}
.wsbb{word-spacing:2.700000px;}
.ws78{word-spacing:2.760000px;}
.ws9e{word-spacing:2.790000px;}
.ws18{word-spacing:2.820000px;}
.wscb{word-spacing:2.880000px;}
.wsb1{word-spacing:2.940000px;}
.ws11{word-spacing:3.000000px;}
.ws68{word-spacing:3.060000px;}
.ws1e{word-spacing:3.240000px;}
.ws30{word-spacing:3.300000px;}
.wsd8{word-spacing:3.360000px;}
.ws74{word-spacing:3.420000px;}
.ws10{word-spacing:3.540000px;}
.wscf{word-spacing:3.600000px;}
.ws94{word-spacing:3.660000px;}
.ws2f{word-spacing:3.780000px;}
.wsb2{word-spacing:3.900000px;}
.ws89{word-spacing:3.960000px;}
.wsa4{word-spacing:4.017600px;}
.ws17{word-spacing:4.080000px;}
.ws98{word-spacing:4.260000px;}
.ws1b{word-spacing:4.560000px;}
.ws4e{word-spacing:4.860000px;}
.wsd6{word-spacing:5.880000px;}
.ws50{word-spacing:7.320000px;}
.wsae{word-spacing:8.040000px;}
.ws99{word-spacing:10.200000px;}
.ws3f{word-spacing:35.433000px;}
.wsc6{word-spacing:59.400000px;}
.ws3d{word-spacing:70.977600px;}
.ws3e{word-spacing:71.424000px;}
.ws45{word-spacing:98.096400px;}
.ws42{word-spacing:99.491400px;}
.ws41{word-spacing:99.937800px;}
.wsb6{word-spacing:104.457600px;}
.ws7f{word-spacing:108.540000px;}
.ws44{word-spacing:115.115400px;}
.ws43{word-spacing:115.561800px;}
.ws48{word-spacing:116.281620px;}
.wsb7{word-spacing:126.833400px;}
.wsc8{word-spacing:143.520000px;}
.ws46{word-spacing:150.771600px;}
.ws47{word-spacing:152.836200px;}
.ws7e{word-spacing:166.380000px;}
.ws40{word-spacing:186.427800px;}
.ws59{word-spacing:204.116400px;}
.ws3c{word-spacing:230.175000px;}
.wsdd{word-spacing:275.220000px;}
.ws81{word-spacing:290.700000px;}
.ws8e{word-spacing:305.160000px;}
.wsde{word-spacing:305.400000px;}
.ws3a{word-spacing:306.063000px;}
.wse2{word-spacing:308.239200px;}
.wsb8{word-spacing:319.120200px;}
.wsb9{word-spacing:322.747200px;}
.ws5a{word-spacing:348.192000px;}
.ws5e{word-spacing:348.973200px;}
.ws5c{word-spacing:360.468000px;}
.ws5b{word-spacing:394.506000px;}
.ws5f{word-spacing:396.403200px;}
.ws5d{word-spacing:401.369400px;}
.ws8f{word-spacing:462.000000px;}
.wsdc{word-spacing:496.680000px;}
.ws80{word-spacing:508.980000px;}
.wsdb{word-spacing:611.400000px;}
.wsc7{word-spacing:782.820000px;}
.wsc5{word-spacing:795.000000px;}
.ws7d{word-spacing:860.820000px;}
.ws7c{word-spacing:873.000000px;}
.wsda{word-spacing:902.820000px;}
.wsd9{word-spacing:915.000000px;}
.wsba{word-spacing:1533.762000px;}
.wsca{word-spacing:1534.086000px;}
.wse5{word-spacing:1534.842000px;}
.ws93{word-spacing:1537.920000px;}
.ws4a{word-spacing:1560.654000px;}
.ws84{word-spacing:1566.972000px;}
.wsc2{word-spacing:1567.350000px;}
.wse8{word-spacing:1567.458000px;}
.wsaa{word-spacing:1567.512000px;}
.wsd5{word-spacing:1567.890000px;}
.ws28{word-spacing:1596.402000px;}
._7{margin-left:-1596.638400px;}
._29{margin-left:-1566.699000px;}
._2b{margin-left:-462.105000px;}
._2f{margin-left:-12.720000px;}
._8{margin-left:-11.280000px;}
._16{margin-left:-9.465600px;}
._61{margin-left:-7.599000px;}
._12{margin-left:-6.594000px;}
._4{margin-left:-5.448900px;}
._9{margin-left:-3.906000px;}
._0{margin-left:-2.400000px;}
._3{margin-left:-1.275000px;}
._6{width:1.005000px;}
._1{width:2.070600px;}
._2{width:3.136500px;}
._5{width:4.326000px;}
._11{width:5.772000px;}
._a{width:6.960000px;}
._58{width:17.640000px;}
._32{width:22.800000px;}
._57{width:25.260000px;}
._31{width:29.700000px;}
._2e{width:39.060000px;}
._24{width:43.860000px;}
._30{width:47.039400px;}
._1d{width:49.717200px;}
._1c{width:52.618200px;}
._28{width:53.820000px;}
._43{width:55.140000px;}
._b{width:56.190000px;}
._27{width:62.340000px;}
._1f{width:65.640000px;}
._35{width:93.744600px;}
._5e{width:100.515000px;}
._49{width:107.940000px;}
._10{width:119.746800px;}
._3f{width:123.480000px;}
._4c{width:124.800000px;}
._4d{width:127.206000px;}
._4a{width:131.100000px;}
._5c{width:132.652800px;}
._3e{width:134.442000px;}
._5b{width:137.293200px;}
._4e{width:138.915000px;}
._f{width:152.502000px;}
._e{width:154.323300px;}
._26{width:156.720000px;}
._4f{width:178.515000px;}
._5d{width:180.915000px;}
._3c{width:193.224000px;}
._2a{width:203.640000px;}
._60{width:206.128200px;}
._51{width:210.000000px;}
._34{width:215.556000px;}
._42{width:227.880000px;}
._22{width:236.595000px;}
._c{width:244.205400px;}
._d{width:252.048600px;}
._19{width:253.834200px;}
._3b{width:269.640000px;}
._33{width:282.459600px;}
._18{width:283.687800px;}
._13{width:302.659200px;}
._20{width:305.400000px;}
._4b{width:310.806000px;}
._14{width:327.657600px;}
._36{width:338.706000px;}
._38{width:339.822000px;}
._39{width:342.667800px;}
._17{width:345.234600px;}
._59{width:347.100000px;}
._37{width:348.136200px;}
._2c{width:358.500000px;}
._55{width:377.400000px;}
._5f{width:379.495800px;}
._25{width:382.500000px;}
._15{width:388.200600px;}
._46{width:405.360000px;}
._41{width:407.640000px;}
._1b{width:409.404600px;}
._1a{width:413.868600px;}
._5a{width:420.540000px;}
._44{width:440.700000px;}
._21{width:462.375000px;}
._40{width:498.900000px;}
._2d{width:514.980000px;}
._56{width:551.535000px;}
._23{width:580.815000px;}
._53{width:611.640000px;}
._3d{width:671.616000px;}
._52{width:705.951000px;}
._47{width:726.660000px;}
._48{width:735.120000px;}
._3a{width:780.000000px;}
._54{width:821.640000px;}
._1e{width:917.640000px;}
._45{width:923.640000px;}
._50{width:959.640000px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:22.200000px;}
.fs9{font-size:32.531400px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:90.548700px;}
.y6a{bottom:90.554850px;}
.y41{bottom:90.560850px;}
.y98{bottom:90.561000px;}
.y62{bottom:90.567150px;}
.y27{bottom:91.318050px;}
.y85{bottom:91.318200px;}
.yf3{bottom:92.649300px;}
.ye9{bottom:92.662050px;}
.y99{bottom:107.804850px;}
.y69{bottom:107.811000px;}
.y40{bottom:107.817000px;}
.y61{bottom:107.817150px;}
.y25{bottom:109.768050px;}
.y84{bottom:109.768200px;}
.y26{bottom:109.873050px;}
.yf2{bottom:109.900050px;}
.ye8{bottom:109.912800px;}
.y122{bottom:111.926550px;}
.y60{bottom:125.061000px;}
.y68{bottom:125.067150px;}
.y97{bottom:125.067300px;}
.yf1{bottom:127.150800px;}
.ye7{bottom:127.163550px;}
.y24{bottom:128.218050px;}
.y83{bottom:128.218200px;}
.y121{bottom:129.177300px;}
.y96{bottom:142.286550px;}
.y67{bottom:142.311000px;}
.y5f{bottom:142.317150px;}
.yf0{bottom:144.401550px;}
.ye6{bottom:144.414300px;}
.y14f{bottom:146.389800px;}
.y120{bottom:146.428050px;}
.y23{bottom:146.668050px;}
.y82{bottom:146.668200px;}
.y95{bottom:159.542700px;}
.y66{bottom:159.567150px;}
.y5e{bottom:159.567300px;}
.yef{bottom:161.652300px;}
.ye5{bottom:161.665050px;}
.y14e{bottom:163.640550px;}
.y11f{bottom:163.678800px;}
.y22{bottom:165.118050px;}
.y81{bottom:165.118200px;}
.ya6{bottom:166.318200px;}
.y94{bottom:176.798850px;}
.y5d{bottom:176.817300px;}
.yee{bottom:178.903050px;}
.ye4{bottom:178.915800px;}
.y14d{bottom:180.891300px;}
.y11e{bottom:180.929550px;}
.y21{bottom:183.568050px;}
.y80{bottom:183.568200px;}
.y93{bottom:194.055000px;}
.yb4{bottom:194.604600px;}
.yed{bottom:196.153800px;}
.ye3{bottom:196.166550px;}
.y14c{bottom:198.142050px;}
.y11d{bottom:198.180300px;}
.y20{bottom:202.018050px;}
.y7f{bottom:202.018200px;}
.ya4{bottom:205.320000px;}
.y92{bottom:211.311150px;}
.yec{bottom:213.404550px;}
.ye2{bottom:213.417300px;}
.y14b{bottom:215.392800px;}
.y11c{bottom:215.431050px;}
.y1f{bottom:220.468050px;}
.y7e{bottom:220.468200px;}
.yb8{bottom:221.668050px;}
.ya3{bottom:227.217300px;}
.y91{bottom:228.567300px;}
.yeb{bottom:230.655300px;}
.ye1{bottom:230.668050px;}
.y14a{bottom:232.643550px;}
.y11b{bottom:232.681800px;}
.yb3{bottom:234.309600px;}
.y1d{bottom:238.918050px;}
.y7d{bottom:238.918200px;}
.y1e{bottom:239.023050px;}
.y90{bottom:245.811150px;}
.ya2{bottom:246.565950px;}
.yea{bottom:247.906050px;}
.ye0{bottom:247.918800px;}
.y149{bottom:249.894300px;}
.y11a{bottom:249.932550px;}
.y1c{bottom:257.368050px;}
.y7c{bottom:257.368200px;}
.yc7{bottom:258.628050px;}
.yb2{bottom:261.264600px;}
.y8f{bottom:263.067300px;}
.ya0{bottom:265.524000px;}
.ya1{bottom:265.621650px;}
.y148{bottom:267.145050px;}
.y119{bottom:267.183300px;}
.y1b{bottom:275.818050px;}
.y7b{bottom:275.818200px;}
.y8e{bottom:280.317300px;}
.ydf{bottom:281.668050px;}
.y147{bottom:284.395800px;}
.y118{bottom:284.434050px;}
.y9f{bottom:284.872650px;}
.yb1{bottom:288.215250px;}
.y1a{bottom:294.268050px;}
.y7a{bottom:294.268200px;}
.y146{bottom:301.646550px;}
.y117{bottom:301.684800px;}
.yc6{bottom:302.593050px;}
.y19{bottom:312.718050px;}
.y79{bottom:312.718200px;}
.yb0{bottom:315.170250px;}
.y145{bottom:318.897300px;}
.y116{bottom:318.935550px;}
.yc5{bottom:329.548050px;}
.y18{bottom:331.168050px;}
.y78{bottom:331.168200px;}
.y56{bottom:334.469850px;}
.y144{bottom:336.148050px;}
.y115{bottom:336.186300px;}
.yaf{bottom:342.125250px;}
.y17{bottom:349.618050px;}
.y77{bottom:349.618200px;}
.y143{bottom:353.398800px;}
.y114{bottom:353.437050px;}
.y55{bottom:356.353350px;}
.yc4{bottom:356.503050px;}
.y16{bottom:368.068050px;}
.y76{bottom:368.068200px;}
.yae{bottom:369.080250px;}
.y142{bottom:370.649550px;}
.y113{bottom:370.687800px;}
.y54{bottom:375.702000px;}
.yc3{bottom:383.458050px;}
.y15{bottom:386.518050px;}
.yde{bottom:386.518200px;}
.y141{bottom:387.900300px;}
.y112{bottom:387.938550px;}
.y53{bottom:394.674000px;}
.yad{bottom:396.030000px;}
.y14{bottom:404.968050px;}
.ydd{bottom:404.968200px;}
.yb6{bottom:405.073050px;}
.y140{bottom:405.151050px;}
.y111{bottom:405.189300px;}
.y75{bottom:406.168050px;}
.yc2{bottom:410.413050px;}
.y52{bottom:414.022650px;}
.y13f{bottom:422.401800px;}
.y110{bottom:422.440050px;}
.yac{bottom:422.985000px;}
.y3f{bottom:423.418050px;}
.ydc{bottom:423.418200px;}
.y65{bottom:424.618050px;}
.y8c{bottom:434.233200px;}
.yc1{bottom:437.368050px;}
.y13e{bottom:439.652550px;}
.y10f{bottom:439.690800px;}
.y13{bottom:441.868050px;}
.ydb{bottom:441.868200px;}
.yab{bottom:449.940000px;}
.y73{bottom:452.533200px;}
.y13d{bottom:456.903300px;}
.y10e{bottom:456.941550px;}
.y3e{bottom:460.318050px;}
.y51{bottom:460.318200px;}
.y8b{bottom:461.188200px;}
.yc0{bottom:464.323050px;}
.y13c{bottom:474.154050px;}
.y10d{bottom:474.192300px;}
.yaa{bottom:476.895000px;}
.y3d{bottom:478.768050px;}
.y50{bottom:478.768200px;}
.y72{bottom:479.488200px;}
.y8a{bottom:488.143200px;}
.ybf{bottom:491.278050px;}
.y13b{bottom:491.404800px;}
.y10c{bottom:491.443050px;}
.y12{bottom:496.277400px;}
.y5c{bottom:497.218050px;}
.y4f{bottom:497.218200px;}
.ya9{bottom:503.847900px;}
.yda{bottom:506.220900px;}
.y71{bottom:506.443200px;}
.y13a{bottom:508.655550px;}
.y10b{bottom:508.693800px;}
.y11{bottom:513.528150px;}
.y89{bottom:515.098200px;}
.y3c{bottom:515.668050px;}
.y4e{bottom:515.668200px;}
.ybe{bottom:518.233050px;}
.y139{bottom:525.906300px;}
.y10a{bottom:525.944550px;}
.yd9{bottom:528.126750px;}
.y10{bottom:530.778900px;}
.ya8{bottom:530.802900px;}
.y70{bottom:533.398200px;}
.y8d{bottom:534.118050px;}
.y4d{bottom:534.118200px;}
.y9e{bottom:534.223050px;}
.y88{bottom:542.053200px;}
.y138{bottom:543.157050px;}
.y109{bottom:543.195300px;}
.ybc{bottom:545.188050px;}
.ybd{bottom:545.293050px;}
.yd5{bottom:547.084800px;}
.yd8{bottom:547.098750px;}
.y3b{bottom:552.568050px;}
.y4c{bottom:552.568200px;}
.ya7{bottom:557.757900px;}
.y6f{bottom:560.353200px;}
.y137{bottom:560.407800px;}
.y108{bottom:560.446050px;}
.yd4{bottom:563.280750px;}
.yd7{bottom:563.294700px;}
.yf{bottom:565.280400px;}
.y3a{bottom:571.018050px;}
.y4b{bottom:571.018200px;}
.y9d{bottom:571.123050px;}
.ybb{bottom:572.143050px;}
.y136{bottom:577.658550px;}
.y107{bottom:577.696800px;}
.yd3{bottom:579.476700px;}
.yd6{bottom:579.490650px;}
.yd2{bottom:580.857750px;}
.y87{bottom:581.758200px;}
.ye{bottom:582.531150px;}
.y6e{bottom:587.308200px;}
.y39{bottom:589.468050px;}
.y135{bottom:594.909300px;}
.y106{bottom:594.947550px;}
.yd1{bottom:598.434750px;}
.yba{bottom:599.098050px;}
.yd{bottom:599.781900px;}
.y38{bottom:607.918050px;}
.y4a{bottom:607.918200px;}
.y86{bottom:608.713200px;}
.y134{bottom:612.160050px;}
.y105{bottom:612.198300px;}
.yd0{bottom:614.629200px;}
.yc{bottom:617.032650px;}
.yb9{bottom:626.053050px;}
.y37{bottom:626.368050px;}
.yb5{bottom:626.473050px;}
.y6d{bottom:627.013200px;}
.y133{bottom:629.410800px;}
.y104{bottom:629.449050px;}
.ycf{bottom:633.601200px;}
.yb{bottom:634.283400px;}
.y36{bottom:644.818050px;}
.y49{bottom:644.818200px;}
.y132{bottom:646.661550px;}
.y103{bottom:646.699800px;}
.yce{bottom:649.801200px;}
.ya{bottom:651.534150px;}
.y6c{bottom:653.968200px;}
.yca{bottom:657.908400px;}
.y35{bottom:663.268050px;}
.y48{bottom:663.268200px;}
.ya5{bottom:663.373050px;}
.y131{bottom:663.912300px;}
.y102{bottom:663.950550px;}
.ycd{bottom:666.013350px;}
.y5b{bottom:666.181650px;}
.y9{bottom:668.784900px;}
.y6b{bottom:680.923200px;}
.y130{bottom:681.163050px;}
.y101{bottom:681.201300px;}
.y34{bottom:681.718050px;}
.y47{bottom:681.718200px;}
.yb7{bottom:681.823050px;}
.ycb{bottom:682.209300px;}
.ycc{bottom:682.306950px;}
.y8{bottom:686.035650px;}
.y5a{bottom:688.425450px;}
.y12f{bottom:698.413800px;}
.y100{bottom:698.452050px;}
.y74{bottom:700.168050px;}
.yc9{bottom:701.557950px;}
.y7{bottom:703.286400px;}
.y59{bottom:707.788050px;}
.y12e{bottom:715.664550px;}
.yff{bottom:715.702800px;}
.y33{bottom:718.618050px;}
.y6{bottom:720.537150px;}
.yc8{bottom:720.906600px;}
.y46{bottom:722.308200px;}
.y58{bottom:727.150650px;}
.y12d{bottom:732.915300px;}
.yfe{bottom:732.953550px;}
.y64{bottom:737.068050px;}
.y5{bottom:737.787900px;}
.y45{bottom:744.180150px;}
.y57{bottom:746.122650px;}
.y12c{bottom:750.166050px;}
.yfd{bottom:750.204300px;}
.y63{bottom:755.518050px;}
.y44{bottom:763.152150px;}
.y12b{bottom:767.416800px;}
.yfc{bottom:767.455050px;}
.y32{bottom:773.968050px;}
.y43{bottom:782.124150px;}
.y12a{bottom:784.667550px;}
.yfb{bottom:784.705800px;}
.y4{bottom:789.289800px;}
.y31{bottom:792.418050px;}
.y42{bottom:801.472800px;}
.y129{bottom:801.918300px;}
.yfa{bottom:801.956550px;}
.y30{bottom:810.868050px;}
.y128{bottom:819.169050px;}
.yf9{bottom:819.207300px;}
.y3{bottom:819.295800px;}
.y2f{bottom:829.318050px;}
.y9c{bottom:829.318200px;}
.y127{bottom:836.419800px;}
.yf8{bottom:836.458050px;}
.y2e{bottom:847.768050px;}
.y9b{bottom:847.768200px;}
.y126{bottom:853.670550px;}
.yf7{bottom:853.708800px;}
.y29{bottom:857.391000px;}
.y28{bottom:864.889050px;}
.y2d{bottom:866.218050px;}
.y2{bottom:866.303700px;}
.y125{bottom:870.921300px;}
.yf6{bottom:870.959550px;}
.y2c{bottom:884.668050px;}
.y124{bottom:888.172050px;}
.yf5{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y2b{bottom:903.118050px;}
.y123{bottom:905.422800px;}
.yf4{bottom:905.461050px;}
.y2a{bottom:955.942350px;}
.h9{height:15.295800px;}
.he{height:42.742800px;}
.h4{height:48.195000px;}
.hd{height:49.521000px;}
.h5{height:49.827000px;}
.ha{height:50.328000px;}
.h18{height:53.791200px;}
.h14{height:54.155460px;}
.hc{height:54.181800px;}
.h19{height:54.187800px;}
.hf{height:54.206400px;}
.h10{height:54.304800px;}
.h12{height:55.353600px;}
.h13{height:55.744200px;}
.hb{height:55.920000px;}
.h6{height:56.700000px;}
.h8{height:58.200000px;}
.h7{height:58.620000px;}
.h11{height:58.620600px;}
.h15{height:58.628400px;}
.h17{height:58.632600px;}
.h16{height:58.636800px;}
.h3{height:67.104000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.xa{left:25.966350px;}
.x9{left:28.835700px;}
.x7{left:72.283500px;}
.x1{left:80.787450px;}
.x2d{left:85.033500px;}
.x8{left:93.538500px;}
.x1c{left:97.033500px;}
.x2{left:102.042450px;}
.x16{left:104.604300px;}
.x1b{left:109.008300px;}
.x10{left:110.053500px;}
.xf{left:112.948500px;}
.xb{left:114.838050px;}
.xc{left:117.028200px;}
.xe{left:119.078850px;}
.x11{left:123.304350px;}
.x29{left:125.027100px;}
.x14{left:128.675250px;}
.xd{left:130.169100px;}
.x27{left:183.142800px;}
.x26{left:194.266650px;}
.x19{left:237.989400px;}
.x13{left:248.495100px;}
.x20{left:256.199850px;}
.x2a{left:262.629900px;}
.x1a{left:290.669400px;}
.x1e{left:309.853200px;}
.x1f{left:319.393350px;}
.x12{left:338.705100px;}
.x2f{left:353.408250px;}
.x3{left:354.822450px;}
.x2b{left:361.912050px;}
.x2e{left:366.158250px;}
.x2c{left:374.662050px;}
.x28{left:399.298050px;}
.x17{left:406.484400px;}
.x1d{left:473.368500px;}
.x4{left:483.747450px;}
.x23{left:512.349750px;}
.x24{left:516.367350px;}
.x25{left:528.327300px;}
.x21{left:536.929650px;}
.x22{left:547.824600px;}
.x15{left:556.393500px;}
.x18{left:596.729400px;}
.x6{left:651.643500px;}
.x5{left:654.512850px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v5{vertical-align:-16.494933pt;}
.v2{vertical-align:-1.388800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.388800pt;}
.v6{vertical-align:16.516800pt;}
.v1{vertical-align:17.760533pt;}
.ls18{letter-spacing:-8.213333pt;}
.ls1a{letter-spacing:-7.638400pt;}
.ls58{letter-spacing:-6.981333pt;}
.ls39{letter-spacing:-3.792000pt;}
.ls1f{letter-spacing:-3.075200pt;}
.ls68{letter-spacing:-2.448000pt;}
.ls5f{letter-spacing:-2.304000pt;}
.ls5c{letter-spacing:-2.112000pt;}
.ls49{letter-spacing:-2.016000pt;}
.ls54{letter-spacing:-1.968000pt;}
.ls22{letter-spacing:-1.866667pt;}
.ls57{letter-spacing:-1.824000pt;}
.ls4a{letter-spacing:-1.600000pt;}
.ls34{letter-spacing:-1.536000pt;}
.ls11{letter-spacing:-1.333333pt;}
.lsb{letter-spacing:-1.088000pt;}
.ls5d{letter-spacing:-0.800000pt;}
.ls69{letter-spacing:-0.793600pt;}
.ls5e{letter-spacing:-0.746667pt;}
.ls40{letter-spacing:-0.694400pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls3a{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.545600pt;}
.ls3c{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.498667pt;}
.ls3e{letter-spacing:-0.496000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.446400pt;}
.ls4b{letter-spacing:-0.426667pt;}
.ls43{letter-spacing:-0.396800pt;}
.ls2d{letter-spacing:-0.373333pt;}
.ls42{letter-spacing:-0.347200pt;}
.ls4c{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.248000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls41{letter-spacing:-0.198400pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.148800pt;}
.ls20{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000292pt;}
.ls62{letter-spacing:0.001600pt;}
.ls33{letter-spacing:0.026667pt;}
.ls2c{letter-spacing:0.034133pt;}
.ls4{letter-spacing:0.053333pt;}
.ls4e{letter-spacing:0.075040pt;}
.ls30{letter-spacing:0.080000pt;}
.ls56{letter-spacing:0.099200pt;}
.ls19{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.133333pt;}
.ls28{letter-spacing:0.147040pt;}
.ls48{letter-spacing:0.148800pt;}
.ls37{letter-spacing:0.154453pt;}
.ls45{letter-spacing:0.158080pt;}
.ls36{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.180107pt;}
.lsc{letter-spacing:0.181333pt;}
.ls2b{letter-spacing:0.196960pt;}
.ls12{letter-spacing:0.197333pt;}
.ls27{letter-spacing:0.204107pt;}
.ls8{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.226667pt;}
.ls46{letter-spacing:0.240000pt;}
.ls29{letter-spacing:0.248000pt;}
.ls66{letter-spacing:0.250667pt;}
.ls3{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.293333pt;}
.ls13{letter-spacing:0.296000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.400000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls5b{letter-spacing:0.437333pt;}
.ls38{letter-spacing:0.446400pt;}
.ls5{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.506667pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls67{letter-spacing:0.586667pt;}
.ls26{letter-spacing:0.587200pt;}
.ls63{letter-spacing:0.640000pt;}
.ls64{letter-spacing:0.666667pt;}
.ls65{letter-spacing:0.693333pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.816000pt;}
.ls47{letter-spacing:0.933333pt;}
.ls17{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.088000pt;}
.ls1e{letter-spacing:1.104000pt;}
.ls60{letter-spacing:2.080000pt;}
.ls59{letter-spacing:4.960000pt;}
.ls61{letter-spacing:5.604800pt;}
.ls55{letter-spacing:5.813333pt;}
.ls9{letter-spacing:6.026667pt;}
.ls5a{letter-spacing:6.400000pt;}
.ls4f{letter-spacing:6.453333pt;}
.ls6{letter-spacing:6.506667pt;}
.ls50{letter-spacing:7.573333pt;}
.ls1b{letter-spacing:219.976000pt;}
.ls52{letter-spacing:272.502400pt;}
.ls53{letter-spacing:285.200000pt;}
.ls51{letter-spacing:302.411200pt;}
.ls25{letter-spacing:342.488000pt;}
.ls23{letter-spacing:346.952000pt;}
.ls24{letter-spacing:347.150400pt;}
.ws3b{word-spacing:-269.576000pt;}
.ws25{word-spacing:-53.333333pt;}
.ws91{word-spacing:-49.600000pt;}
.ws23{word-spacing:-28.778667pt;}
.wsc1{word-spacing:-28.725333pt;}
.ws27{word-spacing:-26.759200pt;}
.wse1{word-spacing:-26.714560pt;}
.wsc0{word-spacing:-24.493600pt;}
.wsd4{word-spacing:-24.448267pt;}
.ws90{word-spacing:-11.466667pt;}
.ws24{word-spacing:-11.200000pt;}
.wse3{word-spacing:-11.106667pt;}
.wsdf{word-spacing:-10.664000pt;}
.ws60{word-spacing:-10.400000pt;}
.ws92{word-spacing:-10.316800pt;}
.ws61{word-spacing:-10.293333pt;}
.wsb5{word-spacing:-10.133333pt;}
.wsa7{word-spacing:-10.080000pt;}
.ws2{word-spacing:-10.026667pt;}
.ws62{word-spacing:-9.920000pt;}
.ws82{word-spacing:-9.840000pt;}
.ws83{word-spacing:-9.813333pt;}
.wsa9{word-spacing:-9.760000pt;}
.wse4{word-spacing:-9.746667pt;}
.wsbf{word-spacing:-9.552000pt;}
.ws1{word-spacing:-9.520000pt;}
.wsd3{word-spacing:-9.493333pt;}
.wse7{word-spacing:-9.408000pt;}
.wsa6{word-spacing:-9.360000pt;}
.wsc9{word-spacing:-9.280000pt;}
.wsd2{word-spacing:-9.072000pt;}
.ws0{word-spacing:-8.930667pt;}
.wsa8{word-spacing:-8.426667pt;}
.ws26{word-spacing:-7.912000pt;}
.ws58{word-spacing:-6.529600pt;}
.wse0{word-spacing:-6.217112pt;}
.ws63{word-spacing:-5.436358pt;}
.wsce{word-spacing:-2.080000pt;}
.wsab{word-spacing:-2.026667pt;}
.ws73{word-spacing:-1.973333pt;}
.wscd{word-spacing:-1.866667pt;}
.ws85{word-spacing:-1.813333pt;}
.wsa5{word-spacing:-1.785600pt;}
.ws55{word-spacing:-1.760000pt;}
.ws15{word-spacing:-1.706667pt;}
.ws14{word-spacing:-1.653333pt;}
.ws7a{word-spacing:-1.636800pt;}
.ws95{word-spacing:-1.600000pt;}
.ws72{word-spacing:-1.587200pt;}
.ws57{word-spacing:-1.546667pt;}
.ws4d{word-spacing:-1.493333pt;}
.wsd1{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.333333pt;}
.wscc{word-spacing:-1.280000pt;}
.ws97{word-spacing:-1.226667pt;}
.ws29{word-spacing:-1.173333pt;}
.wsb3{word-spacing:-1.120000pt;}
.ws49{word-spacing:-1.104000pt;}
.wsf{word-spacing:-1.066667pt;}
.ws87{word-spacing:-1.013333pt;}
.wse{word-spacing:-0.997333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws53{word-spacing:-0.906667pt;}
.wsa3{word-spacing:-0.892800pt;}
.ws96{word-spacing:-0.853333pt;}
.ws2e{word-spacing:-0.800000pt;}
.wsc4{word-spacing:-0.793600pt;}
.wsbe{word-spacing:-0.746667pt;}
.ws6e{word-spacing:-0.744000pt;}
.wse6{word-spacing:-0.694400pt;}
.ws19{word-spacing:-0.693333pt;}
.ws1a{word-spacing:-0.640000pt;}
.wse9{word-spacing:-0.634667pt;}
.ws9b{word-spacing:-0.595200pt;}
.ws2a{word-spacing:-0.586667pt;}
.wsd7{word-spacing:-0.533333pt;}
.ws79{word-spacing:-0.496000pt;}
.ws35{word-spacing:-0.480000pt;}
.ws2d{word-spacing:-0.426667pt;}
.wsc{word-spacing:-0.362667pt;}
.ws8c{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.315733pt;}
.ws34{word-spacing:-0.266667pt;}
.wsa2{word-spacing:-0.248000pt;}
.ws16{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.198400pt;}
.ws22{word-spacing:-0.197333pt;}
.wsd{word-spacing:-0.181333pt;}
.ws56{word-spacing:-0.160000pt;}
.ws7b{word-spacing:-0.148800pt;}
.ws75{word-spacing:-0.106667pt;}
.ws1d{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws70{word-spacing:0.049600pt;}
.ws6c{word-spacing:0.053333pt;}
.ws5{word-spacing:0.090667pt;}
.ws64{word-spacing:0.160000pt;}
.ws9c{word-spacing:0.198400pt;}
.ws69{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws31{word-spacing:0.373333pt;}
.wsa0{word-spacing:0.396800pt;}
.ws21{word-spacing:0.426667pt;}
.ws71{word-spacing:0.446400pt;}
.ws54{word-spacing:0.480000pt;}
.wsa1{word-spacing:0.496000pt;}
.wsaf{word-spacing:0.533333pt;}
.wsb0{word-spacing:0.586667pt;}
.ws9f{word-spacing:0.595200pt;}
.ws6d{word-spacing:0.640000pt;}
.ws4f{word-spacing:0.693333pt;}
.ws4b{word-spacing:0.746667pt;}
.ws76{word-spacing:0.800000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws36{word-spacing:0.906667pt;}
.ws8d{word-spacing:0.960000pt;}
.ws2b{word-spacing:1.013333pt;}
.wsb4{word-spacing:1.041600pt;}
.ws6{word-spacing:1.042667pt;}
.ws51{word-spacing:1.066667pt;}
.ws38{word-spacing:1.091200pt;}
.wsd0{word-spacing:1.120000pt;}
.wsb{word-spacing:1.133333pt;}
.ws8b{word-spacing:1.173333pt;}
.ws88{word-spacing:1.226667pt;}
.ws77{word-spacing:1.280000pt;}
.wsad{word-spacing:1.333333pt;}
.ws33{word-spacing:1.386667pt;}
.ws9{word-spacing:1.405333pt;}
.ws86{word-spacing:1.440000pt;}
.wsbc{word-spacing:1.493333pt;}
.wsa{word-spacing:1.541333pt;}
.ws66{word-spacing:1.546667pt;}
.ws9a{word-spacing:1.587200pt;}
.ws65{word-spacing:1.600000pt;}
.wsc3{word-spacing:1.636800pt;}
.ws13{word-spacing:1.653333pt;}
.ws8{word-spacing:1.677333pt;}
.ws1f{word-spacing:1.706667pt;}
.ws6f{word-spacing:1.785600pt;}
.ws67{word-spacing:1.813333pt;}
.wsbd{word-spacing:1.866667pt;}
.ws7{word-spacing:1.904000pt;}
.ws52{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.973333pt;}
.ws9d{word-spacing:1.984000pt;}
.ws32{word-spacing:2.026667pt;}
.wsac{word-spacing:2.080000pt;}
.ws12{word-spacing:2.133333pt;}
.ws6b{word-spacing:2.186667pt;}
.ws8a{word-spacing:2.240000pt;}
.ws1c{word-spacing:2.346667pt;}
.wsbb{word-spacing:2.400000pt;}
.ws78{word-spacing:2.453333pt;}
.ws9e{word-spacing:2.480000pt;}
.ws18{word-spacing:2.506667pt;}
.wscb{word-spacing:2.560000pt;}
.wsb1{word-spacing:2.613333pt;}
.ws11{word-spacing:2.666667pt;}
.ws68{word-spacing:2.720000pt;}
.ws1e{word-spacing:2.880000pt;}
.ws30{word-spacing:2.933333pt;}
.wsd8{word-spacing:2.986667pt;}
.ws74{word-spacing:3.040000pt;}
.ws10{word-spacing:3.146667pt;}
.wscf{word-spacing:3.200000pt;}
.ws94{word-spacing:3.253333pt;}
.ws2f{word-spacing:3.360000pt;}
.wsb2{word-spacing:3.466667pt;}
.ws89{word-spacing:3.520000pt;}
.wsa4{word-spacing:3.571200pt;}
.ws17{word-spacing:3.626667pt;}
.ws98{word-spacing:3.786667pt;}
.ws1b{word-spacing:4.053333pt;}
.ws4e{word-spacing:4.320000pt;}
.wsd6{word-spacing:5.226667pt;}
.ws50{word-spacing:6.506667pt;}
.wsae{word-spacing:7.146667pt;}
.ws99{word-spacing:9.066667pt;}
.ws3f{word-spacing:31.496000pt;}
.wsc6{word-spacing:52.800000pt;}
.ws3d{word-spacing:63.091200pt;}
.ws3e{word-spacing:63.488000pt;}
.ws45{word-spacing:87.196800pt;}
.ws42{word-spacing:88.436800pt;}
.ws41{word-spacing:88.833600pt;}
.wsb6{word-spacing:92.851200pt;}
.ws7f{word-spacing:96.480000pt;}
.ws44{word-spacing:102.324800pt;}
.ws43{word-spacing:102.721600pt;}
.ws48{word-spacing:103.361440pt;}
.wsb7{word-spacing:112.740800pt;}
.wsc8{word-spacing:127.573333pt;}
.ws46{word-spacing:134.019200pt;}
.ws47{word-spacing:135.854400pt;}
.ws7e{word-spacing:147.893333pt;}
.ws40{word-spacing:165.713600pt;}
.ws59{word-spacing:181.436800pt;}
.ws3c{word-spacing:204.600000pt;}
.wsdd{word-spacing:244.640000pt;}
.ws81{word-spacing:258.400000pt;}
.ws8e{word-spacing:271.253333pt;}
.wsde{word-spacing:271.466667pt;}
.ws3a{word-spacing:272.056000pt;}
.wse2{word-spacing:273.990400pt;}
.wsb8{word-spacing:283.662400pt;}
.wsb9{word-spacing:286.886400pt;}
.ws5a{word-spacing:309.504000pt;}
.ws5e{word-spacing:310.198400pt;}
.ws5c{word-spacing:320.416000pt;}
.ws5b{word-spacing:350.672000pt;}
.ws5f{word-spacing:352.358400pt;}
.ws5d{word-spacing:356.772800pt;}
.ws8f{word-spacing:410.666667pt;}
.wsdc{word-spacing:441.493333pt;}
.ws80{word-spacing:452.426667pt;}
.wsdb{word-spacing:543.466667pt;}
.wsc7{word-spacing:695.840000pt;}
.wsc5{word-spacing:706.666667pt;}
.ws7d{word-spacing:765.173333pt;}
.ws7c{word-spacing:776.000000pt;}
.wsda{word-spacing:802.506667pt;}
.wsd9{word-spacing:813.333333pt;}
.wsba{word-spacing:1363.344000pt;}
.wsca{word-spacing:1363.632000pt;}
.wse5{word-spacing:1364.304000pt;}
.ws93{word-spacing:1367.040000pt;}
.ws4a{word-spacing:1387.248000pt;}
.ws84{word-spacing:1392.864000pt;}
.wsc2{word-spacing:1393.200000pt;}
.wse8{word-spacing:1393.296000pt;}
.wsaa{word-spacing:1393.344000pt;}
.wsd5{word-spacing:1393.680000pt;}
.ws28{word-spacing:1419.024000pt;}
._7{margin-left:-1419.234133pt;}
._29{margin-left:-1392.621333pt;}
._2b{margin-left:-410.760000pt;}
._2f{margin-left:-11.306667pt;}
._8{margin-left:-10.026667pt;}
._16{margin-left:-8.413867pt;}
._61{margin-left:-6.754667pt;}
._12{margin-left:-5.861333pt;}
._4{margin-left:-4.843467pt;}
._9{margin-left:-3.472000pt;}
._0{margin-left:-2.133333pt;}
._3{margin-left:-1.133333pt;}
._6{width:0.893333pt;}
._1{width:1.840533pt;}
._2{width:2.788000pt;}
._5{width:3.845333pt;}
._11{width:5.130667pt;}
._a{width:6.186667pt;}
._58{width:15.680000pt;}
._32{width:20.266667pt;}
._57{width:22.453333pt;}
._31{width:26.400000pt;}
._2e{width:34.720000pt;}
._24{width:38.986667pt;}
._30{width:41.812800pt;}
._1d{width:44.193067pt;}
._1c{width:46.771733pt;}
._28{width:47.840000pt;}
._43{width:49.013333pt;}
._b{width:49.946667pt;}
._27{width:55.413333pt;}
._1f{width:58.346667pt;}
._35{width:83.328533pt;}
._5e{width:89.346667pt;}
._49{width:95.946667pt;}
._10{width:106.441600pt;}
._3f{width:109.760000pt;}
._4c{width:110.933333pt;}
._4d{width:113.072000pt;}
._4a{width:116.533333pt;}
._5c{width:117.913600pt;}
._3e{width:119.504000pt;}
._5b{width:122.038400pt;}
._4e{width:123.480000pt;}
._f{width:135.557333pt;}
._e{width:137.176267pt;}
._26{width:139.306667pt;}
._4f{width:158.680000pt;}
._5d{width:160.813333pt;}
._3c{width:171.754667pt;}
._2a{width:181.013333pt;}
._60{width:183.225067pt;}
._51{width:186.666667pt;}
._34{width:191.605333pt;}
._42{width:202.560000pt;}
._22{width:210.306667pt;}
._c{width:217.071467pt;}
._d{width:224.043200pt;}
._19{width:225.630400pt;}
._3b{width:239.680000pt;}
._33{width:251.075200pt;}
._18{width:252.166933pt;}
._13{width:269.030400pt;}
._20{width:271.466667pt;}
._4b{width:276.272000pt;}
._14{width:291.251200pt;}
._36{width:301.072000pt;}
._38{width:302.064000pt;}
._39{width:304.593600pt;}
._17{width:306.875200pt;}
._59{width:308.533333pt;}
._37{width:309.454400pt;}
._2c{width:318.666667pt;}
._55{width:335.466667pt;}
._5f{width:337.329600pt;}
._25{width:340.000000pt;}
._15{width:345.067200pt;}
._46{width:360.320000pt;}
._41{width:362.346667pt;}
._1b{width:363.915200pt;}
._1a{width:367.883200pt;}
._5a{width:373.813333pt;}
._44{width:391.733333pt;}
._21{width:411.000000pt;}
._40{width:443.466667pt;}
._2d{width:457.760000pt;}
._56{width:490.253333pt;}
._23{width:516.280000pt;}
._53{width:543.680000pt;}
._3d{width:596.992000pt;}
._52{width:627.512000pt;}
._47{width:645.920000pt;}
._48{width:653.440000pt;}
._3a{width:693.333333pt;}
._54{width:730.346667pt;}
._1e{width:815.680000pt;}
._45{width:821.013333pt;}
._50{width:853.013333pt;}
.fs4{font-size:19.733333pt;}
.fs9{font-size:28.916800pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:80.487733pt;}
.y6a{bottom:80.493200pt;}
.y41{bottom:80.498533pt;}
.y98{bottom:80.498667pt;}
.y62{bottom:80.504133pt;}
.y27{bottom:81.171600pt;}
.y85{bottom:81.171733pt;}
.yf3{bottom:82.354933pt;}
.ye9{bottom:82.366267pt;}
.y99{bottom:95.826533pt;}
.y69{bottom:95.832000pt;}
.y40{bottom:95.837333pt;}
.y61{bottom:95.837467pt;}
.y25{bottom:97.571600pt;}
.y84{bottom:97.571733pt;}
.y26{bottom:97.664933pt;}
.yf2{bottom:97.688933pt;}
.ye8{bottom:97.700267pt;}
.y122{bottom:99.490267pt;}
.y60{bottom:111.165333pt;}
.y68{bottom:111.170800pt;}
.y97{bottom:111.170933pt;}
.yf1{bottom:113.022933pt;}
.ye7{bottom:113.034267pt;}
.y24{bottom:113.971600pt;}
.y83{bottom:113.971733pt;}
.y121{bottom:114.824267pt;}
.y96{bottom:126.476933pt;}
.y67{bottom:126.498667pt;}
.y5f{bottom:126.504133pt;}
.yf0{bottom:128.356933pt;}
.ye6{bottom:128.368267pt;}
.y14f{bottom:130.124267pt;}
.y120{bottom:130.158267pt;}
.y23{bottom:130.371600pt;}
.y82{bottom:130.371733pt;}
.y95{bottom:141.815733pt;}
.y66{bottom:141.837467pt;}
.y5e{bottom:141.837600pt;}
.yef{bottom:143.690933pt;}
.ye5{bottom:143.702267pt;}
.y14e{bottom:145.458267pt;}
.y11f{bottom:145.492267pt;}
.y22{bottom:146.771600pt;}
.y81{bottom:146.771733pt;}
.ya6{bottom:147.838400pt;}
.y94{bottom:157.154533pt;}
.y5d{bottom:157.170933pt;}
.yee{bottom:159.024933pt;}
.ye4{bottom:159.036267pt;}
.y14d{bottom:160.792267pt;}
.y11e{bottom:160.826267pt;}
.y21{bottom:163.171600pt;}
.y80{bottom:163.171733pt;}
.y93{bottom:172.493333pt;}
.yb4{bottom:172.981867pt;}
.yed{bottom:174.358933pt;}
.ye3{bottom:174.370267pt;}
.y14c{bottom:176.126267pt;}
.y11d{bottom:176.160267pt;}
.y20{bottom:179.571600pt;}
.y7f{bottom:179.571733pt;}
.ya4{bottom:182.506667pt;}
.y92{bottom:187.832133pt;}
.yec{bottom:189.692933pt;}
.ye2{bottom:189.704267pt;}
.y14b{bottom:191.460267pt;}
.y11c{bottom:191.494267pt;}
.y1f{bottom:195.971600pt;}
.y7e{bottom:195.971733pt;}
.yb8{bottom:197.038267pt;}
.ya3{bottom:201.970933pt;}
.y91{bottom:203.170933pt;}
.yeb{bottom:205.026933pt;}
.ye1{bottom:205.038267pt;}
.y14a{bottom:206.794267pt;}
.y11b{bottom:206.828267pt;}
.yb3{bottom:208.275200pt;}
.y1d{bottom:212.371600pt;}
.y7d{bottom:212.371733pt;}
.y1e{bottom:212.464933pt;}
.y90{bottom:218.498800pt;}
.ya2{bottom:219.169733pt;}
.yea{bottom:220.360933pt;}
.ye0{bottom:220.372267pt;}
.y149{bottom:222.128267pt;}
.y11a{bottom:222.162267pt;}
.y1c{bottom:228.771600pt;}
.y7c{bottom:228.771733pt;}
.yc7{bottom:229.891600pt;}
.yb2{bottom:232.235200pt;}
.y8f{bottom:233.837600pt;}
.ya0{bottom:236.021333pt;}
.ya1{bottom:236.108133pt;}
.y148{bottom:237.462267pt;}
.y119{bottom:237.496267pt;}
.y1b{bottom:245.171600pt;}
.y7b{bottom:245.171733pt;}
.y8e{bottom:249.170933pt;}
.ydf{bottom:250.371600pt;}
.y147{bottom:252.796267pt;}
.y118{bottom:252.830267pt;}
.y9f{bottom:253.220133pt;}
.yb1{bottom:256.191333pt;}
.y1a{bottom:261.571600pt;}
.y7a{bottom:261.571733pt;}
.y146{bottom:268.130267pt;}
.y117{bottom:268.164267pt;}
.yc6{bottom:268.971600pt;}
.y19{bottom:277.971600pt;}
.y79{bottom:277.971733pt;}
.yb0{bottom:280.151333pt;}
.y145{bottom:283.464267pt;}
.y116{bottom:283.498267pt;}
.yc5{bottom:292.931600pt;}
.y18{bottom:294.371600pt;}
.y78{bottom:294.371733pt;}
.y56{bottom:297.306533pt;}
.y144{bottom:298.798267pt;}
.y115{bottom:298.832267pt;}
.yaf{bottom:304.111333pt;}
.y17{bottom:310.771600pt;}
.y77{bottom:310.771733pt;}
.y143{bottom:314.132267pt;}
.y114{bottom:314.166267pt;}
.y55{bottom:316.758533pt;}
.yc4{bottom:316.891600pt;}
.y16{bottom:327.171600pt;}
.y76{bottom:327.171733pt;}
.yae{bottom:328.071333pt;}
.y142{bottom:329.466267pt;}
.y113{bottom:329.500267pt;}
.y54{bottom:333.957333pt;}
.yc3{bottom:340.851600pt;}
.y15{bottom:343.571600pt;}
.yde{bottom:343.571733pt;}
.y141{bottom:344.800267pt;}
.y112{bottom:344.834267pt;}
.y53{bottom:350.821333pt;}
.yad{bottom:352.026667pt;}
.y14{bottom:359.971600pt;}
.ydd{bottom:359.971733pt;}
.yb6{bottom:360.064933pt;}
.y140{bottom:360.134267pt;}
.y111{bottom:360.168267pt;}
.y75{bottom:361.038267pt;}
.yc2{bottom:364.811600pt;}
.y52{bottom:368.020133pt;}
.y13f{bottom:375.468267pt;}
.y110{bottom:375.502267pt;}
.yac{bottom:375.986667pt;}
.y3f{bottom:376.371600pt;}
.ydc{bottom:376.371733pt;}
.y65{bottom:377.438267pt;}
.y8c{bottom:385.985067pt;}
.yc1{bottom:388.771600pt;}
.y13e{bottom:390.802267pt;}
.y10f{bottom:390.836267pt;}
.y13{bottom:392.771600pt;}
.ydb{bottom:392.771733pt;}
.yab{bottom:399.946667pt;}
.y73{bottom:402.251733pt;}
.y13d{bottom:406.136267pt;}
.y10e{bottom:406.170267pt;}
.y3e{bottom:409.171600pt;}
.y51{bottom:409.171733pt;}
.y8b{bottom:409.945067pt;}
.yc0{bottom:412.731600pt;}
.y13c{bottom:421.470267pt;}
.y10d{bottom:421.504267pt;}
.yaa{bottom:423.906667pt;}
.y3d{bottom:425.571600pt;}
.y50{bottom:425.571733pt;}
.y72{bottom:426.211733pt;}
.y8a{bottom:433.905067pt;}
.ybf{bottom:436.691600pt;}
.y13b{bottom:436.804267pt;}
.y10c{bottom:436.838267pt;}
.y12{bottom:441.135467pt;}
.y5c{bottom:441.971600pt;}
.y4f{bottom:441.971733pt;}
.ya9{bottom:447.864800pt;}
.yda{bottom:449.974133pt;}
.y71{bottom:450.171733pt;}
.y13a{bottom:452.138267pt;}
.y10b{bottom:452.172267pt;}
.y11{bottom:456.469467pt;}
.y89{bottom:457.865067pt;}
.y3c{bottom:458.371600pt;}
.y4e{bottom:458.371733pt;}
.ybe{bottom:460.651600pt;}
.y139{bottom:467.472267pt;}
.y10a{bottom:467.506267pt;}
.yd9{bottom:469.446000pt;}
.y10{bottom:471.803467pt;}
.ya8{bottom:471.824800pt;}
.y70{bottom:474.131733pt;}
.y8d{bottom:474.771600pt;}
.y4d{bottom:474.771733pt;}
.y9e{bottom:474.864933pt;}
.y88{bottom:481.825067pt;}
.y138{bottom:482.806267pt;}
.y109{bottom:482.840267pt;}
.ybc{bottom:484.611600pt;}
.ybd{bottom:484.704933pt;}
.yd5{bottom:486.297600pt;}
.yd8{bottom:486.310000pt;}
.y3b{bottom:491.171600pt;}
.y4c{bottom:491.171733pt;}
.ya7{bottom:495.784800pt;}
.y6f{bottom:498.091733pt;}
.y137{bottom:498.140267pt;}
.y108{bottom:498.174267pt;}
.yd4{bottom:500.694000pt;}
.yd7{bottom:500.706400pt;}
.yf{bottom:502.471467pt;}
.y3a{bottom:507.571600pt;}
.y4b{bottom:507.571733pt;}
.y9d{bottom:507.664933pt;}
.ybb{bottom:508.571600pt;}
.y136{bottom:513.474267pt;}
.y107{bottom:513.508267pt;}
.yd3{bottom:515.090400pt;}
.yd6{bottom:515.102800pt;}
.yd2{bottom:516.318000pt;}
.y87{bottom:517.118400pt;}
.ye{bottom:517.805467pt;}
.y6e{bottom:522.051733pt;}
.y39{bottom:523.971600pt;}
.y135{bottom:528.808267pt;}
.y106{bottom:528.842267pt;}
.yd1{bottom:531.942000pt;}
.yba{bottom:532.531600pt;}
.yd{bottom:533.139467pt;}
.y38{bottom:540.371600pt;}
.y4a{bottom:540.371733pt;}
.y86{bottom:541.078400pt;}
.y134{bottom:544.142267pt;}
.y105{bottom:544.176267pt;}
.yd0{bottom:546.337067pt;}
.yc{bottom:548.473467pt;}
.yb9{bottom:556.491600pt;}
.y37{bottom:556.771600pt;}
.yb5{bottom:556.864933pt;}
.y6d{bottom:557.345067pt;}
.y133{bottom:559.476267pt;}
.y104{bottom:559.510267pt;}
.ycf{bottom:563.201067pt;}
.yb{bottom:563.807467pt;}
.y36{bottom:573.171600pt;}
.y49{bottom:573.171733pt;}
.y132{bottom:574.810267pt;}
.y103{bottom:574.844267pt;}
.yce{bottom:577.601067pt;}
.ya{bottom:579.141467pt;}
.y6c{bottom:581.305067pt;}
.yca{bottom:584.807467pt;}
.y35{bottom:589.571600pt;}
.y48{bottom:589.571733pt;}
.ya5{bottom:589.664933pt;}
.y131{bottom:590.144267pt;}
.y102{bottom:590.178267pt;}
.ycd{bottom:592.011867pt;}
.y5b{bottom:592.161467pt;}
.y9{bottom:594.475467pt;}
.y6b{bottom:605.265067pt;}
.y130{bottom:605.478267pt;}
.y101{bottom:605.512267pt;}
.y34{bottom:605.971600pt;}
.y47{bottom:605.971733pt;}
.yb7{bottom:606.064933pt;}
.ycb{bottom:606.408267pt;}
.ycc{bottom:606.495067pt;}
.y8{bottom:609.809467pt;}
.y5a{bottom:611.933733pt;}
.y12f{bottom:620.812267pt;}
.y100{bottom:620.846267pt;}
.y74{bottom:622.371600pt;}
.yc9{bottom:623.607067pt;}
.y7{bottom:625.143467pt;}
.y59{bottom:629.144933pt;}
.y12e{bottom:636.146267pt;}
.yff{bottom:636.180267pt;}
.y33{bottom:638.771600pt;}
.y6{bottom:640.477467pt;}
.yc8{bottom:640.805867pt;}
.y46{bottom:642.051733pt;}
.y58{bottom:646.356133pt;}
.y12d{bottom:651.480267pt;}
.yfe{bottom:651.514267pt;}
.y64{bottom:655.171600pt;}
.y5{bottom:655.811467pt;}
.y45{bottom:661.493467pt;}
.y57{bottom:663.220133pt;}
.y12c{bottom:666.814267pt;}
.yfd{bottom:666.848267pt;}
.y63{bottom:671.571600pt;}
.y44{bottom:678.357467pt;}
.y12b{bottom:682.148267pt;}
.yfc{bottom:682.182267pt;}
.y32{bottom:687.971600pt;}
.y43{bottom:695.221467pt;}
.y12a{bottom:697.482267pt;}
.yfb{bottom:697.516267pt;}
.y4{bottom:701.590933pt;}
.y31{bottom:704.371600pt;}
.y42{bottom:712.420267pt;}
.y129{bottom:712.816267pt;}
.yfa{bottom:712.850267pt;}
.y30{bottom:720.771600pt;}
.y128{bottom:728.150267pt;}
.yf9{bottom:728.184267pt;}
.y3{bottom:728.262933pt;}
.y2f{bottom:737.171600pt;}
.y9c{bottom:737.171733pt;}
.y127{bottom:743.484267pt;}
.yf8{bottom:743.518267pt;}
.y2e{bottom:753.571600pt;}
.y9b{bottom:753.571733pt;}
.y126{bottom:758.818267pt;}
.yf7{bottom:758.852267pt;}
.y29{bottom:762.125333pt;}
.y28{bottom:768.790267pt;}
.y2d{bottom:769.971600pt;}
.y2{bottom:770.047733pt;}
.y125{bottom:774.152267pt;}
.yf6{bottom:774.186267pt;}
.y2c{bottom:786.371600pt;}
.y124{bottom:789.486267pt;}
.yf5{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y2b{bottom:802.771600pt;}
.y123{bottom:804.820267pt;}
.yf4{bottom:804.854267pt;}
.y2a{bottom:849.726533pt;}
.h9{height:13.596267pt;}
.he{height:37.993600pt;}
.h4{height:42.840000pt;}
.hd{height:44.018667pt;}
.h5{height:44.290667pt;}
.ha{height:44.736000pt;}
.h18{height:47.814400pt;}
.h14{height:48.138187pt;}
.hc{height:48.161600pt;}
.h19{height:48.166933pt;}
.hf{height:48.183467pt;}
.h10{height:48.270933pt;}
.h12{height:49.203200pt;}
.h13{height:49.550400pt;}
.hb{height:49.706667pt;}
.h6{height:50.400000pt;}
.h8{height:51.733333pt;}
.h7{height:52.106667pt;}
.h11{height:52.107200pt;}
.h15{height:52.114133pt;}
.h17{height:52.117867pt;}
.h16{height:52.121600pt;}
.h3{height:59.648000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.xa{left:23.081200pt;}
.x9{left:25.631733pt;}
.x7{left:64.252000pt;}
.x1{left:71.811067pt;}
.x2d{left:75.585333pt;}
.x8{left:83.145333pt;}
.x1c{left:86.252000pt;}
.x2{left:90.704400pt;}
.x16{left:92.981600pt;}
.x1b{left:96.896267pt;}
.x10{left:97.825333pt;}
.xf{left:100.398667pt;}
.xb{left:102.078267pt;}
.xc{left:104.025067pt;}
.xe{left:105.847867pt;}
.x11{left:109.603867pt;}
.x29{left:111.135200pt;}
.x14{left:114.378000pt;}
.xd{left:115.705867pt;}
.x27{left:162.793600pt;}
.x26{left:172.681467pt;}
.x19{left:211.546133pt;}
.x13{left:220.884533pt;}
.x20{left:227.733200pt;}
.x2a{left:233.448800pt;}
.x1a{left:258.372800pt;}
.x1e{left:275.425067pt;}
.x1f{left:283.905200pt;}
.x12{left:301.071200pt;}
.x2f{left:314.140667pt;}
.x3{left:315.397733pt;}
.x2b{left:321.699600pt;}
.x2e{left:325.474000pt;}
.x2c{left:333.032933pt;}
.x28{left:354.931600pt;}
.x17{left:361.319467pt;}
.x1d{left:420.772000pt;}
.x4{left:429.997733pt;}
.x23{left:455.422000pt;}
.x24{left:458.993200pt;}
.x25{left:469.624267pt;}
.x21{left:477.270800pt;}
.x22{left:486.955200pt;}
.x15{left:494.572000pt;}
.x18{left:530.426133pt;}
.x6{left:579.238667pt;}
.x5{left:581.789200pt;}
}




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