
    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_831c721b135fa317c500865a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_af7d8491fa9b017490f1cc6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_4eafc92d541dbeba4d0eece0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_eb959ea7197c11f1d7e9dad4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;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_a4d24c9b95f77b8ee1c6662d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_fec020a791029976e2a2639b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_629fdd9721a84445ccf2a2cd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_56094842e478ebc570fa80d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_34d5c651559f5fbc0ac86c88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_19eaa81d73700890efab2679.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_5a00cd8a69502357bbe879e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.015625;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_d04b6f83544853a0e651ce3b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1fcac4e7c6a6a2e407b328c3.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-62.663040px;}
.v2{vertical-align:-23.759400px;}
.v6{vertical-align:-20.880000px;}
.v3{vertical-align:-5.803200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.699520px;}
.v4{vertical-align:29.524320px;}
.ls35{letter-spacing:-3.444480px;}
.ls59{letter-spacing:-1.589760px;}
.ls74{letter-spacing:-1.457280px;}
.ls6f{letter-spacing:-1.391040px;}
.ls6e{letter-spacing:-1.324800px;}
.ls6c{letter-spacing:-1.192320px;}
.ls6d{letter-spacing:-1.059840px;}
.lsb{letter-spacing:-0.993600px;}
.lsc{letter-spacing:-0.927360px;}
.ls60{letter-spacing:-0.861120px;}
.ls1f{letter-spacing:-0.794880px;}
.ls1e{letter-spacing:-0.728640px;}
.ls18{letter-spacing:-0.662400px;}
.ls2c{letter-spacing:-0.626400px;}
.ls14{letter-spacing:-0.596160px;}
.ls52{letter-spacing:-0.537840px;}
.ls19{letter-spacing:-0.529920px;}
.ls13{letter-spacing:-0.463680px;}
.ls34{letter-spacing:-0.397440px;}
.ls50{letter-spacing:-0.358560px;}
.ls5f{letter-spacing:-0.334080px;}
.ls12{letter-spacing:-0.331200px;}
.ls7a{letter-spacing:-0.298800px;}
.ls7{letter-spacing:-0.292320px;}
.ls5{letter-spacing:-0.264960px;}
.ls5e{letter-spacing:-0.253440px;}
.ls25{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.198720px;}
.ls26{letter-spacing:-0.179280px;}
.ls6{letter-spacing:-0.132480px;}
.ls22{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.066240px;}
.ls24{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.006624px;}
.ls4f{letter-spacing:0.013248px;}
.ls15{letter-spacing:0.059616px;}
.ls4c{letter-spacing:0.059760px;}
.ls8{letter-spacing:0.066240px;}
.ls27{letter-spacing:0.083520px;}
.ls58{letter-spacing:0.119520px;}
.ls39{letter-spacing:0.125856px;}
.ls5a{letter-spacing:0.126720px;}
.ls1{letter-spacing:0.132480px;}
.ls75{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.179280px;}
.ls44{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.198720px;}
.ls54{letter-spacing:0.239040px;}
.ls31{letter-spacing:0.258336px;}
.ls0{letter-spacing:0.264720px;}
.ls3{letter-spacing:0.264960px;}
.ls48{letter-spacing:0.288000px;}
.ls43{letter-spacing:0.291456px;}
.ls23{letter-spacing:0.298800px;}
.ls45{letter-spacing:0.299520px;}
.ls49{letter-spacing:0.316800px;}
.ls40{letter-spacing:0.321984px;}
.ls47{letter-spacing:0.325440px;}
.ls2b{letter-spacing:0.331200px;}
.ls4b{letter-spacing:0.362880px;}
.ls65{letter-spacing:0.377568px;}
.ls64{letter-spacing:0.397440px;}
.ls21{letter-spacing:0.418320px;}
.ls41{letter-spacing:0.642240px;}
.ls53{letter-spacing:0.660960px;}
.lse{letter-spacing:0.861120px;}
.ls71{letter-spacing:0.874368px;}
.ls51{letter-spacing:0.896400px;}
.ls62{letter-spacing:0.907488px;}
.ls4a{letter-spacing:1.362240px;}
.ls42{letter-spacing:1.550016px;}
.ls66{letter-spacing:1.563264px;}
.ls1c{letter-spacing:1.589760px;}
.ls76{letter-spacing:1.642752px;}
.ls33{letter-spacing:2.238912px;}
.ls29{letter-spacing:2.318400px;}
.ls46{letter-spacing:2.802240px;}
.ls32{letter-spacing:3.047040px;}
.ls4d{letter-spacing:3.047760px;}
.ls72{letter-spacing:3.113280px;}
.ls3d{letter-spacing:3.155328px;}
.ls55{letter-spacing:3.227040px;}
.ls2d{letter-spacing:3.775680px;}
.ls3a{letter-spacing:4.438080px;}
.ls30{letter-spacing:4.464576px;}
.ls78{letter-spacing:4.900320px;}
.ls2e{letter-spacing:5.166720px;}
.ls11{letter-spacing:5.895360px;}
.ls28{letter-spacing:5.915232px;}
.ls67{letter-spacing:6.624000px;}
.ls3c{letter-spacing:7.352640px;}
.ls79{letter-spacing:8.020800px;}
.ls68{letter-spacing:8.081280px;}
.ls20{letter-spacing:8.784720px;}
.ls63{letter-spacing:8.803296px;}
.ls38{letter-spacing:8.809920px;}
.ls5d{letter-spacing:9.538560px;}
.ls61{letter-spacing:9.561600px;}
.ls7b{letter-spacing:9.565056px;}
.ls5c{letter-spacing:10.200960px;}
.ls2f{letter-spacing:10.929600px;}
.ls73{letter-spacing:11.095200px;}
.ls17{letter-spacing:11.658240px;}
.ls3e{letter-spacing:12.386880px;}
.ls36{letter-spacing:13.115520px;}
.ls1b{letter-spacing:14.572800px;}
.ls2{letter-spacing:15.235320px;}
.ls70{letter-spacing:15.963840px;}
.ls2a{letter-spacing:17.421120px;}
.ls57{letter-spacing:18.149760px;}
.ls1d{letter-spacing:18.878400px;}
.ls3b{letter-spacing:19.607040px;}
.ls37{letter-spacing:20.335680px;}
.ls6a{letter-spacing:23.184000px;}
.ls6b{letter-spacing:23.323104px;}
.ls69{letter-spacing:23.912640px;}
.ls16{letter-spacing:25.369920px;}
.ls1a{letter-spacing:27.489600px;}
.ls4e{letter-spacing:28.218240px;}
.ls10{letter-spacing:28.946880px;}
.ls5b{letter-spacing:30.404160px;}
.lsf{letter-spacing:39.015360px;}
.ls56{letter-spacing:305.432640px;}
.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;}
}
.wsd2{word-spacing:-66.240000px;}
.wsf1{word-spacing:-17.360640px;}
.ws129{word-spacing:-15.367680px;}
.ws79{word-spacing:-15.301440px;}
.ws4{word-spacing:-15.235200px;}
.ws15{word-spacing:-15.168960px;}
.ws2f{word-spacing:-15.102720px;}
.ws3{word-spacing:-15.036480px;}
.ws2{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.904000px;}
.ws7c{word-spacing:-14.837760px;}
.ws16{word-spacing:-14.771520px;}
.ws5{word-spacing:-14.705280px;}
.ws9e{word-spacing:-14.572800px;}
.wsc1{word-spacing:-14.506560px;}
.ws107{word-spacing:-14.440320px;}
.ws30{word-spacing:-14.374080px;}
.wse6{word-spacing:-14.307840px;}
.wsaa{word-spacing:-14.241600px;}
.ws9d{word-spacing:-14.175360px;}
.wsf2{word-spacing:-14.109120px;}
.wsa9{word-spacing:-14.042880px;}
.ws7{word-spacing:-13.976640px;}
.wse1{word-spacing:-13.804560px;}
.wse4{word-spacing:-13.744800px;}
.wscb{word-spacing:-13.565520px;}
.ws8{word-spacing:-13.560000px;}
.wsb9{word-spacing:-13.505760px;}
.wse2{word-spacing:-13.446000px;}
.wsc2{word-spacing:-13.386240px;}
.ws6e{word-spacing:-13.326480px;}
.ws6d{word-spacing:-13.266720px;}
.ws7b{word-spacing:-9.521280px;}
.wse3{word-spacing:-9.447840px;}
.ws0{word-spacing:-9.437760px;}
.ws1{word-spacing:-9.145440px;}
.ws7a{word-spacing:-8.811360px;}
.wse0{word-spacing:-8.786880px;}
.wsba{word-spacing:-4.305600px;}
.ws82{word-spacing:-4.106880px;}
.ws9f{word-spacing:-3.576960px;}
.wsf3{word-spacing:-3.421440px;}
.ws1d{word-spacing:-3.378240px;}
.ws1c{word-spacing:-3.179520px;}
.ws113{word-spacing:-3.047040px;}
.ws49{word-spacing:-2.980800px;}
.ws36{word-spacing:-2.848320px;}
.ws3e{word-spacing:-2.649600px;}
.wsd9{word-spacing:-2.450880px;}
.ws2d{word-spacing:-2.119680px;}
.ws122{word-spacing:-2.053440px;}
.ws48{word-spacing:-1.920960px;}
.wsb0{word-spacing:-1.788480px;}
.ws2e{word-spacing:-1.722240px;}
.wsd5{word-spacing:-1.553760px;}
.ws39{word-spacing:-1.523520px;}
.ws23{word-spacing:-1.391040px;}
.wsc5{word-spacing:-1.258560px;}
.ws74{word-spacing:-1.195200px;}
.ws35{word-spacing:-1.192320px;}
.wsb8{word-spacing:-1.059840px;}
.ws73{word-spacing:-1.015920px;}
.ws25{word-spacing:-0.993600px;}
.ws87{word-spacing:-0.861120px;}
.ws31{word-spacing:-0.728640px;}
.wsff{word-spacing:-0.717120px;}
.wsc{word-spacing:-0.662400px;}
.ws1b{word-spacing:-0.529920px;}
.ws75{word-spacing:-0.478080px;}
.wsd{word-spacing:-0.463680px;}
.ws1a{word-spacing:-0.397440px;}
.ws24{word-spacing:-0.331200px;}
.wsbd{word-spacing:-0.298800px;}
.ws10{word-spacing:-0.264960px;}
.wsaf{word-spacing:-0.198720px;}
.wsf0{word-spacing:-0.190080px;}
.ws13{word-spacing:-0.132480px;}
.wsc0{word-spacing:-0.119520px;}
.ws14{word-spacing:-0.066240px;}
.ws9{word-spacing:0.000000px;}
.ws71{word-spacing:0.059760px;}
.wse{word-spacing:0.066240px;}
.wsd1{word-spacing:0.119520px;}
.ws43{word-spacing:0.132480px;}
.wsf{word-spacing:0.198720px;}
.wsbb{word-spacing:0.239040px;}
.wsb{word-spacing:0.264960px;}
.ws12a{word-spacing:0.298800px;}
.ws6c{word-spacing:0.331200px;}
.wsf5{word-spacing:0.334080px;}
.wsa{word-spacing:0.397440px;}
.wsbc{word-spacing:0.418320px;}
.wse8{word-spacing:0.463680px;}
.ws4f{word-spacing:0.529920px;}
.wse5{word-spacing:0.537840px;}
.ws66{word-spacing:0.596160px;}
.wsca{word-spacing:0.597600px;}
.ws4e{word-spacing:0.662400px;}
.ws37{word-spacing:0.728640px;}
.ws8c{word-spacing:0.794880px;}
.ws10a{word-spacing:0.861120px;}
.ws38{word-spacing:0.927360px;}
.wsc8{word-spacing:0.956160px;}
.ws114{word-spacing:1.059840px;}
.ws12{word-spacing:1.126080px;}
.wsc9{word-spacing:1.135440px;}
.ws109{word-spacing:1.192320px;}
.wsac{word-spacing:1.258560px;}
.ws55{word-spacing:1.324800px;}
.ws103{word-spacing:1.391040px;}
.ws2c{word-spacing:1.457280px;}
.wsef{word-spacing:1.589760px;}
.ws2b{word-spacing:1.656000px;}
.wsea{word-spacing:1.673280px;}
.wseb{word-spacing:1.852560px;}
.ws56{word-spacing:1.854720px;}
.ws128{word-spacing:1.987200px;}
.wsb4{word-spacing:2.053440px;}
.ws84{word-spacing:2.185920px;}
.ws11d{word-spacing:2.252160px;}
.ws124{word-spacing:2.318400px;}
.ws22{word-spacing:2.384640px;}
.ws69{word-spacing:2.583360px;}
.ws108{word-spacing:2.715840px;}
.wsbe{word-spacing:2.748960px;}
.ws91{word-spacing:2.782080px;}
.ws97{word-spacing:2.914560px;}
.wsee{word-spacing:2.980800px;}
.ws116{word-spacing:3.047040px;}
.wsbf{word-spacing:3.107520px;}
.ws90{word-spacing:3.113280px;}
.wsa8{word-spacing:3.179520px;}
.ws58{word-spacing:3.312000px;}
.wsd4{word-spacing:3.406320px;}
.ws96{word-spacing:3.444480px;}
.ws8e{word-spacing:3.510720px;}
.wsd3{word-spacing:3.585600px;}
.ws60{word-spacing:3.643200px;}
.wsa4{word-spacing:3.709440px;}
.ws3b{word-spacing:3.841920px;}
.wsfb{word-spacing:3.908160px;}
.ws115{word-spacing:3.974400px;}
.ws85{word-spacing:4.040640px;}
.wsb6{word-spacing:4.173120px;}
.ws59{word-spacing:4.239360px;}
.ws88{word-spacing:4.305600px;}
.wsb7{word-spacing:4.438080px;}
.ws5a{word-spacing:4.504320px;}
.ws86{word-spacing:4.570560px;}
.ws92{word-spacing:4.703040px;}
.wsc7{word-spacing:4.900320px;}
.wsc6{word-spacing:5.019840px;}
.ws50{word-spacing:5.034240px;}
.ws81{word-spacing:5.100480px;}
.ws1f{word-spacing:5.232960px;}
.ws20{word-spacing:5.431680px;}
.ws4a{word-spacing:5.630400px;}
.ws1e{word-spacing:5.762880px;}
.ws83{word-spacing:5.829120px;}
.ws4b{word-spacing:5.961600px;}
.ws77{word-spacing:6.160320px;}
.ws121{word-spacing:6.292800px;}
.ws61{word-spacing:6.359040px;}
.ws10b{word-spacing:6.491520px;}
.ws7f{word-spacing:6.557760px;}
.ws7d{word-spacing:6.690240px;}
.wsf9{word-spacing:6.756480px;}
.ws62{word-spacing:6.822720px;}
.ws7e{word-spacing:6.888960px;}
.wsdf{word-spacing:7.153920px;}
.ws41{word-spacing:7.220160px;}
.wsb5{word-spacing:7.352640px;}
.ws65{word-spacing:7.418880px;}
.ws12d{word-spacing:7.551360px;}
.ws8f{word-spacing:7.617600px;}
.ws3c{word-spacing:7.948800px;}
.wsd0{word-spacing:8.127360px;}
.ws5f{word-spacing:8.147520px;}
.ws3d{word-spacing:8.346240px;}
.wse7{word-spacing:8.677440px;}
.ws72{word-spacing:8.844480px;}
.ws18{word-spacing:8.876160px;}
.ws80{word-spacing:9.074880px;}
.wsfe{word-spacing:9.262800px;}
.wsfd{word-spacing:9.382320px;}
.ws6a{word-spacing:9.406080px;}
.ws11a{word-spacing:9.472320px;}
.ws11{word-spacing:9.604800px;}
.wsfc{word-spacing:9.621360px;}
.ws19{word-spacing:9.737280px;}
.ws2a{word-spacing:9.803520px;}
.ws78{word-spacing:10.068480px;}
.ws21{word-spacing:10.267200px;}
.ws68{word-spacing:10.465920px;}
.ws117{word-spacing:10.797120px;}
.ws67{word-spacing:10.995840px;}
.wsce{word-spacing:11.055600px;}
.wsfa{word-spacing:11.062080px;}
.ws76{word-spacing:11.194560px;}
.wscf{word-spacing:11.234880px;}
.ws5e{word-spacing:11.525760px;}
.ws17{word-spacing:11.724480px;}
.wsa7{word-spacing:12.121920px;}
.ws45{word-spacing:12.254400px;}
.wsa3{word-spacing:12.320640px;}
.ws3a{word-spacing:12.453120px;}
.wsc3{word-spacing:12.585600px;}
.ws89{word-spacing:12.651840px;}
.wsd6{word-spacing:12.848400px;}
.wsa6{word-spacing:12.983040px;}
.wsa0{word-spacing:13.181760px;}
.wsd7{word-spacing:13.206960px;}
.wsed{word-spacing:13.380480px;}
.wsd8{word-spacing:13.386240px;}
.ws99{word-spacing:13.711680px;}
.ws119{word-spacing:13.777920px;}
.ws112{word-spacing:13.844160px;}
.ws52{word-spacing:13.910400px;}
.ws8d{word-spacing:14.109120px;}
.ws9a{word-spacing:14.374080px;}
.ws5d{word-spacing:14.440320px;}
.wsc4{word-spacing:14.639040px;}
.wsec{word-spacing:14.641200px;}
.wsde{word-spacing:14.837760px;}
.wsab{word-spacing:15.168960px;}
.ws120{word-spacing:15.367680px;}
.ws29{word-spacing:15.831360px;}
.ws28{word-spacing:16.030080px;}
.ws70{word-spacing:16.434000px;}
.ws54{word-spacing:16.560000px;}
.wsad{word-spacing:16.758720px;}
.ws6f{word-spacing:16.852320px;}
.wse9{word-spacing:16.957440px;}
.ws53{word-spacing:17.288640px;}
.ws4c{word-spacing:17.487360px;}
.ws4d{word-spacing:17.686080px;}
.wsf4{word-spacing:18.017280px;}
.ws64{word-spacing:18.216000px;}
.ws11b{word-spacing:18.348480px;}
.ws57{word-spacing:18.414720px;}
.ws8b{word-spacing:18.613440px;}
.ws123{word-spacing:18.745920px;}
.ws63{word-spacing:18.944640px;}
.ws6b{word-spacing:19.143360px;}
.wscd{word-spacing:19.474560px;}
.wscc{word-spacing:19.673280px;}
.ws118{word-spacing:19.872000px;}
.wsb3{word-spacing:20.070720px;}
.ws27{word-spacing:20.401920px;}
.wsae{word-spacing:20.600640px;}
.wsb1{word-spacing:20.865600px;}
.wsdd{word-spacing:20.931840px;}
.ws10f{word-spacing:21.064320px;}
.wsdb{word-spacing:21.130560px;}
.ws110{word-spacing:21.263040px;}
.wsdc{word-spacing:21.594240px;}
.wsb2{word-spacing:21.792960px;}
.ws93{word-spacing:22.521600px;}
.ws10e{word-spacing:23.051520px;}
.ws111{word-spacing:23.250240px;}
.ws98{word-spacing:23.448960px;}
.wsa5{word-spacing:23.978880px;}
.ws26{word-spacing:24.177600px;}
.ws11f{word-spacing:24.376320px;}
.ws104{word-spacing:24.508800px;}
.ws11e{word-spacing:24.707520px;}
.ws106{word-spacing:25.237440px;}
.ws51{word-spacing:25.436160px;}
.ws105{word-spacing:25.634880px;}
.ws126{word-spacing:26.164800px;}
.ws9c{word-spacing:26.827200px;}
.ws9b{word-spacing:27.025920px;}
.wsa1{word-spacing:27.357120px;}
.wsa2{word-spacing:27.754560px;}
.ws5b{word-spacing:28.284480px;}
.ws5c{word-spacing:28.483200px;}
.wsda{word-spacing:28.748160px;}
.ws46{word-spacing:29.013120px;}
.ws47{word-spacing:29.211840px;}
.ws10d{word-spacing:29.543040px;}
.ws127{word-spacing:29.741760px;}
.ws10c{word-spacing:30.271680px;}
.wsf6{word-spacing:30.470400px;}
.ws125{word-spacing:30.669120px;}
.ws11c{word-spacing:31.199040px;}
.wsf7{word-spacing:31.265280px;}
.wsf8{word-spacing:31.331520px;}
.ws33{word-spacing:32.788800px;}
.ws32{word-spacing:33.318720px;}
.ws34{word-spacing:33.517440px;}
.ws8a{word-spacing:33.848640px;}
.ws12b{word-spacing:34.444800px;}
.ws40{word-spacing:34.974720px;}
.ws12c{word-spacing:35.504640px;}
.ws95{word-spacing:36.233280px;}
.ws94{word-spacing:36.961920px;}
.ws42{word-spacing:39.081600px;}
.ws44{word-spacing:39.280320px;}
.ws101{word-spacing:39.744000px;}
.ws100{word-spacing:40.207680px;}
.ws102{word-spacing:41.267520px;}
.ws3f{word-spacing:49.878720px;}
._75{margin-left:-4253.811840px;}
._76{margin-left:-3559.095792px;}
._85{margin-left:-2816.478720px;}
._ae{margin-left:-2813.547744px;}
._4c{margin-left:-2810.293344px;}
._52{margin-left:-2808.598464px;}
._a6{margin-left:-2806.137792px;}
._31{margin-left:-2804.564160px;}
._5a{margin-left:-2802.782304px;}
._29{margin-left:-2801.283552px;}
._5b{margin-left:-2799.923328px;}
._53{margin-left:-2798.409024px;}
._5f{margin-left:-2796.440832px;}
._6c{margin-left:-2794.906368px;}
._2d{margin-left:-2793.409344px;}
._1f{margin-left:-2792.124288px;}
._3a{margin-left:-2791.091520px;}
._2b{margin-left:-2789.559072px;}
._2c{margin-left:-2788.276896px;}
._50{margin-left:-2786.792832px;}
._28{margin-left:-2785.784256px;}
._43{margin-left:-2784.375936px;}
._32{margin-left:-2783.223072px;}
._22{margin-left:-2781.152640px;}
._38{margin-left:-2780.051328px;}
._2e{margin-left:-2778.300288px;}
._20{margin-left:-2777.112000px;}
._2a{margin-left:-2776.078656px;}
._1a{margin-left:-2775.042144px;}
._27{margin-left:-2773.663488px;}
._5c{margin-left:-2772.643968px;}
._23{margin-left:-2771.605440px;}
._98{margin-left:-2768.400000px;}
._13{margin-left:-2765.752992px;}
._14{margin-left:-2762.267904px;}
._54{margin-left:-2760.860448px;}
._15{margin-left:-2758.073760px;}
._1d{margin-left:-2754.785952px;}
._d{margin-left:-2753.551584px;}
._1c{margin-left:-2752.512768px;}
._5{margin-left:-2751.130368px;}
._e{margin-left:-2749.651200px;}
._10{margin-left:-2748.010464px;}
._1e{margin-left:-2746.397664px;}
._11{margin-left:-2743.853184px;}
._7{margin-left:-2741.973696px;}
._12{margin-left:-2740.609440px;}
._f{margin-left:-2739.098016px;}
._8c{margin-left:-2712.503808px;}
._93{margin-left:-2709.610272px;}
._18{margin-left:-2689.370496px;}
._1{margin-left:-2687.105088px;}
._b4{margin-left:-2664.463968px;}
._69{margin-left:-2646.266688px;}
._9e{margin-left:-2634.044832px;}
._cb{margin-left:-2624.184576px;}
._a9{margin-left:-2600.685216px;}
._c1{margin-left:-2554.466112px;}
._d4{margin-left:-2506.190400px;}
._9{margin-left:-2503.403544px;}
._6a{margin-left:-2488.901760px;}
._d3{margin-left:-2470.884480px;}
._aa{margin-left:-2455.395840px;}
._a3{margin-left:-2392.124832px;}
._c8{margin-left:-2376.468288px;}
._8e{margin-left:-2373.372864px;}
._49{margin-left:-2370.595392px;}
._73{margin-left:-2366.742240px;}
._a7{margin-left:-2339.881056px;}
._c6{margin-left:-2334.642048px;}
._bb{margin-left:-2317.166208px;}
._c4{margin-left:-2313.914976px;}
._68{margin-left:-2307.806784px;}
._7b{margin-left:-2295.187488px;}
._67{margin-left:-2242.625760px;}
._b0{margin-left:-2234.035008px;}
._63{margin-left:-2224.471392px;}
._ca{margin-left:-2194.031232px;}
._25{margin-left:-2191.747392px;}
._9f{margin-left:-2166.180480px;}
._44{margin-left:-2158.672608px;}
._77{margin-left:-2144.136096px;}
._51{margin-left:-2137.061376px;}
._4{margin-left:-2109.304512px;}
._b2{margin-left:-2107.981728px;}
._6e{margin-left:-2105.111808px;}
._30{margin-left:-2038.004352px;}
._bd{margin-left:-2031.580512px;}
._c5{margin-left:-2024.735328px;}
._60{margin-left:-2007.681120px;}
._96{margin-left:-1968.687072px;}
._ce{margin-left:-1964.884320px;}
._c0{margin-left:-1923.073920px;}
._71{margin-left:-1920.178368px;}
._4b{margin-left:-1890.701568px;}
._83{margin-left:-1879.062912px;}
._cf{margin-left:-1836.474048px;}
._80{margin-left:-1824.496416px;}
._55{margin-left:-1821.674016px;}
._a2{margin-left:-1783.975680px;}
._b1{margin-left:-1766.979648px;}
._66{margin-left:-1735.098912px;}
._62{margin-left:-1731.889728px;}
._b3{margin-left:-1713.191616px;}
._9d{margin-left:-1682.450784px;}
._95{margin-left:-1650.131136px;}
._a4{margin-left:-1643.887296px;}
._2{margin-left:-1641.321216px;}
._b8{margin-left:-1638.662976px;}
._d0{margin-left:-1634.757984px;}
._6f{margin-left:-1606.187520px;}
._41{margin-left:-1602.102240px;}
._87{margin-left:-1580.176224px;}
._7c{margin-left:-1544.977872px;}
._a5{margin-left:-1526.156352px;}
._97{margin-left:-1486.910304px;}
._6d{margin-left:-1471.667328px;}
._59{margin-left:-1466.383680px;}
._16{margin-left:-1419.875424px;}
._c2{margin-left:-1412.543808px;}
._8b{margin-left:-1360.841760px;}
._b5{margin-left:-1301.239584px;}
._cd{margin-left:-1280.148480px;}
._b9{margin-left:-1253.481984px;}
._33{margin-left:-1233.676224px;}
._8f{margin-left:-1228.066848px;}
._36{margin-left:-1212.139008px;}
._1b{margin-left:-1210.358304px;}
._78{margin-left:-1197.101376px;}
._64{margin-left:-1175.781024px;}
._a0{margin-left:-1158.232320px;}
._48{margin-left:-1132.482528px;}
._c3{margin-left:-1113.445152px;}
._46{margin-left:-1091.286720px;}
._8a{margin-left:-1069.440768px;}
._8{margin-left:-1065.390912px;}
._56{margin-left:-1047.400128px;}
._bc{margin-left:-1043.764704px;}
._81{margin-left:-1037.074464px;}
._d1{margin-left:-1031.144832px;}
._ba{margin-left:-1025.752896px;}
._a{margin-left:-1006.762176px;}
._6b{margin-left:-999.850464px;}
._9b{margin-left:-984.154176px;}
._c9{margin-left:-959.092704px;}
._2f{margin-left:-943.611264px;}
._58{margin-left:-937.736928px;}
._34{margin-left:-927.479232px;}
._ac{margin-left:-922.475232px;}
._45{margin-left:-919.027008px;}
._b7{margin-left:-860.205600px;}
._4a{margin-left:-823.744800px;}
._42{margin-left:-787.315392px;}
._9c{margin-left:-783.288000px;}
._91{margin-left:-776.200320px;}
._8d{margin-left:-773.696448px;}
._90{margin-left:-765.058752px;}
._c7{margin-left:-762.263424px;}
._79{margin-left:-743.808960px;}
._ad{margin-left:-710.397504px;}
._94{margin-left:-688.825728px;}
._74{margin-left:-685.622016px;}
._af{margin-left:-680.801472px;}
._a1{margin-left:-663.376320px;}
._39{margin-left:-631.028736px;}
._35{margin-left:-625.639680px;}
._bf{margin-left:-617.608512px;}
._19{margin-left:-600.213888px;}
._9a{margin-left:-598.275648px;}
._6{margin-left:-595.298880px;}
._be{margin-left:-584.522784px;}
._84{margin-left:-577.008576px;}
._b6{margin-left:-544.713984px;}
._cc{margin-left:-529.747776px;}
._92{margin-left:-528.489216px;}
._7f{margin-left:-489.977280px;}
._61{margin-left:-487.446912px;}
._99{margin-left:-462.947328px;}
._70{margin-left:-436.919040px;}
._65{margin-left:-432.822240px;}
._c{margin-left:-422.057088px;}
._ab{margin-left:-408.833280px;}
._17{margin-left:-403.070400px;}
._a8{margin-left:-394.922880px;}
._3f{margin-left:-344.906496px;}
._d2{margin-left:-224.487360px;}
._40{margin-left:-223.025760px;}
._82{margin-left:-220.422240px;}
._72{margin-left:-216.354240px;}
._b{margin-left:-190.638720px;}
._57{margin-left:-3.237984px;}
._24{margin-left:-2.189952px;}
._3{margin-left:-1.105056px;}
._0{width:1.285056px;}
._47{width:2.291040px;}
._4f{width:3.576960px;}
._4e{width:4.901760px;}
._26{width:5.935104px;}
._5e{width:7.061472px;}
._3c{width:8.241552px;}
._3b{width:9.262584px;}
._37{width:10.483200px;}
._5d{width:11.643840px;}
._4d{width:13.358016px;}
._7a{width:16.807968px;}
._7d{width:18.348480px;}
._89{width:23.978880px;}
._86{width:25.413696px;}
._7e{width:29.468160px;}
._88{width:30.481632px;}
._3e{width:36.064512px;}
._21{width:38.000736px;}
._3d{width:72.786384px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(83,129,53);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:81.360000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:57.606480px;}
.yf2{bottom:57.772080px;}
.y1{bottom:77.760000px;}
.yc8{bottom:111.774960px;}
.yf1{bottom:112.178160px;}
.y146{bottom:113.766480px;}
.y165{bottom:113.770800px;}
.y14f{bottom:113.777280px;}
.y83{bottom:113.778720px;}
.yb8{bottom:113.793840px;}
.ya5{bottom:113.819760px;}
.y3e{bottom:113.827680px;}
.y173{bottom:115.765200px;}
.y1b{bottom:119.704320px;}
.y142{bottom:121.896000px;}
.y16c{bottom:123.316560px;}
.yc2{bottom:129.964320px;}
.y112{bottom:133.567920px;}
.yda{bottom:138.243600px;}
.y176{bottom:140.058720px;}
.yf0{bottom:142.416720px;}
.y145{bottom:144.005040px;}
.y164{bottom:144.009360px;}
.y14e{bottom:144.015840px;}
.y82{bottom:144.017280px;}
.y53{bottom:144.029520px;}
.yb7{bottom:144.032400px;}
.ya4{bottom:144.058320px;}
.y3d{bottom:144.066240px;}
.y172{bottom:146.003760px;}
.y1a{bottom:149.942850px;}
.y68{bottom:151.928640px;}
.y141{bottom:152.134560px;}
.yc1{bottom:160.202880px;}
.y111{bottom:165.065040px;}
.yd9{bottom:168.482160px;}
.yef{bottom:172.473120px;}
.y175{bottom:173.890800px;}
.y144{bottom:174.061440px;}
.y163{bottom:174.065760px;}
.y14d{bottom:174.072240px;}
.y81{bottom:174.073680px;}
.y52{bottom:174.085920px;}
.yb6{bottom:174.088800px;}
.ya3{bottom:174.114720px;}
.y3c{bottom:174.122640px;}
.y171{bottom:176.242320px;}
.y19{bottom:180.181500px;}
.y67{bottom:182.167200px;}
.y140{bottom:182.190960px;}
.yc0{bottom:190.441440px;}
.y110{bottom:195.121440px;}
.yd8{bottom:198.538560px;}
.y174{bottom:199.442880px;}
.yee{bottom:202.711680px;}
.y143{bottom:204.300000px;}
.y162{bottom:204.304320px;}
.y14c{bottom:204.310800px;}
.y80{bottom:204.312240px;}
.y51{bottom:204.324480px;}
.yb5{bottom:204.327360px;}
.ya2{bottom:204.353280px;}
.y3b{bottom:204.361200px;}
.y170{bottom:206.480880px;}
.y18{bottom:210.420000px;}
.y17{bottom:210.444480px;}
.y66{bottom:212.405760px;}
.y13f{bottom:212.429520px;}
.ybf{bottom:220.680000px;}
.y10f{bottom:225.364320px;}
.yd7{bottom:228.777120px;}
.yed{bottom:232.950240px;}
.y161{bottom:234.542880px;}
.y14b{bottom:234.549360px;}
.y7f{bottom:234.550800px;}
.y50{bottom:234.563040px;}
.yb4{bottom:234.565920px;}
.ya1{bottom:234.591840px;}
.y3a{bottom:234.599760px;}
.y16f{bottom:236.719440px;}
.y16{bottom:240.500880px;}
.y65{bottom:242.644320px;}
.y13e{bottom:242.668080px;}
.y10e{bottom:255.602880px;}
.yd6{bottom:259.015680px;}
.yec{bottom:263.188800px;}
.y160{bottom:264.781440px;}
.y14a{bottom:264.787920px;}
.y7e{bottom:264.789360px;}
.y4f{bottom:264.801600px;}
.yb3{bottom:264.804480px;}
.ya0{bottom:264.830400px;}
.y39{bottom:264.838320px;}
.y16e{bottom:266.958000px;}
.y15{bottom:270.739500px;}
.y64{bottom:272.882880px;}
.y13d{bottom:272.906640px;}
.y10d{bottom:285.841440px;}
.yd5{bottom:289.254240px;}
.y16d{bottom:292.692240px;}
.yeb{bottom:293.427360px;}
.y149{bottom:295.026480px;}
.y7d{bottom:295.027920px;}
.y4e{bottom:295.040160px;}
.yb2{bottom:295.043040px;}
.y15f{bottom:295.055280px;}
.y9f{bottom:295.068960px;}
.y38{bottom:295.076880px;}
.y14{bottom:300.978000px;}
.y63{bottom:303.121440px;}
.y13c{bottom:303.145200px;}
.y108{bottom:311.758560px;}
.y10c{bottom:316.080720px;}
.yd4{bottom:319.492800px;}
.yea{bottom:323.665920px;}
.y148{bottom:325.265040px;}
.y7c{bottom:325.266480px;}
.y4d{bottom:325.278720px;}
.yb1{bottom:325.281600px;}
.y15e{bottom:325.293840px;}
.y9e{bottom:325.307520px;}
.y37{bottom:325.315440px;}
.y13{bottom:331.216500px;}
.y62{bottom:333.365040px;}
.y13b{bottom:333.383760px;}
.y107{bottom:341.997120px;}
.y10b{bottom:346.319280px;}
.ye9{bottom:353.904480px;}
.y147{bottom:355.503600px;}
.y7b{bottom:355.505040px;}
.y4c{bottom:355.517280px;}
.yb0{bottom:355.520160px;}
.y15d{bottom:355.532400px;}
.y9d{bottom:355.546080px;}
.y36{bottom:355.554000px;}
.y12{bottom:356.950800px;}
.y61{bottom:363.421440px;}
.y13a{bottom:363.440160px;}
.y106{bottom:372.053520px;}
.y10a{bottom:376.375680px;}
.ye8{bottom:383.960880px;}
.y7a{bottom:385.561440px;}
.y4b{bottom:385.573680px;}
.yaf{bottom:385.576560px;}
.y15c{bottom:385.588800px;}
.y9c{bottom:385.602480px;}
.y35{bottom:385.610400px;}
.y60{bottom:393.669360px;}
.y139{bottom:393.678720px;}
.y105{bottom:402.292080px;}
.y12e{bottom:413.820000px;}
.ye7{bottom:414.199440px;}
.y79{bottom:415.800000px;}
.y4a{bottom:415.812240px;}
.yae{bottom:415.815120px;}
.y15b{bottom:415.827360px;}
.y9b{bottom:415.841040px;}
.y34{bottom:415.848960px;}
.y109{bottom:422.280000px;}
.y5f{bottom:423.907920px;}
.y138{bottom:423.917280px;}
.y104{bottom:426.420000px;}
.y12d{bottom:429.672960px;}
.ye6{bottom:444.438000px;}
.y103{bottom:444.780000px;}
.y49{bottom:446.050800px;}
.y78{bottom:446.052240px;}
.yad{bottom:446.053680px;}
.y15a{bottom:446.065920px;}
.y9a{bottom:446.079600px;}
.y33{bottom:446.087520px;}
.y12c{bottom:449.826480px;}
.y5e{bottom:454.146480px;}
.y137{bottom:454.155840px;}
.y102{bottom:463.140000px;}
.y12b{bottom:470.010960px;}
.ye5{bottom:474.676560px;}
.y48{bottom:476.289360px;}
.y77{bottom:476.290800px;}
.yac{bottom:476.292240px;}
.y159{bottom:476.304480px;}
.y99{bottom:476.318160px;}
.y32{bottom:476.326080px;}
.y5d{bottom:484.385040px;}
.y136{bottom:484.394400px;}
.y101{bottom:485.820000px;}
.y12a{bottom:490.164480px;}
.ye4{bottom:504.915120px;}
.y47{bottom:506.527920px;}
.y76{bottom:506.529360px;}
.yab{bottom:506.530800px;}
.y158{bottom:506.543040px;}
.y98{bottom:506.556720px;}
.y31{bottom:506.564640px;}
.y100{bottom:508.680000px;}
.y129{bottom:510.318000px;}
.y5c{bottom:514.623600px;}
.y135{bottom:514.632960px;}
.y128{bottom:530.471520px;}
.yff{bottom:531.540000px;}
.ye3{bottom:535.153680px;}
.y46{bottom:536.766480px;}
.y75{bottom:536.767920px;}
.yaa{bottom:536.769360px;}
.y157{bottom:536.781600px;}
.y97{bottom:536.795280px;}
.y30{bottom:536.803200px;}
.y5a{bottom:544.677120px;}
.y5b{bottom:544.680000px;}
.y134{bottom:544.871520px;}
.y127{bottom:550.625040px;}
.yfe{bottom:554.220000px;}
.ye2{bottom:565.210080px;}
.y45{bottom:566.822880px;}
.y74{bottom:566.824320px;}
.ya9{bottom:566.825760px;}
.y156{bottom:566.838000px;}
.y96{bottom:566.851680px;}
.y2f{bottom:566.859600px;}
.y126{bottom:569.520000px;}
.y59{bottom:571.140000px;}
.y133{bottom:574.927920px;}
.yfd{bottom:577.080000px;}
.y125{bottom:595.441440px;}
.ye1{bottom:595.448640px;}
.y44{bottom:597.061440px;}
.y73{bottom:597.062880px;}
.ya8{bottom:597.064320px;}
.y155{bottom:597.076560px;}
.y95{bottom:597.090240px;}
.y2e{bottom:597.098160px;}
.yfc{bottom:599.940000px;}
.y132{bottom:605.166480px;}
.yd3{bottom:619.560000px;}
.yfb{bottom:622.800000px;}
.y124{bottom:625.681440px;}
.ye0{bottom:625.687200px;}
.y72{bottom:627.301440px;}
.ya7{bottom:627.302880px;}
.y43{bottom:627.305760px;}
.y154{bottom:627.315120px;}
.y94{bottom:627.328800px;}
.y2d{bottom:627.336720px;}
.y131{bottom:635.405040px;}
.yd2{bottom:637.740000px;}
.yfa{bottom:645.480000px;}
.y130{bottom:654.300000px;}
.ydf{bottom:655.925760px;}
.y123{bottom:655.929360px;}
.yd1{bottom:656.100000px;}
.y71{bottom:657.541440px;}
.y42{bottom:657.544320px;}
.y153{bottom:657.553680px;}
.y93{bottom:657.567360px;}
.y2c{bottom:657.575280px;}
.yf9{bottom:668.340000px;}
.yd0{bottom:674.460000px;}
.yde{bottom:681.660000px;}
.y122{bottom:685.985760px;}
.ya6{bottom:687.780000px;}
.y41{bottom:687.782880px;}
.y152{bottom:687.792240px;}
.y92{bottom:687.805920px;}
.y2b{bottom:687.813840px;}
.yf8{bottom:691.200000px;}
.ycf{bottom:692.100000px;}
.yf7{bottom:713.880000px;}
.y121{bottom:716.224320px;}
.y40{bottom:718.021440px;}
.y11{bottom:718.025100px;}
.y151{bottom:718.030800px;}
.y91{bottom:718.044480px;}
.y2a{bottom:718.052400px;}
.yf6{bottom:736.740000px;}
.y120{bottom:746.462880px;}
.y3f{bottom:748.260000px;}
.y10{bottom:748.263600px;}
.y150{bottom:748.269360px;}
.y70{bottom:748.275840px;}
.y90{bottom:748.283040px;}
.y29{bottom:748.290960px;}
.yf5{bottom:755.640000px;}
.yf4{bottom:775.260000px;}
.y11f{bottom:776.701440px;}
.yce{bottom:778.325760px;}
.y6f{bottom:778.332240px;}
.y8f{bottom:778.339440px;}
.y28{bottom:778.347360px;}
.yf{bottom:784.260000px;}
.yf3{bottom:793.620000px;}
.yc7{bottom:800.820000px;}
.y11e{bottom:806.941440px;}
.ye{bottom:808.561440px;}
.ycd{bottom:808.564320px;}
.y6e{bottom:808.570800px;}
.y8e{bottom:808.578000px;}
.y27{bottom:808.585920px;}
.yc6{bottom:819.000000px;}
.y11d{bottom:837.181440px;}
.yc5{bottom:837.360000px;}
.ycc{bottom:838.802880px;}
.y6d{bottom:838.809360px;}
.y8d{bottom:838.816560px;}
.y26{bottom:838.824480px;}
.yd{bottom:844.740000px;}
.yc4{bottom:855.720000px;}
.y11c{bottom:867.423600px;}
.ycb{bottom:869.041440px;}
.y6c{bottom:869.047920px;}
.y8c{bottom:869.055120px;}
.y25{bottom:869.063040px;}
.yc3{bottom:873.360000px;}
.yc{bottom:874.979850px;}
.y11b{bottom:897.484320px;}
.yca{bottom:899.281440px;}
.yb{bottom:899.286480px;}
.y8b{bottom:899.293680px;}
.y24{bottom:899.301600px;}
.y11a{bottom:927.722880px;}
.ya{bottom:929.525040px;}
.y8a{bottom:929.532240px;}
.y23{bottom:929.540160px;}
.y119{bottom:957.961440px;}
.y9{bottom:959.763600px;}
.y89{bottom:959.770800px;}
.y22{bottom:959.778720px;}
.ybe{bottom:963.720000px;}
.y16b{bottom:979.932240px;}
.ybd{bottom:982.080000px;}
.y118{bottom:988.202880px;}
.y8{bottom:989.820000px;}
.y6b{bottom:989.821440px;}
.y88{bottom:989.827200px;}
.y7{bottom:989.835120px;}
.ybc{bottom:1000.260000px;}
.y16a{bottom:1006.212960px;}
.y117{bottom:1018.441440px;}
.ybb{bottom:1018.620000px;}
.y6a{bottom:1020.061440px;}
.y87{bottom:1020.065760px;}
.y6{bottom:1020.073650px;}
.y21{bottom:1020.073680px;}
.y169{bottom:1032.311520px;}
.yba{bottom:1036.980000px;}
.y116{bottom:1048.680000px;}
.y69{bottom:1050.301440px;}
.y86{bottom:1050.304320px;}
.y20{bottom:1050.312240px;}
.y5{bottom:1050.312300px;}
.yb9{bottom:1054.620000px;}
.y168{bottom:1058.592240px;}
.y58{bottom:1063.080000px;}
.ydd{bottom:1076.220000px;}
.y115{bottom:1078.918560px;}
.y85{bottom:1080.542880px;}
.y4{bottom:1080.550800px;}
.y57{bottom:1081.440000px;}
.y167{bottom:1084.690800px;}
.y12f{bottom:1087.200000px;}
.ydc{bottom:1087.380000px;}
.y56{bottom:1099.620000px;}
.ydb{bottom:1105.560000px;}
.y114{bottom:1108.974960px;}
.y84{bottom:1110.781440px;}
.y3{bottom:1110.789360px;}
.y166{bottom:1110.971520px;}
.y55{bottom:1123.920000px;}
.y113{bottom:1139.760000px;}
.yc9{bottom:1141.020000px;}
.y2{bottom:1141.027920px;}
.y54{bottom:1142.280000px;}
.y1e{bottom:1197.867000px;}
.y1d{bottom:1215.867000px;}
.y1c{bottom:1233.867000px;}
.h5{height:34.439766px;}
.h8{height:43.066406px;}
.h7{height:54.611314px;}
.h2{height:54.628594px;}
.h3{height:54.628714px;}
.h6{height:54.628834px;}
.h19{height:58.075926px;}
.he{height:58.136406px;}
.h4{height:58.139286px;}
.h11{height:58.150806px;}
.ha{height:58.162326px;}
.h10{height:58.168086px;}
.h9{height:58.176726px;}
.hb{height:58.179606px;}
.h12{height:58.181046px;}
.h18{height:58.182486px;}
.h13{height:58.185366px;}
.h17{height:58.186806px;}
.hf{height:58.188246px;}
.hd{height:58.194006px;}
.h16{height:58.196886px;}
.hc{height:58.198326px;}
.h1a{height:59.702780px;}
.h14{height:892.980000px;}
.h15{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:1262.880000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:59.337000px;}
.xd{left:75.240000px;}
.x7{left:83.689950px;}
.x4{left:92.165100px;}
.x5{left:128.166480px;}
.x6{left:138.238560px;}
.x14{left:148.883040px;}
.xb{left:180.727920px;}
.x2{left:185.762160px;}
.x8{left:210.407040px;}
.x3{left:394.202880px;}
.x9{left:403.165440px;}
.xe{left:438.120000px;}
.x1{left:442.260000px;}
.xc{left:473.040000px;}
.x12{left:622.980000px;}
.xf{left:632.520000px;}
.x11{left:664.200000px;}
.x15{left:669.777840px;}
.x16{left:689.219280px;}
.x10{left:693.722880px;}
.x17{left:698.045760px;}
.x13{left:765.360000px;}
@media print{
.v7{vertical-align:-55.700480pt;}
.v2{vertical-align:-21.119467pt;}
.v6{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.158400pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.066240pt;}
.v4{vertical-align:26.243840pt;}
.ls35{letter-spacing:-3.061760pt;}
.ls59{letter-spacing:-1.413120pt;}
.ls74{letter-spacing:-1.295360pt;}
.ls6f{letter-spacing:-1.236480pt;}
.ls6e{letter-spacing:-1.177600pt;}
.ls6c{letter-spacing:-1.059840pt;}
.ls6d{letter-spacing:-0.942080pt;}
.lsb{letter-spacing:-0.883200pt;}
.lsc{letter-spacing:-0.824320pt;}
.ls60{letter-spacing:-0.765440pt;}
.ls1f{letter-spacing:-0.706560pt;}
.ls1e{letter-spacing:-0.647680pt;}
.ls18{letter-spacing:-0.588800pt;}
.ls2c{letter-spacing:-0.556800pt;}
.ls14{letter-spacing:-0.529920pt;}
.ls52{letter-spacing:-0.478080pt;}
.ls19{letter-spacing:-0.471040pt;}
.ls13{letter-spacing:-0.412160pt;}
.ls34{letter-spacing:-0.353280pt;}
.ls50{letter-spacing:-0.318720pt;}
.ls5f{letter-spacing:-0.296960pt;}
.ls12{letter-spacing:-0.294400pt;}
.ls7a{letter-spacing:-0.265600pt;}
.ls7{letter-spacing:-0.259840pt;}
.ls5{letter-spacing:-0.235520pt;}
.ls5e{letter-spacing:-0.225280pt;}
.ls25{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.176640pt;}
.ls26{letter-spacing:-0.159360pt;}
.ls6{letter-spacing:-0.117760pt;}
.ls22{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.058880pt;}
.ls24{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.005888pt;}
.ls4f{letter-spacing:0.011776pt;}
.ls15{letter-spacing:0.052992pt;}
.ls4c{letter-spacing:0.053120pt;}
.ls8{letter-spacing:0.058880pt;}
.ls27{letter-spacing:0.074240pt;}
.ls58{letter-spacing:0.106240pt;}
.ls39{letter-spacing:0.111872pt;}
.ls5a{letter-spacing:0.112640pt;}
.ls1{letter-spacing:0.117760pt;}
.ls75{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.159360pt;}
.ls44{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.176640pt;}
.ls54{letter-spacing:0.212480pt;}
.ls31{letter-spacing:0.229632pt;}
.ls0{letter-spacing:0.235307pt;}
.ls3{letter-spacing:0.235520pt;}
.ls48{letter-spacing:0.256000pt;}
.ls43{letter-spacing:0.259072pt;}
.ls23{letter-spacing:0.265600pt;}
.ls45{letter-spacing:0.266240pt;}
.ls49{letter-spacing:0.281600pt;}
.ls40{letter-spacing:0.286208pt;}
.ls47{letter-spacing:0.289280pt;}
.ls2b{letter-spacing:0.294400pt;}
.ls4b{letter-spacing:0.322560pt;}
.ls65{letter-spacing:0.335616pt;}
.ls64{letter-spacing:0.353280pt;}
.ls21{letter-spacing:0.371840pt;}
.ls41{letter-spacing:0.570880pt;}
.ls53{letter-spacing:0.587520pt;}
.lse{letter-spacing:0.765440pt;}
.ls71{letter-spacing:0.777216pt;}
.ls51{letter-spacing:0.796800pt;}
.ls62{letter-spacing:0.806656pt;}
.ls4a{letter-spacing:1.210880pt;}
.ls42{letter-spacing:1.377792pt;}
.ls66{letter-spacing:1.389568pt;}
.ls1c{letter-spacing:1.413120pt;}
.ls76{letter-spacing:1.460224pt;}
.ls33{letter-spacing:1.990144pt;}
.ls29{letter-spacing:2.060800pt;}
.ls46{letter-spacing:2.490880pt;}
.ls32{letter-spacing:2.708480pt;}
.ls4d{letter-spacing:2.709120pt;}
.ls72{letter-spacing:2.767360pt;}
.ls3d{letter-spacing:2.804736pt;}
.ls55{letter-spacing:2.868480pt;}
.ls2d{letter-spacing:3.356160pt;}
.ls3a{letter-spacing:3.944960pt;}
.ls30{letter-spacing:3.968512pt;}
.ls78{letter-spacing:4.355840pt;}
.ls2e{letter-spacing:4.592640pt;}
.ls11{letter-spacing:5.240320pt;}
.ls28{letter-spacing:5.257984pt;}
.ls67{letter-spacing:5.888000pt;}
.ls3c{letter-spacing:6.535680pt;}
.ls79{letter-spacing:7.129600pt;}
.ls68{letter-spacing:7.183360pt;}
.ls20{letter-spacing:7.808640pt;}
.ls63{letter-spacing:7.825152pt;}
.ls38{letter-spacing:7.831040pt;}
.ls5d{letter-spacing:8.478720pt;}
.ls61{letter-spacing:8.499200pt;}
.ls7b{letter-spacing:8.502272pt;}
.ls5c{letter-spacing:9.067520pt;}
.ls2f{letter-spacing:9.715200pt;}
.ls73{letter-spacing:9.862400pt;}
.ls17{letter-spacing:10.362880pt;}
.ls3e{letter-spacing:11.010560pt;}
.ls36{letter-spacing:11.658240pt;}
.ls1b{letter-spacing:12.953600pt;}
.ls2{letter-spacing:13.542507pt;}
.ls70{letter-spacing:14.190080pt;}
.ls2a{letter-spacing:15.485440pt;}
.ls57{letter-spacing:16.133120pt;}
.ls1d{letter-spacing:16.780800pt;}
.ls3b{letter-spacing:17.428480pt;}
.ls37{letter-spacing:18.076160pt;}
.ls6a{letter-spacing:20.608000pt;}
.ls6b{letter-spacing:20.731648pt;}
.ls69{letter-spacing:21.255680pt;}
.ls16{letter-spacing:22.551040pt;}
.ls1a{letter-spacing:24.435200pt;}
.ls4e{letter-spacing:25.082880pt;}
.ls10{letter-spacing:25.730560pt;}
.ls5b{letter-spacing:27.025920pt;}
.lsf{letter-spacing:34.680320pt;}
.ls56{letter-spacing:271.495680pt;}
.wsd2{word-spacing:-58.880000pt;}
.wsf1{word-spacing:-15.431680pt;}
.ws129{word-spacing:-13.660160pt;}
.ws79{word-spacing:-13.601280pt;}
.ws4{word-spacing:-13.542400pt;}
.ws15{word-spacing:-13.483520pt;}
.ws2f{word-spacing:-13.424640pt;}
.ws3{word-spacing:-13.365760pt;}
.ws2{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.248000pt;}
.ws7c{word-spacing:-13.189120pt;}
.ws16{word-spacing:-13.130240pt;}
.ws5{word-spacing:-13.071360pt;}
.ws9e{word-spacing:-12.953600pt;}
.wsc1{word-spacing:-12.894720pt;}
.ws107{word-spacing:-12.835840pt;}
.ws30{word-spacing:-12.776960pt;}
.wse6{word-spacing:-12.718080pt;}
.wsaa{word-spacing:-12.659200pt;}
.ws9d{word-spacing:-12.600320pt;}
.wsf2{word-spacing:-12.541440pt;}
.wsa9{word-spacing:-12.482560pt;}
.ws7{word-spacing:-12.423680pt;}
.wse1{word-spacing:-12.270720pt;}
.wse4{word-spacing:-12.217600pt;}
.wscb{word-spacing:-12.058240pt;}
.ws8{word-spacing:-12.053333pt;}
.wsb9{word-spacing:-12.005120pt;}
.wse2{word-spacing:-11.952000pt;}
.wsc2{word-spacing:-11.898880pt;}
.ws6e{word-spacing:-11.845760pt;}
.ws6d{word-spacing:-11.792640pt;}
.ws7b{word-spacing:-8.463360pt;}
.wse3{word-spacing:-8.398080pt;}
.ws0{word-spacing:-8.389120pt;}
.ws1{word-spacing:-8.129280pt;}
.ws7a{word-spacing:-7.832320pt;}
.wse0{word-spacing:-7.810560pt;}
.wsba{word-spacing:-3.827200pt;}
.ws82{word-spacing:-3.650560pt;}
.ws9f{word-spacing:-3.179520pt;}
.wsf3{word-spacing:-3.041280pt;}
.ws1d{word-spacing:-3.002880pt;}
.ws1c{word-spacing:-2.826240pt;}
.ws113{word-spacing:-2.708480pt;}
.ws49{word-spacing:-2.649600pt;}
.ws36{word-spacing:-2.531840pt;}
.ws3e{word-spacing:-2.355200pt;}
.wsd9{word-spacing:-2.178560pt;}
.ws2d{word-spacing:-1.884160pt;}
.ws122{word-spacing:-1.825280pt;}
.ws48{word-spacing:-1.707520pt;}
.wsb0{word-spacing:-1.589760pt;}
.ws2e{word-spacing:-1.530880pt;}
.wsd5{word-spacing:-1.381120pt;}
.ws39{word-spacing:-1.354240pt;}
.ws23{word-spacing:-1.236480pt;}
.wsc5{word-spacing:-1.118720pt;}
.ws74{word-spacing:-1.062400pt;}
.ws35{word-spacing:-1.059840pt;}
.wsb8{word-spacing:-0.942080pt;}
.ws73{word-spacing:-0.903040pt;}
.ws25{word-spacing:-0.883200pt;}
.ws87{word-spacing:-0.765440pt;}
.ws31{word-spacing:-0.647680pt;}
.wsff{word-spacing:-0.637440pt;}
.wsc{word-spacing:-0.588800pt;}
.ws1b{word-spacing:-0.471040pt;}
.ws75{word-spacing:-0.424960pt;}
.wsd{word-spacing:-0.412160pt;}
.ws1a{word-spacing:-0.353280pt;}
.ws24{word-spacing:-0.294400pt;}
.wsbd{word-spacing:-0.265600pt;}
.ws10{word-spacing:-0.235520pt;}
.wsaf{word-spacing:-0.176640pt;}
.wsf0{word-spacing:-0.168960pt;}
.ws13{word-spacing:-0.117760pt;}
.wsc0{word-spacing:-0.106240pt;}
.ws14{word-spacing:-0.058880pt;}
.ws9{word-spacing:0.000000pt;}
.ws71{word-spacing:0.053120pt;}
.wse{word-spacing:0.058880pt;}
.wsd1{word-spacing:0.106240pt;}
.ws43{word-spacing:0.117760pt;}
.wsf{word-spacing:0.176640pt;}
.wsbb{word-spacing:0.212480pt;}
.wsb{word-spacing:0.235520pt;}
.ws12a{word-spacing:0.265600pt;}
.ws6c{word-spacing:0.294400pt;}
.wsf5{word-spacing:0.296960pt;}
.wsa{word-spacing:0.353280pt;}
.wsbc{word-spacing:0.371840pt;}
.wse8{word-spacing:0.412160pt;}
.ws4f{word-spacing:0.471040pt;}
.wse5{word-spacing:0.478080pt;}
.ws66{word-spacing:0.529920pt;}
.wsca{word-spacing:0.531200pt;}
.ws4e{word-spacing:0.588800pt;}
.ws37{word-spacing:0.647680pt;}
.ws8c{word-spacing:0.706560pt;}
.ws10a{word-spacing:0.765440pt;}
.ws38{word-spacing:0.824320pt;}
.wsc8{word-spacing:0.849920pt;}
.ws114{word-spacing:0.942080pt;}
.ws12{word-spacing:1.000960pt;}
.wsc9{word-spacing:1.009280pt;}
.ws109{word-spacing:1.059840pt;}
.wsac{word-spacing:1.118720pt;}
.ws55{word-spacing:1.177600pt;}
.ws103{word-spacing:1.236480pt;}
.ws2c{word-spacing:1.295360pt;}
.wsef{word-spacing:1.413120pt;}
.ws2b{word-spacing:1.472000pt;}
.wsea{word-spacing:1.487360pt;}
.wseb{word-spacing:1.646720pt;}
.ws56{word-spacing:1.648640pt;}
.ws128{word-spacing:1.766400pt;}
.wsb4{word-spacing:1.825280pt;}
.ws84{word-spacing:1.943040pt;}
.ws11d{word-spacing:2.001920pt;}
.ws124{word-spacing:2.060800pt;}
.ws22{word-spacing:2.119680pt;}
.ws69{word-spacing:2.296320pt;}
.ws108{word-spacing:2.414080pt;}
.wsbe{word-spacing:2.443520pt;}
.ws91{word-spacing:2.472960pt;}
.ws97{word-spacing:2.590720pt;}
.wsee{word-spacing:2.649600pt;}
.ws116{word-spacing:2.708480pt;}
.wsbf{word-spacing:2.762240pt;}
.ws90{word-spacing:2.767360pt;}
.wsa8{word-spacing:2.826240pt;}
.ws58{word-spacing:2.944000pt;}
.wsd4{word-spacing:3.027840pt;}
.ws96{word-spacing:3.061760pt;}
.ws8e{word-spacing:3.120640pt;}
.wsd3{word-spacing:3.187200pt;}
.ws60{word-spacing:3.238400pt;}
.wsa4{word-spacing:3.297280pt;}
.ws3b{word-spacing:3.415040pt;}
.wsfb{word-spacing:3.473920pt;}
.ws115{word-spacing:3.532800pt;}
.ws85{word-spacing:3.591680pt;}
.wsb6{word-spacing:3.709440pt;}
.ws59{word-spacing:3.768320pt;}
.ws88{word-spacing:3.827200pt;}
.wsb7{word-spacing:3.944960pt;}
.ws5a{word-spacing:4.003840pt;}
.ws86{word-spacing:4.062720pt;}
.ws92{word-spacing:4.180480pt;}
.wsc7{word-spacing:4.355840pt;}
.wsc6{word-spacing:4.462080pt;}
.ws50{word-spacing:4.474880pt;}
.ws81{word-spacing:4.533760pt;}
.ws1f{word-spacing:4.651520pt;}
.ws20{word-spacing:4.828160pt;}
.ws4a{word-spacing:5.004800pt;}
.ws1e{word-spacing:5.122560pt;}
.ws83{word-spacing:5.181440pt;}
.ws4b{word-spacing:5.299200pt;}
.ws77{word-spacing:5.475840pt;}
.ws121{word-spacing:5.593600pt;}
.ws61{word-spacing:5.652480pt;}
.ws10b{word-spacing:5.770240pt;}
.ws7f{word-spacing:5.829120pt;}
.ws7d{word-spacing:5.946880pt;}
.wsf9{word-spacing:6.005760pt;}
.ws62{word-spacing:6.064640pt;}
.ws7e{word-spacing:6.123520pt;}
.wsdf{word-spacing:6.359040pt;}
.ws41{word-spacing:6.417920pt;}
.wsb5{word-spacing:6.535680pt;}
.ws65{word-spacing:6.594560pt;}
.ws12d{word-spacing:6.712320pt;}
.ws8f{word-spacing:6.771200pt;}
.ws3c{word-spacing:7.065600pt;}
.wsd0{word-spacing:7.224320pt;}
.ws5f{word-spacing:7.242240pt;}
.ws3d{word-spacing:7.418880pt;}
.wse7{word-spacing:7.713280pt;}
.ws72{word-spacing:7.861760pt;}
.ws18{word-spacing:7.889920pt;}
.ws80{word-spacing:8.066560pt;}
.wsfe{word-spacing:8.233600pt;}
.wsfd{word-spacing:8.339840pt;}
.ws6a{word-spacing:8.360960pt;}
.ws11a{word-spacing:8.419840pt;}
.ws11{word-spacing:8.537600pt;}
.wsfc{word-spacing:8.552320pt;}
.ws19{word-spacing:8.655360pt;}
.ws2a{word-spacing:8.714240pt;}
.ws78{word-spacing:8.949760pt;}
.ws21{word-spacing:9.126400pt;}
.ws68{word-spacing:9.303040pt;}
.ws117{word-spacing:9.597440pt;}
.ws67{word-spacing:9.774080pt;}
.wsce{word-spacing:9.827200pt;}
.wsfa{word-spacing:9.832960pt;}
.ws76{word-spacing:9.950720pt;}
.wscf{word-spacing:9.986560pt;}
.ws5e{word-spacing:10.245120pt;}
.ws17{word-spacing:10.421760pt;}
.wsa7{word-spacing:10.775040pt;}
.ws45{word-spacing:10.892800pt;}
.wsa3{word-spacing:10.951680pt;}
.ws3a{word-spacing:11.069440pt;}
.wsc3{word-spacing:11.187200pt;}
.ws89{word-spacing:11.246080pt;}
.wsd6{word-spacing:11.420800pt;}
.wsa6{word-spacing:11.540480pt;}
.wsa0{word-spacing:11.717120pt;}
.wsd7{word-spacing:11.739520pt;}
.wsed{word-spacing:11.893760pt;}
.wsd8{word-spacing:11.898880pt;}
.ws99{word-spacing:12.188160pt;}
.ws119{word-spacing:12.247040pt;}
.ws112{word-spacing:12.305920pt;}
.ws52{word-spacing:12.364800pt;}
.ws8d{word-spacing:12.541440pt;}
.ws9a{word-spacing:12.776960pt;}
.ws5d{word-spacing:12.835840pt;}
.wsc4{word-spacing:13.012480pt;}
.wsec{word-spacing:13.014400pt;}
.wsde{word-spacing:13.189120pt;}
.wsab{word-spacing:13.483520pt;}
.ws120{word-spacing:13.660160pt;}
.ws29{word-spacing:14.072320pt;}
.ws28{word-spacing:14.248960pt;}
.ws70{word-spacing:14.608000pt;}
.ws54{word-spacing:14.720000pt;}
.wsad{word-spacing:14.896640pt;}
.ws6f{word-spacing:14.979840pt;}
.wse9{word-spacing:15.073280pt;}
.ws53{word-spacing:15.367680pt;}
.ws4c{word-spacing:15.544320pt;}
.ws4d{word-spacing:15.720960pt;}
.wsf4{word-spacing:16.015360pt;}
.ws64{word-spacing:16.192000pt;}
.ws11b{word-spacing:16.309760pt;}
.ws57{word-spacing:16.368640pt;}
.ws8b{word-spacing:16.545280pt;}
.ws123{word-spacing:16.663040pt;}
.ws63{word-spacing:16.839680pt;}
.ws6b{word-spacing:17.016320pt;}
.wscd{word-spacing:17.310720pt;}
.wscc{word-spacing:17.487360pt;}
.ws118{word-spacing:17.664000pt;}
.wsb3{word-spacing:17.840640pt;}
.ws27{word-spacing:18.135040pt;}
.wsae{word-spacing:18.311680pt;}
.wsb1{word-spacing:18.547200pt;}
.wsdd{word-spacing:18.606080pt;}
.ws10f{word-spacing:18.723840pt;}
.wsdb{word-spacing:18.782720pt;}
.ws110{word-spacing:18.900480pt;}
.wsdc{word-spacing:19.194880pt;}
.wsb2{word-spacing:19.371520pt;}
.ws93{word-spacing:20.019200pt;}
.ws10e{word-spacing:20.490240pt;}
.ws111{word-spacing:20.666880pt;}
.ws98{word-spacing:20.843520pt;}
.wsa5{word-spacing:21.314560pt;}
.ws26{word-spacing:21.491200pt;}
.ws11f{word-spacing:21.667840pt;}
.ws104{word-spacing:21.785600pt;}
.ws11e{word-spacing:21.962240pt;}
.ws106{word-spacing:22.433280pt;}
.ws51{word-spacing:22.609920pt;}
.ws105{word-spacing:22.786560pt;}
.ws126{word-spacing:23.257600pt;}
.ws9c{word-spacing:23.846400pt;}
.ws9b{word-spacing:24.023040pt;}
.wsa1{word-spacing:24.317440pt;}
.wsa2{word-spacing:24.670720pt;}
.ws5b{word-spacing:25.141760pt;}
.ws5c{word-spacing:25.318400pt;}
.wsda{word-spacing:25.553920pt;}
.ws46{word-spacing:25.789440pt;}
.ws47{word-spacing:25.966080pt;}
.ws10d{word-spacing:26.260480pt;}
.ws127{word-spacing:26.437120pt;}
.ws10c{word-spacing:26.908160pt;}
.wsf6{word-spacing:27.084800pt;}
.ws125{word-spacing:27.261440pt;}
.ws11c{word-spacing:27.732480pt;}
.wsf7{word-spacing:27.791360pt;}
.wsf8{word-spacing:27.850240pt;}
.ws33{word-spacing:29.145600pt;}
.ws32{word-spacing:29.616640pt;}
.ws34{word-spacing:29.793280pt;}
.ws8a{word-spacing:30.087680pt;}
.ws12b{word-spacing:30.617600pt;}
.ws40{word-spacing:31.088640pt;}
.ws12c{word-spacing:31.559680pt;}
.ws95{word-spacing:32.207360pt;}
.ws94{word-spacing:32.855040pt;}
.ws42{word-spacing:34.739200pt;}
.ws44{word-spacing:34.915840pt;}
.ws101{word-spacing:35.328000pt;}
.ws100{word-spacing:35.740160pt;}
.ws102{word-spacing:36.682240pt;}
.ws3f{word-spacing:44.336640pt;}
._75{margin-left:-3781.166080pt;}
._76{margin-left:-3163.640704pt;}
._85{margin-left:-2503.536640pt;}
._ae{margin-left:-2500.931328pt;}
._4c{margin-left:-2498.038528pt;}
._52{margin-left:-2496.531968pt;}
._a6{margin-left:-2494.344704pt;}
._31{margin-left:-2492.945920pt;}
._5a{margin-left:-2491.362048pt;}
._29{margin-left:-2490.029824pt;}
._5b{margin-left:-2488.820736pt;}
._53{margin-left:-2487.474688pt;}
._5f{margin-left:-2485.725184pt;}
._6c{margin-left:-2484.361216pt;}
._2d{margin-left:-2483.030528pt;}
._1f{margin-left:-2481.888256pt;}
._3a{margin-left:-2480.970240pt;}
._2b{margin-left:-2479.608064pt;}
._2c{margin-left:-2478.468352pt;}
._50{margin-left:-2477.149184pt;}
._28{margin-left:-2476.252672pt;}
._43{margin-left:-2475.000832pt;}
._32{margin-left:-2473.976064pt;}
._22{margin-left:-2472.135680pt;}
._38{margin-left:-2471.156736pt;}
._2e{margin-left:-2469.600256pt;}
._20{margin-left:-2468.544000pt;}
._2a{margin-left:-2467.625472pt;}
._1a{margin-left:-2466.704128pt;}
._27{margin-left:-2465.478656pt;}
._5c{margin-left:-2464.572416pt;}
._23{margin-left:-2463.649280pt;}
._98{margin-left:-2460.800000pt;}
._13{margin-left:-2458.447104pt;}
._14{margin-left:-2455.349248pt;}
._54{margin-left:-2454.098176pt;}
._15{margin-left:-2451.621120pt;}
._1d{margin-left:-2448.698624pt;}
._d{margin-left:-2447.601408pt;}
._1c{margin-left:-2446.678016pt;}
._5{margin-left:-2445.449216pt;}
._e{margin-left:-2444.134400pt;}
._10{margin-left:-2442.675968pt;}
._1e{margin-left:-2441.242368pt;}
._11{margin-left:-2438.980608pt;}
._7{margin-left:-2437.309952pt;}
._12{margin-left:-2436.097280pt;}
._f{margin-left:-2434.753792pt;}
._8c{margin-left:-2411.114496pt;}
._93{margin-left:-2408.542464pt;}
._18{margin-left:-2390.551552pt;}
._1{margin-left:-2388.537856pt;}
._b4{margin-left:-2368.412416pt;}
._69{margin-left:-2352.237056pt;}
._9e{margin-left:-2341.373184pt;}
._cb{margin-left:-2332.608512pt;}
._a9{margin-left:-2311.720192pt;}
._c1{margin-left:-2270.636544pt;}
._d4{margin-left:-2227.724800pt;}
._9{margin-left:-2225.247595pt;}
._6a{margin-left:-2212.357120pt;}
._d3{margin-left:-2196.341760pt;}
._aa{margin-left:-2182.574080pt;}
._a3{margin-left:-2126.333184pt;}
._c8{margin-left:-2112.416256pt;}
._8e{margin-left:-2109.664768pt;}
._49{margin-left:-2107.195904pt;}
._73{margin-left:-2103.770880pt;}
._a7{margin-left:-2079.894272pt;}
._c6{margin-left:-2075.237376pt;}
._bb{margin-left:-2059.703296pt;}
._c4{margin-left:-2056.813312pt;}
._68{margin-left:-2051.383808pt;}
._7b{margin-left:-2040.166656pt;}
._67{margin-left:-1993.445120pt;}
._b0{margin-left:-1985.808896pt;}
._63{margin-left:-1977.307904pt;}
._ca{margin-left:-1950.249984pt;}
._25{margin-left:-1948.219904pt;}
._9f{margin-left:-1925.493760pt;}
._44{margin-left:-1918.820096pt;}
._77{margin-left:-1905.898752pt;}
._51{margin-left:-1899.610112pt;}
._4{margin-left:-1874.937344pt;}
._b2{margin-left:-1873.761536pt;}
._6e{margin-left:-1871.210496pt;}
._30{margin-left:-1811.559424pt;}
._bd{margin-left:-1805.849344pt;}
._c5{margin-left:-1799.764736pt;}
._60{margin-left:-1784.605440pt;}
._96{margin-left:-1749.944064pt;}
._ce{margin-left:-1746.563840pt;}
._c0{margin-left:-1709.399040pt;}
._71{margin-left:-1706.825216pt;}
._4b{margin-left:-1680.623616pt;}
._83{margin-left:-1670.278144pt;}
._cf{margin-left:-1632.421376pt;}
._80{margin-left:-1621.774592pt;}
._55{margin-left:-1619.265792pt;}
._a2{margin-left:-1585.756160pt;}
._b1{margin-left:-1570.648576pt;}
._66{margin-left:-1542.310144pt;}
._62{margin-left:-1539.457536pt;}
._b3{margin-left:-1522.836992pt;}
._9d{margin-left:-1495.511808pt;}
._95{margin-left:-1466.783232pt;}
._a4{margin-left:-1461.233152pt;}
._2{margin-left:-1458.952192pt;}
._b8{margin-left:-1456.589312pt;}
._d0{margin-left:-1453.118208pt;}
._6f{margin-left:-1427.722240pt;}
._41{margin-left:-1424.090880pt;}
._87{margin-left:-1404.601088pt;}
._7c{margin-left:-1373.313664pt;}
._a5{margin-left:-1356.583424pt;}
._97{margin-left:-1321.698048pt;}
._6d{margin-left:-1308.148736pt;}
._59{margin-left:-1303.452160pt;}
._16{margin-left:-1262.111488pt;}
._c2{margin-left:-1255.594496pt;}
._8b{margin-left:-1209.637120pt;}
._b5{margin-left:-1156.657408pt;}
._cd{margin-left:-1137.909760pt;}
._b9{margin-left:-1114.206208pt;}
._33{margin-left:-1096.601088pt;}
._8f{margin-left:-1091.614976pt;}
._36{margin-left:-1077.456896pt;}
._1b{margin-left:-1075.874048pt;}
._78{margin-left:-1064.090112pt;}
._64{margin-left:-1045.138688pt;}
._a0{margin-left:-1029.539840pt;}
._48{margin-left:-1006.651136pt;}
._c3{margin-left:-989.729024pt;}
._46{margin-left:-970.032640pt;}
._8a{margin-left:-950.614016pt;}
._8{margin-left:-947.014144pt;}
._56{margin-left:-931.022336pt;}
._bc{margin-left:-927.790848pt;}
._81{margin-left:-921.843968pt;}
._d1{margin-left:-916.573184pt;}
._ba{margin-left:-911.780352pt;}
._a{margin-left:-894.899712pt;}
._6b{margin-left:-888.755968pt;}
._9b{margin-left:-874.803712pt;}
._c9{margin-left:-852.526848pt;}
._2f{margin-left:-838.765568pt;}
._58{margin-left:-833.543936pt;}
._34{margin-left:-824.425984pt;}
._ac{margin-left:-819.977984pt;}
._45{margin-left:-816.912896pt;}
._b7{margin-left:-764.627200pt;}
._4a{margin-left:-732.217600pt;}
._42{margin-left:-699.835904pt;}
._9c{margin-left:-696.256000pt;}
._91{margin-left:-689.955840pt;}
._8d{margin-left:-687.730176pt;}
._90{margin-left:-680.052224pt;}
._c7{margin-left:-677.567488pt;}
._79{margin-left:-661.163520pt;}
._ad{margin-left:-631.464448pt;}
._94{margin-left:-612.289536pt;}
._74{margin-left:-609.441792pt;}
._af{margin-left:-605.156864pt;}
._a1{margin-left:-589.667840pt;}
._39{margin-left:-560.914432pt;}
._35{margin-left:-556.124160pt;}
._bf{margin-left:-548.985344pt;}
._19{margin-left:-533.523456pt;}
._9a{margin-left:-531.800576pt;}
._6{margin-left:-529.154560pt;}
._be{margin-left:-519.575808pt;}
._84{margin-left:-512.896512pt;}
._b6{margin-left:-484.190208pt;}
._cc{margin-left:-470.886912pt;}
._92{margin-left:-469.768192pt;}
._7f{margin-left:-435.535360pt;}
._61{margin-left:-433.286144pt;}
._99{margin-left:-411.508736pt;}
._70{margin-left:-388.372480pt;}
._65{margin-left:-384.730880pt;}
._c{margin-left:-375.161856pt;}
._ab{margin-left:-363.407360pt;}
._17{margin-left:-358.284800pt;}
._a8{margin-left:-351.042560pt;}
._3f{margin-left:-306.583552pt;}
._d2{margin-left:-199.544320pt;}
._40{margin-left:-198.245120pt;}
._82{margin-left:-195.930880pt;}
._72{margin-left:-192.314880pt;}
._b{margin-left:-169.456640pt;}
._57{margin-left:-2.878208pt;}
._24{margin-left:-1.946624pt;}
._3{margin-left:-0.982272pt;}
._0{width:1.142272pt;}
._47{width:2.036480pt;}
._4f{width:3.179520pt;}
._4e{width:4.357120pt;}
._26{width:5.275648pt;}
._5e{width:6.276864pt;}
._3c{width:7.325824pt;}
._3b{width:8.233408pt;}
._37{width:9.318400pt;}
._5d{width:10.350080pt;}
._4d{width:11.873792pt;}
._7a{width:14.940416pt;}
._7d{width:16.309760pt;}
._89{width:21.314560pt;}
._86{width:22.589952pt;}
._7e{width:26.193920pt;}
._88{width:27.094784pt;}
._3e{width:32.057344pt;}
._21{width:33.778432pt;}
._3d{width:64.699008pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:51.205760pt;}
.yf2{bottom:51.352960pt;}
.y1{bottom:69.120000pt;}
.yc8{bottom:99.355520pt;}
.yf1{bottom:99.713920pt;}
.y146{bottom:101.125760pt;}
.y165{bottom:101.129600pt;}
.y14f{bottom:101.135360pt;}
.y83{bottom:101.136640pt;}
.yb8{bottom:101.150080pt;}
.ya5{bottom:101.173120pt;}
.y3e{bottom:101.180160pt;}
.y173{bottom:102.902400pt;}
.y1b{bottom:106.403840pt;}
.y142{bottom:108.352000pt;}
.y16c{bottom:109.614720pt;}
.yc2{bottom:115.523840pt;}
.y112{bottom:118.727040pt;}
.yda{bottom:122.883200pt;}
.y176{bottom:124.496640pt;}
.yf0{bottom:126.592640pt;}
.y145{bottom:128.004480pt;}
.y164{bottom:128.008320pt;}
.y14e{bottom:128.014080pt;}
.y82{bottom:128.015360pt;}
.y53{bottom:128.026240pt;}
.yb7{bottom:128.028800pt;}
.ya4{bottom:128.051840pt;}
.y3d{bottom:128.058880pt;}
.y172{bottom:129.781120pt;}
.y1a{bottom:133.282533pt;}
.y68{bottom:135.047680pt;}
.y141{bottom:135.230720pt;}
.yc1{bottom:142.402560pt;}
.y111{bottom:146.724480pt;}
.yd9{bottom:149.761920pt;}
.yef{bottom:153.309440pt;}
.y175{bottom:154.569600pt;}
.y144{bottom:154.721280pt;}
.y163{bottom:154.725120pt;}
.y14d{bottom:154.730880pt;}
.y81{bottom:154.732160pt;}
.y52{bottom:154.743040pt;}
.yb6{bottom:154.745600pt;}
.ya3{bottom:154.768640pt;}
.y3c{bottom:154.775680pt;}
.y171{bottom:156.659840pt;}
.y19{bottom:160.161333pt;}
.y67{bottom:161.926400pt;}
.y140{bottom:161.947520pt;}
.yc0{bottom:169.281280pt;}
.y110{bottom:173.441280pt;}
.yd8{bottom:176.478720pt;}
.y174{bottom:177.282560pt;}
.yee{bottom:180.188160pt;}
.y143{bottom:181.600000pt;}
.y162{bottom:181.603840pt;}
.y14c{bottom:181.609600pt;}
.y80{bottom:181.610880pt;}
.y51{bottom:181.621760pt;}
.yb5{bottom:181.624320pt;}
.ya2{bottom:181.647360pt;}
.y3b{bottom:181.654400pt;}
.y170{bottom:183.538560pt;}
.y18{bottom:187.040000pt;}
.y17{bottom:187.061760pt;}
.y66{bottom:188.805120pt;}
.y13f{bottom:188.826240pt;}
.ybf{bottom:196.160000pt;}
.y10f{bottom:200.323840pt;}
.yd7{bottom:203.357440pt;}
.yed{bottom:207.066880pt;}
.y161{bottom:208.482560pt;}
.y14b{bottom:208.488320pt;}
.y7f{bottom:208.489600pt;}
.y50{bottom:208.500480pt;}
.yb4{bottom:208.503040pt;}
.ya1{bottom:208.526080pt;}
.y3a{bottom:208.533120pt;}
.y16f{bottom:210.417280pt;}
.y16{bottom:213.778560pt;}
.y65{bottom:215.683840pt;}
.y13e{bottom:215.704960pt;}
.y10e{bottom:227.202560pt;}
.yd6{bottom:230.236160pt;}
.yec{bottom:233.945600pt;}
.y160{bottom:235.361280pt;}
.y14a{bottom:235.367040pt;}
.y7e{bottom:235.368320pt;}
.y4f{bottom:235.379200pt;}
.yb3{bottom:235.381760pt;}
.ya0{bottom:235.404800pt;}
.y39{bottom:235.411840pt;}
.y16e{bottom:237.296000pt;}
.y15{bottom:240.657333pt;}
.y64{bottom:242.562560pt;}
.y13d{bottom:242.583680pt;}
.y10d{bottom:254.081280pt;}
.yd5{bottom:257.114880pt;}
.y16d{bottom:260.170880pt;}
.yeb{bottom:260.824320pt;}
.y149{bottom:262.245760pt;}
.y7d{bottom:262.247040pt;}
.y4e{bottom:262.257920pt;}
.yb2{bottom:262.260480pt;}
.y15f{bottom:262.271360pt;}
.y9f{bottom:262.283520pt;}
.y38{bottom:262.290560pt;}
.y14{bottom:267.536000pt;}
.y63{bottom:269.441280pt;}
.y13c{bottom:269.462400pt;}
.y108{bottom:277.118720pt;}
.y10c{bottom:280.960640pt;}
.yd4{bottom:283.993600pt;}
.yea{bottom:287.703040pt;}
.y148{bottom:289.124480pt;}
.y7c{bottom:289.125760pt;}
.y4d{bottom:289.136640pt;}
.yb1{bottom:289.139200pt;}
.y15e{bottom:289.150080pt;}
.y9e{bottom:289.162240pt;}
.y37{bottom:289.169280pt;}
.y13{bottom:294.414667pt;}
.y62{bottom:296.324480pt;}
.y13b{bottom:296.341120pt;}
.y107{bottom:303.997440pt;}
.y10b{bottom:307.839360pt;}
.ye9{bottom:314.581760pt;}
.y147{bottom:316.003200pt;}
.y7b{bottom:316.004480pt;}
.y4c{bottom:316.015360pt;}
.yb0{bottom:316.017920pt;}
.y15d{bottom:316.028800pt;}
.y9d{bottom:316.040960pt;}
.y36{bottom:316.048000pt;}
.y12{bottom:317.289600pt;}
.y61{bottom:323.041280pt;}
.y13a{bottom:323.057920pt;}
.y106{bottom:330.714240pt;}
.y10a{bottom:334.556160pt;}
.ye8{bottom:341.298560pt;}
.y7a{bottom:342.721280pt;}
.y4b{bottom:342.732160pt;}
.yaf{bottom:342.734720pt;}
.y15c{bottom:342.745600pt;}
.y9c{bottom:342.757760pt;}
.y35{bottom:342.764800pt;}
.y60{bottom:349.928320pt;}
.y139{bottom:349.936640pt;}
.y105{bottom:357.592960pt;}
.y12e{bottom:367.840000pt;}
.ye7{bottom:368.177280pt;}
.y79{bottom:369.600000pt;}
.y4a{bottom:369.610880pt;}
.yae{bottom:369.613440pt;}
.y15b{bottom:369.624320pt;}
.y9b{bottom:369.636480pt;}
.y34{bottom:369.643520pt;}
.y109{bottom:375.360000pt;}
.y5f{bottom:376.807040pt;}
.y138{bottom:376.815360pt;}
.y104{bottom:379.040000pt;}
.y12d{bottom:381.931520pt;}
.ye6{bottom:395.056000pt;}
.y103{bottom:395.360000pt;}
.y49{bottom:396.489600pt;}
.y78{bottom:396.490880pt;}
.yad{bottom:396.492160pt;}
.y15a{bottom:396.503040pt;}
.y9a{bottom:396.515200pt;}
.y33{bottom:396.522240pt;}
.y12c{bottom:399.845760pt;}
.y5e{bottom:403.685760pt;}
.y137{bottom:403.694080pt;}
.y102{bottom:411.680000pt;}
.y12b{bottom:417.787520pt;}
.ye5{bottom:421.934720pt;}
.y48{bottom:423.368320pt;}
.y77{bottom:423.369600pt;}
.yac{bottom:423.370880pt;}
.y159{bottom:423.381760pt;}
.y99{bottom:423.393920pt;}
.y32{bottom:423.400960pt;}
.y5d{bottom:430.564480pt;}
.y136{bottom:430.572800pt;}
.y101{bottom:431.840000pt;}
.y12a{bottom:435.701760pt;}
.ye4{bottom:448.813440pt;}
.y47{bottom:450.247040pt;}
.y76{bottom:450.248320pt;}
.yab{bottom:450.249600pt;}
.y158{bottom:450.260480pt;}
.y98{bottom:450.272640pt;}
.y31{bottom:450.279680pt;}
.y100{bottom:452.160000pt;}
.y129{bottom:453.616000pt;}
.y5c{bottom:457.443200pt;}
.y135{bottom:457.451520pt;}
.y128{bottom:471.530240pt;}
.yff{bottom:472.480000pt;}
.ye3{bottom:475.692160pt;}
.y46{bottom:477.125760pt;}
.y75{bottom:477.127040pt;}
.yaa{bottom:477.128320pt;}
.y157{bottom:477.139200pt;}
.y97{bottom:477.151360pt;}
.y30{bottom:477.158400pt;}
.y5a{bottom:484.157440pt;}
.y5b{bottom:484.160000pt;}
.y134{bottom:484.330240pt;}
.y127{bottom:489.444480pt;}
.yfe{bottom:492.640000pt;}
.ye2{bottom:502.408960pt;}
.y45{bottom:503.842560pt;}
.y74{bottom:503.843840pt;}
.ya9{bottom:503.845120pt;}
.y156{bottom:503.856000pt;}
.y96{bottom:503.868160pt;}
.y2f{bottom:503.875200pt;}
.y126{bottom:506.240000pt;}
.y59{bottom:507.680000pt;}
.y133{bottom:511.047040pt;}
.yfd{bottom:512.960000pt;}
.y125{bottom:529.281280pt;}
.ye1{bottom:529.287680pt;}
.y44{bottom:530.721280pt;}
.y73{bottom:530.722560pt;}
.ya8{bottom:530.723840pt;}
.y155{bottom:530.734720pt;}
.y95{bottom:530.746880pt;}
.y2e{bottom:530.753920pt;}
.yfc{bottom:533.280000pt;}
.y132{bottom:537.925760pt;}
.yd3{bottom:550.720000pt;}
.yfb{bottom:553.600000pt;}
.y124{bottom:556.161280pt;}
.ye0{bottom:556.166400pt;}
.y72{bottom:557.601280pt;}
.ya7{bottom:557.602560pt;}
.y43{bottom:557.605120pt;}
.y154{bottom:557.613440pt;}
.y94{bottom:557.625600pt;}
.y2d{bottom:557.632640pt;}
.y131{bottom:564.804480pt;}
.yd2{bottom:566.880000pt;}
.yfa{bottom:573.760000pt;}
.y130{bottom:581.600000pt;}
.ydf{bottom:583.045120pt;}
.y123{bottom:583.048320pt;}
.yd1{bottom:583.200000pt;}
.y71{bottom:584.481280pt;}
.y42{bottom:584.483840pt;}
.y153{bottom:584.492160pt;}
.y93{bottom:584.504320pt;}
.y2c{bottom:584.511360pt;}
.yf9{bottom:594.080000pt;}
.yd0{bottom:599.520000pt;}
.yde{bottom:605.920000pt;}
.y122{bottom:609.765120pt;}
.ya6{bottom:611.360000pt;}
.y41{bottom:611.362560pt;}
.y152{bottom:611.370880pt;}
.y92{bottom:611.383040pt;}
.y2b{bottom:611.390080pt;}
.yf8{bottom:614.400000pt;}
.ycf{bottom:615.200000pt;}
.yf7{bottom:634.560000pt;}
.y121{bottom:636.643840pt;}
.y40{bottom:638.241280pt;}
.y11{bottom:638.244533pt;}
.y151{bottom:638.249600pt;}
.y91{bottom:638.261760pt;}
.y2a{bottom:638.268800pt;}
.yf6{bottom:654.880000pt;}
.y120{bottom:663.522560pt;}
.y3f{bottom:665.120000pt;}
.y10{bottom:665.123200pt;}
.y150{bottom:665.128320pt;}
.y70{bottom:665.134080pt;}
.y90{bottom:665.140480pt;}
.y29{bottom:665.147520pt;}
.yf5{bottom:671.680000pt;}
.yf4{bottom:689.120000pt;}
.y11f{bottom:690.401280pt;}
.yce{bottom:691.845120pt;}
.y6f{bottom:691.850880pt;}
.y8f{bottom:691.857280pt;}
.y28{bottom:691.864320pt;}
.yf{bottom:697.120000pt;}
.yf3{bottom:705.440000pt;}
.yc7{bottom:711.840000pt;}
.y11e{bottom:717.281280pt;}
.ye{bottom:718.721280pt;}
.ycd{bottom:718.723840pt;}
.y6e{bottom:718.729600pt;}
.y8e{bottom:718.736000pt;}
.y27{bottom:718.743040pt;}
.yc6{bottom:728.000000pt;}
.y11d{bottom:744.161280pt;}
.yc5{bottom:744.320000pt;}
.ycc{bottom:745.602560pt;}
.y6d{bottom:745.608320pt;}
.y8d{bottom:745.614720pt;}
.y26{bottom:745.621760pt;}
.yd{bottom:750.880000pt;}
.yc4{bottom:760.640000pt;}
.y11c{bottom:771.043200pt;}
.ycb{bottom:772.481280pt;}
.y6c{bottom:772.487040pt;}
.y8c{bottom:772.493440pt;}
.y25{bottom:772.500480pt;}
.yc3{bottom:776.320000pt;}
.yc{bottom:777.759867pt;}
.y11b{bottom:797.763840pt;}
.yca{bottom:799.361280pt;}
.yb{bottom:799.365760pt;}
.y8b{bottom:799.372160pt;}
.y24{bottom:799.379200pt;}
.y11a{bottom:824.642560pt;}
.ya{bottom:826.244480pt;}
.y8a{bottom:826.250880pt;}
.y23{bottom:826.257920pt;}
.y119{bottom:851.521280pt;}
.y9{bottom:853.123200pt;}
.y89{bottom:853.129600pt;}
.y22{bottom:853.136640pt;}
.ybe{bottom:856.640000pt;}
.y16b{bottom:871.050880pt;}
.ybd{bottom:872.960000pt;}
.y118{bottom:878.402560pt;}
.y8{bottom:879.840000pt;}
.y6b{bottom:879.841280pt;}
.y88{bottom:879.846400pt;}
.y7{bottom:879.853440pt;}
.ybc{bottom:889.120000pt;}
.y16a{bottom:894.411520pt;}
.y117{bottom:905.281280pt;}
.ybb{bottom:905.440000pt;}
.y6a{bottom:906.721280pt;}
.y87{bottom:906.725120pt;}
.y6{bottom:906.732133pt;}
.y21{bottom:906.732160pt;}
.y169{bottom:917.610240pt;}
.yba{bottom:921.760000pt;}
.y116{bottom:932.160000pt;}
.y69{bottom:933.601280pt;}
.y86{bottom:933.603840pt;}
.y20{bottom:933.610880pt;}
.y5{bottom:933.610933pt;}
.yb9{bottom:937.440000pt;}
.y168{bottom:940.970880pt;}
.y58{bottom:944.960000pt;}
.ydd{bottom:956.640000pt;}
.y115{bottom:959.038720pt;}
.y85{bottom:960.482560pt;}
.y4{bottom:960.489600pt;}
.y57{bottom:961.280000pt;}
.y167{bottom:964.169600pt;}
.y12f{bottom:966.400000pt;}
.ydc{bottom:966.560000pt;}
.y56{bottom:977.440000pt;}
.ydb{bottom:982.720000pt;}
.y114{bottom:985.755520pt;}
.y84{bottom:987.361280pt;}
.y3{bottom:987.368320pt;}
.y166{bottom:987.530240pt;}
.y55{bottom:999.040000pt;}
.y113{bottom:1013.120000pt;}
.yc9{bottom:1014.240000pt;}
.y2{bottom:1014.247040pt;}
.y54{bottom:1015.360000pt;}
.y1e{bottom:1064.770667pt;}
.y1d{bottom:1080.770667pt;}
.y1c{bottom:1096.770667pt;}
.h5{height:30.613125pt;}
.h8{height:38.281250pt;}
.h7{height:48.543390pt;}
.h2{height:48.558750pt;}
.h3{height:48.558857pt;}
.h6{height:48.558963pt;}
.h19{height:51.623045pt;}
.he{height:51.676805pt;}
.h4{height:51.679365pt;}
.h11{height:51.689605pt;}
.ha{height:51.699845pt;}
.h10{height:51.704965pt;}
.h9{height:51.712645pt;}
.hb{height:51.715205pt;}
.h12{height:51.716485pt;}
.h18{height:51.717765pt;}
.h13{height:51.720325pt;}
.h17{height:51.721605pt;}
.hf{height:51.722885pt;}
.hd{height:51.728005pt;}
.h16{height:51.730565pt;}
.hc{height:51.731845pt;}
.h1a{height:53.069137pt;}
.h14{height:793.760000pt;}
.h15{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:1122.560000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:52.744000pt;}
.xd{left:66.880000pt;}
.x7{left:74.391067pt;}
.x4{left:81.924533pt;}
.x5{left:113.925760pt;}
.x6{left:122.878720pt;}
.x14{left:132.340480pt;}
.xb{left:160.647040pt;}
.x2{left:165.121920pt;}
.x8{left:187.028480pt;}
.x3{left:350.402560pt;}
.x9{left:358.369280pt;}
.xe{left:389.440000pt;}
.x1{left:393.120000pt;}
.xc{left:420.480000pt;}
.x12{left:553.760000pt;}
.xf{left:562.240000pt;}
.x11{left:590.400000pt;}
.x15{left:595.358080pt;}
.x16{left:612.639360pt;}
.x10{left:616.642560pt;}
.x17{left:620.485120pt;}
.x13{left:680.320000pt;}
}




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