
    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_9adb080b2e11604aa7c2b756.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_72445190cfee98e2e9df7669.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976602;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_ea03cc2ea9fb9e163e575ff2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_13e7753e863d4500f5c90b0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_6e91ccfdecce4b91b2a62e50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_5b88b1685268dbaa150a4660.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_b35b2e11f9b8bb9dc538fd3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_e96bf903fde541744f883a5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_8524f2616b3589b06358895c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_ab0a6e0d7b98a7665401e5e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_cf21a8779e5f799e8d4b4ef0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_72d120b40b8b90b26cfca352.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958008;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_1df33e80f3946927ecb1d663.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2e4b361954467c9723ea1219.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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:fff;src:url('chunks/assets/font_9802d1d5f2054fa0a475266b.woff2')format("woff");}.fff{font-family:fff;line-height:0.921875;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:ff10;src:url('chunks/assets/font_2dad9816c5d85d1746bcfb46.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:36.708600px;}
.ls33{letter-spacing:-7.236000px;}
.ls32{letter-spacing:-3.240000px;}
.ls30{letter-spacing:-1.200000px;}
.ls38{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.691200px;}
.ls4{letter-spacing:-0.660000px;}
.ls3c{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.336000px;}
.ls7{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.102000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000206px;}
.ls1{letter-spacing:0.025200px;}
.ls2d{letter-spacing:0.398889px;}
.ls2e{letter-spacing:0.450918px;}
.ls20{letter-spacing:0.468261px;}
.ls3b{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.520290px;}
.ls1f{letter-spacing:0.537633px;}
.ls39{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.554976px;}
.ls29{letter-spacing:0.572319px;}
.ls23{letter-spacing:0.589662px;}
.ls8{letter-spacing:0.600000px;}
.ls2c{letter-spacing:0.607005px;}
.ls1d{letter-spacing:0.624348px;}
.ls14{letter-spacing:0.641691px;}
.ls15{letter-spacing:0.659034px;}
.ls19{letter-spacing:0.676377px;}
.ls1a{letter-spacing:0.693720px;}
.ls11{letter-spacing:0.711063px;}
.ls13{letter-spacing:0.728406px;}
.ls17{letter-spacing:0.745749px;}
.ls16{letter-spacing:0.763092px;}
.ls31{letter-spacing:0.763200px;}
.ls1e{letter-spacing:0.780435px;}
.ls12{letter-spacing:0.797778px;}
.ls2a{letter-spacing:0.815121px;}
.ls28{letter-spacing:0.832464px;}
.ls22{letter-spacing:0.849807px;}
.ls18{letter-spacing:0.867150px;}
.ls24{letter-spacing:0.884493px;}
.ls1c{letter-spacing:0.943296px;}
.ls3a{letter-spacing:0.960000px;}
.ls27{letter-spacing:0.974562px;}
.ls36{letter-spacing:1.677600px;}
.ls37{letter-spacing:1.678200px;}
.ls2b{letter-spacing:1.977102px;}
.lse{letter-spacing:1.994445px;}
.lsf{letter-spacing:2.636136px;}
.ls10{letter-spacing:2.753058px;}
.ls35{letter-spacing:3.101400px;}
.ls34{letter-spacing:4.276800px;}
.ls26{letter-spacing:6.018021px;}
.ls2f{letter-spacing:7.278000px;}
.ls0{letter-spacing:42.136764px;}
.ls25{letter-spacing:86.021280px;}
.ls9{letter-spacing:451.846200px;}
.lsa{letter-spacing:452.701800px;}
.lsc{letter-spacing:460.371600px;}
.lsb{letter-spacing:460.500600px;}
.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;}
}
.wsc0{word-spacing:-60.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsf2{word-spacing:-16.434000px;}
.ws4a{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2f{word-spacing:-14.880000px;}
.ws7{word-spacing:-14.700000px;}
.wsfc{word-spacing:-13.932000px;}
.wsfb{word-spacing:-13.770000px;}
.wsc1{word-spacing:-13.740000px;}
.wsc2{word-spacing:-13.500000px;}
.wsd9{word-spacing:-13.446000px;}
.wsf3{word-spacing:-13.392000px;}
.ws4b{word-spacing:-13.230000px;}
.ws5{word-spacing:-12.960000px;}
.ws8{word-spacing:-12.366000px;}
.ws9{word-spacing:-12.150000px;}
.ws8d{word-spacing:-11.952000px;}
.wsc6{word-spacing:-11.904000px;}
.wsa{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws2d{word-spacing:-10.800000px;}
.ws2e{word-spacing:-10.704000px;}
.wsda{word-spacing:-10.206000px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.ws0{word-spacing:-9.542544px;}
.wsdc{word-spacing:-8.675040px;}
.ws114{word-spacing:-6.642000px;}
.wsff{word-spacing:-6.588000px;}
.wse1{word-spacing:-6.300000px;}
.wse2{word-spacing:-6.240000px;}
.wsdb{word-spacing:-6.210000px;}
.wsa1{word-spacing:-6.026651px;}
.ws9d{word-spacing:-5.584446px;}
.wsa0{word-spacing:-5.515074px;}
.ws9f{word-spacing:-5.497731px;}
.ws9e{word-spacing:-5.445702px;}
.ws92{word-spacing:-4.920000px;}
.ws9c{word-spacing:-4.821354px;}
.ws105{word-spacing:-4.752000px;}
.ws102{word-spacing:-3.942000px;}
.ws11b{word-spacing:-3.726000px;}
.ws11c{word-spacing:-3.672000px;}
.ws35{word-spacing:-3.480000px;}
.ws69{word-spacing:-3.348000px;}
.ws6a{word-spacing:-3.294000px;}
.wsfd{word-spacing:-3.132000px;}
.ws33{word-spacing:-3.060000px;}
.wsca{word-spacing:-3.000000px;}
.ws66{word-spacing:-2.880000px;}
.wsd2{word-spacing:-2.700000px;}
.ws117{word-spacing:-2.646000px;}
.ws3c{word-spacing:-2.640000px;}
.wsa9{word-spacing:-2.636136px;}
.ws109{word-spacing:-2.538000px;}
.ws5c{word-spacing:-2.520000px;}
.ws10a{word-spacing:-2.484000px;}
.ws67{word-spacing:-2.400000px;}
.ws68{word-spacing:-2.340000px;}
.ws28{word-spacing:-2.280000px;}
.ws9b{word-spacing:-2.185218px;}
.ws3a{word-spacing:-2.160000px;}
.ws111{word-spacing:-2.106000px;}
.ws24{word-spacing:-2.100000px;}
.ws5d{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.977102px;}
.wsf0{word-spacing:-1.860000px;}
.ws1b{word-spacing:-1.836000px;}
.ws91{word-spacing:-1.800000px;}
.ws57{word-spacing:-1.740000px;}
.ws25{word-spacing:-1.680000px;}
.ws115{word-spacing:-1.620000px;}
.ws31{word-spacing:-1.560000px;}
.ws36{word-spacing:-1.500000px;}
.wscb{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.254000px;}
.ws2a{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.080000px;}
.ws2c{word-spacing:-1.026000px;}
.ws11f{word-spacing:-0.960000px;}
.wsac{word-spacing:-0.832464px;}
.wsbf{word-spacing:-0.815121px;}
.wsaf{word-spacing:-0.797778px;}
.wsbc{word-spacing:-0.780435px;}
.wsb4{word-spacing:-0.763092px;}
.wsb3{word-spacing:-0.745749px;}
.wsb5{word-spacing:-0.728406px;}
.wsae{word-spacing:-0.711063px;}
.wsab{word-spacing:-0.693720px;}
.wsb6{word-spacing:-0.676377px;}
.ws3d{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.659034px;}
.wsb1{word-spacing:-0.641691px;}
.wsb0{word-spacing:-0.624348px;}
.wsb8{word-spacing:-0.607005px;}
.ws55{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.589662px;}
.wsad{word-spacing:-0.572319px;}
.wsb9{word-spacing:-0.554976px;}
.wsf1{word-spacing:-0.540000px;}
.wsb7{word-spacing:-0.537633px;}
.wsbb{word-spacing:-0.520290px;}
.ws60{word-spacing:-0.480000px;}
.wsbe{word-spacing:-0.450918px;}
.wsbd{word-spacing:-0.398889px;}
.ws19{word-spacing:-0.378000px;}
.wse7{word-spacing:-0.300000px;}
.wse{word-spacing:-0.216000px;}
.wse3{word-spacing:-0.180000px;}
.ws43{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws95{word-spacing:0.060000px;}
.wsc{word-spacing:0.102000px;}
.ws16{word-spacing:0.270000px;}
.ws40{word-spacing:0.300000px;}
.ws18{word-spacing:0.378000px;}
.ws59{word-spacing:0.480000px;}
.ws120{word-spacing:0.540000px;}
.ws17{word-spacing:0.648000px;}
.wsf{word-spacing:0.691200px;}
.ws30{word-spacing:0.720000px;}
.wsde{word-spacing:0.756000px;}
.wsdd{word-spacing:0.810000px;}
.wsdf{word-spacing:0.864000px;}
.wse8{word-spacing:0.900000px;}
.wsf8{word-spacing:0.918000px;}
.wsfa{word-spacing:1.080000px;}
.ws58{word-spacing:1.140000px;}
.wsce{word-spacing:1.200000px;}
.ws112{word-spacing:1.296000px;}
.wsd0{word-spacing:1.320000px;}
.wscf{word-spacing:1.380000px;}
.wsf6{word-spacing:1.458000px;}
.wsee{word-spacing:1.674000px;}
.ws44{word-spacing:1.680000px;}
.wsed{word-spacing:1.728000px;}
.ws2b{word-spacing:1.800000px;}
.ws108{word-spacing:1.890000px;}
.ws52{word-spacing:2.040000px;}
.ws1c{word-spacing:2.106000px;}
.wsd7{word-spacing:2.280000px;}
.ws62{word-spacing:2.460000px;}
.ws1a{word-spacing:2.484000px;}
.ws26{word-spacing:2.580000px;}
.ws41{word-spacing:2.640000px;}
.ws116{word-spacing:2.700000px;}
.ws48{word-spacing:2.760000px;}
.ws119{word-spacing:2.808000px;}
.ws5b{word-spacing:2.820000px;}
.wsec{word-spacing:3.078000px;}
.ws1e{word-spacing:3.120000px;}
.wseb{word-spacing:3.132000px;}
.ws34{word-spacing:3.240000px;}
.ws5e{word-spacing:3.300000px;}
.ws47{word-spacing:3.420000px;}
.ws100{word-spacing:3.564000px;}
.ws101{word-spacing:3.618000px;}
.ws99{word-spacing:3.720000px;}
.ws122{word-spacing:3.780000px;}
.ws11d{word-spacing:3.834000px;}
.wse0{word-spacing:4.266000px;}
.wsea{word-spacing:4.320000px;}
.ws1d{word-spacing:4.536000px;}
.wscd{word-spacing:4.560000px;}
.wscc{word-spacing:4.620000px;}
.wsd1{word-spacing:4.680000px;}
.ws14{word-spacing:4.752000px;}
.ws15{word-spacing:4.806000px;}
.ws42{word-spacing:4.860000px;}
.ws27{word-spacing:5.160000px;}
.ws9a{word-spacing:5.280000px;}
.wsc9{word-spacing:5.340000px;}
.ws5f{word-spacing:5.400000px;}
.ws54{word-spacing:5.580000px;}
.ws56{word-spacing:5.640000px;}
.ws103{word-spacing:5.940000px;}
.ws104{word-spacing:5.994000px;}
.ws65{word-spacing:6.000000px;}
.ws38{word-spacing:6.060000px;}
.wsf5{word-spacing:6.102000px;}
.ws37{word-spacing:6.120000px;}
.ws96{word-spacing:6.180000px;}
.ws32{word-spacing:6.240000px;}
.wsf7{word-spacing:6.264000px;}
.wse9{word-spacing:6.420000px;}
.wsf9{word-spacing:6.426000px;}
.ws3b{word-spacing:6.480000px;}
.ws10f{word-spacing:6.534000px;}
.ws61{word-spacing:6.540000px;}
.ws39{word-spacing:6.900000px;}
.ws10b{word-spacing:6.912000px;}
.wse4{word-spacing:7.020000px;}
.wsc8{word-spacing:7.320000px;}
.wsd5{word-spacing:7.380000px;}
.wsef{word-spacing:7.440000px;}
.wse6{word-spacing:7.500000px;}
.wsf4{word-spacing:7.560000px;}
.ws90{word-spacing:7.680000px;}
.ws8f{word-spacing:7.740000px;}
.ws10c{word-spacing:7.884000px;}
.ws94{word-spacing:7.920000px;}
.wsd3{word-spacing:7.980000px;}
.ws93{word-spacing:8.040000px;}
.ws20{word-spacing:8.100000px;}
.ws11a{word-spacing:8.208000px;}
.wse5{word-spacing:8.220000px;}
.wsd4{word-spacing:8.400000px;}
.ws49{word-spacing:8.520000px;}
.ws113{word-spacing:8.640000px;}
.wsa8{word-spacing:9.072000px;}
.ws45{word-spacing:9.180000px;}
.wsd8{word-spacing:9.300000px;}
.wsd6{word-spacing:9.540000px;}
.ws10e{word-spacing:9.774000px;}
.ws118{word-spacing:9.990000px;}
.ws3e{word-spacing:10.140000px;}
.ws3f{word-spacing:10.260000px;}
.ws11{word-spacing:10.368000px;}
.ws64{word-spacing:10.440000px;}
.ws10{word-spacing:10.476000px;}
.ws63{word-spacing:10.560000px;}
.ws98{word-spacing:10.740000px;}
.wsa7{word-spacing:10.854000px;}
.ws110{word-spacing:10.908000px;}
.wsa6{word-spacing:10.962000px;}
.ws107{word-spacing:11.232000px;}
.ws97{word-spacing:11.280000px;}
.ws106{word-spacing:11.340000px;}
.ws5a{word-spacing:11.700000px;}
.ws11e{word-spacing:11.880000px;}
.ws23{word-spacing:12.720000px;}
.wsfe{word-spacing:12.960000px;}
.ws13{word-spacing:15.120000px;}
.ws12{word-spacing:15.228000px;}
.wsa4{word-spacing:16.362000px;}
.wsa3{word-spacing:16.524000px;}
.wsa2{word-spacing:16.632000px;}
.ws53{word-spacing:17.280000px;}
.wsa5{word-spacing:18.360000px;}
.ws22{word-spacing:19.380000px;}
.ws1f{word-spacing:20.820000px;}
.ws21{word-spacing:24.120000px;}
.ws121{word-spacing:24.786000px;}
.ws10d{word-spacing:45.360000px;}
.ws4e{word-spacing:215.325600px;}
.ws79{word-spacing:219.081600px;}
.ws74{word-spacing:221.013000px;}
.ws51{word-spacing:282.262800px;}
.ws85{word-spacing:302.220600px;}
.ws83{word-spacing:303.327000px;}
.ws82{word-spacing:304.993200px;}
.wsc7{word-spacing:307.227000px;}
.ws7f{word-spacing:307.257000px;}
.ws7e{word-spacing:308.633400px;}
.ws84{word-spacing:314.731200px;}
.ws6b{word-spacing:315.886200px;}
.ws6d{word-spacing:315.972000px;}
.ws70{word-spacing:316.366200px;}
.ws50{word-spacing:323.381400px;}
.ws71{word-spacing:323.853600px;}
.ws8e{word-spacing:330.227400px;}
.ws8c{word-spacing:332.281800px;}
.ws76{word-spacing:338.518200px;}
.ws7a{word-spacing:338.518800px;}
.ws89{word-spacing:338.929200px;}
.ws88{word-spacing:339.939600px;}
.ws6c{word-spacing:340.820400px;}
.ws6f{word-spacing:341.344200px;}
.ws4c{word-spacing:341.754600px;}
.wsc5{word-spacing:343.352400px;}
.ws4d{word-spacing:344.553600px;}
.ws73{word-spacing:345.494400px;}
.ws4f{word-spacing:346.374000px;}
.ws72{word-spacing:347.227800px;}
.ws81{word-spacing:349.306200px;}
.ws80{word-spacing:350.631000px;}
.ws78{word-spacing:354.809400px;}
.ws6e{word-spacing:356.409600px;}
.ws8a{word-spacing:360.410400px;}
.ws87{word-spacing:370.231800px;}
.ws77{word-spacing:375.926400px;}
.ws86{word-spacing:404.518200px;}
.ws75{word-spacing:482.972400px;}
.ws8b{word-spacing:490.970400px;}
.ws7b{word-spacing:525.064200px;}
.ws7d{word-spacing:532.019400px;}
.wsc4{word-spacing:568.193400px;}
.ws7c{word-spacing:575.267400px;}
.wsc3{word-spacing:1220.128800px;}
._4c{margin-left:-251.473500px;}
._6{margin-left:-11.085000px;}
._8{margin-left:-9.518400px;}
._6b{margin-left:-8.361000px;}
._68{margin-left:-7.073400px;}
._5{margin-left:-5.949000px;}
._1{margin-left:-4.442400px;}
._4{margin-left:-2.556000px;}
._2{margin-left:-1.438200px;}
._0{width:1.173000px;}
._c{width:2.574000px;}
._67{width:3.889800px;}
._b{width:4.996200px;}
._7{width:6.186000px;}
._6d{width:7.244400px;}
._9{width:8.598000px;}
._a{width:9.780000px;}
._4d{width:11.010000px;}
._6f{width:15.552000px;}
._6c{width:17.004600px;}
._70{width:18.295200px;}
._6e{width:21.232800px;}
._72{width:34.131600px;}
._71{width:35.226000px;}
._3{width:36.699000px;}
._69{width:42.264600px;}
._6a{width:44.881200px;}
._4b{width:49.514265px;}
._58{width:123.324600px;}
._5b{width:124.518000px;}
._5a{width:145.944600px;}
._64{width:148.794000px;}
._61{width:152.510400px;}
._59{width:174.214200px;}
._32{width:182.043000px;}
._63{width:196.906200px;}
._5d{width:198.586800px;}
._42{width:201.750000px;}
._5c{width:207.077400px;}
._55{width:223.182000px;}
._24{width:231.979800px;}
._54{width:241.087800px;}
._22{width:264.808800px;}
._1f{width:266.990400px;}
._4e{width:286.056000px;}
._e{width:289.164000px;}
._1c{width:307.782000px;}
._f{width:311.692800px;}
._3d{width:321.571800px;}
._51{width:325.803600px;}
._66{width:328.806000px;}
._50{width:333.823200px;}
._25{width:340.809000px;}
._47{width:350.576400px;}
._30{width:356.796000px;}
._4a{width:358.095000px;}
._52{width:362.411400px;}
._5f{width:370.812000px;}
._11{width:381.382800px;}
._3c{width:392.058000px;}
._18{width:394.882200px;}
._27{width:408.381600px;}
._62{width:442.853400px;}
._56{width:461.779800px;}
._60{width:471.306000px;}
._57{width:475.902000px;}
._4f{width:523.300200px;}
._5e{width:549.980400px;}
._65{width:555.618600px;}
._53{width:567.247200px;}
._48{width:632.229600px;}
._d{width:647.269200px;}
._1b{width:670.369800px;}
._31{width:672.508200px;}
._49{width:727.269600px;}
._46{width:733.209000px;}
._43{width:742.140600px;}
._1e{width:748.492800px;}
._21{width:755.522400px;}
._19{width:763.122600px;}
._33{width:771.266400px;}
._26{width:775.045800px;}
._28{width:778.220400px;}
._23{width:780.105600px;}
._2b{width:781.356600px;}
._20{width:782.556600px;}
._2e{width:788.652600px;}
._1a{width:794.460600px;}
._10{width:798.780600px;}
._2f{width:799.932600px;}
._2c{width:808.370400px;}
._37{width:810.529200px;}
._34{width:812.677800px;}
._3e{width:818.892600px;}
._1d{width:824.401800px;}
._3a{width:827.027400px;}
._29{width:836.140800px;}
._35{width:845.034000px;}
._3f{width:846.300600px;}
._39{width:851.772600px;}
._38{width:855.948600px;}
._2d{width:857.761200px;}
._13{width:859.356600px;}
._36{width:863.041800px;}
._2a{width:864.680400px;}
._16{width:871.692600px;}
._17{width:875.713200px;}
._45{width:884.065200px;}
._41{width:885.708600px;}
._14{width:903.621600px;}
._40{width:909.856800px;}
._12{width:914.513400px;}
._3b{width:961.729200px;}
._44{width:971.267400px;}
._15{width:1014.074400px;}
.fc3{color:rgb(16,15,13);}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:8.671200px;}
.fs9{font-size:17.343000px;}
.fsb{font-size:21.678600px;}
.fsc{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y175{bottom:0.178050px;}
.y1{bottom:68.124750px;}
.y38{bottom:71.212050px;}
.y39{bottom:75.036150px;}
.y186{bottom:113.078700px;}
.ye{bottom:117.197850px;}
.y19e{bottom:120.072600px;}
.yd1{bottom:120.500850px;}
.yd{bottom:131.597850px;}
.yb0{bottom:134.078700px;}
.y65{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.yd0{bottom:140.300850px;}
.y77{bottom:142.032300px;}
.ya2{bottom:142.830750px;}
.yc{bottom:145.997850px;}
.yaf{bottom:155.078700px;}
.y64{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.ycf{bottom:160.100850px;}
.yb{bottom:160.397850px;}
.y76{bottom:165.489000px;}
.ya1{bottom:166.245000px;}
.yae{bottom:176.078700px;}
.y63{bottom:176.078850px;}
.yce{bottom:179.900850px;}
.y28{bottom:180.212700px;}
.y75{bottom:188.945700px;}
.ya0{bottom:189.659100px;}
.yad{bottom:197.078700px;}
.y62{bottom:197.078850px;}
.y14b{bottom:200.656500px;}
.y27{bottom:201.212700px;}
.y35{bottom:203.413650px;}
.y74{bottom:212.402400px;}
.y9f{bottom:213.073200px;}
.yac{bottom:218.078700px;}
.y61{bottom:218.078850px;}
.y151{bottom:218.172081px;}
.y34{bottom:221.413500px;}
.y26{bottom:222.212700px;}
.y107{bottom:224.065714px;}
.y12a{bottom:229.975288px;}
.yea{bottom:232.918121px;}
.y73{bottom:235.859100px;}
.y9e{bottom:236.487450px;}
.yab{bottom:239.078700px;}
.y60{bottom:239.078850px;}
.y33{bottom:239.413500px;}
.y167{bottom:241.771178px;}
.y25{bottom:243.212700px;}
.y13d{bottom:253.558003px;}
.y32{bottom:257.413500px;}
.y72{bottom:259.315800px;}
.yec{bottom:259.465918px;}
.y9d{bottom:259.901700px;}
.yaa{bottom:260.078700px;}
.y1ad{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y162{bottom:265.366330px;}
.yf9{bottom:268.310848px;}
.y1a1{bottom:274.440900px;}
.y5f{bottom:274.441050px;}
.y31{bottom:275.413500px;}
.y134{bottom:277.153154px;}
.ya9{bottom:281.078700px;}
.y1ac{bottom:281.078850px;}
.y71{bottom:282.772500px;}
.y9c{bottom:283.315800px;}
.y23{bottom:285.212700px;}
.ydd{bottom:285.997170px;}
.y164{bottom:288.965817px;}
.y30{bottom:293.413500px;}
.y113{bottom:294.868511px;}
.y137{bottom:300.748306px;}
.ya8{bottom:302.078700px;}
.y1ab{bottom:302.078850px;}
.y10d{bottom:303.713441px;}
.y22{bottom:306.212700px;}
.y70{bottom:306.229200px;}
.y9b{bottom:306.729900px;}
.y2f{bottom:311.413500px;}
.y161{bottom:312.556633px;}
.y10a{bottom:312.558371px;}
.ya7{bottom:323.078700px;}
.y5e{bottom:323.078850px;}
.y158{bottom:324.354599px;}
.y21{bottom:327.212700px;}
.y6f{bottom:329.685900px;}
.y9a{bottom:330.144150px;}
.y11e{bottom:330.256903px;}
.y15e{bottom:336.151784px;}
.y114{bottom:336.162194px;}
.yf0{bottom:341.268513px;}
.ya6{bottom:344.078700px;}
.y5d{bottom:344.078850px;}
.y2e{bottom:346.421400px;}
.y14d{bottom:347.949750px;}
.y20{bottom:348.212700px;}
.y6e{bottom:353.442600px;}
.y99{bottom:353.558400px;}
.y119{bottom:356.800364px;}
.y121{bottom:359.753010px;}
.y2d{bottom:364.421400px;}
.ya5{bottom:365.078700px;}
.y5c{bottom:365.078850px;}
.y1f{bottom:369.212700px;}
.y139{bottom:371.542432px;}
.y98{bottom:376.972500px;}
.yfc{bottom:377.441675px;}
.y1af{bottom:378.513600px;}
.y2c{bottom:382.421400px;}
.y13b{bottom:383.340008px;}
.y6d{bottom:385.625250px;}
.ya4{bottom:386.078700px;}
.y5b{bottom:386.078850px;}
.y100{bottom:388.502174px;}
.y1e{bottom:390.212700px;}
.y149{bottom:395.133248px;}
.y19b{bottom:396.396900px;}
.y97{bottom:400.386600px;}
.y2b{bottom:400.421400px;}
.ye9{bottom:401.041163px;}
.y6c{bottom:405.425250px;}
.ydf{bottom:405.577155px;}
.y145{bottom:406.935159px;}
.ya3{bottom:407.078700px;}
.y5a{bottom:407.078850px;}
.y10f{bottom:409.895959px;}
.y1ae{bottom:410.811150px;}
.y19a{bottom:416.196900px;}
.y148{bottom:418.732735px;}
.yf4{bottom:421.297787px;}
.y1aa{bottom:421.441050px;}
.y1d{bottom:422.700450px;}
.y96{bottom:423.800850px;}
.y185{bottom:428.078700px;}
.y59{bottom:428.078850px;}
.y1a0{bottom:429.375000px;}
.y150{bottom:430.541452px;}
.y199{bottom:435.996900px;}
.yef{bottom:439.364857px;}
.y14f{bottom:442.339028px;}
.y95{bottom:447.214950px;}
.y118{bottom:448.236996px;}
.y184{bottom:449.078700px;}
.y58{bottom:449.078850px;}
.y19f{bottom:449.175000px;}
.y129{bottom:454.137898px;}
.y198{bottom:455.796900px;}
.ycd{bottom:458.312700px;}
.y133{bottom:465.923038px;}
.y183{bottom:470.078700px;}
.y57{bottom:470.078850px;}
.y104{bottom:470.444707px;}
.y94{bottom:470.629200px;}
.y11b{bottom:472.352437px;}
.y14c{bottom:477.642150px;}
.y125{bottom:477.733103px;}
.ycc{bottom:481.344150px;}
.yf3{bottom:483.628529px;}
.y16e{bottom:489.520727px;}
.y182{bottom:491.078700px;}
.y56{bottom:491.078850px;}
.y93{bottom:494.043300px;}
.y1a9{bottom:496.529400px;}
.y142{bottom:501.320101px;}
.y1c{bottom:503.227950px;}
.ycb{bottom:504.375600px;}
.yd9{bottom:507.220142px;}
.y181{bottom:512.078700px;}
.y55{bottom:512.078850px;}
.y11a{bottom:512.302038px;}
.y131{bottom:513.122012px;}
.y92{bottom:517.457550px;}
.y169{bottom:524.927100px;}
.yca{bottom:527.407200px;}
.y180{bottom:533.078700px;}
.y54{bottom:533.078850px;}
.y174{bottom:536.715365px;}
.y91{bottom:540.871650px;}
.yf8{bottom:542.616407px;}
.y1b{bottom:544.287900px;}
.yee{bottom:547.693571px;}
.y141{bottom:548.514740px;}
.yc9{bottom:550.438650px;}
.y17f{bottom:554.078700px;}
.y6b{bottom:554.078850px;}
.y12d{bottom:560.320416px;}
.y1a{bottom:564.087900px;}
.y90{bottom:564.285900px;}
.y10b{bottom:566.221425px;}
.y53{bottom:567.513600px;}
.y159{bottom:572.121032px;}
.yc8{bottom:573.470100px;}
.ye2{bottom:573.665511px;}
.y17e{bottom:575.078700px;}
.y6a{bottom:575.078850px;}
.y19{bottom:583.887750px;}
.y170{bottom:583.910004px;}
.y8f{bottom:587.700000px;}
.yd6{bottom:592.751482px;}
.y152{bottom:595.716184px;}
.y17d{bottom:596.078700px;}
.y69{bottom:596.078850px;}
.yc7{bottom:596.501700px;}
.y19d{bottom:599.341500px;}
.y52{bottom:599.811150px;}
.y117{bottom:601.614152px;}
.yf2{bottom:602.003175px;}
.y18{bottom:603.687900px;}
.y16c{bottom:607.500820px;}
.ye6{bottom:608.980195px;}
.y8e{bottom:611.114250px;}
.y17c{bottom:617.078700px;}
.y68{bottom:617.078850px;}
.y19c{bottom:619.141500px;}
.y146{bottom:619.300194px;}
.yc6{bottom:619.533150px;}
.y112{bottom:619.642201px;}
.yf6{bottom:620.044231px;}
.y17{bottom:623.487900px;}
.y130{bottom:631.102105px;}
.yf5{bottom:632.461819px;}
.y8d{bottom:634.528350px;}
.y17b{bottom:638.078700px;}
.y67{bottom:638.078850px;}
.yc5{bottom:642.564600px;}
.y173{bottom:642.902219px;}
.y16{bottom:643.287900px;}
.ye0{bottom:651.743697px;}
.y13f{bottom:654.697257px;}
.y8c{bottom:657.942600px;}
.y17a{bottom:659.078700px;}
.y51{bottom:659.078850px;}
.y15{bottom:663.087900px;}
.yc4{bottom:665.596050px;}
.y160{bottom:666.505584px;}
.y14a{bottom:678.292409px;}
.y50{bottom:680.078850px;}
.y8b{bottom:681.356700px;}
.y14{bottom:682.887750px;}
.y1a8{bottom:685.529400px;}
.yc3{bottom:688.627650px;}
.yda{bottom:689.351992px;}
.y136{bottom:690.094320px;}
.y66{bottom:694.441050px;}
.ye8{bottom:700.424700px;}
.y179{bottom:701.078700px;}
.y4f{bottom:701.078850px;}
.y163{bottom:701.902647px;}
.y13{bottom:702.687900px;}
.y8a{bottom:704.770950px;}
.ye7{bottom:710.740247px;}
.yc2{bottom:711.659100px;}
.y132{bottom:713.689471px;}
.y108{bottom:719.594245px;}
.y178{bottom:722.078700px;}
.y4e{bottom:722.078850px;}
.y12{bottom:722.487900px;}
.y171{bottom:725.489584px;}
.ye4{bottom:727.502257px;}
.y89{bottom:728.185050px;}
.yfd{bottom:732.843103px;}
.yc1{bottom:734.690550px;}
.y12b{bottom:737.297059px;}
.y11{bottom:742.287900px;}
.y177{bottom:743.078700px;}
.y4d{bottom:743.078850px;}
.ydc{bottom:743.180329px;}
.y15a{bottom:749.092950px;}
.y157{bottom:749.097676px;}
.y88{bottom:751.599300px;}
.yc0{bottom:757.722150px;}
.yfb{bottom:757.890731px;}
.y166{bottom:760.890526px;}
.y4c{bottom:764.078850px;}
.y103{bottom:766.788884px;}
.y135{bottom:772.677350px;}
.y10{bottom:773.385300px;}
.y87{bottom:775.013550px;}
.y102{bottom:775.638150px;}
.y176{bottom:777.073800px;}
.ybf{bottom:780.753600px;}
.y123{bottom:784.487416px;}
.y4b{bottom:785.078850px;}
.y101{bottom:785.956040px;}
.y1a7{bottom:790.529250px;}
.y120{bottom:796.284992px;}
.y86{bottom:798.427650px;}
.ybe{bottom:803.785200px;}
.y4a{bottom:806.078850px;}
.y144{bottom:808.074413px;}
.yd5{bottom:817.508091px;}
.y13a{bottom:819.871989px;}
.y85{bottom:821.841750px;}
.ybd{bottom:826.816650px;}
.y197{bottom:826.866150px;}
.y49{bottom:827.078850px;}
.yd7{bottom:830.194495px;}
.y11f{bottom:831.682055px;}
.y106{bottom:834.799459px;}
.ye3{bottom:840.517916px;}
.y15b{bottom:843.477892px;}
.y156{bottom:843.482617px;}
.y196{bottom:845.220450px;}
.y84{bottom:845.256000px;}
.ye1{bottom:846.045997px;}
.y48{bottom:848.078850px;}
.y111{bottom:849.380586px;}
.ybc{bottom:849.848100px;}
.ya{bottom:852.666900px;}
.y16f{bottom:855.267254px;}
.y195{bottom:863.574900px;}
.y11c{bottom:867.079117px;}
.y83{bottom:868.670100px;}
.y47{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ybb{bottom:872.879550px;}
.yf1{bottom:872.970207px;}
.y194{bottom:878.574900px;}
.y15c{bottom:878.874955px;}
.y155{bottom:878.879681px;}
.y8{bottom:888.666900px;}
.y46{bottom:890.078850px;}
.y16d{bottom:890.664317px;}
.y82{bottom:892.084350px;}
.y1a6{bottom:895.529250px;}
.yba{bottom:895.911000px;}
.yd3{bottom:896.561821px;}
.y193{bottom:896.929200px;}
.y153{bottom:902.470496px;}
.y7{bottom:906.666900px;}
.y45{bottom:911.078850px;}
.y116{bottom:912.053852px;}
.yde{bottom:912.495702px;}
.y13c{bottom:914.256931px;}
.y192{bottom:915.283500px;}
.y81{bottom:915.498450px;}
.yb9{bottom:918.942600px;}
.yd8{bottom:923.473821px;}
.y6{bottom:924.666900px;}
.y14e{bottom:926.061312px;}
.y115{bottom:931.967952px;}
.y44{bottom:932.078850px;}
.y191{bottom:933.637800px;}
.yfa{bottom:936.753425px;}
.y168{bottom:937.770150px;}
.y126{bottom:937.864519px;}
.y124{bottom:937.864572px;}
.y80{bottom:938.912700px;}
.y109{bottom:940.817218px;}
.yb8{bottom:941.974050px;}
.y15d{bottom:949.660409px;}
.y154{bottom:949.660799px;}
.y190{bottom:951.992100px;}
.y43{bottom:953.078850px;}
.y1a5{bottom:958.529250px;}
.y5{bottom:959.674650px;}
.y143{bottom:961.451570px;}
.y7f{bottom:962.326800px;}
.yb7{bottom:965.005500px;}
.y18f{bottom:966.992100px;}
.y165{bottom:973.259896px;}
.y42{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yed{bottom:982.486916px;}
.y122{bottom:985.059211px;}
.y18e{bottom:985.346400px;}
.y7e{bottom:985.740900px;}
.yb6{bottom:988.037100px;}
.y105{bottom:990.812751px;}
.y11d{bottom:990.955831px;}
.y41{bottom:995.078850px;}
.y128{bottom:996.861069px;}
.y18d{bottom:1000.346400px;}
.y110{bottom:1007.184543px;}
.y138{bottom:1008.646208px;}
.y7d{bottom:1009.155150px;}
.yb5{bottom:1011.068550px;}
.ydb{bottom:1014.537578px;}
.y40{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y18c{bottom:1018.700850px;}
.y172{bottom:1020.446321px;}
.y1a4{bottom:1021.529250px;}
.yf7{bottom:1023.399053px;}
.y16b{bottom:1032.243897px;}
.y7c{bottom:1032.569400px;}
.y18b{bottom:1033.700850px;}
.yb4{bottom:1034.100000px;}
.y3f{bottom:1037.078850px;}
.y12f{bottom:1044.043271px;}
.y2{bottom:1049.282550px;}
.yff{bottom:1049.942515px;}
.y18a{bottom:1052.055150px;}
.y140{bottom:1055.840847px;}
.y7b{bottom:1055.983500px;}
.yb3{bottom:1057.131600px;}
.y3e{bottom:1058.078850px;}
.y13e{bottom:1067.634087px;}
.yd4{bottom:1070.173922px;}
.y189{bottom:1070.409450px;}
.y3d{bottom:1079.078850px;}
.y7a{bottom:1079.397600px;}
.y16a{bottom:1079.434200px;}
.y188{bottom:1079.586600px;}
.yb2{bottom:1080.163050px;}
.y1a3{bottom:1084.192950px;}
.yd2{bottom:1088.284350px;}
.yfe{bottom:1088.287888px;}
.y15f{bottom:1091.239990px;}
.yeb{bottom:1097.141489px;}
.y3c{bottom:1100.078850px;}
.y79{bottom:1102.811850px;}
.y12e{bottom:1103.031150px;}
.y12c{bottom:1103.039251px;}
.yb1{bottom:1103.194500px;}
.y10e{bottom:1108.944595px;}
.yf{bottom:1109.815500px;}
.y1a2{bottom:1113.696900px;}
.y147{bottom:1114.828726px;}
.y187{bottom:1119.245700px;}
.ye5{bottom:1120.728767px;}
.y3b{bottom:1121.078850px;}
.y78{bottom:1126.525950px;}
.y127{bottom:1126.638738px;}
.y10c{bottom:1129.587101px;}
.y37{bottom:1159.189500px;}
.y36{bottom:1178.689500px;}
.y3a{bottom:1178.691750px;}
.h16{height:12.761670px;}
.h15{height:12.778607px;}
.h19{height:12.779013px;}
.h1a{height:12.779078px;}
.h17{height:12.786143px;}
.h1b{height:15.973148px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h14{height:36.492188px;}
.h1e{height:36.563368px;}
.h12{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h9{height:45.615234px;}
.h10{height:48.134766px;}
.hc{height:48.750000px;}
.h1c{height:49.218750px;}
.h11{height:50.176758px;}
.h4{height:53.625000px;}
.hb{height:54.738281px;}
.h1d{height:74.935162px;}
.h3{height:81.231445px;}
.h18{height:941.386500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:416.647500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xf{left:112.251900px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x5b{left:140.779500px;}
.x5c{left:160.860150px;}
.xe{left:202.927500px;}
.x51{left:255.141000px;}
.x5e{left:281.343450px;}
.x5d{left:293.035800px;}
.x59{left:298.528050px;}
.x5{left:300.189000px;}
.x62{left:314.900100px;}
.xc{left:317.196900px;}
.x5a{left:341.551500px;}
.x16{left:360.474450px;}
.x30{left:378.100294px;}
.x19{left:382.965750px;}
.x13{left:385.892550px;}
.x14{left:387.884700px;}
.x10{left:389.900250px;}
.x15{left:392.290950px;}
.x4{left:396.050700px;}
.x12{left:397.327050px;}
.x17{left:398.812350px;}
.x28{left:403.875252px;}
.x44{left:413.417023px;}
.x11{left:415.306500px;}
.x18{left:417.588750px;}
.x45{left:419.556445px;}
.x1a{left:420.975450px;}
.x35{left:422.220886px;}
.x1f{left:424.309642px;}
.x37{left:428.360308px;}
.x41{left:433.261750px;}
.x63{left:437.777550px;}
.x42{left:441.980944px;}
.x38{left:444.168452px;}
.x5f{left:446.434800px;}
.x3b{left:450.307874px;}
.x23{left:451.681232px;}
.x3c{left:453.394928px;}
.x1c{left:456.684687px;}
.x2a{left:458.301922px;}
.x26{left:460.400425px;}
.x1e{left:462.828445px;}
.x2b{left:464.445679px;}
.x27{left:466.336067px;}
.x3e{left:467.624860px;}
.x4a{left:473.536532px;}
.x49{left:475.665385px;}
.x2d{left:477.257821px;}
.x2c{left:478.415466px;}
.x22{left:481.463498px;}
.x2e{left:483.401578px;}
.x24{left:484.524538px;}
.x3f{left:486.507051px;}
.x47{left:488.278082px;}
.x3a{left:489.620119px;}
.x25{left:490.668296px;}
.x32{left:493.509287px;}
.x40{left:495.609835px;}
.x31{left:496.800122px;}
.x3d{left:499.501294px;}
.x33{left:500.880062px;}
.x34{left:502.228480px;}
.x20{left:503.632188px;}
.x29{left:504.677104px;}
.x1d{left:506.654206px;}
.x43{left:508.729815px;}
.x36{left:510.483748px;}
.x21{left:512.355717px;}
.x39{left:513.813605px;}
.x1b{left:515.945718px;}
.x46{left:517.128163px;}
.x2f{left:519.718896px;}
.x48{left:525.847356px;}
.x4b{left:553.656857px;}
.x64{left:560.090550px;}
.x65{left:572.216550px;}
.x52{left:579.042173px;}
.x60{left:584.392350px;}
.x53{left:592.309568px;}
.x55{left:594.642795px;}
.x50{left:595.673012px;}
.x4c{left:596.689175px;}
.x54{left:597.695163px;}
.x57{left:624.719893px;}
.x4e{left:627.228600px;}
.x4d{left:628.776706px;}
.x4f{left:635.366803px;}
.x56{left:637.757493px;}
.x58{left:641.698690px;}
.xa{left:645.897450px;}
.x9{left:678.792000px;}
.x66{left:696.194550px;}
.x67{left:709.697550px;}
.x61{left:720.686700px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:32.629867pt;}
.ls33{letter-spacing:-6.432000pt;}
.ls32{letter-spacing:-2.880000pt;}
.ls30{letter-spacing:-1.066667pt;}
.ls38{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.298667pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.090667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000183pt;}
.ls1{letter-spacing:0.022400pt;}
.ls2d{letter-spacing:0.354568pt;}
.ls2e{letter-spacing:0.400816pt;}
.ls20{letter-spacing:0.416232pt;}
.ls3b{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.462480pt;}
.ls1f{letter-spacing:0.477896pt;}
.ls39{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.493312pt;}
.ls29{letter-spacing:0.508728pt;}
.ls23{letter-spacing:0.524144pt;}
.ls8{letter-spacing:0.533333pt;}
.ls2c{letter-spacing:0.539560pt;}
.ls1d{letter-spacing:0.554976pt;}
.ls14{letter-spacing:0.570392pt;}
.ls15{letter-spacing:0.585808pt;}
.ls19{letter-spacing:0.601224pt;}
.ls1a{letter-spacing:0.616640pt;}
.ls11{letter-spacing:0.632056pt;}
.ls13{letter-spacing:0.647472pt;}
.ls17{letter-spacing:0.662888pt;}
.ls16{letter-spacing:0.678304pt;}
.ls31{letter-spacing:0.678400pt;}
.ls1e{letter-spacing:0.693720pt;}
.ls12{letter-spacing:0.709136pt;}
.ls2a{letter-spacing:0.724552pt;}
.ls28{letter-spacing:0.739968pt;}
.ls22{letter-spacing:0.755384pt;}
.ls18{letter-spacing:0.770800pt;}
.ls24{letter-spacing:0.786216pt;}
.ls1c{letter-spacing:0.838485pt;}
.ls3a{letter-spacing:0.853333pt;}
.ls27{letter-spacing:0.866277pt;}
.ls36{letter-spacing:1.491200pt;}
.ls37{letter-spacing:1.491733pt;}
.ls2b{letter-spacing:1.757424pt;}
.lse{letter-spacing:1.772840pt;}
.lsf{letter-spacing:2.343232pt;}
.ls10{letter-spacing:2.447163pt;}
.ls35{letter-spacing:2.756800pt;}
.ls34{letter-spacing:3.801600pt;}
.ls26{letter-spacing:5.349352pt;}
.ls2f{letter-spacing:6.469333pt;}
.ls0{letter-spacing:37.454901pt;}
.ls25{letter-spacing:76.463360pt;}
.ls9{letter-spacing:401.641067pt;}
.lsa{letter-spacing:402.401600pt;}
.lsc{letter-spacing:409.219200pt;}
.lsb{letter-spacing:409.333867pt;}
.wsc0{word-spacing:-53.333333pt;}
.ws6{word-spacing:-15.936000pt;}
.wsf2{word-spacing:-14.608000pt;}
.ws4a{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2f{word-spacing:-13.226667pt;}
.ws7{word-spacing:-13.066667pt;}
.wsfc{word-spacing:-12.384000pt;}
.wsfb{word-spacing:-12.240000pt;}
.wsc1{word-spacing:-12.213333pt;}
.wsc2{word-spacing:-12.000000pt;}
.wsd9{word-spacing:-11.952000pt;}
.wsf3{word-spacing:-11.904000pt;}
.ws4b{word-spacing:-11.760000pt;}
.ws5{word-spacing:-11.520000pt;}
.ws8{word-spacing:-10.992000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws8d{word-spacing:-10.624000pt;}
.wsc6{word-spacing:-10.581333pt;}
.wsa{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws2d{word-spacing:-9.600000pt;}
.ws2e{word-spacing:-9.514667pt;}
.wsda{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.ws0{word-spacing:-8.482261pt;}
.wsdc{word-spacing:-7.711147pt;}
.ws114{word-spacing:-5.904000pt;}
.wsff{word-spacing:-5.856000pt;}
.wse1{word-spacing:-5.600000pt;}
.wse2{word-spacing:-5.546667pt;}
.wsdb{word-spacing:-5.520000pt;}
.wsa1{word-spacing:-5.357023pt;}
.ws9d{word-spacing:-4.963952pt;}
.wsa0{word-spacing:-4.902288pt;}
.ws9f{word-spacing:-4.886872pt;}
.ws9e{word-spacing:-4.840624pt;}
.ws92{word-spacing:-4.373333pt;}
.ws9c{word-spacing:-4.285648pt;}
.ws105{word-spacing:-4.224000pt;}
.ws102{word-spacing:-3.504000pt;}
.ws11b{word-spacing:-3.312000pt;}
.ws11c{word-spacing:-3.264000pt;}
.ws35{word-spacing:-3.093333pt;}
.ws69{word-spacing:-2.976000pt;}
.ws6a{word-spacing:-2.928000pt;}
.wsfd{word-spacing:-2.784000pt;}
.ws33{word-spacing:-2.720000pt;}
.wsca{word-spacing:-2.666667pt;}
.ws66{word-spacing:-2.560000pt;}
.wsd2{word-spacing:-2.400000pt;}
.ws117{word-spacing:-2.352000pt;}
.ws3c{word-spacing:-2.346667pt;}
.wsa9{word-spacing:-2.343232pt;}
.ws109{word-spacing:-2.256000pt;}
.ws5c{word-spacing:-2.240000pt;}
.ws10a{word-spacing:-2.208000pt;}
.ws67{word-spacing:-2.133333pt;}
.ws68{word-spacing:-2.080000pt;}
.ws28{word-spacing:-2.026667pt;}
.ws9b{word-spacing:-1.942416pt;}
.ws3a{word-spacing:-1.920000pt;}
.ws111{word-spacing:-1.872000pt;}
.ws24{word-spacing:-1.866667pt;}
.ws5d{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.757424pt;}
.wsf0{word-spacing:-1.653333pt;}
.ws1b{word-spacing:-1.632000pt;}
.ws91{word-spacing:-1.600000pt;}
.ws57{word-spacing:-1.546667pt;}
.ws25{word-spacing:-1.493333pt;}
.ws115{word-spacing:-1.440000pt;}
.ws31{word-spacing:-1.386667pt;}
.ws36{word-spacing:-1.333333pt;}
.wscb{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.114667pt;}
.ws2a{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.912000pt;}
.ws11f{word-spacing:-0.853333pt;}
.wsac{word-spacing:-0.739968pt;}
.wsbf{word-spacing:-0.724552pt;}
.wsaf{word-spacing:-0.709136pt;}
.wsbc{word-spacing:-0.693720pt;}
.wsb4{word-spacing:-0.678304pt;}
.wsb3{word-spacing:-0.662888pt;}
.wsb5{word-spacing:-0.647472pt;}
.wsae{word-spacing:-0.632056pt;}
.wsab{word-spacing:-0.616640pt;}
.wsb6{word-spacing:-0.601224pt;}
.ws3d{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.585808pt;}
.wsb1{word-spacing:-0.570392pt;}
.wsb0{word-spacing:-0.554976pt;}
.wsb8{word-spacing:-0.539560pt;}
.ws55{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.524144pt;}
.wsad{word-spacing:-0.508728pt;}
.wsb9{word-spacing:-0.493312pt;}
.wsf1{word-spacing:-0.480000pt;}
.wsb7{word-spacing:-0.477896pt;}
.wsbb{word-spacing:-0.462480pt;}
.ws60{word-spacing:-0.426667pt;}
.wsbe{word-spacing:-0.400816pt;}
.wsbd{word-spacing:-0.354568pt;}
.ws19{word-spacing:-0.336000pt;}
.wse7{word-spacing:-0.266667pt;}
.wse{word-spacing:-0.192000pt;}
.wse3{word-spacing:-0.160000pt;}
.ws43{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws95{word-spacing:0.053333pt;}
.wsc{word-spacing:0.090667pt;}
.ws16{word-spacing:0.240000pt;}
.ws40{word-spacing:0.266667pt;}
.ws18{word-spacing:0.336000pt;}
.ws59{word-spacing:0.426667pt;}
.ws120{word-spacing:0.480000pt;}
.ws17{word-spacing:0.576000pt;}
.wsf{word-spacing:0.614400pt;}
.ws30{word-spacing:0.640000pt;}
.wsde{word-spacing:0.672000pt;}
.wsdd{word-spacing:0.720000pt;}
.wsdf{word-spacing:0.768000pt;}
.wse8{word-spacing:0.800000pt;}
.wsf8{word-spacing:0.816000pt;}
.wsfa{word-spacing:0.960000pt;}
.ws58{word-spacing:1.013333pt;}
.wsce{word-spacing:1.066667pt;}
.ws112{word-spacing:1.152000pt;}
.wsd0{word-spacing:1.173333pt;}
.wscf{word-spacing:1.226667pt;}
.wsf6{word-spacing:1.296000pt;}
.wsee{word-spacing:1.488000pt;}
.ws44{word-spacing:1.493333pt;}
.wsed{word-spacing:1.536000pt;}
.ws2b{word-spacing:1.600000pt;}
.ws108{word-spacing:1.680000pt;}
.ws52{word-spacing:1.813333pt;}
.ws1c{word-spacing:1.872000pt;}
.wsd7{word-spacing:2.026667pt;}
.ws62{word-spacing:2.186667pt;}
.ws1a{word-spacing:2.208000pt;}
.ws26{word-spacing:2.293333pt;}
.ws41{word-spacing:2.346667pt;}
.ws116{word-spacing:2.400000pt;}
.ws48{word-spacing:2.453333pt;}
.ws119{word-spacing:2.496000pt;}
.ws5b{word-spacing:2.506667pt;}
.wsec{word-spacing:2.736000pt;}
.ws1e{word-spacing:2.773333pt;}
.wseb{word-spacing:2.784000pt;}
.ws34{word-spacing:2.880000pt;}
.ws5e{word-spacing:2.933333pt;}
.ws47{word-spacing:3.040000pt;}
.ws100{word-spacing:3.168000pt;}
.ws101{word-spacing:3.216000pt;}
.ws99{word-spacing:3.306667pt;}
.ws122{word-spacing:3.360000pt;}
.ws11d{word-spacing:3.408000pt;}
.wse0{word-spacing:3.792000pt;}
.wsea{word-spacing:3.840000pt;}
.ws1d{word-spacing:4.032000pt;}
.wscd{word-spacing:4.053333pt;}
.wscc{word-spacing:4.106667pt;}
.wsd1{word-spacing:4.160000pt;}
.ws14{word-spacing:4.224000pt;}
.ws15{word-spacing:4.272000pt;}
.ws42{word-spacing:4.320000pt;}
.ws27{word-spacing:4.586667pt;}
.ws9a{word-spacing:4.693333pt;}
.wsc9{word-spacing:4.746667pt;}
.ws5f{word-spacing:4.800000pt;}
.ws54{word-spacing:4.960000pt;}
.ws56{word-spacing:5.013333pt;}
.ws103{word-spacing:5.280000pt;}
.ws104{word-spacing:5.328000pt;}
.ws65{word-spacing:5.333333pt;}
.ws38{word-spacing:5.386667pt;}
.wsf5{word-spacing:5.424000pt;}
.ws37{word-spacing:5.440000pt;}
.ws96{word-spacing:5.493333pt;}
.ws32{word-spacing:5.546667pt;}
.wsf7{word-spacing:5.568000pt;}
.wse9{word-spacing:5.706667pt;}
.wsf9{word-spacing:5.712000pt;}
.ws3b{word-spacing:5.760000pt;}
.ws10f{word-spacing:5.808000pt;}
.ws61{word-spacing:5.813333pt;}
.ws39{word-spacing:6.133333pt;}
.ws10b{word-spacing:6.144000pt;}
.wse4{word-spacing:6.240000pt;}
.wsc8{word-spacing:6.506667pt;}
.wsd5{word-spacing:6.560000pt;}
.wsef{word-spacing:6.613333pt;}
.wse6{word-spacing:6.666667pt;}
.wsf4{word-spacing:6.720000pt;}
.ws90{word-spacing:6.826667pt;}
.ws8f{word-spacing:6.880000pt;}
.ws10c{word-spacing:7.008000pt;}
.ws94{word-spacing:7.040000pt;}
.wsd3{word-spacing:7.093333pt;}
.ws93{word-spacing:7.146667pt;}
.ws20{word-spacing:7.200000pt;}
.ws11a{word-spacing:7.296000pt;}
.wse5{word-spacing:7.306667pt;}
.wsd4{word-spacing:7.466667pt;}
.ws49{word-spacing:7.573333pt;}
.ws113{word-spacing:7.680000pt;}
.wsa8{word-spacing:8.064000pt;}
.ws45{word-spacing:8.160000pt;}
.wsd8{word-spacing:8.266667pt;}
.wsd6{word-spacing:8.480000pt;}
.ws10e{word-spacing:8.688000pt;}
.ws118{word-spacing:8.880000pt;}
.ws3e{word-spacing:9.013333pt;}
.ws3f{word-spacing:9.120000pt;}
.ws11{word-spacing:9.216000pt;}
.ws64{word-spacing:9.280000pt;}
.ws10{word-spacing:9.312000pt;}
.ws63{word-spacing:9.386667pt;}
.ws98{word-spacing:9.546667pt;}
.wsa7{word-spacing:9.648000pt;}
.ws110{word-spacing:9.696000pt;}
.wsa6{word-spacing:9.744000pt;}
.ws107{word-spacing:9.984000pt;}
.ws97{word-spacing:10.026667pt;}
.ws106{word-spacing:10.080000pt;}
.ws5a{word-spacing:10.400000pt;}
.ws11e{word-spacing:10.560000pt;}
.ws23{word-spacing:11.306667pt;}
.wsfe{word-spacing:11.520000pt;}
.ws13{word-spacing:13.440000pt;}
.ws12{word-spacing:13.536000pt;}
.wsa4{word-spacing:14.544000pt;}
.wsa3{word-spacing:14.688000pt;}
.wsa2{word-spacing:14.784000pt;}
.ws53{word-spacing:15.360000pt;}
.wsa5{word-spacing:16.320000pt;}
.ws22{word-spacing:17.226667pt;}
.ws1f{word-spacing:18.506667pt;}
.ws21{word-spacing:21.440000pt;}
.ws121{word-spacing:22.032000pt;}
.ws10d{word-spacing:40.320000pt;}
.ws4e{word-spacing:191.400533pt;}
.ws79{word-spacing:194.739200pt;}
.ws74{word-spacing:196.456000pt;}
.ws51{word-spacing:250.900267pt;}
.ws85{word-spacing:268.640533pt;}
.ws83{word-spacing:269.624000pt;}
.ws82{word-spacing:271.105067pt;}
.wsc7{word-spacing:273.090667pt;}
.ws7f{word-spacing:273.117333pt;}
.ws7e{word-spacing:274.340800pt;}
.ws84{word-spacing:279.761067pt;}
.ws6b{word-spacing:280.787733pt;}
.ws6d{word-spacing:280.864000pt;}
.ws70{word-spacing:281.214400pt;}
.ws50{word-spacing:287.450133pt;}
.ws71{word-spacing:287.869867pt;}
.ws8e{word-spacing:293.535467pt;}
.ws8c{word-spacing:295.361600pt;}
.ws76{word-spacing:300.905067pt;}
.ws7a{word-spacing:300.905600pt;}
.ws89{word-spacing:301.270400pt;}
.ws88{word-spacing:302.168533pt;}
.ws6c{word-spacing:302.951467pt;}
.ws6f{word-spacing:303.417067pt;}
.ws4c{word-spacing:303.781867pt;}
.wsc5{word-spacing:305.202133pt;}
.ws4d{word-spacing:306.269867pt;}
.ws73{word-spacing:307.106133pt;}
.ws4f{word-spacing:307.888000pt;}
.ws72{word-spacing:308.646933pt;}
.ws81{word-spacing:310.494400pt;}
.ws80{word-spacing:311.672000pt;}
.ws78{word-spacing:315.386133pt;}
.ws6e{word-spacing:316.808533pt;}
.ws8a{word-spacing:320.364800pt;}
.ws87{word-spacing:329.094933pt;}
.ws77{word-spacing:334.156800pt;}
.ws86{word-spacing:359.571733pt;}
.ws75{word-spacing:429.308800pt;}
.ws8b{word-spacing:436.418133pt;}
.ws7b{word-spacing:466.723733pt;}
.ws7d{word-spacing:472.906133pt;}
.wsc4{word-spacing:505.060800pt;}
.ws7c{word-spacing:511.348800pt;}
.wsc3{word-spacing:1084.558933pt;}
._4c{margin-left:-223.532000pt;}
._6{margin-left:-9.853333pt;}
._8{margin-left:-8.460800pt;}
._6b{margin-left:-7.432000pt;}
._68{margin-left:-6.287467pt;}
._5{margin-left:-5.288000pt;}
._1{margin-left:-3.948800pt;}
._4{margin-left:-2.272000pt;}
._2{margin-left:-1.278400pt;}
._0{width:1.042667pt;}
._c{width:2.288000pt;}
._67{width:3.457600pt;}
._b{width:4.441067pt;}
._7{width:5.498667pt;}
._6d{width:6.439467pt;}
._9{width:7.642667pt;}
._a{width:8.693333pt;}
._4d{width:9.786667pt;}
._6f{width:13.824000pt;}
._6c{width:15.115200pt;}
._70{width:16.262400pt;}
._6e{width:18.873600pt;}
._72{width:30.339200pt;}
._71{width:31.312000pt;}
._3{width:32.621333pt;}
._69{width:37.568533pt;}
._6a{width:39.894400pt;}
._4b{width:44.012680pt;}
._58{width:109.621867pt;}
._5b{width:110.682667pt;}
._5a{width:129.728533pt;}
._64{width:132.261333pt;}
._61{width:135.564800pt;}
._59{width:154.857067pt;}
._32{width:161.816000pt;}
._63{width:175.027733pt;}
._5d{width:176.521600pt;}
._42{width:179.333333pt;}
._5c{width:184.068800pt;}
._55{width:198.384000pt;}
._24{width:206.204267pt;}
._54{width:214.300267pt;}
._22{width:235.385600pt;}
._1f{width:237.324800pt;}
._4e{width:254.272000pt;}
._e{width:257.034667pt;}
._1c{width:273.584000pt;}
._f{width:277.060267pt;}
._3d{width:285.841600pt;}
._51{width:289.603200pt;}
._66{width:292.272000pt;}
._50{width:296.731733pt;}
._25{width:302.941333pt;}
._47{width:311.623467pt;}
._30{width:317.152000pt;}
._4a{width:318.306667pt;}
._52{width:322.143467pt;}
._5f{width:329.610667pt;}
._11{width:339.006933pt;}
._3c{width:348.496000pt;}
._18{width:351.006400pt;}
._27{width:363.005867pt;}
._62{width:393.647467pt;}
._56{width:410.470933pt;}
._60{width:418.938667pt;}
._57{width:423.024000pt;}
._4f{width:465.155733pt;}
._5e{width:488.871467pt;}
._65{width:493.883200pt;}
._53{width:504.219733pt;}
._48{width:561.981867pt;}
._d{width:575.350400pt;}
._1b{width:595.884267pt;}
._31{width:597.785067pt;}
._49{width:646.461867pt;}
._46{width:651.741333pt;}
._43{width:659.680533pt;}
._1e{width:665.326933pt;}
._21{width:671.575467pt;}
._19{width:678.331200pt;}
._33{width:685.570133pt;}
._26{width:688.929600pt;}
._28{width:691.751467pt;}
._23{width:693.427200pt;}
._2b{width:694.539200pt;}
._20{width:695.605867pt;}
._2e{width:701.024533pt;}
._1a{width:706.187200pt;}
._10{width:710.027200pt;}
._2f{width:711.051200pt;}
._2c{width:718.551467pt;}
._37{width:720.470400pt;}
._34{width:722.380267pt;}
._3e{width:727.904533pt;}
._1d{width:732.801600pt;}
._3a{width:735.135467pt;}
._29{width:743.236267pt;}
._35{width:751.141333pt;}
._3f{width:752.267200pt;}
._39{width:757.131200pt;}
._38{width:760.843200pt;}
._2d{width:762.454400pt;}
._13{width:763.872533pt;}
._36{width:767.148267pt;}
._2a{width:768.604800pt;}
._16{width:774.837867pt;}
._17{width:778.411733pt;}
._45{width:785.835733pt;}
._41{width:787.296533pt;}
._14{width:803.219200pt;}
._40{width:808.761600pt;}
._12{width:812.900800pt;}
._3b{width:854.870400pt;}
._44{width:863.348800pt;}
._15{width:901.399467pt;}
.fsa{font-size:7.707733pt;}
.fs9{font-size:15.416000pt;}
.fsb{font-size:19.269867pt;}
.fsc{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y175{bottom:0.158267pt;}
.y1{bottom:60.555333pt;}
.y38{bottom:63.299600pt;}
.y39{bottom:66.698800pt;}
.y186{bottom:100.514400pt;}
.ye{bottom:104.175867pt;}
.y19e{bottom:106.731200pt;}
.yd1{bottom:107.111867pt;}
.yd{bottom:116.975867pt;}
.yb0{bottom:119.181067pt;}
.y65{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.yd0{bottom:124.711867pt;}
.y77{bottom:126.250933pt;}
.ya2{bottom:126.960667pt;}
.yc{bottom:129.775867pt;}
.yaf{bottom:137.847733pt;}
.y64{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.ycf{bottom:142.311867pt;}
.yb{bottom:142.575867pt;}
.y76{bottom:147.101333pt;}
.ya1{bottom:147.773333pt;}
.yae{bottom:156.514400pt;}
.y63{bottom:156.514533pt;}
.yce{bottom:159.911867pt;}
.y28{bottom:160.189067pt;}
.y75{bottom:167.951733pt;}
.ya0{bottom:168.585867pt;}
.yad{bottom:175.181067pt;}
.y62{bottom:175.181200pt;}
.y14b{bottom:178.361333pt;}
.y27{bottom:178.855733pt;}
.y35{bottom:180.812133pt;}
.y74{bottom:188.802133pt;}
.y9f{bottom:189.398400pt;}
.yac{bottom:193.847733pt;}
.y61{bottom:193.847867pt;}
.y151{bottom:193.930739pt;}
.y34{bottom:196.812000pt;}
.y26{bottom:197.522400pt;}
.y107{bottom:199.169523pt;}
.y12a{bottom:204.422478pt;}
.yea{bottom:207.038329pt;}
.y73{bottom:209.652533pt;}
.y9e{bottom:210.211067pt;}
.yab{bottom:212.514400pt;}
.y60{bottom:212.514533pt;}
.y33{bottom:212.812000pt;}
.y167{bottom:214.907714pt;}
.y25{bottom:216.189067pt;}
.y13d{bottom:225.384891pt;}
.y32{bottom:228.812000pt;}
.y72{bottom:230.502933pt;}
.yec{bottom:230.636371pt;}
.y9d{bottom:231.023733pt;}
.yaa{bottom:231.181067pt;}
.y1ad{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y162{bottom:235.881182pt;}
.yf9{bottom:238.498531pt;}
.y1a1{bottom:243.947467pt;}
.y5f{bottom:243.947600pt;}
.y31{bottom:244.812000pt;}
.y134{bottom:246.358359pt;}
.ya9{bottom:249.847733pt;}
.y1ac{bottom:249.847867pt;}
.y71{bottom:251.353333pt;}
.y9c{bottom:251.836267pt;}
.y23{bottom:253.522400pt;}
.ydd{bottom:254.219707pt;}
.y164{bottom:256.858504pt;}
.y30{bottom:260.812000pt;}
.y113{bottom:262.105343pt;}
.y137{bottom:267.331827pt;}
.ya8{bottom:268.514400pt;}
.y1ab{bottom:268.514533pt;}
.y10d{bottom:269.967503pt;}
.y22{bottom:272.189067pt;}
.y70{bottom:272.203733pt;}
.y9b{bottom:272.648800pt;}
.y2f{bottom:276.812000pt;}
.y161{bottom:277.828118pt;}
.y10a{bottom:277.829663pt;}
.ya7{bottom:287.181067pt;}
.y5e{bottom:287.181200pt;}
.y158{bottom:288.315199pt;}
.y21{bottom:290.855733pt;}
.y6f{bottom:293.054133pt;}
.y9a{bottom:293.461467pt;}
.y11e{bottom:293.561691pt;}
.y15e{bottom:298.801586pt;}
.y114{bottom:298.810839pt;}
.yf0{bottom:303.349789pt;}
.ya6{bottom:305.847733pt;}
.y5d{bottom:305.847867pt;}
.y2e{bottom:307.930133pt;}
.y14d{bottom:309.288667pt;}
.y20{bottom:309.522400pt;}
.y6e{bottom:314.171200pt;}
.y99{bottom:314.274133pt;}
.y119{bottom:317.155879pt;}
.y121{bottom:319.780453pt;}
.y2d{bottom:323.930133pt;}
.ya5{bottom:324.514400pt;}
.y5c{bottom:324.514533pt;}
.y1f{bottom:328.189067pt;}
.y139{bottom:330.259939pt;}
.y98{bottom:335.086667pt;}
.yfc{bottom:335.503711pt;}
.y1af{bottom:336.456533pt;}
.y2c{bottom:339.930133pt;}
.y13b{bottom:340.746673pt;}
.y6d{bottom:342.778000pt;}
.ya4{bottom:343.181067pt;}
.y5b{bottom:343.181200pt;}
.y100{bottom:345.335265pt;}
.y1e{bottom:346.855733pt;}
.y149{bottom:351.229553pt;}
.y19b{bottom:352.352800pt;}
.y97{bottom:355.899200pt;}
.y2b{bottom:355.930133pt;}
.ye9{bottom:356.481033pt;}
.y6c{bottom:360.378000pt;}
.ydf{bottom:360.513027pt;}
.y145{bottom:361.720141pt;}
.ya3{bottom:361.847733pt;}
.y5a{bottom:361.847867pt;}
.y10f{bottom:364.351963pt;}
.y1ae{bottom:365.165467pt;}
.y19a{bottom:369.952800pt;}
.y148{bottom:372.206875pt;}
.yf4{bottom:374.486921pt;}
.y1aa{bottom:374.614267pt;}
.y1d{bottom:375.733733pt;}
.y96{bottom:376.711867pt;}
.y185{bottom:380.514400pt;}
.y59{bottom:380.514533pt;}
.y1a0{bottom:381.666667pt;}
.y150{bottom:382.703513pt;}
.y199{bottom:387.552800pt;}
.yef{bottom:390.546539pt;}
.y14f{bottom:393.190247pt;}
.y95{bottom:397.524400pt;}
.y118{bottom:398.432885pt;}
.y184{bottom:399.181067pt;}
.y58{bottom:399.181200pt;}
.y19f{bottom:399.266667pt;}
.y129{bottom:403.678132pt;}
.y198{bottom:405.152800pt;}
.ycd{bottom:407.389067pt;}
.y133{bottom:414.153811pt;}
.y183{bottom:417.847733pt;}
.y57{bottom:417.847867pt;}
.y104{bottom:418.173073pt;}
.y94{bottom:418.337067pt;}
.y11b{bottom:419.868833pt;}
.y14c{bottom:424.570800pt;}
.y125{bottom:424.651647pt;}
.ycc{bottom:427.861467pt;}
.yf3{bottom:429.892025pt;}
.y16e{bottom:435.129535pt;}
.y182{bottom:436.514400pt;}
.y56{bottom:436.514533pt;}
.y93{bottom:439.149600pt;}
.y1a9{bottom:441.359467pt;}
.y142{bottom:445.617867pt;}
.y1c{bottom:447.313733pt;}
.ycb{bottom:448.333867pt;}
.yd9{bottom:450.862349pt;}
.y181{bottom:455.181067pt;}
.y55{bottom:455.181200pt;}
.y11a{bottom:455.379589pt;}
.y131{bottom:456.108455pt;}
.y92{bottom:459.962267pt;}
.y169{bottom:466.601867pt;}
.yca{bottom:468.806400pt;}
.y180{bottom:473.847733pt;}
.y54{bottom:473.847867pt;}
.y174{bottom:477.080325pt;}
.y91{bottom:480.774800pt;}
.yf8{bottom:482.325695pt;}
.y1b{bottom:483.811467pt;}
.yee{bottom:486.838729pt;}
.y141{bottom:487.568657pt;}
.yc9{bottom:489.278800pt;}
.y17f{bottom:492.514400pt;}
.y6b{bottom:492.514533pt;}
.y12d{bottom:498.062592pt;}
.y1a{bottom:501.411467pt;}
.y90{bottom:501.587467pt;}
.y10b{bottom:503.307933pt;}
.y53{bottom:504.456533pt;}
.y159{bottom:508.552029pt;}
.yc8{bottom:509.751200pt;}
.ye2{bottom:509.924899pt;}
.y17e{bottom:511.181067pt;}
.y6a{bottom:511.181200pt;}
.y19{bottom:519.011333pt;}
.y170{bottom:519.031115pt;}
.y8f{bottom:522.400000pt;}
.yd6{bottom:526.890207pt;}
.y152{bottom:529.525497pt;}
.y17d{bottom:529.847733pt;}
.y69{bottom:529.847867pt;}
.yc7{bottom:530.223733pt;}
.y19d{bottom:532.748000pt;}
.y52{bottom:533.165467pt;}
.y117{bottom:534.768135pt;}
.yf2{bottom:535.113933pt;}
.y18{bottom:536.611467pt;}
.y16c{bottom:540.000729pt;}
.ye6{bottom:541.315729pt;}
.y8e{bottom:543.212667pt;}
.y17c{bottom:548.514400pt;}
.y68{bottom:548.514533pt;}
.y19c{bottom:550.348000pt;}
.y146{bottom:550.489061pt;}
.yc6{bottom:550.696133pt;}
.y112{bottom:550.793067pt;}
.yf6{bottom:551.150427pt;}
.y17{bottom:554.211467pt;}
.y130{bottom:560.979649pt;}
.yf5{bottom:562.188283pt;}
.y8d{bottom:564.025200pt;}
.y17b{bottom:567.181067pt;}
.y67{bottom:567.181200pt;}
.yc5{bottom:571.168533pt;}
.y173{bottom:571.468639pt;}
.y16{bottom:571.811467pt;}
.ye0{bottom:579.327731pt;}
.y13f{bottom:581.953117pt;}
.y8c{bottom:584.837867pt;}
.y17a{bottom:585.847733pt;}
.y51{bottom:585.847867pt;}
.y15{bottom:589.411467pt;}
.yc4{bottom:591.640933pt;}
.y160{bottom:592.449408pt;}
.y14a{bottom:602.926585pt;}
.y50{bottom:604.514533pt;}
.y8b{bottom:605.650400pt;}
.y14{bottom:607.011333pt;}
.y1a8{bottom:609.359467pt;}
.yc3{bottom:612.113467pt;}
.yda{bottom:612.757327pt;}
.y136{bottom:613.417173pt;}
.y66{bottom:617.280933pt;}
.ye8{bottom:622.599733pt;}
.y179{bottom:623.181067pt;}
.y4f{bottom:623.181200pt;}
.y163{bottom:623.913464pt;}
.y13{bottom:624.611467pt;}
.y8a{bottom:626.463067pt;}
.ye7{bottom:631.769109pt;}
.yc2{bottom:632.585867pt;}
.y132{bottom:634.390641pt;}
.y108{bottom:639.639329pt;}
.y178{bottom:641.847733pt;}
.y4e{bottom:641.847867pt;}
.y12{bottom:642.211467pt;}
.y171{bottom:644.879631pt;}
.ye4{bottom:646.668673pt;}
.y89{bottom:647.275600pt;}
.yfd{bottom:651.416091pt;}
.yc1{bottom:653.058267pt;}
.y12b{bottom:655.375164pt;}
.y11{bottom:659.811467pt;}
.y177{bottom:660.514400pt;}
.y4d{bottom:660.514533pt;}
.ydc{bottom:660.604737pt;}
.y15a{bottom:665.860400pt;}
.y157{bottom:665.864601pt;}
.y88{bottom:668.088267pt;}
.yc0{bottom:673.530800pt;}
.yfb{bottom:673.680649pt;}
.y166{bottom:676.347134pt;}
.y4c{bottom:679.181200pt;}
.y103{bottom:681.590119pt;}
.y135{bottom:686.824311pt;}
.y10{bottom:687.453600pt;}
.y87{bottom:688.900933pt;}
.y102{bottom:689.456133pt;}
.y176{bottom:690.732267pt;}
.ybf{bottom:694.003200pt;}
.y123{bottom:697.322147pt;}
.y4b{bottom:697.847867pt;}
.y101{bottom:698.627591pt;}
.y1a7{bottom:702.692667pt;}
.y120{bottom:707.808881pt;}
.y86{bottom:709.713467pt;}
.ybe{bottom:714.475733pt;}
.y4a{bottom:716.514533pt;}
.y144{bottom:718.288367pt;}
.yd5{bottom:726.673859pt;}
.y13a{bottom:728.775101pt;}
.y85{bottom:730.526000pt;}
.ybd{bottom:734.948133pt;}
.y197{bottom:734.992133pt;}
.y49{bottom:735.181200pt;}
.yd7{bottom:737.950663pt;}
.y11f{bottom:739.272937pt;}
.y106{bottom:742.043963pt;}
.ye3{bottom:747.127037pt;}
.y15b{bottom:749.758126pt;}
.y156{bottom:749.762327pt;}
.y196{bottom:751.307067pt;}
.y84{bottom:751.338667pt;}
.ye1{bottom:752.040887pt;}
.y48{bottom:753.847867pt;}
.y111{bottom:755.004965pt;}
.ybc{bottom:755.420533pt;}
.ya{bottom:757.926133pt;}
.y16f{bottom:760.237559pt;}
.y195{bottom:767.622133pt;}
.y11c{bottom:770.736993pt;}
.y83{bottom:772.151200pt;}
.y47{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ybb{bottom:775.892933pt;}
.yf1{bottom:775.973517pt;}
.y194{bottom:780.955467pt;}
.y15c{bottom:781.222182pt;}
.y155{bottom:781.226383pt;}
.y8{bottom:789.926133pt;}
.y46{bottom:791.181200pt;}
.y16d{bottom:791.701615pt;}
.y82{bottom:792.963867pt;}
.y1a6{bottom:796.026000pt;}
.yba{bottom:796.365333pt;}
.yd3{bottom:796.943841pt;}
.y193{bottom:797.270400pt;}
.y153{bottom:802.195997pt;}
.y7{bottom:805.926133pt;}
.y45{bottom:809.847867pt;}
.y116{bottom:810.714535pt;}
.yde{bottom:811.107291pt;}
.y13c{bottom:812.672827pt;}
.y192{bottom:813.585333pt;}
.y81{bottom:813.776400pt;}
.yb9{bottom:816.837867pt;}
.yd8{bottom:820.865619pt;}
.y6{bottom:821.926133pt;}
.y14e{bottom:823.165611pt;}
.y115{bottom:828.415957pt;}
.y44{bottom:828.514533pt;}
.y191{bottom:829.900267pt;}
.yfa{bottom:832.669711pt;}
.y168{bottom:833.573467pt;}
.y126{bottom:833.657350pt;}
.y124{bottom:833.657397pt;}
.y80{bottom:834.589067pt;}
.y109{bottom:836.281971pt;}
.yb8{bottom:837.310267pt;}
.y15d{bottom:844.142586pt;}
.y154{bottom:844.142933pt;}
.y190{bottom:846.215200pt;}
.y43{bottom:847.181200pt;}
.y1a5{bottom:852.026000pt;}
.y5{bottom:853.044133pt;}
.y143{bottom:854.623617pt;}
.y7f{bottom:855.401600pt;}
.yb7{bottom:857.782667pt;}
.y18f{bottom:859.548533pt;}
.y165{bottom:865.119908pt;}
.y42{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yed{bottom:873.321703pt;}
.y122{bottom:875.608187pt;}
.y18e{bottom:875.863467pt;}
.y7e{bottom:876.214133pt;}
.yb6{bottom:878.255200pt;}
.y105{bottom:880.722445pt;}
.y11d{bottom:880.849627pt;}
.y41{bottom:884.514533pt;}
.y128{bottom:886.098728pt;}
.y18d{bottom:889.196800pt;}
.y110{bottom:895.275149pt;}
.y138{bottom:896.574407pt;}
.y7d{bottom:897.026800pt;}
.yb5{bottom:898.727600pt;}
.ydb{bottom:901.811181pt;}
.y40{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y18c{bottom:905.511867pt;}
.y172{bottom:907.063397pt;}
.y1a4{bottom:908.026000pt;}
.yf7{bottom:909.688047pt;}
.y16b{bottom:917.550131pt;}
.y7c{bottom:917.839467pt;}
.y18b{bottom:918.845200pt;}
.yb4{bottom:919.200000pt;}
.y3f{bottom:921.847867pt;}
.y12f{bottom:928.038463pt;}
.y2{bottom:932.695600pt;}
.yff{bottom:933.282235pt;}
.y18a{bottom:935.160133pt;}
.y140{bottom:938.525197pt;}
.y7b{bottom:938.652000pt;}
.yb3{bottom:939.672533pt;}
.y3e{bottom:940.514533pt;}
.y13e{bottom:949.008077pt;}
.yd4{bottom:951.265709pt;}
.y189{bottom:951.475067pt;}
.y3d{bottom:959.181200pt;}
.y7a{bottom:959.464533pt;}
.y16a{bottom:959.497067pt;}
.y188{bottom:959.632533pt;}
.yb2{bottom:960.144933pt;}
.y1a3{bottom:963.727067pt;}
.yd2{bottom:967.363867pt;}
.yfe{bottom:967.367011pt;}
.y15f{bottom:969.991102pt;}
.yeb{bottom:975.236879pt;}
.y3c{bottom:977.847867pt;}
.y79{bottom:980.277200pt;}
.y12e{bottom:980.472133pt;}
.y12c{bottom:980.479334pt;}
.yb1{bottom:980.617333pt;}
.y10e{bottom:985.728529pt;}
.yf{bottom:986.502667pt;}
.y1a2{bottom:989.952800pt;}
.y147{bottom:990.958867pt;}
.y187{bottom:994.885067pt;}
.ye5{bottom:996.203349pt;}
.y3b{bottom:996.514533pt;}
.y78{bottom:1001.356400pt;}
.y127{bottom:1001.456656pt;}
.y10c{bottom:1004.077423pt;}
.y37{bottom:1030.390667pt;}
.y36{bottom:1047.724000pt;}
.y3a{bottom:1047.726000pt;}
.h16{height:11.343707pt;}
.h15{height:11.358762pt;}
.h19{height:11.359123pt;}
.h1a{height:11.359180pt;}
.h17{height:11.365460pt;}
.h1b{height:14.198354pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h14{height:32.437500pt;}
.h1e{height:32.500772pt;}
.h12{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h9{height:40.546875pt;}
.h10{height:42.786458pt;}
.hc{height:43.333333pt;}
.h1c{height:43.750000pt;}
.h11{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{height:48.656250pt;}
.h1d{height:66.609033pt;}
.h3{height:72.205729pt;}
.h18{height:836.788000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:370.353333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xf{left:99.779467pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x5b{left:125.137333pt;}
.x5c{left:142.986800pt;}
.xe{left:180.380000pt;}
.x51{left:226.792000pt;}
.x5e{left:250.083067pt;}
.x5d{left:260.476267pt;}
.x59{left:265.358267pt;}
.x5{left:266.834667pt;}
.x62{left:279.911200pt;}
.xc{left:281.952800pt;}
.x5a{left:303.601333pt;}
.x16{left:320.421733pt;}
.x30{left:336.089150pt;}
.x19{left:340.414000pt;}
.x13{left:343.015600pt;}
.x14{left:344.786400pt;}
.x10{left:346.578000pt;}
.x15{left:348.703067pt;}
.x4{left:352.045067pt;}
.x12{left:353.179600pt;}
.x17{left:354.499867pt;}
.x28{left:359.000224pt;}
.x44{left:367.481798pt;}
.x11{left:369.161333pt;}
.x18{left:371.190000pt;}
.x45{left:372.939062pt;}
.x1a{left:374.200400pt;}
.x35{left:375.307454pt;}
.x1f{left:377.164126pt;}
.x37{left:380.764718pt;}
.x41{left:385.121556pt;}
.x63{left:389.135600pt;}
.x42{left:392.871950pt;}
.x38{left:394.816402pt;}
.x5f{left:396.830933pt;}
.x3b{left:400.273666pt;}
.x23{left:401.494428pt;}
.x3c{left:403.017714pt;}
.x1c{left:405.941944pt;}
.x2a{left:407.379486pt;}
.x26{left:409.244822pt;}
.x1e{left:411.403062pt;}
.x2b{left:412.840604pt;}
.x27{left:414.520948pt;}
.x3e{left:415.666542pt;}
.x4a{left:420.921362pt;}
.x49{left:422.813676pt;}
.x2d{left:424.229174pt;}
.x2c{left:425.258192pt;}
.x22{left:427.967554pt;}
.x2e{left:429.690292pt;}
.x24{left:430.688478pt;}
.x3f{left:432.450712pt;}
.x47{left:434.024962pt;}
.x3a{left:435.217884pt;}
.x25{left:436.149596pt;}
.x32{left:438.674922pt;}
.x40{left:440.542076pt;}
.x31{left:441.600108pt;}
.x3d{left:444.001150pt;}
.x33{left:445.226722pt;}
.x34{left:446.425316pt;}
.x20{left:447.673056pt;}
.x29{left:448.601870pt;}
.x1d{left:450.359294pt;}
.x43{left:452.204280pt;}
.x36{left:453.763332pt;}
.x21{left:455.427304pt;}
.x39{left:456.723204pt;}
.x1b{left:458.618416pt;}
.x46{left:459.669478pt;}
.x2f{left:461.972352pt;}
.x48{left:467.419872pt;}
.x4b{left:492.139428pt;}
.x64{left:497.858267pt;}
.x65{left:508.636933pt;}
.x52{left:514.704154pt;}
.x60{left:519.459867pt;}
.x53{left:526.497394pt;}
.x55{left:528.571373pt;}
.x50{left:529.487121pt;}
.x4c{left:530.390378pt;}
.x54{left:531.284589pt;}
.x57{left:555.306571pt;}
.x4e{left:557.536533pt;}
.x4d{left:558.912628pt;}
.x4f{left:564.770491pt;}
.x56{left:566.895549pt;}
.x58{left:570.398835pt;}
.xa{left:574.131067pt;}
.x9{left:603.370667pt;}
.x66{left:618.839600pt;}
.x67{left:630.842267pt;}
.x61{left:640.610400pt;}
.x1{left:717.405733pt;}
}




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