
    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_ff8af6a8b86e3f168901a795.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_9509e180e9804c0fa5468957.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_e0caf0a7e29b99f7f7213c40.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_cfc50334b9d9dd9d983c16c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031048;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_a192c3c28c107d171ee41604.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_97b90b50d7aee151cc50e261.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ebd0f09a6e160fca1a1d755d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.200900;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_f9914e69861a281a107a8a4a.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_035761e071753188a4c87079.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.235000;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_f9914e69861a281a107a8a4a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_92c09105eafe3911e0323dd8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196000;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_261d5be63128680a70f69b80.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.135000;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_7bf1a20ca58c3edff9049486.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.175000;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_81b9b95a28efde52a49ea875.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.v1{vertical-align:19.980600px;}
.v4{vertical-align:32.419800px;}
.v3{vertical-align:37.944000px;}
.ls81{letter-spacing:-6.375000px;}
.ls41{letter-spacing:-6.138000px;}
.ls3f{letter-spacing:-5.914800px;}
.ls3e{letter-spacing:-5.022000px;}
.ls54{letter-spacing:-3.300000px;}
.ls6d{letter-spacing:-3.292200px;}
.ls58{letter-spacing:-3.240000px;}
.ls7c{letter-spacing:-3.132000px;}
.ls40{letter-spacing:-2.176200px;}
.ls3c{letter-spacing:-1.836000px;}
.ls59{letter-spacing:-1.800000px;}
.ls6f{letter-spacing:-1.680000px;}
.ls47{letter-spacing:-1.618200px;}
.ls5a{letter-spacing:-1.562400px;}
.ls2{letter-spacing:-1.479000px;}
.ls70{letter-spacing:-1.440000px;}
.ls6b{letter-spacing:-1.350000px;}
.ls42{letter-spacing:-1.283400px;}
.ls4a{letter-spacing:-1.080000px;}
.ls36{letter-spacing:-0.780000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.600000px;}
.ls3d{letter-spacing:-0.558000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls7f{letter-spacing:-0.510000px;}
.ls2e{letter-spacing:-0.480000px;}
.ls7d{letter-spacing:-0.432000px;}
.ls4b{letter-spacing:-0.420000px;}
.ls74{letter-spacing:-0.414000px;}
.ls50{letter-spacing:-0.360000px;}
.ls73{letter-spacing:-0.349800px;}
.ls57{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.240000px;}
.ls64{letter-spacing:-0.223200px;}
.ls3{letter-spacing:-0.204000px;}
.ls16{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.167400px;}
.ls2a{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.111600px;}
.ls6{letter-spacing:-0.060000px;}
.ls17{letter-spacing:-0.055800px;}
.ls67{letter-spacing:-0.054000px;}
.ls4{letter-spacing:-0.051000px;}
.ls1{letter-spacing:0.000000px;}
.ls75{letter-spacing:0.030000px;}
.ls28{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.081480px;}
.ls6e{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.111600px;}
.lsd{letter-spacing:0.120000px;}
.ls5d{letter-spacing:0.126000px;}
.ls4d{letter-spacing:0.129960px;}
.ls4e{letter-spacing:0.138000px;}
.ls4c{letter-spacing:0.140765px;}
.ls27{letter-spacing:0.150000px;}
.ls46{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.167400px;}
.ls20{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.183900px;}
.ls76{letter-spacing:0.186000px;}
.ls29{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.222000px;}
.ls32{letter-spacing:0.223200px;}
.lsb{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.270000px;}
.ls31{letter-spacing:0.279000px;}
.lsc{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.306000px;}
.ls6c{letter-spacing:0.314820px;}
.ls48{letter-spacing:0.330000px;}
.ls9{letter-spacing:0.333000px;}
.ls1c{letter-spacing:0.334800px;}
.ls11{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.366000px;}
.ls1a{letter-spacing:0.390600px;}
.ls51{letter-spacing:0.402000px;}
.ls26{letter-spacing:0.420000px;}
.ls60{letter-spacing:0.446400px;}
.ls30{letter-spacing:0.450000px;}
.ls25{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.502200px;}
.ls69{letter-spacing:0.510000px;}
.lse{letter-spacing:0.540000px;}
.ls63{letter-spacing:0.559680px;}
.ls65{letter-spacing:0.594000px;}
.lsa{letter-spacing:0.600000px;}
.ls7a{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.684000px;}
.ls79{letter-spacing:0.690000px;}
.ls22{letter-spacing:0.720000px;}
.ls7b{letter-spacing:0.750000px;}
.ls5f{letter-spacing:0.756000px;}
.ls23{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.864000px;}
.ls7e{letter-spacing:0.867000px;}
.ls61{letter-spacing:0.892800px;}
.ls55{letter-spacing:0.900000px;}
.ls5b{letter-spacing:0.960000px;}
.ls6a{letter-spacing:1.020000px;}
.ls14{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.200000px;}
.ls1d{letter-spacing:1.242000px;}
.ls77{letter-spacing:1.350000px;}
.ls72{letter-spacing:1.380000px;}
.ls78{letter-spacing:1.404000px;}
.ls13{letter-spacing:1.512000px;}
.ls24{letter-spacing:1.566000px;}
.ls45{letter-spacing:1.611600px;}
.ls34{letter-spacing:1.728000px;}
.ls80{letter-spacing:1.785000px;}
.ls53{letter-spacing:1.836000px;}
.ls35{letter-spacing:1.860000px;}
.ls62{letter-spacing:1.944000px;}
.ls52{letter-spacing:2.052000px;}
.ls82{letter-spacing:2.106000px;}
.ls49{letter-spacing:2.214000px;}
.ls71{letter-spacing:2.238000px;}
.ls4f{letter-spacing:2.376000px;}
.ls68{letter-spacing:2.754000px;}
.ls66{letter-spacing:4.380000px;}
.ls43{letter-spacing:122.704200px;}
.ls44{letter-spacing:123.931800px;}
.ls39{letter-spacing:150.325200px;}
.ls38{letter-spacing:150.548400px;}
.ls3a{letter-spacing:150.883200px;}
.ls37{letter-spacing:152.780400px;}
.ls3b{letter-spacing:158.025600px;}
.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;}
}
.wsff{word-spacing:-15.174000px;}
.ws186{word-spacing:-14.904000px;}
.ws131{word-spacing:-14.742000px;}
.ws11b{word-spacing:-14.634000px;}
.ws73{word-spacing:-14.526000px;}
.ws4c{word-spacing:-14.364000px;}
.ws1b{word-spacing:-14.310000px;}
.ws170{word-spacing:-14.202000px;}
.ws134{word-spacing:-13.260000px;}
.ws16c{word-spacing:-13.200000px;}
.ws147{word-spacing:-13.140000px;}
.ws17e{word-spacing:-13.056000px;}
.wsc3{word-spacing:-12.960000px;}
.ws75{word-spacing:-12.900000px;}
.ws100{word-spacing:-12.600000px;}
.ws17c{word-spacing:-12.366000px;}
.ws154{word-spacing:-12.258000px;}
.ws173{word-spacing:-12.180000px;}
.ws128{word-spacing:-12.060000px;}
.ws158{word-spacing:-12.000000px;}
.ws8d{word-spacing:-11.997000px;}
.ws146{word-spacing:-11.880000px;}
.ws17a{word-spacing:-11.820000px;}
.ws132{word-spacing:-11.760000px;}
.ws15a{word-spacing:-11.700000px;}
.ws157{word-spacing:-11.640000px;}
.ws159{word-spacing:-11.580000px;}
.ws4e{word-spacing:-11.550600px;}
.ws103{word-spacing:-11.520000px;}
.ws76{word-spacing:-11.494800px;}
.ws113{word-spacing:-11.460000px;}
.ws61{word-spacing:-11.400000px;}
.ws11c{word-spacing:-11.340000px;}
.ws53{word-spacing:-11.280000px;}
.ws127{word-spacing:-11.220000px;}
.ws101{word-spacing:-11.160000px;}
.ws112{word-spacing:-11.100000px;}
.ws15d{word-spacing:-10.980000px;}
.ws17f{word-spacing:-10.965000px;}
.ws102{word-spacing:-10.920000px;}
.ws15c{word-spacing:-10.800000px;}
.ws176{word-spacing:-10.740000px;}
.ws2{word-spacing:-10.710000px;}
.ws174{word-spacing:-10.680000px;}
.ws17d{word-spacing:-10.659000px;}
.ws74{word-spacing:-10.560000px;}
.ws52{word-spacing:-10.557000px;}
.ws15e{word-spacing:-10.500000px;}
.ws129{word-spacing:-10.434600px;}
.wsf6{word-spacing:-9.853578px;}
.ws156{word-spacing:-9.840000px;}
.ws0{word-spacing:-9.792000px;}
.ws155{word-spacing:-9.600000px;}
.ws1{word-spacing:-9.588000px;}
.ws1d{word-spacing:-8.901000px;}
.ws166{word-spacing:-8.487000px;}
.ws126{word-spacing:-8.040000px;}
.ws11d{word-spacing:-7.980000px;}
.ws133{word-spacing:-7.905480px;}
.ws14d{word-spacing:-7.660620px;}
.ws1c{word-spacing:-7.345800px;}
.ws8a{word-spacing:-6.975000px;}
.ws90{word-spacing:-6.082200px;}
.wscb{word-spacing:-5.859000px;}
.wsbc{word-spacing:-5.356800px;}
.ws184{word-spacing:-4.590000px;}
.wsbe{word-spacing:-4.129200px;}
.wsbb{word-spacing:-3.682800px;}
.ws12c{word-spacing:-2.820000px;}
.wsc0{word-spacing:-2.790000px;}
.wsfc{word-spacing:-2.580000px;}
.ws107{word-spacing:-2.520000px;}
.ws2e{word-spacing:-2.460000px;}
.wsbd{word-spacing:-2.455200px;}
.ws161{word-spacing:-2.400000px;}
.ws19{word-spacing:-2.340000px;}
.ws14{word-spacing:-2.100000px;}
.ws119{word-spacing:-2.040000px;}
.ws125{word-spacing:-1.980000px;}
.ws27{word-spacing:-1.920000px;}
.ws13{word-spacing:-1.860000px;}
.ws34{word-spacing:-1.841400px;}
.ws24{word-spacing:-1.800000px;}
.ws32{word-spacing:-1.785600px;}
.ws64{word-spacing:-1.740000px;}
.ws106{word-spacing:-1.680000px;}
.ws130{word-spacing:-1.674000px;}
.ws6{word-spacing:-1.632000px;}
.ws57{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.581000px;}
.wsc1{word-spacing:-1.562400px;}
.ws120{word-spacing:-1.560000px;}
.ws71{word-spacing:-1.500000px;}
.ws3e{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.428000px;}
.ws58{word-spacing:-1.380000px;}
.ws16b{word-spacing:-1.339200px;}
.ws105{word-spacing:-1.260000px;}
.ws39{word-spacing:-1.242000px;}
.ws12{word-spacing:-1.200000px;}
.ws4b{word-spacing:-1.171800px;}
.ws3d{word-spacing:-1.140000px;}
.ws5a{word-spacing:-1.080000px;}
.ws14b{word-spacing:-1.020000px;}
.ws116{word-spacing:-0.960000px;}
.ws10{word-spacing:-0.918000px;}
.ws70{word-spacing:-0.900000px;}
.ws182{word-spacing:-0.867000px;}
.ws18{word-spacing:-0.840000px;}
.wsa{word-spacing:-0.816000px;}
.ws43{word-spacing:-0.780000px;}
.ws7{word-spacing:-0.765000px;}
.ws4a{word-spacing:-0.725400px;}
.ws16{word-spacing:-0.720000px;}
.ws183{word-spacing:-0.714000px;}
.ws7e{word-spacing:-0.660000px;}
.ws38{word-spacing:-0.613800px;}
.wsd{word-spacing:-0.612000px;}
.ws28{word-spacing:-0.600000px;}
.wsbf{word-spacing:-0.558000px;}
.ws11a{word-spacing:-0.540000px;}
.ws14c{word-spacing:-0.502200px;}
.ws7a{word-spacing:-0.480000px;}
.ws10f{word-spacing:-0.446400px;}
.ws69{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.408000px;}
.ws124{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.355200px;}
.wsf0{word-spacing:-0.334800px;}
.wsf5{word-spacing:-0.306000px;}
.ws10b{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.240000px;}
.ws33{word-spacing:-0.223200px;}
.ws1a{word-spacing:-0.222000px;}
.ws5{word-spacing:-0.204000px;}
.ws118{word-spacing:-0.180000px;}
.ws84{word-spacing:-0.167400px;}
.wse{word-spacing:-0.153000px;}
.wsfe{word-spacing:-0.140765px;}
.ws66{word-spacing:-0.120000px;}
.ws136{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.051000px;}
.ws4{word-spacing:0.000000px;}
.ws143{word-spacing:0.060000px;}
.ws60{word-spacing:0.120000px;}
.ws25{word-spacing:0.180000px;}
.ws79{word-spacing:0.240000px;}
.ws3f{word-spacing:0.300000px;}
.ws111{word-spacing:0.334800px;}
.ws168{word-spacing:0.349800px;}
.ws6a{word-spacing:0.360000px;}
.ws16a{word-spacing:0.390600px;}
.ws115{word-spacing:0.420000px;}
.ws63{word-spacing:0.480000px;}
.ws1f{word-spacing:0.540000px;}
.wsba{word-spacing:0.558000px;}
.ws5e{word-spacing:0.600000px;}
.ws181{word-spacing:0.612000px;}
.ws163{word-spacing:0.613800px;}
.ws109{word-spacing:0.660000px;}
.ws80{word-spacing:0.669600px;}
.wsfb{word-spacing:0.720000px;}
.ws35{word-spacing:0.837000px;}
.ws26{word-spacing:0.840000px;}
.ws11f{word-spacing:0.900000px;}
.ws6e{word-spacing:0.960000px;}
.ws42{word-spacing:1.020000px;}
.ws55{word-spacing:1.080000px;}
.ws85{word-spacing:1.116000px;}
.ws20{word-spacing:1.140000px;}
.wsf4{word-spacing:1.173000px;}
.ws41{word-spacing:1.200000px;}
.ws12e{word-spacing:1.260000px;}
.ws165{word-spacing:1.283400px;}
.ws121{word-spacing:1.320000px;}
.ws9{word-spacing:1.326000px;}
.ws160{word-spacing:1.380000px;}
.ws15{word-spacing:1.440000px;}
.ws13a{word-spacing:1.450800px;}
.ws162{word-spacing:1.500000px;}
.ws108{word-spacing:1.560000px;}
.ws47{word-spacing:1.562400px;}
.wsf2{word-spacing:1.581000px;}
.ws110{word-spacing:1.618200px;}
.ws5f{word-spacing:1.620000px;}
.wsf3{word-spacing:1.632000px;}
.ws46{word-spacing:1.674000px;}
.ws67{word-spacing:1.680000px;}
.ws37{word-spacing:1.729800px;}
.wsfd{word-spacing:1.740000px;}
.ws82{word-spacing:1.785600px;}
.ws12d{word-spacing:1.800000px;}
.ws36{word-spacing:1.841400px;}
.ws23{word-spacing:1.860000px;}
.wsef{word-spacing:1.897200px;}
.ws2c{word-spacing:1.920000px;}
.ws12f{word-spacing:1.953000px;}
.ws10e{word-spacing:1.980000px;}
.ws81{word-spacing:2.008800px;}
.ws30{word-spacing:2.040000px;}
.ws7f{word-spacing:2.100000px;}
.ws7c{word-spacing:2.160000px;}
.wsf1{word-spacing:2.176200px;}
.wsfa{word-spacing:2.220000px;}
.ws65{word-spacing:2.280000px;}
.wsc2{word-spacing:2.287800px;}
.ws56{word-spacing:2.340000px;}
.ws29{word-spacing:2.400000px;}
.ws49{word-spacing:2.455200px;}
.ws2f{word-spacing:2.460000px;}
.ws11{word-spacing:2.499000px;}
.ws164{word-spacing:2.511000px;}
.wsf9{word-spacing:2.520000px;}
.ws153{word-spacing:2.566800px;}
.ws2b{word-spacing:2.580000px;}
.ws6d{word-spacing:2.640000px;}
.ws48{word-spacing:2.678400px;}
.ws40{word-spacing:2.700000px;}
.ws31{word-spacing:2.760000px;}
.ws10a{word-spacing:2.820000px;}
.ws72{word-spacing:2.880000px;}
.ws145{word-spacing:2.940000px;}
.ws83{word-spacing:2.957400px;}
.ws123{word-spacing:3.000000px;}
.ws142{word-spacing:3.060000px;}
.ws122{word-spacing:3.120000px;}
.ws44{word-spacing:3.124800px;}
.ws10d{word-spacing:3.180000px;}
.ws144{word-spacing:3.300000px;}
.ws6f{word-spacing:3.360000px;}
.ws139{word-spacing:3.420000px;}
.ws152{word-spacing:3.480000px;}
.ws5b{word-spacing:3.540000px;}
.ws178{word-spacing:3.600000px;}
.ws13b{word-spacing:3.682800px;}
.ws16f{word-spacing:3.720000px;}
.ws6c{word-spacing:3.780000px;}
.ws78{word-spacing:3.900000px;}
.ws14a{word-spacing:3.960000px;}
.ws150{word-spacing:4.020000px;}
.ws148{word-spacing:4.080000px;}
.ws2d{word-spacing:4.140000px;}
.ws45{word-spacing:4.185000px;}
.ws14f{word-spacing:4.200000px;}
.ws149{word-spacing:4.320000px;}
.ws13f{word-spacing:4.380000px;}
.ws10c{word-spacing:4.440000px;}
.ws179{word-spacing:4.500000px;}
.ws6b{word-spacing:4.560000px;}
.ws21{word-spacing:4.620000px;}
.ws172{word-spacing:4.680000px;}
.ws140{word-spacing:4.740000px;}
.ws2a{word-spacing:4.800000px;}
.ws7b{word-spacing:4.860000px;}
.ws22{word-spacing:4.920000px;}
.ws3b{word-spacing:5.100000px;}
.ws117{word-spacing:5.160000px;}
.ws141{word-spacing:5.280000px;}
.ws13e{word-spacing:5.400000px;}
.ws3c{word-spacing:5.580000px;}
.ws16e{word-spacing:6.000000px;}
.ws59{word-spacing:6.060000px;}
.ws5d{word-spacing:6.120000px;}
.ws169{word-spacing:6.540000px;}
.ws5c{word-spacing:7.080000px;}
.ws12b{word-spacing:7.320000px;}
.ws13c{word-spacing:7.421400px;}
.ws7d{word-spacing:7.440000px;}
.ws151{word-spacing:8.520000px;}
.ws68{word-spacing:11.040000px;}
.ws138{word-spacing:15.960000px;}
.ws8f{word-spacing:26.449200px;}
.ws137{word-spacing:34.740000px;}
.ws8e{word-spacing:35.544600px;}
.ws88{word-spacing:36.772200px;}
.ws91{word-spacing:53.400600px;}
.wsb7{word-spacing:69.917400px;}
.wsb2{word-spacing:77.673600px;}
.ws92{word-spacing:77.952600px;}
.ws94{word-spacing:79.180200px;}
.ws99{word-spacing:80.017200px;}
.ws9c{word-spacing:81.244800px;}
.wsa3{word-spacing:83.142000px;}
.ws86{word-spacing:83.811600px;}
.ws97{word-spacing:87.550200px;}
.ws8b{word-spacing:95.194800px;}
.wsae{word-spacing:99.491400px;}
.wsf7{word-spacing:101.022635px;}
.ws9e{word-spacing:101.667600px;}
.wsb3{word-spacing:103.676400px;}
.wscd{word-spacing:106.131600px;}
.wsc8{word-spacing:106.633800px;}
.wsd3{word-spacing:109.926000px;}
.wsc5{word-spacing:110.707200px;}
.wsc9{word-spacing:112.046400px;}
.wsce{word-spacing:113.106600px;}
.wsb0{word-spacing:114.669000px;}
.wsa1{word-spacing:115.171200px;}
.wsa7{word-spacing:117.124200px;}
.wsab{word-spacing:118.184400px;}
.ws95{word-spacing:120.081600px;}
.wsa5{word-spacing:122.871600px;}
.wsaa{word-spacing:124.936200px;}
.ws89{word-spacing:125.159400px;}
.wsaf{word-spacing:125.940600px;}
.wsdd{word-spacing:126.777600px;}
.ws8c{word-spacing:127.391400px;}
.wsb5{word-spacing:128.619000px;}
.ws9f{word-spacing:129.456000px;}
.wsad{word-spacing:129.790800px;}
.wse2{word-spacing:130.404600px;}
.wsec{word-spacing:130.683600px;}
.wsca{word-spacing:131.409000px;}
.wsd4{word-spacing:132.636600px;}
.wsa4{word-spacing:138.942000px;}
.wsdb{word-spacing:140.560200px;}
.wsb6{word-spacing:142.122600px;}
.ws93{word-spacing:144.522000px;}
.wse4{word-spacing:144.801000px;}
.wsd6{word-spacing:145.749600px;}
.ws9a{word-spacing:146.307600px;}
.ws9d{word-spacing:147.144600px;}
.wse3{word-spacing:147.591000px;}
.ws98{word-spacing:149.041800px;}
.wsa8{word-spacing:150.269400px;}
.wse7{word-spacing:154.342800px;}
.wse1{word-spacing:154.454400px;}
.wsdf{word-spacing:158.639400px;}
.ws9b{word-spacing:167.344200px;}
.ws96{word-spacing:167.567400px;}
.wsb4{word-spacing:167.902200px;}
.wsd1{word-spacing:168.571800px;}
.wsa0{word-spacing:169.799400px;}
.wsd8{word-spacing:170.357400px;}
.wsa9{word-spacing:171.027000px;}
.wsa2{word-spacing:175.044600px;}
.wsb8{word-spacing:176.272200px;}
.ws87{word-spacing:186.874200px;}
.wscf{word-spacing:188.604000px;}
.wsc6{word-spacing:188.883000px;}
.wsc4{word-spacing:188.938800px;}
.wsac{word-spacing:195.523200px;}
.wse9{word-spacing:203.446800px;}
.wse8{word-spacing:212.709600px;}
.wsd7{word-spacing:221.581800px;}
.wsde{word-spacing:222.363000px;}
.wsea{word-spacing:239.382000px;}
.wsa6{word-spacing:245.129400px;}
.wsc7{word-spacing:260.251200px;}
.wsb1{word-spacing:261.646200px;}
.wsd9{word-spacing:271.299600px;}
.wscc{word-spacing:273.141000px;}
.wsd5{word-spacing:277.437600px;}
.wse6{word-spacing:278.888400px;}
.wseb{word-spacing:289.936800px;}
.wsda{word-spacing:298.139400px;}
.wsdc{word-spacing:303.217200px;}
.wse5{word-spacing:303.552000px;}
.wse0{word-spacing:316.051200px;}
.wsd2{word-spacing:345.457800px;}
.wsd0{word-spacing:351.149400px;}
.wsed{word-spacing:409.627800px;}
.ws51{word-spacing:422.071200px;}
.ws50{word-spacing:469.897380px;}
.ws4f{word-spacing:470.449800px;}
.ws4d{word-spacing:563.301000px;}
.ws104{word-spacing:991.224000px;}
.ws187{word-spacing:991.440000px;}
.ws135{word-spacing:991.656000px;}
.ws167{word-spacing:991.710000px;}
.ws11e{word-spacing:991.764000px;}
.ws77{word-spacing:991.872000px;}
.ws54{word-spacing:991.980000px;}
.ws1e{word-spacing:992.034000px;}
.ws177{word-spacing:992.088000px;}
.ws171{word-spacing:992.142000px;}
.wsee{word-spacing:993.384000px;}
.ws180{word-spacing:993.978000px;}
.ws15b{word-spacing:994.140000px;}
.wsf8{word-spacing:1606.554000px;}
.ws114{word-spacing:1606.878000px;}
.ws185{word-spacing:1607.580000px;}
.ws15f{word-spacing:1608.012000px;}
.ws16d{word-spacing:1608.336000px;}
.ws3a{word-spacing:1609.308000px;}
.ws62{word-spacing:1610.604000px;}
.ws175{word-spacing:1610.658000px;}
.ws13d{word-spacing:1611.144000px;}
.ws12a{word-spacing:1611.630000px;}
.ws14e{word-spacing:1613.736000px;}
.wsb9{word-spacing:1614.708000px;}
.ws17b{word-spacing:1617.300000px;}
._6f{margin-left:-993.783000px;}
._8{margin-left:-992.532600px;}
._7{margin-left:-991.455600px;}
._91{margin-left:-22.730400px;}
._23{margin-left:-20.521458px;}
._90{margin-left:-16.561200px;}
._8f{margin-left:-14.428800px;}
._22{margin-left:-11.768400px;}
._21{margin-left:-9.480000px;}
._95{margin-left:-8.165100px;}
._9{margin-left:-6.768000px;}
._5{margin-left:-5.691600px;}
._6{margin-left:-4.318800px;}
._1{margin-left:-2.400000px;}
._2{margin-left:-1.207200px;}
._0{width:1.430400px;}
._4{width:2.445600px;}
._3{width:4.103100px;}
._c{width:5.802000px;}
._88{width:6.854100px;}
._1b{width:8.220000px;}
._66{width:9.988200px;}
._1e{width:11.827200px;}
._8a{width:13.087200px;}
._89{width:14.880000px;}
._1c{width:17.460000px;}
._1f{width:19.200000px;}
._20{width:20.598000px;}
._94{width:21.720000px;}
._1a{width:22.927200px;}
._1d{width:25.260000px;}
._2b{width:27.535500px;}
._8b{width:30.856800px;}
._93{width:33.000000px;}
._8d{width:34.372200px;}
._8e{width:36.046200px;}
._92{width:39.640800px;}
._19{width:41.280000px;}
._8c{width:43.746600px;}
._e{width:46.480800px;}
._d{width:48.489600px;}
._24{width:50.889600px;}
._b{width:53.623200px;}
._a{width:59.259000px;}
._72{width:68.056200px;}
._3a{width:71.591400px;}
._6b{width:87.628200px;}
._6e{width:88.722000px;}
._13{width:91.735200px;}
._68{width:95.864400px;}
._6c{width:98.823000px;}
._52{width:101.890800px;}
._44{width:106.354800px;}
._27{width:111.655800px;}
._2f{width:113.943600px;}
._6a{width:117.497400px;}
._4b{width:121.141800px;}
._58{width:129.790800px;}
._61{width:131.520600px;}
._2a{width:133.306200px;}
._33{width:134.980200px;}
._60{width:136.375200px;}
._41{width:138.272400px;}
._5a{width:139.500000px;}
._7e{width:140.706600px;}
._7f{width:142.998000px;}
._28{width:144.411000px;}
._48{width:146.475000px;}
._87{width:147.504271px;}
._7b{width:148.539600px;}
._38{width:150.046200px;}
._7a{width:151.162200px;}
._16{width:154.900800px;}
._2d{width:156.016800px;}
._50{width:157.132800px;}
._49{width:158.360400px;}
._35{width:159.813000px;}
._71{width:164.275200px;}
._26{width:166.117200px;}
._54{width:167.902200px;}
._69{width:169.322700px;}
._3e{width:175.062000px;}
._5c{width:177.022500px;}
._31{width:179.285400px;}
._76{width:191.282400px;}
._78{width:193.235400px;}
._85{width:194.965200px;}
._74{width:201.846000px;}
._51{width:205.065600px;}
._81{width:208.915200px;}
._25{width:211.928400px;}
._53{width:215.292600px;}
._70{width:219.405600px;}
._5e{width:222.612300px;}
._18{width:227.643600px;}
._37{width:228.755100px;}
._47{width:230.790000px;}
._14{width:233.020800px;}
._55{width:234.081000px;}
._75{width:235.140600px;}
._5b{width:238.971000px;}
._3d{width:240.974100px;}
._4e{width:243.937200px;}
._84{width:245.464200px;}
._80{width:248.198400px;}
._7c{width:249.705000px;}
._79{width:253.332000px;}
._34{width:260.170500px;}
._36{width:261.942600px;}
._73{width:269.103000px;}
._4f{width:271.801800px;}
._67{width:273.476400px;}
._56{width:274.647600px;}
._82{width:275.834400px;}
._30{width:277.223700px;}
._4d{width:278.609400px;}
._3b{width:283.326900px;}
._5d{width:285.138000px;}
._15{width:288.507600px;}
._4c{width:289.881000px;}
._4a{width:291.610800px;}
._2c{width:294.903000px;}
._10{width:299.032800px;}
._3f{width:300.456900px;}
._77{width:301.543200px;}
._45{width:303.199800px;}
._65{width:304.389000px;}
._39{width:308.200800px;}
._12{width:311.364000px;}
._32{width:315.845400px;}
._11{width:319.679400px;}
._57{width:324.958800px;}
._2e{width:327.507600px;}
._40{width:329.683800px;}
._43{width:333.684000px;}
._17{width:342.069600px;}
._62{width:343.895400px;}
._7d{width:346.685400px;}
._42{width:348.277500px;}
._29{width:350.385600px;}
._46{width:355.836600px;}
._64{width:359.464800px;}
._5f{width:364.820400px;}
._6d{width:369.954000px;}
._3c{width:374.714400px;}
._63{width:377.152200px;}
._59{width:378.937800px;}
._83{width:444.223800px;}
._f{width:549.072000px;}
._86{width:776.827800px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:22.200000px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs9{font-size:46.921800px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:4.123950px;}
.y128{bottom:90.532050px;}
.y53{bottom:90.536400px;}
.yfb{bottom:90.560850px;}
.yf6{bottom:90.561000px;}
.yfd{bottom:90.567000px;}
.y5f{bottom:90.567150px;}
.y149{bottom:90.697800px;}
.y77{bottom:91.318050px;}
.y25{bottom:91.318200px;}
.y1a4{bottom:94.637550px;}
.y174{bottom:94.675800px;}
.y127{bottom:107.476800px;}
.y148{bottom:107.642550px;}
.y5e{bottom:107.786400px;}
.y52{bottom:107.792550px;}
.yab{bottom:107.798700px;}
.y82{bottom:107.804850px;}
.yfe{bottom:107.811000px;}
.yfa{bottom:107.817000px;}
.yf5{bottom:107.817150px;}
.y76{bottom:109.768050px;}
.y24{bottom:109.768200px;}
.y1a3{bottom:111.888300px;}
.y173{bottom:111.926550px;}
.y126{bottom:124.421550px;}
.y147{bottom:124.587300px;}
.y5d{bottom:125.042550px;}
.y51{bottom:125.048700px;}
.yaa{bottom:125.054850px;}
.y81{bottom:125.061000px;}
.yfc{bottom:125.067150px;}
.yf4{bottom:125.067300px;}
.y75{bottom:128.218050px;}
.y23{bottom:128.218200px;}
.y1a2{bottom:129.139050px;}
.y172{bottom:129.177300px;}
.yca{bottom:130.079700px;}
.yd1{bottom:131.281800px;}
.y125{bottom:141.366300px;}
.y146{bottom:141.532050px;}
.y5c{bottom:142.298700px;}
.y50{bottom:142.304850px;}
.ya9{bottom:142.311000px;}
.y80{bottom:142.317150px;}
.yf3{bottom:142.317300px;}
.y1a1{bottom:146.389800px;}
.y171{bottom:146.428050px;}
.y74{bottom:146.668050px;}
.y22{bottom:146.668200px;}
.yc9{bottom:147.330450px;}
.y124{bottom:158.311050px;}
.y145{bottom:158.476800px;}
.yd3{bottom:159.282450px;}
.y5b{bottom:159.554850px;}
.y7f{bottom:159.555000px;}
.y4f{bottom:159.561000px;}
.yf2{bottom:159.561150px;}
.ya8{bottom:159.567150px;}
.y1a0{bottom:163.640550px;}
.y170{bottom:163.678800px;}
.yc8{bottom:164.581200px;}
.y7a{bottom:165.118050px;}
.y21{bottom:165.118200px;}
.y123{bottom:175.255800px;}
.y144{bottom:175.421550px;}
.y5a{bottom:176.811000px;}
.y7e{bottom:176.811150px;}
.yf9{bottom:176.811300px;}
.y4e{bottom:176.817150px;}
.yf1{bottom:176.817300px;}
.y19f{bottom:180.891300px;}
.y16f{bottom:180.929550px;}
.yc7{bottom:181.831950px;}
.y73{bottom:183.568050px;}
.y20{bottom:183.568200px;}
.yd5{bottom:187.283250px;}
.y122{bottom:192.200550px;}
.y143{bottom:192.366300px;}
.y4d{bottom:194.067150px;}
.y7d{bottom:194.067300px;}
.yf8{bottom:194.067450px;}
.y19e{bottom:198.142050px;}
.y16e{bottom:198.180300px;}
.y72{bottom:202.018050px;}
.y1f{bottom:202.018200px;}
.yc6{bottom:203.560050px;}
.ya7{bottom:203.695050px;}
.y121{bottom:209.145300px;}
.y142{bottom:209.311050px;}
.y4c{bottom:211.311150px;}
.y59{bottom:211.317150px;}
.yf7{bottom:211.317450px;}
.yd7{bottom:215.272050px;}
.y19d{bottom:215.392800px;}
.y16d{bottom:215.431050px;}
.y71{bottom:220.468050px;}
.yc5{bottom:222.532050px;}
.ya6{bottom:222.667050px;}
.y120{bottom:226.090050px;}
.y141{bottom:226.255800px;}
.y4b{bottom:228.567300px;}
.y19c{bottom:232.643550px;}
.y16c{bottom:232.681800px;}
.y79{bottom:238.918050px;}
.y1e{bottom:238.918200px;}
.yc4{bottom:241.504050px;}
.ya5{bottom:241.639050px;}
.y11f{bottom:243.034800px;}
.y140{bottom:243.200550px;}
.y58{bottom:245.811150px;}
.y7c{bottom:245.817300px;}
.y19b{bottom:249.894300px;}
.y16b{bottom:249.932550px;}
.y70{bottom:257.368050px;}
.y11e{bottom:259.979550px;}
.y13f{bottom:260.145300px;}
.yc3{bottom:260.476050px;}
.ya4{bottom:260.611050px;}
.y57{bottom:263.067300px;}
.y19a{bottom:267.145050px;}
.y16a{bottom:267.183300px;}
.y78{bottom:275.818050px;}
.y1d{bottom:275.818200px;}
.y11d{bottom:276.924300px;}
.y13e{bottom:277.090050px;}
.yc2{bottom:279.448050px;}
.ya3{bottom:279.583050px;}
.y199{bottom:284.395800px;}
.y169{bottom:284.434050px;}
.y11c{bottom:293.869050px;}
.y13d{bottom:294.034800px;}
.y6f{bottom:294.268050px;}
.y4a{bottom:294.268200px;}
.yc1{bottom:298.420050px;}
.ya2{bottom:298.541100px;}
.y198{bottom:301.646550px;}
.y168{bottom:301.684800px;}
.ya1{bottom:306.497100px;}
.y11b{bottom:310.813800px;}
.y13c{bottom:310.979550px;}
.y56{bottom:312.718050px;}
.y49{bottom:312.718200px;}
.yc0{bottom:317.392050px;}
.y197{bottom:318.897300px;}
.y167{bottom:318.935550px;}
.y1c{bottom:324.250050px;}
.y11a{bottom:327.758550px;}
.y13b{bottom:327.924300px;}
.y55{bottom:331.168050px;}
.y48{bottom:331.168200px;}
.ya0{bottom:333.560100px;}
.y196{bottom:336.148050px;}
.y166{bottom:336.186300px;}
.ybf{bottom:336.364050px;}
.y1b{bottom:341.500800px;}
.y119{bottom:344.703300px;}
.y13a{bottom:344.869050px;}
.y54{bottom:349.618050px;}
.y47{bottom:349.618200px;}
.y9f{bottom:352.532100px;}
.y195{bottom:353.398800px;}
.y165{bottom:353.437050px;}
.ybe{bottom:355.336050px;}
.y1a{bottom:358.751550px;}
.y118{bottom:361.648050px;}
.y139{bottom:361.813800px;}
.y46{bottom:368.068050px;}
.y7b{bottom:368.068200px;}
.ycb{bottom:369.268050px;}
.y194{bottom:370.649550px;}
.y164{bottom:370.687800px;}
.y9e{bottom:371.504100px;}
.ybd{bottom:374.308050px;}
.y19{bottom:376.002300px;}
.y117{bottom:378.592800px;}
.y138{bottom:378.758550px;}
.y45{bottom:386.518050px;}
.yf0{bottom:386.518200px;}
.y193{bottom:387.900300px;}
.y163{bottom:387.938550px;}
.yd0{bottom:388.923000px;}
.y9d{bottom:390.476100px;}
.y18{bottom:393.253050px;}
.ybc{bottom:393.280050px;}
.y116{bottom:395.537550px;}
.y137{bottom:395.703300px;}
.y44{bottom:404.968050px;}
.yef{bottom:404.968200px;}
.y192{bottom:405.151050px;}
.y162{bottom:405.189300px;}
.ycc{bottom:408.202200px;}
.y9c{bottom:409.448100px;}
.ybb{bottom:412.252050px;}
.y115{bottom:412.482300px;}
.y136{bottom:412.648050px;}
.y191{bottom:422.401800px;}
.y161{bottom:422.440050px;}
.y43{bottom:423.418050px;}
.yee{bottom:423.418200px;}
.y17{bottom:427.754550px;}
.y9b{bottom:428.420100px;}
.y114{bottom:429.427050px;}
.y135{bottom:429.592800px;}
.yba{bottom:431.224050px;}
.ycd{bottom:436.202784px;}
.y190{bottom:439.652550px;}
.y1bc{bottom:439.678050px;}
.y160{bottom:439.690800px;}
.y42{bottom:441.868050px;}
.yed{bottom:441.868200px;}
.y16{bottom:445.005300px;}
.y113{bottom:446.371800px;}
.y134{bottom:446.537550px;}
.y9a{bottom:447.392100px;}
.yb9{bottom:450.196050px;}
.y18f{bottom:456.903300px;}
.y1bb{bottom:456.928800px;}
.y15f{bottom:456.941550px;}
.y41{bottom:460.318050px;}
.yec{bottom:460.318200px;}
.y15{bottom:462.256050px;}
.y112{bottom:463.316550px;}
.y133{bottom:463.482300px;}
.yce{bottom:464.203368px;}
.y99{bottom:466.364100px;}
.yb8{bottom:469.168050px;}
.y18e{bottom:474.154050px;}
.y15e{bottom:474.192300px;}
.y40{bottom:478.768050px;}
.yeb{bottom:478.768200px;}
.y14{bottom:479.506800px;}
.y111{bottom:480.261300px;}
.y132{bottom:480.427050px;}
.y98{bottom:485.336100px;}
.yb7{bottom:488.140050px;}
.y18d{bottom:491.404800px;}
.y15d{bottom:491.443050px;}
.ycf{bottom:492.203952px;}
.y13{bottom:496.757550px;}
.y110{bottom:497.206050px;}
.y3f{bottom:497.218050px;}
.yea{bottom:497.218200px;}
.y131{bottom:497.371800px;}
.y97{bottom:504.308100px;}
.yb6{bottom:507.112050px;}
.y18c{bottom:508.655550px;}
.y15c{bottom:508.693800px;}
.y12{bottom:514.008300px;}
.y10f{bottom:514.150800px;}
.y130{bottom:514.316550px;}
.y3e{bottom:515.668050px;}
.ye9{bottom:515.668200px;}
.yd2{bottom:520.204800px;}
.y96{bottom:523.280100px;}
.y18b{bottom:525.906300px;}
.y15b{bottom:525.944550px;}
.yb5{bottom:526.084050px;}
.y10e{bottom:531.095550px;}
.y11{bottom:531.259050px;}
.y12f{bottom:531.261300px;}
.y3d{bottom:534.118050px;}
.ye8{bottom:534.118200px;}
.y95{bottom:542.252100px;}
.y18a{bottom:543.157050px;}
.y1ba{bottom:543.182550px;}
.y15a{bottom:543.195300px;}
.yb4{bottom:545.056050px;}
.y10d{bottom:548.040300px;}
.yd4{bottom:548.205450px;}
.y12e{bottom:548.206050px;}
.y10{bottom:548.509800px;}
.y3c{bottom:552.568050px;}
.ye7{bottom:552.568200px;}
.y189{bottom:560.407800px;}
.y1b9{bottom:560.433300px;}
.y159{bottom:560.446050px;}
.y94{bottom:561.224100px;}
.yb3{bottom:564.028050px;}
.y10c{bottom:564.985050px;}
.y12d{bottom:565.150800px;}
.yf{bottom:565.760550px;}
.y3b{bottom:571.018050px;}
.yd6{bottom:576.206250px;}
.y188{bottom:577.658550px;}
.y1b8{bottom:577.684050px;}
.y158{bottom:577.696800px;}
.y93{bottom:580.196100px;}
.y10b{bottom:581.929800px;}
.y12c{bottom:582.095550px;}
.yb2{bottom:583.000050px;}
.ye{bottom:583.011300px;}
.y3a{bottom:589.468050px;}
.ye6{bottom:589.468200px;}
.y187{bottom:594.909300px;}
.y1b7{bottom:594.934800px;}
.y157{bottom:594.947550px;}
.y10a{bottom:598.874550px;}
.y12b{bottom:599.040300px;}
.y92{bottom:599.168100px;}
.yd{bottom:600.262050px;}
.yb1{bottom:601.972050px;}
.y39{bottom:607.918050px;}
.y186{bottom:612.160050px;}
.y1b6{bottom:612.185550px;}
.y156{bottom:612.198300px;}
.y109{bottom:615.819300px;}
.y12a{bottom:615.985050px;}
.yc{bottom:617.512800px;}
.y91{bottom:618.140100px;}
.yb0{bottom:620.944050px;}
.y38{bottom:626.368050px;}
.ye5{bottom:626.368200px;}
.y185{bottom:629.410800px;}
.y1b5{bottom:629.436300px;}
.y155{bottom:629.449050px;}
.y108{bottom:632.764050px;}
.y129{bottom:632.929800px;}
.yb{bottom:634.763550px;}
.y90{bottom:637.112100px;}
.yaf{bottom:639.916050px;}
.y37{bottom:644.818050px;}
.ye4{bottom:644.818200px;}
.y184{bottom:646.661550px;}
.y1b4{bottom:646.687050px;}
.y154{bottom:646.699800px;}
.ya{bottom:652.014300px;}
.y8f{bottom:656.084100px;}
.yae{bottom:658.888050px;}
.y36{bottom:663.268050px;}
.ye3{bottom:663.268200px;}
.y183{bottom:663.912300px;}
.y1b3{bottom:663.937800px;}
.y153{bottom:663.950550px;}
.y107{bottom:666.666300px;}
.y9{bottom:669.265050px;}
.y8e{bottom:675.056100px;}
.yad{bottom:677.846100px;}
.y182{bottom:681.163050px;}
.y1b2{bottom:681.188550px;}
.y152{bottom:681.201300px;}
.y35{bottom:681.718050px;}
.ye2{bottom:681.718200px;}
.yac{bottom:685.937100px;}
.y8{bottom:686.515800px;}
.y6e{bottom:688.392750px;}
.y8d{bottom:694.028100px;}
.y181{bottom:698.413800px;}
.y1b1{bottom:698.439300px;}
.y151{bottom:698.452050px;}
.y34{bottom:700.168050px;}
.ye1{bottom:700.168200px;}
.y7{bottom:703.766550px;}
.y6d{bottom:710.242050px;}
.y6b{bottom:711.637050px;}
.y8c{bottom:713.000100px;}
.y180{bottom:715.664550px;}
.y1b0{bottom:715.690050px;}
.y150{bottom:715.702800px;}
.y106{bottom:717.513300px;}
.y33{bottom:718.618050px;}
.ye0{bottom:718.618200px;}
.y6{bottom:721.017300px;}
.y6a{bottom:727.833000px;}
.y6c{bottom:729.214050px;}
.y8b{bottom:731.972100px;}
.y17f{bottom:732.915300px;}
.y1af{bottom:732.940800px;}
.y14f{bottom:732.953550px;}
.y105{bottom:734.458050px;}
.y32{bottom:737.068050px;}
.ydf{bottom:737.068200px;}
.y5{bottom:738.268050px;}
.y69{bottom:748.186050px;}
.y17e{bottom:750.166050px;}
.y1ae{bottom:750.191550px;}
.y14e{bottom:750.204300px;}
.y8a{bottom:750.944100px;}
.y31{bottom:755.518050px;}
.yde{bottom:755.518200px;}
.y68{bottom:757.672050px;}
.y17d{bottom:767.416800px;}
.y1ad{bottom:767.442300px;}
.y14d{bottom:767.455050px;}
.y104{bottom:768.360300px;}
.y89{bottom:769.916100px;}
.y30{bottom:773.968050px;}
.ydd{bottom:773.968200px;}
.y17c{bottom:784.667550px;}
.y1ac{bottom:784.693050px;}
.y14c{bottom:784.705800px;}
.y67{bottom:786.116100px;}
.y88{bottom:788.888100px;}
.y4{bottom:789.868050px;}
.y2f{bottom:792.418050px;}
.ydc{bottom:792.418200px;}
.y66{bottom:795.602100px;}
.y17b{bottom:801.918300px;}
.y1ab{bottom:801.943800px;}
.y14b{bottom:801.956550px;}
.y87{bottom:807.860100px;}
.y2e{bottom:810.868050px;}
.ydb{bottom:810.868200px;}
.y17a{bottom:819.169050px;}
.y1aa{bottom:819.194550px;}
.y103{bottom:819.207300px;}
.y65{bottom:824.046150px;}
.y86{bottom:826.832100px;}
.y2d{bottom:829.318050px;}
.yda{bottom:829.318200px;}
.y179{bottom:836.419800px;}
.y1a9{bottom:836.445300px;}
.y102{bottom:836.458050px;}
.y64{bottom:843.018150px;}
.y3{bottom:845.327700px;}
.y85{bottom:845.804100px;}
.y2c{bottom:847.768050px;}
.yd9{bottom:847.768200px;}
.y61{bottom:852.518100px;}
.y178{bottom:853.670550px;}
.y1a8{bottom:853.696050px;}
.y14a{bottom:853.708800px;}
.y27{bottom:857.391000px;}
.y63{bottom:861.990150px;}
.y84{bottom:864.776100px;}
.y26{bottom:864.889050px;}
.y2b{bottom:866.218050px;}
.y2{bottom:870.815700px;}
.y177{bottom:870.921300px;}
.y1a7{bottom:870.946800px;}
.y101{bottom:870.959550px;}
.y62{bottom:880.962150px;}
.y83{bottom:883.734150px;}
.y2a{bottom:884.668050px;}
.y176{bottom:888.172050px;}
.y1a6{bottom:888.197550px;}
.y100{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y60{bottom:899.934150px;}
.y29{bottom:903.118050px;}
.y175{bottom:905.422800px;}
.y1a5{bottom:905.448300px;}
.yff{bottom:905.461050px;}
.y28{bottom:955.942350px;}
.hb{height:15.295800px;}
.h1a{height:40.352748px;}
.h1c{height:45.543000px;}
.h6{height:46.614000px;}
.h5{height:48.195000px;}
.h11{height:48.378600px;}
.h13{height:49.521000px;}
.h7{height:49.827000px;}
.hc{height:50.868000px;}
.he{height:54.181800px;}
.hf{height:54.206400px;}
.h14{height:54.231000px;}
.h19{height:54.255600px;}
.h10{height:54.304800px;}
.h9{height:56.520000px;}
.h8{height:56.700000px;}
.ha{height:58.620000px;}
.hd{height:58.620600px;}
.h4{height:67.824000px;}
.h2{height:69.312000px;}
.h16{height:80.798400px;}
.h18{height:86.601600px;}
.h17{height:87.157800px;}
.h3{height:90.720000px;}
.h12{height:92.125800px;}
.h15{height:113.218200px;}
.h1b{height:225.049500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:453.471000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x18{left:1.019850px;}
.x8{left:25.730100px;}
.x7{left:28.599450px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.xa{left:85.033500px;}
.x19{left:87.286350px;}
.x1a{left:88.783500px;}
.x6{left:93.532050px;}
.x1c{left:97.787250px;}
.x2{left:102.027450px;}
.xb{left:114.793500px;}
.xc{left:123.302250px;}
.x16{left:126.177000px;}
.x14{left:127.759859px;}
.x15{left:128.780408px;}
.x17{left:132.252600px;}
.x13{left:133.261440px;}
.x1b{left:144.557250px;}
.x12{left:155.936400px;}
.x9{left:220.237200px;}
.x1d{left:353.408250px;}
.x1f{left:361.912200px;}
.x1e{left:366.158250px;}
.x20{left:374.662200px;}
.x11{left:375.904950px;}
.xf{left:387.874050px;}
.xd{left:396.378000px;}
.x10{left:397.429800px;}
.xe{left:406.063050px;}
.x4{left:650.769450px;}
.x3{left:653.638800px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v4{vertical-align:28.817600pt;}
.v3{vertical-align:33.728000pt;}
.ls81{letter-spacing:-5.666667pt;}
.ls41{letter-spacing:-5.456000pt;}
.ls3f{letter-spacing:-5.257600pt;}
.ls3e{letter-spacing:-4.464000pt;}
.ls54{letter-spacing:-2.933333pt;}
.ls6d{letter-spacing:-2.926400pt;}
.ls58{letter-spacing:-2.880000pt;}
.ls7c{letter-spacing:-2.784000pt;}
.ls40{letter-spacing:-1.934400pt;}
.ls3c{letter-spacing:-1.632000pt;}
.ls59{letter-spacing:-1.600000pt;}
.ls6f{letter-spacing:-1.493333pt;}
.ls47{letter-spacing:-1.438400pt;}
.ls5a{letter-spacing:-1.388800pt;}
.ls2{letter-spacing:-1.314667pt;}
.ls70{letter-spacing:-1.280000pt;}
.ls6b{letter-spacing:-1.200000pt;}
.ls42{letter-spacing:-1.140800pt;}
.ls4a{letter-spacing:-0.960000pt;}
.ls36{letter-spacing:-0.693333pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.533333pt;}
.ls3d{letter-spacing:-0.496000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls7f{letter-spacing:-0.453333pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls7d{letter-spacing:-0.384000pt;}
.ls4b{letter-spacing:-0.373333pt;}
.ls74{letter-spacing:-0.368000pt;}
.ls50{letter-spacing:-0.320000pt;}
.ls73{letter-spacing:-0.310933pt;}
.ls57{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls64{letter-spacing:-0.198400pt;}
.ls3{letter-spacing:-0.181333pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.148800pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.099200pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls17{letter-spacing:-0.049600pt;}
.ls67{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:-0.045333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls75{letter-spacing:0.026667pt;}
.ls28{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.072427pt;}
.ls6e{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.099200pt;}
.lsd{letter-spacing:0.106667pt;}
.ls5d{letter-spacing:0.112000pt;}
.ls4d{letter-spacing:0.115520pt;}
.ls4e{letter-spacing:0.122667pt;}
.ls4c{letter-spacing:0.125125pt;}
.ls27{letter-spacing:0.133333pt;}
.ls46{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.148800pt;}
.ls20{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.163467pt;}
.ls76{letter-spacing:0.165333pt;}
.ls29{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.197333pt;}
.ls32{letter-spacing:0.198400pt;}
.lsb{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.240000pt;}
.ls31{letter-spacing:0.248000pt;}
.lsc{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.272000pt;}
.ls6c{letter-spacing:0.279840pt;}
.ls48{letter-spacing:0.293333pt;}
.ls9{letter-spacing:0.296000pt;}
.ls1c{letter-spacing:0.297600pt;}
.ls11{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.325333pt;}
.ls1a{letter-spacing:0.347200pt;}
.ls51{letter-spacing:0.357333pt;}
.ls26{letter-spacing:0.373333pt;}
.ls60{letter-spacing:0.396800pt;}
.ls30{letter-spacing:0.400000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.446400pt;}
.ls69{letter-spacing:0.453333pt;}
.lse{letter-spacing:0.480000pt;}
.ls63{letter-spacing:0.497493pt;}
.ls65{letter-spacing:0.528000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls7a{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.608000pt;}
.ls79{letter-spacing:0.613333pt;}
.ls22{letter-spacing:0.640000pt;}
.ls7b{letter-spacing:0.666667pt;}
.ls5f{letter-spacing:0.672000pt;}
.ls23{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls7e{letter-spacing:0.770667pt;}
.ls61{letter-spacing:0.793600pt;}
.ls55{letter-spacing:0.800000pt;}
.ls5b{letter-spacing:0.853333pt;}
.ls6a{letter-spacing:0.906667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.066667pt;}
.ls1d{letter-spacing:1.104000pt;}
.ls77{letter-spacing:1.200000pt;}
.ls72{letter-spacing:1.226667pt;}
.ls78{letter-spacing:1.248000pt;}
.ls13{letter-spacing:1.344000pt;}
.ls24{letter-spacing:1.392000pt;}
.ls45{letter-spacing:1.432533pt;}
.ls34{letter-spacing:1.536000pt;}
.ls80{letter-spacing:1.586667pt;}
.ls53{letter-spacing:1.632000pt;}
.ls35{letter-spacing:1.653333pt;}
.ls62{letter-spacing:1.728000pt;}
.ls52{letter-spacing:1.824000pt;}
.ls82{letter-spacing:1.872000pt;}
.ls49{letter-spacing:1.968000pt;}
.ls71{letter-spacing:1.989333pt;}
.ls4f{letter-spacing:2.112000pt;}
.ls68{letter-spacing:2.448000pt;}
.ls66{letter-spacing:3.893333pt;}
.ls43{letter-spacing:109.070400pt;}
.ls44{letter-spacing:110.161600pt;}
.ls39{letter-spacing:133.622400pt;}
.ls38{letter-spacing:133.820800pt;}
.ls3a{letter-spacing:134.118400pt;}
.ls37{letter-spacing:135.804800pt;}
.ls3b{letter-spacing:140.467200pt;}
.wsff{word-spacing:-13.488000pt;}
.ws186{word-spacing:-13.248000pt;}
.ws131{word-spacing:-13.104000pt;}
.ws11b{word-spacing:-13.008000pt;}
.ws73{word-spacing:-12.912000pt;}
.ws4c{word-spacing:-12.768000pt;}
.ws1b{word-spacing:-12.720000pt;}
.ws170{word-spacing:-12.624000pt;}
.ws134{word-spacing:-11.786667pt;}
.ws16c{word-spacing:-11.733333pt;}
.ws147{word-spacing:-11.680000pt;}
.ws17e{word-spacing:-11.605333pt;}
.wsc3{word-spacing:-11.520000pt;}
.ws75{word-spacing:-11.466667pt;}
.ws100{word-spacing:-11.200000pt;}
.ws17c{word-spacing:-10.992000pt;}
.ws154{word-spacing:-10.896000pt;}
.ws173{word-spacing:-10.826667pt;}
.ws128{word-spacing:-10.720000pt;}
.ws158{word-spacing:-10.666667pt;}
.ws8d{word-spacing:-10.664000pt;}
.ws146{word-spacing:-10.560000pt;}
.ws17a{word-spacing:-10.506667pt;}
.ws132{word-spacing:-10.453333pt;}
.ws15a{word-spacing:-10.400000pt;}
.ws157{word-spacing:-10.346667pt;}
.ws159{word-spacing:-10.293333pt;}
.ws4e{word-spacing:-10.267200pt;}
.ws103{word-spacing:-10.240000pt;}
.ws76{word-spacing:-10.217600pt;}
.ws113{word-spacing:-10.186667pt;}
.ws61{word-spacing:-10.133333pt;}
.ws11c{word-spacing:-10.080000pt;}
.ws53{word-spacing:-10.026667pt;}
.ws127{word-spacing:-9.973333pt;}
.ws101{word-spacing:-9.920000pt;}
.ws112{word-spacing:-9.866667pt;}
.ws15d{word-spacing:-9.760000pt;}
.ws17f{word-spacing:-9.746667pt;}
.ws102{word-spacing:-9.706667pt;}
.ws15c{word-spacing:-9.600000pt;}
.ws176{word-spacing:-9.546667pt;}
.ws2{word-spacing:-9.520000pt;}
.ws174{word-spacing:-9.493333pt;}
.ws17d{word-spacing:-9.474667pt;}
.ws74{word-spacing:-9.386667pt;}
.ws52{word-spacing:-9.384000pt;}
.ws15e{word-spacing:-9.333333pt;}
.ws129{word-spacing:-9.275200pt;}
.wsf6{word-spacing:-8.758736pt;}
.ws156{word-spacing:-8.746667pt;}
.ws0{word-spacing:-8.704000pt;}
.ws155{word-spacing:-8.533333pt;}
.ws1{word-spacing:-8.522667pt;}
.ws1d{word-spacing:-7.912000pt;}
.ws166{word-spacing:-7.544000pt;}
.ws126{word-spacing:-7.146667pt;}
.ws11d{word-spacing:-7.093333pt;}
.ws133{word-spacing:-7.027093pt;}
.ws14d{word-spacing:-6.809440pt;}
.ws1c{word-spacing:-6.529600pt;}
.ws8a{word-spacing:-6.200000pt;}
.ws90{word-spacing:-5.406400pt;}
.wscb{word-spacing:-5.208000pt;}
.wsbc{word-spacing:-4.761600pt;}
.ws184{word-spacing:-4.080000pt;}
.wsbe{word-spacing:-3.670400pt;}
.wsbb{word-spacing:-3.273600pt;}
.ws12c{word-spacing:-2.506667pt;}
.wsc0{word-spacing:-2.480000pt;}
.wsfc{word-spacing:-2.293333pt;}
.ws107{word-spacing:-2.240000pt;}
.ws2e{word-spacing:-2.186667pt;}
.wsbd{word-spacing:-2.182400pt;}
.ws161{word-spacing:-2.133333pt;}
.ws19{word-spacing:-2.080000pt;}
.ws14{word-spacing:-1.866667pt;}
.ws119{word-spacing:-1.813333pt;}
.ws125{word-spacing:-1.760000pt;}
.ws27{word-spacing:-1.706667pt;}
.ws13{word-spacing:-1.653333pt;}
.ws34{word-spacing:-1.636800pt;}
.ws24{word-spacing:-1.600000pt;}
.ws32{word-spacing:-1.587200pt;}
.ws64{word-spacing:-1.546667pt;}
.ws106{word-spacing:-1.493333pt;}
.ws130{word-spacing:-1.488000pt;}
.ws6{word-spacing:-1.450667pt;}
.ws57{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.405333pt;}
.wsc1{word-spacing:-1.388800pt;}
.ws120{word-spacing:-1.386667pt;}
.ws71{word-spacing:-1.333333pt;}
.ws3e{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.269333pt;}
.ws58{word-spacing:-1.226667pt;}
.ws16b{word-spacing:-1.190400pt;}
.ws105{word-spacing:-1.120000pt;}
.ws39{word-spacing:-1.104000pt;}
.ws12{word-spacing:-1.066667pt;}
.ws4b{word-spacing:-1.041600pt;}
.ws3d{word-spacing:-1.013333pt;}
.ws5a{word-spacing:-0.960000pt;}
.ws14b{word-spacing:-0.906667pt;}
.ws116{word-spacing:-0.853333pt;}
.ws10{word-spacing:-0.816000pt;}
.ws70{word-spacing:-0.800000pt;}
.ws182{word-spacing:-0.770667pt;}
.ws18{word-spacing:-0.746667pt;}
.wsa{word-spacing:-0.725333pt;}
.ws43{word-spacing:-0.693333pt;}
.ws7{word-spacing:-0.680000pt;}
.ws4a{word-spacing:-0.644800pt;}
.ws16{word-spacing:-0.640000pt;}
.ws183{word-spacing:-0.634667pt;}
.ws7e{word-spacing:-0.586667pt;}
.ws38{word-spacing:-0.545600pt;}
.wsd{word-spacing:-0.544000pt;}
.ws28{word-spacing:-0.533333pt;}
.wsbf{word-spacing:-0.496000pt;}
.ws11a{word-spacing:-0.480000pt;}
.ws14c{word-spacing:-0.446400pt;}
.ws7a{word-spacing:-0.426667pt;}
.ws10f{word-spacing:-0.396800pt;}
.ws69{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.362667pt;}
.ws124{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.315733pt;}
.wsf0{word-spacing:-0.297600pt;}
.wsf5{word-spacing:-0.272000pt;}
.ws10b{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.213333pt;}
.ws33{word-spacing:-0.198400pt;}
.ws1a{word-spacing:-0.197333pt;}
.ws5{word-spacing:-0.181333pt;}
.ws118{word-spacing:-0.160000pt;}
.ws84{word-spacing:-0.148800pt;}
.wse{word-spacing:-0.136000pt;}
.wsfe{word-spacing:-0.125125pt;}
.ws66{word-spacing:-0.106667pt;}
.ws136{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.045333pt;}
.ws4{word-spacing:0.000000pt;}
.ws143{word-spacing:0.053333pt;}
.ws60{word-spacing:0.106667pt;}
.ws25{word-spacing:0.160000pt;}
.ws79{word-spacing:0.213333pt;}
.ws3f{word-spacing:0.266667pt;}
.ws111{word-spacing:0.297600pt;}
.ws168{word-spacing:0.310933pt;}
.ws6a{word-spacing:0.320000pt;}
.ws16a{word-spacing:0.347200pt;}
.ws115{word-spacing:0.373333pt;}
.ws63{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.480000pt;}
.wsba{word-spacing:0.496000pt;}
.ws5e{word-spacing:0.533333pt;}
.ws181{word-spacing:0.544000pt;}
.ws163{word-spacing:0.545600pt;}
.ws109{word-spacing:0.586667pt;}
.ws80{word-spacing:0.595200pt;}
.wsfb{word-spacing:0.640000pt;}
.ws35{word-spacing:0.744000pt;}
.ws26{word-spacing:0.746667pt;}
.ws11f{word-spacing:0.800000pt;}
.ws6e{word-spacing:0.853333pt;}
.ws42{word-spacing:0.906667pt;}
.ws55{word-spacing:0.960000pt;}
.ws85{word-spacing:0.992000pt;}
.ws20{word-spacing:1.013333pt;}
.wsf4{word-spacing:1.042667pt;}
.ws41{word-spacing:1.066667pt;}
.ws12e{word-spacing:1.120000pt;}
.ws165{word-spacing:1.140800pt;}
.ws121{word-spacing:1.173333pt;}
.ws9{word-spacing:1.178667pt;}
.ws160{word-spacing:1.226667pt;}
.ws15{word-spacing:1.280000pt;}
.ws13a{word-spacing:1.289600pt;}
.ws162{word-spacing:1.333333pt;}
.ws108{word-spacing:1.386667pt;}
.ws47{word-spacing:1.388800pt;}
.wsf2{word-spacing:1.405333pt;}
.ws110{word-spacing:1.438400pt;}
.ws5f{word-spacing:1.440000pt;}
.wsf3{word-spacing:1.450667pt;}
.ws46{word-spacing:1.488000pt;}
.ws67{word-spacing:1.493333pt;}
.ws37{word-spacing:1.537600pt;}
.wsfd{word-spacing:1.546667pt;}
.ws82{word-spacing:1.587200pt;}
.ws12d{word-spacing:1.600000pt;}
.ws36{word-spacing:1.636800pt;}
.ws23{word-spacing:1.653333pt;}
.wsef{word-spacing:1.686400pt;}
.ws2c{word-spacing:1.706667pt;}
.ws12f{word-spacing:1.736000pt;}
.ws10e{word-spacing:1.760000pt;}
.ws81{word-spacing:1.785600pt;}
.ws30{word-spacing:1.813333pt;}
.ws7f{word-spacing:1.866667pt;}
.ws7c{word-spacing:1.920000pt;}
.wsf1{word-spacing:1.934400pt;}
.wsfa{word-spacing:1.973333pt;}
.ws65{word-spacing:2.026667pt;}
.wsc2{word-spacing:2.033600pt;}
.ws56{word-spacing:2.080000pt;}
.ws29{word-spacing:2.133333pt;}
.ws49{word-spacing:2.182400pt;}
.ws2f{word-spacing:2.186667pt;}
.ws11{word-spacing:2.221333pt;}
.ws164{word-spacing:2.232000pt;}
.wsf9{word-spacing:2.240000pt;}
.ws153{word-spacing:2.281600pt;}
.ws2b{word-spacing:2.293333pt;}
.ws6d{word-spacing:2.346667pt;}
.ws48{word-spacing:2.380800pt;}
.ws40{word-spacing:2.400000pt;}
.ws31{word-spacing:2.453333pt;}
.ws10a{word-spacing:2.506667pt;}
.ws72{word-spacing:2.560000pt;}
.ws145{word-spacing:2.613333pt;}
.ws83{word-spacing:2.628800pt;}
.ws123{word-spacing:2.666667pt;}
.ws142{word-spacing:2.720000pt;}
.ws122{word-spacing:2.773333pt;}
.ws44{word-spacing:2.777600pt;}
.ws10d{word-spacing:2.826667pt;}
.ws144{word-spacing:2.933333pt;}
.ws6f{word-spacing:2.986667pt;}
.ws139{word-spacing:3.040000pt;}
.ws152{word-spacing:3.093333pt;}
.ws5b{word-spacing:3.146667pt;}
.ws178{word-spacing:3.200000pt;}
.ws13b{word-spacing:3.273600pt;}
.ws16f{word-spacing:3.306667pt;}
.ws6c{word-spacing:3.360000pt;}
.ws78{word-spacing:3.466667pt;}
.ws14a{word-spacing:3.520000pt;}
.ws150{word-spacing:3.573333pt;}
.ws148{word-spacing:3.626667pt;}
.ws2d{word-spacing:3.680000pt;}
.ws45{word-spacing:3.720000pt;}
.ws14f{word-spacing:3.733333pt;}
.ws149{word-spacing:3.840000pt;}
.ws13f{word-spacing:3.893333pt;}
.ws10c{word-spacing:3.946667pt;}
.ws179{word-spacing:4.000000pt;}
.ws6b{word-spacing:4.053333pt;}
.ws21{word-spacing:4.106667pt;}
.ws172{word-spacing:4.160000pt;}
.ws140{word-spacing:4.213333pt;}
.ws2a{word-spacing:4.266667pt;}
.ws7b{word-spacing:4.320000pt;}
.ws22{word-spacing:4.373333pt;}
.ws3b{word-spacing:4.533333pt;}
.ws117{word-spacing:4.586667pt;}
.ws141{word-spacing:4.693333pt;}
.ws13e{word-spacing:4.800000pt;}
.ws3c{word-spacing:4.960000pt;}
.ws16e{word-spacing:5.333333pt;}
.ws59{word-spacing:5.386667pt;}
.ws5d{word-spacing:5.440000pt;}
.ws169{word-spacing:5.813333pt;}
.ws5c{word-spacing:6.293333pt;}
.ws12b{word-spacing:6.506667pt;}
.ws13c{word-spacing:6.596800pt;}
.ws7d{word-spacing:6.613333pt;}
.ws151{word-spacing:7.573333pt;}
.ws68{word-spacing:9.813333pt;}
.ws138{word-spacing:14.186667pt;}
.ws8f{word-spacing:23.510400pt;}
.ws137{word-spacing:30.880000pt;}
.ws8e{word-spacing:31.595200pt;}
.ws88{word-spacing:32.686400pt;}
.ws91{word-spacing:47.467200pt;}
.wsb7{word-spacing:62.148800pt;}
.wsb2{word-spacing:69.043200pt;}
.ws92{word-spacing:69.291200pt;}
.ws94{word-spacing:70.382400pt;}
.ws99{word-spacing:71.126400pt;}
.ws9c{word-spacing:72.217600pt;}
.wsa3{word-spacing:73.904000pt;}
.ws86{word-spacing:74.499200pt;}
.ws97{word-spacing:77.822400pt;}
.ws8b{word-spacing:84.617600pt;}
.wsae{word-spacing:88.436800pt;}
.wsf7{word-spacing:89.797898pt;}
.ws9e{word-spacing:90.371200pt;}
.wsb3{word-spacing:92.156800pt;}
.wscd{word-spacing:94.339200pt;}
.wsc8{word-spacing:94.785600pt;}
.wsd3{word-spacing:97.712000pt;}
.wsc5{word-spacing:98.406400pt;}
.wsc9{word-spacing:99.596800pt;}
.wsce{word-spacing:100.539200pt;}
.wsb0{word-spacing:101.928000pt;}
.wsa1{word-spacing:102.374400pt;}
.wsa7{word-spacing:104.110400pt;}
.wsab{word-spacing:105.052800pt;}
.ws95{word-spacing:106.739200pt;}
.wsa5{word-spacing:109.219200pt;}
.wsaa{word-spacing:111.054400pt;}
.ws89{word-spacing:111.252800pt;}
.wsaf{word-spacing:111.947200pt;}
.wsdd{word-spacing:112.691200pt;}
.ws8c{word-spacing:113.236800pt;}
.wsb5{word-spacing:114.328000pt;}
.ws9f{word-spacing:115.072000pt;}
.wsad{word-spacing:115.369600pt;}
.wse2{word-spacing:115.915200pt;}
.wsec{word-spacing:116.163200pt;}
.wsca{word-spacing:116.808000pt;}
.wsd4{word-spacing:117.899200pt;}
.wsa4{word-spacing:123.504000pt;}
.wsdb{word-spacing:124.942400pt;}
.wsb6{word-spacing:126.331200pt;}
.ws93{word-spacing:128.464000pt;}
.wse4{word-spacing:128.712000pt;}
.wsd6{word-spacing:129.555200pt;}
.ws9a{word-spacing:130.051200pt;}
.ws9d{word-spacing:130.795200pt;}
.wse3{word-spacing:131.192000pt;}
.ws98{word-spacing:132.481600pt;}
.wsa8{word-spacing:133.572800pt;}
.wse7{word-spacing:137.193600pt;}
.wse1{word-spacing:137.292800pt;}
.wsdf{word-spacing:141.012800pt;}
.ws9b{word-spacing:148.750400pt;}
.ws96{word-spacing:148.948800pt;}
.wsb4{word-spacing:149.246400pt;}
.wsd1{word-spacing:149.841600pt;}
.wsa0{word-spacing:150.932800pt;}
.wsd8{word-spacing:151.428800pt;}
.wsa9{word-spacing:152.024000pt;}
.wsa2{word-spacing:155.595200pt;}
.wsb8{word-spacing:156.686400pt;}
.ws87{word-spacing:166.110400pt;}
.wscf{word-spacing:167.648000pt;}
.wsc6{word-spacing:167.896000pt;}
.wsc4{word-spacing:167.945600pt;}
.wsac{word-spacing:173.798400pt;}
.wse9{word-spacing:180.841600pt;}
.wse8{word-spacing:189.075200pt;}
.wsd7{word-spacing:196.961600pt;}
.wsde{word-spacing:197.656000pt;}
.wsea{word-spacing:212.784000pt;}
.wsa6{word-spacing:217.892800pt;}
.wsc7{word-spacing:231.334400pt;}
.wsb1{word-spacing:232.574400pt;}
.wsd9{word-spacing:241.155200pt;}
.wscc{word-spacing:242.792000pt;}
.wsd5{word-spacing:246.611200pt;}
.wse6{word-spacing:247.900800pt;}
.wseb{word-spacing:257.721600pt;}
.wsda{word-spacing:265.012800pt;}
.wsdc{word-spacing:269.526400pt;}
.wse5{word-spacing:269.824000pt;}
.wse0{word-spacing:280.934400pt;}
.wsd2{word-spacing:307.073600pt;}
.wsd0{word-spacing:312.132800pt;}
.wsed{word-spacing:364.113600pt;}
.ws51{word-spacing:375.174400pt;}
.ws50{word-spacing:417.686560pt;}
.ws4f{word-spacing:418.177600pt;}
.ws4d{word-spacing:500.712000pt;}
.ws104{word-spacing:881.088000pt;}
.ws187{word-spacing:881.280000pt;}
.ws135{word-spacing:881.472000pt;}
.ws167{word-spacing:881.520000pt;}
.ws11e{word-spacing:881.568000pt;}
.ws77{word-spacing:881.664000pt;}
.ws54{word-spacing:881.760000pt;}
.ws1e{word-spacing:881.808000pt;}
.ws177{word-spacing:881.856000pt;}
.ws171{word-spacing:881.904000pt;}
.wsee{word-spacing:883.008000pt;}
.ws180{word-spacing:883.536000pt;}
.ws15b{word-spacing:883.680000pt;}
.wsf8{word-spacing:1428.048000pt;}
.ws114{word-spacing:1428.336000pt;}
.ws185{word-spacing:1428.960000pt;}
.ws15f{word-spacing:1429.344000pt;}
.ws16d{word-spacing:1429.632000pt;}
.ws3a{word-spacing:1430.496000pt;}
.ws62{word-spacing:1431.648000pt;}
.ws175{word-spacing:1431.696000pt;}
.ws13d{word-spacing:1432.128000pt;}
.ws12a{word-spacing:1432.560000pt;}
.ws14e{word-spacing:1434.432000pt;}
.wsb9{word-spacing:1435.296000pt;}
.ws17b{word-spacing:1437.600000pt;}
._6f{margin-left:-883.362667pt;}
._8{margin-left:-882.251200pt;}
._7{margin-left:-881.293867pt;}
._91{margin-left:-20.204800pt;}
._23{margin-left:-18.241296pt;}
._90{margin-left:-14.721067pt;}
._8f{margin-left:-12.825600pt;}
._22{margin-left:-10.460800pt;}
._21{margin-left:-8.426667pt;}
._95{margin-left:-7.257867pt;}
._9{margin-left:-6.016000pt;}
._5{margin-left:-5.059200pt;}
._6{margin-left:-3.838933pt;}
._1{margin-left:-2.133333pt;}
._2{margin-left:-1.073067pt;}
._0{width:1.271467pt;}
._4{width:2.173867pt;}
._3{width:3.647200pt;}
._c{width:5.157333pt;}
._88{width:6.092533pt;}
._1b{width:7.306667pt;}
._66{width:8.878400pt;}
._1e{width:10.513067pt;}
._8a{width:11.633067pt;}
._89{width:13.226667pt;}
._1c{width:15.520000pt;}
._1f{width:17.066667pt;}
._20{width:18.309333pt;}
._94{width:19.306667pt;}
._1a{width:20.379733pt;}
._1d{width:22.453333pt;}
._2b{width:24.476000pt;}
._8b{width:27.428267pt;}
._93{width:29.333333pt;}
._8d{width:30.553067pt;}
._8e{width:32.041067pt;}
._92{width:35.236267pt;}
._19{width:36.693333pt;}
._8c{width:38.885867pt;}
._e{width:41.316267pt;}
._d{width:43.101867pt;}
._24{width:45.235200pt;}
._b{width:47.665067pt;}
._a{width:52.674667pt;}
._72{width:60.494400pt;}
._3a{width:63.636800pt;}
._6b{width:77.891733pt;}
._6e{width:78.864000pt;}
._13{width:81.542400pt;}
._68{width:85.212800pt;}
._6c{width:87.842667pt;}
._52{width:90.569600pt;}
._44{width:94.537600pt;}
._27{width:99.249600pt;}
._2f{width:101.283200pt;}
._6a{width:104.442133pt;}
._4b{width:107.681600pt;}
._58{width:115.369600pt;}
._61{width:116.907200pt;}
._2a{width:118.494400pt;}
._33{width:119.982400pt;}
._60{width:121.222400pt;}
._41{width:122.908800pt;}
._5a{width:124.000000pt;}
._7e{width:125.072533pt;}
._7f{width:127.109333pt;}
._28{width:128.365333pt;}
._48{width:130.200000pt;}
._87{width:131.114908pt;}
._7b{width:132.035200pt;}
._38{width:133.374400pt;}
._7a{width:134.366400pt;}
._16{width:137.689600pt;}
._2d{width:138.681600pt;}
._50{width:139.673600pt;}
._49{width:140.764800pt;}
._35{width:142.056000pt;}
._71{width:146.022400pt;}
._26{width:147.659733pt;}
._54{width:149.246400pt;}
._69{width:150.509067pt;}
._3e{width:155.610667pt;}
._5c{width:157.353333pt;}
._31{width:159.364800pt;}
._76{width:170.028800pt;}
._78{width:171.764800pt;}
._85{width:173.302400pt;}
._74{width:179.418667pt;}
._51{width:182.280533pt;}
._81{width:185.702400pt;}
._25{width:188.380800pt;}
._53{width:191.371200pt;}
._70{width:195.027200pt;}
._5e{width:197.877600pt;}
._18{width:202.349867pt;}
._37{width:203.337867pt;}
._47{width:205.146667pt;}
._14{width:207.129600pt;}
._55{width:208.072000pt;}
._75{width:209.013867pt;}
._5b{width:212.418667pt;}
._3d{width:214.199200pt;}
._4e{width:216.833067pt;}
._84{width:218.190400pt;}
._80{width:220.620800pt;}
._7c{width:221.960000pt;}
._79{width:225.184000pt;}
._34{width:231.262667pt;}
._36{width:232.837867pt;}
._73{width:239.202667pt;}
._4f{width:241.601600pt;}
._67{width:243.090133pt;}
._56{width:244.131200pt;}
._82{width:245.186133pt;}
._30{width:246.421067pt;}
._4d{width:247.652800pt;}
._3b{width:251.846133pt;}
._5d{width:253.456000pt;}
._15{width:256.451200pt;}
._4c{width:257.672000pt;}
._4a{width:259.209600pt;}
._2c{width:262.136000pt;}
._10{width:265.806933pt;}
._3f{width:267.072800pt;}
._77{width:268.038400pt;}
._45{width:269.510933pt;}
._65{width:270.568000pt;}
._39{width:273.956267pt;}
._12{width:276.768000pt;}
._32{width:280.751467pt;}
._11{width:284.159467pt;}
._57{width:288.852267pt;}
._2e{width:291.117867pt;}
._40{width:293.052267pt;}
._43{width:296.608000pt;}
._17{width:304.061867pt;}
._62{width:305.684800pt;}
._7d{width:308.164800pt;}
._42{width:309.580000pt;}
._29{width:311.453867pt;}
._46{width:316.299200pt;}
._64{width:319.524267pt;}
._5f{width:324.284800pt;}
._6d{width:328.848000pt;}
._3c{width:333.079467pt;}
._63{width:335.246400pt;}
._59{width:336.833600pt;}
._83{width:394.865600pt;}
._f{width:488.064000pt;}
._86{width:690.513600pt;}
.fs4{font-size:19.733333pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs9{font-size:41.708267pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.665733pt;}
.y128{bottom:80.472933pt;}
.y53{bottom:80.476800pt;}
.yfb{bottom:80.498533pt;}
.yf6{bottom:80.498667pt;}
.yfd{bottom:80.504000pt;}
.y5f{bottom:80.504133pt;}
.y149{bottom:80.620267pt;}
.y77{bottom:81.171600pt;}
.y25{bottom:81.171733pt;}
.y1a4{bottom:84.122267pt;}
.y174{bottom:84.156267pt;}
.y127{bottom:95.534933pt;}
.y148{bottom:95.682267pt;}
.y5e{bottom:95.810133pt;}
.y52{bottom:95.815600pt;}
.yab{bottom:95.821067pt;}
.y82{bottom:95.826533pt;}
.yfe{bottom:95.832000pt;}
.yfa{bottom:95.837333pt;}
.yf5{bottom:95.837467pt;}
.y76{bottom:97.571600pt;}
.y24{bottom:97.571733pt;}
.y1a3{bottom:99.456267pt;}
.y173{bottom:99.490267pt;}
.y126{bottom:110.596933pt;}
.y147{bottom:110.744267pt;}
.y5d{bottom:111.148933pt;}
.y51{bottom:111.154400pt;}
.yaa{bottom:111.159867pt;}
.y81{bottom:111.165333pt;}
.yfc{bottom:111.170800pt;}
.yf4{bottom:111.170933pt;}
.y75{bottom:113.971600pt;}
.y23{bottom:113.971733pt;}
.y1a2{bottom:114.790267pt;}
.y172{bottom:114.824267pt;}
.yca{bottom:115.626400pt;}
.yd1{bottom:116.694933pt;}
.y125{bottom:125.658933pt;}
.y146{bottom:125.806267pt;}
.y5c{bottom:126.487733pt;}
.y50{bottom:126.493200pt;}
.ya9{bottom:126.498667pt;}
.y80{bottom:126.504133pt;}
.yf3{bottom:126.504267pt;}
.y1a1{bottom:130.124267pt;}
.y171{bottom:130.158267pt;}
.y74{bottom:130.371600pt;}
.y22{bottom:130.371733pt;}
.yc9{bottom:130.960400pt;}
.y124{bottom:140.720933pt;}
.y145{bottom:140.868267pt;}
.yd3{bottom:141.584400pt;}
.y5b{bottom:141.826533pt;}
.y7f{bottom:141.826667pt;}
.y4f{bottom:141.832000pt;}
.yf2{bottom:141.832133pt;}
.ya8{bottom:141.837467pt;}
.y1a0{bottom:145.458267pt;}
.y170{bottom:145.492267pt;}
.yc8{bottom:146.294400pt;}
.y7a{bottom:146.771600pt;}
.y21{bottom:146.771733pt;}
.y123{bottom:155.782933pt;}
.y144{bottom:155.930267pt;}
.y5a{bottom:157.165333pt;}
.y7e{bottom:157.165467pt;}
.yf9{bottom:157.165600pt;}
.y4e{bottom:157.170800pt;}
.yf1{bottom:157.170933pt;}
.y19f{bottom:160.792267pt;}
.y16f{bottom:160.826267pt;}
.yc7{bottom:161.628400pt;}
.y73{bottom:163.171600pt;}
.y20{bottom:163.171733pt;}
.yd5{bottom:166.474000pt;}
.y122{bottom:170.844933pt;}
.y143{bottom:170.992267pt;}
.y4d{bottom:172.504133pt;}
.y7d{bottom:172.504267pt;}
.yf8{bottom:172.504400pt;}
.y19e{bottom:176.126267pt;}
.y16e{bottom:176.160267pt;}
.y72{bottom:179.571600pt;}
.y1f{bottom:179.571733pt;}
.yc6{bottom:180.942267pt;}
.ya7{bottom:181.062267pt;}
.y121{bottom:185.906933pt;}
.y142{bottom:186.054267pt;}
.y4c{bottom:187.832133pt;}
.y59{bottom:187.837467pt;}
.yf7{bottom:187.837733pt;}
.yd7{bottom:191.352933pt;}
.y19d{bottom:191.460267pt;}
.y16d{bottom:191.494267pt;}
.y71{bottom:195.971600pt;}
.yc5{bottom:197.806267pt;}
.ya6{bottom:197.926267pt;}
.y120{bottom:200.968933pt;}
.y141{bottom:201.116267pt;}
.y4b{bottom:203.170933pt;}
.y19c{bottom:206.794267pt;}
.y16c{bottom:206.828267pt;}
.y79{bottom:212.371600pt;}
.y1e{bottom:212.371733pt;}
.yc4{bottom:214.670267pt;}
.ya5{bottom:214.790267pt;}
.y11f{bottom:216.030933pt;}
.y140{bottom:216.178267pt;}
.y58{bottom:218.498800pt;}
.y7c{bottom:218.504267pt;}
.y19b{bottom:222.128267pt;}
.y16b{bottom:222.162267pt;}
.y70{bottom:228.771600pt;}
.y11e{bottom:231.092933pt;}
.y13f{bottom:231.240267pt;}
.yc3{bottom:231.534267pt;}
.ya4{bottom:231.654267pt;}
.y57{bottom:233.837600pt;}
.y19a{bottom:237.462267pt;}
.y16a{bottom:237.496267pt;}
.y78{bottom:245.171600pt;}
.y1d{bottom:245.171733pt;}
.y11d{bottom:246.154933pt;}
.y13e{bottom:246.302267pt;}
.yc2{bottom:248.398267pt;}
.ya3{bottom:248.518267pt;}
.y199{bottom:252.796267pt;}
.y169{bottom:252.830267pt;}
.y11c{bottom:261.216933pt;}
.y13d{bottom:261.364267pt;}
.y6f{bottom:261.571600pt;}
.y4a{bottom:261.571733pt;}
.yc1{bottom:265.262267pt;}
.ya2{bottom:265.369867pt;}
.y198{bottom:268.130267pt;}
.y168{bottom:268.164267pt;}
.ya1{bottom:272.441867pt;}
.y11b{bottom:276.278933pt;}
.y13c{bottom:276.426267pt;}
.y56{bottom:277.971600pt;}
.y49{bottom:277.971733pt;}
.yc0{bottom:282.126267pt;}
.y197{bottom:283.464267pt;}
.y167{bottom:283.498267pt;}
.y1c{bottom:288.222267pt;}
.y11a{bottom:291.340933pt;}
.y13b{bottom:291.488267pt;}
.y55{bottom:294.371600pt;}
.y48{bottom:294.371733pt;}
.ya0{bottom:296.497867pt;}
.y196{bottom:298.798267pt;}
.y166{bottom:298.832267pt;}
.ybf{bottom:298.990267pt;}
.y1b{bottom:303.556267pt;}
.y119{bottom:306.402933pt;}
.y13a{bottom:306.550267pt;}
.y54{bottom:310.771600pt;}
.y47{bottom:310.771733pt;}
.y9f{bottom:313.361867pt;}
.y195{bottom:314.132267pt;}
.y165{bottom:314.166267pt;}
.ybe{bottom:315.854267pt;}
.y1a{bottom:318.890267pt;}
.y118{bottom:321.464933pt;}
.y139{bottom:321.612267pt;}
.y46{bottom:327.171600pt;}
.y7b{bottom:327.171733pt;}
.ycb{bottom:328.238267pt;}
.y194{bottom:329.466267pt;}
.y164{bottom:329.500267pt;}
.y9e{bottom:330.225867pt;}
.ybd{bottom:332.718267pt;}
.y19{bottom:334.224267pt;}
.y117{bottom:336.526933pt;}
.y138{bottom:336.674267pt;}
.y45{bottom:343.571600pt;}
.yf0{bottom:343.571733pt;}
.y193{bottom:344.800267pt;}
.y163{bottom:344.834267pt;}
.yd0{bottom:345.709333pt;}
.y9d{bottom:347.089867pt;}
.y18{bottom:349.558267pt;}
.ybc{bottom:349.582267pt;}
.y116{bottom:351.588933pt;}
.y137{bottom:351.736267pt;}
.y44{bottom:359.971600pt;}
.yef{bottom:359.971733pt;}
.y192{bottom:360.134267pt;}
.y162{bottom:360.168267pt;}
.ycc{bottom:362.846400pt;}
.y9c{bottom:363.953867pt;}
.ybb{bottom:366.446267pt;}
.y115{bottom:366.650933pt;}
.y136{bottom:366.798267pt;}
.y191{bottom:375.468267pt;}
.y161{bottom:375.502267pt;}
.y43{bottom:376.371600pt;}
.yee{bottom:376.371733pt;}
.y17{bottom:380.226267pt;}
.y9b{bottom:380.817867pt;}
.y114{bottom:381.712933pt;}
.y135{bottom:381.860267pt;}
.yba{bottom:383.310267pt;}
.ycd{bottom:387.735808pt;}
.y190{bottom:390.802267pt;}
.y1bc{bottom:390.824933pt;}
.y160{bottom:390.836267pt;}
.y42{bottom:392.771600pt;}
.yed{bottom:392.771733pt;}
.y16{bottom:395.560267pt;}
.y113{bottom:396.774933pt;}
.y134{bottom:396.922267pt;}
.y9a{bottom:397.681867pt;}
.yb9{bottom:400.174267pt;}
.y18f{bottom:406.136267pt;}
.y1bb{bottom:406.158933pt;}
.y15f{bottom:406.170267pt;}
.y41{bottom:409.171600pt;}
.yec{bottom:409.171733pt;}
.y15{bottom:410.894267pt;}
.y112{bottom:411.836933pt;}
.y133{bottom:411.984267pt;}
.yce{bottom:412.625216pt;}
.y99{bottom:414.545867pt;}
.yb8{bottom:417.038267pt;}
.y18e{bottom:421.470267pt;}
.y15e{bottom:421.504267pt;}
.y40{bottom:425.571600pt;}
.yeb{bottom:425.571733pt;}
.y14{bottom:426.228267pt;}
.y111{bottom:426.898933pt;}
.y132{bottom:427.046267pt;}
.y98{bottom:431.409867pt;}
.yb7{bottom:433.902267pt;}
.y18d{bottom:436.804267pt;}
.y15d{bottom:436.838267pt;}
.ycf{bottom:437.514624pt;}
.y13{bottom:441.562267pt;}
.y110{bottom:441.960933pt;}
.y3f{bottom:441.971600pt;}
.yea{bottom:441.971733pt;}
.y131{bottom:442.108267pt;}
.y97{bottom:448.273867pt;}
.yb6{bottom:450.766267pt;}
.y18c{bottom:452.138267pt;}
.y15c{bottom:452.172267pt;}
.y12{bottom:456.896267pt;}
.y10f{bottom:457.022933pt;}
.y130{bottom:457.170267pt;}
.y3e{bottom:458.371600pt;}
.ye9{bottom:458.371733pt;}
.yd2{bottom:462.404267pt;}
.y96{bottom:465.137867pt;}
.y18b{bottom:467.472267pt;}
.y15b{bottom:467.506267pt;}
.yb5{bottom:467.630267pt;}
.y10e{bottom:472.084933pt;}
.y11{bottom:472.230267pt;}
.y12f{bottom:472.232267pt;}
.y3d{bottom:474.771600pt;}
.ye8{bottom:474.771733pt;}
.y95{bottom:482.001867pt;}
.y18a{bottom:482.806267pt;}
.y1ba{bottom:482.828933pt;}
.y15a{bottom:482.840267pt;}
.yb4{bottom:484.494267pt;}
.y10d{bottom:487.146933pt;}
.yd4{bottom:487.293733pt;}
.y12e{bottom:487.294267pt;}
.y10{bottom:487.564267pt;}
.y3c{bottom:491.171600pt;}
.ye7{bottom:491.171733pt;}
.y189{bottom:498.140267pt;}
.y1b9{bottom:498.162933pt;}
.y159{bottom:498.174267pt;}
.y94{bottom:498.865867pt;}
.yb3{bottom:501.358267pt;}
.y10c{bottom:502.208933pt;}
.y12d{bottom:502.356267pt;}
.yf{bottom:502.898267pt;}
.y3b{bottom:507.571600pt;}
.yd6{bottom:512.183333pt;}
.y188{bottom:513.474267pt;}
.y1b8{bottom:513.496933pt;}
.y158{bottom:513.508267pt;}
.y93{bottom:515.729867pt;}
.y10b{bottom:517.270933pt;}
.y12c{bottom:517.418267pt;}
.yb2{bottom:518.222267pt;}
.ye{bottom:518.232267pt;}
.y3a{bottom:523.971600pt;}
.ye6{bottom:523.971733pt;}
.y187{bottom:528.808267pt;}
.y1b7{bottom:528.830933pt;}
.y157{bottom:528.842267pt;}
.y10a{bottom:532.332933pt;}
.y12b{bottom:532.480267pt;}
.y92{bottom:532.593867pt;}
.yd{bottom:533.566267pt;}
.yb1{bottom:535.086267pt;}
.y39{bottom:540.371600pt;}
.y186{bottom:544.142267pt;}
.y1b6{bottom:544.164933pt;}
.y156{bottom:544.176267pt;}
.y109{bottom:547.394933pt;}
.y12a{bottom:547.542267pt;}
.yc{bottom:548.900267pt;}
.y91{bottom:549.457867pt;}
.yb0{bottom:551.950267pt;}
.y38{bottom:556.771600pt;}
.ye5{bottom:556.771733pt;}
.y185{bottom:559.476267pt;}
.y1b5{bottom:559.498933pt;}
.y155{bottom:559.510267pt;}
.y108{bottom:562.456933pt;}
.y129{bottom:562.604267pt;}
.yb{bottom:564.234267pt;}
.y90{bottom:566.321867pt;}
.yaf{bottom:568.814267pt;}
.y37{bottom:573.171600pt;}
.ye4{bottom:573.171733pt;}
.y184{bottom:574.810267pt;}
.y1b4{bottom:574.832933pt;}
.y154{bottom:574.844267pt;}
.ya{bottom:579.568267pt;}
.y8f{bottom:583.185867pt;}
.yae{bottom:585.678267pt;}
.y36{bottom:589.571600pt;}
.ye3{bottom:589.571733pt;}
.y183{bottom:590.144267pt;}
.y1b3{bottom:590.166933pt;}
.y153{bottom:590.178267pt;}
.y107{bottom:592.592267pt;}
.y9{bottom:594.902267pt;}
.y8e{bottom:600.049867pt;}
.yad{bottom:602.529867pt;}
.y182{bottom:605.478267pt;}
.y1b2{bottom:605.500933pt;}
.y152{bottom:605.512267pt;}
.y35{bottom:605.971600pt;}
.ye2{bottom:605.971733pt;}
.yac{bottom:609.721867pt;}
.y8{bottom:610.236267pt;}
.y6e{bottom:611.904667pt;}
.y8d{bottom:616.913867pt;}
.y181{bottom:620.812267pt;}
.y1b1{bottom:620.834933pt;}
.y151{bottom:620.846267pt;}
.y34{bottom:622.371600pt;}
.ye1{bottom:622.371733pt;}
.y7{bottom:625.570267pt;}
.y6d{bottom:631.326267pt;}
.y6b{bottom:632.566267pt;}
.y8c{bottom:633.777867pt;}
.y180{bottom:636.146267pt;}
.y1b0{bottom:636.168933pt;}
.y150{bottom:636.180267pt;}
.y106{bottom:637.789600pt;}
.y33{bottom:638.771600pt;}
.ye0{bottom:638.771733pt;}
.y6{bottom:640.904267pt;}
.y6a{bottom:646.962667pt;}
.y6c{bottom:648.190267pt;}
.y8b{bottom:650.641867pt;}
.y17f{bottom:651.480267pt;}
.y1af{bottom:651.502933pt;}
.y14f{bottom:651.514267pt;}
.y105{bottom:652.851600pt;}
.y32{bottom:655.171600pt;}
.ydf{bottom:655.171733pt;}
.y5{bottom:656.238267pt;}
.y69{bottom:665.054267pt;}
.y17e{bottom:666.814267pt;}
.y1ae{bottom:666.836933pt;}
.y14e{bottom:666.848267pt;}
.y8a{bottom:667.505867pt;}
.y31{bottom:671.571600pt;}
.yde{bottom:671.571733pt;}
.y68{bottom:673.486267pt;}
.y17d{bottom:682.148267pt;}
.y1ad{bottom:682.170933pt;}
.y14d{bottom:682.182267pt;}
.y104{bottom:682.986933pt;}
.y89{bottom:684.369867pt;}
.y30{bottom:687.971600pt;}
.ydd{bottom:687.971733pt;}
.y17c{bottom:697.482267pt;}
.y1ac{bottom:697.504933pt;}
.y14c{bottom:697.516267pt;}
.y67{bottom:698.769867pt;}
.y88{bottom:701.233867pt;}
.y4{bottom:702.104933pt;}
.y2f{bottom:704.371600pt;}
.ydc{bottom:704.371733pt;}
.y66{bottom:707.201867pt;}
.y17b{bottom:712.816267pt;}
.y1ab{bottom:712.838933pt;}
.y14b{bottom:712.850267pt;}
.y87{bottom:718.097867pt;}
.y2e{bottom:720.771600pt;}
.ydb{bottom:720.771733pt;}
.y17a{bottom:728.150267pt;}
.y1aa{bottom:728.172933pt;}
.y103{bottom:728.184267pt;}
.y65{bottom:732.485467pt;}
.y86{bottom:734.961867pt;}
.y2d{bottom:737.171600pt;}
.yda{bottom:737.171733pt;}
.y179{bottom:743.484267pt;}
.y1a9{bottom:743.506933pt;}
.y102{bottom:743.518267pt;}
.y64{bottom:749.349467pt;}
.y3{bottom:751.402400pt;}
.y85{bottom:751.825867pt;}
.y2c{bottom:753.571600pt;}
.yd9{bottom:753.571733pt;}
.y61{bottom:757.793867pt;}
.y178{bottom:758.818267pt;}
.y1a8{bottom:758.840933pt;}
.y14a{bottom:758.852267pt;}
.y27{bottom:762.125333pt;}
.y63{bottom:766.213467pt;}
.y84{bottom:768.689867pt;}
.y26{bottom:768.790267pt;}
.y2b{bottom:769.971600pt;}
.y2{bottom:774.058400pt;}
.y177{bottom:774.152267pt;}
.y1a7{bottom:774.174933pt;}
.y101{bottom:774.186267pt;}
.y62{bottom:783.077467pt;}
.y83{bottom:785.541467pt;}
.y2a{bottom:786.371600pt;}
.y176{bottom:789.486267pt;}
.y1a6{bottom:789.508933pt;}
.y100{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y60{bottom:799.941467pt;}
.y29{bottom:802.771600pt;}
.y175{bottom:804.820267pt;}
.y1a5{bottom:804.842933pt;}
.yff{bottom:804.854267pt;}
.y28{bottom:849.726533pt;}
.hb{height:13.596267pt;}
.h1a{height:35.869109pt;}
.h1c{height:40.482667pt;}
.h6{height:41.434667pt;}
.h5{height:42.840000pt;}
.h11{height:43.003200pt;}
.h13{height:44.018667pt;}
.h7{height:44.290667pt;}
.hc{height:45.216000pt;}
.he{height:48.161600pt;}
.hf{height:48.183467pt;}
.h14{height:48.205333pt;}
.h19{height:48.227200pt;}
.h10{height:48.270933pt;}
.h9{height:50.240000pt;}
.h8{height:50.400000pt;}
.ha{height:52.106667pt;}
.hd{height:52.107200pt;}
.h4{height:60.288000pt;}
.h2{height:61.610667pt;}
.h16{height:71.820800pt;}
.h18{height:76.979200pt;}
.h17{height:77.473600pt;}
.h3{height:80.640000pt;}
.h12{height:81.889600pt;}
.h15{height:100.638400pt;}
.h1b{height:200.044000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:403.085333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x18{left:0.906533pt;}
.x8{left:22.871200pt;}
.x7{left:25.421733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.xa{left:75.585333pt;}
.x19{left:77.587867pt;}
.x1a{left:78.918667pt;}
.x6{left:83.139600pt;}
.x1c{left:86.922000pt;}
.x2{left:90.691067pt;}
.xb{left:102.038667pt;}
.xc{left:109.602000pt;}
.x16{left:112.157333pt;}
.x14{left:113.564319pt;}
.x15{left:114.471474pt;}
.x17{left:117.557867pt;}
.x13{left:118.454613pt;}
.x1b{left:128.495333pt;}
.x12{left:138.610133pt;}
.x9{left:195.766400pt;}
.x1d{left:314.140667pt;}
.x1f{left:321.699733pt;}
.x1e{left:325.474000pt;}
.x20{left:333.033067pt;}
.x11{left:334.137733pt;}
.xf{left:344.776933pt;}
.xd{left:352.336000pt;}
.x10{left:353.270933pt;}
.xe{left:360.944933pt;}
.x4{left:578.461733pt;}
.x3{left:581.012267pt;}
}




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