
    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_39a24415562f954564c94e9f.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_8d7bae0f02cef421fe23fe40.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_f5d096cae1b9f132de0a4570.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_cc5671c04f78b9c8241ea40a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_070c6a8e738ee0349545247f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.243000;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_4cdf004832ff29d1d66fb3ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.203900;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_5023b52a24aecca2a0bc5d21.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_42f53b677d10db41d77a02ef.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_42f53b677d10db41d77a02ef.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d0f0e515bb4c6a9b2305ec51.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.672000;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_a23de6e2046ad6449b628fa1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.054121;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_47674d78fbda66a2f59bc4bf.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7b8f576857e7ddd82b59c1c7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c649a871c20335294bf3a8b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.598000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls1a{letter-spacing:-4.266000px;}
.ls72{letter-spacing:-2.268000px;}
.ls83{letter-spacing:-1.857600px;}
.ls76{letter-spacing:-1.531800px;}
.ls71{letter-spacing:-1.500000px;}
.lse{letter-spacing:-1.444800px;}
.ls1f{letter-spacing:-1.320000px;}
.ls50{letter-spacing:-0.780000px;}
.ls35{letter-spacing:-0.720000px;}
.ls78{letter-spacing:-0.703800px;}
.ls79{letter-spacing:-0.621000px;}
.ls32{letter-spacing:-0.600000px;}
.ls52{letter-spacing:-0.558000px;}
.ls59{letter-spacing:-0.540000px;}
.ls53{letter-spacing:-0.502200px;}
.ls5f{letter-spacing:-0.489720px;}
.ls51{letter-spacing:-0.480000px;}
.ls58{letter-spacing:-0.454740px;}
.ls56{letter-spacing:-0.420000px;}
.ls36{letter-spacing:-0.414000px;}
.ls61{letter-spacing:-0.372600px;}
.ls75{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.349800px;}
.ls55{letter-spacing:-0.334800px;}
.ls5a{letter-spacing:-0.314820px;}
.ls34{letter-spacing:-0.300000px;}
.ls54{letter-spacing:-0.279000px;}
.ls57{letter-spacing:-0.244860px;}
.ls1c{letter-spacing:-0.240000px;}
.ls60{letter-spacing:-0.223200px;}
.ls30{letter-spacing:-0.209880px;}
.ls21{letter-spacing:-0.180000px;}
.ls67{letter-spacing:-0.174900px;}
.ls10{letter-spacing:-0.167400px;}
.ls1d{letter-spacing:-0.139920px;}
.lsf{letter-spacing:-0.120000px;}
.ls2b{letter-spacing:-0.111600px;}
.ls81{letter-spacing:-0.104940px;}
.ls45{letter-spacing:-0.069960px;}
.ls20{letter-spacing:-0.060000px;}
.ls49{letter-spacing:-0.055800px;}
.ls74{letter-spacing:-0.034980px;}
.lsa{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.025800px;}
.ls7d{letter-spacing:0.034980px;}
.ls7{letter-spacing:0.055800px;}
.ls22{letter-spacing:0.060000px;}
.ls6f{letter-spacing:0.069960px;}
.ls2f{letter-spacing:0.083700px;}
.ls24{letter-spacing:0.087000px;}
.ls63{letter-spacing:0.104940px;}
.ls6c{letter-spacing:0.111600px;}
.ls25{letter-spacing:0.120000px;}
.ls44{letter-spacing:0.139920px;}
.ls6b{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.167400px;}
.ls5e{letter-spacing:0.174900px;}
.ls13{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.195300px;}
.ls31{letter-spacing:0.209880px;}
.ls80{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.222000px;}
.ls42{letter-spacing:0.223200px;}
.ls15{letter-spacing:0.240000px;}
.ls7f{letter-spacing:0.244860px;}
.ls41{letter-spacing:0.251100px;}
.ls4e{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.279000px;}
.ls5b{letter-spacing:0.279840px;}
.ls16{letter-spacing:0.300000px;}
.ls7c{letter-spacing:0.314820px;}
.ls39{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.333000px;}
.ls2c{letter-spacing:0.334800px;}
.ls47{letter-spacing:0.349800px;}
.ls14{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.384780px;}
.ls28{letter-spacing:0.390000px;}
.ls2d{letter-spacing:0.390600px;}
.ls2{letter-spacing:0.408000px;}
.ls77{letter-spacing:0.414000px;}
.ls7e{letter-spacing:0.419760px;}
.ls1e{letter-spacing:0.420000px;}
.ls38{letter-spacing:0.450000px;}
.ls23{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.510000px;}
.ls66{letter-spacing:0.524700px;}
.ls37{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.558000px;}
.ls5c{letter-spacing:0.585900px;}
.ls0{letter-spacing:0.586500px;}
.ls6d{letter-spacing:0.594660px;}
.ls3f{letter-spacing:0.600000px;}
.ls65{letter-spacing:0.629640px;}
.ls40{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.663000px;}
.ls6e{letter-spacing:0.664620px;}
.ls19{letter-spacing:0.669600px;}
.ls7a{letter-spacing:0.690000px;}
.ls73{letter-spacing:0.699600px;}
.ls5{letter-spacing:0.714000px;}
.ls3b{letter-spacing:0.720000px;}
.ls62{letter-spacing:0.750000px;}
.ls4{letter-spacing:0.765000px;}
.ls6a{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.781200px;}
.ls1b{letter-spacing:0.810000px;}
.ls4c{letter-spacing:0.832800px;}
.ls46{letter-spacing:0.839520px;}
.ls4a{letter-spacing:0.840000px;}
.ls7b{letter-spacing:0.870000px;}
.ls4b{letter-spacing:0.900000px;}
.ls4d{letter-spacing:0.930000px;}
.ls3c{letter-spacing:0.960000px;}
.ls3d{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.140000px;}
.ls70{letter-spacing:1.164000px;}
.ls2a{letter-spacing:1.200000px;}
.ls29{letter-spacing:1.242000px;}
.ls26{letter-spacing:1.248000px;}
.ls69{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.341600px;}
.ls3a{letter-spacing:1.440000px;}
.lsc{letter-spacing:1.548000px;}
.ls5d{letter-spacing:1.680000px;}
.ls4f{letter-spacing:2.081340px;}
.ls6{letter-spacing:2.322000px;}
.ls2e{letter-spacing:2.416140px;}
.lsd{letter-spacing:2.683200px;}
.ls82{letter-spacing:3.354000px;}
.ls3e{letter-spacing:4.068000px;}
.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;}
}
.ws118{word-spacing:-14.757600px;}
.ws0{word-spacing:-14.220000px;}
.wsfc{word-spacing:-13.740000px;}
.ws2{word-spacing:-13.725600px;}
.wsb9{word-spacing:-13.680000px;}
.ws75{word-spacing:-13.620000px;}
.ws104{word-spacing:-13.500000px;}
.ws92{word-spacing:-13.200000px;}
.wsbc{word-spacing:-12.900000px;}
.ws3c{word-spacing:-12.600000px;}
.ws3d{word-spacing:-12.480000px;}
.ws1e{word-spacing:-12.360000px;}
.wsd4{word-spacing:-12.300000px;}
.wsd2{word-spacing:-12.240000px;}
.wsd0{word-spacing:-12.180000px;}
.ws93{word-spacing:-12.052800px;}
.ws10d{word-spacing:-11.997000px;}
.ws91{word-spacing:-11.880000px;}
.wsbd{word-spacing:-11.640000px;}
.ws70{word-spacing:-11.580000px;}
.wsba{word-spacing:-11.550000px;}
.ws105{word-spacing:-11.520000px;}
.ws78{word-spacing:-11.411100px;}
.wsdf{word-spacing:-11.400000px;}
.ws10e{word-spacing:-11.383200px;}
.ws72{word-spacing:-11.280000px;}
.ws51{word-spacing:-11.160000px;}
.ws119{word-spacing:-11.094000px;}
.wsc0{word-spacing:-11.040000px;}
.ws3{word-spacing:-10.710000px;}
.wsbe{word-spacing:-10.680000px;}
.wsf4{word-spacing:-10.530000px;}
.ws11d{word-spacing:-10.320000px;}
.ws6f{word-spacing:-9.960000px;}
.ws1{word-spacing:-9.588000px;}
.wsf8{word-spacing:-9.315000px;}
.ws11e{word-spacing:-9.236400px;}
.ws5{word-spacing:-8.901000px;}
.ws1d{word-spacing:-8.532000px;}
.wsc1{word-spacing:-8.528400px;}
.ws52{word-spacing:-8.487000px;}
.wsfa{word-spacing:-8.280000px;}
.wsf9{word-spacing:-8.197200px;}
.ws74{word-spacing:-8.185320px;}
.wsf5{word-spacing:-8.045400px;}
.wsde{word-spacing:-8.010420px;}
.wscf{word-spacing:-7.975440px;}
.wsdd{word-spacing:-7.940460px;}
.wsd1{word-spacing:-7.870500px;}
.ws102{word-spacing:-7.765560px;}
.ws77{word-spacing:-7.730580px;}
.ws76{word-spacing:-7.695600px;}
.ws103{word-spacing:-7.660620px;}
.wsad{word-spacing:-7.625640px;}
.ws106{word-spacing:-7.590660px;}
.ws4f{word-spacing:-7.555680px;}
.wsbb{word-spacing:-7.520700px;}
.ws71{word-spacing:-7.485720px;}
.wsce{word-spacing:-7.450740px;}
.wse0{word-spacing:-7.415760px;}
.ws101{word-spacing:-7.380780px;}
.wsf7{word-spacing:-7.369200px;}
.ws4{word-spacing:-7.345800px;}
.wsf6{word-spacing:-7.310820px;}
.ws73{word-spacing:-7.275840px;}
.ws117{word-spacing:-7.240860px;}
.ws1f{word-spacing:-7.205880px;}
.wsd3{word-spacing:-7.170900px;}
.ws4e{word-spacing:-7.135920px;}
.wsaa{word-spacing:-7.100940px;}
.wsac{word-spacing:-7.030980px;}
.ws50{word-spacing:-6.996000px;}
.wsab{word-spacing:-6.891060px;}
.wsbf{word-spacing:-6.856080px;}
.wsa{word-spacing:-2.683200px;}
.wsfd{word-spacing:-2.400000px;}
.wsc6{word-spacing:-2.280000px;}
.ws59{word-spacing:-2.220000px;}
.wse5{word-spacing:-2.100000px;}
.wsc7{word-spacing:-2.040000px;}
.ws15{word-spacing:-1.920000px;}
.ws21{word-spacing:-1.860000px;}
.wsdb{word-spacing:-1.841400px;}
.ws2c{word-spacing:-1.800000px;}
.ws18{word-spacing:-1.785600px;}
.ws48{word-spacing:-1.740000px;}
.ws16{word-spacing:-1.729800px;}
.ws26{word-spacing:-1.680000px;}
.wsb5{word-spacing:-1.674000px;}
.wsc{word-spacing:-1.632000px;}
.ws5a{word-spacing:-1.620000px;}
.wsb7{word-spacing:-1.618200px;}
.ws19{word-spacing:-1.562400px;}
.ws7a{word-spacing:-1.560000px;}
.ws9{word-spacing:-1.548000px;}
.ws90{word-spacing:-1.506600px;}
.ws110{word-spacing:-1.500000px;}
.ws8d{word-spacing:-1.450800px;}
.wsaf{word-spacing:-1.440000px;}
.wsa8{word-spacing:-1.395000px;}
.ws54{word-spacing:-1.380000px;}
.ws8{word-spacing:-1.341600px;}
.ws6d{word-spacing:-1.339200px;}
.ws96{word-spacing:-1.320000px;}
.wsf1{word-spacing:-1.283400px;}
.ws67{word-spacing:-1.260000px;}
.ws3e{word-spacing:-1.242000px;}
.ws10b{word-spacing:-1.227600px;}
.ws40{word-spacing:-1.200000px;}
.ws10c{word-spacing:-1.171800px;}
.wsc5{word-spacing:-1.140000px;}
.wsea{word-spacing:-1.116000px;}
.ws47{word-spacing:-1.080000px;}
.wsa5{word-spacing:-1.060200px;}
.ws42{word-spacing:-1.020000px;}
.ws84{word-spacing:-0.960000px;}
.wsa6{word-spacing:-0.948600px;}
.wsb0{word-spacing:-0.900000px;}
.ws34{word-spacing:-0.892800px;}
.ws66{word-spacing:-0.840000px;}
.wsf3{word-spacing:-0.781200px;}
.ws58{word-spacing:-0.780000px;}
.wse{word-spacing:-0.765000px;}
.ws33{word-spacing:-0.725400px;}
.ws11c{word-spacing:-0.722400px;}
.ws7b{word-spacing:-0.720000px;}
.ws122{word-spacing:-0.670800px;}
.wsb6{word-spacing:-0.669600px;}
.wsa7{word-spacing:-0.613800px;}
.ws43{word-spacing:-0.600000px;}
.ws37{word-spacing:-0.558000px;}
.ws25{word-spacing:-0.540000px;}
.ws112{word-spacing:-0.502200px;}
.ws86{word-spacing:-0.480000px;}
.wsd{word-spacing:-0.459000px;}
.ws100{word-spacing:-0.446400px;}
.ws87{word-spacing:-0.420000px;}
.ws121{word-spacing:-0.412800px;}
.ws31{word-spacing:-0.390600px;}
.ws120{word-spacing:-0.361200px;}
.ws7d{word-spacing:-0.360000px;}
.ws6{word-spacing:-0.355200px;}
.ws9c{word-spacing:-0.349800px;}
.ws4d{word-spacing:-0.334800px;}
.ws29{word-spacing:-0.300000px;}
.ws6a{word-spacing:-0.279000px;}
.ws2d{word-spacing:-0.240000px;}
.ws1b{word-spacing:-0.223200px;}
.ws1c{word-spacing:-0.222000px;}
.ws11b{word-spacing:-0.206400px;}
.ws12{word-spacing:-0.204000px;}
.ws115{word-spacing:-0.167400px;}
.ws55{word-spacing:-0.120000px;}
.wsf2{word-spacing:-0.111600px;}
.ws56{word-spacing:-0.060000px;}
.ws35{word-spacing:-0.055800px;}
.ws7{word-spacing:0.000000px;}
.wsb8{word-spacing:0.055800px;}
.ws27{word-spacing:0.060000px;}
.ws1a{word-spacing:0.111600px;}
.ws30{word-spacing:0.120000px;}
.wse7{word-spacing:0.167400px;}
.ws81{word-spacing:0.180000px;}
.ws69{word-spacing:0.223200px;}
.ws9d{word-spacing:0.240000px;}
.wsa9{word-spacing:0.279000px;}
.ws46{word-spacing:0.300000px;}
.wsb1{word-spacing:0.314820px;}
.ws36{word-spacing:0.334800px;}
.ws65{word-spacing:0.349800px;}
.wsfe{word-spacing:0.360000px;}
.ws8a{word-spacing:0.390600px;}
.wsc3{word-spacing:0.420000px;}
.wsa4{word-spacing:0.502200px;}
.ws49{word-spacing:0.540000px;}
.ws108{word-spacing:0.600000px;}
.ws116{word-spacing:0.613800px;}
.ws60{word-spacing:0.660000px;}
.ws41{word-spacing:0.720000px;}
.ws61{word-spacing:0.780000px;}
.wseb{word-spacing:0.781200px;}
.wsa3{word-spacing:0.837000px;}
.ws9b{word-spacing:0.840000px;}
.ws2e{word-spacing:0.900000px;}
.ws11{word-spacing:0.918000px;}
.ws39{word-spacing:0.948600px;}
.ws99{word-spacing:0.960000px;}
.ws4c{word-spacing:1.004400px;}
.wsc9{word-spacing:1.060200px;}
.ws98{word-spacing:1.080000px;}
.wsc8{word-spacing:1.116000px;}
.ws8f{word-spacing:1.171800px;}
.ws62{word-spacing:1.200000px;}
.ws28{word-spacing:1.260000px;}
.ws10a{word-spacing:1.283400px;}
.ws9f{word-spacing:1.320000px;}
.ws8e{word-spacing:1.339200px;}
.ws63{word-spacing:1.380000px;}
.wse6{word-spacing:1.395000px;}
.ws9e{word-spacing:1.440000px;}
.ws13{word-spacing:1.444800px;}
.wsb4{word-spacing:1.450800px;}
.ws5b{word-spacing:1.500000px;}
.wse8{word-spacing:1.506600px;}
.wsd8{word-spacing:1.560000px;}
.ws114{word-spacing:1.562400px;}
.wsb{word-spacing:1.581000px;}
.ws14{word-spacing:1.620000px;}
.ws10{word-spacing:1.632000px;}
.ws6e{word-spacing:1.674000px;}
.ws9a{word-spacing:1.680000px;}
.ws8b{word-spacing:1.729800px;}
.ws57{word-spacing:1.740000px;}
.ws17{word-spacing:1.785600px;}
.wsd7{word-spacing:1.800000px;}
.wsf{word-spacing:1.836000px;}
.ws68{word-spacing:1.841400px;}
.ws24{word-spacing:1.860000px;}
.ws113{word-spacing:1.897200px;}
.ws22{word-spacing:1.920000px;}
.wsa2{word-spacing:1.953000px;}
.ws80{word-spacing:1.980000px;}
.ws95{word-spacing:2.040000px;}
.ws32{word-spacing:2.064600px;}
.wsc4{word-spacing:2.100000px;}
.wsda{word-spacing:2.120400px;}
.ws64{word-spacing:2.220000px;}
.wsdc{word-spacing:2.232000px;}
.ws7e{word-spacing:2.280000px;}
.wsca{word-spacing:2.287800px;}
.ws2f{word-spacing:2.340000px;}
.ws38{word-spacing:2.343600px;}
.ws6b{word-spacing:2.399400px;}
.ws5c{word-spacing:2.400000px;}
.ws82{word-spacing:2.460000px;}
.ws7f{word-spacing:2.520000px;}
.ws88{word-spacing:2.580000px;}
.ws2a{word-spacing:2.640000px;}
.wscc{word-spacing:2.678400px;}
.wsd6{word-spacing:2.700000px;}
.wse4{word-spacing:2.760000px;}
.ws2b{word-spacing:2.820000px;}
.wscb{word-spacing:2.845800px;}
.ws6c{word-spacing:2.901600px;}
.wsa1{word-spacing:2.940000px;}
.ws23{word-spacing:3.000000px;}
.ws4a{word-spacing:3.060000px;}
.wsb2{word-spacing:3.120000px;}
.wse3{word-spacing:3.180000px;}
.wse9{word-spacing:3.236400px;}
.ws45{word-spacing:3.240000px;}
.ws97{word-spacing:3.300000px;}
.ws111{word-spacing:3.360000px;}
.ws85{word-spacing:3.420000px;}
.ws5f{word-spacing:3.540000px;}
.ws44{word-spacing:3.600000px;}
.wsb3{word-spacing:3.660000px;}
.wsa0{word-spacing:3.780000px;}
.wsed{word-spacing:3.840000px;}
.ws5e{word-spacing:3.960000px;}
.wsee{word-spacing:4.020000px;}
.wsef{word-spacing:4.260000px;}
.ws109{word-spacing:4.320000px;}
.ws89{word-spacing:4.352400px;}
.ws7c{word-spacing:4.500000px;}
.ws8c{word-spacing:4.519800px;}
.wse2{word-spacing:4.620000px;}
.wscd{word-spacing:4.743000px;}
.wsff{word-spacing:4.860000px;}
.ws5d{word-spacing:5.400000px;}
.ws3b{word-spacing:5.580000px;}
.wsd9{word-spacing:6.180000px;}
.ws3a{word-spacing:6.193800px;}
.ws4b{word-spacing:6.472800px;}
.ws83{word-spacing:6.780000px;}
.wsf0{word-spacing:28.848600px;}
.ws11a{word-spacing:1454.598000px;}
.ws107{word-spacing:1456.758000px;}
.ws79{word-spacing:1461.348000px;}
.wsae{word-spacing:1461.510000px;}
.wsec{word-spacing:1461.672000px;}
.wsd5{word-spacing:1461.888000px;}
.ws3f{word-spacing:1463.454000px;}
.ws10f{word-spacing:1540.620000px;}
.wsfb{word-spacing:1541.052000px;}
.ws11f{word-spacing:1541.592000px;}
.ws20{word-spacing:1545.696000px;}
.ws94{word-spacing:1546.074000px;}
.wse1{word-spacing:1546.182000px;}
.ws53{word-spacing:1546.236000px;}
.wsc2{word-spacing:1546.560000px;}
._a{margin-left:-1545.873480px;}
._29{margin-left:-1541.729640px;}
._21{margin-left:-1540.649640px;}
._f{margin-left:-18.693000px;}
._1f{margin-left:-16.729080px;}
._1b{margin-left:-15.110400px;}
._1e{margin-left:-11.913960px;}
._10{margin-left:-10.044000px;}
._23{margin-left:-8.468220px;}
._1{margin-left:-7.200000px;}
._28{margin-left:-6.184800px;}
._7{margin-left:-5.184600px;}
._6{margin-left:-4.019760px;}
._0{margin-left:-2.409600px;}
._2{margin-left:-1.190400px;}
._3{width:1.212600px;}
._4{width:2.332320px;}
._5{width:3.828720px;}
._8{width:5.758560px;}
._24{width:7.419600px;}
._27{width:9.094200px;}
._26{width:10.656600px;}
._25{width:16.905600px;}
._22{width:17.940000px;}
._1d{width:23.296500px;}
._17{width:24.885600px;}
._1c{width:26.337000px;}
._18{width:28.233600px;}
._1a{width:29.350200px;}
._19{width:30.968400px;}
._11{width:32.530200px;}
._15{width:33.925200px;}
._13{width:35.152800px;}
._14{width:36.771600px;}
._20{width:39.393600px;}
._16{width:40.756200px;}
._12{width:41.960400px;}
._e{width:47.875800px;}
._c{width:49.662000px;}
._d{width:51.057000px;}
._b{width:52.172400px;}
._9{width:59.147400px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:22.200000px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:51.600000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:63.779550px;}
.y66{bottom:63.779700px;}
.y53{bottom:63.783900px;}
.yf3{bottom:63.784050px;}
.yca{bottom:63.792750px;}
.y167{bottom:69.197400px;}
.y198{bottom:69.266700px;}
.y22{bottom:79.091100px;}
.y52{bottom:81.179550px;}
.y8c{bottom:81.179700px;}
.y65{bottom:81.179850px;}
.yb7{bottom:81.184050px;}
.yad{bottom:81.184200px;}
.yc9{bottom:81.188400px;}
.y75{bottom:81.188550px;}
.y166{bottom:86.599500px;}
.y197{bottom:86.668800px;}
.y21{bottom:96.486750px;}
.yb6{bottom:98.579700px;}
.y96{bottom:98.579850px;}
.y8b{bottom:98.584050px;}
.y74{bottom:98.584200px;}
.y64{bottom:98.584350px;}
.y51{bottom:98.597100px;}
.y165{bottom:104.001600px;}
.y196{bottom:104.070900px;}
.y136{bottom:110.399400px;}
.y116{bottom:110.463900px;}
.y20{bottom:113.886750px;}
.y8a{bottom:115.979700px;}
.y73{bottom:115.979850px;}
.y63{bottom:115.980000px;}
.y95{bottom:115.984200px;}
.yb5{bottom:115.988550px;}
.yac{bottom:115.988700px;}
.y50{bottom:115.992750px;}
.y164{bottom:121.403700px;}
.y195{bottom:121.473000px;}
.y135{bottom:127.801500px;}
.y115{bottom:127.866000px;}
.y1f{bottom:131.295450px;}
.y89{bottom:133.379700px;}
.y94{bottom:133.379850px;}
.y62{bottom:133.380000px;}
.yde{bottom:133.380150px;}
.yc8{bottom:133.384050px;}
.yb4{bottom:133.384200px;}
.yab{bottom:133.384350px;}
.y9e{bottom:133.384500px;}
.y4f{bottom:133.388400px;}
.y163{bottom:138.805800px;}
.y194{bottom:138.875100px;}
.y134{bottom:145.203600px;}
.y114{bottom:145.268100px;}
.y1e{bottom:148.691100px;}
.yc7{bottom:150.779700px;}
.y88{bottom:150.779850px;}
.y61{bottom:150.780000px;}
.y72{bottom:150.780150px;}
.ydd{bottom:150.780300px;}
.ye9{bottom:150.780450px;}
.y4e{bottom:150.784050px;}
.y162{bottom:156.207900px;}
.y193{bottom:156.277200px;}
.y133{bottom:162.605700px;}
.y113{bottom:162.670200px;}
.y1d{bottom:166.086750px;}
.y4d{bottom:168.179700px;}
.y87{bottom:168.179850px;}
.yaa{bottom:168.180000px;}
.y71{bottom:168.180150px;}
.ydc{bottom:168.180450px;}
.ye8{bottom:168.180600px;}
.y60{bottom:168.184500px;}
.yc6{bottom:168.188550px;}
.y161{bottom:173.610000px;}
.y192{bottom:173.679300px;}
.y132{bottom:180.007800px;}
.y112{bottom:180.072300px;}
.y1c{bottom:183.486750px;}
.y4c{bottom:185.579700px;}
.y86{bottom:185.579850px;}
.yf2{bottom:185.580000px;}
.y5f{bottom:185.580150px;}
.y9d{bottom:185.580300px;}
.ydb{bottom:185.580750px;}
.yb3{bottom:185.584200px;}
.y70{bottom:185.584500px;}
.y160{bottom:191.012100px;}
.y191{bottom:191.081400px;}
.y131{bottom:197.409900px;}
.y111{bottom:197.474400px;}
.y1b{bottom:200.886750px;}
.y4b{bottom:202.979850px;}
.y6f{bottom:202.980150px;}
.y5e{bottom:202.980300px;}
.y9c{bottom:202.980450px;}
.yda{bottom:202.980750px;}
.y85{bottom:202.984200px;}
.ye7{bottom:202.985100px;}
.y93{bottom:202.988700px;}
.ya9{bottom:202.988850px;}
.y15f{bottom:208.414200px;}
.y190{bottom:208.483500px;}
.y130{bottom:214.812000px;}
.y110{bottom:214.876500px;}
.y84{bottom:220.379850px;}
.yc5{bottom:220.380000px;}
.y5d{bottom:220.380450px;}
.ye6{bottom:220.380750px;}
.yd9{bottom:220.380900px;}
.y92{bottom:220.384350px;}
.ya8{bottom:220.384500px;}
.y6e{bottom:220.384800px;}
.y9b{bottom:220.389150px;}
.y4a{bottom:220.397550px;}
.y15e{bottom:225.816300px;}
.y18f{bottom:225.885600px;}
.y12f{bottom:232.214100px;}
.y10f{bottom:232.255500px;}
.y83{bottom:237.780000px;}
.ya7{bottom:237.780150px;}
.y6d{bottom:237.780450px;}
.yd8{bottom:237.781050px;}
.y9a{bottom:237.784800px;}
.y5c{bottom:237.789300px;}
.ye5{bottom:237.789600px;}
.y49{bottom:237.793200px;}
.y15d{bottom:243.218400px;}
.y18e{bottom:243.287700px;}
.y12e{bottom:249.616200px;}
.y10e{bottom:249.657600px;}
.y1a{bottom:250.842450px;}
.y91{bottom:255.180150px;}
.y6c{bottom:255.180450px;}
.yd7{bottom:255.181200px;}
.y5b{bottom:255.184950px;}
.ye4{bottom:255.185250px;}
.y82{bottom:255.188700px;}
.y48{bottom:255.188850px;}
.yf1{bottom:255.193050px;}
.y15c{bottom:260.620500px;}
.y18d{bottom:260.689800px;}
.y12d{bottom:267.018300px;}
.y10d{bottom:267.059700px;}
.y19{bottom:269.442450px;}
.ycf{bottom:272.580000px;}
.y90{bottom:272.580150px;}
.yb2{bottom:272.580300px;}
.y5a{bottom:272.580600px;}
.ye3{bottom:272.580900px;}
.y81{bottom:272.584350px;}
.y47{bottom:272.584500px;}
.y6b{bottom:272.584800px;}
.yd6{bottom:272.585700px;}
.yf0{bottom:272.588700px;}
.yc4{bottom:272.593200px;}
.ya6{bottom:272.597700px;}
.y15b{bottom:278.022600px;}
.y18c{bottom:278.091900px;}
.y12c{bottom:284.420400px;}
.y10c{bottom:284.461800px;}
.y80{bottom:289.980000px;}
.y46{bottom:289.980150px;}
.y6a{bottom:289.980450px;}
.y59{bottom:289.980600px;}
.y99{bottom:289.980750px;}
.yd5{bottom:289.981350px;}
.yef{bottom:289.984350px;}
.y8f{bottom:289.984650px;}
.yc3{bottom:289.988850px;}
.ye2{bottom:289.989450px;}
.ya5{bottom:289.993350px;}
.y15a{bottom:295.424700px;}
.y18b{bottom:295.494000px;}
.y12b{bottom:301.822500px;}
.y10b{bottom:301.863900px;}
.y45{bottom:307.380000px;}
.y8e{bottom:307.380300px;}
.yb1{bottom:307.380450px;}
.y98{bottom:307.380750px;}
.yd4{bottom:307.381500px;}
.yc2{bottom:307.384500px;}
.ye1{bottom:307.385100px;}
.y58{bottom:307.385250px;}
.ya4{bottom:307.389000px;}
.y159{bottom:312.826800px;}
.y18a{bottom:312.896100px;}
.y12a{bottom:319.224600px;}
.y10a{bottom:319.266000px;}
.yc1{bottom:324.780150px;}
.yce{bottom:324.780300px;}
.yb0{bottom:324.780450px;}
.y97{bottom:324.780750px;}
.y57{bottom:324.780900px;}
.yd3{bottom:324.781500px;}
.y44{bottom:324.784500px;}
.ya3{bottom:324.784650px;}
.y7f{bottom:324.788700px;}
.yee{bottom:324.788850px;}
.y69{bottom:325.242450px;}
.y18{bottom:328.842450px;}
.y158{bottom:330.228900px;}
.y189{bottom:330.298200px;}
.y129{bottom:336.626700px;}
.y109{bottom:336.668100px;}
.y43{bottom:342.180150px;}
.ya2{bottom:342.180300px;}
.yaf{bottom:342.180750px;}
.y56{bottom:342.180900px;}
.yd2{bottom:342.181500px;}
.y7e{bottom:342.184350px;}
.yc0{bottom:342.184500px;}
.ycd{bottom:342.184650px;}
.y68{bottom:343.842450px;}
.y17{bottom:346.242450px;}
.y188{bottom:347.527800px;}
.y157{bottom:347.631000px;}
.y128{bottom:354.028800px;}
.y108{bottom:354.070200px;}
.y7d{bottom:359.580000px;}
.ybf{bottom:359.580150px;}
.y42{bottom:359.580300px;}
.ya1{bottom:359.580450px;}
.yae{bottom:359.580600px;}
.ye0{bottom:359.581050px;}
.yd1{bottom:359.581650px;}
.y67{bottom:362.442450px;}
.y187{bottom:364.929900px;}
.y156{bottom:365.033100px;}
.y127{bottom:371.430900px;}
.y107{bottom:371.472300px;}
.y7c{bottom:376.980150px;}
.y41{bottom:376.980300px;}
.ycc{bottom:376.980450px;}
.ya0{bottom:376.980600px;}
.ydf{bottom:376.981200px;}
.yd0{bottom:376.981800px;}
.y16{bottom:381.038700px;}
.y8d{bottom:381.042450px;}
.y186{bottom:382.332000px;}
.y155{bottom:382.435200px;}
.y126{bottom:388.833000px;}
.y106{bottom:388.874400px;}
.y7b{bottom:394.380150px;}
.y40{bottom:394.380300px;}
.y9f{bottom:394.380450px;}
.ycb{bottom:394.380600px;}
.y15{bottom:398.442450px;}
.y55{bottom:399.642450px;}
.y185{bottom:399.734100px;}
.y154{bottom:399.837300px;}
.y125{bottom:406.235100px;}
.y105{bottom:406.276500px;}
.y7a{bottom:411.780300px;}
.ybe{bottom:411.780450px;}
.y14{bottom:415.842450px;}
.y184{bottom:417.136200px;}
.y153{bottom:417.239400px;}
.y54{bottom:418.242450px;}
.y124{bottom:423.637200px;}
.y104{bottom:423.676500px;}
.y79{bottom:429.180450px;}
.ybd{bottom:429.184800px;}
.yed{bottom:429.184950px;}
.y183{bottom:434.538300px;}
.y152{bottom:434.641500px;}
.y3f{bottom:436.842450px;}
.y123{bottom:441.039300px;}
.y103{bottom:441.051300px;}
.ybc{bottom:446.580450px;}
.yec{bottom:446.580600px;}
.y78{bottom:446.584800px;}
.y13{bottom:450.628200px;}
.y182{bottom:451.940400px;}
.y151{bottom:452.043600px;}
.y3e{bottom:455.442450px;}
.y122{bottom:458.441400px;}
.y102{bottom:458.453400px;}
.y77{bottom:463.980450px;}
.yeb{bottom:463.980600px;}
.y12{bottom:467.878950px;}
.y181{bottom:469.342500px;}
.y150{bottom:469.445700px;}
.y3d{bottom:474.042450px;}
.y121{bottom:475.843500px;}
.y101{bottom:475.855500px;}
.ybb{bottom:481.380450px;}
.yea{bottom:481.389300px;}
.y11{bottom:485.129700px;}
.y180{bottom:486.744600px;}
.y14f{bottom:486.847800px;}
.y3c{bottom:492.642450px;}
.y120{bottom:493.245600px;}
.y100{bottom:493.257600px;}
.yba{bottom:498.784950px;}
.y10{bottom:502.380450px;}
.y17f{bottom:504.146700px;}
.y14e{bottom:504.249900px;}
.y11f{bottom:510.647700px;}
.yff{bottom:510.659700px;}
.y3b{bottom:511.242450px;}
.yb9{bottom:516.180600px;}
.yf{bottom:519.631200px;}
.y17e{bottom:521.548800px;}
.y14d{bottom:521.652000px;}
.y11e{bottom:528.049800px;}
.yfe{bottom:528.061800px;}
.y3a{bottom:529.842450px;}
.yb8{bottom:533.580750px;}
.ye{bottom:537.034950px;}
.y17d{bottom:538.950900px;}
.y14c{bottom:539.054100px;}
.y11d{bottom:545.451900px;}
.yfd{bottom:545.463900px;}
.y39{bottom:548.442450px;}
.yd{bottom:554.438700px;}
.y17c{bottom:556.353000px;}
.y14b{bottom:556.456200px;}
.y11c{bottom:562.854000px;}
.yfc{bottom:562.866000px;}
.y38{bottom:567.042450px;}
.yc{bottom:571.842450px;}
.y17b{bottom:573.755100px;}
.y14a{bottom:573.858300px;}
.y11b{bottom:580.256100px;}
.yfb{bottom:580.268100px;}
.y37{bottom:585.642450px;}
.yb{bottom:589.242450px;}
.y17a{bottom:591.157200px;}
.y149{bottom:591.260400px;}
.y11a{bottom:597.658200px;}
.yfa{bottom:597.670200px;}
.y36{bottom:604.242450px;}
.ya{bottom:606.642450px;}
.y179{bottom:608.559300px;}
.y148{bottom:608.662500px;}
.y119{bottom:615.060300px;}
.yf9{bottom:615.072300px;}
.y35{bottom:622.842450px;}
.y9{bottom:624.042450px;}
.y178{bottom:625.961400px;}
.y147{bottom:626.064600px;}
.y118{bottom:632.462400px;}
.yf8{bottom:632.474400px;}
.y34{bottom:641.442450px;}
.y177{bottom:643.363500px;}
.y146{bottom:643.466700px;}
.y117{bottom:649.864500px;}
.yf7{bottom:649.876500px;}
.y33{bottom:660.042450px;}
.y176{bottom:660.765600px;}
.y145{bottom:660.868800px;}
.y175{bottom:678.167700px;}
.y144{bottom:678.270900px;}
.y32{bottom:678.642450px;}
.yf6{bottom:684.642450px;}
.y8{bottom:690.945300px;}
.y174{bottom:695.569800px;}
.y143{bottom:695.673000px;}
.y31{bottom:697.242450px;}
.y7{bottom:711.945300px;}
.y173{bottom:712.971900px;}
.y142{bottom:713.075100px;}
.y30{bottom:715.842450px;}
.y172{bottom:730.374000px;}
.y141{bottom:730.477200px;}
.y2f{bottom:734.442450px;}
.yf5{bottom:736.838700px;}
.y6{bottom:740.451300px;}
.y171{bottom:747.776100px;}
.y1a2{bottom:747.866400px;}
.y140{bottom:747.879300px;}
.y2e{bottom:753.042450px;}
.yf4{bottom:754.242450px;}
.y5{bottom:764.445300px;}
.y170{bottom:765.178200px;}
.y1a1{bottom:765.268500px;}
.y13f{bottom:765.281400px;}
.y2d{bottom:771.642450px;}
.y16f{bottom:782.580300px;}
.y1a0{bottom:782.670600px;}
.y13e{bottom:782.683500px;}
.y2c{bottom:790.242450px;}
.y16e{bottom:799.982400px;}
.y19f{bottom:800.072700px;}
.y13d{bottom:800.085600px;}
.y4{bottom:805.453200px;}
.y2b{bottom:808.842450px;}
.y16d{bottom:817.384500px;}
.y19e{bottom:817.474800px;}
.y13c{bottom:817.487700px;}
.y2a{bottom:827.442450px;}
.y16c{bottom:834.786600px;}
.y19d{bottom:834.876900px;}
.y13b{bottom:834.889800px;}
.y3{bottom:835.453200px;}
.y29{bottom:846.042450px;}
.y16b{bottom:852.188700px;}
.y19c{bottom:852.279000px;}
.y13a{bottom:852.291900px;}
.y24{bottom:857.391000px;}
.y28{bottom:864.642450px;}
.y23{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.y16a{bottom:869.590800px;}
.y19b{bottom:869.681100px;}
.y139{bottom:869.694000px;}
.y27{bottom:883.242450px;}
.y169{bottom:886.992900px;}
.y19a{bottom:887.083200px;}
.y138{bottom:887.096100px;}
.y1{bottom:895.453200px;}
.y26{bottom:901.842450px;}
.y168{bottom:904.395000px;}
.y199{bottom:904.485300px;}
.y137{bottom:904.498200px;}
.y25{bottom:955.942350px;}
.ha{height:15.295800px;}
.he{height:46.233600px;}
.h11{height:46.915200px;}
.h6{height:48.762000px;}
.h7{height:49.827000px;}
.h9{height:49.996800px;}
.hf{height:50.103600px;}
.h10{height:50.204400px;}
.hb{height:50.868000px;}
.hd{height:54.181800px;}
.h5{height:56.520000px;}
.hc{height:56.700000px;}
.h8{height:58.620000px;}
.h4{height:67.824000px;}
.h3{height:90.432000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.730100px;}
.x7{left:28.599450px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.xb{left:85.041600px;}
.x6{left:93.541950px;}
.x2{left:102.047250px;}
.xc{left:353.413200px;}
.xa{left:361.914900px;}
.xd{left:366.171300px;}
.x9{left:374.673000px;}
.x4{left:650.769450px;}
.x3{left:653.638800px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1a{letter-spacing:-3.792000pt;}
.ls72{letter-spacing:-2.016000pt;}
.ls83{letter-spacing:-1.651200pt;}
.ls76{letter-spacing:-1.361600pt;}
.ls71{letter-spacing:-1.333333pt;}
.lse{letter-spacing:-1.284267pt;}
.ls1f{letter-spacing:-1.173333pt;}
.ls50{letter-spacing:-0.693333pt;}
.ls35{letter-spacing:-0.640000pt;}
.ls78{letter-spacing:-0.625600pt;}
.ls79{letter-spacing:-0.552000pt;}
.ls32{letter-spacing:-0.533333pt;}
.ls52{letter-spacing:-0.496000pt;}
.ls59{letter-spacing:-0.480000pt;}
.ls53{letter-spacing:-0.446400pt;}
.ls5f{letter-spacing:-0.435307pt;}
.ls51{letter-spacing:-0.426667pt;}
.ls58{letter-spacing:-0.404213pt;}
.ls56{letter-spacing:-0.373333pt;}
.ls36{letter-spacing:-0.368000pt;}
.ls61{letter-spacing:-0.331200pt;}
.ls75{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.310933pt;}
.ls55{letter-spacing:-0.297600pt;}
.ls5a{letter-spacing:-0.279840pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls54{letter-spacing:-0.248000pt;}
.ls57{letter-spacing:-0.217653pt;}
.ls1c{letter-spacing:-0.213333pt;}
.ls60{letter-spacing:-0.198400pt;}
.ls30{letter-spacing:-0.186560pt;}
.ls21{letter-spacing:-0.160000pt;}
.ls67{letter-spacing:-0.155467pt;}
.ls10{letter-spacing:-0.148800pt;}
.ls1d{letter-spacing:-0.124373pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls2b{letter-spacing:-0.099200pt;}
.ls81{letter-spacing:-0.093280pt;}
.ls45{letter-spacing:-0.062187pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls49{letter-spacing:-0.049600pt;}
.ls74{letter-spacing:-0.031093pt;}
.lsa{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.022933pt;}
.ls7d{letter-spacing:0.031093pt;}
.ls7{letter-spacing:0.049600pt;}
.ls22{letter-spacing:0.053333pt;}
.ls6f{letter-spacing:0.062187pt;}
.ls2f{letter-spacing:0.074400pt;}
.ls24{letter-spacing:0.077333pt;}
.ls63{letter-spacing:0.093280pt;}
.ls6c{letter-spacing:0.099200pt;}
.ls25{letter-spacing:0.106667pt;}
.ls44{letter-spacing:0.124373pt;}
.ls6b{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.148800pt;}
.ls5e{letter-spacing:0.155467pt;}
.ls13{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.173600pt;}
.ls31{letter-spacing:0.186560pt;}
.ls80{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.197333pt;}
.ls42{letter-spacing:0.198400pt;}
.ls15{letter-spacing:0.213333pt;}
.ls7f{letter-spacing:0.217653pt;}
.ls41{letter-spacing:0.223200pt;}
.ls4e{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.248000pt;}
.ls5b{letter-spacing:0.248747pt;}
.ls16{letter-spacing:0.266667pt;}
.ls7c{letter-spacing:0.279840pt;}
.ls39{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.296000pt;}
.ls2c{letter-spacing:0.297600pt;}
.ls47{letter-spacing:0.310933pt;}
.ls14{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.342027pt;}
.ls28{letter-spacing:0.346667pt;}
.ls2d{letter-spacing:0.347200pt;}
.ls2{letter-spacing:0.362667pt;}
.ls77{letter-spacing:0.368000pt;}
.ls7e{letter-spacing:0.373120pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls38{letter-spacing:0.400000pt;}
.ls23{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.453333pt;}
.ls66{letter-spacing:0.466400pt;}
.ls37{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.496000pt;}
.ls5c{letter-spacing:0.520800pt;}
.ls0{letter-spacing:0.521333pt;}
.ls6d{letter-spacing:0.528587pt;}
.ls3f{letter-spacing:0.533333pt;}
.ls65{letter-spacing:0.559680pt;}
.ls40{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.589333pt;}
.ls6e{letter-spacing:0.590773pt;}
.ls19{letter-spacing:0.595200pt;}
.ls7a{letter-spacing:0.613333pt;}
.ls73{letter-spacing:0.621867pt;}
.ls5{letter-spacing:0.634667pt;}
.ls3b{letter-spacing:0.640000pt;}
.ls62{letter-spacing:0.666667pt;}
.ls4{letter-spacing:0.680000pt;}
.ls6a{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.694400pt;}
.ls1b{letter-spacing:0.720000pt;}
.ls4c{letter-spacing:0.740267pt;}
.ls46{letter-spacing:0.746240pt;}
.ls4a{letter-spacing:0.746667pt;}
.ls7b{letter-spacing:0.773333pt;}
.ls4b{letter-spacing:0.800000pt;}
.ls4d{letter-spacing:0.826667pt;}
.ls3c{letter-spacing:0.853333pt;}
.ls3d{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.960000pt;}
.ls68{letter-spacing:1.013333pt;}
.ls70{letter-spacing:1.034667pt;}
.ls2a{letter-spacing:1.066667pt;}
.ls29{letter-spacing:1.104000pt;}
.ls26{letter-spacing:1.109333pt;}
.ls69{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.192533pt;}
.ls3a{letter-spacing:1.280000pt;}
.lsc{letter-spacing:1.376000pt;}
.ls5d{letter-spacing:1.493333pt;}
.ls4f{letter-spacing:1.850080pt;}
.ls6{letter-spacing:2.064000pt;}
.ls2e{letter-spacing:2.147680pt;}
.lsd{letter-spacing:2.385067pt;}
.ls82{letter-spacing:2.981333pt;}
.ls3e{letter-spacing:3.616000pt;}
.ws118{word-spacing:-13.117867pt;}
.ws0{word-spacing:-12.640000pt;}
.wsfc{word-spacing:-12.213333pt;}
.ws2{word-spacing:-12.200533pt;}
.wsb9{word-spacing:-12.160000pt;}
.ws75{word-spacing:-12.106667pt;}
.ws104{word-spacing:-12.000000pt;}
.ws92{word-spacing:-11.733333pt;}
.wsbc{word-spacing:-11.466667pt;}
.ws3c{word-spacing:-11.200000pt;}
.ws3d{word-spacing:-11.093333pt;}
.ws1e{word-spacing:-10.986667pt;}
.wsd4{word-spacing:-10.933333pt;}
.wsd2{word-spacing:-10.880000pt;}
.wsd0{word-spacing:-10.826667pt;}
.ws93{word-spacing:-10.713600pt;}
.ws10d{word-spacing:-10.664000pt;}
.ws91{word-spacing:-10.560000pt;}
.wsbd{word-spacing:-10.346667pt;}
.ws70{word-spacing:-10.293333pt;}
.wsba{word-spacing:-10.266667pt;}
.ws105{word-spacing:-10.240000pt;}
.ws78{word-spacing:-10.143200pt;}
.wsdf{word-spacing:-10.133333pt;}
.ws10e{word-spacing:-10.118400pt;}
.ws72{word-spacing:-10.026667pt;}
.ws51{word-spacing:-9.920000pt;}
.ws119{word-spacing:-9.861333pt;}
.wsc0{word-spacing:-9.813333pt;}
.ws3{word-spacing:-9.520000pt;}
.wsbe{word-spacing:-9.493333pt;}
.wsf4{word-spacing:-9.360000pt;}
.ws11d{word-spacing:-9.173333pt;}
.ws6f{word-spacing:-8.853333pt;}
.ws1{word-spacing:-8.522667pt;}
.wsf8{word-spacing:-8.280000pt;}
.ws11e{word-spacing:-8.210133pt;}
.ws5{word-spacing:-7.912000pt;}
.ws1d{word-spacing:-7.584000pt;}
.wsc1{word-spacing:-7.580800pt;}
.ws52{word-spacing:-7.544000pt;}
.wsfa{word-spacing:-7.360000pt;}
.wsf9{word-spacing:-7.286400pt;}
.ws74{word-spacing:-7.275840pt;}
.wsf5{word-spacing:-7.151467pt;}
.wsde{word-spacing:-7.120373pt;}
.wscf{word-spacing:-7.089280pt;}
.wsdd{word-spacing:-7.058187pt;}
.wsd1{word-spacing:-6.996000pt;}
.ws102{word-spacing:-6.902720pt;}
.ws77{word-spacing:-6.871627pt;}
.ws76{word-spacing:-6.840533pt;}
.ws103{word-spacing:-6.809440pt;}
.wsad{word-spacing:-6.778347pt;}
.ws106{word-spacing:-6.747253pt;}
.ws4f{word-spacing:-6.716160pt;}
.wsbb{word-spacing:-6.685067pt;}
.ws71{word-spacing:-6.653973pt;}
.wsce{word-spacing:-6.622880pt;}
.wse0{word-spacing:-6.591787pt;}
.ws101{word-spacing:-6.560693pt;}
.wsf7{word-spacing:-6.550400pt;}
.ws4{word-spacing:-6.529600pt;}
.wsf6{word-spacing:-6.498507pt;}
.ws73{word-spacing:-6.467413pt;}
.ws117{word-spacing:-6.436320pt;}
.ws1f{word-spacing:-6.405227pt;}
.wsd3{word-spacing:-6.374133pt;}
.ws4e{word-spacing:-6.343040pt;}
.wsaa{word-spacing:-6.311947pt;}
.wsac{word-spacing:-6.249760pt;}
.ws50{word-spacing:-6.218667pt;}
.wsab{word-spacing:-6.125387pt;}
.wsbf{word-spacing:-6.094293pt;}
.wsa{word-spacing:-2.385067pt;}
.wsfd{word-spacing:-2.133333pt;}
.wsc6{word-spacing:-2.026667pt;}
.ws59{word-spacing:-1.973333pt;}
.wse5{word-spacing:-1.866667pt;}
.wsc7{word-spacing:-1.813333pt;}
.ws15{word-spacing:-1.706667pt;}
.ws21{word-spacing:-1.653333pt;}
.wsdb{word-spacing:-1.636800pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws18{word-spacing:-1.587200pt;}
.ws48{word-spacing:-1.546667pt;}
.ws16{word-spacing:-1.537600pt;}
.ws26{word-spacing:-1.493333pt;}
.wsb5{word-spacing:-1.488000pt;}
.wsc{word-spacing:-1.450667pt;}
.ws5a{word-spacing:-1.440000pt;}
.wsb7{word-spacing:-1.438400pt;}
.ws19{word-spacing:-1.388800pt;}
.ws7a{word-spacing:-1.386667pt;}
.ws9{word-spacing:-1.376000pt;}
.ws90{word-spacing:-1.339200pt;}
.ws110{word-spacing:-1.333333pt;}
.ws8d{word-spacing:-1.289600pt;}
.wsaf{word-spacing:-1.280000pt;}
.wsa8{word-spacing:-1.240000pt;}
.ws54{word-spacing:-1.226667pt;}
.ws8{word-spacing:-1.192533pt;}
.ws6d{word-spacing:-1.190400pt;}
.ws96{word-spacing:-1.173333pt;}
.wsf1{word-spacing:-1.140800pt;}
.ws67{word-spacing:-1.120000pt;}
.ws3e{word-spacing:-1.104000pt;}
.ws10b{word-spacing:-1.091200pt;}
.ws40{word-spacing:-1.066667pt;}
.ws10c{word-spacing:-1.041600pt;}
.wsc5{word-spacing:-1.013333pt;}
.wsea{word-spacing:-0.992000pt;}
.ws47{word-spacing:-0.960000pt;}
.wsa5{word-spacing:-0.942400pt;}
.ws42{word-spacing:-0.906667pt;}
.ws84{word-spacing:-0.853333pt;}
.wsa6{word-spacing:-0.843200pt;}
.wsb0{word-spacing:-0.800000pt;}
.ws34{word-spacing:-0.793600pt;}
.ws66{word-spacing:-0.746667pt;}
.wsf3{word-spacing:-0.694400pt;}
.ws58{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.680000pt;}
.ws33{word-spacing:-0.644800pt;}
.ws11c{word-spacing:-0.642133pt;}
.ws7b{word-spacing:-0.640000pt;}
.ws122{word-spacing:-0.596267pt;}
.wsb6{word-spacing:-0.595200pt;}
.wsa7{word-spacing:-0.545600pt;}
.ws43{word-spacing:-0.533333pt;}
.ws37{word-spacing:-0.496000pt;}
.ws25{word-spacing:-0.480000pt;}
.ws112{word-spacing:-0.446400pt;}
.ws86{word-spacing:-0.426667pt;}
.wsd{word-spacing:-0.408000pt;}
.ws100{word-spacing:-0.396800pt;}
.ws87{word-spacing:-0.373333pt;}
.ws121{word-spacing:-0.366933pt;}
.ws31{word-spacing:-0.347200pt;}
.ws120{word-spacing:-0.321067pt;}
.ws7d{word-spacing:-0.320000pt;}
.ws6{word-spacing:-0.315733pt;}
.ws9c{word-spacing:-0.310933pt;}
.ws4d{word-spacing:-0.297600pt;}
.ws29{word-spacing:-0.266667pt;}
.ws6a{word-spacing:-0.248000pt;}
.ws2d{word-spacing:-0.213333pt;}
.ws1b{word-spacing:-0.198400pt;}
.ws1c{word-spacing:-0.197333pt;}
.ws11b{word-spacing:-0.183467pt;}
.ws12{word-spacing:-0.181333pt;}
.ws115{word-spacing:-0.148800pt;}
.ws55{word-spacing:-0.106667pt;}
.wsf2{word-spacing:-0.099200pt;}
.ws56{word-spacing:-0.053333pt;}
.ws35{word-spacing:-0.049600pt;}
.ws7{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.049600pt;}
.ws27{word-spacing:0.053333pt;}
.ws1a{word-spacing:0.099200pt;}
.ws30{word-spacing:0.106667pt;}
.wse7{word-spacing:0.148800pt;}
.ws81{word-spacing:0.160000pt;}
.ws69{word-spacing:0.198400pt;}
.ws9d{word-spacing:0.213333pt;}
.wsa9{word-spacing:0.248000pt;}
.ws46{word-spacing:0.266667pt;}
.wsb1{word-spacing:0.279840pt;}
.ws36{word-spacing:0.297600pt;}
.ws65{word-spacing:0.310933pt;}
.wsfe{word-spacing:0.320000pt;}
.ws8a{word-spacing:0.347200pt;}
.wsc3{word-spacing:0.373333pt;}
.wsa4{word-spacing:0.446400pt;}
.ws49{word-spacing:0.480000pt;}
.ws108{word-spacing:0.533333pt;}
.ws116{word-spacing:0.545600pt;}
.ws60{word-spacing:0.586667pt;}
.ws41{word-spacing:0.640000pt;}
.ws61{word-spacing:0.693333pt;}
.wseb{word-spacing:0.694400pt;}
.wsa3{word-spacing:0.744000pt;}
.ws9b{word-spacing:0.746667pt;}
.ws2e{word-spacing:0.800000pt;}
.ws11{word-spacing:0.816000pt;}
.ws39{word-spacing:0.843200pt;}
.ws99{word-spacing:0.853333pt;}
.ws4c{word-spacing:0.892800pt;}
.wsc9{word-spacing:0.942400pt;}
.ws98{word-spacing:0.960000pt;}
.wsc8{word-spacing:0.992000pt;}
.ws8f{word-spacing:1.041600pt;}
.ws62{word-spacing:1.066667pt;}
.ws28{word-spacing:1.120000pt;}
.ws10a{word-spacing:1.140800pt;}
.ws9f{word-spacing:1.173333pt;}
.ws8e{word-spacing:1.190400pt;}
.ws63{word-spacing:1.226667pt;}
.wse6{word-spacing:1.240000pt;}
.ws9e{word-spacing:1.280000pt;}
.ws13{word-spacing:1.284267pt;}
.wsb4{word-spacing:1.289600pt;}
.ws5b{word-spacing:1.333333pt;}
.wse8{word-spacing:1.339200pt;}
.wsd8{word-spacing:1.386667pt;}
.ws114{word-spacing:1.388800pt;}
.wsb{word-spacing:1.405333pt;}
.ws14{word-spacing:1.440000pt;}
.ws10{word-spacing:1.450667pt;}
.ws6e{word-spacing:1.488000pt;}
.ws9a{word-spacing:1.493333pt;}
.ws8b{word-spacing:1.537600pt;}
.ws57{word-spacing:1.546667pt;}
.ws17{word-spacing:1.587200pt;}
.wsd7{word-spacing:1.600000pt;}
.wsf{word-spacing:1.632000pt;}
.ws68{word-spacing:1.636800pt;}
.ws24{word-spacing:1.653333pt;}
.ws113{word-spacing:1.686400pt;}
.ws22{word-spacing:1.706667pt;}
.wsa2{word-spacing:1.736000pt;}
.ws80{word-spacing:1.760000pt;}
.ws95{word-spacing:1.813333pt;}
.ws32{word-spacing:1.835200pt;}
.wsc4{word-spacing:1.866667pt;}
.wsda{word-spacing:1.884800pt;}
.ws64{word-spacing:1.973333pt;}
.wsdc{word-spacing:1.984000pt;}
.ws7e{word-spacing:2.026667pt;}
.wsca{word-spacing:2.033600pt;}
.ws2f{word-spacing:2.080000pt;}
.ws38{word-spacing:2.083200pt;}
.ws6b{word-spacing:2.132800pt;}
.ws5c{word-spacing:2.133333pt;}
.ws82{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.240000pt;}
.ws88{word-spacing:2.293333pt;}
.ws2a{word-spacing:2.346667pt;}
.wscc{word-spacing:2.380800pt;}
.wsd6{word-spacing:2.400000pt;}
.wse4{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.506667pt;}
.wscb{word-spacing:2.529600pt;}
.ws6c{word-spacing:2.579200pt;}
.wsa1{word-spacing:2.613333pt;}
.ws23{word-spacing:2.666667pt;}
.ws4a{word-spacing:2.720000pt;}
.wsb2{word-spacing:2.773333pt;}
.wse3{word-spacing:2.826667pt;}
.wse9{word-spacing:2.876800pt;}
.ws45{word-spacing:2.880000pt;}
.ws97{word-spacing:2.933333pt;}
.ws111{word-spacing:2.986667pt;}
.ws85{word-spacing:3.040000pt;}
.ws5f{word-spacing:3.146667pt;}
.ws44{word-spacing:3.200000pt;}
.wsb3{word-spacing:3.253333pt;}
.wsa0{word-spacing:3.360000pt;}
.wsed{word-spacing:3.413333pt;}
.ws5e{word-spacing:3.520000pt;}
.wsee{word-spacing:3.573333pt;}
.wsef{word-spacing:3.786667pt;}
.ws109{word-spacing:3.840000pt;}
.ws89{word-spacing:3.868800pt;}
.ws7c{word-spacing:4.000000pt;}
.ws8c{word-spacing:4.017600pt;}
.wse2{word-spacing:4.106667pt;}
.wscd{word-spacing:4.216000pt;}
.wsff{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.800000pt;}
.ws3b{word-spacing:4.960000pt;}
.wsd9{word-spacing:5.493333pt;}
.ws3a{word-spacing:5.505600pt;}
.ws4b{word-spacing:5.753600pt;}
.ws83{word-spacing:6.026667pt;}
.wsf0{word-spacing:25.643200pt;}
.ws11a{word-spacing:1292.976000pt;}
.ws107{word-spacing:1294.896000pt;}
.ws79{word-spacing:1298.976000pt;}
.wsae{word-spacing:1299.120000pt;}
.wsec{word-spacing:1299.264000pt;}
.wsd5{word-spacing:1299.456000pt;}
.ws3f{word-spacing:1300.848000pt;}
.ws10f{word-spacing:1369.440000pt;}
.wsfb{word-spacing:1369.824000pt;}
.ws11f{word-spacing:1370.304000pt;}
.ws20{word-spacing:1373.952000pt;}
.ws94{word-spacing:1374.288000pt;}
.wse1{word-spacing:1374.384000pt;}
.ws53{word-spacing:1374.432000pt;}
.wsc2{word-spacing:1374.720000pt;}
._a{margin-left:-1374.109760pt;}
._29{margin-left:-1370.426347pt;}
._21{margin-left:-1369.466347pt;}
._f{margin-left:-16.616000pt;}
._1f{margin-left:-14.870293pt;}
._1b{margin-left:-13.431467pt;}
._1e{margin-left:-10.590187pt;}
._10{margin-left:-8.928000pt;}
._23{margin-left:-7.527307pt;}
._1{margin-left:-6.400000pt;}
._28{margin-left:-5.497600pt;}
._7{margin-left:-4.608533pt;}
._6{margin-left:-3.573120pt;}
._0{margin-left:-2.141867pt;}
._2{margin-left:-1.058133pt;}
._3{width:1.077867pt;}
._4{width:2.073173pt;}
._5{width:3.403307pt;}
._8{width:5.118720pt;}
._24{width:6.595200pt;}
._27{width:8.083733pt;}
._26{width:9.472533pt;}
._25{width:15.027200pt;}
._22{width:15.946667pt;}
._1d{width:20.708000pt;}
._17{width:22.120533pt;}
._1c{width:23.410667pt;}
._18{width:25.096533pt;}
._1a{width:26.089067pt;}
._19{width:27.527467pt;}
._11{width:28.915733pt;}
._15{width:30.155733pt;}
._13{width:31.246933pt;}
._14{width:32.685867pt;}
._20{width:35.016533pt;}
._16{width:36.227733pt;}
._12{width:37.298133pt;}
._e{width:42.556267pt;}
._c{width:44.144000pt;}
._d{width:45.384000pt;}
._b{width:46.375467pt;}
._9{width:52.575467pt;}
.fs8{font-size:19.733333pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:45.866667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:56.692933pt;}
.y66{bottom:56.693067pt;}
.y53{bottom:56.696800pt;}
.yf3{bottom:56.696933pt;}
.yca{bottom:56.704667pt;}
.y167{bottom:61.508800pt;}
.y198{bottom:61.570400pt;}
.y22{bottom:70.303200pt;}
.y52{bottom:72.159600pt;}
.y8c{bottom:72.159733pt;}
.y65{bottom:72.159867pt;}
.yb7{bottom:72.163600pt;}
.yad{bottom:72.163733pt;}
.yc9{bottom:72.167467pt;}
.y75{bottom:72.167600pt;}
.y166{bottom:76.977333pt;}
.y197{bottom:77.038933pt;}
.y21{bottom:85.766000pt;}
.yb6{bottom:87.626400pt;}
.y96{bottom:87.626533pt;}
.y8b{bottom:87.630267pt;}
.y74{bottom:87.630400pt;}
.y64{bottom:87.630533pt;}
.y51{bottom:87.641867pt;}
.y165{bottom:92.445867pt;}
.y196{bottom:92.507467pt;}
.y136{bottom:98.132800pt;}
.y116{bottom:98.190133pt;}
.y20{bottom:101.232667pt;}
.y8a{bottom:103.093067pt;}
.y73{bottom:103.093200pt;}
.y63{bottom:103.093333pt;}
.y95{bottom:103.097067pt;}
.yb5{bottom:103.100933pt;}
.yac{bottom:103.101067pt;}
.y50{bottom:103.104667pt;}
.y164{bottom:107.914400pt;}
.y195{bottom:107.976000pt;}
.y135{bottom:113.601333pt;}
.y115{bottom:113.658667pt;}
.y1f{bottom:116.707067pt;}
.y89{bottom:118.559733pt;}
.y94{bottom:118.559867pt;}
.y62{bottom:118.560000pt;}
.yde{bottom:118.560133pt;}
.yc8{bottom:118.563600pt;}
.yb4{bottom:118.563733pt;}
.yab{bottom:118.563867pt;}
.y9e{bottom:118.564000pt;}
.y4f{bottom:118.567467pt;}
.y163{bottom:123.382933pt;}
.y194{bottom:123.444533pt;}
.y134{bottom:129.069867pt;}
.y114{bottom:129.127200pt;}
.y1e{bottom:132.169867pt;}
.yc7{bottom:134.026400pt;}
.y88{bottom:134.026533pt;}
.y61{bottom:134.026667pt;}
.y72{bottom:134.026800pt;}
.ydd{bottom:134.026933pt;}
.ye9{bottom:134.027067pt;}
.y4e{bottom:134.030267pt;}
.y162{bottom:138.851467pt;}
.y193{bottom:138.913067pt;}
.y133{bottom:144.538400pt;}
.y113{bottom:144.595733pt;}
.y1d{bottom:147.632667pt;}
.y4d{bottom:149.493067pt;}
.y87{bottom:149.493200pt;}
.yaa{bottom:149.493333pt;}
.y71{bottom:149.493467pt;}
.ydc{bottom:149.493733pt;}
.ye8{bottom:149.493867pt;}
.y60{bottom:149.497333pt;}
.yc6{bottom:149.500933pt;}
.y161{bottom:154.320000pt;}
.y192{bottom:154.381600pt;}
.y132{bottom:160.006933pt;}
.y112{bottom:160.064267pt;}
.y1c{bottom:163.099333pt;}
.y4c{bottom:164.959733pt;}
.y86{bottom:164.959867pt;}
.yf2{bottom:164.960000pt;}
.y5f{bottom:164.960133pt;}
.y9d{bottom:164.960267pt;}
.ydb{bottom:164.960667pt;}
.yb3{bottom:164.963733pt;}
.y70{bottom:164.964000pt;}
.y160{bottom:169.788533pt;}
.y191{bottom:169.850133pt;}
.y131{bottom:175.475467pt;}
.y111{bottom:175.532800pt;}
.y1b{bottom:178.566000pt;}
.y4b{bottom:180.426533pt;}
.y6f{bottom:180.426800pt;}
.y5e{bottom:180.426933pt;}
.y9c{bottom:180.427067pt;}
.yda{bottom:180.427333pt;}
.y85{bottom:180.430400pt;}
.ye7{bottom:180.431200pt;}
.y93{bottom:180.434400pt;}
.ya9{bottom:180.434533pt;}
.y15f{bottom:185.257067pt;}
.y190{bottom:185.318667pt;}
.y130{bottom:190.944000pt;}
.y110{bottom:191.001333pt;}
.y84{bottom:195.893200pt;}
.yc5{bottom:195.893333pt;}
.y5d{bottom:195.893733pt;}
.ye6{bottom:195.894000pt;}
.yd9{bottom:195.894133pt;}
.y92{bottom:195.897200pt;}
.ya8{bottom:195.897333pt;}
.y6e{bottom:195.897600pt;}
.y9b{bottom:195.901467pt;}
.y4a{bottom:195.908933pt;}
.y15e{bottom:200.725600pt;}
.y18f{bottom:200.787200pt;}
.y12f{bottom:206.412533pt;}
.y10f{bottom:206.449333pt;}
.y83{bottom:211.360000pt;}
.ya7{bottom:211.360133pt;}
.y6d{bottom:211.360400pt;}
.yd8{bottom:211.360933pt;}
.y9a{bottom:211.364267pt;}
.y5c{bottom:211.368267pt;}
.ye5{bottom:211.368533pt;}
.y49{bottom:211.371733pt;}
.y15d{bottom:216.194133pt;}
.y18e{bottom:216.255733pt;}
.y12e{bottom:221.881067pt;}
.y10e{bottom:221.917867pt;}
.y1a{bottom:222.971067pt;}
.y91{bottom:226.826800pt;}
.y6c{bottom:226.827067pt;}
.yd7{bottom:226.827733pt;}
.y5b{bottom:226.831067pt;}
.ye4{bottom:226.831333pt;}
.y82{bottom:226.834400pt;}
.y48{bottom:226.834533pt;}
.yf1{bottom:226.838267pt;}
.y15c{bottom:231.662667pt;}
.y18d{bottom:231.724267pt;}
.y12d{bottom:237.349600pt;}
.y10d{bottom:237.386400pt;}
.y19{bottom:239.504400pt;}
.ycf{bottom:242.293333pt;}
.y90{bottom:242.293467pt;}
.yb2{bottom:242.293600pt;}
.y5a{bottom:242.293867pt;}
.ye3{bottom:242.294133pt;}
.y81{bottom:242.297200pt;}
.y47{bottom:242.297333pt;}
.y6b{bottom:242.297600pt;}
.yd6{bottom:242.298400pt;}
.yf0{bottom:242.301067pt;}
.yc4{bottom:242.305067pt;}
.ya6{bottom:242.309067pt;}
.y15b{bottom:247.131200pt;}
.y18c{bottom:247.192800pt;}
.y12c{bottom:252.818133pt;}
.y10c{bottom:252.854933pt;}
.y80{bottom:257.760000pt;}
.y46{bottom:257.760133pt;}
.y6a{bottom:257.760400pt;}
.y59{bottom:257.760533pt;}
.y99{bottom:257.760667pt;}
.yd5{bottom:257.761200pt;}
.yef{bottom:257.763867pt;}
.y8f{bottom:257.764133pt;}
.yc3{bottom:257.767867pt;}
.ye2{bottom:257.768400pt;}
.ya5{bottom:257.771867pt;}
.y15a{bottom:262.599733pt;}
.y18b{bottom:262.661333pt;}
.y12b{bottom:268.286667pt;}
.y10b{bottom:268.323467pt;}
.y45{bottom:273.226667pt;}
.y8e{bottom:273.226933pt;}
.yb1{bottom:273.227067pt;}
.y98{bottom:273.227333pt;}
.yd4{bottom:273.228000pt;}
.yc2{bottom:273.230667pt;}
.ye1{bottom:273.231200pt;}
.y58{bottom:273.231333pt;}
.ya4{bottom:273.234667pt;}
.y159{bottom:278.068267pt;}
.y18a{bottom:278.129867pt;}
.y12a{bottom:283.755200pt;}
.y10a{bottom:283.792000pt;}
.yc1{bottom:288.693467pt;}
.yce{bottom:288.693600pt;}
.yb0{bottom:288.693733pt;}
.y97{bottom:288.694000pt;}
.y57{bottom:288.694133pt;}
.yd3{bottom:288.694667pt;}
.y44{bottom:288.697333pt;}
.ya3{bottom:288.697467pt;}
.y7f{bottom:288.701067pt;}
.yee{bottom:288.701200pt;}
.y69{bottom:289.104400pt;}
.y18{bottom:292.304400pt;}
.y158{bottom:293.536800pt;}
.y189{bottom:293.598400pt;}
.y129{bottom:299.223733pt;}
.y109{bottom:299.260533pt;}
.y43{bottom:304.160133pt;}
.ya2{bottom:304.160267pt;}
.yaf{bottom:304.160667pt;}
.y56{bottom:304.160800pt;}
.yd2{bottom:304.161333pt;}
.y7e{bottom:304.163867pt;}
.yc0{bottom:304.164000pt;}
.ycd{bottom:304.164133pt;}
.y68{bottom:305.637733pt;}
.y17{bottom:307.771067pt;}
.y188{bottom:308.913600pt;}
.y157{bottom:309.005333pt;}
.y128{bottom:314.692267pt;}
.y108{bottom:314.729067pt;}
.y7d{bottom:319.626667pt;}
.ybf{bottom:319.626800pt;}
.y42{bottom:319.626933pt;}
.ya1{bottom:319.627067pt;}
.yae{bottom:319.627200pt;}
.ye0{bottom:319.627600pt;}
.yd1{bottom:319.628133pt;}
.y67{bottom:322.171067pt;}
.y187{bottom:324.382133pt;}
.y156{bottom:324.473867pt;}
.y127{bottom:330.160800pt;}
.y107{bottom:330.197600pt;}
.y7c{bottom:335.093467pt;}
.y41{bottom:335.093600pt;}
.ycc{bottom:335.093733pt;}
.ya0{bottom:335.093867pt;}
.ydf{bottom:335.094400pt;}
.yd0{bottom:335.094933pt;}
.y16{bottom:338.701067pt;}
.y8d{bottom:338.704400pt;}
.y186{bottom:339.850667pt;}
.y155{bottom:339.942400pt;}
.y126{bottom:345.629333pt;}
.y106{bottom:345.666133pt;}
.y7b{bottom:350.560133pt;}
.y40{bottom:350.560267pt;}
.y9f{bottom:350.560400pt;}
.ycb{bottom:350.560533pt;}
.y15{bottom:354.171067pt;}
.y55{bottom:355.237733pt;}
.y185{bottom:355.319200pt;}
.y154{bottom:355.410933pt;}
.y125{bottom:361.097867pt;}
.y105{bottom:361.134667pt;}
.y7a{bottom:366.026933pt;}
.ybe{bottom:366.027067pt;}
.y14{bottom:369.637733pt;}
.y184{bottom:370.787733pt;}
.y153{bottom:370.879467pt;}
.y54{bottom:371.771067pt;}
.y124{bottom:376.566400pt;}
.y104{bottom:376.601333pt;}
.y79{bottom:381.493733pt;}
.ybd{bottom:381.497600pt;}
.yed{bottom:381.497733pt;}
.y183{bottom:386.256267pt;}
.y152{bottom:386.348000pt;}
.y3f{bottom:388.304400pt;}
.y123{bottom:392.034933pt;}
.y103{bottom:392.045600pt;}
.ybc{bottom:396.960400pt;}
.yec{bottom:396.960533pt;}
.y78{bottom:396.964267pt;}
.y13{bottom:400.558400pt;}
.y182{bottom:401.724800pt;}
.y151{bottom:401.816533pt;}
.y3e{bottom:404.837733pt;}
.y122{bottom:407.503467pt;}
.y102{bottom:407.514133pt;}
.y77{bottom:412.427067pt;}
.yeb{bottom:412.427200pt;}
.y12{bottom:415.892400pt;}
.y181{bottom:417.193333pt;}
.y150{bottom:417.285067pt;}
.y3d{bottom:421.371067pt;}
.y121{bottom:422.972000pt;}
.y101{bottom:422.982667pt;}
.ybb{bottom:427.893733pt;}
.yea{bottom:427.901600pt;}
.y11{bottom:431.226400pt;}
.y180{bottom:432.661867pt;}
.y14f{bottom:432.753600pt;}
.y3c{bottom:437.904400pt;}
.y120{bottom:438.440533pt;}
.y100{bottom:438.451200pt;}
.yba{bottom:443.364400pt;}
.y10{bottom:446.560400pt;}
.y17f{bottom:448.130400pt;}
.y14e{bottom:448.222133pt;}
.y11f{bottom:453.909067pt;}
.yff{bottom:453.919733pt;}
.y3b{bottom:454.437733pt;}
.yb9{bottom:458.827200pt;}
.yf{bottom:461.894400pt;}
.y17e{bottom:463.598933pt;}
.y14d{bottom:463.690667pt;}
.y11e{bottom:469.377600pt;}
.yfe{bottom:469.388267pt;}
.y3a{bottom:470.971067pt;}
.yb8{bottom:474.294000pt;}
.ye{bottom:477.364400pt;}
.y17d{bottom:479.067467pt;}
.y14c{bottom:479.159200pt;}
.y11d{bottom:484.846133pt;}
.yfd{bottom:484.856800pt;}
.y39{bottom:487.504400pt;}
.yd{bottom:492.834400pt;}
.y17c{bottom:494.536000pt;}
.y14b{bottom:494.627733pt;}
.y11c{bottom:500.314667pt;}
.yfc{bottom:500.325333pt;}
.y38{bottom:504.037733pt;}
.yc{bottom:508.304400pt;}
.y17b{bottom:510.004533pt;}
.y14a{bottom:510.096267pt;}
.y11b{bottom:515.783200pt;}
.yfb{bottom:515.793867pt;}
.y37{bottom:520.571067pt;}
.yb{bottom:523.771067pt;}
.y17a{bottom:525.473067pt;}
.y149{bottom:525.564800pt;}
.y11a{bottom:531.251733pt;}
.yfa{bottom:531.262400pt;}
.y36{bottom:537.104400pt;}
.ya{bottom:539.237733pt;}
.y179{bottom:540.941600pt;}
.y148{bottom:541.033333pt;}
.y119{bottom:546.720267pt;}
.yf9{bottom:546.730933pt;}
.y35{bottom:553.637733pt;}
.y9{bottom:554.704400pt;}
.y178{bottom:556.410133pt;}
.y147{bottom:556.501867pt;}
.y118{bottom:562.188800pt;}
.yf8{bottom:562.199467pt;}
.y34{bottom:570.171067pt;}
.y177{bottom:571.878667pt;}
.y146{bottom:571.970400pt;}
.y117{bottom:577.657333pt;}
.yf7{bottom:577.668000pt;}
.y33{bottom:586.704400pt;}
.y176{bottom:587.347200pt;}
.y145{bottom:587.438933pt;}
.y175{bottom:602.815733pt;}
.y144{bottom:602.907467pt;}
.y32{bottom:603.237733pt;}
.yf6{bottom:608.571067pt;}
.y8{bottom:614.173600pt;}
.y174{bottom:618.284267pt;}
.y143{bottom:618.376000pt;}
.y31{bottom:619.771067pt;}
.y7{bottom:632.840267pt;}
.y173{bottom:633.752800pt;}
.y142{bottom:633.844533pt;}
.y30{bottom:636.304400pt;}
.y172{bottom:649.221333pt;}
.y141{bottom:649.313067pt;}
.y2f{bottom:652.837733pt;}
.yf5{bottom:654.967733pt;}
.y6{bottom:658.178933pt;}
.y171{bottom:664.689867pt;}
.y1a2{bottom:664.770133pt;}
.y140{bottom:664.781600pt;}
.y2e{bottom:669.371067pt;}
.yf4{bottom:670.437733pt;}
.y5{bottom:679.506933pt;}
.y170{bottom:680.158400pt;}
.y1a1{bottom:680.238667pt;}
.y13f{bottom:680.250133pt;}
.y2d{bottom:685.904400pt;}
.y16f{bottom:695.626933pt;}
.y1a0{bottom:695.707200pt;}
.y13e{bottom:695.718667pt;}
.y2c{bottom:702.437733pt;}
.y16e{bottom:711.095467pt;}
.y19f{bottom:711.175733pt;}
.y13d{bottom:711.187200pt;}
.y4{bottom:715.958400pt;}
.y2b{bottom:718.971067pt;}
.y16d{bottom:726.564000pt;}
.y19e{bottom:726.644267pt;}
.y13c{bottom:726.655733pt;}
.y2a{bottom:735.504400pt;}
.y16c{bottom:742.032533pt;}
.y19d{bottom:742.112800pt;}
.y13b{bottom:742.124267pt;}
.y3{bottom:742.625067pt;}
.y29{bottom:752.037733pt;}
.y16b{bottom:757.501067pt;}
.y19c{bottom:757.581333pt;}
.y13a{bottom:757.592800pt;}
.y24{bottom:762.125333pt;}
.y28{bottom:768.571067pt;}
.y23{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.y16a{bottom:772.969600pt;}
.y19b{bottom:773.049867pt;}
.y139{bottom:773.061333pt;}
.y27{bottom:785.104400pt;}
.y169{bottom:788.438133pt;}
.y19a{bottom:788.518400pt;}
.y138{bottom:788.529867pt;}
.y1{bottom:795.958400pt;}
.y26{bottom:801.637733pt;}
.y168{bottom:803.906667pt;}
.y199{bottom:803.986933pt;}
.y137{bottom:803.998400pt;}
.y25{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.he{height:41.096533pt;}
.h11{height:41.702400pt;}
.h6{height:43.344000pt;}
.h7{height:44.290667pt;}
.h9{height:44.441600pt;}
.hf{height:44.536533pt;}
.h10{height:44.626133pt;}
.hb{height:45.216000pt;}
.hd{height:48.161600pt;}
.h5{height:50.240000pt;}
.hc{height:50.400000pt;}
.h8{height:52.106667pt;}
.h4{height:60.288000pt;}
.h3{height:80.384000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.871200pt;}
.x7{left:25.421733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.xb{left:75.592533pt;}
.x6{left:83.148400pt;}
.x2{left:90.708667pt;}
.xc{left:314.145067pt;}
.xa{left:321.702133pt;}
.xd{left:325.485600pt;}
.x9{left:333.042667pt;}
.x4{left:578.461733pt;}
.x3{left:581.012267pt;}
}




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