
    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_077cccc95f87aa047fd6a525.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.170000;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_16a72ceb49328a7c6527c02b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_87cddaeb88942883b5580ebf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.243000;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_5db5ebceedf513bea89307ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.169000;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_85ffacbf4cf9f431b30c2a73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.168000;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_63ffaf892e8279802ecb038f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.164000;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_592e9f302ab91212c2d40044.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_592e9f302ab91212c2d40044.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_0942258486556cf7a03d693d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.176000;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_eae3690dcfbed08e51a742cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.126000;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_eae3690dcfbed08e51a742cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.126000;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_eae3690dcfbed08e51a742cc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;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_d3a32d939626bbbc426a99bb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3b3ba6c25ffb9e2f48c592d6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c1f0ecaa365c4c9396b318f6.woff2')format("woff");}.fff{font-family:fff;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a9f6b03115b74c7db8fbc547.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.808105;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:ff11;src:url('chunks/assets/font_a449dd3bfed5d57a63893866.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.877930;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:ff12;src:url('chunks/assets/font_27541af003fd76d6a8ab1f74.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031000;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:ff13;src:url('chunks/assets/font_eae3690dcfbed08e51a742cc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.126000;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:ff14;src:url('chunks/assets/font_8d66ce57847051e99fb7600c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.184000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.983000px;}
.v1{vertical-align:19.980600px;}
.v4{vertical-align:32.977800px;}
.v5{vertical-align:65.955600px;}
.ls62{letter-spacing:-6.375000px;}
.ls65{letter-spacing:-5.508000px;}
.ls61{letter-spacing:-3.060000px;}
.ls18{letter-spacing:-2.538000px;}
.ls50{letter-spacing:-1.674000px;}
.ls5f{letter-spacing:-1.530000px;}
.lsb{letter-spacing:-1.428000px;}
.ls58{letter-spacing:-1.336512px;}
.ls5c{letter-spacing:-1.320000px;}
.ls64{letter-spacing:-1.275000px;}
.ls11{letter-spacing:-1.116000px;}
.ls5a{letter-spacing:-0.868733px;}
.ls1c{letter-spacing:-0.720000px;}
.ls63{letter-spacing:-0.663000px;}
.lse{letter-spacing:-0.600000px;}
.ls49{letter-spacing:-0.558000px;}
.ls19{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.510000px;}
.ls2d{letter-spacing:-0.480000px;}
.ls56{letter-spacing:-0.434366px;}
.lsd{letter-spacing:-0.420000px;}
.ls3e{letter-spacing:-0.414000px;}
.ls5b{letter-spacing:-0.367541px;}
.lsf{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls41{letter-spacing:-0.297330px;}
.ls1b{letter-spacing:-0.240000px;}
.ls42{letter-spacing:-0.223200px;}
.ls60{letter-spacing:-0.204000px;}
.ls53{letter-spacing:-0.200477px;}
.ls26{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.174900px;}
.ls1d{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.111600px;}
.ls51{letter-spacing:-0.104940px;}
.ls55{letter-spacing:-0.100238px;}
.ls27{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.055800px;}
.ls3f{letter-spacing:-0.034980px;}
.ls7{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000360px;}
.ls12{letter-spacing:0.022200px;}
.ls2f{letter-spacing:0.024480px;}
.ls2b{letter-spacing:0.028560px;}
.ls15{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.051000px;}
.ls4a{letter-spacing:0.055800px;}
.ls23{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.102000px;}
.ls3b{letter-spacing:0.104940px;}
.ls38{letter-spacing:0.111600px;}
.ls29{letter-spacing:0.120000px;}
.ls54{letter-spacing:0.133651px;}
.ls36{letter-spacing:0.139920px;}
.ls17{letter-spacing:0.167400px;}
.ls3d{letter-spacing:0.174900px;}
.ls20{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.223200px;}
.ls21{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.255000px;}
.ls37{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.300000px;}
.ls31{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.357000px;}
.ls2e{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.362700px;}
.ls5d{letter-spacing:0.390000px;}
.ls39{letter-spacing:0.390600px;}
.ls1f{letter-spacing:0.420000px;}
.ls30{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.510000px;}
.ls47{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.570000px;}
.ls2c{letter-spacing:0.600000px;}
.ls4c{letter-spacing:0.634843px;}
.ls13{letter-spacing:0.660000px;}
.ls52{letter-spacing:0.701669px;}
.ls28{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.732600px;}
.ls34{letter-spacing:0.780000px;}
.ls33{letter-spacing:0.840000px;}
.ls43{letter-spacing:0.900000px;}
.ls59{letter-spacing:0.902146px;}
.ls48{letter-spacing:0.918000px;}
.ls45{letter-spacing:0.960000px;}
.lsa{letter-spacing:0.969000px;}
.ls57{letter-spacing:1.002384px;}
.ls44{letter-spacing:1.020000px;}
.ls6{letter-spacing:1.080000px;}
.ls46{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls24{letter-spacing:1.320000px;}
.ls9{letter-spacing:1.326000px;}
.ls32{letter-spacing:1.380000px;}
.ls8{letter-spacing:1.530000px;}
.ls4{letter-spacing:2.295000px;}
.ls5e{letter-spacing:3.315000px;}
.ls4b{letter-spacing:81.059453px;}
.ls4f{letter-spacing:107.789693px;}
.ls4d{letter-spacing:123.393470px;}
.ls4e{letter-spacing:134.519933px;}
.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;}
}
.ws101{word-spacing:-14.586000px;}
.wsc2{word-spacing:-13.716000px;}
.ws1{word-spacing:-13.566000px;}
.ws24{word-spacing:-12.600000px;}
.wsae{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.240000px;}
.wsad{word-spacing:-12.060000px;}
.ws74{word-spacing:-11.997000px;}
.wsaf{word-spacing:-11.880000px;}
.wsba{word-spacing:-11.850000px;}
.ws58{word-spacing:-11.580000px;}
.ws8d{word-spacing:-11.520000px;}
.ws8e{word-spacing:-11.400000px;}
.ws93{word-spacing:-11.327400px;}
.ws25{word-spacing:-11.280000px;}
.ws9e{word-spacing:-11.220000px;}
.ws92{word-spacing:-11.160000px;}
.ws5a{word-spacing:-11.100000px;}
.ws102{word-spacing:-10.965000px;}
.ws59{word-spacing:-10.800000px;}
.ws23{word-spacing:-10.740000px;}
.ws2{word-spacing:-10.710000px;}
.ws22{word-spacing:-10.680000px;}
.ws10b{word-spacing:-10.302000px;}
.ws21{word-spacing:-10.260000px;}
.ws10c{word-spacing:-9.690000px;}
.ws103{word-spacing:-9.435000px;}
.ws4{word-spacing:-8.901000px;}
.ws94{word-spacing:-8.487000px;}
.ws104{word-spacing:-7.905000px;}
.ws91{word-spacing:-7.520700px;}
.ws7d{word-spacing:-7.485720px;}
.wse4{word-spacing:-7.451054px;}
.ws8f{word-spacing:-7.450740px;}
.ws3{word-spacing:-7.345800px;}
.wse0{word-spacing:-7.240860px;}
.ws90{word-spacing:-7.170900px;}
.ws10d{word-spacing:-5.457000px;}
.ws10a{word-spacing:-4.590000px;}
.ws111{word-spacing:-2.295000px;}
.ws71{word-spacing:-2.040000px;}
.ws60{word-spacing:-1.980000px;}
.ws2f{word-spacing:-1.920000px;}
.ws3b{word-spacing:-1.860000px;}
.ws9c{word-spacing:-1.841400px;}
.ws67{word-spacing:-1.800000px;}
.ws1d{word-spacing:-1.785600px;}
.ws5f{word-spacing:-1.740000px;}
.ws30{word-spacing:-1.680000px;}
.ws1c{word-spacing:-1.674000px;}
.wsb{word-spacing:-1.632000px;}
.ws68{word-spacing:-1.620000px;}
.ws89{word-spacing:-1.618200px;}
.ws9{word-spacing:-1.530000px;}
.wsf6{word-spacing:-1.503576px;}
.ws79{word-spacing:-1.500000px;}
.ws40{word-spacing:-1.440000px;}
.ws3d{word-spacing:-1.380000px;}
.wsa{word-spacing:-1.326000px;}
.ws107{word-spacing:-1.320000px;}
.ws14{word-spacing:-1.200000px;}
.ws9d{word-spacing:-1.171800px;}
.ws16{word-spacing:-1.140000px;}
.ws7{word-spacing:-1.080000px;}
.ws6c{word-spacing:-1.020000px;}
.wsaa{word-spacing:-1.004400px;}
.wsf3{word-spacing:-1.002384px;}
.wsa7{word-spacing:-0.960000px;}
.wsf7{word-spacing:-0.902146px;}
.ws1a{word-spacing:-0.900000px;}
.ws7c{word-spacing:-0.892800px;}
.ws39{word-spacing:-0.840000px;}
.ws1e{word-spacing:-0.781200px;}
.ws2b{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.754800px;}
.ws2c{word-spacing:-0.720000px;}
.ws109{word-spacing:-0.714000px;}
.wsf4{word-spacing:-0.701669px;}
.ws4d{word-spacing:-0.660000px;}
.wsf8{word-spacing:-0.634843px;}
.wsf0{word-spacing:-0.613800px;}
.wsb6{word-spacing:-0.600000px;}
.ws4c{word-spacing:-0.540000px;}
.ws100{word-spacing:-0.502200px;}
.wsfa{word-spacing:-0.501192px;}
.ws8c{word-spacing:-0.446400px;}
.ws33{word-spacing:-0.420000px;}
.ws98{word-spacing:-0.390600px;}
.ws45{word-spacing:-0.360000px;}
.wsab{word-spacing:-0.334800px;}
.wsa6{word-spacing:-0.300000px;}
.ws10f{word-spacing:-0.255000px;}
.ws34{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.223200px;}
.wsd{word-spacing:-0.204000px;}
.ws80{word-spacing:-0.180000px;}
.ws9b{word-spacing:-0.167400px;}
.ws51{word-spacing:-0.120000px;}
.ws4a{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.044400px;}
.ws8{word-spacing:0.000000px;}
.wsa8{word-spacing:0.034980px;}
.ws47{word-spacing:0.055800px;}
.wsb3{word-spacing:0.060000px;}
.wsf1{word-spacing:0.100238px;}
.ws99{word-spacing:0.111600px;}
.ws6b{word-spacing:0.180000px;}
.ws108{word-spacing:0.204000px;}
.ws1f{word-spacing:0.223200px;}
.ws62{word-spacing:0.240000px;}
.wsa9{word-spacing:0.297330px;}
.ws70{word-spacing:0.300000px;}
.wsb9{word-spacing:0.357000px;}
.ws3e{word-spacing:0.360000px;}
.ws57{word-spacing:0.390600px;}
.ws4b{word-spacing:0.420000px;}
.wsf2{word-spacing:0.434366px;}
.wsc{word-spacing:0.459000px;}
.wsf5{word-spacing:0.467779px;}
.ws2a{word-spacing:0.480000px;}
.wsc0{word-spacing:0.510000px;}
.ws29{word-spacing:0.540000px;}
.ws27{word-spacing:0.600000px;}
.ws37{word-spacing:0.660000px;}
.ws12{word-spacing:0.714000px;}
.ws72{word-spacing:0.720000px;}
.ws8b{word-spacing:0.725400px;}
.ws17{word-spacing:0.780000px;}
.wsac{word-spacing:0.837000px;}
.ws31{word-spacing:0.840000px;}
.wsf9{word-spacing:0.868733px;}
.ws32{word-spacing:0.900000px;}
.ws77{word-spacing:0.960000px;}
.ws61{word-spacing:1.020000px;}
.ws56{word-spacing:1.080000px;}
.ws3c{word-spacing:1.140000px;}
.ws4f{word-spacing:1.200000px;}
.ws52{word-spacing:1.260000px;}
.ws8a{word-spacing:1.283400px;}
.wse7{word-spacing:1.303099px;}
.ws41{word-spacing:1.320000px;}
.wsfe{word-spacing:1.380000px;}
.ws13{word-spacing:1.428000px;}
.ws38{word-spacing:1.440000px;}
.ws53{word-spacing:1.500000px;}
.wse{word-spacing:1.530000px;}
.ws35{word-spacing:1.560000px;}
.ws9a{word-spacing:1.562400px;}
.ws42{word-spacing:1.620000px;}
.wsf{word-spacing:1.632000px;}
.ws88{word-spacing:1.674000px;}
.ws28{word-spacing:1.680000px;}
.ws18{word-spacing:1.740000px;}
.ws46{word-spacing:1.785600px;}
.ws43{word-spacing:1.800000px;}
.ws3f{word-spacing:1.860000px;}
.ws15{word-spacing:1.920000px;}
.ws19{word-spacing:1.980000px;}
.ws7f{word-spacing:2.040000px;}
.ws10{word-spacing:2.091000px;}
.ws78{word-spacing:2.100000px;}
.ws3a{word-spacing:2.160000px;}
.ws64{word-spacing:2.280000px;}
.ws4e{word-spacing:2.340000px;}
.wsd9{word-spacing:2.343600px;}
.ws5e{word-spacing:2.400000px;}
.ws76{word-spacing:2.460000px;}
.ws7a{word-spacing:2.520000px;}
.ws2d{word-spacing:2.580000px;}
.wsff{word-spacing:2.640000px;}
.ws87{word-spacing:2.700000px;}
.ws11{word-spacing:2.805000px;}
.ws2e{word-spacing:2.820000px;}
.ws66{word-spacing:2.880000px;}
.ws96{word-spacing:3.000000px;}
.ws6a{word-spacing:3.060000px;}
.ws97{word-spacing:3.069000px;}
.ws49{word-spacing:3.120000px;}
.ws73{word-spacing:3.180000px;}
.ws6e{word-spacing:3.240000px;}
.ws6f{word-spacing:3.360000px;}
.ws69{word-spacing:3.480000px;}
.ws55{word-spacing:3.540000px;}
.ws6d{word-spacing:3.600000px;}
.ws5d{word-spacing:3.720000px;}
.ws7b{word-spacing:3.840000px;}
.ws85{word-spacing:3.900000px;}
.ws84{word-spacing:3.960000px;}
.ws44{word-spacing:4.080000px;}
.wsb8{word-spacing:4.440000px;}
.ws50{word-spacing:4.560000px;}
.ws86{word-spacing:4.680000px;}
.ws63{word-spacing:4.740000px;}
.wsbf{word-spacing:5.160000px;}
.ws106{word-spacing:5.220000px;}
.wsb7{word-spacing:5.400000px;}
.ws36{word-spacing:5.520000px;}
.ws5c{word-spacing:5.940000px;}
.ws83{word-spacing:6.240000px;}
.wsb2{word-spacing:6.480000px;}
.wsb5{word-spacing:6.600000px;}
.ws82{word-spacing:7.020000px;}
.wsb4{word-spacing:7.320000px;}
.ws54{word-spacing:10.980000px;}
.ws81{word-spacing:11.520000px;}
.wsc7{word-spacing:22.041000px;}
.wscb{word-spacing:28.011600px;}
.wsd1{word-spacing:28.625400px;}
.wsc1{word-spacing:30.690000px;}
.wse3{word-spacing:52.334469px;}
.ws1b{word-spacing:57.529800px;}
.wscc{word-spacing:60.989400px;}
.wsc9{word-spacing:61.603200px;}
.wsc6{word-spacing:74.325600px;}
.wseb{word-spacing:83.699064px;}
.wsed{word-spacing:97.040795px;}
.wsee{word-spacing:97.064184px;}
.wse6{word-spacing:103.746744px;}
.wse2{word-spacing:107.268453px;}
.wsec{word-spacing:110.429304px;}
.wse9{word-spacing:112.634549px;}
.wse8{word-spacing:112.644573px;}
.wse5{word-spacing:112.667962px;}
.wsb0{word-spacing:125.784000px;}
.wsea{word-spacing:128.251692px;}
.wsc4{word-spacing:139.790160px;}
.wsde{word-spacing:142.680600px;}
.wsd2{word-spacing:162.991800px;}
.wsc5{word-spacing:167.288400px;}
.wsc8{word-spacing:184.698000px;}
.wsfb{word-spacing:198.492000px;}
.wsda{word-spacing:225.599400px;}
.wsd4{word-spacing:230.677200px;}
.wsc3{word-spacing:234.415800px;}
.wse1{word-spacing:243.413448px;}
.wscf{word-spacing:248.979600px;}
.wsdd{word-spacing:259.023600px;}
.wsd5{word-spacing:263.822400px;}
.wsce{word-spacing:264.492000px;}
.wsd6{word-spacing:289.657800px;}
.wscd{word-spacing:293.954400px;}
.wsdf{word-spacing:296.800200px;}
.wsdb{word-spacing:308.908800px;}
.wsca{word-spacing:315.102600px;}
.wsd3{word-spacing:320.905800px;}
.wsdc{word-spacing:343.951200px;}
.wsd0{word-spacing:362.421000px;}
.wsbc{word-spacing:371.628000px;}
.wsbd{word-spacing:372.855600px;}
.wsa2{word-spacing:518.884200px;}
.wsa4{word-spacing:518.940000px;}
.wsa3{word-spacing:520.111800px;}
.wsa0{word-spacing:549.574200px;}
.wsa1{word-spacing:550.801800px;}
.ws9f{word-spacing:705.535200px;}
.wsd8{word-spacing:797.904000px;}
.ws105{word-spacing:798.282000px;}
.ws110{word-spacing:798.336000px;}
.wsfc{word-spacing:799.092000px;}
.ws26{word-spacing:801.684000px;}
.ws5b{word-spacing:802.278000px;}
.wsb1{word-spacing:802.872000px;}
.ws95{word-spacing:803.142000px;}
.ws75{word-spacing:804.762000px;}
.wsd7{word-spacing:932.232000px;}
.wsbb{word-spacing:936.770400px;}
.wsfd{word-spacing:1222.668000px;}
.ws10e{word-spacing:1222.884000px;}
.wsef{word-spacing:1228.392000px;}
.wsbe{word-spacing:1229.202000px;}
.ws7e{word-spacing:1230.606000px;}
.wsa5{word-spacing:1230.768000px;}
.ws65{word-spacing:1231.578000px;}
.ws48{word-spacing:1232.280000px;}
._29{margin-left:-1330.266000px;}
._14{margin-left:-805.589100px;}
._13{margin-left:-804.201900px;}
._9{margin-left:-802.590000px;}
._8{margin-left:-801.589800px;}
._6d{margin-left:-800.290800px;}
._36{margin-left:-798.854400px;}
._35{margin-left:-797.293800px;}
._42{margin-left:-696.822000px;}
._7{margin-left:-58.975800px;}
._34{margin-left:-32.479200px;}
._75{margin-left:-18.480000px;}
._4c{margin-left:-10.936800px;}
._4d{margin-left:-8.340600px;}
._76{margin-left:-7.257300px;}
._3{margin-left:-6.037200px;}
._5{margin-left:-4.028400px;}
._2{margin-left:-2.683800px;}
._1{margin-left:-1.058400px;}
._0{width:1.090800px;}
._4{width:2.300400px;}
._6{width:3.554700px;}
._a{width:4.970400px;}
._2d{width:6.125700px;}
._28{width:7.350000px;}
._16{width:11.103000px;}
._12{width:13.080000px;}
._74{width:16.020000px;}
._10{width:18.780000px;}
._11{width:20.100000px;}
._6e{width:21.300000px;}
._f{width:23.700000px;}
._27{width:26.671200px;}
._45{width:28.011600px;}
._4e{width:29.461800px;}
._51{width:31.374619px;}
._15{width:32.530800px;}
._1a{width:33.813600px;}
._18{width:34.873800px;}
._1b{width:36.716400px;}
._19{width:37.776000px;}
._17{width:39.729000px;}
._4f{width:44.818585px;}
._50{width:46.711094px;}
._d{width:49.605600px;}
._b{width:51.558000px;}
._c{width:53.344800px;}
._e{width:55.074000px;}
._70{width:69.120000px;}
._73{width:71.340000px;}
._6f{width:75.540000px;}
._57{width:82.730831px;}
._6c{width:86.869400px;}
._2b{width:91.044000px;}
._4a{width:94.023000px;}
._37{width:95.995440px;}
._3b{width:97.873200px;}
._39{width:101.505600px;}
._61{width:103.333741px;}
._54{width:105.462619px;}
._53{width:109.126205px;}
._5e{width:110.551133px;}
._56{width:112.145179px;}
._58{width:118.851128px;}
._2a{width:120.276000px;}
._69{width:122.383672px;}
._5c{width:123.427694px;}
._65{width:124.729982px;}
._55{width:127.715544px;}
._2c{width:134.568000px;}
._66{width:135.856445px;}
._5f{width:138.071713px;}
._5a{width:143.114555px;}
._49{width:149.263200px;}
._60{width:151.082203px;}
._43{width:154.900800px;}
._47{width:156.686400px;}
._41{width:173.538000px;}
._3a{width:180.568800px;}
._48{width:191.782800px;}
._4b{width:193.960800px;}
._6b{width:206.592758px;}
._2e{width:208.359000px;}
._72{width:217.602000px;}
._3c{width:223.758000px;}
._3d{width:232.795800px;}
._46{width:237.652200px;}
._3e{width:239.661000px;}
._71{width:241.416000px;}
._44{width:248.142600px;}
._62{width:273.440386px;}
._3f{width:277.102800px;}
._25{width:282.292200px;}
._40{width:290.829600px;}
._63{width:302.658091px;}
._5b{width:309.547762px;}
._26{width:315.894600px;}
._1f{width:317.892600px;}
._64{width:325.977101px;}
._5d{width:329.607235px;}
._59{width:356.638224px;}
._38{width:363.535200px;}
._1c{width:367.668000px;}
._22{width:373.249800px;}
._33{width:379.501200px;}
._6a{width:387.545256px;}
._31{width:407.289600px;}
._68{width:412.192934px;}
._20{width:419.013000px;}
._67{width:420.924485px;}
._52{width:467.735410px;}
._24{width:694.933200px;}
._21{width:710.278200px;}
._1d{width:799.619400px;}
._1e{width:802.296000px;}
._23{width:860.770800px;}
._32{width:914.338800px;}
._30{width:1014.555600px;}
._2f{width:1084.582800px;}
.fc4{color:transparent;}
.fc3{color:rgb(156,0,6);}
.fc2{color:rgb(63,63,63);}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:22.200000px;}
.fs9{font-size:29.733000px;}
.fsc{font-size:33.412800px;}
.fs5{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:41.400000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:2.226750px;}
.y10b{bottom:2.226900px;}
.y10f{bottom:2.227050px;}
.y109{bottom:2.227350px;}
.y106{bottom:2.227800px;}
.y104{bottom:2.227950px;}
.y101{bottom:2.228100px;}
.yfe{bottom:2.228250px;}
.yfb{bottom:2.228400px;}
.yf9{bottom:2.228550px;}
.y123{bottom:4.199100px;}
.yf7{bottom:6.682500px;}
.yf5{bottom:12.251250px;}
.yf6{bottom:17.820150px;}
.y23{bottom:90.567000px;}
.y60{bottom:90.567150px;}
.y12a{bottom:90.571350px;}
.y74{bottom:90.571500px;}
.y50{bottom:91.318050px;}
.y157{bottom:104.038200px;}
.y141{bottom:104.050950px;}
.y22{bottom:107.967000px;}
.y4b{bottom:107.967150px;}
.y82{bottom:107.967300px;}
.y49{bottom:107.971350px;}
.y4f{bottom:109.768050px;}
.ya9{bottom:114.160650px;}
.yd2{bottom:119.268450px;}
.y156{bottom:121.288950px;}
.y140{bottom:121.301700px;}
.y21{bottom:125.367000px;}
.y4a{bottom:125.367150px;}
.y73{bottom:125.371500px;}
.y5b{bottom:125.376000px;}
.y4e{bottom:128.218050px;}
.y155{bottom:138.539700px;}
.y13f{bottom:138.552450px;}
.y44{bottom:142.767150px;}
.y5a{bottom:142.771650px;}
.y1b1{bottom:146.389800px;}
.y184{bottom:146.428050px;}
.y4d{bottom:146.668050px;}
.y154{bottom:155.790450px;}
.y13e{bottom:155.803200px;}
.y43{bottom:160.167300px;}
.y5f{bottom:160.171650px;}
.yf3{bottom:160.176000px;}
.y1b0{bottom:163.640550px;}
.y183{bottom:163.678800px;}
.yc7{bottom:164.852850px;}
.yc6{bottom:164.866800px;}
.yc5{bottom:164.880750px;}
.y4c{bottom:165.118050px;}
.y20{bottom:165.118200px;}
.y153{bottom:173.041200px;}
.y13d{bottom:173.053950px;}
.yc4{bottom:173.139150px;}
.y5e{bottom:177.567300px;}
.yf2{bottom:177.571650px;}
.y1af{bottom:180.891300px;}
.y182{bottom:180.929550px;}
.y1f{bottom:183.568050px;}
.y152{bottom:190.291950px;}
.y13c{bottom:190.304700px;}
.y5d{bottom:194.967300px;}
.y72{bottom:194.967450px;}
.y1ae{bottom:198.142050px;}
.y181{bottom:198.180300px;}
.yc1{bottom:200.288550px;}
.yc2{bottom:200.355600px;}
.y1e{bottom:202.018050px;}
.y151{bottom:207.542700px;}
.y13b{bottom:207.555450px;}
.yc0{bottom:208.546950px;}
.y71{bottom:212.371800px;}
.y81{bottom:212.611350px;}
.y1ad{bottom:215.392800px;}
.y180{bottom:215.431050px;}
.yc3{bottom:216.858450px;}
.y124{bottom:217.502400px;}
.y1d{bottom:220.468050px;}
.y150{bottom:224.793450px;}
.y13a{bottom:224.806200px;}
.y70{bottom:229.767450px;}
.y1ac{bottom:232.643550px;}
.y17f{bottom:232.681800px;}
.y8a{bottom:232.945200px;}
.ybf{bottom:235.763400px;}
.ybe{bottom:235.777350px;}
.y80{bottom:237.978750px;}
.y1c{bottom:238.918050px;}
.y14f{bottom:242.044200px;}
.y139{bottom:242.056950px;}
.ybd{bottom:244.035750px;}
.yf1{bottom:245.864250px;}
.y6f{bottom:247.171800px;}
.y1ab{bottom:249.894300px;}
.y17e{bottom:249.932550px;}
.y7f{bottom:256.950750px;}
.y1b{bottom:257.368050px;}
.y14e{bottom:259.294950px;}
.y138{bottom:259.307700px;}
.y6e{bottom:264.567450px;}
.y1ec{bottom:266.788050px;}
.y1aa{bottom:267.145050px;}
.y17d{bottom:267.183300px;}
.y110{bottom:268.924500px;}
.ybc{bottom:271.252200px;}
.ybb{bottom:271.266150px;}
.y1a{bottom:275.818050px;}
.y7e{bottom:275.922750px;}
.y14d{bottom:276.545700px;}
.y137{bottom:276.558450px;}
.ya6{bottom:279.178500px;}
.yba{bottom:279.524550px;}
.y9c{bottom:279.829650px;}
.y10e{bottom:280.062000px;}
.y6d{bottom:281.976300px;}
.y1eb{bottom:284.038800px;}
.y1a9{bottom:284.395800px;}
.y17c{bottom:284.434050px;}
.y10c{bottom:290.643000px;}
.y14c{bottom:293.796450px;}
.y136{bottom:293.809200px;}
.y42{bottom:294.268050px;}
.y7d{bottom:294.894750px;}
.y6c{bottom:299.371950px;}
.y1ea{bottom:301.289550px;}
.y1a8{bottom:301.646550px;}
.y17b{bottom:301.684800px;}
.y10a{bottom:301.780500px;}
.yb7{bottom:306.671100px;}
.yb9{bottom:306.741000px;}
.yb8{bottom:306.754950px;}
.y14b{bottom:311.047200px;}
.y135{bottom:311.059950px;}
.y97{bottom:311.860050px;}
.y19{bottom:312.718050px;}
.y108{bottom:313.474500px;}
.y7c{bottom:313.866750px;}
.yb6{bottom:314.929500px;}
.y6b{bottom:316.767600px;}
.y1e9{bottom:318.540300px;}
.y1a7{bottom:318.897300px;}
.y17a{bottom:318.935550px;}
.y107{bottom:325.168500px;}
.y14a{bottom:328.297950px;}
.y134{bottom:328.310700px;}
.y41{bottom:331.168050px;}
.y7b{bottom:332.838750px;}
.y6a{bottom:334.172100px;}
.y1a6{bottom:336.148050px;}
.y179{bottom:336.186300px;}
.y105{bottom:336.306000px;}
.y96{bottom:337.282950px;}
.yb4{bottom:342.145950px;}
.y149{bottom:345.548700px;}
.y133{bottom:345.561450px;}
.y103{bottom:347.443500px;}
.y40{bottom:349.618050px;}
.yb3{bottom:350.404350px;}
.y69{bottom:351.567750px;}
.y7a{bottom:351.810750px;}
.y1e8{bottom:353.041800px;}
.y1a5{bottom:353.398800px;}
.y178{bottom:353.437050px;}
.y95{bottom:356.254950px;}
.y102{bottom:358.581000px;}
.yb5{bottom:358.648800px;}
.y148{bottom:362.799450px;}
.y132{bottom:362.812200px;}
.y3f{bottom:368.068050px;}
.y68{bottom:368.972100px;}
.y100{bottom:369.718500px;}
.y1e7{bottom:370.292550px;}
.y1a4{bottom:370.649550px;}
.y177{bottom:370.687800px;}
.y79{bottom:370.782750px;}
.y94{bottom:372.743850px;}
.y18{bottom:376.002300px;}
.yb2{bottom:377.620800px;}
.yb1{bottom:377.634750px;}
.y147{bottom:380.050200px;}
.y131{bottom:380.062950px;}
.yff{bottom:380.856000px;}
.yb0{bottom:385.893150px;}
.y67{bottom:386.367750px;}
.y3e{bottom:386.518050px;}
.y1e6{bottom:387.543300px;}
.y1a3{bottom:387.900300px;}
.y176{bottom:387.938550px;}
.y78{bottom:389.754750px;}
.y93{bottom:391.715850px;}
.yfd{bottom:391.993500px;}
.y17{bottom:393.253050px;}
.y146{bottom:397.300950px;}
.y130{bottom:397.313700px;}
.yfc{bottom:403.131000px;}
.y66{bottom:403.772250px;}
.y1e5{bottom:404.794050px;}
.y3d{bottom:404.968050px;}
.y1a2{bottom:405.151050px;}
.y175{bottom:405.189300px;}
.y77{bottom:408.726750px;}
.y92{bottom:410.687850px;}
.yaf{bottom:413.109600px;}
.yae{bottom:413.123550px;}
.yfa{bottom:414.268500px;}
.y145{bottom:414.551700px;}
.y12f{bottom:414.564450px;}
.y65{bottom:421.167900px;}
.yad{bottom:421.381950px;}
.y1a1{bottom:422.401800px;}
.y174{bottom:422.440050px;}
.y3c{bottom:423.418050px;}
.yf8{bottom:425.406000px;}
.y91{bottom:427.176750px;}
.y76{bottom:427.698750px;}
.y16{bottom:427.754550px;}
.y144{bottom:431.802450px;}
.y12e{bottom:431.815200px;}
.yf4{bottom:437.101500px;}
.y64{bottom:438.568050px;}
.y1a0{bottom:439.652550px;}
.y173{bottom:439.690800px;}
.y3b{bottom:441.868050px;}
.y15{bottom:445.005300px;}
.y90{bottom:446.148750px;}
.y75{bottom:446.670750px;}
.yac{bottom:448.598400px;}
.yab{bottom:448.612350px;}
.y143{bottom:449.053200px;}
.y12d{bottom:449.065950px;}
.y63{bottom:455.976600px;}
.y1e4{bottom:456.546300px;}
.y1cb{bottom:456.559050px;}
.yaa{bottom:456.870750px;}
.y19f{bottom:456.903300px;}
.y172{bottom:456.941550px;}
.y3a{bottom:460.318050px;}
.y8f{bottom:465.120750px;}
.y142{bottom:466.303950px;}
.y12c{bottom:466.316700px;}
.y111{bottom:471.890250px;}
.y62{bottom:473.372250px;}
.y1e3{bottom:473.797050px;}
.y1ca{bottom:473.809800px;}
.y19e{bottom:474.154050px;}
.y171{bottom:474.192300px;}
.y39{bottom:478.768050px;}
.y14{bottom:479.506800px;}
.y122{bottom:488.811000px;}
.y61{bottom:490.767900px;}
.y1e2{bottom:491.047800px;}
.y1c9{bottom:491.060550px;}
.y19d{bottom:491.404800px;}
.y170{bottom:491.443050px;}
.y13{bottom:496.757550px;}
.y38{bottom:497.218050px;}
.y12b{bottom:500.818200px;}
.y1e1{bottom:508.298550px;}
.y1c8{bottom:508.311300px;}
.y19c{bottom:508.655550px;}
.y16f{bottom:508.693800px;}
.y121{bottom:511.405650px;}
.y48{bottom:515.668050px;}
.y1e0{bottom:525.549300px;}
.y1c7{bottom:525.562050px;}
.y19b{bottom:525.906300px;}
.y16e{bottom:525.944550px;}
.y12{bottom:531.259050px;}
.y120{bottom:532.141950px;}
.y37{bottom:534.118050px;}
.y1df{bottom:542.800050px;}
.y1c6{bottom:542.812800px;}
.y19a{bottom:543.157050px;}
.y16d{bottom:543.195300px;}
.y11{bottom:548.509800px;}
.y47{bottom:552.568050px;}
.y11f{bottom:558.085950px;}
.y1de{bottom:560.050800px;}
.y1c5{bottom:560.063550px;}
.y199{bottom:560.407800px;}
.y16c{bottom:560.446050px;}
.y10{bottom:565.760550px;}
.y36{bottom:571.018050px;}
.yf0{bottom:576.740550px;}
.y1dd{bottom:577.301550px;}
.y1c4{bottom:577.314300px;}
.y198{bottom:577.658550px;}
.y16b{bottom:577.696800px;}
.yf{bottom:583.011300px;}
.y11e{bottom:584.041950px;}
.y46{bottom:589.468050px;}
.y1dc{bottom:594.552300px;}
.y1c3{bottom:594.565050px;}
.y197{bottom:594.909300px;}
.y16a{bottom:594.947550px;}
.ye{bottom:600.262050px;}
.yec{bottom:602.040300px;}
.yef{bottom:602.155200px;}
.yed{bottom:602.169150px;}
.y45{bottom:607.918050px;}
.y11d{bottom:609.985950px;}
.yeb{bottom:610.298700px;}
.y98{bottom:611.295750px;}
.y1db{bottom:611.803050px;}
.y1c2{bottom:611.815800px;}
.y196{bottom:612.160050px;}
.y169{bottom:612.198300px;}
.yd{bottom:617.512800px;}
.yee{bottom:618.672000px;}
.y9b{bottom:624.946500px;}
.y35{bottom:626.368050px;}
.y1da{bottom:629.053800px;}
.y1c1{bottom:629.066550px;}
.y195{bottom:629.410800px;}
.y168{bottom:629.449050px;}
.yc{bottom:634.763550px;}
.y11c{bottom:635.929950px;}
.yea{bottom:637.515150px;}
.ye9{bottom:637.529100px;}
.ya8{bottom:641.220900px;}
.yc8{bottom:644.390250px;}
.y34{bottom:644.818050px;}
.ye8{bottom:645.787500px;}
.y1d9{bottom:646.304550px;}
.y1c0{bottom:646.317300px;}
.y194{bottom:646.661550px;}
.y167{bottom:646.699800px;}
.yb{bottom:652.014300px;}
.ya7{bottom:653.820900px;}
.ya1{bottom:653.826150px;}
.y8e{bottom:654.890250px;}
.yd1{bottom:657.213000px;}
.y11b{bottom:661.873950px;}
.y33{bottom:663.268050px;}
.y5c{bottom:663.268200px;}
.y1d8{bottom:663.555300px;}
.y1bf{bottom:663.568050px;}
.y193{bottom:663.912300px;}
.y166{bottom:663.950550px;}
.ya0{bottom:666.888150px;}
.yd0{bottom:667.678350px;}
.ya{bottom:669.265050px;}
.y89{bottom:671.811000px;}
.ye7{bottom:673.003950px;}
.ye6{bottom:673.017900px;}
.y8d{bottom:679.139400px;}
.ycf{bottom:680.278350px;}
.y1d7{bottom:680.806050px;}
.y1be{bottom:680.818800px;}
.y192{bottom:681.163050px;}
.y165{bottom:681.201300px;}
.ye5{bottom:681.276300px;}
.y32{bottom:681.718050px;}
.y9{bottom:686.515800px;}
.y11a{bottom:687.817950px;}
.y8c{bottom:689.939400px;}
.yce{bottom:692.878350px;}
.y1d6{bottom:698.056800px;}
.y1bd{bottom:698.069550px;}
.y191{bottom:698.413800px;}
.y164{bottom:698.452050px;}
.y31{bottom:700.168050px;}
.y59{bottom:700.168200px;}
.y8b{bottom:700.739400px;}
.y8{bottom:703.766550px;}
.ycd{bottom:705.761850px;}
.y9f{bottom:706.536150px;}
.ye1{bottom:708.506700px;}
.y87{bottom:711.083700px;}
.y119{bottom:713.773950px;}
.y1d5{bottom:715.307550px;}
.y1bc{bottom:715.320300px;}
.y190{bottom:715.664550px;}
.y163{bottom:715.702800px;}
.ye4{bottom:716.737200px;}
.ye2{bottom:716.751150px;}
.y30{bottom:718.618050px;}
.y58{bottom:718.618200px;}
.y7{bottom:721.017300px;}
.ydf{bottom:725.009550px;}
.y1d4{bottom:732.558300px;}
.y1bb{bottom:732.571050px;}
.y18f{bottom:732.915300px;}
.y162{bottom:732.953550px;}
.ye3{bottom:733.254000px;}
.y2f{bottom:737.068050px;}
.y57{bottom:737.068200px;}
.y6{bottom:738.268050px;}
.y118{bottom:739.717950px;}
.ye0{bottom:741.512400px;}
.y9e{bottom:746.184150px;}
.y86{bottom:747.704700px;}
.y1d3{bottom:749.809050px;}
.y1ba{bottom:749.821800px;}
.y18e{bottom:750.166050px;}
.y161{bottom:750.204300px;}
.ycc{bottom:755.321850px;}
.y2e{bottom:755.518050px;}
.y56{bottom:755.518200px;}
.yde{bottom:760.470450px;}
.ydd{bottom:760.484400px;}
.y88{bottom:763.031100px;}
.y117{bottom:765.661950px;}
.y1d2{bottom:767.059800px;}
.y1b9{bottom:767.072550px;}
.y18d{bottom:767.416800px;}
.y160{bottom:767.455050px;}
.ydc{bottom:768.742800px;}
.y2d{bottom:773.968050px;}
.y55{bottom:773.968200px;}
.y1d1{bottom:784.310550px;}
.y1b8{bottom:784.323300px;}
.y85{bottom:784.325700px;}
.y18c{bottom:784.667550px;}
.y15f{bottom:784.705800px;}
.y9d{bottom:785.832150px;}
.y116{bottom:791.605950px;}
.y2c{bottom:792.418050px;}
.y54{bottom:792.418200px;}
.ya2{bottom:795.603150px;}
.ydb{bottom:795.959250px;}
.y1d0{bottom:801.561300px;}
.y1b7{bottom:801.574050px;}
.y18b{bottom:801.918300px;}
.y15e{bottom:801.956550px;}
.y5{bottom:802.703550px;}
.yda{bottom:804.217650px;}
.ycb{bottom:804.881850px;}
.y2b{bottom:810.868050px;}
.y53{bottom:810.868200px;}
.ya5{bottom:815.205150px;}
.y115{bottom:817.549950px;}
.y1cf{bottom:818.812050px;}
.y1b6{bottom:818.824800px;}
.y18a{bottom:819.169050px;}
.y15d{bottom:819.207300px;}
.y84{bottom:820.946700px;}
.y99{bottom:825.480150px;}
.ya4{bottom:828.831150px;}
.y2a{bottom:829.318050px;}
.y52{bottom:829.318200px;}
.yd8{bottom:831.434100px;}
.y1ce{bottom:836.062800px;}
.y1b5{bottom:836.075550px;}
.y189{bottom:836.419800px;}
.y15c{bottom:836.458050px;}
.yd9{bottom:839.678550px;}
.y114{bottom:843.505950px;}
.y4{bottom:845.327700px;}
.y29{bottom:847.768050px;}
.y51{bottom:847.768200px;}
.yd6{bottom:847.936950px;}
.y129{bottom:851.797200px;}
.y1cd{bottom:853.313550px;}
.y1b4{bottom:853.326300px;}
.y188{bottom:853.670550px;}
.y15b{bottom:853.708800px;}
.yc9{bottom:854.441850px;}
.y25{bottom:857.391000px;}
.y83{bottom:857.567700px;}
.y128{bottom:863.047200px;}
.yd7{bottom:864.439800px;}
.y24{bottom:864.889050px;}
.y9a{bottom:865.128150px;}
.y28{bottom:866.218050px;}
.y113{bottom:869.449950px;}
.y1cc{bottom:870.564300px;}
.y1b3{bottom:870.577050px;}
.y3{bottom:870.815700px;}
.y187{bottom:870.921300px;}
.y15a{bottom:870.959550px;}
.y127{bottom:874.297200px;}
.yd5{bottom:883.411800px;}
.yd4{bottom:883.425750px;}
.y27{bottom:884.668050px;}
.y126{bottom:885.547200px;}
.ya3{bottom:887.727150px;}
.y186{bottom:888.172050px;}
.y159{bottom:888.210300px;}
.yd3{bottom:891.684150px;}
.y112{bottom:895.393950px;}
.y2{bottom:896.303700px;}
.y125{bottom:896.797200px;}
.y26{bottom:903.118050px;}
.yca{bottom:904.001850px;}
.y1b2{bottom:905.078550px;}
.y185{bottom:905.422800px;}
.y158{bottom:905.461050px;}
.y1{bottom:955.942350px;}
.h27{height:10.023000px;}
.h26{height:10.579500px;}
.h24{height:10.581000px;}
.h22{height:11.137500px;}
.hb{height:15.295800px;}
.h23{height:22.873411px;}
.h25{height:23.379171px;}
.h21{height:27.555771px;}
.h20{height:30.628500px;}
.h10{height:30.960000px;}
.h12{height:36.120000px;}
.h28{height:36.480000px;}
.h2a{height:41.280000px;}
.h2c{height:45.543000px;}
.h2b{height:46.104000px;}
.hf{height:46.308000px;}
.h5{height:48.195000px;}
.h6{height:49.827000px;}
.h1c{height:49.829400px;}
.ha{height:50.443200px;}
.h13{height:50.487600px;}
.he{height:50.666400px;}
.h2{height:51.138000px;}
.hd{height:53.880000px;}
.h7{height:56.700000px;}
.hc{height:56.820000px;}
.h8{height:58.620000px;}
.h9{height:58.620600px;}
.h4{height:68.184000px;}
.h19{height:82.807200px;}
.h14{height:83.421000px;}
.h16{height:83.644200px;}
.h3{height:90.720000px;}
.h1d{height:115.785000px;}
.h1b{height:116.097600px;}
.h1a{height:116.164800px;}
.h1f{height:116.344800px;}
.h18{height:116.398800px;}
.h17{height:116.622000px;}
.h11{height:241.711500px;}
.h1e{height:266.811000px;}
.h15{height:288.597000px;}
.h29{height:436.264500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w6{width:35.085000px;}
.w7{width:46.782000px;}
.w3{width:437.482500px;}
.w4{width:451.066500px;}
.w5{width:540.754500px;}
.w8{width:546.771000px;}
.w2{width:548.503500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x48{left:-2.228400px;}
.x0{left:0.000000px;}
.x44{left:1.113900px;}
.x47{left:3.342300px;}
.x43{left:4.455300px;}
.x2b{left:8.766450px;}
.x46{left:10.582050px;}
.x1b{left:16.622100px;}
.x8{left:25.310100px;}
.x7{left:28.379250px;}
.x41{left:43.995150px;}
.xe{left:70.158000px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x40{left:84.285000px;}
.xb{left:88.120500px;}
.xc{left:90.118500px;}
.x6{left:93.531450px;}
.x34{left:94.588800px;}
.x1a{left:96.648600px;}
.x1c{left:98.979600px;}
.x2c{left:100.346550px;}
.x2{left:102.041700px;}
.xd{left:103.645500px;}
.x35{left:106.380300px;}
.x39{left:108.850350px;}
.x51{left:111.597900px;}
.x1d{left:114.761100px;}
.x54{left:123.302250px;}
.x10{left:127.634550px;}
.x4e{left:138.549900px;}
.x1e{left:146.450100px;}
.x1f{left:150.909450px;}
.x4d{left:154.965900px;}
.x4c{left:156.429900px;}
.x4f{left:161.961900px;}
.x4b{left:166.173900px;}
.x50{left:172.053900px;}
.x4a{left:178.485900px;}
.x31{left:187.966500px;}
.x2d{left:190.351950px;}
.x32{left:196.001700px;}
.x3a{left:198.855750px;}
.x49{left:201.825900px;}
.x3c{left:204.477600px;}
.x24{left:214.468500px;}
.x23{left:217.923000px;}
.x20{left:227.949450px;}
.x30{left:244.924350px;}
.x11{left:246.515550px;}
.x3e{left:253.456050px;}
.x12{left:258.233550px;}
.xa{left:282.051300px;}
.x25{left:287.832000px;}
.x26{left:289.365000px;}
.x36{left:293.973300px;}
.x9{left:299.321400px;}
.x21{left:306.546450px;}
.x13{left:316.949550px;}
.x14{left:327.650550px;}
.x52{left:337.573200px;}
.x55{left:353.472000px;}
.x33{left:357.169050px;}
.x57{left:361.969050px;}
.x28{left:363.547500px;}
.x3f{left:365.711700px;}
.x27{left:373.144500px;}
.x56{left:374.719050px;}
.x15{left:377.132550px;}
.xf{left:384.694200px;}
.x22{left:386.664450px;}
.x38{left:412.413300px;}
.x37{left:414.912300px;}
.x29{left:453.238500px;}
.x2a{left:461.250000px;}
.x2e{left:480.414300px;}
.x3b{left:488.918100px;}
.x42{left:499.740000px;}
.x16{left:503.384550px;}
.x17{left:515.102550px;}
.x2f{left:519.474300px;}
.x3d{left:527.978100px;}
.x53{left:530.394000px;}
.x45{left:535.381500px;}
.x18{left:573.692550px;}
.x19{left:584.393550px;}
.x4{left:650.349450px;}
.x3{left:653.418600px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.096000pt;}
.v1{vertical-align:17.760533pt;}
.v4{vertical-align:29.313600pt;}
.v5{vertical-align:58.627200pt;}
.ls62{letter-spacing:-5.666667pt;}
.ls65{letter-spacing:-4.896000pt;}
.ls61{letter-spacing:-2.720000pt;}
.ls18{letter-spacing:-2.256000pt;}
.ls50{letter-spacing:-1.488000pt;}
.ls5f{letter-spacing:-1.360000pt;}
.lsb{letter-spacing:-1.269333pt;}
.ls58{letter-spacing:-1.188011pt;}
.ls5c{letter-spacing:-1.173333pt;}
.ls64{letter-spacing:-1.133333pt;}
.ls11{letter-spacing:-0.992000pt;}
.ls5a{letter-spacing:-0.772207pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls63{letter-spacing:-0.589333pt;}
.lse{letter-spacing:-0.533333pt;}
.ls49{letter-spacing:-0.496000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.453333pt;}
.ls2d{letter-spacing:-0.426667pt;}
.ls56{letter-spacing:-0.386103pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls3e{letter-spacing:-0.368000pt;}
.ls5b{letter-spacing:-0.326703pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls41{letter-spacing:-0.264293pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls42{letter-spacing:-0.198400pt;}
.ls60{letter-spacing:-0.181333pt;}
.ls53{letter-spacing:-0.178202pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.155467pt;}
.ls1d{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.099200pt;}
.ls51{letter-spacing:-0.093280pt;}
.ls55{letter-spacing:-0.089101pt;}
.ls27{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.049600pt;}
.ls3f{letter-spacing:-0.031093pt;}
.ls7{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000320pt;}
.ls12{letter-spacing:0.019733pt;}
.ls2f{letter-spacing:0.021760pt;}
.ls2b{letter-spacing:0.025387pt;}
.ls15{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.045333pt;}
.ls4a{letter-spacing:0.049600pt;}
.ls23{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.090667pt;}
.ls3b{letter-spacing:0.093280pt;}
.ls38{letter-spacing:0.099200pt;}
.ls29{letter-spacing:0.106667pt;}
.ls54{letter-spacing:0.118801pt;}
.ls36{letter-spacing:0.124373pt;}
.ls17{letter-spacing:0.148800pt;}
.ls3d{letter-spacing:0.155467pt;}
.ls20{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.198400pt;}
.ls21{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.226667pt;}
.ls37{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls31{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.317333pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.322400pt;}
.ls5d{letter-spacing:0.346667pt;}
.ls39{letter-spacing:0.347200pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls30{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.453333pt;}
.ls47{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.506667pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls4c{letter-spacing:0.564305pt;}
.ls13{letter-spacing:0.586667pt;}
.ls52{letter-spacing:0.623706pt;}
.ls28{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.651200pt;}
.ls34{letter-spacing:0.693333pt;}
.ls33{letter-spacing:0.746667pt;}
.ls43{letter-spacing:0.800000pt;}
.ls59{letter-spacing:0.801907pt;}
.ls48{letter-spacing:0.816000pt;}
.ls45{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.861333pt;}
.ls57{letter-spacing:0.891008pt;}
.ls44{letter-spacing:0.906667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls46{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls24{letter-spacing:1.173333pt;}
.ls9{letter-spacing:1.178667pt;}
.ls32{letter-spacing:1.226667pt;}
.ls8{letter-spacing:1.360000pt;}
.ls4{letter-spacing:2.040000pt;}
.ls5e{letter-spacing:2.946667pt;}
.ls4b{letter-spacing:72.052847pt;}
.ls4f{letter-spacing:95.813060pt;}
.ls4d{letter-spacing:109.683085pt;}
.ls4e{letter-spacing:119.573274pt;}
.ws101{word-spacing:-12.965333pt;}
.wsc2{word-spacing:-12.192000pt;}
.ws1{word-spacing:-12.058667pt;}
.ws24{word-spacing:-11.200000pt;}
.wsae{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.880000pt;}
.wsad{word-spacing:-10.720000pt;}
.ws74{word-spacing:-10.664000pt;}
.wsaf{word-spacing:-10.560000pt;}
.wsba{word-spacing:-10.533333pt;}
.ws58{word-spacing:-10.293333pt;}
.ws8d{word-spacing:-10.240000pt;}
.ws8e{word-spacing:-10.133333pt;}
.ws93{word-spacing:-10.068800pt;}
.ws25{word-spacing:-10.026667pt;}
.ws9e{word-spacing:-9.973333pt;}
.ws92{word-spacing:-9.920000pt;}
.ws5a{word-spacing:-9.866667pt;}
.ws102{word-spacing:-9.746667pt;}
.ws59{word-spacing:-9.600000pt;}
.ws23{word-spacing:-9.546667pt;}
.ws2{word-spacing:-9.520000pt;}
.ws22{word-spacing:-9.493333pt;}
.ws10b{word-spacing:-9.157333pt;}
.ws21{word-spacing:-9.120000pt;}
.ws10c{word-spacing:-8.613333pt;}
.ws103{word-spacing:-8.386667pt;}
.ws4{word-spacing:-7.912000pt;}
.ws94{word-spacing:-7.544000pt;}
.ws104{word-spacing:-7.026667pt;}
.ws91{word-spacing:-6.685067pt;}
.ws7d{word-spacing:-6.653973pt;}
.wse4{word-spacing:-6.623159pt;}
.ws8f{word-spacing:-6.622880pt;}
.ws3{word-spacing:-6.529600pt;}
.wse0{word-spacing:-6.436320pt;}
.ws90{word-spacing:-6.374133pt;}
.ws10d{word-spacing:-4.850667pt;}
.ws10a{word-spacing:-4.080000pt;}
.ws111{word-spacing:-2.040000pt;}
.ws71{word-spacing:-1.813333pt;}
.ws60{word-spacing:-1.760000pt;}
.ws2f{word-spacing:-1.706667pt;}
.ws3b{word-spacing:-1.653333pt;}
.ws9c{word-spacing:-1.636800pt;}
.ws67{word-spacing:-1.600000pt;}
.ws1d{word-spacing:-1.587200pt;}
.ws5f{word-spacing:-1.546667pt;}
.ws30{word-spacing:-1.493333pt;}
.ws1c{word-spacing:-1.488000pt;}
.wsb{word-spacing:-1.450667pt;}
.ws68{word-spacing:-1.440000pt;}
.ws89{word-spacing:-1.438400pt;}
.ws9{word-spacing:-1.360000pt;}
.wsf6{word-spacing:-1.336512pt;}
.ws79{word-spacing:-1.333333pt;}
.ws40{word-spacing:-1.280000pt;}
.ws3d{word-spacing:-1.226667pt;}
.wsa{word-spacing:-1.178667pt;}
.ws107{word-spacing:-1.173333pt;}
.ws14{word-spacing:-1.066667pt;}
.ws9d{word-spacing:-1.041600pt;}
.ws16{word-spacing:-1.013333pt;}
.ws7{word-spacing:-0.960000pt;}
.ws6c{word-spacing:-0.906667pt;}
.wsaa{word-spacing:-0.892800pt;}
.wsf3{word-spacing:-0.891008pt;}
.wsa7{word-spacing:-0.853333pt;}
.wsf7{word-spacing:-0.801907pt;}
.ws1a{word-spacing:-0.800000pt;}
.ws7c{word-spacing:-0.793600pt;}
.ws39{word-spacing:-0.746667pt;}
.ws1e{word-spacing:-0.694400pt;}
.ws2b{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.670933pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws109{word-spacing:-0.634667pt;}
.wsf4{word-spacing:-0.623706pt;}
.ws4d{word-spacing:-0.586667pt;}
.wsf8{word-spacing:-0.564305pt;}
.wsf0{word-spacing:-0.545600pt;}
.wsb6{word-spacing:-0.533333pt;}
.ws4c{word-spacing:-0.480000pt;}
.ws100{word-spacing:-0.446400pt;}
.wsfa{word-spacing:-0.445504pt;}
.ws8c{word-spacing:-0.396800pt;}
.ws33{word-spacing:-0.373333pt;}
.ws98{word-spacing:-0.347200pt;}
.ws45{word-spacing:-0.320000pt;}
.wsab{word-spacing:-0.297600pt;}
.wsa6{word-spacing:-0.266667pt;}
.ws10f{word-spacing:-0.226667pt;}
.ws34{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.198400pt;}
.wsd{word-spacing:-0.181333pt;}
.ws80{word-spacing:-0.160000pt;}
.ws9b{word-spacing:-0.148800pt;}
.ws51{word-spacing:-0.106667pt;}
.ws4a{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.039467pt;}
.ws8{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.031093pt;}
.ws47{word-spacing:0.049600pt;}
.wsb3{word-spacing:0.053333pt;}
.wsf1{word-spacing:0.089101pt;}
.ws99{word-spacing:0.099200pt;}
.ws6b{word-spacing:0.160000pt;}
.ws108{word-spacing:0.181333pt;}
.ws1f{word-spacing:0.198400pt;}
.ws62{word-spacing:0.213333pt;}
.wsa9{word-spacing:0.264293pt;}
.ws70{word-spacing:0.266667pt;}
.wsb9{word-spacing:0.317333pt;}
.ws3e{word-spacing:0.320000pt;}
.ws57{word-spacing:0.347200pt;}
.ws4b{word-spacing:0.373333pt;}
.wsf2{word-spacing:0.386103pt;}
.wsc{word-spacing:0.408000pt;}
.wsf5{word-spacing:0.415804pt;}
.ws2a{word-spacing:0.426667pt;}
.wsc0{word-spacing:0.453333pt;}
.ws29{word-spacing:0.480000pt;}
.ws27{word-spacing:0.533333pt;}
.ws37{word-spacing:0.586667pt;}
.ws12{word-spacing:0.634667pt;}
.ws72{word-spacing:0.640000pt;}
.ws8b{word-spacing:0.644800pt;}
.ws17{word-spacing:0.693333pt;}
.wsac{word-spacing:0.744000pt;}
.ws31{word-spacing:0.746667pt;}
.wsf9{word-spacing:0.772207pt;}
.ws32{word-spacing:0.800000pt;}
.ws77{word-spacing:0.853333pt;}
.ws61{word-spacing:0.906667pt;}
.ws56{word-spacing:0.960000pt;}
.ws3c{word-spacing:1.013333pt;}
.ws4f{word-spacing:1.066667pt;}
.ws52{word-spacing:1.120000pt;}
.ws8a{word-spacing:1.140800pt;}
.wse7{word-spacing:1.158310pt;}
.ws41{word-spacing:1.173333pt;}
.wsfe{word-spacing:1.226667pt;}
.ws13{word-spacing:1.269333pt;}
.ws38{word-spacing:1.280000pt;}
.ws53{word-spacing:1.333333pt;}
.wse{word-spacing:1.360000pt;}
.ws35{word-spacing:1.386667pt;}
.ws9a{word-spacing:1.388800pt;}
.ws42{word-spacing:1.440000pt;}
.wsf{word-spacing:1.450667pt;}
.ws88{word-spacing:1.488000pt;}
.ws28{word-spacing:1.493333pt;}
.ws18{word-spacing:1.546667pt;}
.ws46{word-spacing:1.587200pt;}
.ws43{word-spacing:1.600000pt;}
.ws3f{word-spacing:1.653333pt;}
.ws15{word-spacing:1.706667pt;}
.ws19{word-spacing:1.760000pt;}
.ws7f{word-spacing:1.813333pt;}
.ws10{word-spacing:1.858667pt;}
.ws78{word-spacing:1.866667pt;}
.ws3a{word-spacing:1.920000pt;}
.ws64{word-spacing:2.026667pt;}
.ws4e{word-spacing:2.080000pt;}
.wsd9{word-spacing:2.083200pt;}
.ws5e{word-spacing:2.133333pt;}
.ws76{word-spacing:2.186667pt;}
.ws7a{word-spacing:2.240000pt;}
.ws2d{word-spacing:2.293333pt;}
.wsff{word-spacing:2.346667pt;}
.ws87{word-spacing:2.400000pt;}
.ws11{word-spacing:2.493333pt;}
.ws2e{word-spacing:2.506667pt;}
.ws66{word-spacing:2.560000pt;}
.ws96{word-spacing:2.666667pt;}
.ws6a{word-spacing:2.720000pt;}
.ws97{word-spacing:2.728000pt;}
.ws49{word-spacing:2.773333pt;}
.ws73{word-spacing:2.826667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws6f{word-spacing:2.986667pt;}
.ws69{word-spacing:3.093333pt;}
.ws55{word-spacing:3.146667pt;}
.ws6d{word-spacing:3.200000pt;}
.ws5d{word-spacing:3.306667pt;}
.ws7b{word-spacing:3.413333pt;}
.ws85{word-spacing:3.466667pt;}
.ws84{word-spacing:3.520000pt;}
.ws44{word-spacing:3.626667pt;}
.wsb8{word-spacing:3.946667pt;}
.ws50{word-spacing:4.053333pt;}
.ws86{word-spacing:4.160000pt;}
.ws63{word-spacing:4.213333pt;}
.wsbf{word-spacing:4.586667pt;}
.ws106{word-spacing:4.640000pt;}
.wsb7{word-spacing:4.800000pt;}
.ws36{word-spacing:4.906667pt;}
.ws5c{word-spacing:5.280000pt;}
.ws83{word-spacing:5.546667pt;}
.wsb2{word-spacing:5.760000pt;}
.wsb5{word-spacing:5.866667pt;}
.ws82{word-spacing:6.240000pt;}
.wsb4{word-spacing:6.506667pt;}
.ws54{word-spacing:9.760000pt;}
.ws81{word-spacing:10.240000pt;}
.wsc7{word-spacing:19.592000pt;}
.wscb{word-spacing:24.899200pt;}
.wsd1{word-spacing:25.444800pt;}
.wsc1{word-spacing:27.280000pt;}
.wse3{word-spacing:46.519528pt;}
.ws1b{word-spacing:51.137600pt;}
.wscc{word-spacing:54.212800pt;}
.wsc9{word-spacing:54.758400pt;}
.wsc6{word-spacing:66.067200pt;}
.wseb{word-spacing:74.399168pt;}
.wsed{word-spacing:86.258484pt;}
.wsee{word-spacing:86.279275pt;}
.wse6{word-spacing:92.219328pt;}
.wse2{word-spacing:95.349736pt;}
.wsec{word-spacing:98.159381pt;}
.wse9{word-spacing:100.119599pt;}
.wse8{word-spacing:100.128509pt;}
.wse5{word-spacing:100.149299pt;}
.wsb0{word-spacing:111.808000pt;}
.wsea{word-spacing:114.001504pt;}
.wsc4{word-spacing:124.257920pt;}
.wsde{word-spacing:126.827200pt;}
.wsd2{word-spacing:144.881600pt;}
.wsc5{word-spacing:148.700800pt;}
.wsc8{word-spacing:164.176000pt;}
.wsfb{word-spacing:176.437333pt;}
.wsda{word-spacing:200.532800pt;}
.wsd4{word-spacing:205.046400pt;}
.wsc3{word-spacing:208.369600pt;}
.wse1{word-spacing:216.367509pt;}
.wscf{word-spacing:221.315200pt;}
.wsdd{word-spacing:230.243200pt;}
.wsd5{word-spacing:234.508800pt;}
.wsce{word-spacing:235.104000pt;}
.wsd6{word-spacing:257.473600pt;}
.wscd{word-spacing:261.292800pt;}
.wsdf{word-spacing:263.822400pt;}
.wsdb{word-spacing:274.585600pt;}
.wsca{word-spacing:280.091200pt;}
.wsd3{word-spacing:285.249600pt;}
.wsdc{word-spacing:305.734400pt;}
.wsd0{word-spacing:322.152000pt;}
.wsbc{word-spacing:330.336000pt;}
.wsbd{word-spacing:331.427200pt;}
.wsa2{word-spacing:461.230400pt;}
.wsa4{word-spacing:461.280000pt;}
.wsa3{word-spacing:462.321600pt;}
.wsa0{word-spacing:488.510400pt;}
.wsa1{word-spacing:489.601600pt;}
.ws9f{word-spacing:627.142400pt;}
.wsd8{word-spacing:709.248000pt;}
.ws105{word-spacing:709.584000pt;}
.ws110{word-spacing:709.632000pt;}
.wsfc{word-spacing:710.304000pt;}
.ws26{word-spacing:712.608000pt;}
.ws5b{word-spacing:713.136000pt;}
.wsb1{word-spacing:713.664000pt;}
.ws95{word-spacing:713.904000pt;}
.ws75{word-spacing:715.344000pt;}
.wsd7{word-spacing:828.650667pt;}
.wsbb{word-spacing:832.684800pt;}
.wsfd{word-spacing:1086.816000pt;}
.ws10e{word-spacing:1087.008000pt;}
.wsef{word-spacing:1091.904000pt;}
.wsbe{word-spacing:1092.624000pt;}
.ws7e{word-spacing:1093.872000pt;}
.wsa5{word-spacing:1094.016000pt;}
.ws65{word-spacing:1094.736000pt;}
.ws48{word-spacing:1095.360000pt;}
._29{margin-left:-1182.458667pt;}
._14{margin-left:-716.079200pt;}
._13{margin-left:-714.846133pt;}
._9{margin-left:-713.413333pt;}
._8{margin-left:-712.524267pt;}
._6d{margin-left:-711.369600pt;}
._36{margin-left:-710.092800pt;}
._35{margin-left:-708.705600pt;}
._42{margin-left:-619.397333pt;}
._7{margin-left:-52.422933pt;}
._34{margin-left:-28.870400pt;}
._75{margin-left:-16.426667pt;}
._4c{margin-left:-9.721600pt;}
._4d{margin-left:-7.413867pt;}
._76{margin-left:-6.450933pt;}
._3{margin-left:-5.366400pt;}
._5{margin-left:-3.580800pt;}
._2{margin-left:-2.385600pt;}
._1{margin-left:-0.940800pt;}
._0{width:0.969600pt;}
._4{width:2.044800pt;}
._6{width:3.159733pt;}
._a{width:4.418133pt;}
._2d{width:5.445067pt;}
._28{width:6.533333pt;}
._16{width:9.869333pt;}
._12{width:11.626667pt;}
._74{width:14.240000pt;}
._10{width:16.693333pt;}
._11{width:17.866667pt;}
._6e{width:18.933333pt;}
._f{width:21.066667pt;}
._27{width:23.707733pt;}
._45{width:24.899200pt;}
._4e{width:26.188267pt;}
._51{width:27.888550pt;}
._15{width:28.916267pt;}
._1a{width:30.056533pt;}
._18{width:30.998933pt;}
._1b{width:32.636800pt;}
._19{width:33.578667pt;}
._17{width:35.314667pt;}
._4f{width:39.838743pt;}
._50{width:41.520973pt;}
._d{width:44.093867pt;}
._b{width:45.829333pt;}
._c{width:47.417600pt;}
._e{width:48.954667pt;}
._70{width:61.440000pt;}
._73{width:63.413333pt;}
._6f{width:67.146667pt;}
._57{width:73.538516pt;}
._6c{width:77.217244pt;}
._2b{width:80.928000pt;}
._4a{width:83.576000pt;}
._37{width:85.329280pt;}
._3b{width:86.998400pt;}
._39{width:90.227200pt;}
._61{width:91.852214pt;}
._54{width:93.744550pt;}
._53{width:97.001071pt;}
._5e{width:98.267674pt;}
._56{width:99.684604pt;}
._58{width:105.645447pt;}
._2a{width:106.912000pt;}
._69{width:108.785486pt;}
._5c{width:109.713506pt;}
._65{width:110.871095pt;}
._55{width:113.524928pt;}
._2c{width:119.616000pt;}
._66{width:120.761284pt;}
._5f{width:122.730412pt;}
._5a{width:127.212938pt;}
._49{width:132.678400pt;}
._60{width:134.295292pt;}
._43{width:137.689600pt;}
._47{width:139.276800pt;}
._41{width:154.256000pt;}
._3a{width:160.505600pt;}
._48{width:170.473600pt;}
._4b{width:172.409600pt;}
._6b{width:183.638007pt;}
._2e{width:185.208000pt;}
._72{width:193.424000pt;}
._3c{width:198.896000pt;}
._3d{width:206.929600pt;}
._46{width:211.246400pt;}
._3e{width:213.032000pt;}
._71{width:214.592000pt;}
._44{width:220.571200pt;}
._62{width:243.058120pt;}
._3f{width:246.313600pt;}
._25{width:250.926400pt;}
._40{width:258.515200pt;}
._63{width:269.029414pt;}
._5b{width:275.153566pt;}
._26{width:280.795200pt;}
._1f{width:282.571200pt;}
._64{width:289.757423pt;}
._5d{width:292.984209pt;}
._59{width:317.011755pt;}
._38{width:323.142400pt;}
._1c{width:326.816000pt;}
._22{width:331.777600pt;}
._33{width:337.334400pt;}
._6a{width:344.484672pt;}
._31{width:362.035200pt;}
._68{width:366.393719pt;}
._20{width:372.456000pt;}
._67{width:374.155098pt;}
._52{width:415.764808pt;}
._24{width:617.718400pt;}
._21{width:631.358400pt;}
._1d{width:710.772800pt;}
._1e{width:713.152000pt;}
._23{width:765.129600pt;}
._32{width:812.745600pt;}
._30{width:901.827200pt;}
._2f{width:964.073600pt;}
.fs8{font-size:19.733333pt;}
.fs9{font-size:26.429333pt;}
.fsc{font-size:29.700267pt;}
.fs5{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:36.800000pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:1.979333pt;}
.y10b{bottom:1.979467pt;}
.y10f{bottom:1.979600pt;}
.y109{bottom:1.979867pt;}
.y106{bottom:1.980267pt;}
.y104{bottom:1.980400pt;}
.y101{bottom:1.980533pt;}
.yfe{bottom:1.980667pt;}
.yfb{bottom:1.980800pt;}
.yf9{bottom:1.980933pt;}
.y123{bottom:3.732533pt;}
.yf7{bottom:5.940000pt;}
.yf5{bottom:10.890000pt;}
.yf6{bottom:15.840133pt;}
.y23{bottom:80.504000pt;}
.y60{bottom:80.504133pt;}
.y12a{bottom:80.507867pt;}
.y74{bottom:80.508000pt;}
.y50{bottom:81.171600pt;}
.y157{bottom:92.478400pt;}
.y141{bottom:92.489733pt;}
.y22{bottom:95.970667pt;}
.y4b{bottom:95.970800pt;}
.y82{bottom:95.970933pt;}
.y49{bottom:95.974533pt;}
.y4f{bottom:97.571600pt;}
.ya9{bottom:101.476133pt;}
.yd2{bottom:106.016400pt;}
.y156{bottom:107.812400pt;}
.y140{bottom:107.823733pt;}
.y21{bottom:111.437333pt;}
.y4a{bottom:111.437467pt;}
.y73{bottom:111.441333pt;}
.y5b{bottom:111.445333pt;}
.y4e{bottom:113.971600pt;}
.y155{bottom:123.146400pt;}
.y13f{bottom:123.157733pt;}
.y44{bottom:126.904133pt;}
.y5a{bottom:126.908133pt;}
.y1b1{bottom:130.124267pt;}
.y184{bottom:130.158267pt;}
.y4d{bottom:130.371600pt;}
.y154{bottom:138.480400pt;}
.y13e{bottom:138.491733pt;}
.y43{bottom:142.370933pt;}
.y5f{bottom:142.374800pt;}
.yf3{bottom:142.378667pt;}
.y1b0{bottom:145.458267pt;}
.y183{bottom:145.492267pt;}
.yc7{bottom:146.535867pt;}
.yc6{bottom:146.548267pt;}
.yc5{bottom:146.560667pt;}
.y4c{bottom:146.771600pt;}
.y20{bottom:146.771733pt;}
.y153{bottom:153.814400pt;}
.y13d{bottom:153.825733pt;}
.yc4{bottom:153.901467pt;}
.y5e{bottom:157.837600pt;}
.yf2{bottom:157.841467pt;}
.y1af{bottom:160.792267pt;}
.y182{bottom:160.826267pt;}
.y1f{bottom:163.171600pt;}
.y152{bottom:169.148400pt;}
.y13c{bottom:169.159733pt;}
.y5d{bottom:173.304267pt;}
.y72{bottom:173.304400pt;}
.y1ae{bottom:176.126267pt;}
.y181{bottom:176.160267pt;}
.yc1{bottom:178.034267pt;}
.yc2{bottom:178.093867pt;}
.y1e{bottom:179.571600pt;}
.y151{bottom:184.482400pt;}
.y13b{bottom:184.493733pt;}
.yc0{bottom:185.375067pt;}
.y71{bottom:188.774933pt;}
.y81{bottom:188.987867pt;}
.y1ad{bottom:191.460267pt;}
.y180{bottom:191.494267pt;}
.yc3{bottom:192.763067pt;}
.y124{bottom:193.335467pt;}
.y1d{bottom:195.971600pt;}
.y150{bottom:199.816400pt;}
.y13a{bottom:199.827733pt;}
.y70{bottom:204.237733pt;}
.y1ac{bottom:206.794267pt;}
.y17f{bottom:206.828267pt;}
.y8a{bottom:207.062400pt;}
.ybf{bottom:209.567467pt;}
.ybe{bottom:209.579867pt;}
.y80{bottom:211.536667pt;}
.y1c{bottom:212.371600pt;}
.y14f{bottom:215.150400pt;}
.y139{bottom:215.161733pt;}
.ybd{bottom:216.920667pt;}
.yf1{bottom:218.546000pt;}
.y6f{bottom:219.708267pt;}
.y1ab{bottom:222.128267pt;}
.y17e{bottom:222.162267pt;}
.y7f{bottom:228.400667pt;}
.y1b{bottom:228.771600pt;}
.y14e{bottom:230.484400pt;}
.y138{bottom:230.495733pt;}
.y6e{bottom:235.171067pt;}
.y1ec{bottom:237.144933pt;}
.y1aa{bottom:237.462267pt;}
.y17d{bottom:237.496267pt;}
.y110{bottom:239.044000pt;}
.ybc{bottom:241.113067pt;}
.ybb{bottom:241.125467pt;}
.y1a{bottom:245.171600pt;}
.y7e{bottom:245.264667pt;}
.y14d{bottom:245.818400pt;}
.y137{bottom:245.829733pt;}
.ya6{bottom:248.158667pt;}
.yba{bottom:248.466267pt;}
.y9c{bottom:248.737467pt;}
.y10e{bottom:248.944000pt;}
.y6d{bottom:250.645600pt;}
.y1eb{bottom:252.478933pt;}
.y1a9{bottom:252.796267pt;}
.y17c{bottom:252.830267pt;}
.y10c{bottom:258.349333pt;}
.y14c{bottom:261.152400pt;}
.y136{bottom:261.163733pt;}
.y42{bottom:261.571600pt;}
.y7d{bottom:262.128667pt;}
.y6c{bottom:266.108400pt;}
.y1ea{bottom:267.812933pt;}
.y1a8{bottom:268.130267pt;}
.y17b{bottom:268.164267pt;}
.y10a{bottom:268.249333pt;}
.yb7{bottom:272.596533pt;}
.yb9{bottom:272.658667pt;}
.yb8{bottom:272.671067pt;}
.y14b{bottom:276.486400pt;}
.y135{bottom:276.497733pt;}
.y97{bottom:277.208933pt;}
.y19{bottom:277.971600pt;}
.y108{bottom:278.644000pt;}
.y7c{bottom:278.992667pt;}
.yb6{bottom:279.937333pt;}
.y6b{bottom:281.571200pt;}
.y1e9{bottom:283.146933pt;}
.y1a7{bottom:283.464267pt;}
.y17a{bottom:283.498267pt;}
.y107{bottom:289.038667pt;}
.y14a{bottom:291.820400pt;}
.y134{bottom:291.831733pt;}
.y41{bottom:294.371600pt;}
.y7b{bottom:295.856667pt;}
.y6a{bottom:297.041867pt;}
.y1a6{bottom:298.798267pt;}
.y179{bottom:298.832267pt;}
.y105{bottom:298.938667pt;}
.y96{bottom:299.807067pt;}
.yb4{bottom:304.129733pt;}
.y149{bottom:307.154400pt;}
.y133{bottom:307.165733pt;}
.y103{bottom:308.838667pt;}
.y40{bottom:310.771600pt;}
.yb3{bottom:311.470533pt;}
.y69{bottom:312.504667pt;}
.y7a{bottom:312.720667pt;}
.y1e8{bottom:313.814933pt;}
.y1a5{bottom:314.132267pt;}
.y178{bottom:314.166267pt;}
.y95{bottom:316.671067pt;}
.y102{bottom:318.738667pt;}
.yb5{bottom:318.798933pt;}
.y148{bottom:322.488400pt;}
.y132{bottom:322.499733pt;}
.y3f{bottom:327.171600pt;}
.y68{bottom:327.975200pt;}
.y100{bottom:328.638667pt;}
.y1e7{bottom:329.148933pt;}
.y1a4{bottom:329.466267pt;}
.y177{bottom:329.500267pt;}
.y79{bottom:329.584667pt;}
.y94{bottom:331.327867pt;}
.y18{bottom:334.224267pt;}
.yb2{bottom:335.662933pt;}
.yb1{bottom:335.675333pt;}
.y147{bottom:337.822400pt;}
.y131{bottom:337.833733pt;}
.yff{bottom:338.538667pt;}
.yb0{bottom:343.016133pt;}
.y67{bottom:343.438000pt;}
.y3e{bottom:343.571600pt;}
.y1e6{bottom:344.482933pt;}
.y1a3{bottom:344.800267pt;}
.y176{bottom:344.834267pt;}
.y78{bottom:346.448667pt;}
.y93{bottom:348.191867pt;}
.yfd{bottom:348.438667pt;}
.y17{bottom:349.558267pt;}
.y146{bottom:353.156400pt;}
.y130{bottom:353.167733pt;}
.yfc{bottom:358.338667pt;}
.y66{bottom:358.908667pt;}
.y1e5{bottom:359.816933pt;}
.y3d{bottom:359.971600pt;}
.y1a2{bottom:360.134267pt;}
.y175{bottom:360.168267pt;}
.y77{bottom:363.312667pt;}
.y92{bottom:365.055867pt;}
.yaf{bottom:367.208533pt;}
.yae{bottom:367.220933pt;}
.yfa{bottom:368.238667pt;}
.y145{bottom:368.490400pt;}
.y12f{bottom:368.501733pt;}
.y65{bottom:374.371467pt;}
.yad{bottom:374.561733pt;}
.y1a1{bottom:375.468267pt;}
.y174{bottom:375.502267pt;}
.y3c{bottom:376.371600pt;}
.yf8{bottom:378.138667pt;}
.y91{bottom:379.712667pt;}
.y76{bottom:380.176667pt;}
.y16{bottom:380.226267pt;}
.y144{bottom:383.824400pt;}
.y12e{bottom:383.835733pt;}
.yf4{bottom:388.534667pt;}
.y64{bottom:389.838267pt;}
.y1a0{bottom:390.802267pt;}
.y173{bottom:390.836267pt;}
.y3b{bottom:392.771600pt;}
.y15{bottom:395.560267pt;}
.y90{bottom:396.576667pt;}
.y75{bottom:397.040667pt;}
.yac{bottom:398.754133pt;}
.yab{bottom:398.766533pt;}
.y143{bottom:399.158400pt;}
.y12d{bottom:399.169733pt;}
.y63{bottom:405.312533pt;}
.y1e4{bottom:405.818933pt;}
.y1cb{bottom:405.830267pt;}
.yaa{bottom:406.107333pt;}
.y19f{bottom:406.136267pt;}
.y172{bottom:406.170267pt;}
.y3a{bottom:409.171600pt;}
.y8f{bottom:413.440667pt;}
.y142{bottom:414.492400pt;}
.y12c{bottom:414.503733pt;}
.y111{bottom:419.458000pt;}
.y62{bottom:420.775333pt;}
.y1e3{bottom:421.152933pt;}
.y1ca{bottom:421.164267pt;}
.y19e{bottom:421.470267pt;}
.y171{bottom:421.504267pt;}
.y39{bottom:425.571600pt;}
.y14{bottom:426.228267pt;}
.y122{bottom:434.498667pt;}
.y61{bottom:436.238133pt;}
.y1e2{bottom:436.486933pt;}
.y1c9{bottom:436.498267pt;}
.y19d{bottom:436.804267pt;}
.y170{bottom:436.838267pt;}
.y13{bottom:441.562267pt;}
.y38{bottom:441.971600pt;}
.y12b{bottom:445.171733pt;}
.y1e1{bottom:451.820933pt;}
.y1c8{bottom:451.832267pt;}
.y19c{bottom:452.138267pt;}
.y16f{bottom:452.172267pt;}
.y121{bottom:454.582800pt;}
.y48{bottom:458.371600pt;}
.y1e0{bottom:467.154933pt;}
.y1c7{bottom:467.166267pt;}
.y19b{bottom:467.472267pt;}
.y16e{bottom:467.506267pt;}
.y12{bottom:472.230267pt;}
.y120{bottom:473.015067pt;}
.y37{bottom:474.771600pt;}
.y1df{bottom:482.488933pt;}
.y1c6{bottom:482.500267pt;}
.y19a{bottom:482.806267pt;}
.y16d{bottom:482.840267pt;}
.y11{bottom:487.564267pt;}
.y47{bottom:491.171600pt;}
.y11f{bottom:496.076400pt;}
.y1de{bottom:497.822933pt;}
.y1c5{bottom:497.834267pt;}
.y199{bottom:498.140267pt;}
.y16c{bottom:498.174267pt;}
.y10{bottom:502.898267pt;}
.y36{bottom:507.571600pt;}
.yf0{bottom:512.658267pt;}
.y1dd{bottom:513.156933pt;}
.y1c4{bottom:513.168267pt;}
.y198{bottom:513.474267pt;}
.y16b{bottom:513.508267pt;}
.yf{bottom:518.232267pt;}
.y11e{bottom:519.148400pt;}
.y46{bottom:523.971600pt;}
.y1dc{bottom:528.490933pt;}
.y1c3{bottom:528.502267pt;}
.y197{bottom:528.808267pt;}
.y16a{bottom:528.842267pt;}
.ye{bottom:533.566267pt;}
.yec{bottom:535.146933pt;}
.yef{bottom:535.249067pt;}
.yed{bottom:535.261467pt;}
.y45{bottom:540.371600pt;}
.y11d{bottom:542.209733pt;}
.yeb{bottom:542.487733pt;}
.y98{bottom:543.374000pt;}
.y1db{bottom:543.824933pt;}
.y1c2{bottom:543.836267pt;}
.y196{bottom:544.142267pt;}
.y169{bottom:544.176267pt;}
.yd{bottom:548.900267pt;}
.yee{bottom:549.930667pt;}
.y9b{bottom:555.508000pt;}
.y35{bottom:556.771600pt;}
.y1da{bottom:559.158933pt;}
.y1c1{bottom:559.170267pt;}
.y195{bottom:559.476267pt;}
.y168{bottom:559.510267pt;}
.yc{bottom:564.234267pt;}
.y11c{bottom:565.271067pt;}
.yea{bottom:566.680133pt;}
.ye9{bottom:566.692533pt;}
.ya8{bottom:569.974133pt;}
.yc8{bottom:572.791333pt;}
.y34{bottom:573.171600pt;}
.ye8{bottom:574.033333pt;}
.y1d9{bottom:574.492933pt;}
.y1c0{bottom:574.504267pt;}
.y194{bottom:574.810267pt;}
.y167{bottom:574.844267pt;}
.yb{bottom:579.568267pt;}
.ya7{bottom:581.174133pt;}
.ya1{bottom:581.178800pt;}
.y8e{bottom:582.124667pt;}
.yd1{bottom:584.189333pt;}
.y11b{bottom:588.332400pt;}
.y33{bottom:589.571600pt;}
.y5c{bottom:589.571733pt;}
.y1d8{bottom:589.826933pt;}
.y1bf{bottom:589.838267pt;}
.y193{bottom:590.144267pt;}
.y166{bottom:590.178267pt;}
.ya0{bottom:592.789467pt;}
.yd0{bottom:593.491867pt;}
.ya{bottom:594.902267pt;}
.y89{bottom:597.165333pt;}
.ye7{bottom:598.225733pt;}
.ye6{bottom:598.238133pt;}
.y8d{bottom:603.679467pt;}
.ycf{bottom:604.691867pt;}
.y1d7{bottom:605.160933pt;}
.y1be{bottom:605.172267pt;}
.y192{bottom:605.478267pt;}
.y165{bottom:605.512267pt;}
.ye5{bottom:605.578933pt;}
.y32{bottom:605.971600pt;}
.y9{bottom:610.236267pt;}
.y11a{bottom:611.393733pt;}
.y8c{bottom:613.279467pt;}
.yce{bottom:615.891867pt;}
.y1d6{bottom:620.494933pt;}
.y1bd{bottom:620.506267pt;}
.y191{bottom:620.812267pt;}
.y164{bottom:620.846267pt;}
.y31{bottom:622.371600pt;}
.y59{bottom:622.371733pt;}
.y8b{bottom:622.879467pt;}
.y8{bottom:625.570267pt;}
.ycd{bottom:627.343867pt;}
.y9f{bottom:628.032133pt;}
.ye1{bottom:629.783733pt;}
.y87{bottom:632.074400pt;}
.y119{bottom:634.465733pt;}
.y1d5{bottom:635.828933pt;}
.y1bc{bottom:635.840267pt;}
.y190{bottom:636.146267pt;}
.y163{bottom:636.180267pt;}
.ye4{bottom:637.099733pt;}
.ye2{bottom:637.112133pt;}
.y30{bottom:638.771600pt;}
.y58{bottom:638.771733pt;}
.y7{bottom:640.904267pt;}
.ydf{bottom:644.452933pt;}
.y1d4{bottom:651.162933pt;}
.y1bb{bottom:651.174267pt;}
.y18f{bottom:651.480267pt;}
.y162{bottom:651.514267pt;}
.ye3{bottom:651.781333pt;}
.y2f{bottom:655.171600pt;}
.y57{bottom:655.171733pt;}
.y6{bottom:656.238267pt;}
.y118{bottom:657.527067pt;}
.ye0{bottom:659.122133pt;}
.y9e{bottom:663.274800pt;}
.y86{bottom:664.626400pt;}
.y1d3{bottom:666.496933pt;}
.y1ba{bottom:666.508267pt;}
.y18e{bottom:666.814267pt;}
.y161{bottom:666.848267pt;}
.ycc{bottom:671.397200pt;}
.y2e{bottom:671.571600pt;}
.y56{bottom:671.571733pt;}
.yde{bottom:675.973733pt;}
.ydd{bottom:675.986133pt;}
.y88{bottom:678.249867pt;}
.y117{bottom:680.588400pt;}
.y1d2{bottom:681.830933pt;}
.y1b9{bottom:681.842267pt;}
.y18d{bottom:682.148267pt;}
.y160{bottom:682.182267pt;}
.ydc{bottom:683.326933pt;}
.y2d{bottom:687.971600pt;}
.y55{bottom:687.971733pt;}
.y1d1{bottom:697.164933pt;}
.y1b8{bottom:697.176267pt;}
.y85{bottom:697.178400pt;}
.y18c{bottom:697.482267pt;}
.y15f{bottom:697.516267pt;}
.y9d{bottom:698.517467pt;}
.y116{bottom:703.649733pt;}
.y2c{bottom:704.371600pt;}
.y54{bottom:704.371733pt;}
.ya2{bottom:707.202800pt;}
.ydb{bottom:707.519333pt;}
.y1d0{bottom:712.498933pt;}
.y1b7{bottom:712.510267pt;}
.y18b{bottom:712.816267pt;}
.y15e{bottom:712.850267pt;}
.y5{bottom:713.514267pt;}
.yda{bottom:714.860133pt;}
.ycb{bottom:715.450533pt;}
.y2b{bottom:720.771600pt;}
.y53{bottom:720.771733pt;}
.ya5{bottom:724.626800pt;}
.y115{bottom:726.711067pt;}
.y1cf{bottom:727.832933pt;}
.y1b6{bottom:727.844267pt;}
.y18a{bottom:728.150267pt;}
.y15d{bottom:728.184267pt;}
.y84{bottom:729.730400pt;}
.y99{bottom:733.760133pt;}
.ya4{bottom:736.738800pt;}
.y2a{bottom:737.171600pt;}
.y52{bottom:737.171733pt;}
.yd8{bottom:739.052533pt;}
.y1ce{bottom:743.166933pt;}
.y1b5{bottom:743.178267pt;}
.y189{bottom:743.484267pt;}
.y15c{bottom:743.518267pt;}
.yd9{bottom:746.380933pt;}
.y114{bottom:749.783067pt;}
.y4{bottom:751.402400pt;}
.y29{bottom:753.571600pt;}
.y51{bottom:753.571733pt;}
.yd6{bottom:753.721733pt;}
.y129{bottom:757.153067pt;}
.y1cd{bottom:758.500933pt;}
.y1b4{bottom:758.512267pt;}
.y188{bottom:758.818267pt;}
.y15b{bottom:758.852267pt;}
.yc9{bottom:759.503867pt;}
.y25{bottom:762.125333pt;}
.y83{bottom:762.282400pt;}
.y128{bottom:767.153067pt;}
.yd7{bottom:768.390933pt;}
.y24{bottom:768.790267pt;}
.y9a{bottom:769.002800pt;}
.y28{bottom:769.971600pt;}
.y113{bottom:772.844400pt;}
.y1cc{bottom:773.834933pt;}
.y1b3{bottom:773.846267pt;}
.y3{bottom:774.058400pt;}
.y187{bottom:774.152267pt;}
.y15a{bottom:774.186267pt;}
.y127{bottom:777.153067pt;}
.yd5{bottom:785.254933pt;}
.yd4{bottom:785.267333pt;}
.y27{bottom:786.371600pt;}
.y126{bottom:787.153067pt;}
.ya3{bottom:789.090800pt;}
.y186{bottom:789.486267pt;}
.y159{bottom:789.520267pt;}
.yd3{bottom:792.608133pt;}
.y112{bottom:795.905733pt;}
.y2{bottom:796.714400pt;}
.y125{bottom:797.153067pt;}
.y26{bottom:802.771600pt;}
.yca{bottom:803.557200pt;}
.y1b2{bottom:804.514267pt;}
.y185{bottom:804.820267pt;}
.y158{bottom:804.854267pt;}
.y1{bottom:849.726533pt;}
.h27{height:8.909333pt;}
.h26{height:9.404000pt;}
.h24{height:9.405333pt;}
.h22{height:9.900000pt;}
.hb{height:13.596267pt;}
.h23{height:20.331921pt;}
.h25{height:20.781485pt;}
.h21{height:24.494019pt;}
.h20{height:27.225333pt;}
.h10{height:27.520000pt;}
.h12{height:32.106667pt;}
.h28{height:32.426667pt;}
.h2a{height:36.693333pt;}
.h2c{height:40.482667pt;}
.h2b{height:40.981333pt;}
.hf{height:41.162667pt;}
.h5{height:42.840000pt;}
.h6{height:44.290667pt;}
.h1c{height:44.292800pt;}
.ha{height:44.838400pt;}
.h13{height:44.877867pt;}
.he{height:45.036800pt;}
.h2{height:45.456000pt;}
.hd{height:47.893333pt;}
.h7{height:50.400000pt;}
.hc{height:50.506667pt;}
.h8{height:52.106667pt;}
.h9{height:52.107200pt;}
.h4{height:60.608000pt;}
.h19{height:73.606400pt;}
.h14{height:74.152000pt;}
.h16{height:74.350400pt;}
.h3{height:80.640000pt;}
.h1d{height:102.920000pt;}
.h1b{height:103.197867pt;}
.h1a{height:103.257600pt;}
.h1f{height:103.417600pt;}
.h18{height:103.465600pt;}
.h17{height:103.664000pt;}
.h11{height:214.854667pt;}
.h1e{height:237.165333pt;}
.h15{height:256.530667pt;}
.h29{height:387.790667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w6{width:31.186667pt;}
.w7{width:41.584000pt;}
.w3{width:388.873333pt;}
.w4{width:400.948000pt;}
.w5{width:480.670667pt;}
.w8{width:486.018667pt;}
.w2{width:487.558667pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x48{left:-1.980800pt;}
.x0{left:0.000000pt;}
.x44{left:0.990133pt;}
.x47{left:2.970933pt;}
.x43{left:3.960267pt;}
.x2b{left:7.792400pt;}
.x46{left:9.406267pt;}
.x1b{left:14.775200pt;}
.x8{left:22.497867pt;}
.x7{left:25.226000pt;}
.x41{left:39.106800pt;}
.xe{left:62.362667pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x40{left:74.920000pt;}
.xb{left:78.329333pt;}
.xc{left:80.105333pt;}
.x6{left:83.139067pt;}
.x34{left:84.078933pt;}
.x1a{left:85.909867pt;}
.x1c{left:87.981867pt;}
.x2c{left:89.196933pt;}
.x2{left:90.703733pt;}
.xd{left:92.129333pt;}
.x35{left:94.560267pt;}
.x39{left:96.755867pt;}
.x51{left:99.198133pt;}
.x1d{left:102.009867pt;}
.x54{left:109.602000pt;}
.x10{left:113.452933pt;}
.x4e{left:123.155467pt;}
.x1e{left:130.177867pt;}
.x1f{left:134.141733pt;}
.x4d{left:137.747467pt;}
.x4c{left:139.048800pt;}
.x4f{left:143.966133pt;}
.x4b{left:147.710133pt;}
.x50{left:152.936800pt;}
.x4a{left:158.654133pt;}
.x31{left:167.081333pt;}
.x2d{left:169.201733pt;}
.x32{left:174.223733pt;}
.x3a{left:176.760667pt;}
.x49{left:179.400800pt;}
.x3c{left:181.757867pt;}
.x24{left:190.638667pt;}
.x23{left:193.709333pt;}
.x20{left:202.621733pt;}
.x30{left:217.710533pt;}
.x11{left:219.124933pt;}
.x3e{left:225.294267pt;}
.x12{left:229.540933pt;}
.xa{left:250.712267pt;}
.x25{left:255.850667pt;}
.x26{left:257.213333pt;}
.x36{left:261.309600pt;}
.x9{left:266.063467pt;}
.x21{left:272.485733pt;}
.x13{left:281.732933pt;}
.x14{left:291.244933pt;}
.x52{left:300.065067pt;}
.x55{left:314.197333pt;}
.x33{left:317.483600pt;}
.x57{left:321.750267pt;}
.x28{left:323.153333pt;}
.x3f{left:325.077067pt;}
.x27{left:331.684000pt;}
.x56{left:333.083600pt;}
.x15{left:335.228933pt;}
.xf{left:341.950400pt;}
.x22{left:343.701733pt;}
.x38{left:366.589600pt;}
.x37{left:368.810933pt;}
.x29{left:402.878667pt;}
.x2a{left:410.000000pt;}
.x2e{left:427.034933pt;}
.x3b{left:434.593867pt;}
.x42{left:444.213333pt;}
.x16{left:447.452933pt;}
.x17{left:457.868933pt;}
.x2f{left:461.754933pt;}
.x3d{left:469.313867pt;}
.x53{left:471.461333pt;}
.x45{left:475.894667pt;}
.x18{left:509.948933pt;}
.x19{left:519.460933pt;}
.x4{left:578.088400pt;}
.x3{left:580.816533pt;}
}




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