
    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_91191a0d5f8f54187538a869.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114000;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_8b54b00829c62311ce003480.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_bd754d37d1e66eb43f2df1a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.185000;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_080ef81b14e66fa47f54ff37.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_1ec20ff32635b31924549157.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172000;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_e14bb1e9166bb2d90aa446a6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1383c17bd810453c5f07c2d5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e14bb1e9166bb2d90aa446a6.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_dc6aec6cfd27fb9c2d5b9797.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_bc349c33f25275743abf085a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.057129;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_c7a2ba9ee014a10a93feea66.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.674316;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_3c13d4127ba85f68014436b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.036000;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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-19.980000px;}
.v4{vertical-align:-18.556800px;}
.v6{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.420000px;}
.v5{vertical-align:18.581400px;}
.v2{vertical-align:19.980000px;}
.v3{vertical-align:32.977800px;}
.v7{vertical-align:39.960000px;}
.ls71{letter-spacing:-4.500000px;}
.ls69{letter-spacing:-3.000000px;}
.ls15{letter-spacing:-2.754000px;}
.ls38{letter-spacing:-2.538000px;}
.ls1f{letter-spacing:-2.214000px;}
.ls66{letter-spacing:-2.008800px;}
.ls4a{letter-spacing:-1.620000px;}
.ls50{letter-spacing:-1.200000px;}
.ls5c{letter-spacing:-1.140000px;}
.ls20{letter-spacing:-0.874500px;}
.ls39{letter-spacing:-0.734580px;}
.ls6e{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.600000px;}
.ls5e{letter-spacing:-0.558000px;}
.ls3e{letter-spacing:-0.524700px;}
.ls6f{letter-spacing:-0.486000px;}
.ls58{letter-spacing:-0.480000px;}
.ls5d{letter-spacing:-0.414000px;}
.ls5b{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.349800px;}
.ls3a{letter-spacing:-0.300000px;}
.ls3c{letter-spacing:-0.244860px;}
.ls23{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.180000px;}
.ls51{letter-spacing:-0.167400px;}
.ls46{letter-spacing:-0.120000px;}
.ls52{letter-spacing:-0.111600px;}
.ls53{letter-spacing:-0.065063px;}
.ls17{letter-spacing:-0.060000px;}
.ls64{letter-spacing:-0.054000px;}
.lsa{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.000420px;}
.lsf{letter-spacing:0.022200px;}
.ls4e{letter-spacing:0.034980px;}
.ls44{letter-spacing:0.055800px;}
.ls10{letter-spacing:0.060000px;}
.ls3b{letter-spacing:0.069960px;}
.ls31{letter-spacing:0.078480px;}
.ls61{letter-spacing:0.099420px;}
.ls0{letter-spacing:0.102000px;}
.ls65{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.111600px;}
.ls5{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.139920px;}
.ls60{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.162360px;}
.ls1e{letter-spacing:0.167400px;}
.ls42{letter-spacing:0.173160px;}
.ls4b{letter-spacing:0.174900px;}
.ls6{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.185880px;}
.ls2{letter-spacing:0.204000px;}
.ls8{letter-spacing:0.223200px;}
.ls1b{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.243300px;}
.ls1{letter-spacing:0.255000px;}
.ls1d{letter-spacing:0.265800px;}
.ls49{letter-spacing:0.279000px;}
.ls11{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.306000px;}
.ls68{letter-spacing:0.330000px;}
.ls2f{letter-spacing:0.346560px;}
.ls2d{letter-spacing:0.349800px;}
.ls6c{letter-spacing:0.357000px;}
.ls7{letter-spacing:0.360000px;}
.ls57{letter-spacing:0.378000px;}
.ls41{letter-spacing:0.390000px;}
.ls37{letter-spacing:0.390600px;}
.ls43{letter-spacing:0.413400px;}
.ls33{letter-spacing:0.414000px;}
.ls19{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.558000px;}
.ls2e{letter-spacing:0.595200px;}
.lse{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.612150px;}
.ls3d{letter-spacing:0.629640px;}
.ls18{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.732600px;}
.ls12{letter-spacing:0.780000px;}
.ls36{letter-spacing:0.837000px;}
.ls13{letter-spacing:0.840000px;}
.ls40{letter-spacing:0.870000px;}
.ls35{letter-spacing:0.892800px;}
.ls28{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.918000px;}
.ls3f{letter-spacing:0.960000px;}
.lsc{letter-spacing:0.969000px;}
.ls67{letter-spacing:0.972000px;}
.ls30{letter-spacing:0.990000px;}
.ls2a{letter-spacing:1.020000px;}
.ls29{letter-spacing:1.050000px;}
.ls14{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.200000px;}
.ls48{letter-spacing:1.260000px;}
.ls4d{letter-spacing:1.350000px;}
.ls5f{letter-spacing:1.500000px;}
.ls6b{letter-spacing:1.620000px;}
.ls70{letter-spacing:1.680000px;}
.ls62{letter-spacing:1.860000px;}
.ls25{letter-spacing:1.920000px;}
.ls27{letter-spacing:2.198400px;}
.ls3{letter-spacing:2.295000px;}
.ls6a{letter-spacing:2.340000px;}
.ls6d{letter-spacing:2.754000px;}
.ls2c{letter-spacing:4.200000px;}
.ls59{letter-spacing:18.000000px;}
.ls4f{letter-spacing:107.760000px;}
.ls56{letter-spacing:140.460000px;}
.ls55{letter-spacing:141.780000px;}
.ls4c{letter-spacing:200.940000px;}
.ls54{letter-spacing:317.460000px;}
.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;}
}
.wse4{word-spacing:-60.240000px;}
.ws10b{word-spacing:-60.000000px;}
.ws11a{word-spacing:-57.000000px;}
.ws124{word-spacing:-14.418000px;}
.wsa0{word-spacing:-14.148000px;}
.ws77{word-spacing:-13.716000px;}
.ws12f{word-spacing:-13.680000px;}
.wsce{word-spacing:-13.176000px;}
.ws39{word-spacing:-13.020000px;}
.ws126{word-spacing:-12.954000px;}
.ws10a{word-spacing:-12.906000px;}
.wsa2{word-spacing:-12.600000px;}
.wsfa{word-spacing:-12.582000px;}
.ws57{word-spacing:-12.555000px;}
.ws3{word-spacing:-12.495000px;}
.ws12e{word-spacing:-12.312000px;}
.wse7{word-spacing:-11.700000px;}
.ws11b{word-spacing:-11.610000px;}
.ws11c{word-spacing:-11.580000px;}
.ws108{word-spacing:-11.550600px;}
.wse9{word-spacing:-11.439000px;}
.wsb6{word-spacing:-11.400000px;}
.wse6{word-spacing:-11.340000px;}
.ws11d{word-spacing:-11.280000px;}
.ws2{word-spacing:-11.169000px;}
.ws10c{word-spacing:-11.160000px;}
.ws10d{word-spacing:-10.992600px;}
.ws127{word-spacing:-10.965000px;}
.ws1{word-spacing:-10.710000px;}
.ws125{word-spacing:-10.659000px;}
.ws38{word-spacing:-10.584000px;}
.ws0{word-spacing:-10.506000px;}
.ws115{word-spacing:-10.320000px;}
.wse5{word-spacing:-10.080000px;}
.ws130{word-spacing:-9.600000px;}
.ws5{word-spacing:-8.901000px;}
.wse8{word-spacing:-8.487000px;}
.ws131{word-spacing:-8.100000px;}
.ws54{word-spacing:-7.975440px;}
.ws55{word-spacing:-7.957950px;}
.ws56{word-spacing:-7.695600px;}
.ws8b{word-spacing:-7.520700px;}
.ws52{word-spacing:-7.485720px;}
.ws53{word-spacing:-7.415760px;}
.wsa1{word-spacing:-7.380780px;}
.ws4{word-spacing:-7.345800px;}
.ws3b{word-spacing:-6.996000px;}
.wsb7{word-spacing:-6.994251px;}
.wsb8{word-spacing:-6.929188px;}
.ws51{word-spacing:-6.611220px;}
.ws3a{word-spacing:-6.471300px;}
.ws114{word-spacing:-5.400000px;}
.ws9c{word-spacing:-3.120000px;}
.ws96{word-spacing:-3.060000px;}
.ws90{word-spacing:-2.760000px;}
.ws121{word-spacing:-2.340000px;}
.ws8f{word-spacing:-2.160000px;}
.wsb1{word-spacing:-1.980000px;}
.ws2a{word-spacing:-1.920000px;}
.ws30{word-spacing:-1.860000px;}
.ws50{word-spacing:-1.841400px;}
.wsc6{word-spacing:-1.785600px;}
.ws31{word-spacing:-1.740000px;}
.wsca{word-spacing:-1.729800px;}
.ws2b{word-spacing:-1.680000px;}
.ws89{word-spacing:-1.674000px;}
.ws17{word-spacing:-1.620000px;}
.ws85{word-spacing:-1.562400px;}
.wsbf{word-spacing:-1.560000px;}
.ws1d{word-spacing:-1.500000px;}
.wsde{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.395000px;}
.ws5c{word-spacing:-1.380000px;}
.ws79{word-spacing:-1.320000px;}
.ws76{word-spacing:-1.283400px;}
.ws3f{word-spacing:-1.260000px;}
.ws86{word-spacing:-1.227600px;}
.ws14{word-spacing:-1.200000px;}
.wsc8{word-spacing:-1.171800px;}
.ws2f{word-spacing:-1.140000px;}
.ws26{word-spacing:-1.080000px;}
.ws4e{word-spacing:-1.060200px;}
.ws33{word-spacing:-1.020000px;}
.wsa6{word-spacing:-0.960000px;}
.ws8a{word-spacing:-0.948600px;}
.ws12b{word-spacing:-0.867000px;}
.ws83{word-spacing:-0.840000px;}
.ws72{word-spacing:-0.837000px;}
.ws46{word-spacing:-0.780000px;}
.ws6{word-spacing:-0.754800px;}
.ws87{word-spacing:-0.725400px;}
.ws65{word-spacing:-0.720000px;}
.ws12c{word-spacing:-0.714000px;}
.ws6e{word-spacing:-0.669600px;}
.wsfc{word-spacing:-0.660000px;}
.ws6c{word-spacing:-0.613800px;}
.ws63{word-spacing:-0.600000px;}
.wse{word-spacing:-0.510000px;}
.ws2c{word-spacing:-0.480000px;}
.wsf{word-spacing:-0.459000px;}
.ws69{word-spacing:-0.420000px;}
.wscd{word-spacing:-0.390600px;}
.ws11f{word-spacing:-0.360000px;}
.ws6d{word-spacing:-0.334800px;}
.ws5f{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.223200px;}
.ws13{word-spacing:-0.204000px;}
.ws32{word-spacing:-0.180000px;}
.wsc7{word-spacing:-0.167400px;}
.ws5b{word-spacing:-0.139920px;}
.ws5d{word-spacing:-0.120000px;}
.ws5e{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.044400px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:0.051000px;}
.ws6a{word-spacing:0.060000px;}
.wscc{word-spacing:0.111600px;}
.ws107{word-spacing:0.120000px;}
.wscb{word-spacing:0.167400px;}
.ws4f{word-spacing:0.223200px;}
.ws2d{word-spacing:0.240000px;}
.ws62{word-spacing:0.244860px;}
.ws16{word-spacing:0.300000px;}
.wsc{word-spacing:0.306000px;}
.ws97{word-spacing:0.349800px;}
.ws47{word-spacing:0.360000px;}
.wsc5{word-spacing:0.390600px;}
.ws29{word-spacing:0.420000px;}
.ws81{word-spacing:0.480000px;}
.ws64{word-spacing:0.524700px;}
.wsf8{word-spacing:0.558000px;}
.ws106{word-spacing:0.600000px;}
.wsd9{word-spacing:0.660000px;}
.wsb0{word-spacing:0.720000px;}
.wsd{word-spacing:0.816000px;}
.ws7d{word-spacing:0.840000px;}
.wsc1{word-spacing:0.874500px;}
.ws40{word-spacing:0.900000px;}
.ws7c{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.wsf9{word-spacing:1.060200px;}
.ws12{word-spacing:1.071000px;}
.ws7e{word-spacing:1.080000px;}
.ws12a{word-spacing:1.122000px;}
.wsf2{word-spacing:1.140000px;}
.ws4b{word-spacing:1.200000px;}
.ws9{word-spacing:1.224000px;}
.ws74{word-spacing:1.227600px;}
.ws4c{word-spacing:1.320000px;}
.ws73{word-spacing:1.339200px;}
.wsa5{word-spacing:1.380000px;}
.ws6f{word-spacing:1.395000px;}
.ws36{word-spacing:1.440000px;}
.ws100{word-spacing:1.506600px;}
.ws123{word-spacing:1.560000px;}
.ws11{word-spacing:1.581000px;}
.ws88{word-spacing:1.618200px;}
.wsa4{word-spacing:1.620000px;}
.wsa{word-spacing:1.632000px;}
.ws80{word-spacing:1.680000px;}
.ws119{word-spacing:1.729800px;}
.ws2e{word-spacing:1.740000px;}
.ws4d{word-spacing:1.785600px;}
.ws109{word-spacing:1.800000px;}
.wsb{word-spacing:1.836000px;}
.ws6b{word-spacing:1.841400px;}
.ws1c{word-spacing:1.860000px;}
.ws20{word-spacing:1.897200px;}
.ws1e{word-spacing:1.920000px;}
.ws35{word-spacing:1.980000px;}
.ws118{word-spacing:2.008800px;}
.ws44{word-spacing:2.040000px;}
.wsc9{word-spacing:2.064600px;}
.ws5a{word-spacing:2.100000px;}
.ws59{word-spacing:2.160000px;}
.ws71{word-spacing:2.232000px;}
.ws82{word-spacing:2.280000px;}
.ws9f{word-spacing:2.287800px;}
.wsbe{word-spacing:2.340000px;}
.ws70{word-spacing:2.399400px;}
.ws41{word-spacing:2.400000px;}
.ws60{word-spacing:2.460000px;}
.ws68{word-spacing:2.520000px;}
.wsdd{word-spacing:2.580000px;}
.ws129{word-spacing:2.601000px;}
.ws91{word-spacing:2.640000px;}
.wsff{word-spacing:2.700000px;}
.ws1f{word-spacing:2.760000px;}
.wsdb{word-spacing:2.820000px;}
.ws3d{word-spacing:2.880000px;}
.wsa7{word-spacing:2.940000px;}
.ws66{word-spacing:3.000000px;}
.wsf1{word-spacing:3.060000px;}
.ws7f{word-spacing:3.120000px;}
.ws8e{word-spacing:3.180000px;}
.wsda{word-spacing:3.240000px;}
.ws117{word-spacing:3.292200px;}
.ws42{word-spacing:3.300000px;}
.ws3e{word-spacing:3.420000px;}
.wsd8{word-spacing:3.480000px;}
.ws61{word-spacing:3.540000px;}
.ws45{word-spacing:3.600000px;}
.ws84{word-spacing:3.660000px;}
.ws34{word-spacing:3.720000px;}
.wsdc{word-spacing:3.780000px;}
.wsfd{word-spacing:3.900000px;}
.ws67{word-spacing:4.080000px;}
.ws105{word-spacing:4.140000px;}
.ws37{word-spacing:4.200000px;}
.wsf3{word-spacing:4.320000px;}
.ws15{word-spacing:4.560000px;}
.ws43{word-spacing:4.680000px;}
.wsfe{word-spacing:5.460000px;}
.ws8d{word-spacing:5.580000px;}
.wsa8{word-spacing:6.480000px;}
.wsf5{word-spacing:6.540000px;}
.ws19{word-spacing:6.960000px;}
.wsbd{word-spacing:7.140000px;}
.ws110{word-spacing:7.740000px;}
.ws122{word-spacing:8.160000px;}
.wse1{word-spacing:9.720000px;}
.wseb{word-spacing:9.780000px;}
.wsd5{word-spacing:11.100000px;}
.wsc0{word-spacing:11.520000px;}
.wsb2{word-spacing:12.060000px;}
.wsba{word-spacing:14.280000px;}
.wsd0{word-spacing:14.580000px;}
.wsc3{word-spacing:15.480000px;}
.wsae{word-spacing:19.800000px;}
.wsd6{word-spacing:22.200000px;}
.ws135{word-spacing:28.320000px;}
.wsf7{word-spacing:32.040000px;}
.wsad{word-spacing:33.780000px;}
.wsac{word-spacing:38.460000px;}
.wsbc{word-spacing:48.600000px;}
.wsa9{word-spacing:48.780000px;}
.wsec{word-spacing:49.140000px;}
.wsb5{word-spacing:51.660000px;}
.ws134{word-spacing:54.120000px;}
.wsaf{word-spacing:55.800000px;}
.ws9b{word-spacing:57.660000px;}
.wsf0{word-spacing:59.400000px;}
.ws112{word-spacing:64.680000px;}
.wsd4{word-spacing:66.480000px;}
.ws49{word-spacing:66.780000px;}
.wse3{word-spacing:70.500000px;}
.ws7b{word-spacing:72.420000px;}
.ws1a{word-spacing:72.780000px;}
.ws94{word-spacing:74.040000px;}
.wsb3{word-spacing:78.780000px;}
.ws92{word-spacing:90.780000px;}
.wsee{word-spacing:101.400000px;}
.wsab{word-spacing:106.440000px;}
.ws9e{word-spacing:111.840000px;}
.ws4a{word-spacing:114.780000px;}
.ws10f{word-spacing:124.680000px;}
.wse0{word-spacing:125.400000px;}
.wsc4{word-spacing:131.400000px;}
.wsd3{word-spacing:140.460000px;}
.ws95{word-spacing:143.400000px;}
.wsd1{word-spacing:162.780000px;}
.wsef{word-spacing:165.540000px;}
.ws133{word-spacing:167.940000px;}
.ws48{word-spacing:173.460000px;}
.ws99{word-spacing:178.680000px;}
.ws7a{word-spacing:190.560000px;}
.wsc2{word-spacing:192.960000px;}
.wsaa{word-spacing:203.880000px;}
.wsbb{word-spacing:284.760000px;}
.wse2{word-spacing:287.820000px;}
.wsb4{word-spacing:299.940000px;}
.wsd7{word-spacing:309.900000px;}
.ws22{word-spacing:325.704600px;}
.ws103{word-spacing:337.422600px;}
.ws101{word-spacing:338.538600px;}
.ws102{word-spacing:339.152400px;}
.ws111{word-spacing:342.600000px;}
.wsf4{word-spacing:361.260000px;}
.ws25{word-spacing:361.695600px;}
.ws23{word-spacing:362.755800px;}
.ws24{word-spacing:363.425400px;}
.ws1b{word-spacing:382.860000px;}
.wsdf{word-spacing:390.720000px;}
.ws113{word-spacing:394.860000px;}
.ws116{word-spacing:397.740000px;}
.wsf6{word-spacing:407.940000px;}
.wsd2{word-spacing:430.020000px;}
.wsed{word-spacing:456.240000px;}
.ws120{word-spacing:464.760000px;}
.ws98{word-spacing:519.180000px;}
.ws9a{word-spacing:520.200000px;}
.ws9d{word-spacing:525.900000px;}
.ws93{word-spacing:574.260000px;}
.ws128{word-spacing:1259.928000px;}
.wsa3{word-spacing:1260.252000px;}
.ws78{word-spacing:1260.684000px;}
.wscf{word-spacing:1261.224000px;}
.ws10e{word-spacing:1261.440000px;}
.wsfb{word-spacing:1261.764000px;}
.ws132{word-spacing:1262.034000px;}
.ws3c{word-spacing:1263.762000px;}
.ws11e{word-spacing:1659.744000px;}
.wsb9{word-spacing:1660.554000px;}
.wsea{word-spacing:1660.608000px;}
.ws104{word-spacing:1661.796000px;}
.ws12d{word-spacing:1662.984000px;}
.ws8c{word-spacing:1664.928000px;}
.ws58{word-spacing:1666.710000px;}
.ws27{word-spacing:1667.196000px;}
._16{margin-left:-1263.297900px;}
._7e{margin-left:-1262.289600px;}
._53{margin-left:-1261.276800px;}
._1e{margin-left:-1260.220800px;}
._7d{margin-left:-1259.212800px;}
._81{margin-left:-112.620000px;}
._5a{margin-left:-94.560000px;}
._4d{margin-left:-61.560000px;}
._2a{margin-left:-35.520000px;}
._17{margin-left:-16.140000px;}
._5d{margin-left:-10.586400px;}
._8{margin-left:-7.175400px;}
._5{margin-left:-5.100000px;}
._d{margin-left:-3.734400px;}
._0{margin-left:-2.419200px;}
._1{margin-left:-1.080000px;}
._6{width:1.061400px;}
._2{width:2.070600px;}
._3{width:3.136500px;}
._4{width:4.456500px;}
._7{width:5.523900px;}
._74{width:8.616000px;}
._76{width:10.080000px;}
._8d{width:11.820000px;}
._8a{width:15.420000px;}
._75{width:19.694400px;}
._f{width:21.780000px;}
._78{width:23.044200px;}
._65{width:25.622400px;}
._10{width:26.880000px;}
._89{width:29.880000px;}
._31{width:31.620000px;}
._69{width:32.642400px;}
._51{width:34.204200px;}
._52{width:36.213600px;}
._47{width:37.998600px;}
._46{width:42.072600px;}
._5f{width:44.070000px;}
._41{width:45.600000px;}
._24{width:48.657600px;}
._1c{width:49.828800px;}
._1d{width:51.614400px;}
._6f{width:53.754000px;}
._e{width:55.297200px;}
._19{width:58.015800px;}
._5e{width:60.200160px;}
._5b{width:62.850000px;}
._83{width:64.500000px;}
._8c{width:65.700000px;}
._39{width:67.639200px;}
._2f{width:71.016000px;}
._a{width:72.660000px;}
._43{width:79.740000px;}
._2b{width:81.842400px;}
._49{width:83.133600px;}
._84{width:84.780000px;}
._2d{width:86.539200px;}
._82{width:87.948000px;}
._21{width:89.267820px;}
._77{width:93.990000px;}
._b{width:99.661200px;}
._3d{width:101.640000px;}
._86{width:103.320000px;}
._87{width:104.940000px;}
._3a{width:106.680000px;}
._20{width:109.020000px;}
._26{width:115.301400px;}
._1a{width:119.574000px;}
._35{width:122.784000px;}
._8e{width:124.380000px;}
._c{width:125.598000px;}
._50{width:127.002000px;}
._8b{width:130.260000px;}
._45{width:131.640000px;}
._63{width:136.350000px;}
._1f{width:137.543820px;}
._85{width:139.320000px;}
._54{width:140.700000px;}
._27{width:142.016400px;}
._28{width:143.598000px;}
._36{width:148.927200px;}
._88{width:151.920000px;}
._8f{width:154.380000px;}
._67{width:155.611140px;}
._22{width:161.652000px;}
._80{width:164.580000px;}
._42{width:165.655200px;}
._7f{width:170.100000px;}
._30{width:173.478540px;}
._70{width:178.856400px;}
._2c{width:182.467740px;}
._4f{width:188.047200px;}
._59{width:193.140000px;}
._68{width:200.875200px;}
._58{width:204.300000px;}
._5c{width:207.576000px;}
._56{width:215.640000px;}
._38{width:222.240000px;}
._66{width:223.533600px;}
._33{width:228.679140px;}
._37{width:235.425540px;}
._25{width:237.031740px;}
._3e{width:248.501340px;}
._2e{width:251.563200px;}
._60{width:252.942000px;}
._61{width:255.944340px;}
._64{width:257.082000px;}
._4a{width:263.281200px;}
._23{width:266.904000px;}
._4b{width:270.959820px;}
._48{width:274.749540px;}
._4c{width:278.280360px;}
._29{width:289.166340px;}
._14{width:300.951600px;}
._32{width:305.040000px;}
._3b{width:311.668800px;}
._57{width:324.240000px;}
._1b{width:327.785160px;}
._79{width:344.983740px;}
._6a{width:351.484200px;}
._6e{width:357.957000px;}
._6b{width:359.742600px;}
._4e{width:360.859200px;}
._7a{width:366.559200px;}
._13{width:367.710300px;}
._11{width:375.757200px;}
._9{width:382.859820px;}
._12{width:384.015600px;}
._15{width:385.299000px;}
._71{width:389.279340px;}
._7b{width:393.192540px;}
._72{width:396.273600px;}
._40{width:399.199200px;}
._3f{width:406.632000px;}
._6d{width:426.889800px;}
._73{width:432.077160px;}
._44{width:433.874400px;}
._6c{width:440.752500px;}
._18{width:448.194360px;}
._3c{width:455.640000px;}
._62{width:462.562620px;}
._55{width:474.933600px;}
._7c{width:523.915740px;}
._34{width:557.877540px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.200000px;}
.fs9{font-size:32.531400px;}
.fs4{font-size:34.980000px;}
.fs5{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:90.530250px;}
.y24{bottom:90.560850px;}
.y79{bottom:90.561000px;}
.y59{bottom:90.567150px;}
.yb3{bottom:91.318050px;}
.y48{bottom:91.318200px;}
.yf2{bottom:102.364800px;}
.yd6{bottom:102.390300px;}
.yae{bottom:107.786400px;}
.y98{bottom:107.804850px;}
.y7e{bottom:107.805000px;}
.y58{bottom:107.811000px;}
.y23{bottom:107.817000px;}
.y78{bottom:107.817150px;}
.yb2{bottom:109.768050px;}
.y47{bottom:109.768200px;}
.yf1{bottom:119.615550px;}
.yd5{bottom:119.641050px;}
.yad{bottom:125.042550px;}
.y97{bottom:125.061000px;}
.y77{bottom:125.061150px;}
.y57{bottom:125.067150px;}
.y81{bottom:125.067300px;}
.y99{bottom:128.218050px;}
.y46{bottom:128.218200px;}
.yf0{bottom:136.866300px;}
.yd4{bottom:136.891800px;}
.yac{bottom:142.298700px;}
.y56{bottom:142.298850px;}
.y6a{bottom:142.304850px;}
.y96{bottom:142.311000px;}
.y9f{bottom:142.311150px;}
.y76{bottom:142.317300px;}
.y22{bottom:146.668050px;}
.y45{bottom:146.668200px;}
.yef{bottom:154.117050px;}
.yd3{bottom:154.142550px;}
.yab{bottom:159.554850px;}
.y55{bottom:159.555000px;}
.y69{bottom:159.561000px;}
.y95{bottom:159.567150px;}
.y75{bottom:159.567300px;}
.y140{bottom:163.653300px;}
.y21{bottom:165.118050px;}
.y44{bottom:165.118200px;}
.yee{bottom:171.367800px;}
.yd2{bottom:171.393300px;}
.y94{bottom:176.798850px;}
.yaa{bottom:176.811000px;}
.y54{bottom:176.811150px;}
.y68{bottom:176.817150px;}
.y74{bottom:176.817300px;}
.y13f{bottom:180.904050px;}
.y20{bottom:183.568050px;}
.y43{bottom:183.568200px;}
.yed{bottom:188.618550px;}
.yd1{bottom:188.644050px;}
.y73{bottom:194.048850px;}
.y93{bottom:194.055000px;}
.y67{bottom:194.061000px;}
.ya9{bottom:194.067150px;}
.y53{bottom:194.067300px;}
.y13e{bottom:198.154800px;}
.y1f{bottom:202.018050px;}
.yec{bottom:205.869300px;}
.yd0{bottom:205.894800px;}
.y72{bottom:211.305000px;}
.y92{bottom:211.311150px;}
.y66{bottom:211.317150px;}
.y52{bottom:211.317300px;}
.y13d{bottom:215.405550px;}
.y7d{bottom:220.468050px;}
.yeb{bottom:223.120050px;}
.ycf{bottom:223.145550px;}
.y71{bottom:228.561150px;}
.y65{bottom:228.561300px;}
.y91{bottom:228.567300px;}
.y13c{bottom:232.656300px;}
.y42{bottom:235.167000px;}
.y1e{bottom:238.918050px;}
.yea{bottom:240.370800px;}
.yce{bottom:240.396300px;}
.y90{bottom:245.774250px;}
.y70{bottom:245.817300px;}
.y64{bottom:245.817450px;}
.y13b{bottom:249.907050px;}
.y7c{bottom:252.373050px;}
.y1d{bottom:257.368050px;}
.ye9{bottom:257.621550px;}
.ycd{bottom:257.647050px;}
.y41{bottom:260.425950px;}
.y8f{bottom:263.030400px;}
.y6f{bottom:263.067300px;}
.y63{bottom:263.067450px;}
.ye8{bottom:274.872300px;}
.ycc{bottom:274.897800px;}
.y1c{bottom:275.818050px;}
.y40{bottom:279.397950px;}
.y8e{bottom:280.286550px;}
.y62{bottom:280.311300px;}
.y1b{bottom:289.273050px;}
.ye7{bottom:292.123050px;}
.ycb{bottom:292.148550px;}
.y1a{bottom:294.268050px;}
.y8d{bottom:297.542700px;}
.y61{bottom:297.567450px;}
.y3f{bottom:298.369950px;}
.y13a{bottom:301.659300px;}
.y116{bottom:301.684800px;}
.ya8{bottom:307.723050px;}
.ye6{bottom:309.373800px;}
.yca{bottom:309.399300px;}
.y51{bottom:312.718050px;}
.y8c{bottom:314.798850px;}
.y3e{bottom:317.341950px;}
.y139{bottom:318.910050px;}
.y115{bottom:318.935550px;}
.y7b{bottom:326.173050px;}
.ye5{bottom:326.624550px;}
.yc9{bottom:326.650050px;}
.y19{bottom:331.168050px;}
.y8b{bottom:332.055000px;}
.y3d{bottom:333.844800px;}
.y138{bottom:336.160800px;}
.y114{bottom:336.186300px;}
.ye4{bottom:343.875300px;}
.yc8{bottom:343.900800px;}
.y8a{bottom:349.311150px;}
.y18{bottom:349.618050px;}
.y137{bottom:353.411550px;}
.y113{bottom:353.437050px;}
.ye3{bottom:361.126050px;}
.yc7{bottom:361.151550px;}
.ya7{bottom:365.750400px;}
.y89{bottom:366.567300px;}
.y17{bottom:368.068050px;}
.y60{bottom:368.068200px;}
.y136{bottom:370.662300px;}
.y112{bottom:370.687800px;}
.ye2{bottom:378.376800px;}
.yc6{bottom:378.402300px;}
.y16{bottom:386.518050px;}
.y5f{bottom:386.518200px;}
.y135{bottom:387.913050px;}
.y111{bottom:387.938550px;}
.ya6{bottom:391.001100px;}
.ye1{bottom:395.627550px;}
.yc5{bottom:395.653050px;}
.y15{bottom:404.968050px;}
.y5e{bottom:404.968200px;}
.y134{bottom:405.163800px;}
.y110{bottom:405.189300px;}
.ya5{bottom:407.503950px;}
.ye0{bottom:412.878300px;}
.yc4{bottom:412.903800px;}
.y50{bottom:418.423200px;}
.y133{bottom:422.414550px;}
.y10f{bottom:422.440050px;}
.y3c{bottom:423.418050px;}
.y5d{bottom:423.418200px;}
.ya4{bottom:426.475950px;}
.ydf{bottom:430.129050px;}
.yc3{bottom:430.154550px;}
.y132{bottom:439.665300px;}
.y10e{bottom:439.690800px;}
.y14{bottom:441.868050px;}
.y5c{bottom:441.868200px;}
.ya3{bottom:445.447950px;}
.yde{bottom:447.379800px;}
.yc2{bottom:447.405300px;}
.y131{bottom:456.916050px;}
.y10d{bottom:456.941550px;}
.y3b{bottom:460.318050px;}
.y88{bottom:460.318200px;}
.ya2{bottom:464.419950px;}
.ydd{bottom:464.630550px;}
.yc1{bottom:464.656050px;}
.y7a{bottom:473.773200px;}
.y130{bottom:474.166800px;}
.y10c{bottom:474.192300px;}
.y3a{bottom:478.768050px;}
.y87{bottom:478.768200px;}
.ydc{bottom:481.881300px;}
.yc0{bottom:481.906800px;}
.ya1{bottom:483.391950px;}
.y12f{bottom:491.417550px;}
.y10b{bottom:491.443050px;}
.y39{bottom:497.218050px;}
.y86{bottom:497.218200px;}
.ydb{bottom:499.132050px;}
.ybf{bottom:499.157550px;}
.ya0{bottom:499.894800px;}
.y13{bottom:500.290200px;}
.y12e{bottom:508.668300px;}
.y10a{bottom:508.693800px;}
.y4f{bottom:515.668050px;}
.y85{bottom:515.668200px;}
.yda{bottom:516.382800px;}
.ybe{bottom:516.408300px;}
.y12{bottom:517.540950px;}
.y12d{bottom:525.919050px;}
.y109{bottom:525.944550px;}
.y80{bottom:529.123050px;}
.yd9{bottom:533.633550px;}
.ybd{bottom:533.659050px;}
.y38{bottom:534.118050px;}
.y4e{bottom:534.118200px;}
.y12c{bottom:543.169800px;}
.y108{bottom:543.195300px;}
.yd8{bottom:550.884300px;}
.ybc{bottom:550.909800px;}
.y11{bottom:552.042450px;}
.y37{bottom:552.568050px;}
.y4d{bottom:552.568200px;}
.y12b{bottom:560.420550px;}
.y107{bottom:560.446050px;}
.yd7{bottom:568.135050px;}
.ybb{bottom:568.160550px;}
.y10{bottom:569.293200px;}
.y5b{bottom:571.018050px;}
.y4c{bottom:571.018200px;}
.y12a{bottom:577.671300px;}
.y106{bottom:577.696800px;}
.y84{bottom:584.473200px;}
.y36{bottom:589.468050px;}
.y129{bottom:594.922050px;}
.y105{bottom:594.947550px;}
.yba{bottom:602.662050px;}
.y7f{bottom:602.923200px;}
.yf{bottom:603.794700px;}
.y35{bottom:607.918050px;}
.y128{bottom:612.172800px;}
.y104{bottom:612.198300px;}
.ye{bottom:621.045450px;}
.yb1{bottom:621.373050px;}
.y34{bottom:626.368050px;}
.y127{bottom:629.423550px;}
.y103{bottom:629.449050px;}
.yd{bottom:638.296200px;}
.y33{bottom:644.818050px;}
.y126{bottom:646.674300px;}
.y102{bottom:646.699800px;}
.yb9{bottom:654.414300px;}
.yc{bottom:655.546950px;}
.y83{bottom:658.273200px;}
.y32{bottom:663.268050px;}
.y125{bottom:663.925050px;}
.y101{bottom:663.950550px;}
.yb8{bottom:671.665050px;}
.yb{bottom:672.797700px;}
.y124{bottom:681.175800px;}
.y100{bottom:681.201300px;}
.y4b{bottom:681.718050px;}
.yb7{bottom:688.915800px;}
.ya{bottom:690.048450px;}
.yb0{bottom:695.173200px;}
.y123{bottom:698.426550px;}
.yff{bottom:698.452050px;}
.y31{bottom:700.168050px;}
.y9d{bottom:700.168200px;}
.y9e{bottom:702.418050px;}
.yb6{bottom:706.166550px;}
.y9{bottom:707.299200px;}
.y122{bottom:715.677300px;}
.yfe{bottom:715.702800px;}
.y4a{bottom:718.618050px;}
.yb5{bottom:723.417300px;}
.y8{bottom:724.549950px;}
.y121{bottom:732.928050px;}
.yfd{bottom:732.953550px;}
.y49{bottom:737.068050px;}
.y9c{bottom:737.068200px;}
.yb4{bottom:740.668050px;}
.y7{bottom:741.800700px;}
.y120{bottom:750.178800px;}
.yfc{bottom:750.204300px;}
.y30{bottom:755.518050px;}
.y9b{bottom:755.518200px;}
.y6{bottom:759.051450px;}
.y11f{bottom:767.429550px;}
.yfb{bottom:767.455050px;}
.y2f{bottom:773.968050px;}
.y9a{bottom:776.218200px;}
.y5{bottom:776.302200px;}
.y11e{bottom:784.680300px;}
.yfa{bottom:784.705800px;}
.y2e{bottom:792.418050px;}
.y4{bottom:793.552950px;}
.y11d{bottom:801.931050px;}
.yf9{bottom:801.956550px;}
.y3{bottom:810.803700px;}
.y2d{bottom:810.868050px;}
.y11c{bottom:819.181800px;}
.yf8{bottom:819.207300px;}
.y2c{bottom:829.318050px;}
.y11b{bottom:836.432550px;}
.yf7{bottom:836.458050px;}
.y6e{bottom:842.773050px;}
.y2{bottom:845.303700px;}
.y2b{bottom:847.768050px;}
.y5a{bottom:847.768200px;}
.y11a{bottom:853.683300px;}
.yf6{bottom:853.708800px;}
.y26{bottom:857.391000px;}
.y6d{bottom:861.223050px;}
.y25{bottom:864.889050px;}
.y2a{bottom:866.218050px;}
.y6c{bottom:866.218200px;}
.y119{bottom:870.934050px;}
.yf5{bottom:870.959550px;}
.y6b{bottom:879.673050px;}
.y29{bottom:884.668050px;}
.y118{bottom:888.184800px;}
.yf4{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y82{bottom:898.123050px;}
.y28{bottom:903.118050px;}
.y117{bottom:905.435550px;}
.yf3{bottom:905.461050px;}
.y27{bottom:955.942350px;}
.ha{height:15.295800px;}
.h14{height:31.482000px;}
.h19{height:39.066000px;}
.hc{height:42.742800px;}
.h4{height:45.492000px;}
.h1a{height:45.543000px;}
.he{height:45.696000px;}
.h5{height:45.900000px;}
.h9{height:49.996800px;}
.h12{height:50.021400px;}
.h13{height:50.046000px;}
.h15{height:50.070600px;}
.h16{height:50.169000px;}
.hb{height:50.868000px;}
.h6{height:53.520000px;}
.h7{height:54.000000px;}
.h10{height:54.000600px;}
.hf{height:56.520000px;}
.h18{height:56.752031px;}
.h3{height:67.824000px;}
.h11{height:73.979400px;}
.h8{height:73.980000px;}
.hd{height:75.720600px;}
.h17{height:82.974600px;}
.h2{height:85.632000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x5{left:25.310100px;}
.x4{left:28.379250px;}
.x1{left:72.283500px;}
.x6{left:80.787450px;}
.x23{left:85.033500px;}
.x2{left:93.538500px;}
.x7{left:102.042450px;}
.xe{left:167.809350px;}
.x15{left:185.836950px;}
.x17{left:188.762250px;}
.x19{left:206.866650px;}
.x9{left:236.201400px;}
.x8{left:239.647050px;}
.x1d{left:257.408100px;}
.x1c{left:260.853750px;}
.xa{left:267.616800px;}
.x1e{left:288.823500px;}
.x1b{left:296.790300px;}
.xf{left:301.044750px;}
.x10{left:306.669600px;}
.x13{left:335.648550px;}
.x12{left:341.678550px;}
.x11{left:343.358700px;}
.x25{left:353.421000px;}
.x3{left:354.580050px;}
.xd{left:357.144750px;}
.x22{left:360.639000px;}
.x26{left:361.912200px;}
.x24{left:366.171000px;}
.x16{left:367.854000px;}
.x18{left:370.538700px;}
.x21{left:374.108700px;}
.x20{left:381.714450px;}
.x1f{left:386.514600px;}
.x1a{left:425.289450px;}
.x14{left:432.324900px;}
.xc{left:650.349450px;}
.xb{left:653.418600px;}
@media print{
.v1{vertical-align:-17.760000pt;}
.v4{vertical-align:-16.494933pt;}
.v6{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.706667pt;}
.v5{vertical-align:16.516800pt;}
.v2{vertical-align:17.760000pt;}
.v3{vertical-align:29.313600pt;}
.v7{vertical-align:35.520000pt;}
.ls71{letter-spacing:-4.000000pt;}
.ls69{letter-spacing:-2.666667pt;}
.ls15{letter-spacing:-2.448000pt;}
.ls38{letter-spacing:-2.256000pt;}
.ls1f{letter-spacing:-1.968000pt;}
.ls66{letter-spacing:-1.785600pt;}
.ls4a{letter-spacing:-1.440000pt;}
.ls50{letter-spacing:-1.066667pt;}
.ls5c{letter-spacing:-1.013333pt;}
.ls20{letter-spacing:-0.777333pt;}
.ls39{letter-spacing:-0.652960pt;}
.ls6e{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.533333pt;}
.ls5e{letter-spacing:-0.496000pt;}
.ls3e{letter-spacing:-0.466400pt;}
.ls6f{letter-spacing:-0.432000pt;}
.ls58{letter-spacing:-0.426667pt;}
.ls5d{letter-spacing:-0.368000pt;}
.ls5b{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.310933pt;}
.ls3a{letter-spacing:-0.266667pt;}
.ls3c{letter-spacing:-0.217653pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls51{letter-spacing:-0.148800pt;}
.ls46{letter-spacing:-0.106667pt;}
.ls52{letter-spacing:-0.099200pt;}
.ls53{letter-spacing:-0.057834pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls64{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.000373pt;}
.lsf{letter-spacing:0.019733pt;}
.ls4e{letter-spacing:0.031093pt;}
.ls44{letter-spacing:0.049600pt;}
.ls10{letter-spacing:0.053333pt;}
.ls3b{letter-spacing:0.062187pt;}
.ls31{letter-spacing:0.069760pt;}
.ls61{letter-spacing:0.088373pt;}
.ls0{letter-spacing:0.090667pt;}
.ls65{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.099200pt;}
.ls5{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.124373pt;}
.ls60{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.144320pt;}
.ls1e{letter-spacing:0.148800pt;}
.ls42{letter-spacing:0.153920pt;}
.ls4b{letter-spacing:0.155467pt;}
.ls6{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.165227pt;}
.ls2{letter-spacing:0.181333pt;}
.ls8{letter-spacing:0.198400pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.216267pt;}
.ls1{letter-spacing:0.226667pt;}
.ls1d{letter-spacing:0.236267pt;}
.ls49{letter-spacing:0.248000pt;}
.ls11{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.272000pt;}
.ls68{letter-spacing:0.293333pt;}
.ls2f{letter-spacing:0.308053pt;}
.ls2d{letter-spacing:0.310933pt;}
.ls6c{letter-spacing:0.317333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls57{letter-spacing:0.336000pt;}
.ls41{letter-spacing:0.346667pt;}
.ls37{letter-spacing:0.347200pt;}
.ls43{letter-spacing:0.367467pt;}
.ls33{letter-spacing:0.368000pt;}
.ls19{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.496000pt;}
.ls2e{letter-spacing:0.529067pt;}
.lse{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.544133pt;}
.ls3d{letter-spacing:0.559680pt;}
.ls18{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.651200pt;}
.ls12{letter-spacing:0.693333pt;}
.ls36{letter-spacing:0.744000pt;}
.ls13{letter-spacing:0.746667pt;}
.ls40{letter-spacing:0.773333pt;}
.ls35{letter-spacing:0.793600pt;}
.ls28{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.816000pt;}
.ls3f{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.861333pt;}
.ls67{letter-spacing:0.864000pt;}
.ls30{letter-spacing:0.880000pt;}
.ls2a{letter-spacing:0.906667pt;}
.ls29{letter-spacing:0.933333pt;}
.ls14{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.066667pt;}
.ls48{letter-spacing:1.120000pt;}
.ls4d{letter-spacing:1.200000pt;}
.ls5f{letter-spacing:1.333333pt;}
.ls6b{letter-spacing:1.440000pt;}
.ls70{letter-spacing:1.493333pt;}
.ls62{letter-spacing:1.653333pt;}
.ls25{letter-spacing:1.706667pt;}
.ls27{letter-spacing:1.954133pt;}
.ls3{letter-spacing:2.040000pt;}
.ls6a{letter-spacing:2.080000pt;}
.ls6d{letter-spacing:2.448000pt;}
.ls2c{letter-spacing:3.733333pt;}
.ls59{letter-spacing:16.000000pt;}
.ls4f{letter-spacing:95.786667pt;}
.ls56{letter-spacing:124.853333pt;}
.ls55{letter-spacing:126.026667pt;}
.ls4c{letter-spacing:178.613333pt;}
.ls54{letter-spacing:282.186667pt;}
.wse4{word-spacing:-53.546667pt;}
.ws10b{word-spacing:-53.333333pt;}
.ws11a{word-spacing:-50.666667pt;}
.ws124{word-spacing:-12.816000pt;}
.wsa0{word-spacing:-12.576000pt;}
.ws77{word-spacing:-12.192000pt;}
.ws12f{word-spacing:-12.160000pt;}
.wsce{word-spacing:-11.712000pt;}
.ws39{word-spacing:-11.573333pt;}
.ws126{word-spacing:-11.514667pt;}
.ws10a{word-spacing:-11.472000pt;}
.wsa2{word-spacing:-11.200000pt;}
.wsfa{word-spacing:-11.184000pt;}
.ws57{word-spacing:-11.160000pt;}
.ws3{word-spacing:-11.106667pt;}
.ws12e{word-spacing:-10.944000pt;}
.wse7{word-spacing:-10.400000pt;}
.ws11b{word-spacing:-10.320000pt;}
.ws11c{word-spacing:-10.293333pt;}
.ws108{word-spacing:-10.267200pt;}
.wse9{word-spacing:-10.168000pt;}
.wsb6{word-spacing:-10.133333pt;}
.wse6{word-spacing:-10.080000pt;}
.ws11d{word-spacing:-10.026667pt;}
.ws2{word-spacing:-9.928000pt;}
.ws10c{word-spacing:-9.920000pt;}
.ws10d{word-spacing:-9.771200pt;}
.ws127{word-spacing:-9.746667pt;}
.ws1{word-spacing:-9.520000pt;}
.ws125{word-spacing:-9.474667pt;}
.ws38{word-spacing:-9.408000pt;}
.ws0{word-spacing:-9.338667pt;}
.ws115{word-spacing:-9.173333pt;}
.wse5{word-spacing:-8.960000pt;}
.ws130{word-spacing:-8.533333pt;}
.ws5{word-spacing:-7.912000pt;}
.wse8{word-spacing:-7.544000pt;}
.ws131{word-spacing:-7.200000pt;}
.ws54{word-spacing:-7.089280pt;}
.ws55{word-spacing:-7.073733pt;}
.ws56{word-spacing:-6.840533pt;}
.ws8b{word-spacing:-6.685067pt;}
.ws52{word-spacing:-6.653973pt;}
.ws53{word-spacing:-6.591787pt;}
.wsa1{word-spacing:-6.560693pt;}
.ws4{word-spacing:-6.529600pt;}
.ws3b{word-spacing:-6.218667pt;}
.wsb7{word-spacing:-6.217112pt;}
.wsb8{word-spacing:-6.159278pt;}
.ws51{word-spacing:-5.876640pt;}
.ws3a{word-spacing:-5.752267pt;}
.ws114{word-spacing:-4.800000pt;}
.ws9c{word-spacing:-2.773333pt;}
.ws96{word-spacing:-2.720000pt;}
.ws90{word-spacing:-2.453333pt;}
.ws121{word-spacing:-2.080000pt;}
.ws8f{word-spacing:-1.920000pt;}
.wsb1{word-spacing:-1.760000pt;}
.ws2a{word-spacing:-1.706667pt;}
.ws30{word-spacing:-1.653333pt;}
.ws50{word-spacing:-1.636800pt;}
.wsc6{word-spacing:-1.587200pt;}
.ws31{word-spacing:-1.546667pt;}
.wsca{word-spacing:-1.537600pt;}
.ws2b{word-spacing:-1.493333pt;}
.ws89{word-spacing:-1.488000pt;}
.ws17{word-spacing:-1.440000pt;}
.ws85{word-spacing:-1.388800pt;}
.wsbf{word-spacing:-1.386667pt;}
.ws1d{word-spacing:-1.333333pt;}
.wsde{word-spacing:-1.280000pt;}
.ws75{word-spacing:-1.240000pt;}
.ws5c{word-spacing:-1.226667pt;}
.ws79{word-spacing:-1.173333pt;}
.ws76{word-spacing:-1.140800pt;}
.ws3f{word-spacing:-1.120000pt;}
.ws86{word-spacing:-1.091200pt;}
.ws14{word-spacing:-1.066667pt;}
.wsc8{word-spacing:-1.041600pt;}
.ws2f{word-spacing:-1.013333pt;}
.ws26{word-spacing:-0.960000pt;}
.ws4e{word-spacing:-0.942400pt;}
.ws33{word-spacing:-0.906667pt;}
.wsa6{word-spacing:-0.853333pt;}
.ws8a{word-spacing:-0.843200pt;}
.ws12b{word-spacing:-0.770667pt;}
.ws83{word-spacing:-0.746667pt;}
.ws72{word-spacing:-0.744000pt;}
.ws46{word-spacing:-0.693333pt;}
.ws6{word-spacing:-0.670933pt;}
.ws87{word-spacing:-0.644800pt;}
.ws65{word-spacing:-0.640000pt;}
.ws12c{word-spacing:-0.634667pt;}
.ws6e{word-spacing:-0.595200pt;}
.wsfc{word-spacing:-0.586667pt;}
.ws6c{word-spacing:-0.545600pt;}
.ws63{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.453333pt;}
.ws2c{word-spacing:-0.426667pt;}
.wsf{word-spacing:-0.408000pt;}
.ws69{word-spacing:-0.373333pt;}
.wscd{word-spacing:-0.347200pt;}
.ws11f{word-spacing:-0.320000pt;}
.ws6d{word-spacing:-0.297600pt;}
.ws5f{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.198400pt;}
.ws13{word-spacing:-0.181333pt;}
.ws32{word-spacing:-0.160000pt;}
.wsc7{word-spacing:-0.148800pt;}
.ws5b{word-spacing:-0.124373pt;}
.ws5d{word-spacing:-0.106667pt;}
.ws5e{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.039467pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:0.045333pt;}
.ws6a{word-spacing:0.053333pt;}
.wscc{word-spacing:0.099200pt;}
.ws107{word-spacing:0.106667pt;}
.wscb{word-spacing:0.148800pt;}
.ws4f{word-spacing:0.198400pt;}
.ws2d{word-spacing:0.213333pt;}
.ws62{word-spacing:0.217653pt;}
.ws16{word-spacing:0.266667pt;}
.wsc{word-spacing:0.272000pt;}
.ws97{word-spacing:0.310933pt;}
.ws47{word-spacing:0.320000pt;}
.wsc5{word-spacing:0.347200pt;}
.ws29{word-spacing:0.373333pt;}
.ws81{word-spacing:0.426667pt;}
.ws64{word-spacing:0.466400pt;}
.wsf8{word-spacing:0.496000pt;}
.ws106{word-spacing:0.533333pt;}
.wsd9{word-spacing:0.586667pt;}
.wsb0{word-spacing:0.640000pt;}
.wsd{word-spacing:0.725333pt;}
.ws7d{word-spacing:0.746667pt;}
.wsc1{word-spacing:0.777333pt;}
.ws40{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.wsf9{word-spacing:0.942400pt;}
.ws12{word-spacing:0.952000pt;}
.ws7e{word-spacing:0.960000pt;}
.ws12a{word-spacing:0.997333pt;}
.wsf2{word-spacing:1.013333pt;}
.ws4b{word-spacing:1.066667pt;}
.ws9{word-spacing:1.088000pt;}
.ws74{word-spacing:1.091200pt;}
.ws4c{word-spacing:1.173333pt;}
.ws73{word-spacing:1.190400pt;}
.wsa5{word-spacing:1.226667pt;}
.ws6f{word-spacing:1.240000pt;}
.ws36{word-spacing:1.280000pt;}
.ws100{word-spacing:1.339200pt;}
.ws123{word-spacing:1.386667pt;}
.ws11{word-spacing:1.405333pt;}
.ws88{word-spacing:1.438400pt;}
.wsa4{word-spacing:1.440000pt;}
.wsa{word-spacing:1.450667pt;}
.ws80{word-spacing:1.493333pt;}
.ws119{word-spacing:1.537600pt;}
.ws2e{word-spacing:1.546667pt;}
.ws4d{word-spacing:1.587200pt;}
.ws109{word-spacing:1.600000pt;}
.wsb{word-spacing:1.632000pt;}
.ws6b{word-spacing:1.636800pt;}
.ws1c{word-spacing:1.653333pt;}
.ws20{word-spacing:1.686400pt;}
.ws1e{word-spacing:1.706667pt;}
.ws35{word-spacing:1.760000pt;}
.ws118{word-spacing:1.785600pt;}
.ws44{word-spacing:1.813333pt;}
.wsc9{word-spacing:1.835200pt;}
.ws5a{word-spacing:1.866667pt;}
.ws59{word-spacing:1.920000pt;}
.ws71{word-spacing:1.984000pt;}
.ws82{word-spacing:2.026667pt;}
.ws9f{word-spacing:2.033600pt;}
.wsbe{word-spacing:2.080000pt;}
.ws70{word-spacing:2.132800pt;}
.ws41{word-spacing:2.133333pt;}
.ws60{word-spacing:2.186667pt;}
.ws68{word-spacing:2.240000pt;}
.wsdd{word-spacing:2.293333pt;}
.ws129{word-spacing:2.312000pt;}
.ws91{word-spacing:2.346667pt;}
.wsff{word-spacing:2.400000pt;}
.ws1f{word-spacing:2.453333pt;}
.wsdb{word-spacing:2.506667pt;}
.ws3d{word-spacing:2.560000pt;}
.wsa7{word-spacing:2.613333pt;}
.ws66{word-spacing:2.666667pt;}
.wsf1{word-spacing:2.720000pt;}
.ws7f{word-spacing:2.773333pt;}
.ws8e{word-spacing:2.826667pt;}
.wsda{word-spacing:2.880000pt;}
.ws117{word-spacing:2.926400pt;}
.ws42{word-spacing:2.933333pt;}
.ws3e{word-spacing:3.040000pt;}
.wsd8{word-spacing:3.093333pt;}
.ws61{word-spacing:3.146667pt;}
.ws45{word-spacing:3.200000pt;}
.ws84{word-spacing:3.253333pt;}
.ws34{word-spacing:3.306667pt;}
.wsdc{word-spacing:3.360000pt;}
.wsfd{word-spacing:3.466667pt;}
.ws67{word-spacing:3.626667pt;}
.ws105{word-spacing:3.680000pt;}
.ws37{word-spacing:3.733333pt;}
.wsf3{word-spacing:3.840000pt;}
.ws15{word-spacing:4.053333pt;}
.ws43{word-spacing:4.160000pt;}
.wsfe{word-spacing:4.853333pt;}
.ws8d{word-spacing:4.960000pt;}
.wsa8{word-spacing:5.760000pt;}
.wsf5{word-spacing:5.813333pt;}
.ws19{word-spacing:6.186667pt;}
.wsbd{word-spacing:6.346667pt;}
.ws110{word-spacing:6.880000pt;}
.ws122{word-spacing:7.253333pt;}
.wse1{word-spacing:8.640000pt;}
.wseb{word-spacing:8.693333pt;}
.wsd5{word-spacing:9.866667pt;}
.wsc0{word-spacing:10.240000pt;}
.wsb2{word-spacing:10.720000pt;}
.wsba{word-spacing:12.693333pt;}
.wsd0{word-spacing:12.960000pt;}
.wsc3{word-spacing:13.760000pt;}
.wsae{word-spacing:17.600000pt;}
.wsd6{word-spacing:19.733333pt;}
.ws135{word-spacing:25.173333pt;}
.wsf7{word-spacing:28.480000pt;}
.wsad{word-spacing:30.026667pt;}
.wsac{word-spacing:34.186667pt;}
.wsbc{word-spacing:43.200000pt;}
.wsa9{word-spacing:43.360000pt;}
.wsec{word-spacing:43.680000pt;}
.wsb5{word-spacing:45.920000pt;}
.ws134{word-spacing:48.106667pt;}
.wsaf{word-spacing:49.600000pt;}
.ws9b{word-spacing:51.253333pt;}
.wsf0{word-spacing:52.800000pt;}
.ws112{word-spacing:57.493333pt;}
.wsd4{word-spacing:59.093333pt;}
.ws49{word-spacing:59.360000pt;}
.wse3{word-spacing:62.666667pt;}
.ws7b{word-spacing:64.373333pt;}
.ws1a{word-spacing:64.693333pt;}
.ws94{word-spacing:65.813333pt;}
.wsb3{word-spacing:70.026667pt;}
.ws92{word-spacing:80.693333pt;}
.wsee{word-spacing:90.133333pt;}
.wsab{word-spacing:94.613333pt;}
.ws9e{word-spacing:99.413333pt;}
.ws4a{word-spacing:102.026667pt;}
.ws10f{word-spacing:110.826667pt;}
.wse0{word-spacing:111.466667pt;}
.wsc4{word-spacing:116.800000pt;}
.wsd3{word-spacing:124.853333pt;}
.ws95{word-spacing:127.466667pt;}
.wsd1{word-spacing:144.693333pt;}
.wsef{word-spacing:147.146667pt;}
.ws133{word-spacing:149.280000pt;}
.ws48{word-spacing:154.186667pt;}
.ws99{word-spacing:158.826667pt;}
.ws7a{word-spacing:169.386667pt;}
.wsc2{word-spacing:171.520000pt;}
.wsaa{word-spacing:181.226667pt;}
.wsbb{word-spacing:253.120000pt;}
.wse2{word-spacing:255.840000pt;}
.wsb4{word-spacing:266.613333pt;}
.wsd7{word-spacing:275.466667pt;}
.ws22{word-spacing:289.515200pt;}
.ws103{word-spacing:299.931200pt;}
.ws101{word-spacing:300.923200pt;}
.ws102{word-spacing:301.468800pt;}
.ws111{word-spacing:304.533333pt;}
.wsf4{word-spacing:321.120000pt;}
.ws25{word-spacing:321.507200pt;}
.ws23{word-spacing:322.449600pt;}
.ws24{word-spacing:323.044800pt;}
.ws1b{word-spacing:340.320000pt;}
.wsdf{word-spacing:347.306667pt;}
.ws113{word-spacing:350.986667pt;}
.ws116{word-spacing:353.546667pt;}
.wsf6{word-spacing:362.613333pt;}
.wsd2{word-spacing:382.240000pt;}
.wsed{word-spacing:405.546667pt;}
.ws120{word-spacing:413.120000pt;}
.ws98{word-spacing:461.493333pt;}
.ws9a{word-spacing:462.400000pt;}
.ws9d{word-spacing:467.466667pt;}
.ws93{word-spacing:510.453333pt;}
.ws128{word-spacing:1119.936000pt;}
.wsa3{word-spacing:1120.224000pt;}
.ws78{word-spacing:1120.608000pt;}
.wscf{word-spacing:1121.088000pt;}
.ws10e{word-spacing:1121.280000pt;}
.wsfb{word-spacing:1121.568000pt;}
.ws132{word-spacing:1121.808000pt;}
.ws3c{word-spacing:1123.344000pt;}
.ws11e{word-spacing:1475.328000pt;}
.wsb9{word-spacing:1476.048000pt;}
.wsea{word-spacing:1476.096000pt;}
.ws104{word-spacing:1477.152000pt;}
.ws12d{word-spacing:1478.208000pt;}
.ws8c{word-spacing:1479.936000pt;}
.ws58{word-spacing:1481.520000pt;}
.ws27{word-spacing:1481.952000pt;}
._16{margin-left:-1122.931467pt;}
._7e{margin-left:-1122.035200pt;}
._53{margin-left:-1121.134933pt;}
._1e{margin-left:-1120.196267pt;}
._7d{margin-left:-1119.300267pt;}
._81{margin-left:-100.106667pt;}
._5a{margin-left:-84.053333pt;}
._4d{margin-left:-54.720000pt;}
._2a{margin-left:-31.573333pt;}
._17{margin-left:-14.346667pt;}
._5d{margin-left:-9.410133pt;}
._8{margin-left:-6.378133pt;}
._5{margin-left:-4.533333pt;}
._d{margin-left:-3.319467pt;}
._0{margin-left:-2.150400pt;}
._1{margin-left:-0.960000pt;}
._6{width:0.943467pt;}
._2{width:1.840533pt;}
._3{width:2.788000pt;}
._4{width:3.961333pt;}
._7{width:4.910133pt;}
._74{width:7.658667pt;}
._76{width:8.960000pt;}
._8d{width:10.506667pt;}
._8a{width:13.706667pt;}
._75{width:17.506133pt;}
._f{width:19.360000pt;}
._78{width:20.483733pt;}
._65{width:22.775467pt;}
._10{width:23.893333pt;}
._89{width:26.560000pt;}
._31{width:28.106667pt;}
._69{width:29.015467pt;}
._51{width:30.403733pt;}
._52{width:32.189867pt;}
._47{width:33.776533pt;}
._46{width:37.397867pt;}
._5f{width:39.173333pt;}
._41{width:40.533333pt;}
._24{width:43.251200pt;}
._1c{width:44.292267pt;}
._1d{width:45.879467pt;}
._6f{width:47.781333pt;}
._e{width:49.153067pt;}
._19{width:51.569600pt;}
._5e{width:53.511253pt;}
._5b{width:55.866667pt;}
._83{width:57.333333pt;}
._8c{width:58.400000pt;}
._39{width:60.123733pt;}
._2f{width:63.125333pt;}
._a{width:64.586667pt;}
._43{width:70.880000pt;}
._2b{width:72.748800pt;}
._49{width:73.896533pt;}
._84{width:75.360000pt;}
._2d{width:76.923733pt;}
._82{width:78.176000pt;}
._21{width:79.349173pt;}
._77{width:83.546667pt;}
._b{width:88.587733pt;}
._3d{width:90.346667pt;}
._86{width:91.840000pt;}
._87{width:93.280000pt;}
._3a{width:94.826667pt;}
._20{width:96.906667pt;}
._26{width:102.490133pt;}
._1a{width:106.288000pt;}
._35{width:109.141333pt;}
._8e{width:110.560000pt;}
._c{width:111.642667pt;}
._50{width:112.890667pt;}
._8b{width:115.786667pt;}
._45{width:117.013333pt;}
._63{width:121.200000pt;}
._1f{width:122.261173pt;}
._85{width:123.840000pt;}
._54{width:125.066667pt;}
._27{width:126.236800pt;}
._28{width:127.642667pt;}
._36{width:132.379733pt;}
._88{width:135.040000pt;}
._8f{width:137.226667pt;}
._67{width:138.321013pt;}
._22{width:143.690667pt;}
._80{width:146.293333pt;}
._42{width:147.249067pt;}
._7f{width:151.200000pt;}
._30{width:154.203147pt;}
._70{width:158.983467pt;}
._2c{width:162.193547pt;}
._4f{width:167.153067pt;}
._59{width:171.680000pt;}
._68{width:178.555733pt;}
._58{width:181.600000pt;}
._5c{width:184.512000pt;}
._56{width:191.680000pt;}
._38{width:197.546667pt;}
._66{width:198.696533pt;}
._33{width:203.270347pt;}
._37{width:209.267147pt;}
._25{width:210.694880pt;}
._3e{width:220.890080pt;}
._2e{width:223.611733pt;}
._60{width:224.837333pt;}
._61{width:227.506080pt;}
._64{width:228.517333pt;}
._4a{width:234.027733pt;}
._23{width:237.248000pt;}
._4b{width:240.853173pt;}
._48{width:244.221813pt;}
._4c{width:247.360320pt;}
._29{width:257.036747pt;}
._14{width:267.512533pt;}
._32{width:271.146667pt;}
._3b{width:277.038933pt;}
._57{width:288.213333pt;}
._1b{width:291.364587pt;}
._79{width:306.652213pt;}
._6a{width:312.430400pt;}
._6e{width:318.184000pt;}
._6b{width:319.771200pt;}
._4e{width:320.763733pt;}
._7a{width:325.830400pt;}
._13{width:326.853600pt;}
._11{width:334.006400pt;}
._9{width:340.319840pt;}
._12{width:341.347200pt;}
._15{width:342.488000pt;}
._71{width:346.026080pt;}
._7b{width:349.504480pt;}
._72{width:352.243200pt;}
._40{width:354.843733pt;}
._3f{width:361.450667pt;}
._6d{width:379.457600pt;}
._73{width:384.068587pt;}
._44{width:385.666133pt;}
._6c{width:391.780000pt;}
._18{width:398.394987pt;}
._3c{width:405.013333pt;}
._62{width:411.166773pt;}
._55{width:422.163200pt;}
._7c{width:465.702880pt;}
._34{width:495.891147pt;}
.fs7{font-size:19.733333pt;}
.fs9{font-size:28.916800pt;}
.fs4{font-size:31.093333pt;}
.fs5{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:80.471333pt;}
.y24{bottom:80.498533pt;}
.y79{bottom:80.498667pt;}
.y59{bottom:80.504133pt;}
.yb3{bottom:81.171600pt;}
.y48{bottom:81.171733pt;}
.yf2{bottom:90.990933pt;}
.yd6{bottom:91.013600pt;}
.yae{bottom:95.810133pt;}
.y98{bottom:95.826533pt;}
.y7e{bottom:95.826667pt;}
.y58{bottom:95.832000pt;}
.y23{bottom:95.837333pt;}
.y78{bottom:95.837467pt;}
.yb2{bottom:97.571600pt;}
.y47{bottom:97.571733pt;}
.yf1{bottom:106.324933pt;}
.yd5{bottom:106.347600pt;}
.yad{bottom:111.148933pt;}
.y97{bottom:111.165333pt;}
.y77{bottom:111.165467pt;}
.y57{bottom:111.170800pt;}
.y81{bottom:111.170933pt;}
.y99{bottom:113.971600pt;}
.y46{bottom:113.971733pt;}
.yf0{bottom:121.658933pt;}
.yd4{bottom:121.681600pt;}
.yac{bottom:126.487733pt;}
.y56{bottom:126.487867pt;}
.y6a{bottom:126.493200pt;}
.y96{bottom:126.498667pt;}
.y9f{bottom:126.498800pt;}
.y76{bottom:126.504267pt;}
.y22{bottom:130.371600pt;}
.y45{bottom:130.371733pt;}
.yef{bottom:136.992933pt;}
.yd3{bottom:137.015600pt;}
.yab{bottom:141.826533pt;}
.y55{bottom:141.826667pt;}
.y69{bottom:141.832000pt;}
.y95{bottom:141.837467pt;}
.y75{bottom:141.837600pt;}
.y140{bottom:145.469600pt;}
.y21{bottom:146.771600pt;}
.y44{bottom:146.771733pt;}
.yee{bottom:152.326933pt;}
.yd2{bottom:152.349600pt;}
.y94{bottom:157.154533pt;}
.yaa{bottom:157.165333pt;}
.y54{bottom:157.165467pt;}
.y68{bottom:157.170800pt;}
.y74{bottom:157.170933pt;}
.y13f{bottom:160.803600pt;}
.y20{bottom:163.171600pt;}
.y43{bottom:163.171733pt;}
.yed{bottom:167.660933pt;}
.yd1{bottom:167.683600pt;}
.y73{bottom:172.487867pt;}
.y93{bottom:172.493333pt;}
.y67{bottom:172.498667pt;}
.ya9{bottom:172.504133pt;}
.y53{bottom:172.504267pt;}
.y13e{bottom:176.137600pt;}
.y1f{bottom:179.571600pt;}
.yec{bottom:182.994933pt;}
.yd0{bottom:183.017600pt;}
.y72{bottom:187.826667pt;}
.y92{bottom:187.832133pt;}
.y66{bottom:187.837467pt;}
.y52{bottom:187.837600pt;}
.y13d{bottom:191.471600pt;}
.y7d{bottom:195.971600pt;}
.yeb{bottom:198.328933pt;}
.ycf{bottom:198.351600pt;}
.y71{bottom:203.165467pt;}
.y65{bottom:203.165600pt;}
.y91{bottom:203.170933pt;}
.y13c{bottom:206.805600pt;}
.y42{bottom:209.037333pt;}
.y1e{bottom:212.371600pt;}
.yea{bottom:213.662933pt;}
.yce{bottom:213.685600pt;}
.y90{bottom:218.466000pt;}
.y70{bottom:218.504267pt;}
.y64{bottom:218.504400pt;}
.y13b{bottom:222.139600pt;}
.y7c{bottom:224.331600pt;}
.y1d{bottom:228.771600pt;}
.ye9{bottom:228.996933pt;}
.ycd{bottom:229.019600pt;}
.y41{bottom:231.489733pt;}
.y8f{bottom:233.804800pt;}
.y6f{bottom:233.837600pt;}
.y63{bottom:233.837733pt;}
.ye8{bottom:244.330933pt;}
.ycc{bottom:244.353600pt;}
.y1c{bottom:245.171600pt;}
.y40{bottom:248.353733pt;}
.y8e{bottom:249.143600pt;}
.y62{bottom:249.165600pt;}
.y1b{bottom:257.131600pt;}
.ye7{bottom:259.664933pt;}
.ycb{bottom:259.687600pt;}
.y1a{bottom:261.571600pt;}
.y8d{bottom:264.482400pt;}
.y61{bottom:264.504400pt;}
.y3f{bottom:265.217733pt;}
.y13a{bottom:268.141600pt;}
.y116{bottom:268.164267pt;}
.ya8{bottom:273.531600pt;}
.ye6{bottom:274.998933pt;}
.yca{bottom:275.021600pt;}
.y51{bottom:277.971600pt;}
.y8c{bottom:279.821200pt;}
.y3e{bottom:282.081733pt;}
.y139{bottom:283.475600pt;}
.y115{bottom:283.498267pt;}
.y7b{bottom:289.931600pt;}
.ye5{bottom:290.332933pt;}
.yc9{bottom:290.355600pt;}
.y19{bottom:294.371600pt;}
.y8b{bottom:295.160000pt;}
.y3d{bottom:296.750933pt;}
.y138{bottom:298.809600pt;}
.y114{bottom:298.832267pt;}
.ye4{bottom:305.666933pt;}
.yc8{bottom:305.689600pt;}
.y8a{bottom:310.498800pt;}
.y18{bottom:310.771600pt;}
.y137{bottom:314.143600pt;}
.y113{bottom:314.166267pt;}
.ye3{bottom:321.000933pt;}
.yc7{bottom:321.023600pt;}
.ya7{bottom:325.111467pt;}
.y89{bottom:325.837600pt;}
.y17{bottom:327.171600pt;}
.y60{bottom:327.171733pt;}
.y136{bottom:329.477600pt;}
.y112{bottom:329.500267pt;}
.ye2{bottom:336.334933pt;}
.yc6{bottom:336.357600pt;}
.y16{bottom:343.571600pt;}
.y5f{bottom:343.571733pt;}
.y135{bottom:344.811600pt;}
.y111{bottom:344.834267pt;}
.ya6{bottom:347.556533pt;}
.ye1{bottom:351.668933pt;}
.yc5{bottom:351.691600pt;}
.y15{bottom:359.971600pt;}
.y5e{bottom:359.971733pt;}
.y134{bottom:360.145600pt;}
.y110{bottom:360.168267pt;}
.ya5{bottom:362.225733pt;}
.ye0{bottom:367.002933pt;}
.yc4{bottom:367.025600pt;}
.y50{bottom:371.931733pt;}
.y133{bottom:375.479600pt;}
.y10f{bottom:375.502267pt;}
.y3c{bottom:376.371600pt;}
.y5d{bottom:376.371733pt;}
.ya4{bottom:379.089733pt;}
.ydf{bottom:382.336933pt;}
.yc3{bottom:382.359600pt;}
.y132{bottom:390.813600pt;}
.y10e{bottom:390.836267pt;}
.y14{bottom:392.771600pt;}
.y5c{bottom:392.771733pt;}
.ya3{bottom:395.953733pt;}
.yde{bottom:397.670933pt;}
.yc2{bottom:397.693600pt;}
.y131{bottom:406.147600pt;}
.y10d{bottom:406.170267pt;}
.y3b{bottom:409.171600pt;}
.y88{bottom:409.171733pt;}
.ya2{bottom:412.817733pt;}
.ydd{bottom:413.004933pt;}
.yc1{bottom:413.027600pt;}
.y7a{bottom:421.131733pt;}
.y130{bottom:421.481600pt;}
.y10c{bottom:421.504267pt;}
.y3a{bottom:425.571600pt;}
.y87{bottom:425.571733pt;}
.ydc{bottom:428.338933pt;}
.yc0{bottom:428.361600pt;}
.ya1{bottom:429.681733pt;}
.y12f{bottom:436.815600pt;}
.y10b{bottom:436.838267pt;}
.y39{bottom:441.971600pt;}
.y86{bottom:441.971733pt;}
.ydb{bottom:443.672933pt;}
.ybf{bottom:443.695600pt;}
.ya0{bottom:444.350933pt;}
.y13{bottom:444.702400pt;}
.y12e{bottom:452.149600pt;}
.y10a{bottom:452.172267pt;}
.y4f{bottom:458.371600pt;}
.y85{bottom:458.371733pt;}
.yda{bottom:459.006933pt;}
.ybe{bottom:459.029600pt;}
.y12{bottom:460.036400pt;}
.y12d{bottom:467.483600pt;}
.y109{bottom:467.506267pt;}
.y80{bottom:470.331600pt;}
.yd9{bottom:474.340933pt;}
.ybd{bottom:474.363600pt;}
.y38{bottom:474.771600pt;}
.y4e{bottom:474.771733pt;}
.y12c{bottom:482.817600pt;}
.y108{bottom:482.840267pt;}
.yd8{bottom:489.674933pt;}
.ybc{bottom:489.697600pt;}
.y11{bottom:490.704400pt;}
.y37{bottom:491.171600pt;}
.y4d{bottom:491.171733pt;}
.y12b{bottom:498.151600pt;}
.y107{bottom:498.174267pt;}
.yd7{bottom:505.008933pt;}
.ybb{bottom:505.031600pt;}
.y10{bottom:506.038400pt;}
.y5b{bottom:507.571600pt;}
.y4c{bottom:507.571733pt;}
.y12a{bottom:513.485600pt;}
.y106{bottom:513.508267pt;}
.y84{bottom:519.531733pt;}
.y36{bottom:523.971600pt;}
.y129{bottom:528.819600pt;}
.y105{bottom:528.842267pt;}
.yba{bottom:535.699600pt;}
.y7f{bottom:535.931733pt;}
.yf{bottom:536.706400pt;}
.y35{bottom:540.371600pt;}
.y128{bottom:544.153600pt;}
.y104{bottom:544.176267pt;}
.ye{bottom:552.040400pt;}
.yb1{bottom:552.331600pt;}
.y34{bottom:556.771600pt;}
.y127{bottom:559.487600pt;}
.y103{bottom:559.510267pt;}
.yd{bottom:567.374400pt;}
.y33{bottom:573.171600pt;}
.y126{bottom:574.821600pt;}
.y102{bottom:574.844267pt;}
.yb9{bottom:581.701600pt;}
.yc{bottom:582.708400pt;}
.y83{bottom:585.131733pt;}
.y32{bottom:589.571600pt;}
.y125{bottom:590.155600pt;}
.y101{bottom:590.178267pt;}
.yb8{bottom:597.035600pt;}
.yb{bottom:598.042400pt;}
.y124{bottom:605.489600pt;}
.y100{bottom:605.512267pt;}
.y4b{bottom:605.971600pt;}
.yb7{bottom:612.369600pt;}
.ya{bottom:613.376400pt;}
.yb0{bottom:617.931733pt;}
.y123{bottom:620.823600pt;}
.yff{bottom:620.846267pt;}
.y31{bottom:622.371600pt;}
.y9d{bottom:622.371733pt;}
.y9e{bottom:624.371600pt;}
.yb6{bottom:627.703600pt;}
.y9{bottom:628.710400pt;}
.y122{bottom:636.157600pt;}
.yfe{bottom:636.180267pt;}
.y4a{bottom:638.771600pt;}
.yb5{bottom:643.037600pt;}
.y8{bottom:644.044400pt;}
.y121{bottom:651.491600pt;}
.yfd{bottom:651.514267pt;}
.y49{bottom:655.171600pt;}
.y9c{bottom:655.171733pt;}
.yb4{bottom:658.371600pt;}
.y7{bottom:659.378400pt;}
.y120{bottom:666.825600pt;}
.yfc{bottom:666.848267pt;}
.y30{bottom:671.571600pt;}
.y9b{bottom:671.571733pt;}
.y6{bottom:674.712400pt;}
.y11f{bottom:682.159600pt;}
.yfb{bottom:682.182267pt;}
.y2f{bottom:687.971600pt;}
.y9a{bottom:689.971733pt;}
.y5{bottom:690.046400pt;}
.y11e{bottom:697.493600pt;}
.yfa{bottom:697.516267pt;}
.y2e{bottom:704.371600pt;}
.y4{bottom:705.380400pt;}
.y11d{bottom:712.827600pt;}
.yf9{bottom:712.850267pt;}
.y3{bottom:720.714400pt;}
.y2d{bottom:720.771600pt;}
.y11c{bottom:728.161600pt;}
.yf8{bottom:728.184267pt;}
.y2c{bottom:737.171600pt;}
.y11b{bottom:743.495600pt;}
.yf7{bottom:743.518267pt;}
.y6e{bottom:749.131600pt;}
.y2{bottom:751.381067pt;}
.y2b{bottom:753.571600pt;}
.y5a{bottom:753.571733pt;}
.y11a{bottom:758.829600pt;}
.yf6{bottom:758.852267pt;}
.y26{bottom:762.125333pt;}
.y6d{bottom:765.531600pt;}
.y25{bottom:768.790267pt;}
.y2a{bottom:769.971600pt;}
.y6c{bottom:769.971733pt;}
.y119{bottom:774.163600pt;}
.yf5{bottom:774.186267pt;}
.y6b{bottom:781.931600pt;}
.y29{bottom:786.371600pt;}
.y118{bottom:789.497600pt;}
.yf4{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y82{bottom:798.331600pt;}
.y28{bottom:802.771600pt;}
.y117{bottom:804.831600pt;}
.yf3{bottom:804.854267pt;}
.y27{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.h14{height:27.984000pt;}
.h19{height:34.725333pt;}
.hc{height:37.993600pt;}
.h4{height:40.437333pt;}
.h1a{height:40.482667pt;}
.he{height:40.618667pt;}
.h5{height:40.800000pt;}
.h9{height:44.441600pt;}
.h12{height:44.463467pt;}
.h13{height:44.485333pt;}
.h15{height:44.507200pt;}
.h16{height:44.594667pt;}
.hb{height:45.216000pt;}
.h6{height:47.573333pt;}
.h7{height:48.000000pt;}
.h10{height:48.000533pt;}
.hf{height:50.240000pt;}
.h18{height:50.446250pt;}
.h3{height:60.288000pt;}
.h11{height:65.759467pt;}
.h8{height:65.760000pt;}
.hd{height:67.307200pt;}
.h17{height:73.755200pt;}
.h2{height:76.117333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x5{left:22.497867pt;}
.x4{left:25.226000pt;}
.x1{left:64.252000pt;}
.x6{left:71.811067pt;}
.x23{left:75.585333pt;}
.x2{left:83.145333pt;}
.x7{left:90.704400pt;}
.xe{left:149.163867pt;}
.x15{left:165.188400pt;}
.x17{left:167.788667pt;}
.x19{left:183.881467pt;}
.x9{left:209.956800pt;}
.x8{left:213.019600pt;}
.x1d{left:228.807200pt;}
.x1c{left:231.870000pt;}
.xa{left:237.881600pt;}
.x1e{left:256.732000pt;}
.x1b{left:263.813600pt;}
.xf{left:267.595333pt;}
.x10{left:272.595200pt;}
.x13{left:298.354267pt;}
.x12{left:303.714267pt;}
.x11{left:305.207733pt;}
.x25{left:314.152000pt;}
.x3{left:315.182267pt;}
.xd{left:317.462000pt;}
.x22{left:320.568000pt;}
.x26{left:321.699733pt;}
.x24{left:325.485333pt;}
.x16{left:326.981333pt;}
.x18{left:329.367733pt;}
.x21{left:332.541067pt;}
.x20{left:339.301733pt;}
.x1f{left:343.568533pt;}
.x1a{left:378.035067pt;}
.x14{left:384.288800pt;}
.xc{left:578.088400pt;}
.xb{left:580.816533pt;}
}




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