
    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_decbbb39c62c498e3ae9284c.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_7aed8054752ea55d95d24735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731000;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_1de8ad7db1307b0e3320eedf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_940fad9314ea21bd810ea148.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074000;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_c7f4cd06deb7a457d4c31e76.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.190048;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_883ebf93697074c9ae066080.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166000;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_55e924f165a045cd8e1400e5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a6e2edb31357ae9140d20e11.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_667d1515a73e0e8824beb70d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a1e517a753d1542abe02ffb1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_667d1515a73e0e8824beb70d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_70e4930ef2d7947ed53903c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.181000;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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls20{letter-spacing:-5.077800px;}
.ls4f{letter-spacing:-3.834000px;}
.ls63{letter-spacing:-3.120000px;}
.ls56{letter-spacing:-2.970000px;}
.ls1b{letter-spacing:-2.940000px;}
.ls4d{letter-spacing:-1.740000px;}
.ls65{letter-spacing:-1.674000px;}
.ls2d{letter-spacing:-1.620000px;}
.ls6a{letter-spacing:-1.599600px;}
.ls50{letter-spacing:-1.200000px;}
.ls67{letter-spacing:-1.083600px;}
.ls3c{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.540000px;}
.ls69{letter-spacing:-0.516000px;}
.ls35{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls46{letter-spacing:-0.414000px;}
.ls40{letter-spacing:-0.378000px;}
.ls66{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.349800px;}
.lsf{letter-spacing:-0.300000px;}
.ls2e{letter-spacing:-0.279000px;}
.ls1c{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.223200px;}
.lsa{letter-spacing:-0.204000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.167400px;}
.lsb{letter-spacing:-0.153000px;}
.ls54{letter-spacing:-0.139920px;}
.ls1f{letter-spacing:-0.120000px;}
.ls22{letter-spacing:-0.111600px;}
.ls5a{letter-spacing:-0.104940px;}
.ls1e{letter-spacing:-0.060000px;}
.ls10{letter-spacing:-0.055800px;}
.ls5e{letter-spacing:-0.034980px;}
.ls8{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.030000px;}
.ls39{letter-spacing:0.055800px;}
.ls31{letter-spacing:0.060000px;}
.ls58{letter-spacing:0.066600px;}
.ls60{letter-spacing:0.090000px;}
.ls43{letter-spacing:0.104940px;}
.ls18{letter-spacing:0.111600px;}
.ls17{letter-spacing:0.120000px;}
.ls38{letter-spacing:0.139500px;}
.ls0{letter-spacing:0.153000px;}
.ls55{letter-spacing:0.167400px;}
.ls64{letter-spacing:0.174900px;}
.ls5{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.199680px;}
.ls15{letter-spacing:0.203400px;}
.ls3{letter-spacing:0.204000px;}
.ls3d{letter-spacing:0.209880px;}
.ls47{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.222000px;}
.ls42{letter-spacing:0.223200px;}
.ls6{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.244860px;}
.ls2{letter-spacing:0.255000px;}
.ls52{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.279000px;}
.ls41{letter-spacing:0.279840px;}
.ls1{letter-spacing:0.280500px;}
.ls16{letter-spacing:0.300000px;}
.ls4b{letter-spacing:0.314820px;}
.ls53{letter-spacing:0.324000px;}
.ls5c{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.333000px;}
.ls7{letter-spacing:0.334800px;}
.ls14{letter-spacing:0.360000px;}
.ls4e{letter-spacing:0.390000px;}
.ls45{letter-spacing:0.390600px;}
.ls29{letter-spacing:0.414000px;}
.ls4c{letter-spacing:0.419760px;}
.ls30{letter-spacing:0.420000px;}
.ls3a{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.446400px;}
.ls27{letter-spacing:0.450000px;}
.ls5d{letter-spacing:0.474300px;}
.ls13{letter-spacing:0.480000px;}
.ls37{letter-spacing:0.502200px;}
.ls26{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.558000px;}
.ls3f{letter-spacing:0.600000px;}
.ls49{letter-spacing:0.630000px;}
.ls4a{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.660000px;}
.ls48{letter-spacing:0.720000px;}
.ls57{letter-spacing:0.780000px;}
.ls1a{letter-spacing:0.810000px;}
.ls2a{letter-spacing:0.892800px;}
.ls25{letter-spacing:0.900000px;}
.ls51{letter-spacing:0.930000px;}
.ls24{letter-spacing:0.960000px;}
.ls61{letter-spacing:1.004400px;}
.ls5b{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.032000px;}
.lsd{letter-spacing:1.140000px;}
.lse{letter-spacing:1.200000px;}
.ls59{letter-spacing:1.512000px;}
.ls19{letter-spacing:1.674000px;}
.ls33{letter-spacing:1.728000px;}
.ls62{letter-spacing:1.782000px;}
.ls4{letter-spacing:1.806000px;}
.ls68{letter-spacing:1.944000px;}
.ls6c{letter-spacing:2.214000px;}
.ls9{letter-spacing:2.322000px;}
.ls2c{letter-spacing:2.538000px;}
.ls6b{letter-spacing:2.838000px;}
.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;}
}
.ws124{word-spacing:-15.012000px;}
.ws109{word-spacing:-14.580000px;}
.ws6e{word-spacing:-14.526000px;}
.ws23{word-spacing:-14.472000px;}
.ws120{word-spacing:-14.241600px;}
.ws2{word-spacing:-13.725600px;}
.ws6{word-spacing:-13.209600px;}
.wscb{word-spacing:-13.140000px;}
.ws119{word-spacing:-13.122000px;}
.wse1{word-spacing:-12.960000px;}
.ws1{word-spacing:-12.798000px;}
.ws9b{word-spacing:-12.600000px;}
.ws53{word-spacing:-12.555000px;}
.wsce{word-spacing:-12.540000px;}
.ws99{word-spacing:-12.420000px;}
.wsfb{word-spacing:-12.258000px;}
.ws4f{word-spacing:-12.180000px;}
.wsd0{word-spacing:-11.910000px;}
.wsd2{word-spacing:-11.820000px;}
.wscc{word-spacing:-11.760000px;}
.wsbd{word-spacing:-11.730000px;}
.wsda{word-spacing:-11.700000px;}
.ws51{word-spacing:-11.640000px;}
.ws50{word-spacing:-11.580000px;}
.ws24{word-spacing:-11.520000px;}
.wsf5{word-spacing:-11.460000px;}
.ws70{word-spacing:-11.400000px;}
.ws10b{word-spacing:-11.340000px;}
.ws26{word-spacing:-11.280000px;}
.ws102{word-spacing:-11.220000px;}
.wsab{word-spacing:-11.160000px;}
.ws25{word-spacing:-11.100000px;}
.ws11b{word-spacing:-11.094000px;}
.wsbc{word-spacing:-11.040000px;}
.ws6f{word-spacing:-10.980000px;}
.ws52{word-spacing:-10.936800px;}
.ws7{word-spacing:-10.710000px;}
.ws11a{word-spacing:-10.681200px;}
.wsec{word-spacing:-10.680000px;}
.ws126{word-spacing:-10.320000px;}
.ws10a{word-spacing:-10.140000px;}
.ws4{word-spacing:-9.843000px;}
.wseb{word-spacing:-9.828000px;}
.ws5{word-spacing:-9.792000px;}
.ws3{word-spacing:-9.588000px;}
.wsd1{word-spacing:-9.540000px;}
.wsd9{word-spacing:-8.964000px;}
.ws28{word-spacing:-8.901000px;}
.wsac{word-spacing:-8.487000px;}
.wscf{word-spacing:-7.765560px;}
.wscd{word-spacing:-7.660620px;}
.ws9a{word-spacing:-7.625640px;}
.ws103{word-spacing:-7.590660px;}
.ws86{word-spacing:-7.555680px;}
.ws10c{word-spacing:-7.520700px;}
.wsa9{word-spacing:-7.450740px;}
.ws27{word-spacing:-7.345800px;}
.ws101{word-spacing:-7.310820px;}
.wsf6{word-spacing:-7.240860px;}
.wse0{word-spacing:-7.205880px;}
.wsaa{word-spacing:-6.996000px;}
.ws54{word-spacing:-2.538000px;}
.ws114{word-spacing:-2.400000px;}
.ws10d{word-spacing:-2.340000px;}
.ws1d{word-spacing:-2.280000px;}
.wsdc{word-spacing:-2.160000px;}
.wsbf{word-spacing:-2.040000px;}
.wse7{word-spacing:-1.980000px;}
.ws6a{word-spacing:-1.953000px;}
.ws3c{word-spacing:-1.920000px;}
.ws33{word-spacing:-1.860000px;}
.ws1f{word-spacing:-1.841400px;}
.ws88{word-spacing:-1.800000px;}
.ws48{word-spacing:-1.785600px;}
.wsb4{word-spacing:-1.740000px;}
.wsf{word-spacing:-1.734000px;}
.ws108{word-spacing:-1.729800px;}
.ws37{word-spacing:-1.680000px;}
.wsa6{word-spacing:-1.674000px;}
.ws36{word-spacing:-1.620000px;}
.ws46{word-spacing:-1.618200px;}
.ws15{word-spacing:-1.581000px;}
.ws107{word-spacing:-1.562400px;}
.ws79{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.530000px;}
.ws4b{word-spacing:-1.506600px;}
.ws7b{word-spacing:-1.500000px;}
.wsff{word-spacing:-1.450800px;}
.ws78{word-spacing:-1.440000px;}
.wsfd{word-spacing:-1.395000px;}
.ws7f{word-spacing:-1.380000px;}
.ws40{word-spacing:-1.339200px;}
.ws49{word-spacing:-1.283400px;}
.wsf0{word-spacing:-1.260000px;}
.ws47{word-spacing:-1.227600px;}
.ws8{word-spacing:-1.200000px;}
.wsbb{word-spacing:-1.171800px;}
.ws72{word-spacing:-1.140000px;}
.wsf2{word-spacing:-1.116000px;}
.wsb3{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.032000px;}
.wse3{word-spacing:-1.020000px;}
.ws80{word-spacing:-0.960000px;}
.ws9e{word-spacing:-0.900000px;}
.wsca{word-spacing:-0.892800px;}
.ws17{word-spacing:-0.867000px;}
.ws63{word-spacing:-0.840000px;}
.ws97{word-spacing:-0.837000px;}
.ws85{word-spacing:-0.781200px;}
.ws10f{word-spacing:-0.780000px;}
.wsfe{word-spacing:-0.725400px;}
.ws11e{word-spacing:-0.722400px;}
.ws3a{word-spacing:-0.720000px;}
.ws66{word-spacing:-0.669600px;}
.ws73{word-spacing:-0.660000px;}
.wsb9{word-spacing:-0.613800px;}
.ws81{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.561000px;}
.wsfa{word-spacing:-0.558000px;}
.wsc2{word-spacing:-0.540000px;}
.ws8c{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.446400px;}
.wsa1{word-spacing:-0.420000px;}
.ws4a{word-spacing:-0.390600px;}
.ws5c{word-spacing:-0.360000px;}
.ws9{word-spacing:-0.355200px;}
.ws39{word-spacing:-0.300000px;}
.ws93{word-spacing:-0.279000px;}
.ws2f{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.223200px;}
.ws22{word-spacing:-0.222000px;}
.ws11d{word-spacing:-0.206400px;}
.wsb{word-spacing:-0.204000px;}
.ws115{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.153000px;}
.ws65{word-spacing:-0.120000px;}
.wsa5{word-spacing:-0.111600px;}
.ws0{word-spacing:-0.096000px;}
.ws8e{word-spacing:-0.060000px;}
.ws95{word-spacing:-0.055800px;}
.wsc{word-spacing:-0.051000px;}
.wsa{word-spacing:0.000000px;}
.ws6d{word-spacing:0.055800px;}
.wsb0{word-spacing:0.060000px;}
.ws13{word-spacing:0.102000px;}
.ws69{word-spacing:0.111600px;}
.ws113{word-spacing:0.120000px;}
.ws6b{word-spacing:0.167400px;}
.ws7e{word-spacing:0.180000px;}
.wsea{word-spacing:0.223200px;}
.ws64{word-spacing:0.240000px;}
.ws77{word-spacing:0.300000px;}
.wsd{word-spacing:0.306000px;}
.ws82{word-spacing:0.360000px;}
.wsdf{word-spacing:0.390600px;}
.ws89{word-spacing:0.420000px;}
.ws84{word-spacing:0.446400px;}
.wsee{word-spacing:0.480000px;}
.ws122{word-spacing:0.516000px;}
.ws1e{word-spacing:0.540000px;}
.wsf3{word-spacing:0.558000px;}
.wsc0{word-spacing:0.600000px;}
.ws94{word-spacing:0.613800px;}
.ws62{word-spacing:0.660000px;}
.ws8d{word-spacing:0.720000px;}
.wsf4{word-spacing:0.725400px;}
.wsc7{word-spacing:0.780000px;}
.ws43{word-spacing:0.781200px;}
.ws44{word-spacing:0.837000px;}
.ws110{word-spacing:0.840000px;}
.wse{word-spacing:0.867000px;}
.ws11f{word-spacing:0.877200px;}
.wsa7{word-spacing:0.948600px;}
.ws59{word-spacing:0.960000px;}
.wse8{word-spacing:1.004400px;}
.ws7c{word-spacing:1.020000px;}
.wsaf{word-spacing:1.080000px;}
.ws68{word-spacing:1.116000px;}
.ws5b{word-spacing:1.140000px;}
.ws105{word-spacing:1.171800px;}
.wsc4{word-spacing:1.200000px;}
.ws42{word-spacing:1.227600px;}
.ws83{word-spacing:1.260000px;}
.wsc3{word-spacing:1.320000px;}
.ws4c{word-spacing:1.339200px;}
.ws14{word-spacing:1.377000px;}
.ws2c{word-spacing:1.380000px;}
.wsd8{word-spacing:1.395000px;}
.wsb7{word-spacing:1.440000px;}
.wsc9{word-spacing:1.450800px;}
.ws2b{word-spacing:1.500000px;}
.ws58{word-spacing:1.560000px;}
.ws41{word-spacing:1.562400px;}
.ws12{word-spacing:1.581000px;}
.ws123{word-spacing:1.599600px;}
.wsa4{word-spacing:1.618200px;}
.wsbe{word-spacing:1.620000px;}
.ws1a{word-spacing:1.632000px;}
.ws3e{word-spacing:1.674000px;}
.ws1b{word-spacing:1.680000px;}
.wse9{word-spacing:1.729800px;}
.wsc6{word-spacing:1.740000px;}
.ws3f{word-spacing:1.785600px;}
.wsef{word-spacing:1.800000px;}
.wsba{word-spacing:1.841400px;}
.ws1c{word-spacing:1.860000px;}
.ws3b{word-spacing:1.920000px;}
.ws2a{word-spacing:1.980000px;}
.ws98{word-spacing:2.008800px;}
.ws30{word-spacing:2.040000px;}
.ws35{word-spacing:2.100000px;}
.ws19{word-spacing:2.142000px;}
.wse5{word-spacing:2.160000px;}
.wsa8{word-spacing:2.176200px;}
.ws38{word-spacing:2.220000px;}
.ws8f{word-spacing:2.280000px;}
.wsae{word-spacing:2.340000px;}
.ws4e{word-spacing:2.343600px;}
.ws6c{word-spacing:2.399400px;}
.wsf9{word-spacing:2.400000px;}
.ws20{word-spacing:2.455200px;}
.ws56{word-spacing:2.460000px;}
.ws4d{word-spacing:2.511000px;}
.ws60{word-spacing:2.520000px;}
.ws2e{word-spacing:2.580000px;}
.ws76{word-spacing:2.640000px;}
.ws31{word-spacing:2.700000px;}
.wsc8{word-spacing:2.760000px;}
.wsb1{word-spacing:2.820000px;}
.ws5d{word-spacing:2.880000px;}
.ws100{word-spacing:2.901600px;}
.wsb2{word-spacing:2.940000px;}
.ws75{word-spacing:3.000000px;}
.ws7a{word-spacing:3.060000px;}
.wsa2{word-spacing:3.120000px;}
.wsc5{word-spacing:3.180000px;}
.ws118{word-spacing:3.180600px;}
.wsb5{word-spacing:3.240000px;}
.wsf1{word-spacing:3.300000px;}
.ws8b{word-spacing:3.360000px;}
.wsb8{word-spacing:3.403800px;}
.ws90{word-spacing:3.420000px;}
.ws91{word-spacing:3.459600px;}
.wsdd{word-spacing:3.480000px;}
.wsa0{word-spacing:3.540000px;}
.ws5e{word-spacing:3.660000px;}
.ws2d{word-spacing:3.720000px;}
.ws92{word-spacing:3.738600px;}
.ws106{word-spacing:3.794400px;}
.ws34{word-spacing:3.840000px;}
.ws5f{word-spacing:3.900000px;}
.wsd4{word-spacing:3.960000px;}
.ws61{word-spacing:4.020000px;}
.ws5a{word-spacing:4.080000px;}
.ws7d{word-spacing:4.200000px;}
.ws96{word-spacing:4.240800px;}
.wse4{word-spacing:4.260000px;}
.wsd5{word-spacing:4.320000px;}
.wsd6{word-spacing:4.560000px;}
.wsb6{word-spacing:4.620000px;}
.ws116{word-spacing:4.680000px;}
.wsde{word-spacing:4.740000px;}
.ws9f{word-spacing:4.920000px;}
.ws8a{word-spacing:5.040000px;}
.wsa3{word-spacing:5.220000px;}
.ws9d{word-spacing:5.280000px;}
.ws10e{word-spacing:5.340000px;}
.ws32{word-spacing:5.400000px;}
.ws57{word-spacing:5.580000px;}
.wsd7{word-spacing:5.700000px;}
.ws74{word-spacing:5.760000px;}
.ws45{word-spacing:5.914800px;}
.ws117{word-spacing:6.000000px;}
.wsc1{word-spacing:6.120000px;}
.wsf8{word-spacing:6.660000px;}
.wse6{word-spacing:7.620000px;}
.ws111{word-spacing:8.202600px;}
.ws67{word-spacing:52.005600px;}
.ws121{word-spacing:1596.834000px;}
.ws127{word-spacing:1597.158000px;}
.wsf7{word-spacing:1597.698000px;}
.wsd3{word-spacing:1599.372000px;}
.ws87{word-spacing:1599.858000px;}
.wse2{word-spacing:1600.074000px;}
.ws104{word-spacing:1600.668000px;}
.wsad{word-spacing:1600.722000px;}
.ws55{word-spacing:1603.962000px;}
.ws112{word-spacing:1604.070000px;}
.ws125{word-spacing:1610.496000px;}
.ws71{word-spacing:1610.982000px;}
.ws29{word-spacing:1611.090000px;}
.ws11c{word-spacing:1612.386000px;}
.ws9c{word-spacing:1613.088000px;}
.wsfc{word-spacing:1613.304000px;}
.wsed{word-spacing:1615.680000px;}
.wsdb{word-spacing:1616.598000px;}
._1e{margin-left:-1616.567820px;}
._21{margin-left:-1615.282200px;}
._13{margin-left:-1613.780700px;}
._14{margin-left:-1612.571700px;}
._7{margin-left:-1610.565600px;}
._c{margin-left:-53.806200px;}
._e{margin-left:-15.240000px;}
._5{margin-left:-13.103700px;}
._15{margin-left:-10.680000px;}
._1d{margin-left:-7.844520px;}
._8{margin-left:-6.018900px;}
._1{margin-left:-4.265400px;}
._4{margin-left:-3.197400px;}
._0{margin-left:-1.920000px;}
._3{width:1.343700px;}
._10{width:2.417640px;}
._2{width:3.426900px;}
._a{width:4.658520px;}
._b{width:6.420000px;}
._24{width:7.738860px;}
._25{width:8.794620px;}
._22{width:24.272400px;}
._1c{width:26.950200px;}
._23{width:28.457400px;}
._20{width:29.573400px;}
._1f{width:31.582200px;}
._12{width:33.144000px;}
._19{width:34.204800px;}
._17{width:35.208600px;}
._18{width:36.604200px;}
._1b{width:37.966800px;}
._16{width:43.746000px;}
._d{width:47.485800px;}
._f{width:50.945400px;}
._6{width:54.349200px;}
._11{width:56.692200px;}
._9{width:57.864000px;}
._1a{width:69.192000px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:22.200000px;}
.fs8{font-size:34.980000px;}
.fs9{font-size:41.400000px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:51.600000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:63.779550px;}
.y85{bottom:63.779700px;}
.y70{bottom:63.783900px;}
.y52{bottom:63.784050px;}
.y99{bottom:63.788250px;}
.ya1{bottom:63.788400px;}
.y8a{bottom:63.801450px;}
.y21{bottom:63.806850px;}
.yee{bottom:64.221450px;}
.yd2{bottom:64.242450px;}
.y1a9{bottom:69.094200px;}
.y178{bottom:69.197400px;}
.y148{bottom:69.254100px;}
.y141{bottom:69.267000px;}
.y6f{bottom:81.179550px;}
.y51{bottom:81.179700px;}
.y66{bottom:81.183900px;}
.y95{bottom:81.184050px;}
.y76{bottom:81.188250px;}
.y89{bottom:81.197100px;}
.y20{bottom:81.202500px;}
.yed{bottom:81.623550px;}
.yd1{bottom:81.642450px;}
.y1a8{bottom:86.496300px;}
.y177{bottom:86.599500px;}
.y147{bottom:86.656200px;}
.y140{bottom:86.669100px;}
.y65{bottom:98.579550px;}
.y8d{bottom:98.579700px;}
.y8f{bottom:98.579850px;}
.y6e{bottom:98.583900px;}
.ya7{bottom:98.584050px;}
.y50{bottom:98.592750px;}
.y84{bottom:98.597250px;}
.y1f{bottom:98.598150px;}
.yd0{bottom:98.989950px;}
.yec{bottom:99.025650px;}
.y1a7{bottom:103.898400px;}
.y176{bottom:104.001600px;}
.y146{bottom:104.058300px;}
.y13f{bottom:104.071200px;}
.y6d{bottom:115.979550px;}
.y8c{bottom:115.979700px;}
.y8e{bottom:115.979850px;}
.y64{bottom:115.984050px;}
.y9e{bottom:115.984200px;}
.y4f{bottom:115.988400px;}
.y94{bottom:115.988550px;}
.y83{bottom:115.992900px;}
.y1e{bottom:115.998150px;}
.ycf{bottom:116.392050px;}
.yeb{bottom:116.427750px;}
.y1a6{bottom:121.300500px;}
.y175{bottom:121.403700px;}
.y145{bottom:121.460400px;}
.y13e{bottom:121.473300px;}
.y98{bottom:133.379550px;}
.y63{bottom:133.379700px;}
.y9d{bottom:133.379850px;}
.y4e{bottom:133.384050px;}
.y93{bottom:133.384200px;}
.y82{bottom:133.388550px;}
.yce{bottom:133.794150px;}
.yea{bottom:133.829850px;}
.y1a5{bottom:138.702600px;}
.y174{bottom:138.805800px;}
.y144{bottom:138.862500px;}
.y13d{bottom:138.875400px;}
.ya6{bottom:139.242450px;}
.y4d{bottom:150.779700px;}
.y8b{bottom:150.779850px;}
.y97{bottom:150.784050px;}
.y81{bottom:150.784200px;}
.y62{bottom:150.788550px;}
.ycd{bottom:151.196250px;}
.ye9{bottom:151.231950px;}
.y1a4{bottom:156.104700px;}
.y173{bottom:156.207900px;}
.y143{bottom:156.264600px;}
.y13c{bottom:156.277500px;}
.y1d{bottom:157.842450px;}
.y4c{bottom:168.179700px;}
.y80{bottom:168.179850px;}
.y61{bottom:168.184200px;}
.ycc{bottom:168.598350px;}
.ye8{bottom:168.634050px;}
.y1a3{bottom:173.506800px;}
.y172{bottom:173.610000px;}
.y142{bottom:173.666700px;}
.y13b{bottom:173.679600px;}
.y1c{bottom:176.442450px;}
.y4b{bottom:185.579700px;}
.y60{bottom:185.579850px;}
.y92{bottom:185.580000px;}
.ya0{bottom:185.583900px;}
.ya5{bottom:185.597250px;}
.ycb{bottom:186.000450px;}
.ye7{bottom:186.036150px;}
.y1a2{bottom:190.908900px;}
.y171{bottom:191.012100px;}
.y1b{bottom:195.042450px;}
.y9f{bottom:202.979550px;}
.y5f{bottom:202.979850px;}
.y7f{bottom:202.980000px;}
.y4a{bottom:202.984050px;}
.y87{bottom:202.984200px;}
.y91{bottom:202.984500px;}
.y75{bottom:202.992900px;}
.yca{bottom:203.402550px;}
.ye6{bottom:203.438250px;}
.y1a1{bottom:208.311000px;}
.y170{bottom:208.414200px;}
.y13a{bottom:208.483800px;}
.y6c{bottom:213.642450px;}
.y49{bottom:220.379700px;}
.y86{bottom:220.379850px;}
.y5e{bottom:220.380000px;}
.y90{bottom:220.380150px;}
.y74{bottom:220.388550px;}
.y9c{bottom:220.397550px;}
.yc9{bottom:220.804650px;}
.ye5{bottom:220.840350px;}
.y1a0{bottom:225.713100px;}
.y16f{bottom:225.816300px;}
.y1a{bottom:232.242450px;}
.y48{bottom:237.779700px;}
.y96{bottom:237.779850px;}
.y73{bottom:237.784200px;}
.y5d{bottom:237.784350px;}
.y9b{bottom:237.793200px;}
.yc8{bottom:238.206750px;}
.ye4{bottom:238.242450px;}
.y19f{bottom:243.115200px;}
.y16e{bottom:243.218400px;}
.y6b{bottom:250.842450px;}
.y47{bottom:255.179700px;}
.y72{bottom:255.179850px;}
.y5c{bottom:255.180000px;}
.y9a{bottom:255.188850px;}
.yc7{bottom:255.608850px;}
.ye3{bottom:255.642450px;}
.y19e{bottom:260.517300px;}
.y16d{bottom:260.620500px;}
.y114{bottom:260.658300px;}
.y6a{bottom:269.442450px;}
.y46{bottom:272.579700px;}
.y5b{bottom:272.580000px;}
.ya4{bottom:272.580150px;}
.y71{bottom:272.584500px;}
.yc6{bottom:273.010950px;}
.ye2{bottom:273.042450px;}
.y19d{bottom:277.919400px;}
.y16c{bottom:278.022600px;}
.y113{bottom:278.060400px;}
.y139{bottom:278.079300px;}
.y19{bottom:281.142450px;}
.y88{bottom:288.042450px;}
.y45{bottom:289.979700px;}
.y5a{bottom:289.980150px;}
.y7e{bottom:289.984350px;}
.ya3{bottom:289.988850px;}
.yc5{bottom:290.413050px;}
.ye1{bottom:290.442450px;}
.y19c{bottom:295.321500px;}
.y16b{bottom:295.424700px;}
.y112{bottom:295.462500px;}
.y138{bottom:295.481400px;}
.y18{bottom:298.392450px;}
.y69{bottom:306.642450px;}
.y7d{bottom:307.380000px;}
.y59{bottom:307.380150px;}
.y44{bottom:307.384050px;}
.ya2{bottom:307.384500px;}
.ye0{bottom:307.781550px;}
.yc4{bottom:307.815150px;}
.y19b{bottom:312.723600px;}
.y16a{bottom:312.826800px;}
.y111{bottom:312.864600px;}
.y137{bottom:312.883500px;}
.y43{bottom:324.779700px;}
.y7c{bottom:324.780150px;}
.ydf{bottom:325.183650px;}
.yc3{bottom:325.217250px;}
.y68{bottom:325.242450px;}
.y19a{bottom:330.125700px;}
.y169{bottom:330.228900px;}
.y110{bottom:330.266700px;}
.y136{bottom:330.285600px;}
.y17{bottom:333.190950px;}
.y7b{bottom:342.180150px;}
.y42{bottom:342.188400px;}
.yde{bottom:342.585750px;}
.yc2{bottom:342.619350px;}
.y58{bottom:343.842450px;}
.y199{bottom:347.527800px;}
.y168{bottom:347.631000px;}
.y10f{bottom:347.668800px;}
.y135{bottom:347.687700px;}
.y16{bottom:350.441700px;}
.y7a{bottom:359.580000px;}
.y41{bottom:359.584050px;}
.ydd{bottom:359.987850px;}
.yc1{bottom:360.021450px;}
.y57{bottom:362.442450px;}
.y198{bottom:364.929900px;}
.y167{bottom:365.033100px;}
.y10e{bottom:365.070900px;}
.y134{bottom:365.089800px;}
.y15{bottom:367.692450px;}
.y40{bottom:376.979700px;}
.y79{bottom:376.980150px;}
.ydc{bottom:377.389950px;}
.yc0{bottom:377.423550px;}
.y56{bottom:381.042450px;}
.y197{bottom:382.332000px;}
.y166{bottom:382.435200px;}
.y10d{bottom:382.473000px;}
.y133{bottom:382.491900px;}
.y14{bottom:384.942450px;}
.y3f{bottom:394.379700px;}
.y78{bottom:394.384500px;}
.ydb{bottom:394.792050px;}
.ybf{bottom:394.825650px;}
.y55{bottom:399.642450px;}
.y196{bottom:399.734100px;}
.y165{bottom:399.837300px;}
.y10c{bottom:399.875100px;}
.y132{bottom:399.894000px;}
.y3e{bottom:411.779700px;}
.y77{bottom:411.780150px;}
.yda{bottom:412.194150px;}
.ybe{bottom:412.227750px;}
.y195{bottom:417.136200px;}
.y164{bottom:417.239400px;}
.y10b{bottom:417.277200px;}
.y131{bottom:417.296100px;}
.y54{bottom:418.242450px;}
.y13{bottom:419.732700px;}
.yd9{bottom:429.596250px;}
.ybd{bottom:429.629850px;}
.y194{bottom:434.538300px;}
.y163{bottom:434.641500px;}
.y10a{bottom:434.679300px;}
.y130{bottom:434.698200px;}
.y53{bottom:436.842450px;}
.y12{bottom:436.983450px;}
.yd8{bottom:446.998350px;}
.ybc{bottom:447.031950px;}
.y193{bottom:451.940400px;}
.y1d3{bottom:452.017200px;}
.y162{bottom:452.043600px;}
.y1b8{bottom:452.068800px;}
.y109{bottom:452.081400px;}
.y12f{bottom:452.096100px;}
.y11{bottom:454.234200px;}
.y3d{bottom:455.442450px;}
.yd7{bottom:464.400450px;}
.ybb{bottom:464.434050px;}
.y192{bottom:469.342500px;}
.y1d2{bottom:469.419300px;}
.y161{bottom:469.445700px;}
.y1b7{bottom:469.470900px;}
.y108{bottom:469.483500px;}
.y12e{bottom:469.498200px;}
.y10{bottom:471.484950px;}
.y3c{bottom:474.042450px;}
.yd6{bottom:481.802550px;}
.yba{bottom:481.836150px;}
.y191{bottom:486.744600px;}
.y1d1{bottom:486.821400px;}
.y160{bottom:486.847800px;}
.y1b6{bottom:486.873000px;}
.y107{bottom:486.885600px;}
.y12d{bottom:486.896100px;}
.yf{bottom:488.735700px;}
.y3b{bottom:492.642450px;}
.yd5{bottom:499.204650px;}
.yb9{bottom:499.238250px;}
.y190{bottom:504.146700px;}
.y1d0{bottom:504.223500px;}
.y15f{bottom:504.249900px;}
.y1b5{bottom:504.275100px;}
.y106{bottom:504.287700px;}
.y12c{bottom:504.298200px;}
.ye{bottom:505.986450px;}
.y3a{bottom:511.242450px;}
.yd4{bottom:516.606750px;}
.yb8{bottom:516.640350px;}
.y18f{bottom:521.548800px;}
.y1cf{bottom:521.625600px;}
.y15e{bottom:521.652000px;}
.y1b4{bottom:521.677200px;}
.y105{bottom:521.689800px;}
.y12b{bottom:521.696100px;}
.yd{bottom:523.237200px;}
.y39{bottom:529.842450px;}
.yd3{bottom:534.008850px;}
.yb7{bottom:534.042450px;}
.y18e{bottom:538.950900px;}
.y1ce{bottom:539.027700px;}
.y15d{bottom:539.054100px;}
.y1b3{bottom:539.079300px;}
.y104{bottom:539.091900px;}
.y12a{bottom:539.098200px;}
.yc{bottom:540.487950px;}
.y38{bottom:548.442450px;}
.yb6{bottom:551.410950px;}
.y18d{bottom:556.353000px;}
.y1cd{bottom:556.429800px;}
.y15c{bottom:556.456200px;}
.y1b2{bottom:556.481400px;}
.y103{bottom:556.494000px;}
.y129{bottom:556.498200px;}
.yb{bottom:557.738700px;}
.y37{bottom:567.042450px;}
.yb5{bottom:568.813050px;}
.y18c{bottom:573.755100px;}
.y128{bottom:573.818700px;}
.y1cc{bottom:573.831900px;}
.y15b{bottom:573.858300px;}
.y1b1{bottom:573.883500px;}
.y102{bottom:573.896100px;}
.ya{bottom:574.989450px;}
.y36{bottom:585.642450px;}
.yb4{bottom:586.215150px;}
.y18b{bottom:591.157200px;}
.y127{bottom:591.220800px;}
.y1cb{bottom:591.234000px;}
.y15a{bottom:591.260400px;}
.y1b0{bottom:591.285600px;}
.y101{bottom:591.298200px;}
.y9{bottom:592.240200px;}
.yb3{bottom:603.617250px;}
.y35{bottom:604.242450px;}
.y18a{bottom:608.559300px;}
.y126{bottom:608.622900px;}
.y1ca{bottom:608.636100px;}
.y159{bottom:608.662500px;}
.y100{bottom:608.664600px;}
.y1af{bottom:608.687700px;}
.y8{bottom:609.490950px;}
.yb2{bottom:621.019350px;}
.y34{bottom:622.842450px;}
.y189{bottom:625.961400px;}
.y125{bottom:626.025000px;}
.y1c9{bottom:626.038200px;}
.y158{bottom:626.064600px;}
.yff{bottom:626.066700px;}
.y1ae{bottom:626.089800px;}
.y7{bottom:626.741700px;}
.yb1{bottom:638.421450px;}
.y33{bottom:641.442450px;}
.y188{bottom:643.363500px;}
.y124{bottom:643.427100px;}
.y1c8{bottom:643.440300px;}
.y157{bottom:643.466700px;}
.yfe{bottom:643.468800px;}
.y1ad{bottom:643.491900px;}
.y6{bottom:643.992450px;}
.yb0{bottom:655.823550px;}
.y32{bottom:660.042450px;}
.y187{bottom:660.765600px;}
.y123{bottom:660.829200px;}
.y1c7{bottom:660.842400px;}
.y156{bottom:660.868800px;}
.yfd{bottom:660.870900px;}
.y1ac{bottom:660.894000px;}
.y5{bottom:661.242450px;}
.yaf{bottom:673.225650px;}
.y186{bottom:678.167700px;}
.y122{bottom:678.231300px;}
.y1c6{bottom:678.244500px;}
.y155{bottom:678.270900px;}
.yfc{bottom:678.273000px;}
.y1ab{bottom:678.296100px;}
.y31{bottom:678.642450px;}
.yae{bottom:690.627750px;}
.y185{bottom:695.569800px;}
.y121{bottom:695.633400px;}
.y1c5{bottom:695.646600px;}
.y154{bottom:695.673000px;}
.yfb{bottom:695.675100px;}
.y1aa{bottom:695.698200px;}
.y30{bottom:697.242450px;}
.yad{bottom:708.029850px;}
.y184{bottom:712.971900px;}
.y120{bottom:713.035500px;}
.y1c4{bottom:713.048700px;}
.y153{bottom:713.075100px;}
.yfa{bottom:713.077200px;}
.y2f{bottom:715.842450px;}
.yac{bottom:725.431950px;}
.y183{bottom:730.374000px;}
.y11f{bottom:730.437600px;}
.y1c3{bottom:730.450800px;}
.y152{bottom:730.477200px;}
.yf9{bottom:730.479300px;}
.y2e{bottom:734.442450px;}
.yab{bottom:742.834050px;}
.y182{bottom:747.776100px;}
.y11e{bottom:747.839700px;}
.y1c2{bottom:747.852900px;}
.y151{bottom:747.879300px;}
.yf8{bottom:747.881400px;}
.y2d{bottom:753.042450px;}
.yaa{bottom:760.236150px;}
.y181{bottom:765.178200px;}
.y11d{bottom:765.241800px;}
.y1c1{bottom:765.255000px;}
.y150{bottom:765.281400px;}
.yf7{bottom:765.283500px;}
.y2c{bottom:771.642450px;}
.ya9{bottom:777.638250px;}
.y180{bottom:782.580300px;}
.y11c{bottom:782.643900px;}
.y1c0{bottom:782.657100px;}
.y14f{bottom:782.683500px;}
.yf6{bottom:782.685600px;}
.y2b{bottom:790.242450px;}
.y4{bottom:794.449800px;}
.y17f{bottom:799.982400px;}
.y11b{bottom:800.046000px;}
.y1bf{bottom:800.059200px;}
.y14e{bottom:800.085600px;}
.yf5{bottom:800.087700px;}
.y2a{bottom:808.842450px;}
.ya8{bottom:812.442450px;}
.y3{bottom:812.445300px;}
.y17e{bottom:817.384500px;}
.y11a{bottom:817.448100px;}
.y1be{bottom:817.461300px;}
.y14d{bottom:817.487700px;}
.yf4{bottom:817.489800px;}
.y29{bottom:827.442450px;}
.y17d{bottom:834.786600px;}
.y119{bottom:834.850200px;}
.y1bd{bottom:834.863400px;}
.y14c{bottom:834.889800px;}
.yf3{bottom:834.891900px;}
.y28{bottom:846.042450px;}
.y2{bottom:848.445300px;}
.y17c{bottom:852.188700px;}
.y118{bottom:852.252300px;}
.y1bc{bottom:852.265500px;}
.y14b{bottom:852.291900px;}
.yf2{bottom:852.294000px;}
.y23{bottom:857.391000px;}
.y27{bottom:864.642450px;}
.y22{bottom:864.889050px;}
.y17b{bottom:869.590800px;}
.y117{bottom:869.654400px;}
.y1bb{bottom:869.667600px;}
.y14a{bottom:869.694000px;}
.yf1{bottom:869.696100px;}
.y26{bottom:883.242450px;}
.y17a{bottom:886.992900px;}
.y116{bottom:887.056500px;}
.y1ba{bottom:887.069700px;}
.y149{bottom:887.096100px;}
.yf0{bottom:887.098200px;}
.y1{bottom:895.453200px;}
.y25{bottom:901.842450px;}
.y179{bottom:904.395000px;}
.y115{bottom:904.458600px;}
.y1b9{bottom:904.471800px;}
.yef{bottom:904.498200px;}
.y24{bottom:955.942350px;}
.hb{height:20.823600px;}
.h7{height:45.900000px;}
.h10{height:46.078800px;}
.he{height:46.233600px;}
.h11{height:46.242000px;}
.h12{height:46.326000px;}
.hf{height:46.359600px;}
.h6{height:46.869000px;}
.hd{height:47.110800px;}
.h5{height:48.762000px;}
.ha{height:49.996800px;}
.h4{height:50.868000px;}
.hc{height:53.880000px;}
.h9{height:54.000000px;}
.h8{height:56.700000px;}
.h3{height:67.824000px;}
.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.966350px;}
.x7{left:28.835700px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x9{left:85.041600px;}
.x6{left:93.538500px;}
.x2{left:102.047250px;}
.xa{left:353.410950px;}
.xd{left:361.889100px;}
.xb{left:366.169050px;}
.xc{left:374.647200px;}
.x4{left:651.643500px;}
.x3{left:654.512850px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls20{letter-spacing:-4.513600pt;}
.ls4f{letter-spacing:-3.408000pt;}
.ls63{letter-spacing:-2.773333pt;}
.ls56{letter-spacing:-2.640000pt;}
.ls1b{letter-spacing:-2.613333pt;}
.ls4d{letter-spacing:-1.546667pt;}
.ls65{letter-spacing:-1.488000pt;}
.ls2d{letter-spacing:-1.440000pt;}
.ls6a{letter-spacing:-1.421867pt;}
.ls50{letter-spacing:-1.066667pt;}
.ls67{letter-spacing:-0.963200pt;}
.ls3c{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls69{letter-spacing:-0.458667pt;}
.ls35{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls46{letter-spacing:-0.368000pt;}
.ls40{letter-spacing:-0.336000pt;}
.ls66{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.310933pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls2e{letter-spacing:-0.248000pt;}
.ls1c{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.198400pt;}
.lsa{letter-spacing:-0.181333pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.148800pt;}
.lsb{letter-spacing:-0.136000pt;}
.ls54{letter-spacing:-0.124373pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls22{letter-spacing:-0.099200pt;}
.ls5a{letter-spacing:-0.093280pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:-0.049600pt;}
.ls5e{letter-spacing:-0.031093pt;}
.ls8{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.026667pt;}
.ls39{letter-spacing:0.049600pt;}
.ls31{letter-spacing:0.053333pt;}
.ls58{letter-spacing:0.059200pt;}
.ls60{letter-spacing:0.080000pt;}
.ls43{letter-spacing:0.093280pt;}
.ls18{letter-spacing:0.099200pt;}
.ls17{letter-spacing:0.106667pt;}
.ls38{letter-spacing:0.124000pt;}
.ls0{letter-spacing:0.136000pt;}
.ls55{letter-spacing:0.148800pt;}
.ls64{letter-spacing:0.155467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.177493pt;}
.ls15{letter-spacing:0.180800pt;}
.ls3{letter-spacing:0.181333pt;}
.ls3d{letter-spacing:0.186560pt;}
.ls47{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.197333pt;}
.ls42{letter-spacing:0.198400pt;}
.ls6{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.217653pt;}
.ls2{letter-spacing:0.226667pt;}
.ls52{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.248000pt;}
.ls41{letter-spacing:0.248747pt;}
.ls1{letter-spacing:0.249333pt;}
.ls16{letter-spacing:0.266667pt;}
.ls4b{letter-spacing:0.279840pt;}
.ls53{letter-spacing:0.288000pt;}
.ls5c{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.296000pt;}
.ls7{letter-spacing:0.297600pt;}
.ls14{letter-spacing:0.320000pt;}
.ls4e{letter-spacing:0.346667pt;}
.ls45{letter-spacing:0.347200pt;}
.ls29{letter-spacing:0.368000pt;}
.ls4c{letter-spacing:0.373120pt;}
.ls30{letter-spacing:0.373333pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.396800pt;}
.ls27{letter-spacing:0.400000pt;}
.ls5d{letter-spacing:0.421600pt;}
.ls13{letter-spacing:0.426667pt;}
.ls37{letter-spacing:0.446400pt;}
.ls26{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.496000pt;}
.ls3f{letter-spacing:0.533333pt;}
.ls49{letter-spacing:0.560000pt;}
.ls4a{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls48{letter-spacing:0.640000pt;}
.ls57{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls2a{letter-spacing:0.793600pt;}
.ls25{letter-spacing:0.800000pt;}
.ls51{letter-spacing:0.826667pt;}
.ls24{letter-spacing:0.853333pt;}
.ls61{letter-spacing:0.892800pt;}
.ls5b{letter-spacing:0.906667pt;}
.lsc{letter-spacing:0.917333pt;}
.lsd{letter-spacing:1.013333pt;}
.lse{letter-spacing:1.066667pt;}
.ls59{letter-spacing:1.344000pt;}
.ls19{letter-spacing:1.488000pt;}
.ls33{letter-spacing:1.536000pt;}
.ls62{letter-spacing:1.584000pt;}
.ls4{letter-spacing:1.605333pt;}
.ls68{letter-spacing:1.728000pt;}
.ls6c{letter-spacing:1.968000pt;}
.ls9{letter-spacing:2.064000pt;}
.ls2c{letter-spacing:2.256000pt;}
.ls6b{letter-spacing:2.522667pt;}
.ws124{word-spacing:-13.344000pt;}
.ws109{word-spacing:-12.960000pt;}
.ws6e{word-spacing:-12.912000pt;}
.ws23{word-spacing:-12.864000pt;}
.ws120{word-spacing:-12.659200pt;}
.ws2{word-spacing:-12.200533pt;}
.ws6{word-spacing:-11.741867pt;}
.wscb{word-spacing:-11.680000pt;}
.ws119{word-spacing:-11.664000pt;}
.wse1{word-spacing:-11.520000pt;}
.ws1{word-spacing:-11.376000pt;}
.ws9b{word-spacing:-11.200000pt;}
.ws53{word-spacing:-11.160000pt;}
.wsce{word-spacing:-11.146667pt;}
.ws99{word-spacing:-11.040000pt;}
.wsfb{word-spacing:-10.896000pt;}
.ws4f{word-spacing:-10.826667pt;}
.wsd0{word-spacing:-10.586667pt;}
.wsd2{word-spacing:-10.506667pt;}
.wscc{word-spacing:-10.453333pt;}
.wsbd{word-spacing:-10.426667pt;}
.wsda{word-spacing:-10.400000pt;}
.ws51{word-spacing:-10.346667pt;}
.ws50{word-spacing:-10.293333pt;}
.ws24{word-spacing:-10.240000pt;}
.wsf5{word-spacing:-10.186667pt;}
.ws70{word-spacing:-10.133333pt;}
.ws10b{word-spacing:-10.080000pt;}
.ws26{word-spacing:-10.026667pt;}
.ws102{word-spacing:-9.973333pt;}
.wsab{word-spacing:-9.920000pt;}
.ws25{word-spacing:-9.866667pt;}
.ws11b{word-spacing:-9.861333pt;}
.wsbc{word-spacing:-9.813333pt;}
.ws6f{word-spacing:-9.760000pt;}
.ws52{word-spacing:-9.721600pt;}
.ws7{word-spacing:-9.520000pt;}
.ws11a{word-spacing:-9.494400pt;}
.wsec{word-spacing:-9.493333pt;}
.ws126{word-spacing:-9.173333pt;}
.ws10a{word-spacing:-9.013333pt;}
.ws4{word-spacing:-8.749333pt;}
.wseb{word-spacing:-8.736000pt;}
.ws5{word-spacing:-8.704000pt;}
.ws3{word-spacing:-8.522667pt;}
.wsd1{word-spacing:-8.480000pt;}
.wsd9{word-spacing:-7.968000pt;}
.ws28{word-spacing:-7.912000pt;}
.wsac{word-spacing:-7.544000pt;}
.wscf{word-spacing:-6.902720pt;}
.wscd{word-spacing:-6.809440pt;}
.ws9a{word-spacing:-6.778347pt;}
.ws103{word-spacing:-6.747253pt;}
.ws86{word-spacing:-6.716160pt;}
.ws10c{word-spacing:-6.685067pt;}
.wsa9{word-spacing:-6.622880pt;}
.ws27{word-spacing:-6.529600pt;}
.ws101{word-spacing:-6.498507pt;}
.wsf6{word-spacing:-6.436320pt;}
.wse0{word-spacing:-6.405227pt;}
.wsaa{word-spacing:-6.218667pt;}
.ws54{word-spacing:-2.256000pt;}
.ws114{word-spacing:-2.133333pt;}
.ws10d{word-spacing:-2.080000pt;}
.ws1d{word-spacing:-2.026667pt;}
.wsdc{word-spacing:-1.920000pt;}
.wsbf{word-spacing:-1.813333pt;}
.wse7{word-spacing:-1.760000pt;}
.ws6a{word-spacing:-1.736000pt;}
.ws3c{word-spacing:-1.706667pt;}
.ws33{word-spacing:-1.653333pt;}
.ws1f{word-spacing:-1.636800pt;}
.ws88{word-spacing:-1.600000pt;}
.ws48{word-spacing:-1.587200pt;}
.wsb4{word-spacing:-1.546667pt;}
.wsf{word-spacing:-1.541333pt;}
.ws108{word-spacing:-1.537600pt;}
.ws37{word-spacing:-1.493333pt;}
.wsa6{word-spacing:-1.488000pt;}
.ws36{word-spacing:-1.440000pt;}
.ws46{word-spacing:-1.438400pt;}
.ws15{word-spacing:-1.405333pt;}
.ws107{word-spacing:-1.388800pt;}
.ws79{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.360000pt;}
.ws4b{word-spacing:-1.339200pt;}
.ws7b{word-spacing:-1.333333pt;}
.wsff{word-spacing:-1.289600pt;}
.ws78{word-spacing:-1.280000pt;}
.wsfd{word-spacing:-1.240000pt;}
.ws7f{word-spacing:-1.226667pt;}
.ws40{word-spacing:-1.190400pt;}
.ws49{word-spacing:-1.140800pt;}
.wsf0{word-spacing:-1.120000pt;}
.ws47{word-spacing:-1.091200pt;}
.ws8{word-spacing:-1.066667pt;}
.wsbb{word-spacing:-1.041600pt;}
.ws72{word-spacing:-1.013333pt;}
.wsf2{word-spacing:-0.992000pt;}
.wsb3{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.917333pt;}
.wse3{word-spacing:-0.906667pt;}
.ws80{word-spacing:-0.853333pt;}
.ws9e{word-spacing:-0.800000pt;}
.wsca{word-spacing:-0.793600pt;}
.ws17{word-spacing:-0.770667pt;}
.ws63{word-spacing:-0.746667pt;}
.ws97{word-spacing:-0.744000pt;}
.ws85{word-spacing:-0.694400pt;}
.ws10f{word-spacing:-0.693333pt;}
.wsfe{word-spacing:-0.644800pt;}
.ws11e{word-spacing:-0.642133pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws66{word-spacing:-0.595200pt;}
.ws73{word-spacing:-0.586667pt;}
.wsb9{word-spacing:-0.545600pt;}
.ws81{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.498667pt;}
.wsfa{word-spacing:-0.496000pt;}
.wsc2{word-spacing:-0.480000pt;}
.ws8c{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.396800pt;}
.wsa1{word-spacing:-0.373333pt;}
.ws4a{word-spacing:-0.347200pt;}
.ws5c{word-spacing:-0.320000pt;}
.ws9{word-spacing:-0.315733pt;}
.ws39{word-spacing:-0.266667pt;}
.ws93{word-spacing:-0.248000pt;}
.ws2f{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.198400pt;}
.ws22{word-spacing:-0.197333pt;}
.ws11d{word-spacing:-0.183467pt;}
.wsb{word-spacing:-0.181333pt;}
.ws115{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.136000pt;}
.ws65{word-spacing:-0.106667pt;}
.wsa5{word-spacing:-0.099200pt;}
.ws0{word-spacing:-0.085333pt;}
.ws8e{word-spacing:-0.053333pt;}
.ws95{word-spacing:-0.049600pt;}
.wsc{word-spacing:-0.045333pt;}
.wsa{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.049600pt;}
.wsb0{word-spacing:0.053333pt;}
.ws13{word-spacing:0.090667pt;}
.ws69{word-spacing:0.099200pt;}
.ws113{word-spacing:0.106667pt;}
.ws6b{word-spacing:0.148800pt;}
.ws7e{word-spacing:0.160000pt;}
.wsea{word-spacing:0.198400pt;}
.ws64{word-spacing:0.213333pt;}
.ws77{word-spacing:0.266667pt;}
.wsd{word-spacing:0.272000pt;}
.ws82{word-spacing:0.320000pt;}
.wsdf{word-spacing:0.347200pt;}
.ws89{word-spacing:0.373333pt;}
.ws84{word-spacing:0.396800pt;}
.wsee{word-spacing:0.426667pt;}
.ws122{word-spacing:0.458667pt;}
.ws1e{word-spacing:0.480000pt;}
.wsf3{word-spacing:0.496000pt;}
.wsc0{word-spacing:0.533333pt;}
.ws94{word-spacing:0.545600pt;}
.ws62{word-spacing:0.586667pt;}
.ws8d{word-spacing:0.640000pt;}
.wsf4{word-spacing:0.644800pt;}
.wsc7{word-spacing:0.693333pt;}
.ws43{word-spacing:0.694400pt;}
.ws44{word-spacing:0.744000pt;}
.ws110{word-spacing:0.746667pt;}
.wse{word-spacing:0.770667pt;}
.ws11f{word-spacing:0.779733pt;}
.wsa7{word-spacing:0.843200pt;}
.ws59{word-spacing:0.853333pt;}
.wse8{word-spacing:0.892800pt;}
.ws7c{word-spacing:0.906667pt;}
.wsaf{word-spacing:0.960000pt;}
.ws68{word-spacing:0.992000pt;}
.ws5b{word-spacing:1.013333pt;}
.ws105{word-spacing:1.041600pt;}
.wsc4{word-spacing:1.066667pt;}
.ws42{word-spacing:1.091200pt;}
.ws83{word-spacing:1.120000pt;}
.wsc3{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.190400pt;}
.ws14{word-spacing:1.224000pt;}
.ws2c{word-spacing:1.226667pt;}
.wsd8{word-spacing:1.240000pt;}
.wsb7{word-spacing:1.280000pt;}
.wsc9{word-spacing:1.289600pt;}
.ws2b{word-spacing:1.333333pt;}
.ws58{word-spacing:1.386667pt;}
.ws41{word-spacing:1.388800pt;}
.ws12{word-spacing:1.405333pt;}
.ws123{word-spacing:1.421867pt;}
.wsa4{word-spacing:1.438400pt;}
.wsbe{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.450667pt;}
.ws3e{word-spacing:1.488000pt;}
.ws1b{word-spacing:1.493333pt;}
.wse9{word-spacing:1.537600pt;}
.wsc6{word-spacing:1.546667pt;}
.ws3f{word-spacing:1.587200pt;}
.wsef{word-spacing:1.600000pt;}
.wsba{word-spacing:1.636800pt;}
.ws1c{word-spacing:1.653333pt;}
.ws3b{word-spacing:1.706667pt;}
.ws2a{word-spacing:1.760000pt;}
.ws98{word-spacing:1.785600pt;}
.ws30{word-spacing:1.813333pt;}
.ws35{word-spacing:1.866667pt;}
.ws19{word-spacing:1.904000pt;}
.wse5{word-spacing:1.920000pt;}
.wsa8{word-spacing:1.934400pt;}
.ws38{word-spacing:1.973333pt;}
.ws8f{word-spacing:2.026667pt;}
.wsae{word-spacing:2.080000pt;}
.ws4e{word-spacing:2.083200pt;}
.ws6c{word-spacing:2.132800pt;}
.wsf9{word-spacing:2.133333pt;}
.ws20{word-spacing:2.182400pt;}
.ws56{word-spacing:2.186667pt;}
.ws4d{word-spacing:2.232000pt;}
.ws60{word-spacing:2.240000pt;}
.ws2e{word-spacing:2.293333pt;}
.ws76{word-spacing:2.346667pt;}
.ws31{word-spacing:2.400000pt;}
.wsc8{word-spacing:2.453333pt;}
.wsb1{word-spacing:2.506667pt;}
.ws5d{word-spacing:2.560000pt;}
.ws100{word-spacing:2.579200pt;}
.wsb2{word-spacing:2.613333pt;}
.ws75{word-spacing:2.666667pt;}
.ws7a{word-spacing:2.720000pt;}
.wsa2{word-spacing:2.773333pt;}
.wsc5{word-spacing:2.826667pt;}
.ws118{word-spacing:2.827200pt;}
.wsb5{word-spacing:2.880000pt;}
.wsf1{word-spacing:2.933333pt;}
.ws8b{word-spacing:2.986667pt;}
.wsb8{word-spacing:3.025600pt;}
.ws90{word-spacing:3.040000pt;}
.ws91{word-spacing:3.075200pt;}
.wsdd{word-spacing:3.093333pt;}
.wsa0{word-spacing:3.146667pt;}
.ws5e{word-spacing:3.253333pt;}
.ws2d{word-spacing:3.306667pt;}
.ws92{word-spacing:3.323200pt;}
.ws106{word-spacing:3.372800pt;}
.ws34{word-spacing:3.413333pt;}
.ws5f{word-spacing:3.466667pt;}
.wsd4{word-spacing:3.520000pt;}
.ws61{word-spacing:3.573333pt;}
.ws5a{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.733333pt;}
.ws96{word-spacing:3.769600pt;}
.wse4{word-spacing:3.786667pt;}
.wsd5{word-spacing:3.840000pt;}
.wsd6{word-spacing:4.053333pt;}
.wsb6{word-spacing:4.106667pt;}
.ws116{word-spacing:4.160000pt;}
.wsde{word-spacing:4.213333pt;}
.ws9f{word-spacing:4.373333pt;}
.ws8a{word-spacing:4.480000pt;}
.wsa3{word-spacing:4.640000pt;}
.ws9d{word-spacing:4.693333pt;}
.ws10e{word-spacing:4.746667pt;}
.ws32{word-spacing:4.800000pt;}
.ws57{word-spacing:4.960000pt;}
.wsd7{word-spacing:5.066667pt;}
.ws74{word-spacing:5.120000pt;}
.ws45{word-spacing:5.257600pt;}
.ws117{word-spacing:5.333333pt;}
.wsc1{word-spacing:5.440000pt;}
.wsf8{word-spacing:5.920000pt;}
.wse6{word-spacing:6.773333pt;}
.ws111{word-spacing:7.291200pt;}
.ws67{word-spacing:46.227200pt;}
.ws121{word-spacing:1419.408000pt;}
.ws127{word-spacing:1419.696000pt;}
.wsf7{word-spacing:1420.176000pt;}
.wsd3{word-spacing:1421.664000pt;}
.ws87{word-spacing:1422.096000pt;}
.wse2{word-spacing:1422.288000pt;}
.ws104{word-spacing:1422.816000pt;}
.wsad{word-spacing:1422.864000pt;}
.ws55{word-spacing:1425.744000pt;}
.ws112{word-spacing:1425.840000pt;}
.ws125{word-spacing:1431.552000pt;}
.ws71{word-spacing:1431.984000pt;}
.ws29{word-spacing:1432.080000pt;}
.ws11c{word-spacing:1433.232000pt;}
.ws9c{word-spacing:1433.856000pt;}
.wsfc{word-spacing:1434.048000pt;}
.wsed{word-spacing:1436.160000pt;}
.wsdb{word-spacing:1436.976000pt;}
._1e{margin-left:-1436.949173pt;}
._21{margin-left:-1435.806400pt;}
._13{margin-left:-1434.471733pt;}
._14{margin-left:-1433.397067pt;}
._7{margin-left:-1431.613867pt;}
._c{margin-left:-47.827733pt;}
._e{margin-left:-13.546667pt;}
._5{margin-left:-11.647733pt;}
._15{margin-left:-9.493333pt;}
._1d{margin-left:-6.972907pt;}
._8{margin-left:-5.350133pt;}
._1{margin-left:-3.791467pt;}
._4{margin-left:-2.842133pt;}
._0{margin-left:-1.706667pt;}
._3{width:1.194400pt;}
._10{width:2.149013pt;}
._2{width:3.046133pt;}
._a{width:4.140907pt;}
._b{width:5.706667pt;}
._24{width:6.878987pt;}
._25{width:7.817440pt;}
._22{width:21.575467pt;}
._1c{width:23.955733pt;}
._23{width:25.295467pt;}
._20{width:26.287467pt;}
._1f{width:28.073067pt;}
._12{width:29.461333pt;}
._19{width:30.404267pt;}
._17{width:31.296533pt;}
._18{width:32.537067pt;}
._1b{width:33.748267pt;}
._16{width:38.885333pt;}
._d{width:42.209600pt;}
._f{width:45.284800pt;}
._6{width:48.310400pt;}
._11{width:50.393067pt;}
._9{width:51.434667pt;}
._1a{width:61.504000pt;}
.fs7{font-size:19.733333pt;}
.fs8{font-size:31.093333pt;}
.fs9{font-size:36.800000pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:45.866667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:56.692933pt;}
.y85{bottom:56.693067pt;}
.y70{bottom:56.696800pt;}
.y52{bottom:56.696933pt;}
.y99{bottom:56.700667pt;}
.ya1{bottom:56.700800pt;}
.y8a{bottom:56.712400pt;}
.y21{bottom:56.717200pt;}
.yee{bottom:57.085733pt;}
.yd2{bottom:57.104400pt;}
.y1a9{bottom:61.417067pt;}
.y178{bottom:61.508800pt;}
.y148{bottom:61.559200pt;}
.y141{bottom:61.570667pt;}
.y6f{bottom:72.159600pt;}
.y51{bottom:72.159733pt;}
.y66{bottom:72.163467pt;}
.y95{bottom:72.163600pt;}
.y76{bottom:72.167333pt;}
.y89{bottom:72.175200pt;}
.y20{bottom:72.180000pt;}
.yed{bottom:72.554267pt;}
.yd1{bottom:72.571067pt;}
.y1a8{bottom:76.885600pt;}
.y177{bottom:76.977333pt;}
.y147{bottom:77.027733pt;}
.y140{bottom:77.039200pt;}
.y65{bottom:87.626267pt;}
.y8d{bottom:87.626400pt;}
.y8f{bottom:87.626533pt;}
.y6e{bottom:87.630133pt;}
.ya7{bottom:87.630267pt;}
.y50{bottom:87.638000pt;}
.y84{bottom:87.642000pt;}
.y1f{bottom:87.642800pt;}
.yd0{bottom:87.991067pt;}
.yec{bottom:88.022800pt;}
.y1a7{bottom:92.354133pt;}
.y176{bottom:92.445867pt;}
.y146{bottom:92.496267pt;}
.y13f{bottom:92.507733pt;}
.y6d{bottom:103.092933pt;}
.y8c{bottom:103.093067pt;}
.y8e{bottom:103.093200pt;}
.y64{bottom:103.096933pt;}
.y9e{bottom:103.097067pt;}
.y4f{bottom:103.100800pt;}
.y94{bottom:103.100933pt;}
.y83{bottom:103.104800pt;}
.y1e{bottom:103.109467pt;}
.ycf{bottom:103.459600pt;}
.yeb{bottom:103.491333pt;}
.y1a6{bottom:107.822667pt;}
.y175{bottom:107.914400pt;}
.y145{bottom:107.964800pt;}
.y13e{bottom:107.976267pt;}
.y98{bottom:118.559600pt;}
.y63{bottom:118.559733pt;}
.y9d{bottom:118.559867pt;}
.y4e{bottom:118.563600pt;}
.y93{bottom:118.563733pt;}
.y82{bottom:118.567600pt;}
.yce{bottom:118.928133pt;}
.yea{bottom:118.959867pt;}
.y1a5{bottom:123.291200pt;}
.y174{bottom:123.382933pt;}
.y144{bottom:123.433333pt;}
.y13d{bottom:123.444800pt;}
.ya6{bottom:123.771067pt;}
.y4d{bottom:134.026400pt;}
.y8b{bottom:134.026533pt;}
.y97{bottom:134.030267pt;}
.y81{bottom:134.030400pt;}
.y62{bottom:134.034267pt;}
.ycd{bottom:134.396667pt;}
.ye9{bottom:134.428400pt;}
.y1a4{bottom:138.759733pt;}
.y173{bottom:138.851467pt;}
.y143{bottom:138.901867pt;}
.y13c{bottom:138.913333pt;}
.y1d{bottom:140.304400pt;}
.y4c{bottom:149.493067pt;}
.y80{bottom:149.493200pt;}
.y61{bottom:149.497067pt;}
.ycc{bottom:149.865200pt;}
.ye8{bottom:149.896933pt;}
.y1a3{bottom:154.228267pt;}
.y172{bottom:154.320000pt;}
.y142{bottom:154.370400pt;}
.y13b{bottom:154.381867pt;}
.y1c{bottom:156.837733pt;}
.y4b{bottom:164.959733pt;}
.y60{bottom:164.959867pt;}
.y92{bottom:164.960000pt;}
.ya0{bottom:164.963467pt;}
.ya5{bottom:164.975333pt;}
.ycb{bottom:165.333733pt;}
.ye7{bottom:165.365467pt;}
.y1a2{bottom:169.696800pt;}
.y171{bottom:169.788533pt;}
.y1b{bottom:173.371067pt;}
.y9f{bottom:180.426267pt;}
.y5f{bottom:180.426533pt;}
.y7f{bottom:180.426667pt;}
.y4a{bottom:180.430267pt;}
.y87{bottom:180.430400pt;}
.y91{bottom:180.430667pt;}
.y75{bottom:180.438133pt;}
.yca{bottom:180.802267pt;}
.ye6{bottom:180.834000pt;}
.y1a1{bottom:185.165333pt;}
.y170{bottom:185.257067pt;}
.y13a{bottom:185.318933pt;}
.y6c{bottom:189.904400pt;}
.y49{bottom:195.893067pt;}
.y86{bottom:195.893200pt;}
.y5e{bottom:195.893333pt;}
.y90{bottom:195.893467pt;}
.y74{bottom:195.900933pt;}
.y9c{bottom:195.908933pt;}
.yc9{bottom:196.270800pt;}
.ye5{bottom:196.302533pt;}
.y1a0{bottom:200.633867pt;}
.y16f{bottom:200.725600pt;}
.y1a{bottom:206.437733pt;}
.y48{bottom:211.359733pt;}
.y96{bottom:211.359867pt;}
.y73{bottom:211.363733pt;}
.y5d{bottom:211.363867pt;}
.y9b{bottom:211.371733pt;}
.yc8{bottom:211.739333pt;}
.ye4{bottom:211.771067pt;}
.y19f{bottom:216.102400pt;}
.y16e{bottom:216.194133pt;}
.y6b{bottom:222.971067pt;}
.y47{bottom:226.826400pt;}
.y72{bottom:226.826533pt;}
.y5c{bottom:226.826667pt;}
.y9a{bottom:226.834533pt;}
.yc7{bottom:227.207867pt;}
.ye3{bottom:227.237733pt;}
.y19e{bottom:231.570933pt;}
.y16d{bottom:231.662667pt;}
.y114{bottom:231.696267pt;}
.y6a{bottom:239.504400pt;}
.y46{bottom:242.293067pt;}
.y5b{bottom:242.293333pt;}
.ya4{bottom:242.293467pt;}
.y71{bottom:242.297333pt;}
.yc6{bottom:242.676400pt;}
.ye2{bottom:242.704400pt;}
.y19d{bottom:247.039467pt;}
.y16c{bottom:247.131200pt;}
.y113{bottom:247.164800pt;}
.y139{bottom:247.181600pt;}
.y19{bottom:249.904400pt;}
.y88{bottom:256.037733pt;}
.y45{bottom:257.759733pt;}
.y5a{bottom:257.760133pt;}
.y7e{bottom:257.763867pt;}
.ya3{bottom:257.767867pt;}
.yc5{bottom:258.144933pt;}
.ye1{bottom:258.171067pt;}
.y19c{bottom:262.508000pt;}
.y16b{bottom:262.599733pt;}
.y112{bottom:262.633333pt;}
.y138{bottom:262.650133pt;}
.y18{bottom:265.237733pt;}
.y69{bottom:272.571067pt;}
.y7d{bottom:273.226667pt;}
.y59{bottom:273.226800pt;}
.y44{bottom:273.230267pt;}
.ya2{bottom:273.230667pt;}
.ye0{bottom:273.583600pt;}
.yc4{bottom:273.613467pt;}
.y19b{bottom:277.976533pt;}
.y16a{bottom:278.068267pt;}
.y111{bottom:278.101867pt;}
.y137{bottom:278.118667pt;}
.y43{bottom:288.693067pt;}
.y7c{bottom:288.693467pt;}
.ydf{bottom:289.052133pt;}
.yc3{bottom:289.082000pt;}
.y68{bottom:289.104400pt;}
.y19a{bottom:293.445067pt;}
.y169{bottom:293.536800pt;}
.y110{bottom:293.570400pt;}
.y136{bottom:293.587200pt;}
.y17{bottom:296.169733pt;}
.y7b{bottom:304.160133pt;}
.y42{bottom:304.167467pt;}
.yde{bottom:304.520667pt;}
.yc2{bottom:304.550533pt;}
.y58{bottom:305.637733pt;}
.y199{bottom:308.913600pt;}
.y168{bottom:309.005333pt;}
.y10f{bottom:309.038933pt;}
.y135{bottom:309.055733pt;}
.y16{bottom:311.503733pt;}
.y7a{bottom:319.626667pt;}
.y41{bottom:319.630267pt;}
.ydd{bottom:319.989200pt;}
.yc1{bottom:320.019067pt;}
.y57{bottom:322.171067pt;}
.y198{bottom:324.382133pt;}
.y167{bottom:324.473867pt;}
.y10e{bottom:324.507467pt;}
.y134{bottom:324.524267pt;}
.y15{bottom:326.837733pt;}
.y40{bottom:335.093067pt;}
.y79{bottom:335.093467pt;}
.ydc{bottom:335.457733pt;}
.yc0{bottom:335.487600pt;}
.y56{bottom:338.704400pt;}
.y197{bottom:339.850667pt;}
.y166{bottom:339.942400pt;}
.y10d{bottom:339.976000pt;}
.y133{bottom:339.992800pt;}
.y14{bottom:342.171067pt;}
.y3f{bottom:350.559733pt;}
.y78{bottom:350.564000pt;}
.ydb{bottom:350.926267pt;}
.ybf{bottom:350.956133pt;}
.y55{bottom:355.237733pt;}
.y196{bottom:355.319200pt;}
.y165{bottom:355.410933pt;}
.y10c{bottom:355.444533pt;}
.y132{bottom:355.461333pt;}
.y3e{bottom:366.026400pt;}
.y77{bottom:366.026800pt;}
.yda{bottom:366.394800pt;}
.ybe{bottom:366.424667pt;}
.y195{bottom:370.787733pt;}
.y164{bottom:370.879467pt;}
.y10b{bottom:370.913067pt;}
.y131{bottom:370.929867pt;}
.y54{bottom:371.771067pt;}
.y13{bottom:373.095733pt;}
.yd9{bottom:381.863333pt;}
.ybd{bottom:381.893200pt;}
.y194{bottom:386.256267pt;}
.y163{bottom:386.348000pt;}
.y10a{bottom:386.381600pt;}
.y130{bottom:386.398400pt;}
.y53{bottom:388.304400pt;}
.y12{bottom:388.429733pt;}
.yd8{bottom:397.331867pt;}
.ybc{bottom:397.361733pt;}
.y193{bottom:401.724800pt;}
.y1d3{bottom:401.793067pt;}
.y162{bottom:401.816533pt;}
.y1b8{bottom:401.838933pt;}
.y109{bottom:401.850133pt;}
.y12f{bottom:401.863200pt;}
.y11{bottom:403.763733pt;}
.y3d{bottom:404.837733pt;}
.yd7{bottom:412.800400pt;}
.ybb{bottom:412.830267pt;}
.y192{bottom:417.193333pt;}
.y1d2{bottom:417.261600pt;}
.y161{bottom:417.285067pt;}
.y1b7{bottom:417.307467pt;}
.y108{bottom:417.318667pt;}
.y12e{bottom:417.331733pt;}
.y10{bottom:419.097733pt;}
.y3c{bottom:421.371067pt;}
.yd6{bottom:428.268933pt;}
.yba{bottom:428.298800pt;}
.y191{bottom:432.661867pt;}
.y1d1{bottom:432.730133pt;}
.y160{bottom:432.753600pt;}
.y1b6{bottom:432.776000pt;}
.y107{bottom:432.787200pt;}
.y12d{bottom:432.796533pt;}
.yf{bottom:434.431733pt;}
.y3b{bottom:437.904400pt;}
.yd5{bottom:443.737467pt;}
.yb9{bottom:443.767333pt;}
.y190{bottom:448.130400pt;}
.y1d0{bottom:448.198667pt;}
.y15f{bottom:448.222133pt;}
.y1b5{bottom:448.244533pt;}
.y106{bottom:448.255733pt;}
.y12c{bottom:448.265067pt;}
.ye{bottom:449.765733pt;}
.y3a{bottom:454.437733pt;}
.yd4{bottom:459.206000pt;}
.yb8{bottom:459.235867pt;}
.y18f{bottom:463.598933pt;}
.y1cf{bottom:463.667200pt;}
.y15e{bottom:463.690667pt;}
.y1b4{bottom:463.713067pt;}
.y105{bottom:463.724267pt;}
.y12b{bottom:463.729867pt;}
.yd{bottom:465.099733pt;}
.y39{bottom:470.971067pt;}
.yd3{bottom:474.674533pt;}
.yb7{bottom:474.704400pt;}
.y18e{bottom:479.067467pt;}
.y1ce{bottom:479.135733pt;}
.y15d{bottom:479.159200pt;}
.y1b3{bottom:479.181600pt;}
.y104{bottom:479.192800pt;}
.y12a{bottom:479.198400pt;}
.yc{bottom:480.433733pt;}
.y38{bottom:487.504400pt;}
.yb6{bottom:490.143067pt;}
.y18d{bottom:494.536000pt;}
.y1cd{bottom:494.604267pt;}
.y15c{bottom:494.627733pt;}
.y1b2{bottom:494.650133pt;}
.y103{bottom:494.661333pt;}
.y129{bottom:494.665067pt;}
.yb{bottom:495.767733pt;}
.y37{bottom:504.037733pt;}
.yb5{bottom:505.611600pt;}
.y18c{bottom:510.004533pt;}
.y128{bottom:510.061067pt;}
.y1cc{bottom:510.072800pt;}
.y15b{bottom:510.096267pt;}
.y1b1{bottom:510.118667pt;}
.y102{bottom:510.129867pt;}
.ya{bottom:511.101733pt;}
.y36{bottom:520.571067pt;}
.yb4{bottom:521.080133pt;}
.y18b{bottom:525.473067pt;}
.y127{bottom:525.529600pt;}
.y1cb{bottom:525.541333pt;}
.y15a{bottom:525.564800pt;}
.y1b0{bottom:525.587200pt;}
.y101{bottom:525.598400pt;}
.y9{bottom:526.435733pt;}
.yb3{bottom:536.548667pt;}
.y35{bottom:537.104400pt;}
.y18a{bottom:540.941600pt;}
.y126{bottom:540.998133pt;}
.y1ca{bottom:541.009867pt;}
.y159{bottom:541.033333pt;}
.y100{bottom:541.035200pt;}
.y1af{bottom:541.055733pt;}
.y8{bottom:541.769733pt;}
.yb2{bottom:552.017200pt;}
.y34{bottom:553.637733pt;}
.y189{bottom:556.410133pt;}
.y125{bottom:556.466667pt;}
.y1c9{bottom:556.478400pt;}
.y158{bottom:556.501867pt;}
.yff{bottom:556.503733pt;}
.y1ae{bottom:556.524267pt;}
.y7{bottom:557.103733pt;}
.yb1{bottom:567.485733pt;}
.y33{bottom:570.171067pt;}
.y188{bottom:571.878667pt;}
.y124{bottom:571.935200pt;}
.y1c8{bottom:571.946933pt;}
.y157{bottom:571.970400pt;}
.yfe{bottom:571.972267pt;}
.y1ad{bottom:571.992800pt;}
.y6{bottom:572.437733pt;}
.yb0{bottom:582.954267pt;}
.y32{bottom:586.704400pt;}
.y187{bottom:587.347200pt;}
.y123{bottom:587.403733pt;}
.y1c7{bottom:587.415467pt;}
.y156{bottom:587.438933pt;}
.yfd{bottom:587.440800pt;}
.y1ac{bottom:587.461333pt;}
.y5{bottom:587.771067pt;}
.yaf{bottom:598.422800pt;}
.y186{bottom:602.815733pt;}
.y122{bottom:602.872267pt;}
.y1c6{bottom:602.884000pt;}
.y155{bottom:602.907467pt;}
.yfc{bottom:602.909333pt;}
.y1ab{bottom:602.929867pt;}
.y31{bottom:603.237733pt;}
.yae{bottom:613.891333pt;}
.y185{bottom:618.284267pt;}
.y121{bottom:618.340800pt;}
.y1c5{bottom:618.352533pt;}
.y154{bottom:618.376000pt;}
.yfb{bottom:618.377867pt;}
.y1aa{bottom:618.398400pt;}
.y30{bottom:619.771067pt;}
.yad{bottom:629.359867pt;}
.y184{bottom:633.752800pt;}
.y120{bottom:633.809333pt;}
.y1c4{bottom:633.821067pt;}
.y153{bottom:633.844533pt;}
.yfa{bottom:633.846400pt;}
.y2f{bottom:636.304400pt;}
.yac{bottom:644.828400pt;}
.y183{bottom:649.221333pt;}
.y11f{bottom:649.277867pt;}
.y1c3{bottom:649.289600pt;}
.y152{bottom:649.313067pt;}
.yf9{bottom:649.314933pt;}
.y2e{bottom:652.837733pt;}
.yab{bottom:660.296933pt;}
.y182{bottom:664.689867pt;}
.y11e{bottom:664.746400pt;}
.y1c2{bottom:664.758133pt;}
.y151{bottom:664.781600pt;}
.yf8{bottom:664.783467pt;}
.y2d{bottom:669.371067pt;}
.yaa{bottom:675.765467pt;}
.y181{bottom:680.158400pt;}
.y11d{bottom:680.214933pt;}
.y1c1{bottom:680.226667pt;}
.y150{bottom:680.250133pt;}
.yf7{bottom:680.252000pt;}
.y2c{bottom:685.904400pt;}
.ya9{bottom:691.234000pt;}
.y180{bottom:695.626933pt;}
.y11c{bottom:695.683467pt;}
.y1c0{bottom:695.695200pt;}
.y14f{bottom:695.718667pt;}
.yf6{bottom:695.720533pt;}
.y2b{bottom:702.437733pt;}
.y4{bottom:706.177600pt;}
.y17f{bottom:711.095467pt;}
.y11b{bottom:711.152000pt;}
.y1bf{bottom:711.163733pt;}
.y14e{bottom:711.187200pt;}
.yf5{bottom:711.189067pt;}
.y2a{bottom:718.971067pt;}
.ya8{bottom:722.171067pt;}
.y3{bottom:722.173600pt;}
.y17e{bottom:726.564000pt;}
.y11a{bottom:726.620533pt;}
.y1be{bottom:726.632267pt;}
.y14d{bottom:726.655733pt;}
.yf4{bottom:726.657600pt;}
.y29{bottom:735.504400pt;}
.y17d{bottom:742.032533pt;}
.y119{bottom:742.089067pt;}
.y1bd{bottom:742.100800pt;}
.y14c{bottom:742.124267pt;}
.yf3{bottom:742.126133pt;}
.y28{bottom:752.037733pt;}
.y2{bottom:754.173600pt;}
.y17c{bottom:757.501067pt;}
.y118{bottom:757.557600pt;}
.y1bc{bottom:757.569333pt;}
.y14b{bottom:757.592800pt;}
.yf2{bottom:757.594667pt;}
.y23{bottom:762.125333pt;}
.y27{bottom:768.571067pt;}
.y22{bottom:768.790267pt;}
.y17b{bottom:772.969600pt;}
.y117{bottom:773.026133pt;}
.y1bb{bottom:773.037867pt;}
.y14a{bottom:773.061333pt;}
.yf1{bottom:773.063200pt;}
.y26{bottom:785.104400pt;}
.y17a{bottom:788.438133pt;}
.y116{bottom:788.494667pt;}
.y1ba{bottom:788.506400pt;}
.y149{bottom:788.529867pt;}
.yf0{bottom:788.531733pt;}
.y1{bottom:795.958400pt;}
.y25{bottom:801.637733pt;}
.y179{bottom:803.906667pt;}
.y115{bottom:803.963200pt;}
.y1b9{bottom:803.974933pt;}
.yef{bottom:803.998400pt;}
.y24{bottom:849.726533pt;}
.hb{height:18.509867pt;}
.h7{height:40.800000pt;}
.h10{height:40.958933pt;}
.he{height:41.096533pt;}
.h11{height:41.104000pt;}
.h12{height:41.178667pt;}
.hf{height:41.208533pt;}
.h6{height:41.661333pt;}
.hd{height:41.876267pt;}
.h5{height:43.344000pt;}
.ha{height:44.441600pt;}
.h4{height:45.216000pt;}
.hc{height:47.893333pt;}
.h9{height:48.000000pt;}
.h8{height:50.400000pt;}
.h3{height:60.288000pt;}
.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:23.081200pt;}
.x7{left:25.631733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x9{left:75.592533pt;}
.x6{left:83.145333pt;}
.x2{left:90.708667pt;}
.xa{left:314.143067pt;}
.xd{left:321.679200pt;}
.xb{left:325.483600pt;}
.xc{left:333.019733pt;}
.x4{left:579.238667pt;}
.x3{left:581.789200pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  