
    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_0e17cee83ffbef71b323816f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.378906;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_062d8221e958432ad6f8f23c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.378906;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_b31891540fc76bdcc5c24c1f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.226562;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_9f32ace800f749e7a215914a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.226562;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_3e95bdc248db7970fd2f7597.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_1ac398a60d6b5dc0066ac331.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_498ac39e50c23b396c32b854.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_1448b34cced4d6b7ee7a7b19.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_2a2c3f122caa6747c9fedc6e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_8dc62b92ff4b84cd174dcfef.woff')format("woff");}.ffb{font-family:ffb;line-height:0.855469;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_b049cd9b1173d8a59b05d706.woff')format("woff");}.ffc{font-family:ffc;line-height:1.030273;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_598c191d582d5ec6322cd697.woff')format("woff");}.ffd{font-family:ffd;line-height:0.854492;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.v1{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v3{vertical-align:18.720000px;}
.ls55{letter-spacing:-1.074000px;}
.ls4b{letter-spacing:-1.026000px;}
.ls47{letter-spacing:-0.560400px;}
.ls44{letter-spacing:-0.520200px;}
.ls39{letter-spacing:-0.515400px;}
.ls30{letter-spacing:-0.458400px;}
.ls51{letter-spacing:-0.443400px;}
.ls20{letter-spacing:-0.435000px;}
.ls48{letter-spacing:-0.421200px;}
.ls4a{letter-spacing:-0.370800px;}
.ls1f{letter-spacing:-0.367200px;}
.ls5a{letter-spacing:-0.364800px;}
.ls43{letter-spacing:-0.351600px;}
.ls19{letter-spacing:-0.344400px;}
.ls49{letter-spacing:-0.339600px;}
.ls27{letter-spacing:-0.332400px;}
.ls25{letter-spacing:-0.330600px;}
.ls23{letter-spacing:-0.323400px;}
.ls31{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.290400px;}
.ls8{letter-spacing:-0.288000px;}
.ls41{letter-spacing:-0.267600px;}
.ls2b{letter-spacing:-0.258000px;}
.ls22{letter-spacing:-0.249600px;}
.ls1e{letter-spacing:-0.226800px;}
.ls1{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.202200px;}
.ls2e{letter-spacing:-0.158400px;}
.ls34{letter-spacing:-0.150000px;}
.ls2f{letter-spacing:-0.146400px;}
.ls6{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.115200px;}
.ls3e{letter-spacing:-0.114600px;}
.ls3c{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.093600px;}
.ls35{letter-spacing:-0.080400px;}
.ls9{letter-spacing:-0.075000px;}
.ls5{letter-spacing:-0.072000px;}
.ls3b{letter-spacing:-0.057600px;}
.lsc{letter-spacing:-0.051120px;}
.ls52{letter-spacing:-0.034560px;}
.ls26{letter-spacing:-0.019860px;}
.ls21{letter-spacing:-0.015840px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000001px;}
.ls46{letter-spacing:0.011520px;}
.ls54{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.051240px;}
.ls40{letter-spacing:0.060600px;}
.ls4e{letter-spacing:0.067200px;}
.ls1d{letter-spacing:0.072000px;}
.ls36{letter-spacing:0.080400px;}
.ls32{letter-spacing:0.099600px;}
.ls11{letter-spacing:0.123600px;}
.ls10{letter-spacing:0.123840px;}
.ls13{letter-spacing:0.128400px;}
.lsb{letter-spacing:0.131400px;}
.ls3{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.159600px;}
.ls2a{letter-spacing:0.172800px;}
.ls4c{letter-spacing:0.180600px;}
.ls3f{letter-spacing:0.196800px;}
.ls53{letter-spacing:0.204600px;}
.ls2{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.236400px;}
.ls57{letter-spacing:0.240000px;}
.ls4d{letter-spacing:0.245400px;}
.ls45{letter-spacing:0.259200px;}
.ls24{letter-spacing:0.261600px;}
.ls3a{letter-spacing:0.276600px;}
.ls7{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.296400px;}
.ls33{letter-spacing:0.389400px;}
.lsa{letter-spacing:0.428400px;}
.ls42{letter-spacing:0.440400px;}
.ls50{letter-spacing:0.624000px;}
.ls4f{letter-spacing:0.768000px;}
.ls56{letter-spacing:0.780000px;}
.ls5b{letter-spacing:12.781440px;}
.lsf{letter-spacing:26.856000px;}
.ls18{letter-spacing:26.973600px;}
.ls17{letter-spacing:27.024000px;}
.ls37{letter-spacing:27.647280px;}
.ls14{letter-spacing:37.440000px;}
.ls15{letter-spacing:55.440000px;}
.ls1b{letter-spacing:105.813600px;}
.ls1c{letter-spacing:105.864000px;}
.ls1a{letter-spacing:107.064000px;}
.ls59{letter-spacing:110.109600px;}
.ls58{letter-spacing:110.160000px;}
.ls2d{letter-spacing:166.345200px;}
.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;}
}
.ws57{word-spacing:-140.616000px;}
.ws9f{word-spacing:-84.240000px;}
.wsa3{word-spacing:-41.622336px;}
.ws6b{word-spacing:-41.559840px;}
.ws69{word-spacing:-31.248000px;}
.ws60{word-spacing:-28.748160px;}
.ws53{word-spacing:-28.581120px;}
.ws54{word-spacing:-28.538640px;}
.ws55{word-spacing:-28.517040px;}
.ws49{word-spacing:-21.571056px;}
.ws14{word-spacing:-21.528000px;}
.ws63{word-spacing:-20.754720px;}
.ws5a{word-spacing:-19.439280px;}
.ws6d{word-spacing:-19.423440px;}
.wsa2{word-spacing:-18.944640px;}
.ws130{word-spacing:-17.868240px;}
.ws65{word-spacing:-17.129952px;}
.ws64{word-spacing:-17.100720px;}
.wsfc{word-spacing:-15.814512px;}
.ws78{word-spacing:-15.785280px;}
.ws5c{word-spacing:-14.645232px;}
.ws5b{word-spacing:-14.616000px;}
.ws7b{word-spacing:-14.328000px;}
.ws132{word-spacing:-14.031360px;}
.wscb{word-spacing:-13.121280px;}
.wsca{word-spacing:-12.371112px;}
.ws131{word-spacing:-12.131280px;}
.ws5f{word-spacing:-10.705920px;}
.wscf{word-spacing:-9.952320px;}
.ws5e{word-spacing:-9.826080px;}
.wscc{word-spacing:-9.804240px;}
.wsd2{word-spacing:-9.590400px;}
.ws77{word-spacing:-9.547200px;}
.ws80{word-spacing:-9.427200px;}
.wscd{word-spacing:-9.232320px;}
.ws12f{word-spacing:-6.829920px;}
.wsce{word-spacing:-6.431040px;}
.ws12e{word-spacing:-5.132400px;}
.ws68{word-spacing:-5.076000px;}
.ws67{word-spacing:-5.004000px;}
.wsde{word-spacing:-2.239920px;}
.wsd0{word-spacing:-2.067840px;}
.ws4f{word-spacing:-1.512000px;}
.wsf1{word-spacing:-1.501200px;}
.ws6a{word-spacing:-1.293456px;}
.wsf4{word-spacing:-1.192920px;}
.wsd{word-spacing:-1.080000px;}
.ws75{word-spacing:-1.010160px;}
.ws26{word-spacing:-0.864000px;}
.wsef{word-spacing:-0.846960px;}
.wsf3{word-spacing:-0.827280px;}
.wsa8{word-spacing:-0.812520px;}
.ws61{word-spacing:-0.804000px;}
.wse7{word-spacing:-0.761544px;}
.wsa5{word-spacing:-0.738240px;}
.ws82{word-spacing:-0.696000px;}
.ws71{word-spacing:-0.684000px;}
.wsf0{word-spacing:-0.647640px;}
.ws76{word-spacing:-0.602160px;}
.ws6c{word-spacing:-0.591120px;}
.wsd3{word-spacing:-0.537120px;}
.wsf5{word-spacing:-0.519840px;}
.ws128{word-spacing:-0.513600px;}
.ws7e{word-spacing:-0.504000px;}
.ws117{word-spacing:-0.477360px;}
.wse9{word-spacing:-0.444192px;}
.ws10{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.360000px;}
.wsd1{word-spacing:-0.312000px;}
.ws13{word-spacing:-0.216000px;}
.ws72{word-spacing:-0.203760px;}
.ws12{word-spacing:-0.180000px;}
.wsf2{word-spacing:-0.111600px;}
.wsa7{word-spacing:-0.084000px;}
.ws96{word-spacing:-0.068640px;}
.ws116{word-spacing:-0.041280px;}
.ws56{word-spacing:0.000000px;}
.ws73{word-spacing:0.082800px;}
.ws118{word-spacing:0.100800px;}
.ws7c{word-spacing:0.108000px;}
.ws120{word-spacing:0.117120px;}
.ws11e{word-spacing:0.135360px;}
.ws129{word-spacing:0.158400px;}
.ws127{word-spacing:0.221760px;}
.wsc8{word-spacing:0.223920px;}
.ws84{word-spacing:0.291600px;}
.wsc9{word-spacing:0.419040px;}
.ws52{word-spacing:0.432000px;}
.ws85{word-spacing:0.488880px;}
.wsf{word-spacing:0.503996px;}
.ws27{word-spacing:0.504000px;}
.ws7f{word-spacing:0.504720px;}
.wsc7{word-spacing:0.524160px;}
.ws11f{word-spacing:0.694080px;}
.wsa6{word-spacing:0.756000px;}
.ws6f{word-spacing:0.765840px;}
.ws83{word-spacing:0.868800px;}
.ws66{word-spacing:1.056000px;}
.ws81{word-spacing:1.068000px;}
.ws11{word-spacing:1.080000px;}
.wsc{word-spacing:1.152000px;}
.ws5d{word-spacing:1.236000px;}
.wse{word-spacing:1.272000px;}
.wse0{word-spacing:1.284240px;}
.wse8{word-spacing:1.381104px;}
.ws97{word-spacing:1.412640px;}
.ws7a{word-spacing:1.488000px;}
.ws50{word-spacing:1.512000px;}
.ws70{word-spacing:1.727640px;}
.wsab{word-spacing:1.964160px;}
.wsaa{word-spacing:2.015640px;}
.wsa1{word-spacing:2.132640px;}
.ws109{word-spacing:2.167680px;}
.ws1c{word-spacing:2.352000px;}
.ws108{word-spacing:2.402640px;}
.ws1b{word-spacing:2.448000px;}
.ws1e{word-spacing:2.664000px;}
.ws105{word-spacing:2.672640px;}
.wsb2{word-spacing:2.719392px;}
.wsa9{word-spacing:2.749920px;}
.wsdf{word-spacing:2.859840px;}
.ws10a{word-spacing:2.896920px;}
.ws1a{word-spacing:3.024000px;}
.ws107{word-spacing:3.049920px;}
.wsb6{word-spacing:3.129744px;}
.wsb5{word-spacing:3.177936px;}
.wsb4{word-spacing:3.356688px;}
.ws1d{word-spacing:3.384000px;}
.wsb3{word-spacing:3.409560px;}
.ws126{word-spacing:3.618720px;}
.ws106{word-spacing:4.003920px;}
.wsc4{word-spacing:4.199040px;}
.wsc2{word-spacing:4.250640px;}
.wsc6{word-spacing:4.458240px;}
.wsc1{word-spacing:4.680480px;}
.ws8d{word-spacing:4.971360px;}
.ws122{word-spacing:5.056920px;}
.ws123{word-spacing:5.067360px;}
.wsc3{word-spacing:5.213520px;}
.wsc5{word-spacing:5.270400px;}
.ws8f{word-spacing:5.324400px;}
.ws2c{word-spacing:5.400000px;}
.ws125{word-spacing:5.453760px;}
.wsb1{word-spacing:5.463360px;}
.ws121{word-spacing:5.476800px;}
.ws28{word-spacing:5.616000px;}
.ws25{word-spacing:5.711760px;}
.ws2d{word-spacing:5.760000px;}
.ws8e{word-spacing:6.000000px;}
.wsf9{word-spacing:6.371040px;}
.wsfb{word-spacing:6.371424px;}
.wsaf{word-spacing:6.753600px;}
.wsae{word-spacing:6.808800px;}
.ws2b{word-spacing:6.840000px;}
.ws29{word-spacing:6.984000px;}
.ws2e{word-spacing:7.164000px;}
.ws2a{word-spacing:7.236000px;}
.wsf7{word-spacing:7.462944px;}
.ws20{word-spacing:7.608000px;}
.ws21{word-spacing:7.668000px;}
.ws23{word-spacing:7.824000px;}
.wsb0{word-spacing:7.869600px;}
.wsf8{word-spacing:8.025696px;}
.ws124{word-spacing:8.025840px;}
.wsfa{word-spacing:8.031312px;}
.wsf6{word-spacing:8.069088px;}
.ws22{word-spacing:8.136000px;}
.ws94{word-spacing:8.181360px;}
.ws1f{word-spacing:8.208000px;}
.ws95{word-spacing:8.265360px;}
.ws24{word-spacing:8.424000px;}
.wse5{word-spacing:8.655120px;}
.wse6{word-spacing:9.789600px;}
.ws101{word-spacing:10.322640px;}
.ws3e{word-spacing:10.512000px;}
.ws40{word-spacing:10.764000px;}
.ws3a{word-spacing:10.872000px;}
.wsff{word-spacing:10.935360px;}
.wsfd{word-spacing:10.938240px;}
.ws39{word-spacing:10.944000px;}
.ws3b{word-spacing:11.088000px;}
.ws3d{word-spacing:11.208000px;}
.ws3f{word-spacing:11.376000px;}
.ws3c{word-spacing:11.592000px;}
.ws100{word-spacing:11.593560px;}
.wsfe{word-spacing:11.743920px;}
.wsed{word-spacing:12.632880px;}
.wsec{word-spacing:13.045680px;}
.wse2{word-spacing:13.297680px;}
.wseb{word-spacing:13.519440px;}
.wsee{word-spacing:14.109600px;}
.wsea{word-spacing:14.169600px;}
.wse3{word-spacing:14.474640px;}
.wse4{word-spacing:14.709600px;}
.ws74{word-spacing:15.227760px;}
.ws12b{word-spacing:15.316920px;}
.ws12d{word-spacing:15.349440px;}
.ws12c{word-spacing:15.350400px;}
.wsba{word-spacing:15.362640px;}
.ws12a{word-spacing:15.490560px;}
.wsb7{word-spacing:15.852960px;}
.ws43{word-spacing:16.517520px;}
.ws86{word-spacing:16.609440px;}
.wsb8{word-spacing:16.967640px;}
.ws45{word-spacing:17.111304px;}
.ws44{word-spacing:17.166672px;}
.wsb9{word-spacing:17.248320px;}
.ws47{word-spacing:17.339904px;}
.ws46{word-spacing:17.345088px;}
.ws48{word-spacing:17.347752px;}
.ws42{word-spacing:17.418864px;}
.ws41{word-spacing:17.714880px;}
.wsac{word-spacing:18.357120px;}
.ws10f{word-spacing:18.524160px;}
.wsbe{word-spacing:18.575640px;}
.ws10e{word-spacing:18.639360px;}
.ws119{word-spacing:18.770400px;}
.ws10d{word-spacing:19.151040px;}
.ws10b{word-spacing:19.166400px;}
.wsbf{word-spacing:19.174080px;}
.ws10c{word-spacing:19.198080px;}
.wsbd{word-spacing:19.334880px;}
.wsbc{word-spacing:19.415040px;}
.ws2f{word-spacing:19.584000px;}
.wsc0{word-spacing:19.663920px;}
.wsad{word-spacing:19.670400px;}
.ws33{word-spacing:19.728000px;}
.wsbb{word-spacing:19.782240px;}
.ws30{word-spacing:19.800000px;}
.ws11a{word-spacing:19.847640px;}
.ws6{word-spacing:19.943996px;}
.ws31{word-spacing:20.064000px;}
.ws32{word-spacing:20.088000px;}
.ws36{word-spacing:20.160000px;}
.ws37{word-spacing:20.232000px;}
.ws9{word-spacing:20.304000px;}
.ws34{word-spacing:20.340000px;}
.ws7{word-spacing:20.352000px;}
.ws103{word-spacing:20.402640px;}
.wsa{word-spacing:20.412000px;}
.ws38{word-spacing:20.484000px;}
.ws3{word-spacing:20.520000px;}
.wsb{word-spacing:20.592000px;}
.ws8{word-spacing:20.663996px;}
.ws35{word-spacing:20.712000px;}
.ws4{word-spacing:20.844000px;}
.ws102{word-spacing:20.953920px;}
.ws104{word-spacing:21.002880px;}
.ws2{word-spacing:21.240000px;}
.ws9d{word-spacing:21.416400px;}
.ws0{word-spacing:21.456000px;}
.ws5{word-spacing:21.600000px;}
.ws1{word-spacing:22.104000px;}
.ws87{word-spacing:22.525680px;}
.ws16{word-spacing:22.680000px;}
.ws88{word-spacing:22.698000px;}
.ws18{word-spacing:22.752000px;}
.ws8c{word-spacing:22.941360px;}
.ws8b{word-spacing:23.090640px;}
.ws15{word-spacing:23.448000px;}
.ws17{word-spacing:23.664000px;}
.ws19{word-spacing:23.724000px;}
.wsda{word-spacing:25.959600px;}
.wsd8{word-spacing:26.444880px;}
.wsd9{word-spacing:26.612640px;}
.ws11b{word-spacing:28.396800px;}
.ws11c{word-spacing:28.504920px;}
.ws11d{word-spacing:29.044800px;}
.wsdb{word-spacing:29.050560px;}
.wsdd{word-spacing:29.156880px;}
.wsdc{word-spacing:29.492640px;}
.ws112{word-spacing:30.304800px;}
.ws110{word-spacing:31.033920px;}
.ws111{word-spacing:31.202640px;}
.ws4d{word-spacing:33.192000px;}
.ws4e{word-spacing:33.696000px;}
.ws4b{word-spacing:33.816000px;}
.ws4a{word-spacing:34.488000px;}
.ws4c{word-spacing:34.524000px;}
.ws7d{word-spacing:34.704000px;}
.wsd7{word-spacing:40.124736px;}
.wsd5{word-spacing:40.855968px;}
.wsd6{word-spacing:40.981104px;}
.ws114{word-spacing:47.236080px;}
.ws115{word-spacing:47.504160px;}
.ws113{word-spacing:47.507520px;}
.ws91{word-spacing:47.630640px;}
.ws90{word-spacing:47.936640px;}
.ws92{word-spacing:48.212640px;}
.ws79{word-spacing:49.824000px;}
.ws59{word-spacing:63.126000px;}
.ws58{word-spacing:63.209160px;}
.ws6e{word-spacing:63.414720px;}
.ws98{word-spacing:75.726144px;}
.wse1{word-spacing:76.254000px;}
.ws62{word-spacing:76.266000px;}
.wsd4{word-spacing:76.336080px;}
.wsa4{word-spacing:76.410000px;}
.ws99{word-spacing:76.907520px;}
.ws9e{word-spacing:84.861360px;}
.ws9c{word-spacing:92.467080px;}
.ws9b{word-spacing:93.318480px;}
.ws93{word-spacing:113.889360px;}
.wsa0{word-spacing:128.558160px;}
.ws8a{word-spacing:151.847040px;}
.ws89{word-spacing:152.460000px;}
.ws9a{word-spacing:171.286560px;}
._b{margin-left:-6.955104px;}
._11{margin-left:-5.472000px;}
._7{margin-left:-4.219776px;}
._8{margin-left:-2.415840px;}
._0{margin-left:-1.232640px;}
._1{width:1.008000px;}
._c{width:2.243520px;}
._e{width:3.750336px;}
._1a{width:12.807312px;}
._d{width:14.057520px;}
._9{width:15.214560px;}
._10{width:16.709760px;}
._a{width:18.566976px;}
._f{width:20.539008px;}
._4{width:22.368000px;}
._14{width:26.969808px;}
._2{width:28.616592px;}
._13{width:32.880480px;}
._16{width:35.874240px;}
._6{width:39.666480px;}
._12{width:45.230016px;}
._17{width:47.153280px;}
._3{width:55.969920px;}
._18{width:64.539840px;}
._5{width:77.913360px;}
._19{width:108.921600px;}
._15{width:112.465440px;}
.fc8{color:rgb(0,112,192);}
.fc7{color:transparent;}
.fc6{color:rgb(71,212,90);}
.fc2{color:rgb(247,121,121);}
.fc5{color:rgb(131,203,235);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(146,208,80);}
.fc1{color:rgb(78,149,217);}
.fc9{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:18.000000px;}
.fs22{font-size:31.680000px;}
.fs26{font-size:41.760000px;}
.fs21{font-size:48.240000px;}
.fs23{font-size:59.760000px;}
.fs1b{font-size:61.200000px;}
.fs1c{font-size:63.360000px;}
.fs20{font-size:63.504000px;}
.fsf{font-size:66.240000px;}
.fse{font-size:66.384000px;}
.fs24{font-size:69.120000px;}
.fs25{font-size:69.264000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:72.144000px;}
.fs1a{font-size:77.760000px;}
.fs1f{font-size:77.904000px;}
.fs13{font-size:81.360000px;}
.fsc{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fsb{font-size:102.240000px;}
.fs12{font-size:102.384000px;}
.fs1e{font-size:105.120000px;}
.fs10{font-size:108.000000px;}
.fs17{font-size:108.144000px;}
.fs1d{font-size:120.384000px;}
.fs8{font-size:131.760000px;}
.fsa{font-size:131.904000px;}
.fs19{font-size:144.000000px;}
.fs4{font-size:152.640000px;}
.fs0{font-size:154.080000px;}
.fsd{font-size:167.760000px;}
.fs15{font-size:167.904000px;}
.fs7{font-size:192.240000px;}
.fs11{font-size:216.144000px;}
.fs18{font-size:288.144000px;}
.fs6{font-size:324.000000px;}
.fs5{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y174{bottom:9.072000px;}
.y104{bottom:9.756000px;}
.ybf{bottom:16.416000px;}
.y90{bottom:24.732000px;}
.yd7{bottom:25.272000px;}
.y173{bottom:28.008000px;}
.y12d{bottom:29.520000px;}
.y103{bottom:29.556000px;}
.y5d{bottom:30.744000px;}
.y117{bottom:32.544000px;}
.y37{bottom:34.200000px;}
.ybe{bottom:36.216000px;}
.yd6{bottom:44.172000px;}
.y8f{bottom:44.532000px;}
.y172{bottom:46.908000px;}
.y12c{bottom:47.520000px;}
.y5c{bottom:52.344000px;}
.y36{bottom:54.000000px;}
.y116{bottom:54.180000px;}
.y15a{bottom:55.908000px;}
.ybd{bottom:56.016000px;}
.ye7{bottom:63.972000px;}
.y8e{bottom:64.332000px;}
.y12b{bottom:65.520000px;}
.y171{bottom:65.808000px;}
.y35{bottom:73.800000px;}
.y5b{bottom:73.944000px;}
.y159{bottom:76.608000px;}
.yc5{bottom:79.416000px;}
.y78{bottom:82.440000px;}
.y170{bottom:84.708000px;}
.y34{bottom:93.600000px;}
.ye6{bottom:96.732000px;}
.y158{bottom:97.308000px;}
.y1e{bottom:101.844000px;}
.y16f{bottom:103.608000px;}
.y137{bottom:110.304000px;}
.y77{bottom:111.276000px;}
.yc4{bottom:112.176000px;}
.y33{bottom:113.436000px;}
.y157{bottom:118.008000px;}
.yb0{bottom:118.584000px;}
.y7c{bottom:126.396000px;}
.y14{bottom:128.952000px;}
.ye5{bottom:129.132000px;}
.y43{bottom:131.148000px;}
.y134{bottom:135.144000px;}
.y115{bottom:135.324000px;}
.y156{bottom:138.708000px;}
.y76{bottom:140.076000px;}
.y60{bottom:140.256000px;}
.yc3{bottom:144.576000px;}
.yaf{bottom:147.384000px;}
.y1d{bottom:149.544000px;}
.y133{bottom:153.150000px;}
.y7b{bottom:155.190000px;}
.y13{bottom:157.755000px;}
.y155{bottom:159.405000px;}
.ye4{bottom:161.565000px;}
.y75{bottom:168.870000px;}
.y42{bottom:169.845000px;}
.y5f{bottom:172.695000px;}
.y3a{bottom:174.675000px;}
.yae{bottom:176.190000px;}
.yc2{bottom:176.970000px;}
.y154{bottom:180.105000px;}
.y7a{bottom:183.990000px;}
.y16e{bottom:184.935000px;}
.y114{bottom:185.730000px;}
.y12{bottom:186.555000px;}
.y12f{bottom:189.975000px;}
.y1c{bottom:192.780000px;}
.y153{bottom:200.805000px;}
.y138{bottom:201.750000px;}
.y5e{bottom:205.095000px;}
.y39{bottom:207.075000px;}
.y41{bottom:208.545000px;}
.y16d{bottom:210.135000px;}
.y113{bottom:210.930000px;}
.y11{bottom:215.355000px;}
.y152{bottom:221.550000px;}
.y102{bottom:223.230000px;}
.ya2{bottom:227.415000px;}
.yfe{bottom:233.100000px;}
.y40{bottom:233.745000px;}
.y16c{bottom:235.335000px;}
.y101{bottom:237.630000px;}
.yb3{bottom:239.115000px;}
.y38{bottom:239.475000px;}
.y1b{bottom:240.480000px;}
.y135{bottom:241.635000px;}
.y151{bottom:242.250000px;}
.yd5{bottom:243.795000px;}
.ya1{bottom:249.015000px;}
.y130{bottom:249.195000px;}
.y8d{bottom:252.150000px;}
.yfd{bottom:254.700000px;}
.y3f{bottom:258.990000px;}
.y16b{bottom:260.535000px;}
.yb2{bottom:260.715000px;}
.y74{bottom:260.745000px;}
.y112{bottom:261.360000px;}
.y150{bottom:262.950000px;}
.y100{bottom:267.510000px;}
.yd4{bottom:269.175000px;}
.ye3{bottom:271.830000px;}
.yfc{bottom:276.300000px;}
.y54{bottom:276.630000px;}
.y8c{bottom:277.350000px;}
.y132{bottom:277.740000px;}
.y12e{bottom:280.545000px;}
.yb1{bottom:282.315000px;}
.y14f{bottom:283.650000px;}
.y16a{bottom:285.735000px;}
.yff{bottom:286.455000px;}
.y111{bottom:286.560000px;}
.y1a{bottom:288.180000px;}
.y73{bottom:289.545000px;}
.ya0{bottom:292.215000px;}
.yd3{bottom:294.375000px;}
.y131{bottom:295.740000px;}
.y3e{bottom:297.690000px;}
.yfb{bottom:297.900000px;}
.y53{bottom:304.350000px;}
.y136{bottom:308.670000px;}
.y169{bottom:310.935000px;}
.y110{bottom:311.760000px;}
.y2f{bottom:315.690000px;}
.y72{bottom:318.345000px;}
.yfa{bottom:319.500000px;}
.yd2{bottom:319.575000px;}
.ye2{bottom:322.230000px;}
.y3d{bottom:322.890000px;}
.y10{bottom:324.930000px;}
.y14e{bottom:325.050000px;}
.y12a{bottom:327.315000px;}
.y19{bottom:331.410000px;}
.y52{bottom:332.070000px;}
.y9f{bottom:335.415000px;}
.y168{bottom:336.165000px;}
.y2e{bottom:337.320000px;}
.yf9{bottom:341.130000px;}
.y8b{bottom:343.545000px;}
.yd1{bottom:344.775000px;}
.y14d{bottom:345.750000px;}
.yf{bottom:346.530000px;}
.y71{bottom:347.145000px;}
.ye1{bottom:347.430000px;}
.y3c{bottom:348.090000px;}
.y129{bottom:350.715000px;}
.y9e{bottom:357.015000px;}
.y2d{bottom:358.920000px;}
.y51{bottom:359.790000px;}
.y10f{bottom:362.160000px;}
.yf8{bottom:362.730000px;}
.y14c{bottom:366.450000px;}
.ye{bottom:368.175000px;}
.y8a{bottom:368.745000px;}
.yd0{bottom:369.975000px;}
.ye0{bottom:372.630000px;}
.y167{bottom:373.425000px;}
.y128{bottom:374.115000px;}
.y70{bottom:375.945000px;}
.y18{bottom:383.070000px;}
.yf7{bottom:384.330000px;}
.y14b{bottom:387.180000px;}
.y10e{bottom:387.360000px;}
.y50{bottom:387.510000px;}
.yd{bottom:389.775000px;}
.y2c{bottom:390.240000px;}
.y89{bottom:393.990000px;}
.ycf{bottom:395.205000px;}
.y49{bottom:397.365000px;}
.y127{bottom:397.515000px;}
.y166{bottom:398.625000px;}
.y9d{bottom:400.245000px;}
.y6f{bottom:404.790000px;}
.yf6{bottom:405.930000px;}
.y14a{bottom:407.880000px;}
.yc{bottom:411.375000px;}
.y10d{bottom:412.560000px;}
.y4f{bottom:415.230000px;}
.y88{bottom:419.190000px;}
.y126{bottom:420.945000px;}
.y9c{bottom:421.845000px;}
.ydf{bottom:423.075000px;}
.y165{bottom:423.825000px;}
.yf5{bottom:427.530000px;}
.y149{bottom:428.580000px;}
.yb{bottom:432.975000px;}
.y6e{bottom:433.590000px;}
.y10c{bottom:437.790000px;}
.y4e{bottom:442.980000px;}
.y125{bottom:444.345000px;}
.y87{bottom:444.390000px;}
.ybc{bottom:444.420000px;}
.yde{bottom:448.275000px;}
.y164{bottom:449.025000px;}
.yf4{bottom:449.130000px;}
.y148{bottom:449.280000px;}
.y9b{bottom:465.045000px;}
.ybb{bottom:466.920000px;}
.y124{bottom:467.745000px;}
.y147{bottom:469.980000px;}
.yf3{bottom:470.730000px;}
.y32{bottom:473.865000px;}
.y163{bottom:474.225000px;}
.yce{bottom:478.620000px;}
.y24{bottom:479.190000px;}
.y4d{bottom:481.680000px;}
.y9a{bottom:486.645000px;}
.yba{bottom:489.420000px;}
.y10b{bottom:490.650000px;}
.y146{bottom:490.860000px;}
.yf2{bottom:492.330000px;}
.y6a{bottom:493.710000px;}
.y31{bottom:495.465000px;}
.y81{bottom:496.620000px;}
.y162{bottom:499.470000px;}
.y48{bottom:503.280000px;}
.y5a{bottom:503.970000px;}
.ycd{bottom:504.000000px;}
.y59{bottom:509.370000px;}
.yb9{bottom:511.920000px;}
.y123{bottom:514.545000px;}
.yf1{bottom:514.695000px;}
.y58{bottom:514.770000px;}
.ydd{bottom:514.875000px;}
.y80{bottom:521.850000px;}
.ya{bottom:524.445000px;}
.y145{bottom:524.625000px;}
.y161{bottom:524.670000px;}
.ycc{bottom:529.200000px;}
.y23{bottom:529.590000px;}
.y99{bottom:529.890000px;}
.y6d{bottom:533.445000px;}
.y122{bottom:537.945000px;}
.yb8{bottom:543.990000px;}
.y9{bottom:546.090000px;}
.y144{bottom:546.270000px;}
.y7f{bottom:547.050000px;}
.y160{bottom:549.870000px;}
.y98{bottom:551.490000px;}
.y47{bottom:553.680000px;}
.ycb{bottom:554.400000px;}
.y10a{bottom:556.380000px;}
.y6c{bottom:558.645000px;}
.y121{bottom:561.345000px;}
.yb7{bottom:566.490000px;}
.y8{bottom:567.690000px;}
.y143{bottom:567.870000px;}
.y2b{bottom:571.680000px;}
.y7e{bottom:572.250000px;}
.y97{bottom:573.090000px;}
.yf0{bottom:573.990000px;}
.y15f{bottom:575.070000px;}
.yca{bottom:579.600000px;}
.y22{bottom:580.035000px;}
.y69{bottom:580.245000px;}
.y57{bottom:581.730000px;}
.y6b{bottom:583.845000px;}
.y120{bottom:584.790000px;}
.y109{bottom:585.180000px;}
.y7{bottom:589.290000px;}
.y142{bottom:589.470000px;}
.y2a{bottom:593.280000px;}
.y7d{bottom:597.450000px;}
.yef{bottom:597.570000px;}
.y46{bottom:599.610000px;}
.y56{bottom:603.330000px;}
.yb6{bottom:604.005000px;}
.yc9{bottom:604.830000px;}
.y96{bottom:606.390000px;}
.y68{bottom:609.045000px;}
.y6{bottom:610.890000px;}
.y141{bottom:611.070000px;}
.y15e{bottom:612.150000px;}
.ydc{bottom:613.260000px;}
.y29{bottom:614.880000px;}
.yee{bottom:620.970000px;}
.y11f{bottom:622.590000px;}
.yb5{bottom:625.650000px;}
.yc8{bottom:630.030000px;}
.y21{bottom:630.435000px;}
.y86{bottom:631.980000px;}
.y140{bottom:632.670000px;}
.y15d{bottom:637.350000px;}
.y67{bottom:637.845000px;}
.y28{bottom:641.700000px;}
.ydb{bottom:642.090000px;}
.y108{bottom:642.780000px;}
.yed{bottom:644.370000px;}
.y11e{bottom:645.990000px;}
.yb4{bottom:647.250000px;}
.y45{bottom:650.010000px;}
.y5{bottom:654.090000px;}
.yc7{bottom:655.230000px;}
.y94{bottom:655.995000px;}
.ya6{bottom:657.150000px;}
.y13f{bottom:661.530000px;}
.y15c{bottom:662.580000px;}
.y66{bottom:666.645000px;}
.yec{bottom:667.800000px;}
.y11d{bottom:669.390000px;}
.yda{bottom:670.890000px;}
.y4c{bottom:673.590000px;}
.y4{bottom:675.690000px;}
.y20{bottom:676.335000px;}
.y93{bottom:679.395000px;}
.yc6{bottom:680.430000px;}
.ya5{bottom:680.550000px;}
.y85{bottom:681.840000px;}
.yad{bottom:681.945000px;}
.y13e{bottom:683.130000px;}
.y15b{bottom:687.780000px;}
.yeb{bottom:691.200000px;}
.y11c{bottom:692.790000px;}
.y27{bottom:694.620000px;}
.y65{bottom:695.490000px;}
.y3{bottom:697.290000px;}
.y107{bottom:698.370000px;}
.y4b{bottom:700.455000px;}
.y92{bottom:702.795000px;}
.yac{bottom:703.545000px;}
.ya4{bottom:703.950000px;}
.y13d{bottom:704.730000px;}
.y44{bottom:705.630000px;}
.y84{bottom:707.040000px;}
.yea{bottom:714.600000px;}
.y11b{bottom:716.190000px;}
.y26{bottom:716.220000px;}
.y15{bottom:723.930000px;}
.y64{bottom:724.290000px;}
.yab{bottom:725.145000px;}
.y91{bottom:726.225000px;}
.y13c{bottom:726.330000px;}
.yd9{bottom:726.450000px;}
.ya3{bottom:727.380000px;}
.y1f{bottom:730.005000px;}
.y83{bottom:732.240000px;}
.yc0{bottom:737.025000px;}
.ye9{bottom:738.000000px;}
.y61{bottom:739.545000px;}
.y11a{bottom:739.620000px;}
.y25{bottom:743.070000px;}
.y4a{bottom:743.295000px;}
.yaa{bottom:746.790000px;}
.y13b{bottom:747.930000px;}
.y82{bottom:757.440000px;}
.y95{bottom:761.685000px;}
.y16{bottom:761.760000px;}
.y63{bottom:765.180000px;}
.ya9{bottom:768.390000px;}
.y106{bottom:769.170000px;}
.y13a{bottom:769.575000px;}
.y2{bottom:771.150000px;}
.y119{bottom:778.680000px;}
.y55{bottom:801.285000px;}
.y3b{bottom:807.450000px;}
.y30{bottom:811.620000px;}
.y1{bottom:812.730000px;}
.yc1{bottom:817.305000px;}
.y17{bottom:819.720000px;}
.ya8{bottom:821.730000px;}
.ya7{bottom:826.170000px;}
.y139{bottom:826.635000px;}
.yd8{bottom:827.280000px;}
.ye8{bottom:831.525000px;}
.y105{bottom:832.470000px;}
.y62{bottom:832.860000px;}
.y79{bottom:834.915000px;}
.y118{bottom:837.150000px;}
.h22{height:16.136719px;}
.h35{height:41.809570px;}
.h34{height:41.857031px;}
.h39{height:51.793945px;}
.h3a{height:51.881484px;}
.h33{height:53.552813px;}
.h32{height:53.674523px;}
.h3e{height:55.006875px;}
.h3f{height:55.131891px;}
.h38{height:55.879102px;}
.h2b{height:59.245312px;}
.h3c{height:59.906250px;}
.h3d{height:60.031055px;}
.h18{height:61.938281px;}
.h16{height:62.072930px;}
.h10{height:62.402344px;}
.h11{height:62.507812px;}
.h12{height:62.527148px;}
.h13{height:62.632828px;}
.h37{height:65.450039px;}
.h3{height:67.324219px;}
.h29{height:67.394531px;}
.h4{height:67.458867px;}
.h30{height:67.508437px;}
.h31{height:67.519336px;}
.h1e{height:70.514648px;}
.h3b{height:71.200898px;}
.h17{height:72.547031px;}
.h1b{height:73.010742px;}
.hf{height:73.134141px;}
.h1f{height:73.135547px;}
.h20{height:73.259156px;}
.h15{height:78.855469px;}
.hc{height:82.995117px;}
.hb{height:83.119922px;}
.h1d{height:83.135391px;}
.h28{height:83.260406px;}
.he{height:88.611328px;}
.h1c{height:88.736133px;}
.h5{height:89.541211px;}
.h19{height:93.603516px;}
.h23{height:93.728320px;}
.h2a{height:93.761719px;}
.h2e{height:93.886734px;}
.h27{height:104.877773px;}
.h2d{height:105.035484px;}
.ha{height:114.389297px;}
.hd{height:114.514313px;}
.h2f{height:115.128984px;}
.h26{height:118.283203px;}
.h36{height:118.440914px;}
.h2c{height:131.846344px;}
.h25{height:157.710938px;}
.h6{height:167.173654px;}
.h2{height:168.750703px;}
.h14{height:183.733242px;}
.h21{height:183.890953px;}
.h9{height:210.544102px;}
.h1a{height:236.724117px;}
.h24{height:315.579586px;}
.h8{height:354.849609px;}
.h7{height:355.007320px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x6{left:29.951991px;}
.x4{left:31.463991px;}
.x3{left:42.263991px;}
.x52{left:54.575991px;}
.x1{left:64.907991px;}
.x51{left:67.967991px;}
.x40{left:72.467991px;}
.x53{left:76.247991px;}
.xb{left:77.543991px;}
.x58{left:78.767991px;}
.x54{left:80.207991px;}
.xe{left:81.323991px;}
.x56{left:83.987991px;}
.x11{left:87.047991px;}
.x14{left:89.927991px;}
.x2e{left:91.691991px;}
.x38{left:95.867991px;}
.x2d{left:97.091991px;}
.x4b{left:98.279991px;}
.x3d{left:99.935991px;}
.x31{left:102.131991px;}
.x25{left:103.211991px;}
.x1f{left:105.407991px;}
.x1b{left:107.207991px;}
.xc{left:109.043991px;}
.x15{left:110.087991px;}
.x49{left:111.167991px;}
.xf{left:112.859991px;}
.x46{left:114.191991px;}
.x12{left:118.547991px;}
.x3c{left:119.735991px;}
.x3b{left:121.247991px;}
.x45{left:124.919991px;}
.x17{left:126.575991px;}
.x10{left:128.519991px;}
.x1e{left:129.923991px;}
.x22{left:131.615991px;}
.x18{left:132.875991px;}
.x13{left:134.207991px;}
.x20{left:136.907991px;}
.x9{left:138.887991px;}
.x2f{left:140.003991px;}
.x19{left:141.731991px;}
.xa{left:143.855991px;}
.x3e{left:146.375991px;}
.x1a{left:147.671991px;}
.xd{left:149.579991px;}
.x37{left:151.379991px;}
.x21{left:152.609991px;}
.x23{left:154.109991px;}
.x39{left:155.954991px;}
.x48{left:158.039991px;}
.x26{left:159.584991px;}
.x16{left:160.949991px;}
.x1c{left:163.364991px;}
.x3a{left:164.804991px;}
.x30{left:166.469991px;}
.x28{left:173.189991px;}
.x55{left:174.569991px;}
.x34{left:179.309991px;}
.x35{left:183.809991px;}
.x43{left:185.579991px;}
.x24{left:187.994991px;}
.x33{left:202.169991px;}
.x2{left:218.879991px;}
.x1d{left:222.809991px;}
.x4a{left:230.549991px;}
.x41{left:232.814991px;}
.x3f{left:252.794991px;}
.x8{left:253.949991px;}
.x27{left:256.499991px;}
.x36{left:258.194991px;}
.x44{left:262.469991px;}
.x57{left:263.519991px;}
.x5{left:265.469991px;}
.x2c{left:273.989991px;}
.x2a{left:317.699991px;}
.x29{left:319.499991px;}
.x42{left:340.589991px;}
.x32{left:351.824991px;}
.x2b{left:377.489991px;}
.x47{left:382.034991px;}
.x4f{left:393.329991px;}
.x50{left:406.289991px;}
.x4e{left:490.394991px;}
.x4d{left:491.399991px;}
.x4c{left:494.894991px;}
.x7{left:557.129991px;}
@media print{
.v1{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v3{vertical-align:16.640000pt;}
.ls55{letter-spacing:-0.954667pt;}
.ls4b{letter-spacing:-0.912000pt;}
.ls47{letter-spacing:-0.498133pt;}
.ls44{letter-spacing:-0.462400pt;}
.ls39{letter-spacing:-0.458133pt;}
.ls30{letter-spacing:-0.407467pt;}
.ls51{letter-spacing:-0.394133pt;}
.ls20{letter-spacing:-0.386667pt;}
.ls48{letter-spacing:-0.374400pt;}
.ls4a{letter-spacing:-0.329600pt;}
.ls1f{letter-spacing:-0.326400pt;}
.ls5a{letter-spacing:-0.324267pt;}
.ls43{letter-spacing:-0.312533pt;}
.ls19{letter-spacing:-0.306133pt;}
.ls49{letter-spacing:-0.301867pt;}
.ls27{letter-spacing:-0.295467pt;}
.ls25{letter-spacing:-0.293867pt;}
.ls23{letter-spacing:-0.287467pt;}
.ls31{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.258133pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls41{letter-spacing:-0.237867pt;}
.ls2b{letter-spacing:-0.229333pt;}
.ls22{letter-spacing:-0.221867pt;}
.ls1e{letter-spacing:-0.201600pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.179733pt;}
.ls2e{letter-spacing:-0.140800pt;}
.ls34{letter-spacing:-0.133333pt;}
.ls2f{letter-spacing:-0.130133pt;}
.ls6{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.102400pt;}
.ls3e{letter-spacing:-0.101867pt;}
.ls3c{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.083200pt;}
.ls35{letter-spacing:-0.071467pt;}
.ls9{letter-spacing:-0.066667pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls3b{letter-spacing:-0.051200pt;}
.lsc{letter-spacing:-0.045440pt;}
.ls52{letter-spacing:-0.030720pt;}
.ls26{letter-spacing:-0.017653pt;}
.ls21{letter-spacing:-0.014080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls46{letter-spacing:0.010240pt;}
.ls54{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.045547pt;}
.ls40{letter-spacing:0.053867pt;}
.ls4e{letter-spacing:0.059733pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls36{letter-spacing:0.071467pt;}
.ls32{letter-spacing:0.088533pt;}
.ls11{letter-spacing:0.109867pt;}
.ls10{letter-spacing:0.110080pt;}
.ls13{letter-spacing:0.114133pt;}
.lsb{letter-spacing:0.116800pt;}
.ls3{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.141867pt;}
.ls2a{letter-spacing:0.153600pt;}
.ls4c{letter-spacing:0.160533pt;}
.ls3f{letter-spacing:0.174933pt;}
.ls53{letter-spacing:0.181867pt;}
.ls2{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.210133pt;}
.ls57{letter-spacing:0.213333pt;}
.ls4d{letter-spacing:0.218133pt;}
.ls45{letter-spacing:0.230400pt;}
.ls24{letter-spacing:0.232533pt;}
.ls3a{letter-spacing:0.245867pt;}
.ls7{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.263467pt;}
.ls33{letter-spacing:0.346133pt;}
.lsa{letter-spacing:0.380800pt;}
.ls42{letter-spacing:0.391467pt;}
.ls50{letter-spacing:0.554667pt;}
.ls4f{letter-spacing:0.682667pt;}
.ls56{letter-spacing:0.693333pt;}
.ls5b{letter-spacing:11.361280pt;}
.lsf{letter-spacing:23.872000pt;}
.ls18{letter-spacing:23.976533pt;}
.ls17{letter-spacing:24.021333pt;}
.ls37{letter-spacing:24.575360pt;}
.ls14{letter-spacing:33.280000pt;}
.ls15{letter-spacing:49.280000pt;}
.ls1b{letter-spacing:94.056533pt;}
.ls1c{letter-spacing:94.101333pt;}
.ls1a{letter-spacing:95.168000pt;}
.ls59{letter-spacing:97.875200pt;}
.ls58{letter-spacing:97.920000pt;}
.ls2d{letter-spacing:147.862400pt;}
.ws57{word-spacing:-124.992000pt;}
.ws9f{word-spacing:-74.880000pt;}
.wsa3{word-spacing:-36.997632pt;}
.ws6b{word-spacing:-36.942080pt;}
.ws69{word-spacing:-27.776000pt;}
.ws60{word-spacing:-25.553920pt;}
.ws53{word-spacing:-25.405440pt;}
.ws54{word-spacing:-25.367680pt;}
.ws55{word-spacing:-25.348480pt;}
.ws49{word-spacing:-19.174272pt;}
.ws14{word-spacing:-19.136000pt;}
.ws63{word-spacing:-18.448640pt;}
.ws5a{word-spacing:-17.279360pt;}
.ws6d{word-spacing:-17.265280pt;}
.wsa2{word-spacing:-16.839680pt;}
.ws130{word-spacing:-15.882880pt;}
.ws65{word-spacing:-15.226624pt;}
.ws64{word-spacing:-15.200640pt;}
.wsfc{word-spacing:-14.057344pt;}
.ws78{word-spacing:-14.031360pt;}
.ws5c{word-spacing:-13.017984pt;}
.ws5b{word-spacing:-12.992000pt;}
.ws7b{word-spacing:-12.736000pt;}
.ws132{word-spacing:-12.472320pt;}
.wscb{word-spacing:-11.663360pt;}
.wsca{word-spacing:-10.996544pt;}
.ws131{word-spacing:-10.783360pt;}
.ws5f{word-spacing:-9.516373pt;}
.wscf{word-spacing:-8.846507pt;}
.ws5e{word-spacing:-8.734293pt;}
.wscc{word-spacing:-8.714880pt;}
.wsd2{word-spacing:-8.524800pt;}
.ws77{word-spacing:-8.486400pt;}
.ws80{word-spacing:-8.379733pt;}
.wscd{word-spacing:-8.206507pt;}
.ws12f{word-spacing:-6.071040pt;}
.wsce{word-spacing:-5.716480pt;}
.ws12e{word-spacing:-4.562133pt;}
.ws68{word-spacing:-4.512000pt;}
.ws67{word-spacing:-4.448000pt;}
.wsde{word-spacing:-1.991040pt;}
.wsd0{word-spacing:-1.838080pt;}
.ws4f{word-spacing:-1.344000pt;}
.wsf1{word-spacing:-1.334400pt;}
.ws6a{word-spacing:-1.149739pt;}
.wsf4{word-spacing:-1.060373pt;}
.wsd{word-spacing:-0.960000pt;}
.ws75{word-spacing:-0.897920pt;}
.ws26{word-spacing:-0.768000pt;}
.wsef{word-spacing:-0.752853pt;}
.wsf3{word-spacing:-0.735360pt;}
.wsa8{word-spacing:-0.722240pt;}
.ws61{word-spacing:-0.714667pt;}
.wse7{word-spacing:-0.676928pt;}
.wsa5{word-spacing:-0.656213pt;}
.ws82{word-spacing:-0.618667pt;}
.ws71{word-spacing:-0.608000pt;}
.wsf0{word-spacing:-0.575680pt;}
.ws76{word-spacing:-0.535253pt;}
.ws6c{word-spacing:-0.525440pt;}
.wsd3{word-spacing:-0.477440pt;}
.wsf5{word-spacing:-0.462080pt;}
.ws128{word-spacing:-0.456533pt;}
.ws7e{word-spacing:-0.448000pt;}
.ws117{word-spacing:-0.424320pt;}
.wse9{word-spacing:-0.394837pt;}
.ws10{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.320000pt;}
.wsd1{word-spacing:-0.277333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws72{word-spacing:-0.181120pt;}
.ws12{word-spacing:-0.160000pt;}
.wsf2{word-spacing:-0.099200pt;}
.wsa7{word-spacing:-0.074667pt;}
.ws96{word-spacing:-0.061013pt;}
.ws116{word-spacing:-0.036693pt;}
.ws56{word-spacing:0.000000pt;}
.ws73{word-spacing:0.073600pt;}
.ws118{word-spacing:0.089600pt;}
.ws7c{word-spacing:0.096000pt;}
.ws120{word-spacing:0.104107pt;}
.ws11e{word-spacing:0.120320pt;}
.ws129{word-spacing:0.140800pt;}
.ws127{word-spacing:0.197120pt;}
.wsc8{word-spacing:0.199040pt;}
.ws84{word-spacing:0.259200pt;}
.wsc9{word-spacing:0.372480pt;}
.ws52{word-spacing:0.384000pt;}
.ws85{word-spacing:0.434560pt;}
.wsf{word-spacing:0.447996pt;}
.ws27{word-spacing:0.448000pt;}
.ws7f{word-spacing:0.448640pt;}
.wsc7{word-spacing:0.465920pt;}
.ws11f{word-spacing:0.616960pt;}
.wsa6{word-spacing:0.672000pt;}
.ws6f{word-spacing:0.680747pt;}
.ws83{word-spacing:0.772267pt;}
.ws66{word-spacing:0.938667pt;}
.ws81{word-spacing:0.949333pt;}
.ws11{word-spacing:0.960000pt;}
.wsc{word-spacing:1.024000pt;}
.ws5d{word-spacing:1.098667pt;}
.wse{word-spacing:1.130667pt;}
.wse0{word-spacing:1.141547pt;}
.wse8{word-spacing:1.227648pt;}
.ws97{word-spacing:1.255680pt;}
.ws7a{word-spacing:1.322667pt;}
.ws50{word-spacing:1.344000pt;}
.ws70{word-spacing:1.535680pt;}
.wsab{word-spacing:1.745920pt;}
.wsaa{word-spacing:1.791680pt;}
.wsa1{word-spacing:1.895680pt;}
.ws109{word-spacing:1.926827pt;}
.ws1c{word-spacing:2.090667pt;}
.ws108{word-spacing:2.135680pt;}
.ws1b{word-spacing:2.176000pt;}
.ws1e{word-spacing:2.368000pt;}
.ws105{word-spacing:2.375680pt;}
.wsb2{word-spacing:2.417237pt;}
.wsa9{word-spacing:2.444373pt;}
.wsdf{word-spacing:2.542080pt;}
.ws10a{word-spacing:2.575040pt;}
.ws1a{word-spacing:2.688000pt;}
.ws107{word-spacing:2.711040pt;}
.wsb6{word-spacing:2.781995pt;}
.wsb5{word-spacing:2.824832pt;}
.wsb4{word-spacing:2.983723pt;}
.ws1d{word-spacing:3.008000pt;}
.wsb3{word-spacing:3.030720pt;}
.ws126{word-spacing:3.216640pt;}
.ws106{word-spacing:3.559040pt;}
.wsc4{word-spacing:3.732480pt;}
.wsc2{word-spacing:3.778347pt;}
.wsc6{word-spacing:3.962880pt;}
.wsc1{word-spacing:4.160427pt;}
.ws8d{word-spacing:4.418987pt;}
.ws122{word-spacing:4.495040pt;}
.ws123{word-spacing:4.504320pt;}
.wsc3{word-spacing:4.634240pt;}
.wsc5{word-spacing:4.684800pt;}
.ws8f{word-spacing:4.732800pt;}
.ws2c{word-spacing:4.800000pt;}
.ws125{word-spacing:4.847787pt;}
.wsb1{word-spacing:4.856320pt;}
.ws121{word-spacing:4.868267pt;}
.ws28{word-spacing:4.992000pt;}
.ws25{word-spacing:5.077120pt;}
.ws2d{word-spacing:5.120000pt;}
.ws8e{word-spacing:5.333333pt;}
.wsf9{word-spacing:5.663147pt;}
.wsfb{word-spacing:5.663488pt;}
.wsaf{word-spacing:6.003200pt;}
.wsae{word-spacing:6.052267pt;}
.ws2b{word-spacing:6.080000pt;}
.ws29{word-spacing:6.208000pt;}
.ws2e{word-spacing:6.368000pt;}
.ws2a{word-spacing:6.432000pt;}
.wsf7{word-spacing:6.633728pt;}
.ws20{word-spacing:6.762667pt;}
.ws21{word-spacing:6.816000pt;}
.ws23{word-spacing:6.954667pt;}
.wsb0{word-spacing:6.995200pt;}
.wsf8{word-spacing:7.133952pt;}
.ws124{word-spacing:7.134080pt;}
.wsfa{word-spacing:7.138944pt;}
.wsf6{word-spacing:7.172523pt;}
.ws22{word-spacing:7.232000pt;}
.ws94{word-spacing:7.272320pt;}
.ws1f{word-spacing:7.296000pt;}
.ws95{word-spacing:7.346987pt;}
.ws24{word-spacing:7.488000pt;}
.wse5{word-spacing:7.693440pt;}
.wse6{word-spacing:8.701867pt;}
.ws101{word-spacing:9.175680pt;}
.ws3e{word-spacing:9.344000pt;}
.ws40{word-spacing:9.568000pt;}
.ws3a{word-spacing:9.664000pt;}
.wsff{word-spacing:9.720320pt;}
.wsfd{word-spacing:9.722880pt;}
.ws39{word-spacing:9.728000pt;}
.ws3b{word-spacing:9.856000pt;}
.ws3d{word-spacing:9.962667pt;}
.ws3f{word-spacing:10.112000pt;}
.ws3c{word-spacing:10.304000pt;}
.ws100{word-spacing:10.305387pt;}
.wsfe{word-spacing:10.439040pt;}
.wsed{word-spacing:11.229227pt;}
.wsec{word-spacing:11.596160pt;}
.wse2{word-spacing:11.820160pt;}
.wseb{word-spacing:12.017280pt;}
.wsee{word-spacing:12.541867pt;}
.wsea{word-spacing:12.595200pt;}
.wse3{word-spacing:12.866347pt;}
.wse4{word-spacing:13.075200pt;}
.ws74{word-spacing:13.535787pt;}
.ws12b{word-spacing:13.615040pt;}
.ws12d{word-spacing:13.643947pt;}
.ws12c{word-spacing:13.644800pt;}
.wsba{word-spacing:13.655680pt;}
.ws12a{word-spacing:13.769387pt;}
.wsb7{word-spacing:14.091520pt;}
.ws43{word-spacing:14.682240pt;}
.ws86{word-spacing:14.763947pt;}
.wsb8{word-spacing:15.082347pt;}
.ws45{word-spacing:15.210048pt;}
.ws44{word-spacing:15.259264pt;}
.wsb9{word-spacing:15.331840pt;}
.ws47{word-spacing:15.413248pt;}
.ws46{word-spacing:15.417856pt;}
.ws48{word-spacing:15.420224pt;}
.ws42{word-spacing:15.483435pt;}
.ws41{word-spacing:15.746560pt;}
.wsac{word-spacing:16.317440pt;}
.ws10f{word-spacing:16.465920pt;}
.wsbe{word-spacing:16.511680pt;}
.ws10e{word-spacing:16.568320pt;}
.ws119{word-spacing:16.684800pt;}
.ws10d{word-spacing:17.023147pt;}
.ws10b{word-spacing:17.036800pt;}
.wsbf{word-spacing:17.043627pt;}
.ws10c{word-spacing:17.064960pt;}
.wsbd{word-spacing:17.186560pt;}
.wsbc{word-spacing:17.257813pt;}
.ws2f{word-spacing:17.408000pt;}
.wsc0{word-spacing:17.479040pt;}
.wsad{word-spacing:17.484800pt;}
.ws33{word-spacing:17.536000pt;}
.wsbb{word-spacing:17.584213pt;}
.ws30{word-spacing:17.600000pt;}
.ws11a{word-spacing:17.642347pt;}
.ws6{word-spacing:17.727996pt;}
.ws31{word-spacing:17.834667pt;}
.ws32{word-spacing:17.856000pt;}
.ws36{word-spacing:17.920000pt;}
.ws37{word-spacing:17.984000pt;}
.ws9{word-spacing:18.048000pt;}
.ws34{word-spacing:18.080000pt;}
.ws7{word-spacing:18.090667pt;}
.ws103{word-spacing:18.135680pt;}
.wsa{word-spacing:18.144000pt;}
.ws38{word-spacing:18.208000pt;}
.ws3{word-spacing:18.240000pt;}
.wsb{word-spacing:18.304000pt;}
.ws8{word-spacing:18.367996pt;}
.ws35{word-spacing:18.410667pt;}
.ws4{word-spacing:18.528000pt;}
.ws102{word-spacing:18.625707pt;}
.ws104{word-spacing:18.669227pt;}
.ws2{word-spacing:18.880000pt;}
.ws9d{word-spacing:19.036800pt;}
.ws0{word-spacing:19.072000pt;}
.ws5{word-spacing:19.200000pt;}
.ws1{word-spacing:19.648000pt;}
.ws87{word-spacing:20.022827pt;}
.ws16{word-spacing:20.160000pt;}
.ws88{word-spacing:20.176000pt;}
.ws18{word-spacing:20.224000pt;}
.ws8c{word-spacing:20.392320pt;}
.ws8b{word-spacing:20.525013pt;}
.ws15{word-spacing:20.842667pt;}
.ws17{word-spacing:21.034667pt;}
.ws19{word-spacing:21.088000pt;}
.wsda{word-spacing:23.075200pt;}
.wsd8{word-spacing:23.506560pt;}
.wsd9{word-spacing:23.655680pt;}
.ws11b{word-spacing:25.241600pt;}
.ws11c{word-spacing:25.337707pt;}
.ws11d{word-spacing:25.817600pt;}
.wsdb{word-spacing:25.822720pt;}
.wsdd{word-spacing:25.917227pt;}
.wsdc{word-spacing:26.215680pt;}
.ws112{word-spacing:26.937600pt;}
.ws110{word-spacing:27.585707pt;}
.ws111{word-spacing:27.735680pt;}
.ws4d{word-spacing:29.504000pt;}
.ws4e{word-spacing:29.952000pt;}
.ws4b{word-spacing:30.058667pt;}
.ws4a{word-spacing:30.656000pt;}
.ws4c{word-spacing:30.688000pt;}
.ws7d{word-spacing:30.848000pt;}
.wsd7{word-spacing:35.666432pt;}
.wsd5{word-spacing:36.316416pt;}
.wsd6{word-spacing:36.427648pt;}
.ws114{word-spacing:41.987627pt;}
.ws115{word-spacing:42.225920pt;}
.ws113{word-spacing:42.228907pt;}
.ws91{word-spacing:42.338347pt;}
.ws90{word-spacing:42.610347pt;}
.ws92{word-spacing:42.855680pt;}
.ws79{word-spacing:44.288000pt;}
.ws59{word-spacing:56.112000pt;}
.ws58{word-spacing:56.185920pt;}
.ws6e{word-spacing:56.368640pt;}
.ws98{word-spacing:67.312128pt;}
.wse1{word-spacing:67.781333pt;}
.ws62{word-spacing:67.792000pt;}
.wsd4{word-spacing:67.854293pt;}
.wsa4{word-spacing:67.920000pt;}
.ws99{word-spacing:68.362240pt;}
.ws9e{word-spacing:75.432320pt;}
.ws9c{word-spacing:82.192960pt;}
.ws9b{word-spacing:82.949760pt;}
.ws93{word-spacing:101.234987pt;}
.wsa0{word-spacing:114.273920pt;}
.ws8a{word-spacing:134.975147pt;}
.ws89{word-spacing:135.520000pt;}
.ws9a{word-spacing:152.254720pt;}
._b{margin-left:-6.182315pt;}
._11{margin-left:-4.864000pt;}
._7{margin-left:-3.750912pt;}
._8{margin-left:-2.147413pt;}
._0{margin-left:-1.095680pt;}
._1{width:0.896000pt;}
._c{width:1.994240pt;}
._e{width:3.333632pt;}
._1a{width:11.384277pt;}
._d{width:12.495573pt;}
._9{width:13.524053pt;}
._10{width:14.853120pt;}
._a{width:16.503979pt;}
._f{width:18.256896pt;}
._4{width:19.882667pt;}
._14{width:23.973163pt;}
._2{width:25.436971pt;}
._13{width:29.227093pt;}
._16{width:31.888213pt;}
._6{width:35.259093pt;}
._12{width:40.204459pt;}
._17{width:41.914027pt;}
._3{width:49.751040pt;}
._18{width:57.368747pt;}
._5{width:69.256320pt;}
._19{width:96.819200pt;}
._15{width:99.969280pt;}
.fs16{font-size:16.000000pt;}
.fs22{font-size:28.160000pt;}
.fs26{font-size:37.120000pt;}
.fs21{font-size:42.880000pt;}
.fs23{font-size:53.120000pt;}
.fs1b{font-size:54.400000pt;}
.fs1c{font-size:56.320000pt;}
.fs20{font-size:56.448000pt;}
.fsf{font-size:58.880000pt;}
.fse{font-size:59.008000pt;}
.fs24{font-size:61.440000pt;}
.fs25{font-size:61.568000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:64.128000pt;}
.fs1a{font-size:69.120000pt;}
.fs1f{font-size:69.248000pt;}
.fs13{font-size:72.320000pt;}
.fsc{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fsb{font-size:90.880000pt;}
.fs12{font-size:91.008000pt;}
.fs1e{font-size:93.440000pt;}
.fs10{font-size:96.000000pt;}
.fs17{font-size:96.128000pt;}
.fs1d{font-size:107.008000pt;}
.fs8{font-size:117.120000pt;}
.fsa{font-size:117.248000pt;}
.fs19{font-size:128.000000pt;}
.fs4{font-size:135.680000pt;}
.fs0{font-size:136.960000pt;}
.fsd{font-size:149.120000pt;}
.fs15{font-size:149.248000pt;}
.fs7{font-size:170.880000pt;}
.fs11{font-size:192.128000pt;}
.fs18{font-size:256.128000pt;}
.fs6{font-size:288.000000pt;}
.fs5{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y174{bottom:8.064000pt;}
.y104{bottom:8.672000pt;}
.ybf{bottom:14.592000pt;}
.y90{bottom:21.984000pt;}
.yd7{bottom:22.464000pt;}
.y173{bottom:24.896000pt;}
.y12d{bottom:26.240000pt;}
.y103{bottom:26.272000pt;}
.y5d{bottom:27.328000pt;}
.y117{bottom:28.928000pt;}
.y37{bottom:30.400000pt;}
.ybe{bottom:32.192000pt;}
.yd6{bottom:39.264000pt;}
.y8f{bottom:39.584000pt;}
.y172{bottom:41.696000pt;}
.y12c{bottom:42.240000pt;}
.y5c{bottom:46.528000pt;}
.y36{bottom:48.000000pt;}
.y116{bottom:48.160000pt;}
.y15a{bottom:49.696000pt;}
.ybd{bottom:49.792000pt;}
.ye7{bottom:56.864000pt;}
.y8e{bottom:57.184000pt;}
.y12b{bottom:58.240000pt;}
.y171{bottom:58.496000pt;}
.y35{bottom:65.600000pt;}
.y5b{bottom:65.728000pt;}
.y159{bottom:68.096000pt;}
.yc5{bottom:70.592000pt;}
.y78{bottom:73.280000pt;}
.y170{bottom:75.296000pt;}
.y34{bottom:83.200000pt;}
.ye6{bottom:85.984000pt;}
.y158{bottom:86.496000pt;}
.y1e{bottom:90.528000pt;}
.y16f{bottom:92.096000pt;}
.y137{bottom:98.048000pt;}
.y77{bottom:98.912000pt;}
.yc4{bottom:99.712000pt;}
.y33{bottom:100.832000pt;}
.y157{bottom:104.896000pt;}
.yb0{bottom:105.408000pt;}
.y7c{bottom:112.352000pt;}
.y14{bottom:114.624000pt;}
.ye5{bottom:114.784000pt;}
.y43{bottom:116.576000pt;}
.y134{bottom:120.128000pt;}
.y115{bottom:120.288000pt;}
.y156{bottom:123.296000pt;}
.y76{bottom:124.512000pt;}
.y60{bottom:124.672000pt;}
.yc3{bottom:128.512000pt;}
.yaf{bottom:131.008000pt;}
.y1d{bottom:132.928000pt;}
.y133{bottom:136.133333pt;}
.y7b{bottom:137.946667pt;}
.y13{bottom:140.226667pt;}
.y155{bottom:141.693333pt;}
.ye4{bottom:143.613333pt;}
.y75{bottom:150.106667pt;}
.y42{bottom:150.973333pt;}
.y5f{bottom:153.506667pt;}
.y3a{bottom:155.266667pt;}
.yae{bottom:156.613333pt;}
.yc2{bottom:157.306667pt;}
.y154{bottom:160.093333pt;}
.y7a{bottom:163.546667pt;}
.y16e{bottom:164.386667pt;}
.y114{bottom:165.093333pt;}
.y12{bottom:165.826667pt;}
.y12f{bottom:168.866667pt;}
.y1c{bottom:171.360000pt;}
.y153{bottom:178.493333pt;}
.y138{bottom:179.333333pt;}
.y5e{bottom:182.306667pt;}
.y39{bottom:184.066667pt;}
.y41{bottom:185.373333pt;}
.y16d{bottom:186.786667pt;}
.y113{bottom:187.493333pt;}
.y11{bottom:191.426667pt;}
.y152{bottom:196.933333pt;}
.y102{bottom:198.426667pt;}
.ya2{bottom:202.146667pt;}
.yfe{bottom:207.200000pt;}
.y40{bottom:207.773333pt;}
.y16c{bottom:209.186667pt;}
.y101{bottom:211.226667pt;}
.yb3{bottom:212.546667pt;}
.y38{bottom:212.866667pt;}
.y1b{bottom:213.760000pt;}
.y135{bottom:214.786667pt;}
.y151{bottom:215.333333pt;}
.yd5{bottom:216.706667pt;}
.ya1{bottom:221.346667pt;}
.y130{bottom:221.506667pt;}
.y8d{bottom:224.133333pt;}
.yfd{bottom:226.400000pt;}
.y3f{bottom:230.213333pt;}
.y16b{bottom:231.586667pt;}
.yb2{bottom:231.746667pt;}
.y74{bottom:231.773333pt;}
.y112{bottom:232.320000pt;}
.y150{bottom:233.733333pt;}
.y100{bottom:237.786667pt;}
.yd4{bottom:239.266667pt;}
.ye3{bottom:241.626667pt;}
.yfc{bottom:245.600000pt;}
.y54{bottom:245.893333pt;}
.y8c{bottom:246.533333pt;}
.y132{bottom:246.880000pt;}
.y12e{bottom:249.373333pt;}
.yb1{bottom:250.946667pt;}
.y14f{bottom:252.133333pt;}
.y16a{bottom:253.986667pt;}
.yff{bottom:254.626667pt;}
.y111{bottom:254.720000pt;}
.y1a{bottom:256.160000pt;}
.y73{bottom:257.373333pt;}
.ya0{bottom:259.746667pt;}
.yd3{bottom:261.666667pt;}
.y131{bottom:262.880000pt;}
.y3e{bottom:264.613333pt;}
.yfb{bottom:264.800000pt;}
.y53{bottom:270.533333pt;}
.y136{bottom:274.373333pt;}
.y169{bottom:276.386667pt;}
.y110{bottom:277.120000pt;}
.y2f{bottom:280.613333pt;}
.y72{bottom:282.973333pt;}
.yfa{bottom:284.000000pt;}
.yd2{bottom:284.066667pt;}
.ye2{bottom:286.426667pt;}
.y3d{bottom:287.013333pt;}
.y10{bottom:288.826667pt;}
.y14e{bottom:288.933333pt;}
.y12a{bottom:290.946667pt;}
.y19{bottom:294.586667pt;}
.y52{bottom:295.173333pt;}
.y9f{bottom:298.146667pt;}
.y168{bottom:298.813333pt;}
.y2e{bottom:299.840000pt;}
.yf9{bottom:303.226667pt;}
.y8b{bottom:305.373333pt;}
.yd1{bottom:306.466667pt;}
.y14d{bottom:307.333333pt;}
.yf{bottom:308.026667pt;}
.y71{bottom:308.573333pt;}
.ye1{bottom:308.826667pt;}
.y3c{bottom:309.413333pt;}
.y129{bottom:311.746667pt;}
.y9e{bottom:317.346667pt;}
.y2d{bottom:319.040000pt;}
.y51{bottom:319.813333pt;}
.y10f{bottom:321.920000pt;}
.yf8{bottom:322.426667pt;}
.y14c{bottom:325.733333pt;}
.ye{bottom:327.266667pt;}
.y8a{bottom:327.773333pt;}
.yd0{bottom:328.866667pt;}
.ye0{bottom:331.226667pt;}
.y167{bottom:331.933333pt;}
.y128{bottom:332.546667pt;}
.y70{bottom:334.173333pt;}
.y18{bottom:340.506667pt;}
.yf7{bottom:341.626667pt;}
.y14b{bottom:344.160000pt;}
.y10e{bottom:344.320000pt;}
.y50{bottom:344.453333pt;}
.yd{bottom:346.466667pt;}
.y2c{bottom:346.880000pt;}
.y89{bottom:350.213333pt;}
.ycf{bottom:351.293333pt;}
.y49{bottom:353.213333pt;}
.y127{bottom:353.346667pt;}
.y166{bottom:354.333333pt;}
.y9d{bottom:355.773333pt;}
.y6f{bottom:359.813333pt;}
.yf6{bottom:360.826667pt;}
.y14a{bottom:362.560000pt;}
.yc{bottom:365.666667pt;}
.y10d{bottom:366.720000pt;}
.y4f{bottom:369.093333pt;}
.y88{bottom:372.613333pt;}
.y126{bottom:374.173333pt;}
.y9c{bottom:374.973333pt;}
.ydf{bottom:376.066667pt;}
.y165{bottom:376.733333pt;}
.yf5{bottom:380.026667pt;}
.y149{bottom:380.960000pt;}
.yb{bottom:384.866667pt;}
.y6e{bottom:385.413333pt;}
.y10c{bottom:389.146667pt;}
.y4e{bottom:393.760000pt;}
.y125{bottom:394.973333pt;}
.y87{bottom:395.013333pt;}
.ybc{bottom:395.040000pt;}
.yde{bottom:398.466667pt;}
.y164{bottom:399.133333pt;}
.yf4{bottom:399.226667pt;}
.y148{bottom:399.360000pt;}
.y9b{bottom:413.373333pt;}
.ybb{bottom:415.040000pt;}
.y124{bottom:415.773333pt;}
.y147{bottom:417.760000pt;}
.yf3{bottom:418.426667pt;}
.y32{bottom:421.213333pt;}
.y163{bottom:421.533333pt;}
.yce{bottom:425.440000pt;}
.y24{bottom:425.946667pt;}
.y4d{bottom:428.160000pt;}
.y9a{bottom:432.573333pt;}
.yba{bottom:435.040000pt;}
.y10b{bottom:436.133333pt;}
.y146{bottom:436.320000pt;}
.yf2{bottom:437.626667pt;}
.y6a{bottom:438.853333pt;}
.y31{bottom:440.413333pt;}
.y81{bottom:441.440000pt;}
.y162{bottom:443.973333pt;}
.y48{bottom:447.360000pt;}
.y5a{bottom:447.973333pt;}
.ycd{bottom:448.000000pt;}
.y59{bottom:452.773333pt;}
.yb9{bottom:455.040000pt;}
.y123{bottom:457.373333pt;}
.yf1{bottom:457.506667pt;}
.y58{bottom:457.573333pt;}
.ydd{bottom:457.666667pt;}
.y80{bottom:463.866667pt;}
.ya{bottom:466.173333pt;}
.y145{bottom:466.333333pt;}
.y161{bottom:466.373333pt;}
.ycc{bottom:470.400000pt;}
.y23{bottom:470.746667pt;}
.y99{bottom:471.013333pt;}
.y6d{bottom:474.173333pt;}
.y122{bottom:478.173333pt;}
.yb8{bottom:483.546667pt;}
.y9{bottom:485.413333pt;}
.y144{bottom:485.573333pt;}
.y7f{bottom:486.266667pt;}
.y160{bottom:488.773333pt;}
.y98{bottom:490.213333pt;}
.y47{bottom:492.160000pt;}
.ycb{bottom:492.800000pt;}
.y10a{bottom:494.560000pt;}
.y6c{bottom:496.573333pt;}
.y121{bottom:498.973333pt;}
.yb7{bottom:503.546667pt;}
.y8{bottom:504.613333pt;}
.y143{bottom:504.773333pt;}
.y2b{bottom:508.160000pt;}
.y7e{bottom:508.666667pt;}
.y97{bottom:509.413333pt;}
.yf0{bottom:510.213333pt;}
.y15f{bottom:511.173333pt;}
.yca{bottom:515.200000pt;}
.y22{bottom:515.586667pt;}
.y69{bottom:515.773333pt;}
.y57{bottom:517.093333pt;}
.y6b{bottom:518.973333pt;}
.y120{bottom:519.813333pt;}
.y109{bottom:520.160000pt;}
.y7{bottom:523.813333pt;}
.y142{bottom:523.973333pt;}
.y2a{bottom:527.360000pt;}
.y7d{bottom:531.066667pt;}
.yef{bottom:531.173333pt;}
.y46{bottom:532.986667pt;}
.y56{bottom:536.293333pt;}
.yb6{bottom:536.893333pt;}
.yc9{bottom:537.626667pt;}
.y96{bottom:539.013333pt;}
.y68{bottom:541.373333pt;}
.y6{bottom:543.013333pt;}
.y141{bottom:543.173333pt;}
.y15e{bottom:544.133333pt;}
.ydc{bottom:545.120000pt;}
.y29{bottom:546.560000pt;}
.yee{bottom:551.973333pt;}
.y11f{bottom:553.413333pt;}
.yb5{bottom:556.133333pt;}
.yc8{bottom:560.026667pt;}
.y21{bottom:560.386667pt;}
.y86{bottom:561.760000pt;}
.y140{bottom:562.373333pt;}
.y15d{bottom:566.533333pt;}
.y67{bottom:566.973333pt;}
.y28{bottom:570.400000pt;}
.ydb{bottom:570.746667pt;}
.y108{bottom:571.360000pt;}
.yed{bottom:572.773333pt;}
.y11e{bottom:574.213333pt;}
.yb4{bottom:575.333333pt;}
.y45{bottom:577.786667pt;}
.y5{bottom:581.413333pt;}
.yc7{bottom:582.426667pt;}
.y94{bottom:583.106667pt;}
.ya6{bottom:584.133333pt;}
.y13f{bottom:588.026667pt;}
.y15c{bottom:588.960000pt;}
.y66{bottom:592.573333pt;}
.yec{bottom:593.600000pt;}
.y11d{bottom:595.013333pt;}
.yda{bottom:596.346667pt;}
.y4c{bottom:598.746667pt;}
.y4{bottom:600.613333pt;}
.y20{bottom:601.186667pt;}
.y93{bottom:603.906667pt;}
.yc6{bottom:604.826667pt;}
.ya5{bottom:604.933333pt;}
.y85{bottom:606.080000pt;}
.yad{bottom:606.173333pt;}
.y13e{bottom:607.226667pt;}
.y15b{bottom:611.360000pt;}
.yeb{bottom:614.400000pt;}
.y11c{bottom:615.813333pt;}
.y27{bottom:617.440000pt;}
.y65{bottom:618.213333pt;}
.y3{bottom:619.813333pt;}
.y107{bottom:620.773333pt;}
.y4b{bottom:622.626667pt;}
.y92{bottom:624.706667pt;}
.yac{bottom:625.373333pt;}
.ya4{bottom:625.733333pt;}
.y13d{bottom:626.426667pt;}
.y44{bottom:627.226667pt;}
.y84{bottom:628.480000pt;}
.yea{bottom:635.200000pt;}
.y11b{bottom:636.613333pt;}
.y26{bottom:636.640000pt;}
.y15{bottom:643.493333pt;}
.y64{bottom:643.813333pt;}
.yab{bottom:644.573333pt;}
.y91{bottom:645.533333pt;}
.y13c{bottom:645.626667pt;}
.yd9{bottom:645.733333pt;}
.ya3{bottom:646.560000pt;}
.y1f{bottom:648.893333pt;}
.y83{bottom:650.880000pt;}
.yc0{bottom:655.133333pt;}
.ye9{bottom:656.000000pt;}
.y61{bottom:657.373333pt;}
.y11a{bottom:657.440000pt;}
.y25{bottom:660.506667pt;}
.y4a{bottom:660.706667pt;}
.yaa{bottom:663.813333pt;}
.y13b{bottom:664.826667pt;}
.y82{bottom:673.280000pt;}
.y95{bottom:677.053333pt;}
.y16{bottom:677.120000pt;}
.y63{bottom:680.160000pt;}
.ya9{bottom:683.013333pt;}
.y106{bottom:683.706667pt;}
.y13a{bottom:684.066667pt;}
.y2{bottom:685.466667pt;}
.y119{bottom:692.160000pt;}
.y55{bottom:712.253333pt;}
.y3b{bottom:717.733333pt;}
.y30{bottom:721.440000pt;}
.y1{bottom:722.426667pt;}
.yc1{bottom:726.493333pt;}
.y17{bottom:728.640000pt;}
.ya8{bottom:730.426667pt;}
.ya7{bottom:734.373333pt;}
.y139{bottom:734.786667pt;}
.yd8{bottom:735.360000pt;}
.ye8{bottom:739.133333pt;}
.y105{bottom:739.973333pt;}
.y62{bottom:740.320000pt;}
.y79{bottom:742.146667pt;}
.y118{bottom:744.133333pt;}
.h22{height:14.343750pt;}
.h35{height:37.164062pt;}
.h34{height:37.206250pt;}
.h39{height:46.039063pt;}
.h3a{height:46.116875pt;}
.h33{height:47.602500pt;}
.h32{height:47.710687pt;}
.h3e{height:48.895000pt;}
.h3f{height:49.006125pt;}
.h38{height:49.670313pt;}
.h2b{height:52.662500pt;}
.h3c{height:53.250000pt;}
.h3d{height:53.360937pt;}
.h18{height:55.056250pt;}
.h16{height:55.175937pt;}
.h10{height:55.468750pt;}
.h11{height:55.562500pt;}
.h12{height:55.579687pt;}
.h13{height:55.673625pt;}
.h37{height:58.177813pt;}
.h3{height:59.843750pt;}
.h29{height:59.906250pt;}
.h4{height:59.963437pt;}
.h30{height:60.007500pt;}
.h31{height:60.017187pt;}
.h1e{height:62.679688pt;}
.h3b{height:63.289687pt;}
.h17{height:64.486250pt;}
.h1b{height:64.898438pt;}
.hf{height:65.008125pt;}
.h1f{height:65.009375pt;}
.h20{height:65.119250pt;}
.h15{height:70.093750pt;}
.hc{height:73.773438pt;}
.hb{height:73.884375pt;}
.h1d{height:73.898125pt;}
.h28{height:74.009250pt;}
.he{height:78.765625pt;}
.h1c{height:78.876562pt;}
.h5{height:79.592188pt;}
.h19{height:83.203125pt;}
.h23{height:83.314062pt;}
.h2a{height:83.343750pt;}
.h2e{height:83.454875pt;}
.h27{height:93.224688pt;}
.h2d{height:93.364875pt;}
.ha{height:101.679375pt;}
.hd{height:101.790500pt;}
.h2f{height:102.336875pt;}
.h26{height:105.140625pt;}
.h36{height:105.280812pt;}
.h2c{height:117.196750pt;}
.h25{height:140.187500pt;}
.h6{height:148.598804pt;}
.h2{height:150.000625pt;}
.h14{height:163.318437pt;}
.h21{height:163.458625pt;}
.h9{height:187.150312pt;}
.h1a{height:210.421437pt;}
.h24{height:280.515187pt;}
.h8{height:315.421875pt;}
.h7{height:315.562062pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x6{left:26.623992pt;}
.x4{left:27.967992pt;}
.x3{left:37.567992pt;}
.x52{left:48.511992pt;}
.x1{left:57.695992pt;}
.x51{left:60.415992pt;}
.x40{left:64.415992pt;}
.x53{left:67.775992pt;}
.xb{left:68.927992pt;}
.x58{left:70.015992pt;}
.x54{left:71.295992pt;}
.xe{left:72.287992pt;}
.x56{left:74.655992pt;}
.x11{left:77.375992pt;}
.x14{left:79.935992pt;}
.x2e{left:81.503992pt;}
.x38{left:85.215992pt;}
.x2d{left:86.303992pt;}
.x4b{left:87.359992pt;}
.x3d{left:88.831992pt;}
.x31{left:90.783992pt;}
.x25{left:91.743992pt;}
.x1f{left:93.695992pt;}
.x1b{left:95.295992pt;}
.xc{left:96.927992pt;}
.x15{left:97.855992pt;}
.x49{left:98.815992pt;}
.xf{left:100.319992pt;}
.x46{left:101.503992pt;}
.x12{left:105.375992pt;}
.x3c{left:106.431992pt;}
.x3b{left:107.775992pt;}
.x45{left:111.039992pt;}
.x17{left:112.511992pt;}
.x10{left:114.239992pt;}
.x1e{left:115.487992pt;}
.x22{left:116.991992pt;}
.x18{left:118.111992pt;}
.x13{left:119.295992pt;}
.x20{left:121.695992pt;}
.x9{left:123.455992pt;}
.x2f{left:124.447992pt;}
.x19{left:125.983992pt;}
.xa{left:127.871992pt;}
.x3e{left:130.111992pt;}
.x1a{left:131.263992pt;}
.xd{left:132.959992pt;}
.x37{left:134.559992pt;}
.x21{left:135.653325pt;}
.x23{left:136.986658pt;}
.x39{left:138.626658pt;}
.x48{left:140.479992pt;}
.x26{left:141.853325pt;}
.x16{left:143.066658pt;}
.x1c{left:145.213325pt;}
.x3a{left:146.493325pt;}
.x30{left:147.973325pt;}
.x28{left:153.946658pt;}
.x55{left:155.173325pt;}
.x34{left:159.386658pt;}
.x35{left:163.386658pt;}
.x43{left:164.959992pt;}
.x24{left:167.106658pt;}
.x33{left:179.706658pt;}
.x2{left:194.559992pt;}
.x1d{left:198.053325pt;}
.x4a{left:204.933325pt;}
.x41{left:206.946658pt;}
.x3f{left:224.706658pt;}
.x8{left:225.733325pt;}
.x27{left:227.999992pt;}
.x36{left:229.506658pt;}
.x44{left:233.306658pt;}
.x57{left:234.239992pt;}
.x5{left:235.973325pt;}
.x2c{left:243.546658pt;}
.x2a{left:282.399992pt;}
.x29{left:283.999992pt;}
.x42{left:302.746658pt;}
.x32{left:312.733325pt;}
.x2b{left:335.546658pt;}
.x47{left:339.586658pt;}
.x4f{left:349.626658pt;}
.x50{left:361.146658pt;}
.x4e{left:435.906658pt;}
.x4d{left:436.799992pt;}
.x4c{left:439.906658pt;}
.x7{left:495.226658pt;}
}




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