
    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_f57fb3075a6c244271c29946.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_768daa4ca38169b47b7310ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_2433a6332cbd54c7af46e6e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_13226b127b3c3e8fcd9968ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_0ceb8443650933b695aacfa6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_36142a0c691a964ce4838c32.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_987cd7e4df1b150d11015e64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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_50178f86acf3a7f9d9a26a02.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b4478e65ca5b746754f6c688.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.864160px;}
.ls39{letter-spacing:-0.527040px;}
.lsb{letter-spacing:-0.396360px;}
.ls10{letter-spacing:-0.329400px;}
.ls4a{letter-spacing:-0.263520px;}
.ls82{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.132120px;}
.ls9{letter-spacing:-0.131760px;}
.ls2{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.083880px;}
.lsd{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.065880px;}
.ls81{letter-spacing:-0.054000px;}
.ls4b{letter-spacing:-0.042120px;}
.ls4d{letter-spacing:-0.038880px;}
.ls1{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.021960px;}
.ls77{letter-spacing:0.045360px;}
.ls7f{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.065880px;}
.ls7e{letter-spacing:0.070200px;}
.ls29{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.083880px;}
.ls6c{letter-spacing:0.105408px;}
.ls24{letter-spacing:0.108000px;}
.ls65{letter-spacing:0.131760px;}
.ls4{letter-spacing:0.132120px;}
.ls7{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.151200px;}
.ls4e{letter-spacing:0.158112px;}
.ls83{letter-spacing:0.162000px;}
.ls63{letter-spacing:0.164700px;}
.ls4c{letter-spacing:0.167760px;}
.ls47{letter-spacing:0.191052px;}
.lsa{letter-spacing:0.197640px;}
.ls5f{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.270000px;}
.ls6b{letter-spacing:0.270108px;}
.ls34{letter-spacing:0.289872px;}
.ls5{letter-spacing:0.329400px;}
.ls35{letter-spacing:0.378000px;}
.ls70{letter-spacing:0.381960px;}
.ls45{letter-spacing:0.395280px;}
.ls36{letter-spacing:0.426600px;}
.ls80{letter-spacing:0.432000px;}
.ls64{letter-spacing:0.441396px;}
.ls5e{letter-spacing:0.448200px;}
.ls56{letter-spacing:0.454572px;}
.ls27{letter-spacing:0.487800px;}
.ls26{letter-spacing:0.583200px;}
.ls48{letter-spacing:0.599508px;}
.ls25{letter-spacing:0.604800px;}
.ls57{letter-spacing:0.619272px;}
.ls38{letter-spacing:1.024200px;}
.ls41{letter-spacing:1.251720px;}
.ls2e{letter-spacing:1.535004px;}
.ls6a{letter-spacing:1.917108px;}
.ls69{letter-spacing:2.022516px;}
.ls32{letter-spacing:2.174040px;}
.ls13{letter-spacing:2.193804px;}
.ls4f{letter-spacing:2.811960px;}
.ls2b{letter-spacing:2.994516px;}
.ls54{letter-spacing:3.132648px;}
.ls43{letter-spacing:3.294000px;}
.ls44{letter-spacing:3.359880px;}
.ls16{letter-spacing:4.150440px;}
.ls2c{letter-spacing:4.348080px;}
.ls15{letter-spacing:4.499604px;}
.ls3a{letter-spacing:4.525956px;}
.ls74{letter-spacing:4.743360px;}
.ls75{letter-spacing:4.861944px;}
.ls73{letter-spacing:4.908060px;}
.ls5b{letter-spacing:4.941000px;}
.ls55{letter-spacing:5.705208px;}
.ls3d{letter-spacing:5.797440px;}
.ls42{letter-spacing:6.028020px;}
.ls1c{letter-spacing:6.298128px;}
.ls7a{letter-spacing:6.634116px;}
.ls1b{letter-spacing:6.910812px;}
.lsf{letter-spacing:6.937164px;}
.ls22{letter-spacing:6.983280px;}
.ls21{letter-spacing:7.029396px;}
.ls1e{letter-spacing:7.246800px;}
.ls6d{letter-spacing:7.543260px;}
.ls14{letter-spacing:8.388000px;}
.ls33{letter-spacing:8.696160px;}
.ls17{letter-spacing:9.750240px;}
.ls18{letter-spacing:10.000584px;}
.ls7b{letter-spacing:10.145520px;}
.ls79{letter-spacing:11.687112px;}
.ls58{letter-spacing:12.187800px;}
.ls5a{letter-spacing:13.110120px;}
.ls59{letter-spacing:13.116708px;}
.ls46{letter-spacing:13.992912px;}
.ls50{letter-spacing:14.098320px;}
.ls5d{letter-spacing:15.877080px;}
.ls5c{letter-spacing:16.134012px;}
.ls78{letter-spacing:16.344828px;}
.ls7d{letter-spacing:16.726932px;}
.ls61{letter-spacing:17.774424px;}
.ls60{letter-spacing:17.800776px;}
.ls19{letter-spacing:18.775800px;}
.ls3e{letter-spacing:19.777176px;}
.ls7c{letter-spacing:22.003920px;}
.ls3f{letter-spacing:23.690448px;}
.ls20{letter-spacing:27.794772px;}
.ls1f{letter-spacing:29.580120px;}
.ls31{letter-spacing:30.541968px;}
.ls68{letter-spacing:32.505192px;}
.ls67{letter-spacing:32.650128px;}
.ls6e{letter-spacing:34.587000px;}
.ls62{letter-spacing:36.761040px;}
.ls76{letter-spacing:37.156320px;}
.ls2d{letter-spacing:37.472544px;}
.ls2f{letter-spacing:41.833800px;}
.ls1d{letter-spacing:43.217280px;}
.ls23{letter-spacing:43.395156px;}
.ls51{letter-spacing:45.391320px;}
.ls52{letter-spacing:45.457200px;}
.ls53{letter-spacing:45.562608px;}
.ls66{letter-spacing:49.344120px;}
.ls49{letter-spacing:50.068800px;}
.ls11{letter-spacing:57.528000px;}
.ls3c{letter-spacing:59.160240px;}
.ls71{letter-spacing:59.423760px;}
.ls72{letter-spacing:59.445360px;}
.ls3b{letter-spacing:59.496228px;}
.ls1a{letter-spacing:81.864000px;}
.ls30{letter-spacing:92.956680px;}
.ls12{letter-spacing:160.128000px;}
.ls0{letter-spacing:845.685360px;}
.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;}
}
.ws92{word-spacing:-65.880000px;}
.ws9{word-spacing:-31.312440px;}
.wsa{word-spacing:-31.180320px;}
.wsb{word-spacing:-30.783960px;}
.ws0{word-spacing:-25.488000px;}
.ws1{word-spacing:-25.380000px;}
.wsd{word-spacing:-20.160000px;}
.wse{word-spacing:-20.016000px;}
.wsab{word-spacing:-19.963440px;}
.wsc{word-spacing:-19.944000px;}
.ws24{word-spacing:-19.879560px;}
.wsf{word-spacing:-19.872000px;}
.ws61{word-spacing:-18.512280px;}
.ws19{word-spacing:-18.380520px;}
.ws18{word-spacing:-18.314640px;}
.ws26{word-spacing:-18.248760px;}
.ws62{word-spacing:-18.182880px;}
.wsa0{word-spacing:-18.051120px;}
.ws91{word-spacing:-17.064000px;}
.ws5e{word-spacing:-16.992000px;}
.ws5f{word-spacing:-16.848000px;}
.ws20{word-spacing:-15.745320px;}
.ws1f{word-spacing:-15.613560px;}
.ws8{word-spacing:-15.547680px;}
.ws6{word-spacing:-15.481800px;}
.ws7{word-spacing:-15.415920px;}
.ws7b{word-spacing:-15.228000px;}
.ws29{word-spacing:-15.120000px;}
.ws7c{word-spacing:-15.012000px;}
.ws2a{word-spacing:-14.904000px;}
.ws28{word-spacing:-14.850000px;}
.wsaf{word-spacing:-12.852000px;}
.wsb1{word-spacing:-12.798000px;}
.wsac{word-spacing:-12.744000px;}
.wsae{word-spacing:-12.690000px;}
.wsad{word-spacing:-12.636000px;}
.wsb0{word-spacing:-12.528000px;}
.ws25{word-spacing:-11.709360px;}
.ws60{word-spacing:-11.667240px;}
.ws27{word-spacing:-10.808640px;}
.ws63{word-spacing:-10.769760px;}
.ws3a{word-spacing:-3.952800px;}
.ws6a{word-spacing:-3.623400px;}
.ws80{word-spacing:-3.228120px;}
.wsa9{word-spacing:-2.898720px;}
.ws84{word-spacing:-2.503440px;}
.ws83{word-spacing:-2.174040px;}
.ws37{word-spacing:-1.778760px;}
.wsb6{word-spacing:-1.512000px;}
.ws38{word-spacing:-1.449360px;}
.ws64{word-spacing:-1.119960px;}
.ws35{word-spacing:-1.054080px;}
.ws76{word-spacing:-0.724680px;}
.wsb7{word-spacing:-0.486000px;}
.wsbd{word-spacing:-0.432000px;}
.ws5{word-spacing:-0.396360px;}
.ws3d{word-spacing:-0.395280px;}
.ws9f{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.263520px;}
.ws10{word-spacing:-0.197640px;}
.ws3{word-spacing:-0.168480px;}
.ws74{word-spacing:-0.167760px;}
.ws96{word-spacing:-0.162000px;}
.ws16{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.131760px;}
.ws5c{word-spacing:-0.108000px;}
.ws17{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.065880px;}
.wsc1{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.wsb3{word-spacing:0.054000px;}
.ws22{word-spacing:0.065880px;}
.ws33{word-spacing:0.072000px;}
.ws12{word-spacing:0.083880px;}
.ws5d{word-spacing:0.108000px;}
.ws4d{word-spacing:0.162000px;}
.ws14{word-spacing:0.216000px;}
.ws6f{word-spacing:0.263520px;}
.ws4{word-spacing:0.264240px;}
.ws4c{word-spacing:0.270000px;}
.ws15{word-spacing:0.288000px;}
.ws1c{word-spacing:0.329400px;}
.ws6c{word-spacing:0.360000px;}
.ws13{word-spacing:0.419400px;}
.ws57{word-spacing:0.527040px;}
.ws42{word-spacing:0.724680px;}
.ws2d{word-spacing:1.054080px;}
.ws94{word-spacing:1.449360px;}
.ws95{word-spacing:1.647000px;}
.ws4b{word-spacing:1.778760px;}
.ws75{word-spacing:1.844640px;}
.wsc0{word-spacing:1.890000px;}
.wsbe{word-spacing:1.944000px;}
.wsbf{word-spacing:1.998000px;}
.ws58{word-spacing:2.174040px;}
.wsc3{word-spacing:2.268000px;}
.wsc2{word-spacing:2.376000px;}
.ws5a{word-spacing:2.898720px;}
.ws72{word-spacing:3.228120px;}
.ws47{word-spacing:3.623400px;}
.ws2b{word-spacing:4.282200px;}
.ws86{word-spacing:4.677480px;}
.ws82{word-spacing:5.006880px;}
.ws6e{word-spacing:5.402160px;}
.ws66{word-spacing:5.731560px;}
.ws3e{word-spacing:6.126840px;}
.ws7d{word-spacing:6.258600px;}
.wsb2{word-spacing:6.318000px;}
.ws1a{word-spacing:6.456240px;}
.ws49{word-spacing:6.851520px;}
.ws41{word-spacing:7.180920px;}
.ws36{word-spacing:7.576200px;}
.ws7e{word-spacing:7.905600px;}
.ws3b{word-spacing:8.630280px;}
.ws85{word-spacing:9.025560px;}
.ws45{word-spacing:9.354960px;}
.wsc9{word-spacing:9.558000px;}
.wsc8{word-spacing:9.612000px;}
.ws2e{word-spacing:9.684360px;}
.wsa8{word-spacing:10.079640px;}
.wsbc{word-spacing:10.206000px;}
.ws51{word-spacing:10.804320px;}
.wsa7{word-spacing:11.529000px;}
.wsb4{word-spacing:11.772000px;}
.ws6d{word-spacing:11.858400px;}
.ws59{word-spacing:12.253680px;}
.ws46{word-spacing:12.978360px;}
.ws2c{word-spacing:13.307760px;}
.ws73{word-spacing:13.703040px;}
.ws3c{word-spacing:14.032440px;}
.wsa4{word-spacing:15.481800px;}
.ws87{word-spacing:15.811200px;}
.ws8e{word-spacing:16.206480px;}
.ws8d{word-spacing:16.535880px;}
.ws6b{word-spacing:17.655840px;}
.wsb5{word-spacing:18.198000px;}
.wsc7{word-spacing:18.252000px;}
.ws32{word-spacing:18.380520px;}
.ws31{word-spacing:18.709920px;}
.ws67{word-spacing:19.434600px;}
.ws4f{word-spacing:20.883960px;}
.ws1d{word-spacing:21.213360px;}
.ws89{word-spacing:21.608640px;}
.ws9e{word-spacing:22.333320px;}
.ws8f{word-spacing:22.662720px;}
.ws69{word-spacing:23.387400px;}
.ws71{word-spacing:24.112080px;}
.ws40{word-spacing:24.836760px;}
.ws48{word-spacing:25.166160px;}
.wsa2{word-spacing:25.561440px;}
.ws9d{word-spacing:25.890840px;}
.ws44{word-spacing:27.340200px;}
.ws93{word-spacing:28.460160px;}
.ws43{word-spacing:29.514240px;}
.ws56{word-spacing:29.843640px;}
.ws8b{word-spacing:30.963600px;}
.ws1e{word-spacing:31.688280px;}
.ws90{word-spacing:32.412960px;}
.ws68{word-spacing:32.742360px;}
.ws70{word-spacing:34.587000px;}
.ws77{word-spacing:36.365760px;}
.ws50{word-spacing:36.695160px;}
.ws4e{word-spacing:37.419840px;}
.ws52{word-spacing:38.539800px;}
.ws8c{word-spacing:39.923280px;}
.ws53{word-spacing:41.767920px;}
.ws7a{word-spacing:42.492600px;}
.wsa6{word-spacing:42.822000px;}
.ws4a{word-spacing:43.217280px;}
.ws3f{word-spacing:43.546680px;}
.ws81{word-spacing:45.325440px;}
.ws97{word-spacing:47.894760px;}
.ws2f{word-spacing:51.122880px;}
.ws34{word-spacing:51.847560px;}
.ws30{word-spacing:52.901640px;}
.wsb9{word-spacing:53.028000px;}
.wsb8{word-spacing:53.190000px;}
.wsaa{word-spacing:53.296920px;}
.ws9c{word-spacing:54.021600px;}
.wsa3{word-spacing:55.075680px;}
.ws7f{word-spacing:57.579120px;}
.ws5b{word-spacing:58.699080px;}
.ws65{word-spacing:59.028480px;}
.ws9a{word-spacing:61.927200px;}
.ws54{word-spacing:63.376560px;}
.ws88{word-spacing:64.430640px;}
.ws8a{word-spacing:65.880000px;}
.ws39{word-spacing:66.604680px;}
.wsba{word-spacing:66.690000px;}
.wsbb{word-spacing:66.798000px;}
.wsc4{word-spacing:83.646000px;}
.wsa1{word-spacing:91.046160px;}
.ws55{word-spacing:92.890800px;}
.ws98{word-spacing:97.568280px;}
.wsa5{word-spacing:105.144480px;}
.ws99{word-spacing:110.546640px;}
.ws9b{word-spacing:113.050080px;}
.ws79{word-spacing:128.136600px;}
.ws78{word-spacing:128.531880px;}
.wsc5{word-spacing:149.796000px;}
.wsc6{word-spacing:149.958000px;}
.ws1b{word-spacing:198.694080px;}
._e{margin-left:-14.209200px;}
._a{margin-left:-12.978360px;}
._d{margin-left:-10.678428px;}
._c{margin-left:-9.535860px;}
._b{margin-left:-7.779420px;}
._9{margin-left:-6.544584px;}
._8{margin-left:-5.468040px;}
._7{margin-left:-4.458960px;}
._11{margin-left:-2.239920px;}
._1{margin-left:-1.136232px;}
._4{width:1.350468px;}
._f{width:3.172320px;}
._13{width:5.971824px;}
._10{width:7.971480px;}
._21{width:9.223200px;}
._23{width:11.594880px;}
._15{width:13.044240px;}
._12{width:14.295960px;}
._1c{width:16.163460px;}
._1b{width:20.307312px;}
._18{width:23.255640px;}
._14{width:24.705000px;}
._22{width:34.587000px;}
._17{width:41.833800px;}
._16{width:43.039404px;}
._1d{width:50.068800px;}
._24{width:53.362800px;}
._1a{width:59.423760px;}
._1e{width:64.446912px;}
._19{width:127.906092px;}
._0{width:189.075600px;}
._5{width:199.352880px;}
._1f{width:845.701560px;}
._6{width:847.271160px;}
._2{width:999.004320px;}
._20{width:1161.662040px;}
._3{width:1201.255920px;}
.fc3{color:rgb(197,8,89);}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs1{font-size:42.120000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y1a5{bottom:3.510000px;}
.y5{bottom:4.500000px;}
.ya{bottom:22.140000px;}
.y1bb{bottom:22.410000px;}
.y1ad{bottom:22.500000px;}
.y1aa{bottom:41.400000px;}
.y1a3{bottom:41.490000px;}
.y3{bottom:56.605590px;}
.y10{bottom:56.611890px;}
.y1ba{bottom:60.390000px;}
.y1af{bottom:60.480000px;}
.yf{bottom:76.590000px;}
.y1c0{bottom:79.380000px;}
.y1ff{bottom:79.470000px;}
.y2d{bottom:83.340000px;}
.y1a7{bottom:98.370000px;}
.y31{bottom:102.240000px;}
.yc0{bottom:114.475500px;}
.y7b{bottom:118.890000px;}
.y45{bottom:118.980000px;}
.y115{bottom:119.880000px;}
.y1b2{bottom:120.690000px;}
.y22a{bottom:121.413960px;}
.y1b8{bottom:122.130000px;}
.y1dc{bottom:126.090000px;}
.y5d{bottom:128.790000px;}
.ybf{bottom:129.960000px;}
.y165{bottom:131.755500px;}
.y204{bottom:132.300000px;}
.ye8{bottom:135.450000px;}
.y114{bottom:137.160000px;}
.y229{bottom:141.935580px;}
.y4{bottom:143.460000px;}
.y2b{bottom:143.820540px;}
.ybe{bottom:145.525500px;}
.ye7{bottom:147.235500px;}
.y7a{bottom:149.945580px;}
.y164{bottom:152.730000px;}
.y113{bottom:154.440000px;}
.y5c{bottom:160.200000px;}
.y1b1{bottom:160.830000px;}
.y228{bottom:162.358380px;}
.y1d9{bottom:164.790000px;}
.y32{bottom:165.060000px;}
.y202{bottom:166.140000px;}
.ybd{bottom:166.500000px;}
.ye6{bottom:168.210000px;}
.y18a{bottom:168.226740px;}
.y79{bottom:170.368380px;}
.y2{bottom:170.726220px;}
.y112{bottom:171.630000px;}
.y2a{bottom:176.315850px;}
.ybc{bottom:178.290000px;}
.ye5{bottom:179.995500px;}
.y227{bottom:182.880000px;}
.y140{bottom:183.510000px;}
.y111{bottom:184.050000px;}
.y1b7{bottom:184.396230px;}
.y1db{bottom:187.290000px;}
.y203{bottom:188.550000px;}
.y189{bottom:188.748360px;}
.y78{bottom:190.890000px;}
.y5b{bottom:191.520000px;}
.ybb{bottom:193.855500px;}
.ye4{bottom:200.970000px;}
.y13f{bottom:204.480000px;}
.y1b6{bottom:204.555510px;}
.y29{bottom:208.811160px;}
.y188{bottom:209.171160px;}
.ye3{bottom:213.390000px;}
.yba{bottom:214.830000px;}
.y226{bottom:215.280000px;}
.y13e{bottom:216.270000px;}
.y163{bottom:222.575850px;}
.y5a{bottom:222.840000px;}
.y77{bottom:223.290000px;}
.y201{bottom:223.740000px;}
.y1b5{bottom:224.632440px;}
.y1da{bottom:225.180000px;}
.yb9{bottom:226.611000px;}
.y110{bottom:227.549790px;}
.y187{bottom:229.692780px;}
.y13d{bottom:237.240000px;}
.y28{bottom:241.306470px;}
.yb8{bottom:242.095500px;}
.y1fe{bottom:243.450000px;}
.y1b4{bottom:243.540000px;}
.y76{bottom:243.711090px;}
.y10f{bottom:247.972590px;}
.y13c{bottom:249.570000px;}
.y186{bottom:250.115580px;}
.y59{bottom:254.160000px;}
.y162{bottom:255.071160px;}
.y224{bottom:255.600000px;}
.y1b3{bottom:262.530000px;}
.yb7{bottom:263.070000px;}
.y75{bottom:264.133890px;}
.y185{bottom:270.637200px;}
.y27{bottom:273.702960px;}
.yb6{bottom:274.855500px;}
.y161{bottom:275.493960px;}
.y225{bottom:278.010000px;}
.y1d7{bottom:279.360000px;}
.y10e{bottom:280.467900px;}
.y200{bottom:284.940000px;}
.y58{bottom:285.480000px;}
.y13b{bottom:289.279170px;}
.y184{bottom:291.060000px;}
.yb5{bottom:295.830000px;}
.y160{bottom:296.015580px;}
.y74{bottom:296.629200px;}
.y1ae{bottom:297.720000px;}
.y10d{bottom:300.989520px;}
.y44{bottom:303.210000px;}
.y26{bottom:306.198270px;}
.yb4{bottom:308.250000px;}
.y13a{bottom:309.800790px;}
.ye2{bottom:312.936660px;}
.y220{bottom:313.200000px;}
.y15f{bottom:316.438380px;}
.y57{bottom:316.890000px;}
.y1d8{bottom:320.850000px;}
.y10c{bottom:321.412320px;}
.y183{bottom:323.460000px;}
.y73{bottom:329.124510px;}
.yb3{bottom:329.681160px;}
.y139{bottom:330.223590px;}
.ye1{bottom:333.458280px;}
.y223{bottom:335.700000px;}
.y15e{bottom:336.960540px;}
.y25{bottom:338.693580px;}
.y1f8{bottom:339.120000px;}
.y1b0{bottom:339.210000px;}
.y43{bottom:340.290000px;}
.y10b{bottom:341.933940px;}
.y56{bottom:348.210000px;}
.yb2{bottom:350.202780px;}
.y1d6{bottom:356.040000px;}
.y15d{bottom:357.383340px;}
.y72{bottom:361.619820px;}
.y10a{bottom:362.356740px;}
.y1fd{bottom:362.686230px;}
.y138{bottom:362.718900px;}
.ye0{bottom:365.953590px;}
.y182{bottom:368.092530px;}
.yc{bottom:369.900000px;}
.yb1{bottom:370.625580px;}
.y24{bottom:371.188890px;}
.y222{bottom:373.680090px;}
.y1ac{bottom:374.400000px;}
.y42{bottom:374.670000px;}
.y55{bottom:379.530000px;}
.y1fc{bottom:382.763160px;}
.y109{bottom:382.878360px;}
.y137{bottom:383.240520px;}
.ydf{bottom:386.376390px;}
.y181{bottom:388.515330px;}
.y15c{bottom:389.878650px;}
.yb0{bottom:391.147200px;}
.y221{bottom:392.670000px;}
.y71{bottom:394.115130px;}
.y1d2{bottom:394.740000px;}
.y1fb{bottom:402.840090px;}
.y108{bottom:403.301160px;}
.y136{bottom:403.663320px;}
.y23{bottom:403.684200px;}
.y41{bottom:408.960000px;}
.y180{bottom:409.036950px;}
.y15b{bottom:410.400270px;}
.y54{bottom:410.850000px;}
.yaf{bottom:411.570000px;}
.y1a6{bottom:413.100000px;}
.y1d5{bottom:417.240000px;}
.yde{bottom:418.871700px;}
.y1fa{bottom:421.830000px;}
.y107{bottom:423.822780px;}
.y135{bottom:424.184940px;}
.y70{bottom:426.610440px;}
.y21a{bottom:427.860000px;}
.y17f{bottom:429.459750px;}
.y250{bottom:434.790000px;}
.y1ab{bottom:435.600000px;}
.y22{bottom:436.179510px;}
.ydd{bottom:439.294500px;}
.y1f9{bottom:440.820000px;}
.y53{bottom:442.170000px;}
.yae{bottom:442.890000px;}
.y15a{bottom:442.895580px;}
.y40{bottom:443.340000px;}
.y106{bottom:444.245580px;}
.y134{bottom:444.607740px;}
.y17e{bottom:449.981370px;}
.y21f{bottom:451.426230px;}
.y1d4{bottom:455.130090px;}
.y9{bottom:456.030000px;}
.y6f{bottom:459.105750px;}
.y159{bottom:463.318380px;}
.y105{bottom:464.767200px;}
.y133{bottom:465.129360px;}
.y21{bottom:468.576000px;}
.y24f{bottom:470.340000px;}
.y17d{bottom:470.404170px;}
.y21e{bottom:471.503160px;}
.ydc{bottom:471.789810px;}
.y1a9{bottom:473.490090px;}
.y52{bottom:473.580000px;}
.y1d3{bottom:474.120000px;}
.y3f{bottom:474.660000px;}
.y1f7{bottom:476.010000px;}
.yad{bottom:478.361160px;}
.y158{bottom:483.862590px;}
.y104{bottom:485.190000px;}
.y132{bottom:485.552160px;}
.y17c{bottom:490.925790px;}
.y6e{bottom:491.502240px;}
.y21d{bottom:491.580090px;}
.ydb{bottom:492.311430px;}
.y1a8{bottom:492.480000px;}
.y1f6{bottom:495.720000px;}
.yac{bottom:498.783960px;}
.y20{bottom:501.071310px;}
.y24e{bottom:504.270000px;}
.y157{bottom:504.285390px;}
.y51{bottom:504.900000px;}
.y3e{bottom:505.980000px;}
.y1d0{bottom:509.310000px;}
.y21c{bottom:510.570000px;}
.y17b{bottom:511.348590px;}
.y103{bottom:516.510000px;}
.y8e{bottom:517.050000px;}
.y131{bottom:518.047470px;}
.yab{bottom:519.305580px;}
.y6d{bottom:523.997550px;}
.yda{bottom:524.806740px;}
.y156{bottom:524.807010px;}
.y1a2{bottom:527.670000px;}
.y21b{bottom:529.560000px;}
.y1d1{bottom:531.810000px;}
.y17a{bottom:531.870210px;}
.y1f{bottom:533.566620px;}
.y1f5{bottom:534.420000px;}
.y50{bottom:536.220000px;}
.y3d{bottom:537.300000px;}
.y24d{bottom:538.200000px;}
.y130{bottom:538.470270px;}
.yaa{bottom:539.728380px;}
.yd9{bottom:545.229540px;}
.y155{bottom:545.229810px;}
.y8d{bottom:548.100000px;}
.y1a4{bottom:550.170000px;}
.y102{bottom:551.889090px;}
.y179{bottom:552.293010px;}
.y1f3{bottom:554.130000px;}
.y6c{bottom:556.492860px;}
.y12f{bottom:558.991890px;}
.ya9{bottom:560.255580px;}
.yb{bottom:564.660000px;}
.y219{bottom:564.750000px;}
.yd8{bottom:565.751160px;}
.y1e{bottom:566.061930px;}
.y4f{bottom:567.540000px;}
.y3c{bottom:568.710000px;}
.y24c{bottom:572.130000px;}
.y178{bottom:572.814630px;}
.y1f4{bottom:576.630000px;}
.y154{bottom:577.725120px;}
.y8c{bottom:578.790000px;}
.y12e{bottom:579.414690px;}
.y1cf{bottom:579.690000px;}
.ya8{bottom:580.678380px;}
.y101{bottom:581.310000px;}
.y218{bottom:584.460000px;}
.yd7{bottom:586.173960px;}
.y6b{bottom:588.988170px;}
.y177{bottom:593.336250px;}
.y1a1{bottom:598.050000px;}
.y153{bottom:598.246740px;}
.y1d{bottom:598.557240px;}
.y4e{bottom:598.860000px;}
.y3b{bottom:600.030000px;}
.ya7{bottom:601.223940px;}
.y24b{bottom:603.000000px;}
.yd6{bottom:606.695580px;}
.y1ce{bottom:610.568010px;}
.y12d{bottom:611.915580px;}
.y176{bottom:613.759050px;}
.y152{bottom:618.669540px;}
.y8b{bottom:619.920000px;}
.y6a{bottom:621.483480px;}
.ya6{bottom:621.646740px;}
.y217{bottom:623.160000px;}
.y1f2{bottom:624.510000px;}
.y100{bottom:625.878360px;}
.yd5{bottom:627.118380px;}
.y1a0{bottom:628.950600px;}
.y4d{bottom:630.270000px;}
.y1cd{bottom:630.990810px;}
.y1c{bottom:631.052550px;}
.y3a{bottom:631.350000px;}
.y12c{bottom:632.437200px;}
.y175{bottom:634.280670px;}
.y151{bottom:639.191160px;}
.ya5{bottom:642.168360px;}
.y215{bottom:642.870000px;}
.y24a{bottom:646.164000px;}
.yff{bottom:646.301160px;}
.yd4{bottom:647.640270px;}
.y19f{bottom:649.373400px;}
.y1cc{bottom:651.512430px;}
.y12b{bottom:652.865580px;}
.y69{bottom:653.978790px;}
.y174{bottom:654.703470px;}
.y1f1{bottom:655.399170px;}
.y150{bottom:659.613960px;}
.y8a{bottom:661.050000px;}
.y4c{bottom:661.590000px;}
.ya4{bottom:662.591160px;}
.y39{bottom:662.670000px;}
.y1b{bottom:663.449040px;}
.y249{bottom:663.714000px;}
.y216{bottom:665.370000px;}
.yfe{bottom:666.822780px;}
.y19e{bottom:669.895020px;}
.y1cb{bottom:671.935230px;}
.y12a{bottom:673.387200px;}
.y173{bottom:675.225090px;}
.y1f0{bottom:675.821970px;}
.y33{bottom:676.620000px;}
.yd3{bottom:680.135580px;}
.ya3{bottom:683.112780px;}
.y68{bottom:686.375280px;}
.yfd{bottom:687.245580px;}
.y248{bottom:690.268500px;}
.y19d{bottom:690.317820px;}
.y1ca{bottom:692.456850px;}
.y4b{bottom:692.910000px;}
.y129{bottom:693.825120px;}
.y38{bottom:693.990000px;}
.y172{bottom:695.647890px;}
.y1a{bottom:695.944350px;}
.y1ef{bottom:696.343590px;}
.yd2{bottom:700.558380px;}
.y89{bottom:702.270000px;}
.ya2{bottom:703.535580px;}
.yfc{bottom:707.767200px;}
.y247{bottom:707.818500px;}
.y19c{bottom:710.839440px;}
.y214{bottom:713.250000px;}
.y128{bottom:714.346740px;}
.y171{bottom:716.169510px;}
.y1ee{bottom:716.766390px;}
.y67{bottom:718.870590px;}
.yd1{bottom:721.092060px;}
.y14f{bottom:721.094040px;}
.y46{bottom:721.620000px;}
.ya1{bottom:724.057200px;}
.y4a{bottom:724.230000px;}
.y1c9{bottom:724.853340px;}
.y37{bottom:725.400000px;}
.yfb{bottom:728.199540px;}
.y19{bottom:728.439660px;}
.y19b{bottom:731.262240px;}
.y246{bottom:734.373000px;}
.y88{bottom:734.400000px;}
.y127{bottom:734.769540px;}
.y170{bottom:736.592310px;}
.y1ed{bottom:737.288010px;}
.yd0{bottom:741.514860px;}
.y213{bottom:744.135210px;}
.ya0{bottom:744.496740px;}
.y1c8{bottom:745.374960px;}
.yfa{bottom:748.721160px;}
.y66{bottom:751.365900px;}
.y19a{bottom:751.783860px;}
.y245{bottom:751.923000px;}
.y14e{bottom:753.490530px;}
.y126{bottom:755.291160px;}
.y49{bottom:755.550000px;}
.y36{bottom:756.720000px;}
.y16f{bottom:757.113930px;}
.y1ec{bottom:757.710810px;}
.y18{bottom:760.934970px;}
.ycf{bottom:762.036480px;}
.y212{bottom:764.558010px;}
.y9f{bottom:765.018360px;}
.y1c7{bottom:765.797760px;}
.y87{bottom:766.530000px;}
.yf9{bottom:769.143960px;}
.y244{bottom:769.473000px;}
.y199{bottom:772.206660px;}
.y14d{bottom:774.012150px;}
.y125{bottom:775.713960px;}
.y16e{bottom:777.536730px;}
.y1eb{bottom:778.232430px;}
.yce{bottom:782.459280px;}
.y65{bottom:783.861210px;}
.y211{bottom:785.079630px;}
.y9e{bottom:785.441160px;}
.y1c6{bottom:786.319380px;}
.y48{bottom:786.870000px;}
.y243{bottom:787.023000px;}
.y35{bottom:788.040000px;}
.yf8{bottom:789.665580px;}
.y198{bottom:792.728280px;}
.y17{bottom:793.430280px;}
.y124{bottom:796.235580px;}
.y16d{bottom:798.058350px;}
.y1ea{bottom:798.655230px;}
.ycd{bottom:802.980900px;}
.y210{bottom:805.502430px;}
.y9d{bottom:805.962780px;}
.y14c{bottom:806.507460px;}
.y86{bottom:807.660000px;}
.yf7{bottom:810.088380px;}
.y34{bottom:810.360000px;}
.y197{bottom:813.151080px;}
.y242{bottom:813.577500px;}
.y64{bottom:816.356520px;}
.y123{bottom:816.658380px;}
.y47{bottom:818.280000px;}
.y16c{bottom:818.481150px;}
.y1c5{bottom:818.814690px;}
.y1e9{bottom:819.176850px;}
.y16{bottom:825.925590px;}
.y20f{bottom:826.024050px;}
.y9c{bottom:826.385580px;}
.y14b{bottom:826.930260px;}
.yf6{bottom:830.610000px;}
.y241{bottom:831.127500px;}
.ye{bottom:832.238910px;}
.ycc{bottom:835.377390px;}
.y122{bottom:837.180000px;}
.y16b{bottom:839.002770px;}
.y85{bottom:839.790000px;}
.y196{bottom:845.646390px;}
.y20e{bottom:846.446850px;}
.y9b{bottom:846.907200px;}
.y14a{bottom:847.451880px;}
.y63{bottom:848.851830px;}
.y1c4{bottom:851.310000px;}
.y1e8{bottom:851.672160px;}
.ycb{bottom:855.899010px;}
.y240{bottom:857.682000px;}
.y15{bottom:858.322080px;}
.y16a{bottom:859.425570px;}
.yf5{bottom:861.930000px;}
.y195{bottom:866.168010px;}
.y9a{bottom:867.330000px;}
.y1c3{bottom:867.510000px;}
.y149{bottom:867.874680px;}
.y121{bottom:868.410000px;}
.y84{bottom:872.010000px;}
.y1e7{bottom:872.094960px;}
.y23f{bottom:875.232000px;}
.yd{bottom:878.580000px;}
.y20d{bottom:878.942160px;}
.y169{bottom:879.947190px;}
.y62{bottom:881.248320px;}
.y30{bottom:885.150000px;}
.y194{bottom:886.590810px;}
.y1bf{bottom:887.220000px;}
.yca{bottom:888.394320px;}
.y148{bottom:888.396300px;}
.y1e6{bottom:892.616580px;}
.y23e{bottom:892.782000px;}
.yf4{bottom:897.316740px;}
.y99{bottom:898.650000px;}
.y20c{bottom:899.364960px;}
.y168{bottom:900.369990px;}
.y120{bottom:903.881430px;}
.y233{bottom:903.894570px;}
.y193{bottom:907.112430px;}
.y1c2{bottom:909.720000px;}
.y1e5{bottom:913.039380px;}
.y83{bottom:913.140000px;}
.y61{bottom:913.743630px;}
.yf3{bottom:917.838360px;}
.y23d{bottom:919.336500px;}
.y20b{bottom:919.886580px;}
.yc9{bottom:920.889630px;}
.y147{bottom:920.891610px;}
.y98{bottom:923.850000px;}
.y11f{bottom:924.403050px;}
.y232{bottom:936.389880px;}
.y23c{bottom:936.886500px;}
.yf2{bottom:938.261160px;}
.y192{bottom:939.508920px;}
.y20a{bottom:940.309380px;}
.y146{bottom:941.314410px;}
.y11e{bottom:944.825850px;}
.y82{bottom:945.276120px;}
.y1e4{bottom:945.534690px;}
.y60{bottom:946.238940px;}
.y1c1{bottom:947.700000px;}
.yc8{bottom:953.286120px;}
.y23b{bottom:954.436500px;}
.y231{bottom:956.911500px;}
.yf1{bottom:958.782780px;}
.y97{bottom:959.321160px;}
.y11d{bottom:965.347470px;}
.y81{bottom:968.400000px;}
.y191{bottom:972.004230px;}
.y209{bottom:972.804690px;}
.y145{bottom:973.809720px;}
.y230{bottom:977.334300px;}
.y1e3{bottom:978.042780px;}
.y5f{bottom:978.734250px;}
.yf0{bottom:979.205580px;}
.y96{bottom:979.842780px;}
.y23a{bottom:980.991000px;}
.y1be{bottom:982.800000px;}
.y11c{bottom:985.770270px;}
.yc7{bottom:985.781430px;}
.y190{bottom:992.525850px;}
.y144{bottom:994.232520px;}
.y22f{bottom:997.855920px;}
.y1e2{bottom:998.465580px;}
.y239{bottom:998.541000px;}
.y8{bottom:999.449010px;}
.yef{bottom:999.727200px;}
.y95{bottom:1000.265580px;}
.y80{bottom:1000.530000px;}
.y1bd{bottom:1002.600000px;}
.y208{bottom:1005.300000px;}
.y5e{bottom:1011.229560px;}
.y18f{bottom:1012.948650px;}
.y143{bottom:1014.754140px;}
.y11b{bottom:1018.265580px;}
.yc6{bottom:1018.276740px;}
.y22e{bottom:1018.278720px;}
.y1e1{bottom:1018.987200px;}
.yee{bottom:1020.153960px;}
.y94{bottom:1020.787200px;}
.y206{bottom:1021.500000px;}
.y238{bottom:1025.095500px;}
.y167{bottom:1026.727830px;}
.y7f{bottom:1032.756120px;}
.y2c{bottom:1033.470000px;}
.y18e{bottom:1033.470270px;}
.y7{bottom:1038.054690px;}
.y11a{bottom:1038.787200px;}
.yc5{bottom:1038.798360px;}
.y22d{bottom:1038.800340px;}
.y1e0{bottom:1039.410000px;}
.yed{bottom:1040.675580px;}
.y93{bottom:1041.213960px;}
.y1bc{bottom:1041.300000px;}
.y237{bottom:1042.645500px;}
.y14{bottom:1043.724870px;}
.y207{bottom:1044.000000px;}
.y142{bottom:1047.249450px;}
.y2f{bottom:1053.354240px;}
.y7e{bottom:1055.880000px;}
.y119{bottom:1059.215580px;}
.yc4{bottom:1059.221160px;}
.y22c{bottom:1059.223140px;}
.y236{bottom:1060.195500px;}
.yec{bottom:1061.098380px;}
.y92{bottom:1061.735580px;}
.y18d{bottom:1065.965580px;}
.y141{bottom:1067.672250px;}
.y6{bottom:1070.550000px;}
.y1df{bottom:1070.730000px;}
.y13{bottom:1076.121360px;}
.y205{bottom:1079.190000px;}
.y118{bottom:1079.737200px;}
.yc3{bottom:1079.742780px;}
.y22b{bottom:1079.744760px;}
.y1b9{bottom:1080.000000px;}
.yeb{bottom:1081.620000px;}
.y91{bottom:1082.158380px;}
.y2e{bottom:1082.880000px;}
.y1{bottom:1086.030000px;}
.y18c{bottom:1086.388380px;}
.y235{bottom:1086.750000px;}
.y7d{bottom:1088.010000px;}
.y166{bottom:1088.193870px;}
.y1dd{bottom:1098.900000px;}
.yc2{bottom:1100.165580px;}
.y117{bottom:1100.167560px;}
.y90{bottom:1102.680000px;}
.y234{bottom:1104.300000px;}
.y18b{bottom:1106.910000px;}
.y12{bottom:1108.616670px;}
.yea{bottom:1112.940000px;}
.yc1{bottom:1120.687200px;}
.y116{bottom:1120.689180px;}
.y1de{bottom:1121.400000px;}
.y7c{bottom:1131.930000px;}
.y8f{bottom:1135.080000px;}
.ye9{bottom:1138.140000px;}
.y11{bottom:1141.111980px;}
.h3{height:14.310000px;}
.h39{height:18.900000px;}
.h37{height:18.988500px;}
.h33{height:18.990000px;}
.h1b{height:33.431484px;}
.h4{height:36.217441px;}
.h32{height:37.888500px;}
.h2e{height:37.890000px;}
.h31{height:37.980000px;}
.h1d{height:39.313477px;}
.h2b{height:42.120000px;}
.h13{height:43.769004px;}
.h1c{height:46.432617px;}
.h2a{height:47.962441px;}
.h3c{height:47.988281px;}
.h6{height:49.860000px;}
.ha{height:51.386400px;}
.h1e{height:51.712980px;}
.hf{height:52.417969px;}
.h16{height:56.135520px;}
.h15{height:56.160000px;}
.h2{height:56.647793px;}
.h2c{height:56.880000px;}
.h3b{height:56.881500px;}
.h35{height:56.970000px;}
.h19{height:57.001681px;}
.h28{height:57.007081px;}
.h26{height:57.020761px;}
.h23{height:57.024001px;}
.h18{height:57.030481px;}
.h25{height:57.036961px;}
.h27{height:57.041281px;}
.h36{height:57.046321px;}
.h20{height:57.049201px;}
.h22{height:57.059281px;}
.h24{height:57.067201px;}
.h1a{height:57.075121px;}
.h17{height:57.081601px;}
.h1f{height:57.089521px;}
.h29{height:57.095281px;}
.h21{height:57.096361px;}
.h10{height:61.910156px;}
.hc{height:65.426400px;}
.h5{height:65.430360px;}
.h11{height:72.125332px;}
.h14{height:74.973600px;}
.h2f{height:75.870000px;}
.h7{height:84.240000px;}
.h34{height:94.860000px;}
.h38{height:94.951500px;}
.h9{height:103.053600px;}
.h2d{height:113.850000px;}
.hb{height:117.180000px;}
.hd{height:129.958500px;}
.h3a{height:136.080000px;}
.h30{height:136.170000px;}
.h8{height:397.620000px;}
.he{height:693.540000px;}
.h12{height:738.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:91.620000px;}
.w9{width:222.210000px;}
.w7{width:249.840000px;}
.w8{width:390.420000px;}
.wa{width:456.030000px;}
.w3{width:474.030000px;}
.w5{width:499.500000px;}
.w4{width:592.830000px;}
.w6{width:661.770000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x4{left:10.800000px;}
.xe{left:30.330000px;}
.x22{left:34.740000px;}
.x10{left:51.030000px;}
.x5{left:106.290000px;}
.x1f{left:114.750000px;}
.xd{left:117.630000px;}
.x19{left:122.760000px;}
.x1a{left:133.110000px;}
.x3{left:141.930000px;}
.x1b{left:159.840000px;}
.xf{left:181.170000px;}
.x15{left:191.970000px;}
.x8{left:193.320000px;}
.x1d{left:212.406210px;}
.x16{left:263.250000px;}
.x13{left:293.220000px;}
.x6{left:312.120000px;}
.x12{left:313.200000px;}
.x7{left:318.960000px;}
.x1c{left:322.290000px;}
.xa{left:330.840000px;}
.x20{left:337.680000px;}
.x9{left:351.540000px;}
.x14{left:359.190000px;}
.x1{left:361.350000px;}
.x21{left:364.674330px;}
.x23{left:387.630000px;}
.x11{left:420.210000px;}
.x17{left:432.540000px;}
.x18{left:443.340000px;}
.x2{left:479.242260px;}
.xb{left:492.852150px;}
.xc{left:621.553950px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.545920pt;}
.ls39{letter-spacing:-0.468480pt;}
.lsb{letter-spacing:-0.352320pt;}
.ls10{letter-spacing:-0.292800pt;}
.ls4a{letter-spacing:-0.234240pt;}
.ls82{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.117440pt;}
.ls9{letter-spacing:-0.117120pt;}
.ls2{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.074560pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.058560pt;}
.ls81{letter-spacing:-0.048000pt;}
.ls4b{letter-spacing:-0.037440pt;}
.ls4d{letter-spacing:-0.034560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.019520pt;}
.ls77{letter-spacing:0.040320pt;}
.ls7f{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.058560pt;}
.ls7e{letter-spacing:0.062400pt;}
.ls29{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.074560pt;}
.ls6c{letter-spacing:0.093696pt;}
.ls24{letter-spacing:0.096000pt;}
.ls65{letter-spacing:0.117120pt;}
.ls4{letter-spacing:0.117440pt;}
.ls7{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.134400pt;}
.ls4e{letter-spacing:0.140544pt;}
.ls83{letter-spacing:0.144000pt;}
.ls63{letter-spacing:0.146400pt;}
.ls4c{letter-spacing:0.149120pt;}
.ls47{letter-spacing:0.169824pt;}
.lsa{letter-spacing:0.175680pt;}
.ls5f{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.240000pt;}
.ls6b{letter-spacing:0.240096pt;}
.ls34{letter-spacing:0.257664pt;}
.ls5{letter-spacing:0.292800pt;}
.ls35{letter-spacing:0.336000pt;}
.ls70{letter-spacing:0.339520pt;}
.ls45{letter-spacing:0.351360pt;}
.ls36{letter-spacing:0.379200pt;}
.ls80{letter-spacing:0.384000pt;}
.ls64{letter-spacing:0.392352pt;}
.ls5e{letter-spacing:0.398400pt;}
.ls56{letter-spacing:0.404064pt;}
.ls27{letter-spacing:0.433600pt;}
.ls26{letter-spacing:0.518400pt;}
.ls48{letter-spacing:0.532896pt;}
.ls25{letter-spacing:0.537600pt;}
.ls57{letter-spacing:0.550464pt;}
.ls38{letter-spacing:0.910400pt;}
.ls41{letter-spacing:1.112640pt;}
.ls2e{letter-spacing:1.364448pt;}
.ls6a{letter-spacing:1.704096pt;}
.ls69{letter-spacing:1.797792pt;}
.ls32{letter-spacing:1.932480pt;}
.ls13{letter-spacing:1.950048pt;}
.ls4f{letter-spacing:2.499520pt;}
.ls2b{letter-spacing:2.661792pt;}
.ls54{letter-spacing:2.784576pt;}
.ls43{letter-spacing:2.928000pt;}
.ls44{letter-spacing:2.986560pt;}
.ls16{letter-spacing:3.689280pt;}
.ls2c{letter-spacing:3.864960pt;}
.ls15{letter-spacing:3.999648pt;}
.ls3a{letter-spacing:4.023072pt;}
.ls74{letter-spacing:4.216320pt;}
.ls75{letter-spacing:4.321728pt;}
.ls73{letter-spacing:4.362720pt;}
.ls5b{letter-spacing:4.392000pt;}
.ls55{letter-spacing:5.071296pt;}
.ls3d{letter-spacing:5.153280pt;}
.ls42{letter-spacing:5.358240pt;}
.ls1c{letter-spacing:5.598336pt;}
.ls7a{letter-spacing:5.896992pt;}
.ls1b{letter-spacing:6.142944pt;}
.lsf{letter-spacing:6.166368pt;}
.ls22{letter-spacing:6.207360pt;}
.ls21{letter-spacing:6.248352pt;}
.ls1e{letter-spacing:6.441600pt;}
.ls6d{letter-spacing:6.705120pt;}
.ls14{letter-spacing:7.456000pt;}
.ls33{letter-spacing:7.729920pt;}
.ls17{letter-spacing:8.666880pt;}
.ls18{letter-spacing:8.889408pt;}
.ls7b{letter-spacing:9.018240pt;}
.ls79{letter-spacing:10.388544pt;}
.ls58{letter-spacing:10.833600pt;}
.ls5a{letter-spacing:11.653440pt;}
.ls59{letter-spacing:11.659296pt;}
.ls46{letter-spacing:12.438144pt;}
.ls50{letter-spacing:12.531840pt;}
.ls5d{letter-spacing:14.112960pt;}
.ls5c{letter-spacing:14.341344pt;}
.ls78{letter-spacing:14.528736pt;}
.ls7d{letter-spacing:14.868384pt;}
.ls61{letter-spacing:15.799488pt;}
.ls60{letter-spacing:15.822912pt;}
.ls19{letter-spacing:16.689600pt;}
.ls3e{letter-spacing:17.579712pt;}
.ls7c{letter-spacing:19.559040pt;}
.ls3f{letter-spacing:21.058176pt;}
.ls20{letter-spacing:24.706464pt;}
.ls1f{letter-spacing:26.293440pt;}
.ls31{letter-spacing:27.148416pt;}
.ls68{letter-spacing:28.893504pt;}
.ls67{letter-spacing:29.022336pt;}
.ls6e{letter-spacing:30.744000pt;}
.ls62{letter-spacing:32.676480pt;}
.ls76{letter-spacing:33.027840pt;}
.ls2d{letter-spacing:33.308928pt;}
.ls2f{letter-spacing:37.185600pt;}
.ls1d{letter-spacing:38.415360pt;}
.ls23{letter-spacing:38.573472pt;}
.ls51{letter-spacing:40.347840pt;}
.ls52{letter-spacing:40.406400pt;}
.ls53{letter-spacing:40.500096pt;}
.ls66{letter-spacing:43.861440pt;}
.ls49{letter-spacing:44.505600pt;}
.ls11{letter-spacing:51.136000pt;}
.ls3c{letter-spacing:52.586880pt;}
.ls71{letter-spacing:52.821120pt;}
.ls72{letter-spacing:52.840320pt;}
.ls3b{letter-spacing:52.885536pt;}
.ls1a{letter-spacing:72.768000pt;}
.ls30{letter-spacing:82.628160pt;}
.ls12{letter-spacing:142.336000pt;}
.ls0{letter-spacing:751.720320pt;}
.ws92{word-spacing:-58.560000pt;}
.ws9{word-spacing:-27.833280pt;}
.wsa{word-spacing:-27.715840pt;}
.wsb{word-spacing:-27.363520pt;}
.ws0{word-spacing:-22.656000pt;}
.ws1{word-spacing:-22.560000pt;}
.wsd{word-spacing:-17.920000pt;}
.wse{word-spacing:-17.792000pt;}
.wsab{word-spacing:-17.745280pt;}
.wsc{word-spacing:-17.728000pt;}
.ws24{word-spacing:-17.670720pt;}
.wsf{word-spacing:-17.664000pt;}
.ws61{word-spacing:-16.455360pt;}
.ws19{word-spacing:-16.338240pt;}
.ws18{word-spacing:-16.279680pt;}
.ws26{word-spacing:-16.221120pt;}
.ws62{word-spacing:-16.162560pt;}
.wsa0{word-spacing:-16.045440pt;}
.ws91{word-spacing:-15.168000pt;}
.ws5e{word-spacing:-15.104000pt;}
.ws5f{word-spacing:-14.976000pt;}
.ws20{word-spacing:-13.995840pt;}
.ws1f{word-spacing:-13.878720pt;}
.ws8{word-spacing:-13.820160pt;}
.ws6{word-spacing:-13.761600pt;}
.ws7{word-spacing:-13.703040pt;}
.ws7b{word-spacing:-13.536000pt;}
.ws29{word-spacing:-13.440000pt;}
.ws7c{word-spacing:-13.344000pt;}
.ws2a{word-spacing:-13.248000pt;}
.ws28{word-spacing:-13.200000pt;}
.wsaf{word-spacing:-11.424000pt;}
.wsb1{word-spacing:-11.376000pt;}
.wsac{word-spacing:-11.328000pt;}
.wsae{word-spacing:-11.280000pt;}
.wsad{word-spacing:-11.232000pt;}
.wsb0{word-spacing:-11.136000pt;}
.ws25{word-spacing:-10.408320pt;}
.ws60{word-spacing:-10.370880pt;}
.ws27{word-spacing:-9.607680pt;}
.ws63{word-spacing:-9.573120pt;}
.ws3a{word-spacing:-3.513600pt;}
.ws6a{word-spacing:-3.220800pt;}
.ws80{word-spacing:-2.869440pt;}
.wsa9{word-spacing:-2.576640pt;}
.ws84{word-spacing:-2.225280pt;}
.ws83{word-spacing:-1.932480pt;}
.ws37{word-spacing:-1.581120pt;}
.wsb6{word-spacing:-1.344000pt;}
.ws38{word-spacing:-1.288320pt;}
.ws64{word-spacing:-0.995520pt;}
.ws35{word-spacing:-0.936960pt;}
.ws76{word-spacing:-0.644160pt;}
.wsb7{word-spacing:-0.432000pt;}
.wsbd{word-spacing:-0.384000pt;}
.ws5{word-spacing:-0.352320pt;}
.ws3d{word-spacing:-0.351360pt;}
.ws9f{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.234240pt;}
.ws10{word-spacing:-0.175680pt;}
.ws3{word-spacing:-0.149760pt;}
.ws74{word-spacing:-0.149120pt;}
.ws96{word-spacing:-0.144000pt;}
.ws16{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.117120pt;}
.ws5c{word-spacing:-0.096000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.058560pt;}
.wsc1{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.048000pt;}
.ws22{word-spacing:0.058560pt;}
.ws33{word-spacing:0.064000pt;}
.ws12{word-spacing:0.074560pt;}
.ws5d{word-spacing:0.096000pt;}
.ws4d{word-spacing:0.144000pt;}
.ws14{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.234240pt;}
.ws4{word-spacing:0.234880pt;}
.ws4c{word-spacing:0.240000pt;}
.ws15{word-spacing:0.256000pt;}
.ws1c{word-spacing:0.292800pt;}
.ws6c{word-spacing:0.320000pt;}
.ws13{word-spacing:0.372800pt;}
.ws57{word-spacing:0.468480pt;}
.ws42{word-spacing:0.644160pt;}
.ws2d{word-spacing:0.936960pt;}
.ws94{word-spacing:1.288320pt;}
.ws95{word-spacing:1.464000pt;}
.ws4b{word-spacing:1.581120pt;}
.ws75{word-spacing:1.639680pt;}
.wsc0{word-spacing:1.680000pt;}
.wsbe{word-spacing:1.728000pt;}
.wsbf{word-spacing:1.776000pt;}
.ws58{word-spacing:1.932480pt;}
.wsc3{word-spacing:2.016000pt;}
.wsc2{word-spacing:2.112000pt;}
.ws5a{word-spacing:2.576640pt;}
.ws72{word-spacing:2.869440pt;}
.ws47{word-spacing:3.220800pt;}
.ws2b{word-spacing:3.806400pt;}
.ws86{word-spacing:4.157760pt;}
.ws82{word-spacing:4.450560pt;}
.ws6e{word-spacing:4.801920pt;}
.ws66{word-spacing:5.094720pt;}
.ws3e{word-spacing:5.446080pt;}
.ws7d{word-spacing:5.563200pt;}
.wsb2{word-spacing:5.616000pt;}
.ws1a{word-spacing:5.738880pt;}
.ws49{word-spacing:6.090240pt;}
.ws41{word-spacing:6.383040pt;}
.ws36{word-spacing:6.734400pt;}
.ws7e{word-spacing:7.027200pt;}
.ws3b{word-spacing:7.671360pt;}
.ws85{word-spacing:8.022720pt;}
.ws45{word-spacing:8.315520pt;}
.wsc9{word-spacing:8.496000pt;}
.wsc8{word-spacing:8.544000pt;}
.ws2e{word-spacing:8.608320pt;}
.wsa8{word-spacing:8.959680pt;}
.wsbc{word-spacing:9.072000pt;}
.ws51{word-spacing:9.603840pt;}
.wsa7{word-spacing:10.248000pt;}
.wsb4{word-spacing:10.464000pt;}
.ws6d{word-spacing:10.540800pt;}
.ws59{word-spacing:10.892160pt;}
.ws46{word-spacing:11.536320pt;}
.ws2c{word-spacing:11.829120pt;}
.ws73{word-spacing:12.180480pt;}
.ws3c{word-spacing:12.473280pt;}
.wsa4{word-spacing:13.761600pt;}
.ws87{word-spacing:14.054400pt;}
.ws8e{word-spacing:14.405760pt;}
.ws8d{word-spacing:14.698560pt;}
.ws6b{word-spacing:15.694080pt;}
.wsb5{word-spacing:16.176000pt;}
.wsc7{word-spacing:16.224000pt;}
.ws32{word-spacing:16.338240pt;}
.ws31{word-spacing:16.631040pt;}
.ws67{word-spacing:17.275200pt;}
.ws4f{word-spacing:18.563520pt;}
.ws1d{word-spacing:18.856320pt;}
.ws89{word-spacing:19.207680pt;}
.ws9e{word-spacing:19.851840pt;}
.ws8f{word-spacing:20.144640pt;}
.ws69{word-spacing:20.788800pt;}
.ws71{word-spacing:21.432960pt;}
.ws40{word-spacing:22.077120pt;}
.ws48{word-spacing:22.369920pt;}
.wsa2{word-spacing:22.721280pt;}
.ws9d{word-spacing:23.014080pt;}
.ws44{word-spacing:24.302400pt;}
.ws93{word-spacing:25.297920pt;}
.ws43{word-spacing:26.234880pt;}
.ws56{word-spacing:26.527680pt;}
.ws8b{word-spacing:27.523200pt;}
.ws1e{word-spacing:28.167360pt;}
.ws90{word-spacing:28.811520pt;}
.ws68{word-spacing:29.104320pt;}
.ws70{word-spacing:30.744000pt;}
.ws77{word-spacing:32.325120pt;}
.ws50{word-spacing:32.617920pt;}
.ws4e{word-spacing:33.262080pt;}
.ws52{word-spacing:34.257600pt;}
.ws8c{word-spacing:35.487360pt;}
.ws53{word-spacing:37.127040pt;}
.ws7a{word-spacing:37.771200pt;}
.wsa6{word-spacing:38.064000pt;}
.ws4a{word-spacing:38.415360pt;}
.ws3f{word-spacing:38.708160pt;}
.ws81{word-spacing:40.289280pt;}
.ws97{word-spacing:42.573120pt;}
.ws2f{word-spacing:45.442560pt;}
.ws34{word-spacing:46.086720pt;}
.ws30{word-spacing:47.023680pt;}
.wsb9{word-spacing:47.136000pt;}
.wsb8{word-spacing:47.280000pt;}
.wsaa{word-spacing:47.375040pt;}
.ws9c{word-spacing:48.019200pt;}
.wsa3{word-spacing:48.956160pt;}
.ws7f{word-spacing:51.181440pt;}
.ws5b{word-spacing:52.176960pt;}
.ws65{word-spacing:52.469760pt;}
.ws9a{word-spacing:55.046400pt;}
.ws54{word-spacing:56.334720pt;}
.ws88{word-spacing:57.271680pt;}
.ws8a{word-spacing:58.560000pt;}
.ws39{word-spacing:59.204160pt;}
.wsba{word-spacing:59.280000pt;}
.wsbb{word-spacing:59.376000pt;}
.wsc4{word-spacing:74.352000pt;}
.wsa1{word-spacing:80.929920pt;}
.ws55{word-spacing:82.569600pt;}
.ws98{word-spacing:86.727360pt;}
.wsa5{word-spacing:93.461760pt;}
.ws99{word-spacing:98.263680pt;}
.ws9b{word-spacing:100.488960pt;}
.ws79{word-spacing:113.899200pt;}
.ws78{word-spacing:114.250560pt;}
.wsc5{word-spacing:133.152000pt;}
.wsc6{word-spacing:133.296000pt;}
.ws1b{word-spacing:176.616960pt;}
._e{margin-left:-12.630400pt;}
._a{margin-left:-11.536320pt;}
._d{margin-left:-9.491936pt;}
._c{margin-left:-8.476320pt;}
._b{margin-left:-6.915040pt;}
._9{margin-left:-5.817408pt;}
._8{margin-left:-4.860480pt;}
._7{margin-left:-3.963520pt;}
._11{margin-left:-1.991040pt;}
._1{margin-left:-1.009984pt;}
._4{width:1.200416pt;}
._f{width:2.819840pt;}
._13{width:5.308288pt;}
._10{width:7.085760pt;}
._21{width:8.198400pt;}
._23{width:10.306560pt;}
._15{width:11.594880pt;}
._12{width:12.707520pt;}
._1c{width:14.367520pt;}
._1b{width:18.050944pt;}
._18{width:20.671680pt;}
._14{width:21.960000pt;}
._22{width:30.744000pt;}
._17{width:37.185600pt;}
._16{width:38.257248pt;}
._1d{width:44.505600pt;}
._24{width:47.433600pt;}
._1a{width:52.821120pt;}
._1e{width:57.286144pt;}
._19{width:113.694304pt;}
._0{width:168.067200pt;}
._5{width:177.202560pt;}
._1f{width:751.734720pt;}
._6{width:753.129920pt;}
._2{width:888.003840pt;}
._20{width:1032.588480pt;}
._3{width:1067.783040pt;}
.fs8{font-size:34.560000pt;}
.fs1{font-size:37.440000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y1a5{bottom:3.120000pt;}
.y5{bottom:4.000000pt;}
.ya{bottom:19.680000pt;}
.y1bb{bottom:19.920000pt;}
.y1ad{bottom:20.000000pt;}
.y1aa{bottom:36.800000pt;}
.y1a3{bottom:36.880000pt;}
.y3{bottom:50.316080pt;}
.y10{bottom:50.321680pt;}
.y1ba{bottom:53.680000pt;}
.y1af{bottom:53.760000pt;}
.yf{bottom:68.080000pt;}
.y1c0{bottom:70.560000pt;}
.y1ff{bottom:70.640000pt;}
.y2d{bottom:74.080000pt;}
.y1a7{bottom:87.440000pt;}
.y31{bottom:90.880000pt;}
.yc0{bottom:101.756000pt;}
.y7b{bottom:105.680000pt;}
.y45{bottom:105.760000pt;}
.y115{bottom:106.560000pt;}
.y1b2{bottom:107.280000pt;}
.y22a{bottom:107.923520pt;}
.y1b8{bottom:108.560000pt;}
.y1dc{bottom:112.080000pt;}
.y5d{bottom:114.480000pt;}
.ybf{bottom:115.520000pt;}
.y165{bottom:117.116000pt;}
.y204{bottom:117.600000pt;}
.ye8{bottom:120.400000pt;}
.y114{bottom:121.920000pt;}
.y229{bottom:126.164960pt;}
.y4{bottom:127.520000pt;}
.y2b{bottom:127.840480pt;}
.ybe{bottom:129.356000pt;}
.ye7{bottom:130.876000pt;}
.y7a{bottom:133.284960pt;}
.y164{bottom:135.760000pt;}
.y113{bottom:137.280000pt;}
.y5c{bottom:142.400000pt;}
.y1b1{bottom:142.960000pt;}
.y228{bottom:144.318560pt;}
.y1d9{bottom:146.480000pt;}
.y32{bottom:146.720000pt;}
.y202{bottom:147.680000pt;}
.ybd{bottom:148.000000pt;}
.ye6{bottom:149.520000pt;}
.y18a{bottom:149.534880pt;}
.y79{bottom:151.438560pt;}
.y2{bottom:151.756640pt;}
.y112{bottom:152.560000pt;}
.y2a{bottom:156.725200pt;}
.ybc{bottom:158.480000pt;}
.ye5{bottom:159.996000pt;}
.y227{bottom:162.560000pt;}
.y140{bottom:163.120000pt;}
.y111{bottom:163.600000pt;}
.y1b7{bottom:163.907760pt;}
.y1db{bottom:166.480000pt;}
.y203{bottom:167.600000pt;}
.y189{bottom:167.776320pt;}
.y78{bottom:169.680000pt;}
.y5b{bottom:170.240000pt;}
.ybb{bottom:172.316000pt;}
.ye4{bottom:178.640000pt;}
.y13f{bottom:181.760000pt;}
.y1b6{bottom:181.827120pt;}
.y29{bottom:185.609920pt;}
.y188{bottom:185.929920pt;}
.ye3{bottom:189.680000pt;}
.yba{bottom:190.960000pt;}
.y226{bottom:191.360000pt;}
.y13e{bottom:192.240000pt;}
.y163{bottom:197.845200pt;}
.y5a{bottom:198.080000pt;}
.y77{bottom:198.480000pt;}
.y201{bottom:198.880000pt;}
.y1b5{bottom:199.673280pt;}
.y1da{bottom:200.160000pt;}
.yb9{bottom:201.432000pt;}
.y110{bottom:202.266480pt;}
.y187{bottom:204.171360pt;}
.y13d{bottom:210.880000pt;}
.y28{bottom:214.494640pt;}
.yb8{bottom:215.196000pt;}
.y1fe{bottom:216.400000pt;}
.y1b4{bottom:216.480000pt;}
.y76{bottom:216.632080pt;}
.y10f{bottom:220.420080pt;}
.y13c{bottom:221.840000pt;}
.y186{bottom:222.324960pt;}
.y59{bottom:225.920000pt;}
.y162{bottom:226.729920pt;}
.y224{bottom:227.200000pt;}
.y1b3{bottom:233.360000pt;}
.yb7{bottom:233.840000pt;}
.y75{bottom:234.785680pt;}
.y185{bottom:240.566400pt;}
.y27{bottom:243.291520pt;}
.yb6{bottom:244.316000pt;}
.y161{bottom:244.883520pt;}
.y225{bottom:247.120000pt;}
.y1d7{bottom:248.320000pt;}
.y10e{bottom:249.304800pt;}
.y200{bottom:253.280000pt;}
.y58{bottom:253.760000pt;}
.y13b{bottom:257.137040pt;}
.y184{bottom:258.720000pt;}
.yb5{bottom:262.960000pt;}
.y160{bottom:263.124960pt;}
.y74{bottom:263.670400pt;}
.y1ae{bottom:264.640000pt;}
.y10d{bottom:267.546240pt;}
.y44{bottom:269.520000pt;}
.y26{bottom:272.176240pt;}
.yb4{bottom:274.000000pt;}
.y13a{bottom:275.378480pt;}
.ye2{bottom:278.165920pt;}
.y220{bottom:278.400000pt;}
.y15f{bottom:281.278560pt;}
.y57{bottom:281.680000pt;}
.y1d8{bottom:285.200000pt;}
.y10c{bottom:285.699840pt;}
.y183{bottom:287.520000pt;}
.y73{bottom:292.555120pt;}
.yb3{bottom:293.049920pt;}
.y139{bottom:293.532080pt;}
.ye1{bottom:296.407360pt;}
.y223{bottom:298.400000pt;}
.y15e{bottom:299.520480pt;}
.y25{bottom:301.060960pt;}
.y1f8{bottom:301.440000pt;}
.y1b0{bottom:301.520000pt;}
.y43{bottom:302.480000pt;}
.y10b{bottom:303.941280pt;}
.y56{bottom:309.520000pt;}
.yb2{bottom:311.291360pt;}
.y1d6{bottom:316.480000pt;}
.y15d{bottom:317.674080pt;}
.y72{bottom:321.439840pt;}
.y10a{bottom:322.094880pt;}
.y1fd{bottom:322.387760pt;}
.y138{bottom:322.416800pt;}
.ye0{bottom:325.292080pt;}
.y182{bottom:327.193360pt;}
.yc{bottom:328.800000pt;}
.yb1{bottom:329.444960pt;}
.y24{bottom:329.945680pt;}
.y222{bottom:332.160080pt;}
.y1ac{bottom:332.800000pt;}
.y42{bottom:333.040000pt;}
.y55{bottom:337.360000pt;}
.y1fc{bottom:340.233920pt;}
.y109{bottom:340.336320pt;}
.y137{bottom:340.658240pt;}
.ydf{bottom:343.445680pt;}
.y181{bottom:345.346960pt;}
.y15c{bottom:346.558800pt;}
.yb0{bottom:347.686400pt;}
.y221{bottom:349.040000pt;}
.y71{bottom:350.324560pt;}
.y1d2{bottom:350.880000pt;}
.y1fb{bottom:358.080080pt;}
.y108{bottom:358.489920pt;}
.y136{bottom:358.811840pt;}
.y23{bottom:358.830400pt;}
.y41{bottom:363.520000pt;}
.y180{bottom:363.588400pt;}
.y15b{bottom:364.800240pt;}
.y54{bottom:365.200000pt;}
.yaf{bottom:365.840000pt;}
.y1a6{bottom:367.200000pt;}
.y1d5{bottom:370.880000pt;}
.yde{bottom:372.330400pt;}
.y1fa{bottom:374.960000pt;}
.y107{bottom:376.731360pt;}
.y135{bottom:377.053280pt;}
.y70{bottom:379.209280pt;}
.y21a{bottom:380.320000pt;}
.y17f{bottom:381.742000pt;}
.y250{bottom:386.480000pt;}
.y1ab{bottom:387.200000pt;}
.y22{bottom:387.715120pt;}
.ydd{bottom:390.484000pt;}
.y1f9{bottom:391.840000pt;}
.y53{bottom:393.040000pt;}
.yae{bottom:393.680000pt;}
.y15a{bottom:393.684960pt;}
.y40{bottom:394.080000pt;}
.y106{bottom:394.884960pt;}
.y134{bottom:395.206880pt;}
.y17e{bottom:399.983440pt;}
.y21f{bottom:401.267760pt;}
.y1d4{bottom:404.560080pt;}
.y9{bottom:405.360000pt;}
.y6f{bottom:408.094000pt;}
.y159{bottom:411.838560pt;}
.y105{bottom:413.126400pt;}
.y133{bottom:413.448320pt;}
.y21{bottom:416.512000pt;}
.y24f{bottom:418.080000pt;}
.y17d{bottom:418.137040pt;}
.y21e{bottom:419.113920pt;}
.ydc{bottom:419.368720pt;}
.y1a9{bottom:420.880080pt;}
.y52{bottom:420.960000pt;}
.y1d3{bottom:421.440000pt;}
.y3f{bottom:421.920000pt;}
.y1f7{bottom:423.120000pt;}
.yad{bottom:425.209920pt;}
.y158{bottom:430.100080pt;}
.y104{bottom:431.280000pt;}
.y132{bottom:431.601920pt;}
.y17c{bottom:436.378480pt;}
.y6e{bottom:436.890880pt;}
.y21d{bottom:436.960080pt;}
.ydb{bottom:437.610160pt;}
.y1a8{bottom:437.760000pt;}
.y1f6{bottom:440.640000pt;}
.yac{bottom:443.363520pt;}
.y20{bottom:445.396720pt;}
.y24e{bottom:448.240000pt;}
.y157{bottom:448.253680pt;}
.y51{bottom:448.800000pt;}
.y3e{bottom:449.760000pt;}
.y1d0{bottom:452.720000pt;}
.y21c{bottom:453.840000pt;}
.y17b{bottom:454.532080pt;}
.y103{bottom:459.120000pt;}
.y8e{bottom:459.600000pt;}
.y131{bottom:460.486640pt;}
.yab{bottom:461.604960pt;}
.y6d{bottom:465.775600pt;}
.yda{bottom:466.494880pt;}
.y156{bottom:466.495120pt;}
.y1a2{bottom:469.040000pt;}
.y21b{bottom:470.720000pt;}
.y1d1{bottom:472.720000pt;}
.y17a{bottom:472.773520pt;}
.y1f{bottom:474.281440pt;}
.y1f5{bottom:475.040000pt;}
.y50{bottom:476.640000pt;}
.y3d{bottom:477.600000pt;}
.y24d{bottom:478.400000pt;}
.y130{bottom:478.640240pt;}
.yaa{bottom:479.758560pt;}
.yd9{bottom:484.648480pt;}
.y155{bottom:484.648720pt;}
.y8d{bottom:487.200000pt;}
.y1a4{bottom:489.040000pt;}
.y102{bottom:490.568080pt;}
.y179{bottom:490.927120pt;}
.y1f3{bottom:492.560000pt;}
.y6c{bottom:494.660320pt;}
.y12f{bottom:496.881680pt;}
.ya9{bottom:498.004960pt;}
.yb{bottom:501.920000pt;}
.y219{bottom:502.000000pt;}
.yd8{bottom:502.889920pt;}
.y1e{bottom:503.166160pt;}
.y4f{bottom:504.480000pt;}
.y3c{bottom:505.520000pt;}
.y24c{bottom:508.560000pt;}
.y178{bottom:509.168560pt;}
.y1f4{bottom:512.560000pt;}
.y154{bottom:513.533440pt;}
.y8c{bottom:514.480000pt;}
.y12e{bottom:515.035280pt;}
.y1cf{bottom:515.280000pt;}
.ya8{bottom:516.158560pt;}
.y101{bottom:516.720000pt;}
.y218{bottom:519.520000pt;}
.yd7{bottom:521.043520pt;}
.y6b{bottom:523.545040pt;}
.y177{bottom:527.410000pt;}
.y1a1{bottom:531.600000pt;}
.y153{bottom:531.774880pt;}
.y1d{bottom:532.050880pt;}
.y4e{bottom:532.320000pt;}
.y3b{bottom:533.360000pt;}
.ya7{bottom:534.421280pt;}
.y24b{bottom:536.000000pt;}
.yd6{bottom:539.284960pt;}
.y1ce{bottom:542.727120pt;}
.y12d{bottom:543.924960pt;}
.y176{bottom:545.563600pt;}
.y152{bottom:549.928480pt;}
.y8b{bottom:551.040000pt;}
.y6a{bottom:552.429760pt;}
.ya6{bottom:552.574880pt;}
.y217{bottom:553.920000pt;}
.y1f2{bottom:555.120000pt;}
.y100{bottom:556.336320pt;}
.yd5{bottom:557.438560pt;}
.y1a0{bottom:559.067200pt;}
.y4d{bottom:560.240000pt;}
.y1cd{bottom:560.880720pt;}
.y1c{bottom:560.935600pt;}
.y3a{bottom:561.200000pt;}
.y12c{bottom:562.166400pt;}
.y175{bottom:563.805040pt;}
.y151{bottom:568.169920pt;}
.ya5{bottom:570.816320pt;}
.y215{bottom:571.440000pt;}
.y24a{bottom:574.368000pt;}
.yff{bottom:574.489920pt;}
.yd4{bottom:575.680240pt;}
.y19f{bottom:577.220800pt;}
.y1cc{bottom:579.122160pt;}
.y12b{bottom:580.324960pt;}
.y69{bottom:581.314480pt;}
.y174{bottom:581.958640pt;}
.y1f1{bottom:582.577040pt;}
.y150{bottom:586.323520pt;}
.y8a{bottom:587.600000pt;}
.y4c{bottom:588.080000pt;}
.ya4{bottom:588.969920pt;}
.y39{bottom:589.040000pt;}
.y1b{bottom:589.732480pt;}
.y249{bottom:589.968000pt;}
.y216{bottom:591.440000pt;}
.yfe{bottom:592.731360pt;}
.y19e{bottom:595.462240pt;}
.y1cb{bottom:597.275760pt;}
.y12a{bottom:598.566400pt;}
.y173{bottom:600.200080pt;}
.y1f0{bottom:600.730640pt;}
.y33{bottom:601.440000pt;}
.yd3{bottom:604.564960pt;}
.ya3{bottom:607.211360pt;}
.y68{bottom:610.111360pt;}
.yfd{bottom:610.884960pt;}
.y248{bottom:613.572000pt;}
.y19d{bottom:613.615840pt;}
.y1ca{bottom:615.517200pt;}
.y4b{bottom:615.920000pt;}
.y129{bottom:616.733440pt;}
.y38{bottom:616.880000pt;}
.y172{bottom:618.353680pt;}
.y1a{bottom:618.617200pt;}
.y1ef{bottom:618.972080pt;}
.yd2{bottom:622.718560pt;}
.y89{bottom:624.240000pt;}
.ya2{bottom:625.364960pt;}
.yfc{bottom:629.126400pt;}
.y247{bottom:629.172000pt;}
.y19c{bottom:631.857280pt;}
.y214{bottom:634.000000pt;}
.y128{bottom:634.974880pt;}
.y171{bottom:636.595120pt;}
.y1ee{bottom:637.125680pt;}
.y67{bottom:638.996080pt;}
.yd1{bottom:640.970720pt;}
.y14f{bottom:640.972480pt;}
.y46{bottom:641.440000pt;}
.ya1{bottom:643.606400pt;}
.y4a{bottom:643.760000pt;}
.y1c9{bottom:644.314080pt;}
.y37{bottom:644.800000pt;}
.yfb{bottom:647.288480pt;}
.y19{bottom:647.501920pt;}
.y19b{bottom:650.010880pt;}
.y246{bottom:652.776000pt;}
.y88{bottom:652.800000pt;}
.y127{bottom:653.128480pt;}
.y170{bottom:654.748720pt;}
.y1ed{bottom:655.367120pt;}
.yd0{bottom:659.124320pt;}
.y213{bottom:661.453520pt;}
.ya0{bottom:661.774880pt;}
.y1c8{bottom:662.555520pt;}
.yfa{bottom:665.529920pt;}
.y66{bottom:667.880800pt;}
.y19a{bottom:668.252320pt;}
.y245{bottom:668.376000pt;}
.y14e{bottom:669.769360pt;}
.y126{bottom:671.369920pt;}
.y49{bottom:671.600000pt;}
.y36{bottom:672.640000pt;}
.y16f{bottom:672.990160pt;}
.y1ec{bottom:673.520720pt;}
.y18{bottom:676.386640pt;}
.ycf{bottom:677.365760pt;}
.y212{bottom:679.607120pt;}
.y9f{bottom:680.016320pt;}
.y1c7{bottom:680.709120pt;}
.y87{bottom:681.360000pt;}
.yf9{bottom:683.683520pt;}
.y244{bottom:683.976000pt;}
.y199{bottom:686.405920pt;}
.y14d{bottom:688.010800pt;}
.y125{bottom:689.523520pt;}
.y16e{bottom:691.143760pt;}
.y1eb{bottom:691.762160pt;}
.yce{bottom:695.519360pt;}
.y65{bottom:696.765520pt;}
.y211{bottom:697.848560pt;}
.y9e{bottom:698.169920pt;}
.y1c6{bottom:698.950560pt;}
.y48{bottom:699.440000pt;}
.y243{bottom:699.576000pt;}
.y35{bottom:700.480000pt;}
.yf8{bottom:701.924960pt;}
.y198{bottom:704.647360pt;}
.y17{bottom:705.271360pt;}
.y124{bottom:707.764960pt;}
.y16d{bottom:709.385200pt;}
.y1ea{bottom:709.915760pt;}
.ycd{bottom:713.760800pt;}
.y210{bottom:716.002160pt;}
.y9d{bottom:716.411360pt;}
.y14c{bottom:716.895520pt;}
.y86{bottom:717.920000pt;}
.yf7{bottom:720.078560pt;}
.y34{bottom:720.320000pt;}
.y197{bottom:722.800960pt;}
.y242{bottom:723.180000pt;}
.y64{bottom:725.650240pt;}
.y123{bottom:725.918560pt;}
.y47{bottom:727.360000pt;}
.y16c{bottom:727.538800pt;}
.y1c5{bottom:727.835280pt;}
.y1e9{bottom:728.157200pt;}
.y16{bottom:734.156080pt;}
.y20f{bottom:734.243600pt;}
.y9c{bottom:734.564960pt;}
.y14b{bottom:735.049120pt;}
.yf6{bottom:738.320000pt;}
.y241{bottom:738.780000pt;}
.ye{bottom:739.767920pt;}
.ycc{bottom:742.557680pt;}
.y122{bottom:744.160000pt;}
.y16b{bottom:745.780240pt;}
.y85{bottom:746.480000pt;}
.y196{bottom:751.685680pt;}
.y20e{bottom:752.397200pt;}
.y9b{bottom:752.806400pt;}
.y14a{bottom:753.290560pt;}
.y63{bottom:754.534960pt;}
.y1c4{bottom:756.720000pt;}
.y1e8{bottom:757.041920pt;}
.ycb{bottom:760.799120pt;}
.y240{bottom:762.384000pt;}
.y15{bottom:762.952960pt;}
.y16a{bottom:763.933840pt;}
.yf5{bottom:766.160000pt;}
.y195{bottom:769.927120pt;}
.y9a{bottom:770.960000pt;}
.y1c3{bottom:771.120000pt;}
.y149{bottom:771.444160pt;}
.y121{bottom:771.920000pt;}
.y84{bottom:775.120000pt;}
.y1e7{bottom:775.195520pt;}
.y23f{bottom:777.984000pt;}
.yd{bottom:780.960000pt;}
.y20d{bottom:781.281920pt;}
.y169{bottom:782.175280pt;}
.y62{bottom:783.331840pt;}
.y30{bottom:786.800000pt;}
.y194{bottom:788.080720pt;}
.y1bf{bottom:788.640000pt;}
.yca{bottom:789.683840pt;}
.y148{bottom:789.685600pt;}
.y1e6{bottom:793.436960pt;}
.y23e{bottom:793.584000pt;}
.yf4{bottom:797.614880pt;}
.y99{bottom:798.800000pt;}
.y20c{bottom:799.435520pt;}
.y168{bottom:800.328880pt;}
.y120{bottom:803.450160pt;}
.y233{bottom:803.461840pt;}
.y193{bottom:806.322160pt;}
.y1c2{bottom:808.640000pt;}
.y1e5{bottom:811.590560pt;}
.y83{bottom:811.680000pt;}
.y61{bottom:812.216560pt;}
.yf3{bottom:815.856320pt;}
.y23d{bottom:817.188000pt;}
.y20b{bottom:817.676960pt;}
.yc9{bottom:818.568560pt;}
.y147{bottom:818.570320pt;}
.y98{bottom:821.200000pt;}
.y11f{bottom:821.691600pt;}
.y232{bottom:832.346560pt;}
.y23c{bottom:832.788000pt;}
.yf2{bottom:834.009920pt;}
.y192{bottom:835.119040pt;}
.y20a{bottom:835.830560pt;}
.y146{bottom:836.723920pt;}
.y11e{bottom:839.845200pt;}
.y82{bottom:840.245440pt;}
.y1e4{bottom:840.475280pt;}
.y60{bottom:841.101280pt;}
.y1c1{bottom:842.400000pt;}
.yc8{bottom:847.365440pt;}
.y23b{bottom:848.388000pt;}
.y231{bottom:850.588000pt;}
.yf1{bottom:852.251360pt;}
.y97{bottom:852.729920pt;}
.y11d{bottom:858.086640pt;}
.y81{bottom:860.800000pt;}
.y191{bottom:864.003760pt;}
.y209{bottom:864.715280pt;}
.y145{bottom:865.608640pt;}
.y230{bottom:868.741600pt;}
.y1e3{bottom:869.371360pt;}
.y5f{bottom:869.986000pt;}
.yf0{bottom:870.404960pt;}
.y96{bottom:870.971360pt;}
.y23a{bottom:871.992000pt;}
.y1be{bottom:873.600000pt;}
.y11c{bottom:876.240240pt;}
.yc7{bottom:876.250160pt;}
.y190{bottom:882.245200pt;}
.y144{bottom:883.762240pt;}
.y22f{bottom:886.983040pt;}
.y1e2{bottom:887.524960pt;}
.y239{bottom:887.592000pt;}
.y8{bottom:888.399120pt;}
.yef{bottom:888.646400pt;}
.y95{bottom:889.124960pt;}
.y80{bottom:889.360000pt;}
.y1bd{bottom:891.200000pt;}
.y208{bottom:893.600000pt;}
.y5e{bottom:898.870720pt;}
.y18f{bottom:900.398800pt;}
.y143{bottom:902.003680pt;}
.y11b{bottom:905.124960pt;}
.yc6{bottom:905.134880pt;}
.y22e{bottom:905.136640pt;}
.y1e1{bottom:905.766400pt;}
.yee{bottom:906.803520pt;}
.y94{bottom:907.366400pt;}
.y206{bottom:908.000000pt;}
.y238{bottom:911.196000pt;}
.y167{bottom:912.646960pt;}
.y7f{bottom:918.005440pt;}
.y2c{bottom:918.640000pt;}
.y18e{bottom:918.640240pt;}
.y7{bottom:922.715280pt;}
.y11a{bottom:923.366400pt;}
.yc5{bottom:923.376320pt;}
.y22d{bottom:923.378080pt;}
.y1e0{bottom:923.920000pt;}
.yed{bottom:925.044960pt;}
.y93{bottom:925.523520pt;}
.y1bc{bottom:925.600000pt;}
.y237{bottom:926.796000pt;}
.y14{bottom:927.755440pt;}
.y207{bottom:928.000000pt;}
.y142{bottom:930.888400pt;}
.y2f{bottom:936.314880pt;}
.y7e{bottom:938.560000pt;}
.y119{bottom:941.524960pt;}
.yc4{bottom:941.529920pt;}
.y22c{bottom:941.531680pt;}
.y236{bottom:942.396000pt;}
.yec{bottom:943.198560pt;}
.y92{bottom:943.764960pt;}
.y18d{bottom:947.524960pt;}
.y141{bottom:949.042000pt;}
.y6{bottom:951.600000pt;}
.y1df{bottom:951.760000pt;}
.y13{bottom:956.552320pt;}
.y205{bottom:959.280000pt;}
.y118{bottom:959.766400pt;}
.yc3{bottom:959.771360pt;}
.y22b{bottom:959.773120pt;}
.y1b9{bottom:960.000000pt;}
.yeb{bottom:961.440000pt;}
.y91{bottom:961.918560pt;}
.y2e{bottom:962.560000pt;}
.y1{bottom:965.360000pt;}
.y18c{bottom:965.678560pt;}
.y235{bottom:966.000000pt;}
.y7d{bottom:967.120000pt;}
.y166{bottom:967.283440pt;}
.y1dd{bottom:976.800000pt;}
.yc2{bottom:977.924960pt;}
.y117{bottom:977.926720pt;}
.y90{bottom:980.160000pt;}
.y234{bottom:981.600000pt;}
.y18b{bottom:983.920000pt;}
.y12{bottom:985.437040pt;}
.yea{bottom:989.280000pt;}
.yc1{bottom:996.166400pt;}
.y116{bottom:996.168160pt;}
.y1de{bottom:996.800000pt;}
.y7c{bottom:1006.160000pt;}
.y8f{bottom:1008.960000pt;}
.ye9{bottom:1011.680000pt;}
.y11{bottom:1014.321760pt;}
.h3{height:12.720000pt;}
.h39{height:16.800000pt;}
.h37{height:16.878667pt;}
.h33{height:16.880000pt;}
.h1b{height:29.716875pt;}
.h4{height:32.193281pt;}
.h32{height:33.678667pt;}
.h2e{height:33.680000pt;}
.h31{height:33.760000pt;}
.h1d{height:34.945312pt;}
.h2b{height:37.440000pt;}
.h13{height:38.905781pt;}
.h1c{height:41.273438pt;}
.h2a{height:42.633281pt;}
.h3c{height:42.656250pt;}
.h6{height:44.320000pt;}
.ha{height:45.676800pt;}
.h1e{height:45.967094pt;}
.hf{height:46.593750pt;}
.h16{height:49.898240pt;}
.h15{height:49.920000pt;}
.h2{height:50.353594pt;}
.h2c{height:50.560000pt;}
.h3b{height:50.561333pt;}
.h35{height:50.640000pt;}
.h19{height:50.668161pt;}
.h28{height:50.672961pt;}
.h26{height:50.685121pt;}
.h23{height:50.688001pt;}
.h18{height:50.693761pt;}
.h25{height:50.699521pt;}
.h27{height:50.703361pt;}
.h36{height:50.707841pt;}
.h20{height:50.710401pt;}
.h22{height:50.719361pt;}
.h24{height:50.726401pt;}
.h1a{height:50.733441pt;}
.h17{height:50.739201pt;}
.h1f{height:50.746241pt;}
.h29{height:50.751361pt;}
.h21{height:50.752321pt;}
.h10{height:55.031250pt;}
.hc{height:58.156800pt;}
.h5{height:58.160320pt;}
.h11{height:64.111406pt;}
.h14{height:66.643200pt;}
.h2f{height:67.440000pt;}
.h7{height:74.880000pt;}
.h34{height:84.320000pt;}
.h38{height:84.401333pt;}
.h9{height:91.603200pt;}
.h2d{height:101.200000pt;}
.hb{height:104.160000pt;}
.hd{height:115.518667pt;}
.h3a{height:120.960000pt;}
.h30{height:121.040000pt;}
.h8{height:353.440000pt;}
.he{height:616.480000pt;}
.h12{height:656.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:81.440000pt;}
.w9{width:197.520000pt;}
.w7{width:222.080000pt;}
.w8{width:347.040000pt;}
.wa{width:405.360000pt;}
.w3{width:421.360000pt;}
.w5{width:444.000000pt;}
.w4{width:526.960000pt;}
.w6{width:588.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x4{left:9.600000pt;}
.xe{left:26.960000pt;}
.x22{left:30.880000pt;}
.x10{left:45.360000pt;}
.x5{left:94.480000pt;}
.x1f{left:102.000000pt;}
.xd{left:104.560000pt;}
.x19{left:109.120000pt;}
.x1a{left:118.320000pt;}
.x3{left:126.160000pt;}
.x1b{left:142.080000pt;}
.xf{left:161.040000pt;}
.x15{left:170.640000pt;}
.x8{left:171.840000pt;}
.x1d{left:188.805520pt;}
.x16{left:234.000000pt;}
.x13{left:260.640000pt;}
.x6{left:277.440000pt;}
.x12{left:278.400000pt;}
.x7{left:283.520000pt;}
.x1c{left:286.480000pt;}
.xa{left:294.080000pt;}
.x20{left:300.160000pt;}
.x9{left:312.480000pt;}
.x14{left:319.280000pt;}
.x1{left:321.200000pt;}
.x21{left:324.154960pt;}
.x23{left:344.560000pt;}
.x11{left:373.520000pt;}
.x17{left:384.480000pt;}
.x18{left:394.080000pt;}
.x2{left:425.993120pt;}
.xb{left:438.090800pt;}
.xc{left:552.492400pt;}
}




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