
    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_0b7037798236156c4b49c33c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079590;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_58af1b2ce5d8bf2e9894b492.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_59bea64199883e33bbfb388f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_1ca6de6c1e65a9b50376acec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4210a45f41b4799237270d3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_29980ff31f3454e868deda4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ff7311cc93cd741618cf8602.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0d943f508249f4301321212f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.975586;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_a75f892867bd97e8f412c9f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_cdf85f45010bb37f05a07e2b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_50d4666e4ef61d0adf532d6a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.925293;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_20f4d0de0d8986623210100d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.000000,-0.275047,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275047,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275047,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.182803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182803,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m6{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.275047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275047,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-27.000000px;}
.v2{vertical-align:-24.120000px;}
.vf{vertical-align:-20.880600px;}
.v8{vertical-align:-14.760000px;}
.v4{vertical-align:-2.879400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v9{vertical-align:21.600000px;}
.v1{vertical-align:24.120600px;}
.vd{vertical-align:29.519400px;}
.vc{vertical-align:31.679400px;}
.vb{vertical-align:34.556976px;}
.v7{vertical-align:39.600000px;}
.va{vertical-align:47.880000px;}
.v6{vertical-align:54.360000px;}
.ve{vertical-align:55.440600px;}
.ls72{letter-spacing:-1.671708px;}
.ls88{letter-spacing:-0.788384px;}
.ls85{letter-spacing:-0.376110px;}
.ls8b{letter-spacing:-0.339945px;}
.ls41{letter-spacing:-0.332712px;}
.ls3d{letter-spacing:-0.311014px;}
.ls87{letter-spacing:-0.303781px;}
.ls71{letter-spacing:-0.299586px;}
.ls47{letter-spacing:-0.289315px;}
.ls70{letter-spacing:-0.282082px;}
.ls8c{letter-spacing:-0.274849px;}
.ls55{letter-spacing:-0.267617px;}
.ls37{letter-spacing:-0.253151px;}
.ls40{letter-spacing:-0.245918px;}
.ls53{letter-spacing:-0.238685px;}
.ls42{letter-spacing:-0.231452px;}
.ls34{letter-spacing:-0.224219px;}
.ls68{letter-spacing:-0.222444px;}
.ls38{letter-spacing:-0.216986px;}
.ls2d{letter-spacing:-0.209754px;}
.ls30{letter-spacing:-0.202521px;}
.ls32{letter-spacing:-0.195288px;}
.ls2a{letter-spacing:-0.188055px;}
.ls2f{letter-spacing:-0.180822px;}
.ls2e{letter-spacing:-0.173589px;}
.ls28{letter-spacing:-0.166356px;}
.ls2b{letter-spacing:-0.159123px;}
.ls33{letter-spacing:-0.151890px;}
.ls31{letter-spacing:-0.144658px;}
.ls4a{letter-spacing:-0.144288px;}
.ls44{letter-spacing:-0.137425px;}
.ls74{letter-spacing:-0.136907px;}
.ls43{letter-spacing:-0.130192px;}
.ls4b{letter-spacing:-0.126252px;}
.ls3f{letter-spacing:-0.122959px;}
.ls86{letter-spacing:-0.115726px;}
.ls2c{letter-spacing:-0.108493px;}
.ls64{letter-spacing:-0.108216px;}
.ls16{letter-spacing:-0.105336px;}
.ls84{letter-spacing:-0.101260px;}
.ls4f{letter-spacing:-0.095760px;}
.ls29{letter-spacing:-0.094027px;}
.ls73{letter-spacing:-0.093673px;}
.ls6e{letter-spacing:-0.093600px;}
.ls8a{letter-spacing:-0.086795px;}
.ls17{letter-spacing:-0.086400px;}
.ls89{letter-spacing:-0.072329px;}
.ls66{letter-spacing:-0.072144px;}
.ls1a{letter-spacing:-0.072000px;}
.ls3e{letter-spacing:-0.065096px;}
.ls15{letter-spacing:-0.064800px;}
.ls75{letter-spacing:-0.057645px;}
.ls18{letter-spacing:-0.057600px;}
.lse{letter-spacing:-0.050400px;}
.ls62{letter-spacing:-0.047880px;}
.ls54{letter-spacing:-0.043397px;}
.ls14{letter-spacing:-0.043200px;}
.ls10{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.028800px;}
.ls82{letter-spacing:-0.024048px;}
.ls6b{letter-spacing:-0.023328px;}
.lsb{letter-spacing:-0.021600px;}
.ls6c{letter-spacing:-0.018036px;}
.lsf{letter-spacing:-0.014400px;}
.ls6d{letter-spacing:-0.012024px;}
.ls9{letter-spacing:-0.007200px;}
.ls7f{letter-spacing:-0.006012px;}
.ls11{letter-spacing:-0.006000px;}
.ls6a{letter-spacing:-0.003888px;}
.lsc{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.006012px;}
.ls3{letter-spacing:0.007200px;}
.ls21{letter-spacing:0.009360px;}
.lsd{letter-spacing:0.009576px;}
.ls67{letter-spacing:0.011664px;}
.ls46{letter-spacing:0.012024px;}
.ls4{letter-spacing:0.014364px;}
.ls1{letter-spacing:0.014400px;}
.ls65{letter-spacing:0.015552px;}
.ls52{letter-spacing:0.017100px;}
.ls7b{letter-spacing:0.018036px;}
.ls2{letter-spacing:0.018720px;}
.ls56{letter-spacing:0.019152px;}
.ls6{letter-spacing:0.021600px;}
.ls45{letter-spacing:0.024048px;}
.ls13{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.036000px;}
.ls49{letter-spacing:0.036072px;}
.ls63{letter-spacing:0.036164px;}
.ls7a{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.043200px;}
.ls57{letter-spacing:0.043397px;}
.ls58{letter-spacing:0.048096px;}
.ls76{letter-spacing:0.050630px;}
.ls5b{letter-spacing:0.054108px;}
.ls0{letter-spacing:0.057600px;}
.ls1f{letter-spacing:0.059292px;}
.ls36{letter-spacing:0.065096px;}
.ls1b{letter-spacing:0.072000px;}
.ls77{letter-spacing:0.072144px;}
.ls7d{letter-spacing:0.078156px;}
.ls8{letter-spacing:0.079056px;}
.ls4e{letter-spacing:0.092232px;}
.ls4d{letter-spacing:0.098820px;}
.ls5a{letter-spacing:0.108216px;}
.ls3c{letter-spacing:0.115200px;}
.ls51{letter-spacing:0.119700px;}
.ls35{letter-spacing:0.120960px;}
.ls69{letter-spacing:0.138276px;}
.ls12{letter-spacing:0.144000px;}
.ls4c{letter-spacing:0.144288px;}
.ls5c{letter-spacing:0.152640px;}
.ls83{letter-spacing:0.158400px;}
.ls6f{letter-spacing:0.158524px;}
.ls59{letter-spacing:0.162324px;}
.ls50{letter-spacing:0.165600px;}
.ls20{letter-spacing:0.170640px;}
.ls7{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.187200px;}
.ls5e{letter-spacing:0.356904px;}
.ls5d{letter-spacing:0.357480px;}
.ls81{letter-spacing:0.357696px;}
.ls25{letter-spacing:0.455671px;}
.ls48{letter-spacing:0.498996px;}
.ls80{letter-spacing:0.719280px;}
.ls3a{letter-spacing:2.801520px;}
.ls1d{letter-spacing:2.897280px;}
.ls1c{letter-spacing:11.952000px;}
.ls3b{letter-spacing:51.360681px;}
.ls27{letter-spacing:93.926180px;}
.ls24{letter-spacing:95.150576px;}
.ls39{letter-spacing:107.712000px;}
.ls26{letter-spacing:135.261868px;}
.ls79{letter-spacing:167.608548px;}
.ls7e{letter-spacing:230.969016px;}
.ls7c{letter-spacing:237.443940px;}
.ls5f{letter-spacing:294.684192px;}
.ls61{letter-spacing:358.044660px;}
.ls60{letter-spacing:364.525596px;}
.ls22{letter-spacing:387.125436px;}
.ls23{letter-spacing:438.009543px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws33{word-spacing:-377.339350px;}
.ws2c{word-spacing:-72.000000px;}
.wsb5{word-spacing:-60.120000px;}
.ws32{word-spacing:-42.240019px;}
.ws15{word-spacing:-42.048000px;}
.ws8f{word-spacing:-39.528000px;}
.ws8e{word-spacing:-20.172502px;}
.ws2d{word-spacing:-20.160000px;}
.ws8c{word-spacing:-20.143571px;}
.wsb1{word-spacing:-20.107406px;}
.ws1{word-spacing:-20.052000px;}
.ws16{word-spacing:-20.016000px;}
.wsd1{word-spacing:-19.998913px;}
.wsc9{word-spacing:-19.991680px;}
.wsca{word-spacing:-19.969982px;}
.wscf{word-spacing:-19.955516px;}
.wsdb{word-spacing:-19.948283px;}
.ws8b{word-spacing:-19.941050px;}
.ws18{word-spacing:-19.929600px;}
.wse8{word-spacing:-19.926584px;}
.wsd0{word-spacing:-19.919352px;}
.wsd8{word-spacing:-19.904886px;}
.wsd4{word-spacing:-19.897653px;}
.wsd7{word-spacing:-19.890420px;}
.wseb{word-spacing:-19.883187px;}
.wsd3{word-spacing:-19.875954px;}
.wsb2{word-spacing:-19.839790px;}
.wse9{word-spacing:-19.832557px;}
.ws95{word-spacing:-16.857648px;}
.wsb4{word-spacing:-16.851636px;}
.wsba{word-spacing:-16.755444px;}
.ws93{word-spacing:-16.749432px;}
.wsb7{word-spacing:-16.719372px;}
.wsb6{word-spacing:-16.713360px;}
.wsb3{word-spacing:-16.707348px;}
.ws94{word-spacing:-16.695324px;}
.wsbb{word-spacing:-16.689312px;}
.ws4{word-spacing:-16.674000px;}
.ws8d{word-spacing:-13.329792px;}
.ws0{word-spacing:-13.325004px;}
.ws2{word-spacing:-13.320216px;}
.ws45{word-spacing:-13.310640px;}
.wsbc{word-spacing:-13.262760px;}
.ws17{word-spacing:-13.205304px;}
.ws3{word-spacing:-11.970000px;}
.wsb8{word-spacing:-11.527920px;}
.wsb9{word-spacing:-11.166336px;}
.ws90{word-spacing:-10.824192px;}
.ws91{word-spacing:-10.820304px;}
.ws7b{word-spacing:-10.808640px;}
.ws92{word-spacing:-10.804752px;}
.wsaa{word-spacing:-8.344131px;}
.wsbf{word-spacing:-0.649296px;}
.ws81{word-spacing:-0.643284px;}
.ws98{word-spacing:-0.529056px;}
.ws9b{word-spacing:-0.517032px;}
.ws96{word-spacing:-0.361644px;}
.ws88{word-spacing:-0.360000px;}
.wsb0{word-spacing:-0.353076px;}
.ws99{word-spacing:-0.306612px;}
.ws55{word-spacing:-0.231452px;}
.wsc2{word-spacing:-0.222444px;}
.wsc0{word-spacing:-0.216432px;}
.ws9a{word-spacing:-0.198396px;}
.wsea{word-spacing:-0.180822px;}
.ws82{word-spacing:-0.168336px;}
.wsc1{word-spacing:-0.162324px;}
.ws83{word-spacing:-0.156312px;}
.wsde{word-spacing:-0.151890px;}
.wsaf{word-spacing:-0.136907px;}
.wsc3{word-spacing:-0.132264px;}
.wsec{word-spacing:-0.130192px;}
.ws54{word-spacing:-0.129600px;}
.wscc{word-spacing:-0.122959px;}
.wsa1{word-spacing:-0.115726px;}
.wsd9{word-spacing:-0.101260px;}
.wsad{word-spacing:-0.100879px;}
.wsd5{word-spacing:-0.094027px;}
.wsae{word-spacing:-0.057645px;}
.ws25{word-spacing:-0.057600px;}
.ws53{word-spacing:-0.043200px;}
.wsdd{word-spacing:-0.036164px;}
.ws84{word-spacing:-0.036000px;}
.ws7d{word-spacing:-0.028932px;}
.ws2f{word-spacing:-0.028800px;}
.wsdc{word-spacing:-0.021699px;}
.ws7{word-spacing:-0.021600px;}
.wse7{word-spacing:-0.014466px;}
.ws87{word-spacing:-0.014400px;}
.wsc6{word-spacing:-0.007233px;}
.ws12{word-spacing:-0.007200px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.007200px;}
.wsc4{word-spacing:0.007233px;}
.wsc8{word-spacing:0.014466px;}
.wsa8{word-spacing:0.021600px;}
.ws97{word-spacing:0.021699px;}
.ws30{word-spacing:0.028800px;}
.ws4c{word-spacing:0.028932px;}
.wsd{word-spacing:0.036000px;}
.wsd6{word-spacing:0.036164px;}
.ws2a{word-spacing:0.043200px;}
.wsa5{word-spacing:0.043397px;}
.ws2b{word-spacing:0.050400px;}
.wscd{word-spacing:0.050630px;}
.ws50{word-spacing:0.057863px;}
.ws26{word-spacing:0.064800px;}
.wsa2{word-spacing:0.065096px;}
.ws86{word-spacing:0.072000px;}
.ws9f{word-spacing:0.072329px;}
.ws1e{word-spacing:0.079200px;}
.ws57{word-spacing:0.079562px;}
.ws1a{word-spacing:0.086400px;}
.wse4{word-spacing:0.086795px;}
.ws20{word-spacing:0.093600px;}
.ws44{word-spacing:0.094027px;}
.ws28{word-spacing:0.100800px;}
.ws8a{word-spacing:0.101260px;}
.ws23{word-spacing:0.108000px;}
.ws7c{word-spacing:0.108493px;}
.ws10{word-spacing:0.115200px;}
.ws7a{word-spacing:0.115726px;}
.ws2e{word-spacing:0.122400px;}
.ws49{word-spacing:0.122959px;}
.ws1c{word-spacing:0.129600px;}
.ws3e{word-spacing:0.130192px;}
.wsf{word-spacing:0.136800px;}
.ws40{word-spacing:0.137425px;}
.ws8{word-spacing:0.144000px;}
.ws89{word-spacing:0.144658px;}
.wsa{word-spacing:0.151200px;}
.ws42{word-spacing:0.151890px;}
.wsc{word-spacing:0.158400px;}
.ws35{word-spacing:0.159123px;}
.ws6{word-spacing:0.165600px;}
.ws4e{word-spacing:0.166356px;}
.ws14{word-spacing:0.172800px;}
.ws38{word-spacing:0.173589px;}
.ws11{word-spacing:0.180000px;}
.ws4f{word-spacing:0.180822px;}
.ws9{word-spacing:0.187200px;}
.ws48{word-spacing:0.188055px;}
.ws13{word-spacing:0.194400px;}
.ws43{word-spacing:0.195288px;}
.ws19{word-spacing:0.201600px;}
.ws4b{word-spacing:0.202521px;}
.wse{word-spacing:0.208800px;}
.ws3c{word-spacing:0.209754px;}
.ws24{word-spacing:0.216000px;}
.ws46{word-spacing:0.216986px;}
.wsa7{word-spacing:0.223200px;}
.ws37{word-spacing:0.224219px;}
.ws3b{word-spacing:0.231452px;}
.ws1b{word-spacing:0.237600px;}
.ws3a{word-spacing:0.238685px;}
.ws85{word-spacing:0.244800px;}
.ws3d{word-spacing:0.245918px;}
.ws21{word-spacing:0.252000px;}
.ws36{word-spacing:0.253151px;}
.ws22{word-spacing:0.259200px;}
.ws41{word-spacing:0.260384px;}
.ws1f{word-spacing:0.266400px;}
.ws3f{word-spacing:0.267617px;}
.ws29{word-spacing:0.273600px;}
.ws39{word-spacing:0.274849px;}
.ws52{word-spacing:0.282082px;}
.ws56{word-spacing:0.289315px;}
.ws27{word-spacing:0.295200px;}
.wsa0{word-spacing:0.296548px;}
.ws4a{word-spacing:0.303781px;}
.ws51{word-spacing:0.311014px;}
.ws1d{word-spacing:0.316800px;}
.ws79{word-spacing:0.318247px;}
.wsab{word-spacing:0.325480px;}
.ws47{word-spacing:0.332712px;}
.ws80{word-spacing:0.339945px;}
.ws4d{word-spacing:0.347178px;}
.ws7e{word-spacing:0.354411px;}
.wscb{word-spacing:0.361644px;}
.wsc7{word-spacing:0.368877px;}
.wsa3{word-spacing:0.376110px;}
.ws9c{word-spacing:0.381024px;}
.wsc5{word-spacing:0.383343px;}
.wsbd{word-spacing:0.405041px;}
.wsa6{word-spacing:0.412274px;}
.ws7f{word-spacing:0.419507px;}
.wse5{word-spacing:0.426740px;}
.wsbe{word-spacing:0.433973px;}
.wsa4{word-spacing:0.441206px;}
.wsac{word-spacing:0.448439px;}
.wse6{word-spacing:0.462904px;}
.wsce{word-spacing:0.491836px;}
.ws65{word-spacing:0.549699px;}
.ws66{word-spacing:0.600329px;}
.wsda{word-spacing:0.614795px;}
.ws64{word-spacing:0.629261px;}
.ws63{word-spacing:0.650959px;}
.wse3{word-spacing:0.672658px;}
.wsdf{word-spacing:0.744987px;}
.wsd2{word-spacing:0.853480px;}
.wse0{word-spacing:0.969206px;}
.ws6a{word-spacing:1.996275px;}
.ws6c{word-spacing:2.003508px;}
.ws6b{word-spacing:2.090302px;}
.ws62{word-spacing:2.321754px;}
.ws61{word-spacing:2.473645px;}
.wse1{word-spacing:3.450084px;}
.ws76{word-spacing:3.630906px;}
.wse2{word-spacing:3.688769px;}
.ws75{word-spacing:3.790029px;}
.ws74{word-spacing:3.840659px;}
.ws67{word-spacing:4.506084px;}
.ws68{word-spacing:4.563947px;}
.ws69{word-spacing:4.701372px;}
.ws73{word-spacing:4.874961px;}
.ws72{word-spacing:4.954523px;}
.ws6e{word-spacing:7.066524px;}
.ws6d{word-spacing:7.095455px;}
.ws6f{word-spacing:8.071894px;}
.ws71{word-spacing:8.173154px;}
.ws70{word-spacing:8.202086px;}
.ws5e{word-spacing:10.118799px;}
.ws5c{word-spacing:10.285155px;}
.ws5d{word-spacing:10.299621px;}
.ws5b{word-spacing:10.371950px;}
.ws60{word-spacing:13.872664px;}
.ws5f{word-spacing:13.973924px;}
.ws77{word-spacing:18.581269px;}
.ws78{word-spacing:18.624666px;}
.ws34{word-spacing:18.689762px;}
.ws59{word-spacing:23.948066px;}
.ws58{word-spacing:23.991463px;}
.ws5a{word-spacing:24.020394px;}
.wsa9{word-spacing:101.753585px;}
.ws9e{word-spacing:380.391264px;}
.ws9d{word-spacing:380.397276px;}
.ws31{word-spacing:428.157564px;}
._11b{margin-left:-3289.465067px;}
._135{margin-left:-3279.686542px;}
._83{margin-left:-2813.419261px;}
._ec{margin-left:-2812.267406px;}
._89{margin-left:-2807.429780px;}
._85{margin-left:-2803.322161px;}
._84{margin-left:-2799.468339px;}
._88{margin-left:-2797.101227px;}
._87{margin-left:-2795.444898px;}
._78{margin-left:-2793.322384px;}
._128{margin-left:-2792.168403px;}
._127{margin-left:-2791.126868px;}
._86{margin-left:-2789.753278px;}
._af{margin-left:-2787.546593px;}
._61{margin-left:-2786.194044px;}
._fe{margin-left:-2784.443687px;}
._5d{margin-left:-2783.300892px;}
._ed{margin-left:-2780.668781px;}
._124{margin-left:-2779.127520px;}
._8d{margin-left:-2777.015519px;}
._65{margin-left:-2774.946916px;}
._e8{margin-left:-2772.654093px;}
._68{margin-left:-2770.932667px;}
._72{margin-left:-2767.747249px;}
._4c{margin-left:-2763.936000px;}
._64{margin-left:-2762.455732px;}
._6b{margin-left:-2760.069538px;}
._9d{margin-left:-2758.730799px;}
._d2{margin-left:-2757.161264px;}
._e6{margin-left:-2755.584496px;}
._98{margin-left:-2754.427235px;}
._17{margin-left:-2751.120000px;}
._b2{margin-left:-2748.535701px;}
._7a{margin-left:-2746.745916px;}
._fb{margin-left:-2743.693641px;}
._15{margin-left:-2742.508800px;}
._132{margin-left:-2740.843886px;}
._57{margin-left:-2739.513600px;}
._4d{margin-left:-2735.776800px;}
._b5{margin-left:-2732.165903px;}
._3c{margin-left:-2730.852000px;}
._5e{margin-left:-2727.058017px;}
._9c{margin-left:-2724.859222px;}
._9f{margin-left:-2723.448810px;}
._3f{margin-left:-2722.176000px;}
._3d{margin-left:-2720.484000px;}
._4a{margin-left:-2718.943200px;}
._c6{margin-left:-2717.640807px;}
._ad{margin-left:-2716.567376px;}
._b{margin-left:-2715.494400px;}
._22{margin-left:-2711.923200px;}
._5{margin-left:-2709.885600px;}
._b1{margin-left:-2708.520803px;}
._138{margin-left:-2707.500310px;}
._53{margin-left:-2706.328800px;}
._70{margin-left:-2704.910939px;}
._f0{margin-left:-2703.789842px;}
._20{margin-left:-2702.700000px;}
._107{margin-left:-2700.578443px;}
._7c{margin-left:-2699.486279px;}
._8f{margin-left:-2696.745017px;}
._37{margin-left:-2695.478400px;}
._42{margin-left:-2693.685600px;}
._28{margin-left:-2691.619200px;}
._58{margin-left:-2689.588800px;}
._ee{margin-left:-2687.284410px;}
._cd{margin-left:-2685.309834px;}
._b3{margin-left:-2684.167039px;}
._19{margin-left:-2683.094400px;}
._ab{margin-left:-2680.427640px;}
._9a{margin-left:-2678.242982px;}
._a8{margin-left:-2675.436953px;}
._104{margin-left:-2674.395418px;}
._1c{margin-left:-2671.401600px;}
._a{margin-left:-2669.198400px;}
._1f{margin-left:-2668.053600px;}
._2f{margin-left:-2666.534400px;}
._e3{margin-left:-2663.589495px;}
._8{margin-left:-2662.077600px;}
._9b{margin-left:-2660.182809px;}
._35{margin-left:-2658.988800px;}
._6f{margin-left:-2655.966040px;}
._7b{margin-left:-2652.754641px;}
._2a{margin-left:-2650.262400px;}
._d1{margin-left:-2648.622472px;}
._b0{margin-left:-2647.612063px;}
._23{margin-left:-2646.460800px;}
._116{margin-left:-2644.429596px;}
._6c{margin-left:-2643.243404px;}
._c{margin-left:-2642.205600px;}
._24{margin-left:-2639.462400px;}
._113{margin-left:-2638.259949px;}
._143{margin-left:-2636.603620px;}
._1b{margin-left:-2634.854400px;}
._51{margin-left:-2633.630400px;}
._de{margin-left:-2632.140933px;}
._3a{margin-left:-2630.073600px;}
._7f{margin-left:-2628.900603px;}
._6{margin-left:-2627.064000px;}
._f1{margin-left:-2624.930408px;}
._9{margin-left:-2622.700800px;}
._10a{margin-left:-2618.781804px;}
._13c{margin-left:-2616.756597px;}
._3{margin-left:-2615.328000px;}
._f5{margin-left:-2612.019061px;}
._4b{margin-left:-2610.064800px;}
._50{margin-left:-2605.960800px;}
._46{margin-left:-2603.347200px;}
._8c{margin-left:-2600.591110px;}
._ff{margin-left:-2599.585740px;}
._90{margin-left:-2596.121190px;}
._3e{margin-left:-2594.361600px;}
._118{margin-left:-2591.072640px;}
._11a{margin-left:-2588.244584px;}
._36{margin-left:-2587.140000px;}
._aa{margin-left:-2584.165240px;}
._c2{margin-left:-2582.842280px;}
._25{margin-left:-2578.492800px;}
._14{margin-left:-2575.080000px;}
._b4{margin-left:-2572.629453px;}
._18{margin-left:-2571.069600px;}
._c1{margin-left:-2567.037780px;}
._8e{margin-left:-2565.526108px;}
._11f{margin-left:-2564.043368px;}
._f3{margin-left:-2559.226270px;}
._33{margin-left:-2557.864800px;}
._cc{margin-left:-2556.658597px;}
._16{margin-left:-2555.553600px;}
._a9{margin-left:-2552.311636px;}
._30{margin-left:-2551.111200px;}
._74{margin-left:-2548.384182px;}
._73{margin-left:-2547.176292px;}
._e4{margin-left:-2544.897934px;}
._13{margin-left:-2543.551200px;}
._c9{margin-left:-2540.117001px;}
._34{margin-left:-2535.220800px;}
._e1{margin-left:-2531.401380px;}
._e9{margin-left:-2528.030858px;}
._134{margin-left:-2522.316555px;}
._93{margin-left:-2520.132553px;}
._1d{margin-left:-2518.956000px;}
._94{margin-left:-2517.933758px;}
._66{margin-left:-2515.351620px;}
._31{margin-left:-2513.556000px;}
._c3{margin-left:-2511.308440px;}
._2b{margin-left:-2506.932000px;}
._2c{margin-left:-2503.008000px;}
._cb{margin-left:-2499.612873px;}
._d0{margin-left:-2495.012761px;}
._2e{margin-left:-2490.782400px;}
._e0{margin-left:-2488.806950px;}
._ac{margin-left:-2486.472033px;}
._49{margin-left:-2478.909600px;}
._29{margin-left:-2477.268000px;}
._7{margin-left:-2474.812800px;}
._3b{margin-left:-2473.732800px;}
._d{margin-left:-2471.502096px;}
._ca{margin-left:-2464.689563px;}
._e7{margin-left:-2463.585897px;}
._40{margin-left:-2462.457600px;}
._ae{margin-left:-2460.179211px;}
._12b{margin-left:-2455.781620px;}
._99{margin-left:-2451.846933px;}
._80{margin-left:-2449.170768px;}
._141{margin-left:-2443.796738px;}
._1a{margin-left:-2442.744000px;}
._131{margin-left:-2431.732294px;}
._d3{margin-left:-2426.488456px;}
._e{margin-left:-2422.720800px;}
._f2{margin-left:-2419.646151px;}
._fd{margin-left:-2418.398148px;}
._2d{margin-left:-2407.586400px;}
._27{margin-left:-2405.671200px;}
._ea{margin-left:-2403.791678px;}
._32{margin-left:-2399.385600px;}
._e5{margin-left:-2396.631127px;}
._21{margin-left:-2395.094400px;}
._121{margin-left:-2390.917809px;}
._41{margin-left:-2387.404800px;}
._11e{margin-left:-2382.172600px;}
._101{margin-left:-2374.509032px;}
._105{margin-left:-2370.086458px;}
._39{margin-left:-2351.289600px;}
._8a{margin-left:-2330.891481px;}
._d4{margin-left:-2316.837995px;}
._f7{margin-left:-2307.862648px;}
._b6{margin-left:-2302.694548px;}
._1e{margin-left:-2282.688000px;}
._125{margin-left:-2278.431402px;}
._122{margin-left:-2263.271286px;}
._111{margin-left:-2259.322133px;}
._112{margin-left:-2254.881145px;}
._f9{margin-left:-2243.612975px;}
._11d{margin-left:-2222.796089px;}
._10b{margin-left:-2175.160998px;}
._4{margin-left:-2161.252800px;}
._11c{margin-left:-2145.934901px;}
._69{margin-left:-2136.334242px;}
._10{margin-left:-2113.999200px;}
._12a{margin-left:-2078.356133px;}
._119{margin-left:-2055.282588px;}
._c4{margin-left:-2042.480391px;}
._c7{margin-left:-2035.507895px;}
._145{margin-left:-1991.083546px;}
._137{margin-left:-1982.678939px;}
._144{margin-left:-1978.664691px;}
._55{margin-left:-1962.993600px;}
._10d{margin-left:-1958.029284px;}
._110{margin-left:-1927.369106px;}
._77{margin-left:-1898.112206px;}
._117{margin-left:-1890.054678px;}
._13e{margin-left:-1883.538510px;}
._5c{margin-left:-1866.612586px;}
._52{margin-left:-1858.953600px;}
._cf{margin-left:-1854.996908px;}
._f{margin-left:-1834.207200px;}
._130{margin-left:-1831.801719px;}
._13d{margin-left:-1819.194809px;}
._129{margin-left:-1815.997876px;}
._108{margin-left:-1795.202689px;}
._140{margin-left:-1781.648272px;}
._136{margin-left:-1774.646844px;}
._120{margin-left:-1766.386896px;}
._4f{margin-left:-1759.046400px;}
._12f{margin-left:-1755.422506px;}
._126{margin-left:-1742.967487px;}
._123{margin-left:-1710.773281px;}
._ce{margin-left:-1705.277448px;}
._95{margin-left:-1699.534699px;}
._103{margin-left:-1694.405931px;}
._6e{margin-left:-1686.738421px;}
._13f{margin-left:-1682.579515px;}
._12d{margin-left:-1670.131728px;}
._115{margin-left:-1666.798028px;}
._10e{margin-left:-1665.763069px;}
._71{margin-left:-1659.333039px;}
._63{margin-left:-1650.306076px;}
._139{margin-left:-1626.944202px;}
._10c{margin-left:-1622.315159px;}
._106{margin-left:-1618.452801px;}
._102{margin-left:-1616.181677px;}
._7d{margin-left:-1602.092026px;}
._10f{margin-left:-1596.276791px;}
._fa{margin-left:-1586.288184px;}
._6a{margin-left:-1583.358867px;}
._12e{margin-left:-1574.802370px;}
._13a{margin-left:-1566.564120px;}
._13b{margin-left:-1555.447183px;}
._df{margin-left:-1550.666250px;}
._dd{margin-left:-1546.507344px;}
._114{margin-left:-1535.752051px;}
._f8{margin-left:-1522.045743px;}
._60{margin-left:-1498.929459px;}
._c8{margin-left:-1479.154765px;}
._75{margin-left:-1466.157280px;}
._38{margin-left:-1446.494400px;}
._12c{margin-left:-1406.905527px;}
._133{margin-left:-1399.274838px;}
._62{margin-left:-1394.891713px;}
._6d{margin-left:-1367.168084px;}
._5b{margin-left:-1350.671760px;}
._109{margin-left:-1314.881594px;}
._79{margin-left:-1295.699997px;}
._100{margin-left:-1282.970128px;}
._5f{margin-left:-1266.204312px;}
._97{margin-left:-1254.964416px;}
._c5{margin-left:-1166.773911px;}
._96{margin-left:-1142.344800px;}
._7e{margin-left:-1122.537617px;}
._67{margin-left:-1101.887744px;}
._4e{margin-left:-1099.119132px;}
._26{margin-left:-1069.689600px;}
._59{margin-left:-1066.435200px;}
._44{margin-left:-1062.043200px;}
._82{margin-left:-1058.324108px;}
._e2{margin-left:-1042.310512px;}
._92{margin-left:-1006.290769px;}
._c0{margin-left:-1003.260192px;}
._8b{margin-left:-994.703695px;}
._b7{margin-left:-982.566923px;}
._48{margin-left:-962.092800px;}
._eb{margin-left:-954.344225px;}
._fc{margin-left:-946.489317px;}
._91{margin-left:-937.882190px;}
._f4{margin-left:-873.720000px;}
._12{margin-left:-838.994400px;}
._ef{margin-left:-690.184800px;}
._54{margin-left:-678.607200px;}
._142{margin-left:-658.005899px;}
._56{margin-left:-646.660800px;}
._45{margin-left:-633.729600px;}
._f6{margin-left:-625.852800px;}
._81{margin-left:-594.023842px;}
._9e{margin-left:-578.849260px;}
._1{margin-left:-456.638400px;}
._47{margin-left:-453.592800px;}
._5a{margin-left:-425.900906px;}
._bf{margin-left:-238.267406px;}
._bc{margin-left:-233.644356px;}
._bb{margin-left:-24.730380px;}
._be{margin-left:-7.923816px;}
._a1{margin-left:-2.651292px;}
._0{margin-left:-1.512000px;}
._2{width:1.440000px;}
._76{width:12.591676px;}
._bd{width:16.542000px;}
._dc{width:59.262048px;}
._d8{width:68.285808px;}
._da{width:69.672924px;}
._db{width:70.965396px;}
._b9{width:82.769112px;}
._ba{width:84.156768px;}
._d7{width:85.910436px;}
._11{width:116.906400px;}
._43{width:119.944800px;}
._a4{width:149.301036px;}
._d6{width:159.798816px;}
._a6{width:165.864096px;}
._d9{width:174.417012px;}
._d5{width:246.858732px;}
._a2{width:321.479676px;}
._b8{width:332.902476px;}
._a3{width:386.673804px;}
._a7{width:449.871948px;}
._a5{width:457.627428px;}
._a0{width:552.367512px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.371200px;}
.fsc{font-size:36.028200px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:41.814600px;}
.fs2{font-size:47.880000px;}
.fs4{font-size:51.120000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:72.328800px;}
.fs8{font-size:83.880000px;}
.fs5{font-size:97.191600px;}
.y0{bottom:0.000000px;}
.y1f{bottom:56.820540px;}
.y1{bottom:75.810450px;}
.ybf{bottom:110.460600px;}
.y113{bottom:112.260450px;}
.y70{bottom:112.710600px;}
.yee{bottom:116.400450px;}
.y5b{bottom:119.460600px;}
.y120{bottom:121.980450px;}
.y105{bottom:122.250450px;}
.yfa{bottom:124.860450px;}
.y37{bottom:126.030600px;}
.yf2{bottom:128.460600px;}
.yb5{bottom:132.330450px;}
.y1a{bottom:133.140450px;}
.y139{bottom:133.860450px;}
.yeb{bottom:136.560450px;}
.y42{bottom:137.460600px;}
.y8e{bottom:138.360450px;}
.y134{bottom:142.860450px;}
.y114{bottom:144.570450px;}
.y118{bottom:146.460600px;}
.y9f{bottom:150.330450px;}
.ybe{bottom:151.860450px;}
.y112{bottom:153.660450px;}
.y6f{bottom:154.110450px;}
.yed{bottom:157.800450px;}
.y5a{bottom:160.860450px;}
.y11f{bottom:163.380450px;}
.y104{bottom:163.650450px;}
.y19{bottom:164.910450px;}
.yf9{bottom:166.260450px;}
.yf1{bottom:169.860450px;}
.yb4{bottom:173.730450px;}
.y138{bottom:175.260450px;}
.y36{bottom:176.430600px;}
.yea{bottom:177.960600px;}
.y41{bottom:178.860450px;}
.y8d{bottom:179.760450px;}
.ycf{bottom:182.640450px;}
.y133{bottom:184.260450px;}
.y117{bottom:187.860450px;}
.y9e{bottom:191.730450px;}
.y124{bottom:193.260450px;}
.y111{bottom:195.060450px;}
.y6e{bottom:195.510450px;}
.y18{bottom:196.680450px;}
.yce{bottom:200.640450px;}
.ybd{bottom:202.170450px;}
.y59{bottom:202.260450px;}
.yec{bottom:204.240450px;}
.y11e{bottom:204.780600px;}
.yd5{bottom:206.670450px;}
.yf8{bottom:207.660450px;}
.y103{bottom:214.050450px;}
.yb3{bottom:215.130450px;}
.y131{bottom:216.660450px;}
.ycd{bottom:218.640450px;}
.ye9{bottom:219.360450px;}
.yf0{bottom:220.170450px;}
.y40{bottom:220.260450px;}
.y13a{bottom:225.660450px;}
.y35{bottom:226.830600px;}
.y17{bottom:228.450450px;}
.y116{bottom:229.260450px;}
.y8c{bottom:230.070450px;}
.y9d{bottom:233.130450px;}
.y123{bottom:234.660450px;}
.ycc{bottom:236.640450px;}
.y6d{bottom:236.910450px;}
.yd3{bottom:242.040600px;}
.y58{bottom:243.660450px;}
.y110{bottom:245.460600px;}
.y11d{bottom:246.180450px;}
.yd4{bottom:248.070450px;}
.yf7{bottom:249.060450px;}
.ybc{bottom:252.660450px;}
.yb2{bottom:256.530450px;}
.y130{bottom:258.060450px;}
.y102{bottom:258.780450px;}
.y16{bottom:260.220450px;}
.y3f{bottom:261.660450px;}
.y137{bottom:267.060450px;}
.ye8{bottom:269.670450px;}
.yfe{bottom:270.030450px;}
.yef{bottom:270.660450px;}
.y9c{bottom:274.530450px;}
.ycb{bottom:276.060450px;}
.y34{bottom:277.230600px;}
.y8b{bottom:280.560450px;}
.yd2{bottom:283.440450px;}
.yfc{bottom:283.800450px;}
.y122{bottom:284.970450px;}
.y57{bottom:285.060450px;}
.y10f{bottom:286.860450px;}
.y6c{bottom:287.580450px;}
.yf6{bottom:290.460450px;}
.y15{bottom:291.990450px;}
.ybb{bottom:294.060450px;}
.yb1{bottom:297.930450px;}
.y12f{bottom:299.460600px;}
.y6b{bottom:299.640450px;}
.y3e{bottom:303.060450px;}
.y136{bottom:308.460600px;}
.yd8{bottom:312.060450px;}
.y13b{bottom:317.460600px;}
.ye7{bottom:320.160450px;}
.y8a{bottom:321.960600px;}
.y14{bottom:323.760450px;}
.y9b{bottom:324.840450px;}
.yca{bottom:326.460600px;}
.y33{bottom:327.630600px;}
.y11c{bottom:328.980450px;}
.yd1{bottom:329.970450px;}
.yf5{bottom:331.860450px;}
.y10e{bottom:334.290450px;}
.y56{bottom:335.370450px;}
.yba{bottom:335.460600px;}
.ye6{bottom:340.860450px;}
.y3d{bottom:344.460600px;}
.yb0{bottom:348.150450px;}
.y10d{bottom:348.960600px;}
.y12e{bottom:349.860450px;}
.yd7{bottom:353.460600px;}
.y13{bottom:355.530450px;}
.yfd{bottom:356.250600px;}
.y6a{bottom:358.860450px;}
.y89{bottom:363.360450px;}
.y10c{bottom:366.960600px;}
.yc9{bottom:367.860450px;}
.y11b{bottom:370.380450px;}
.yf4{bottom:373.260450px;}
.y9a{bottom:375.330600px;}
.yb9{bottom:376.860450px;}
.y32{bottom:378.030600px;}
.y10b{bottom:384.960600px;}
.y55{bottom:385.770600px;}
.y3c{bottom:385.860600px;}
.y12{bottom:387.210450px;}
.y12d{bottom:391.260450px;}
.ye4{bottom:394.859853px;}
.yd6{bottom:394.860600px;}
.yaf{bottom:398.640450px;}
.y69{bottom:400.260450px;}
.y109{bottom:402.960459px;}
.y107{bottom:402.960600px;}
.ye3{bottom:403.500600px;}
.y88{bottom:404.760450px;}
.yc8{bottom:409.260450px;}
.y106{bottom:411.600450px;}
.y11a{bottom:411.780450px;}
.ye5{bottom:412.140591px;}
.y99{bottom:416.730450px;}
.yb8{bottom:418.260450px;}
.y11{bottom:418.980450px;}
.yf3{bottom:419.700600px;}
.y10a{bottom:420.240450px;}
.y108{bottom:420.240591px;}
.y3b{bottom:427.260450px;}
.y101{bottom:428.160600px;}
.y31{bottom:428.430600px;}
.y12c{bottom:432.660600px;}
.y54{bottom:436.260450px;}
.y100{bottom:439.230450px;}
.yae{bottom:440.040600px;}
.y135{bottom:441.660450px;}
.yff{bottom:450.300450px;}
.y68{bottom:450.570450px;}
.yc7{bottom:450.660450px;}
.y10{bottom:450.750450px;}
.y119{bottom:451.290600px;}
.y87{bottom:455.070450px;}
.y98{bottom:458.130450px;}
.yb7{bottom:459.660450px;}
.ye2{bottom:460.560450px;}
.y3a{bottom:468.660450px;}
.y12b{bottom:474.060450px;}
.y53{bottom:477.660450px;}
.y30{bottom:478.830600px;}
.yad{bottom:481.440600px;}
.yf{bottom:482.520450px;}
.y132{bottom:483.060450px;}
.yc6{bottom:492.060450px;}
.y67{bottom:501.060450px;}
.ye1{bottom:503.310450px;}
.y86{bottom:505.560450px;}
.y97{bottom:508.440600px;}
.y39{bottom:510.060450px;}
.y2f{bottom:510.690600px;}
.y52{bottom:519.060450px;}
.yac{bottom:522.840600px;}
.y12a{bottom:524.460600px;}
.ye{bottom:532.920450px;}
.yc5{bottom:533.460450px;}
.y2e{bottom:542.460450px;}
.ye0{bottom:546.060450px;}
.y85{bottom:546.960450px;}
.y38{bottom:551.460450px;}
.y96{bottom:558.930450px;}
.y51{bottom:560.460450px;}
.yab{bottom:564.240450px;}
.y129{bottom:565.860450px;}
.yd{bottom:574.320450px;}
.yc4{bottom:574.860450px;}
.y66{bottom:583.860450px;}
.ydf{bottom:587.460450px;}
.y84{bottom:588.360450px;}
.y2d{bottom:592.860450px;}
.y50{bottom:601.860450px;}
.y95{bottom:604.290450px;}
.yaa{bottom:605.640450px;}
.y128{bottom:607.260450px;}
.yc3{bottom:616.260450px;}
.yc{bottom:621.750450px;}
.y65{bottom:625.260450px;}
.y83{bottom:629.760450px;}
.y2c{bottom:634.260450px;}
.yde{bottom:637.770450px;}
.y4f{bottom:643.260450px;}
.ya9{bottom:647.040450px;}
.y94{bottom:648.660450px;}
.yc2{bottom:657.660450px;}
.yb{bottom:666.120450px;}
.y64{bottom:666.660450px;}
.y82{bottom:671.160450px;}
.y2b{bottom:675.660450px;}
.ydd{bottom:679.170450px;}
.y4e{bottom:684.660450px;}
.y93{bottom:690.060450px;}
.ya8{bottom:697.350450px;}
.yc1{bottom:699.060450px;}
.ya{bottom:707.520450px;}
.y63{bottom:708.060450px;}
.y81{bottom:712.470450px;}
.y2a{bottom:717.060450px;}
.ydc{bottom:720.570450px;}
.y4d{bottom:726.060450px;}
.y92{bottom:731.460450px;}
.y127{bottom:740.460450px;}
.ya7{bottom:747.840450px;}
.yc0{bottom:749.370450px;}
.y62{bottom:749.460450px;}
.y9{bottom:754.950450px;}
.y121{bottom:758.370450px;}
.y29{bottom:758.460450px;}
.ydb{bottom:761.970450px;}
.y80{bottom:762.780450px;}
.y4c{bottom:767.460450px;}
.y91{bottom:772.770450px;}
.y126{bottom:781.770450px;}
.ya6{bottom:789.240450px;}
.y8{bottom:790.320450px;}
.y61{bottom:790.770450px;}
.yb6{bottom:799.680450px;}
.y28{bottom:799.770450px;}
.yda{bottom:804.720450px;}
.y4b{bottom:808.770450px;}
.y7c{bottom:811.290428px;}
.y7f{bottom:816.150438px;}
.y90{bottom:823.080450px;}
.y125{bottom:823.170450px;}
.y79{bottom:828.840450px;}
.y78{bottom:830.190879px;}
.y7e{bottom:830.279869px;}
.y7a{bottom:830.280450px;}
.ya5{bottom:830.640450px;}
.y7{bottom:831.720450px;}
.y60{bottom:832.170450px;}
.y7b{bottom:837.030450px;}
.y27{bottom:841.170450px;}
.y7d{bottom:841.890450px;}
.yd9{bottom:848.820450px;}
.y4a{bottom:850.170450px;}
.ya4{bottom:872.040600px;}
.y5f{bottom:873.570450px;}
.y6{bottom:879.960450px;}
.y26{bottom:882.570450px;}
.y49{bottom:891.570450px;}
.y77{bottom:894.000600px;}
.y5e{bottom:914.970450px;}
.ya3{bottom:922.350450px;}
.y5{bottom:923.610450px;}
.yfb{bottom:923.880450px;}
.y25{bottom:923.970450px;}
.y48{bottom:932.970450px;}
.y76{bottom:935.400450px;}
.y5d{bottom:956.370450px;}
.y4{bottom:965.010450px;}
.y24{bottom:965.370450px;}
.ya2{bottom:972.840450px;}
.y47{bottom:974.370450px;}
.y75{bottom:976.800450px;}
.y8f{bottom:997.770450px;}
.y5c{bottom:1006.680450px;}
.y23{bottom:1006.770450px;}
.y115{bottom:1015.680450px;}
.y46{bottom:1015.770450px;}
.y74{bottom:1018.200450px;}
.ya1{bottom:1023.510450px;}
.ya0{bottom:1035.570450px;}
.y3{bottom:1048.080450px;}
.y22{bottom:1048.170450px;}
.y45{bottom:1057.170450px;}
.y73{bottom:1068.510450px;}
.y2{bottom:1089.480450px;}
.y21{bottom:1089.570450px;}
.y44{bottom:1098.570450px;}
.y72{bottom:1119.090450px;}
.y71{bottom:1131.150450px;}
.y20{bottom:1139.880450px;}
.y43{bottom:1139.970450px;}
.yd0{bottom:1146.000450px;}
.y1e{bottom:1164.823650px;}
.y1d{bottom:1182.823650px;}
.y1c{bottom:1200.823500px;}
.y1b{bottom:1218.823500px;}
.h1d{height:25.527703px;}
.hd{height:30.442172px;}
.h1e{height:31.313572px;}
.h5{height:35.578125px;}
.h7{height:41.614453px;}
.h8{height:43.681641px;}
.h9{height:43.682241px;}
.h14{height:43.769004px;}
.h19{height:49.185103px;}
.h20{height:49.185703px;}
.h18{height:49.188091px;}
.hf{height:50.220485px;}
.h2{height:52.417969px;}
.h1b{height:52.613454px;}
.he{height:52.657344px;}
.h22{height:55.031588px;}
.h21{height:55.032187px;}
.h15{height:55.032788px;}
.h1c{height:55.906348px;}
.h10{height:56.901307px;}
.h1{height:57.258984px;}
.h6{height:62.578125px;}
.hc{height:62.863898px;}
.h16{height:65.733853px;}
.h4{height:65.734453px;}
.h3{height:65.735053px;}
.hb{height:67.483621px;}
.h17{height:78.325980px;}
.h1a{height:78.331992px;}
.h1f{height:83.746303px;}
.h11{height:104.668594px;}
.h13{height:111.103898px;}
.ha{height:116.938125px;}
.h12{height:165.466225px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x19{left:73.080000px;}
.x5{left:111.328500px;}
.x4{left:127.620000px;}
.x2{left:132.480000px;}
.x18{left:134.280000px;}
.x1e{left:139.140000px;}
.x27{left:169.650000px;}
.x26{left:175.230000px;}
.xf{left:182.610521px;}
.x2b{left:216.720000px;}
.x1f{left:226.710792px;}
.x17{left:251.100000px;}
.xc{left:253.080000px;}
.x28{left:274.860000px;}
.x12{left:286.740486px;}
.xe{left:301.680000px;}
.xd{left:315.720000px;}
.x10{left:319.409597px;}
.x11{left:325.890258px;}
.x3{left:330.030000px;}
.x2c{left:331.559676px;}
.x9{left:334.440000px;}
.x2d{left:341.728974px;}
.x13{left:350.460000px;}
.x6{left:360.450000px;}
.x21{left:374.310756px;}
.x20{left:389.070216px;}
.x29{left:396.990000px;}
.x2f{left:413.549910px;}
.x2e{left:416.788794px;}
.x14{left:420.390000px;}
.x7{left:451.350000px;}
.x23{left:462.780000px;}
.x24{left:467.550000px;}
.xa{left:477.360000px;}
.x22{left:483.570576px;}
.x8{left:488.520000px;}
.x2a{left:494.820000px;}
.x30{left:504.179307px;}
.x15{left:508.590000px;}
.xb{left:514.530000px;}
.x31{left:515.880441px;}
.x1b{left:517.770000px;}
.x1c{left:528.390000px;}
.x33{left:596.340333px;}
.x32{left:599.039928px;}
.x34{left:686.249793px;}
.x35{left:698.489361px;}
.x16{left:747.089850px;}
.x25{left:753.120000px;}
.x1{left:756.270000px;}
.x1d{left:757.620000px;}
.x36{left:764.999850px;}
.x1a{left:771.569850px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v2{vertical-align:-21.440000pt;}
.vf{vertical-align:-18.560533pt;}
.v8{vertical-align:-13.120000pt;}
.v4{vertical-align:-2.559467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v9{vertical-align:19.200000pt;}
.v1{vertical-align:21.440533pt;}
.vd{vertical-align:26.239467pt;}
.vc{vertical-align:28.159467pt;}
.vb{vertical-align:30.717312pt;}
.v7{vertical-align:35.200000pt;}
.va{vertical-align:42.560000pt;}
.v6{vertical-align:48.320000pt;}
.ve{vertical-align:49.280533pt;}
.ls72{letter-spacing:-1.485963pt;}
.ls88{letter-spacing:-0.700786pt;}
.ls85{letter-spacing:-0.334320pt;}
.ls8b{letter-spacing:-0.302174pt;}
.ls41{letter-spacing:-0.295744pt;}
.ls3d{letter-spacing:-0.276457pt;}
.ls87{letter-spacing:-0.270028pt;}
.ls71{letter-spacing:-0.266299pt;}
.ls47{letter-spacing:-0.257169pt;}
.ls70{letter-spacing:-0.250740pt;}
.ls8c{letter-spacing:-0.244311pt;}
.ls55{letter-spacing:-0.237881pt;}
.ls37{letter-spacing:-0.225023pt;}
.ls40{letter-spacing:-0.218594pt;}
.ls53{letter-spacing:-0.212164pt;}
.ls42{letter-spacing:-0.205735pt;}
.ls34{letter-spacing:-0.199306pt;}
.ls68{letter-spacing:-0.197728pt;}
.ls38{letter-spacing:-0.192877pt;}
.ls2d{letter-spacing:-0.186448pt;}
.ls30{letter-spacing:-0.180018pt;}
.ls32{letter-spacing:-0.173589pt;}
.ls2a{letter-spacing:-0.167160pt;}
.ls2f{letter-spacing:-0.160731pt;}
.ls2e{letter-spacing:-0.154301pt;}
.ls28{letter-spacing:-0.147872pt;}
.ls2b{letter-spacing:-0.141443pt;}
.ls33{letter-spacing:-0.135014pt;}
.ls31{letter-spacing:-0.128585pt;}
.ls4a{letter-spacing:-0.128256pt;}
.ls44{letter-spacing:-0.122155pt;}
.ls74{letter-spacing:-0.121695pt;}
.ls43{letter-spacing:-0.115726pt;}
.ls4b{letter-spacing:-0.112224pt;}
.ls3f{letter-spacing:-0.109297pt;}
.ls86{letter-spacing:-0.102868pt;}
.ls2c{letter-spacing:-0.096438pt;}
.ls64{letter-spacing:-0.096192pt;}
.ls16{letter-spacing:-0.093632pt;}
.ls84{letter-spacing:-0.090009pt;}
.ls4f{letter-spacing:-0.085120pt;}
.ls29{letter-spacing:-0.083580pt;}
.ls73{letter-spacing:-0.083265pt;}
.ls6e{letter-spacing:-0.083200pt;}
.ls8a{letter-spacing:-0.077151pt;}
.ls17{letter-spacing:-0.076800pt;}
.ls89{letter-spacing:-0.064292pt;}
.ls66{letter-spacing:-0.064128pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls3e{letter-spacing:-0.057863pt;}
.ls15{letter-spacing:-0.057600pt;}
.ls75{letter-spacing:-0.051240pt;}
.ls18{letter-spacing:-0.051200pt;}
.lse{letter-spacing:-0.044800pt;}
.ls62{letter-spacing:-0.042560pt;}
.ls54{letter-spacing:-0.038575pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls10{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.025600pt;}
.ls82{letter-spacing:-0.021376pt;}
.ls6b{letter-spacing:-0.020736pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls6c{letter-spacing:-0.016032pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls6d{letter-spacing:-0.010688pt;}
.ls9{letter-spacing:-0.006400pt;}
.ls7f{letter-spacing:-0.005344pt;}
.ls11{letter-spacing:-0.005333pt;}
.ls6a{letter-spacing:-0.003456pt;}
.lsc{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.005344pt;}
.ls3{letter-spacing:0.006400pt;}
.ls21{letter-spacing:0.008320pt;}
.lsd{letter-spacing:0.008512pt;}
.ls67{letter-spacing:0.010368pt;}
.ls46{letter-spacing:0.010688pt;}
.ls4{letter-spacing:0.012768pt;}
.ls1{letter-spacing:0.012800pt;}
.ls65{letter-spacing:0.013824pt;}
.ls52{letter-spacing:0.015200pt;}
.ls7b{letter-spacing:0.016032pt;}
.ls2{letter-spacing:0.016640pt;}
.ls56{letter-spacing:0.017024pt;}
.ls6{letter-spacing:0.019200pt;}
.ls45{letter-spacing:0.021376pt;}
.ls13{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.032000pt;}
.ls49{letter-spacing:0.032064pt;}
.ls63{letter-spacing:0.032146pt;}
.ls7a{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.038400pt;}
.ls57{letter-spacing:0.038575pt;}
.ls58{letter-spacing:0.042752pt;}
.ls76{letter-spacing:0.045005pt;}
.ls5b{letter-spacing:0.048096pt;}
.ls0{letter-spacing:0.051200pt;}
.ls1f{letter-spacing:0.052704pt;}
.ls36{letter-spacing:0.057863pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls77{letter-spacing:0.064128pt;}
.ls7d{letter-spacing:0.069472pt;}
.ls8{letter-spacing:0.070272pt;}
.ls4e{letter-spacing:0.081984pt;}
.ls4d{letter-spacing:0.087840pt;}
.ls5a{letter-spacing:0.096192pt;}
.ls3c{letter-spacing:0.102400pt;}
.ls51{letter-spacing:0.106400pt;}
.ls35{letter-spacing:0.107520pt;}
.ls69{letter-spacing:0.122912pt;}
.ls12{letter-spacing:0.128000pt;}
.ls4c{letter-spacing:0.128256pt;}
.ls5c{letter-spacing:0.135680pt;}
.ls83{letter-spacing:0.140800pt;}
.ls6f{letter-spacing:0.140910pt;}
.ls59{letter-spacing:0.144288pt;}
.ls50{letter-spacing:0.147200pt;}
.ls20{letter-spacing:0.151680pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.166400pt;}
.ls5e{letter-spacing:0.317248pt;}
.ls5d{letter-spacing:0.317760pt;}
.ls81{letter-spacing:0.317952pt;}
.ls25{letter-spacing:0.405041pt;}
.ls48{letter-spacing:0.443552pt;}
.ls80{letter-spacing:0.639360pt;}
.ls3a{letter-spacing:2.490240pt;}
.ls1d{letter-spacing:2.575360pt;}
.ls1c{letter-spacing:10.624000pt;}
.ls3b{letter-spacing:45.653939pt;}
.ls27{letter-spacing:83.489937pt;}
.ls24{letter-spacing:84.578290pt;}
.ls39{letter-spacing:95.744000pt;}
.ls26{letter-spacing:120.232772pt;}
.ls79{letter-spacing:148.985376pt;}
.ls7e{letter-spacing:205.305792pt;}
.ls7c{letter-spacing:211.061280pt;}
.ls5f{letter-spacing:261.941504pt;}
.ls61{letter-spacing:318.261920pt;}
.ls60{letter-spacing:324.022752pt;}
.ls22{letter-spacing:344.111499pt;}
.ls23{letter-spacing:389.341816pt;}
.ws33{word-spacing:-335.412755pt;}
.ws2c{word-spacing:-64.000000pt;}
.wsb5{word-spacing:-53.440000pt;}
.ws32{word-spacing:-37.546684pt;}
.ws15{word-spacing:-37.376000pt;}
.ws8f{word-spacing:-35.136000pt;}
.ws8e{word-spacing:-17.931113pt;}
.ws2d{word-spacing:-17.920000pt;}
.ws8c{word-spacing:-17.905396pt;}
.wsb1{word-spacing:-17.873250pt;}
.ws1{word-spacing:-17.824000pt;}
.ws16{word-spacing:-17.792000pt;}
.wsd1{word-spacing:-17.776812pt;}
.wsc9{word-spacing:-17.770383pt;}
.wsca{word-spacing:-17.751095pt;}
.wscf{word-spacing:-17.738236pt;}
.wsdb{word-spacing:-17.731807pt;}
.ws8b{word-spacing:-17.725378pt;}
.ws18{word-spacing:-17.715200pt;}
.wse8{word-spacing:-17.712519pt;}
.wsd0{word-spacing:-17.706090pt;}
.wsd8{word-spacing:-17.693232pt;}
.wsd4{word-spacing:-17.686803pt;}
.wsd7{word-spacing:-17.680373pt;}
.wseb{word-spacing:-17.673944pt;}
.wsd3{word-spacing:-17.667515pt;}
.wsb2{word-spacing:-17.635369pt;}
.wse9{word-spacing:-17.628940pt;}
.ws95{word-spacing:-14.984576pt;}
.wsb4{word-spacing:-14.979232pt;}
.wsba{word-spacing:-14.893728pt;}
.ws93{word-spacing:-14.888384pt;}
.wsb7{word-spacing:-14.861664pt;}
.wsb6{word-spacing:-14.856320pt;}
.wsb3{word-spacing:-14.850976pt;}
.ws94{word-spacing:-14.840288pt;}
.wsbb{word-spacing:-14.834944pt;}
.ws4{word-spacing:-14.821333pt;}
.ws8d{word-spacing:-11.848704pt;}
.ws0{word-spacing:-11.844448pt;}
.ws2{word-spacing:-11.840192pt;}
.ws45{word-spacing:-11.831680pt;}
.wsbc{word-spacing:-11.789120pt;}
.ws17{word-spacing:-11.738048pt;}
.ws3{word-spacing:-10.640000pt;}
.wsb8{word-spacing:-10.247040pt;}
.wsb9{word-spacing:-9.925632pt;}
.ws90{word-spacing:-9.621504pt;}
.ws91{word-spacing:-9.618048pt;}
.ws7b{word-spacing:-9.607680pt;}
.ws92{word-spacing:-9.604224pt;}
.wsaa{word-spacing:-7.417005pt;}
.wsbf{word-spacing:-0.577152pt;}
.ws81{word-spacing:-0.571808pt;}
.ws98{word-spacing:-0.470272pt;}
.ws9b{word-spacing:-0.459584pt;}
.ws96{word-spacing:-0.321461pt;}
.ws88{word-spacing:-0.320000pt;}
.wsb0{word-spacing:-0.313846pt;}
.ws99{word-spacing:-0.272544pt;}
.ws55{word-spacing:-0.205735pt;}
.wsc2{word-spacing:-0.197728pt;}
.wsc0{word-spacing:-0.192384pt;}
.ws9a{word-spacing:-0.176352pt;}
.wsea{word-spacing:-0.160731pt;}
.ws82{word-spacing:-0.149632pt;}
.wsc1{word-spacing:-0.144288pt;}
.ws83{word-spacing:-0.138944pt;}
.wsde{word-spacing:-0.135014pt;}
.wsaf{word-spacing:-0.121695pt;}
.wsc3{word-spacing:-0.117568pt;}
.wsec{word-spacing:-0.115726pt;}
.ws54{word-spacing:-0.115200pt;}
.wscc{word-spacing:-0.109297pt;}
.wsa1{word-spacing:-0.102868pt;}
.wsd9{word-spacing:-0.090009pt;}
.wsad{word-spacing:-0.089670pt;}
.wsd5{word-spacing:-0.083580pt;}
.wsae{word-spacing:-0.051240pt;}
.ws25{word-spacing:-0.051200pt;}
.ws53{word-spacing:-0.038400pt;}
.wsdd{word-spacing:-0.032146pt;}
.ws84{word-spacing:-0.032000pt;}
.ws7d{word-spacing:-0.025717pt;}
.ws2f{word-spacing:-0.025600pt;}
.wsdc{word-spacing:-0.019288pt;}
.ws7{word-spacing:-0.019200pt;}
.wse7{word-spacing:-0.012858pt;}
.ws87{word-spacing:-0.012800pt;}
.wsc6{word-spacing:-0.006429pt;}
.ws12{word-spacing:-0.006400pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.006400pt;}
.wsc4{word-spacing:0.006429pt;}
.wsc8{word-spacing:0.012858pt;}
.wsa8{word-spacing:0.019200pt;}
.ws97{word-spacing:0.019288pt;}
.ws30{word-spacing:0.025600pt;}
.ws4c{word-spacing:0.025717pt;}
.wsd{word-spacing:0.032000pt;}
.wsd6{word-spacing:0.032146pt;}
.ws2a{word-spacing:0.038400pt;}
.wsa5{word-spacing:0.038575pt;}
.ws2b{word-spacing:0.044800pt;}
.wscd{word-spacing:0.045005pt;}
.ws50{word-spacing:0.051434pt;}
.ws26{word-spacing:0.057600pt;}
.wsa2{word-spacing:0.057863pt;}
.ws86{word-spacing:0.064000pt;}
.ws9f{word-spacing:0.064292pt;}
.ws1e{word-spacing:0.070400pt;}
.ws57{word-spacing:0.070721pt;}
.ws1a{word-spacing:0.076800pt;}
.wse4{word-spacing:0.077151pt;}
.ws20{word-spacing:0.083200pt;}
.ws44{word-spacing:0.083580pt;}
.ws28{word-spacing:0.089600pt;}
.ws8a{word-spacing:0.090009pt;}
.ws23{word-spacing:0.096000pt;}
.ws7c{word-spacing:0.096438pt;}
.ws10{word-spacing:0.102400pt;}
.ws7a{word-spacing:0.102868pt;}
.ws2e{word-spacing:0.108800pt;}
.ws49{word-spacing:0.109297pt;}
.ws1c{word-spacing:0.115200pt;}
.ws3e{word-spacing:0.115726pt;}
.wsf{word-spacing:0.121600pt;}
.ws40{word-spacing:0.122155pt;}
.ws8{word-spacing:0.128000pt;}
.ws89{word-spacing:0.128585pt;}
.wsa{word-spacing:0.134400pt;}
.ws42{word-spacing:0.135014pt;}
.wsc{word-spacing:0.140800pt;}
.ws35{word-spacing:0.141443pt;}
.ws6{word-spacing:0.147200pt;}
.ws4e{word-spacing:0.147872pt;}
.ws14{word-spacing:0.153600pt;}
.ws38{word-spacing:0.154301pt;}
.ws11{word-spacing:0.160000pt;}
.ws4f{word-spacing:0.160731pt;}
.ws9{word-spacing:0.166400pt;}
.ws48{word-spacing:0.167160pt;}
.ws13{word-spacing:0.172800pt;}
.ws43{word-spacing:0.173589pt;}
.ws19{word-spacing:0.179200pt;}
.ws4b{word-spacing:0.180018pt;}
.wse{word-spacing:0.185600pt;}
.ws3c{word-spacing:0.186448pt;}
.ws24{word-spacing:0.192000pt;}
.ws46{word-spacing:0.192877pt;}
.wsa7{word-spacing:0.198400pt;}
.ws37{word-spacing:0.199306pt;}
.ws3b{word-spacing:0.205735pt;}
.ws1b{word-spacing:0.211200pt;}
.ws3a{word-spacing:0.212164pt;}
.ws85{word-spacing:0.217600pt;}
.ws3d{word-spacing:0.218594pt;}
.ws21{word-spacing:0.224000pt;}
.ws36{word-spacing:0.225023pt;}
.ws22{word-spacing:0.230400pt;}
.ws41{word-spacing:0.231452pt;}
.ws1f{word-spacing:0.236800pt;}
.ws3f{word-spacing:0.237881pt;}
.ws29{word-spacing:0.243200pt;}
.ws39{word-spacing:0.244311pt;}
.ws52{word-spacing:0.250740pt;}
.ws56{word-spacing:0.257169pt;}
.ws27{word-spacing:0.262400pt;}
.wsa0{word-spacing:0.263598pt;}
.ws4a{word-spacing:0.270028pt;}
.ws51{word-spacing:0.276457pt;}
.ws1d{word-spacing:0.281600pt;}
.ws79{word-spacing:0.282886pt;}
.wsab{word-spacing:0.289315pt;}
.ws47{word-spacing:0.295744pt;}
.ws80{word-spacing:0.302174pt;}
.ws4d{word-spacing:0.308603pt;}
.ws7e{word-spacing:0.315032pt;}
.wscb{word-spacing:0.321461pt;}
.wsc7{word-spacing:0.327891pt;}
.wsa3{word-spacing:0.334320pt;}
.ws9c{word-spacing:0.338688pt;}
.wsc5{word-spacing:0.340749pt;}
.wsbd{word-spacing:0.360037pt;}
.wsa6{word-spacing:0.366466pt;}
.ws7f{word-spacing:0.372895pt;}
.wse5{word-spacing:0.379324pt;}
.wsbe{word-spacing:0.385754pt;}
.wsa4{word-spacing:0.392183pt;}
.wsac{word-spacing:0.398612pt;}
.wse6{word-spacing:0.411471pt;}
.wsce{word-spacing:0.437187pt;}
.ws65{word-spacing:0.488621pt;}
.ws66{word-spacing:0.533626pt;}
.wsda{word-spacing:0.546484pt;}
.ws64{word-spacing:0.559343pt;}
.ws63{word-spacing:0.578630pt;}
.wse3{word-spacing:0.597918pt;}
.wsdf{word-spacing:0.662210pt;}
.wsd2{word-spacing:0.758649pt;}
.wse0{word-spacing:0.861516pt;}
.ws6a{word-spacing:1.774467pt;}
.ws6c{word-spacing:1.780896pt;}
.ws6b{word-spacing:1.858047pt;}
.ws62{word-spacing:2.063782pt;}
.ws61{word-spacing:2.198796pt;}
.wse1{word-spacing:3.066741pt;}
.ws76{word-spacing:3.227472pt;}
.wse2{word-spacing:3.278906pt;}
.ws75{word-spacing:3.368915pt;}
.ws74{word-spacing:3.413919pt;}
.ws67{word-spacing:4.005408pt;}
.ws68{word-spacing:4.056842pt;}
.ws69{word-spacing:4.178997pt;}
.ws73{word-spacing:4.333299pt;}
.ws72{word-spacing:4.404020pt;}
.ws6e{word-spacing:6.281354pt;}
.ws6d{word-spacing:6.307071pt;}
.ws6f{word-spacing:7.175017pt;}
.ws71{word-spacing:7.265026pt;}
.ws70{word-spacing:7.290743pt;}
.ws5e{word-spacing:8.994488pt;}
.ws5c{word-spacing:9.142360pt;}
.ws5d{word-spacing:9.155219pt;}
.ws5b{word-spacing:9.219511pt;}
.ws60{word-spacing:12.331257pt;}
.ws5f{word-spacing:12.421266pt;}
.ws77{word-spacing:16.516683pt;}
.ws78{word-spacing:16.555259pt;}
.ws34{word-spacing:16.613122pt;}
.ws59{word-spacing:21.287169pt;}
.ws58{word-spacing:21.325745pt;}
.ws5a{word-spacing:21.351462pt;}
.wsa9{word-spacing:90.447631pt;}
.ws9e{word-spacing:338.125568pt;}
.ws9d{word-spacing:338.130912pt;}
.ws31{word-spacing:380.584502pt;}
._11b{margin-left:-2923.968949pt;}
._135{margin-left:-2915.276927pt;}
._83{margin-left:-2500.817121pt;}
._ec{margin-left:-2499.793250pt;}
._89{margin-left:-2495.493137pt;}
._85{margin-left:-2491.841921pt;}
._84{margin-left:-2488.416301pt;}
._88{margin-left:-2486.312202pt;}
._87{margin-left:-2484.839909pt;}
._78{margin-left:-2482.953231pt;}
._128{margin-left:-2481.927469pt;}
._127{margin-left:-2481.001661pt;}
._86{margin-left:-2479.780691pt;}
._af{margin-left:-2477.819193pt;}
._61{margin-left:-2476.616928pt;}
._fe{margin-left:-2475.061055pt;}
._5d{margin-left:-2474.045237pt;}
._ed{margin-left:-2471.705583pt;}
._124{margin-left:-2470.335574pt;}
._8d{margin-left:-2468.458239pt;}
._65{margin-left:-2466.619481pt;}
._e8{margin-left:-2464.581416pt;}
._68{margin-left:-2463.051260pt;}
._72{margin-left:-2460.219777pt;}
._4c{margin-left:-2456.832000pt;}
._64{margin-left:-2455.516206pt;}
._6b{margin-left:-2453.395145pt;}
._9d{margin-left:-2452.205154pt;}
._d2{margin-left:-2450.810012pt;}
._e6{margin-left:-2449.408441pt;}
._98{margin-left:-2448.379764pt;}
._17{margin-left:-2445.440000pt;}
._b2{margin-left:-2443.142845pt;}
._7a{margin-left:-2441.551926pt;}
._fb{margin-left:-2438.838792pt;}
._15{margin-left:-2437.785600pt;}
._132{margin-left:-2436.305677pt;}
._57{margin-left:-2435.123200pt;}
._4d{margin-left:-2431.801600pt;}
._b5{margin-left:-2428.591914pt;}
._3c{margin-left:-2427.424000pt;}
._5e{margin-left:-2424.051571pt;}
._9c{margin-left:-2422.097086pt;}
._9f{margin-left:-2420.843387pt;}
._3f{margin-left:-2419.712000pt;}
._3d{margin-left:-2418.208000pt;}
._4a{margin-left:-2416.838400pt;}
._c6{margin-left:-2415.680718pt;}
._ad{margin-left:-2414.726557pt;}
._b{margin-left:-2413.772800pt;}
._22{margin-left:-2410.598400pt;}
._5{margin-left:-2408.787200pt;}
._b1{margin-left:-2407.574047pt;}
._138{margin-left:-2406.666942pt;}
._53{margin-left:-2405.625600pt;}
._70{margin-left:-2404.365279pt;}
._f0{margin-left:-2403.368749pt;}
._20{margin-left:-2402.400000pt;}
._107{margin-left:-2400.514172pt;}
._7c{margin-left:-2399.543359pt;}
._8f{margin-left:-2397.106682pt;}
._37{margin-left:-2395.980800pt;}
._42{margin-left:-2394.387200pt;}
._28{margin-left:-2392.550400pt;}
._58{margin-left:-2390.745600pt;}
._ee{margin-left:-2388.697253pt;}
._cd{margin-left:-2386.942074pt;}
._b3{margin-left:-2385.926257pt;}
._19{margin-left:-2384.972800pt;}
._ab{margin-left:-2382.602346pt;}
._9a{margin-left:-2380.660428pt;}
._a8{margin-left:-2378.166180pt;}
._104{margin-left:-2377.240371pt;}
._1c{margin-left:-2374.579200pt;}
._a{margin-left:-2372.620800pt;}
._1f{margin-left:-2371.603200pt;}
._2f{margin-left:-2370.252800pt;}
._e3{margin-left:-2367.635107pt;}
._8{margin-left:-2366.291200pt;}
._9b{margin-left:-2364.606941pt;}
._35{margin-left:-2363.545600pt;}
._6f{margin-left:-2360.858702pt;}
._7b{margin-left:-2358.004125pt;}
._2a{margin-left:-2355.788800pt;}
._d1{margin-left:-2354.331086pt;}
._b0{margin-left:-2353.432945pt;}
._23{margin-left:-2352.409600pt;}
._116{margin-left:-2350.604085pt;}
._6c{margin-left:-2349.549692pt;}
._c{margin-left:-2348.627200pt;}
._24{margin-left:-2346.188800pt;}
._113{margin-left:-2345.119955pt;}
._143{margin-left:-2343.647662pt;}
._1b{margin-left:-2342.092800pt;}
._51{margin-left:-2341.004800pt;}
._de{margin-left:-2339.680829pt;}
._3a{margin-left:-2337.843200pt;}
._7f{margin-left:-2336.800536pt;}
._6{margin-left:-2335.168000pt;}
._f1{margin-left:-2333.271474pt;}
._9{margin-left:-2331.289600pt;}
._10a{margin-left:-2327.806048pt;}
._13c{margin-left:-2326.005864pt;}
._3{margin-left:-2324.736000pt;}
._f5{margin-left:-2321.794721pt;}
._4b{margin-left:-2320.057600pt;}
._50{margin-left:-2316.409600pt;}
._46{margin-left:-2314.086400pt;}
._8c{margin-left:-2311.636543pt;}
._ff{margin-left:-2310.742880pt;}
._90{margin-left:-2307.663280pt;}
._3e{margin-left:-2306.099200pt;}
._118{margin-left:-2303.175680pt;}
._11a{margin-left:-2300.661853pt;}
._36{margin-left:-2299.680000pt;}
._aa{margin-left:-2297.035769pt;}
._c2{margin-left:-2295.859804pt;}
._25{margin-left:-2291.993600pt;}
._14{margin-left:-2288.960000pt;}
._b4{margin-left:-2286.781736pt;}
._18{margin-left:-2285.395200pt;}
._c1{margin-left:-2281.811360pt;}
._8e{margin-left:-2280.467652pt;}
._11f{margin-left:-2279.149660pt;}
._f3{margin-left:-2274.867795pt;}
._33{margin-left:-2273.657600pt;}
._cc{margin-left:-2272.585420pt;}
._16{margin-left:-2271.603200pt;}
._a9{margin-left:-2268.721455pt;}
._30{margin-left:-2267.654400pt;}
._74{margin-left:-2265.230384pt;}
._73{margin-left:-2264.156704pt;}
._e4{margin-left:-2262.131497pt;}
._13{margin-left:-2260.934400pt;}
._c9{margin-left:-2257.881778pt;}
._34{margin-left:-2253.529600pt;}
._e1{margin-left:-2250.134560pt;}
._e9{margin-left:-2247.138541pt;}
._134{margin-left:-2242.059160pt;}
._93{margin-left:-2240.117825pt;}
._1d{margin-left:-2239.072000pt;}
._94{margin-left:-2238.163340pt;}
._66{margin-left:-2235.868106pt;}
._31{margin-left:-2234.272000pt;}
._c3{margin-left:-2232.274169pt;}
._2b{margin-left:-2228.384000pt;}
._2c{margin-left:-2224.896000pt;}
._cb{margin-left:-2221.878109pt;}
._d0{margin-left:-2217.789121pt;}
._2e{margin-left:-2214.028800pt;}
._e0{margin-left:-2212.272844pt;}
._ac{margin-left:-2210.197362pt;}
._49{margin-left:-2203.475200pt;}
._29{margin-left:-2202.016000pt;}
._7{margin-left:-2199.833600pt;}
._3b{margin-left:-2198.873600pt;}
._d{margin-left:-2196.890752pt;}
._ca{margin-left:-2190.835167pt;}
._e7{margin-left:-2189.854131pt;}
._40{margin-left:-2188.851200pt;}
._ae{margin-left:-2186.825965pt;}
._12b{margin-left:-2182.916995pt;}
._99{margin-left:-2179.419496pt;}
._80{margin-left:-2177.040682pt;}
._141{margin-left:-2172.263767pt;}
._1a{margin-left:-2171.328000pt;}
._131{margin-left:-2161.539817pt;}
._d3{margin-left:-2156.878627pt;}
._e{margin-left:-2153.529600pt;}
._f2{margin-left:-2150.796579pt;}
._fd{margin-left:-2149.687242pt;}
._2d{margin-left:-2140.076800pt;}
._27{margin-left:-2138.374400pt;}
._ea{margin-left:-2136.703714pt;}
._32{margin-left:-2132.787200pt;}
._e5{margin-left:-2130.338780pt;}
._21{margin-left:-2128.972800pt;}
._121{margin-left:-2125.260275pt;}
._41{margin-left:-2122.137600pt;}
._11e{margin-left:-2117.486756pt;}
._101{margin-left:-2110.674695pt;}
._105{margin-left:-2106.743518pt;}
._39{margin-left:-2090.035200pt;}
._8a{margin-left:-2071.903539pt;}
._d4{margin-left:-2059.411551pt;}
._f7{margin-left:-2051.433465pt;}
._b6{margin-left:-2046.839598pt;}
._1e{margin-left:-2029.056000pt;}
._125{margin-left:-2025.272358pt;}
._122{margin-left:-2011.796698pt;}
._111{margin-left:-2008.286341pt;}
._112{margin-left:-2004.338796pt;}
._f9{margin-left:-1994.322644pt;}
._11d{margin-left:-1975.818746pt;}
._10b{margin-left:-1933.476443pt;}
._4{margin-left:-1921.113600pt;}
._11c{margin-left:-1907.497690pt;}
._69{margin-left:-1898.963770pt;}
._10{margin-left:-1879.110400pt;}
._12a{margin-left:-1847.427673pt;}
._119{margin-left:-1826.917856pt;}
._c4{margin-left:-1815.538125pt;}
._c7{margin-left:-1809.340351pt;}
._145{margin-left:-1769.852041pt;}
._137{margin-left:-1762.381279pt;}
._144{margin-left:-1758.813058pt;}
._55{margin-left:-1744.883200pt;}
._10d{margin-left:-1740.470475pt;}
._110{margin-left:-1713.216983pt;}
._77{margin-left:-1687.210850pt;}
._117{margin-left:-1680.048602pt;}
._13e{margin-left:-1674.256453pt;}
._5c{margin-left:-1659.211187pt;}
._52{margin-left:-1652.403200pt;}
._cf{margin-left:-1648.886141pt;}
._f{margin-left:-1630.406400pt;}
._130{margin-left:-1628.268195pt;}
._13d{margin-left:-1617.062053pt;}
._129{margin-left:-1614.220335pt;}
._108{margin-left:-1595.735724pt;}
._140{margin-left:-1583.687353pt;}
._136{margin-left:-1577.463862pt;}
._120{margin-left:-1570.121685pt;}
._4f{margin-left:-1563.596800pt;}
._12f{margin-left:-1560.375561pt;}
._126{margin-left:-1549.304433pt;}
._123{margin-left:-1520.687361pt;}
._ce{margin-left:-1515.802176pt;}
._95{margin-left:-1510.697511pt;}
._103{margin-left:-1506.138605pt;}
._6e{margin-left:-1499.323041pt;}
._13f{margin-left:-1495.626236pt;}
._12d{margin-left:-1484.561536pt;}
._115{margin-left:-1481.598247pt;}
._10e{margin-left:-1480.678284pt;}
._71{margin-left:-1474.962701pt;}
._63{margin-left:-1466.938735pt;}
._139{margin-left:-1446.172624pt;}
._10c{margin-left:-1442.057919pt;}
._106{margin-left:-1438.624712pt;}
._102{margin-left:-1436.605935pt;}
._7d{margin-left:-1424.081801pt;}
._10f{margin-left:-1418.912703pt;}
._fa{margin-left:-1410.033941pt;}
._6a{margin-left:-1407.430104pt;}
._12e{margin-left:-1399.824329pt;}
._13a{margin-left:-1392.501440pt;}
._13b{margin-left:-1382.619718pt;}
._df{margin-left:-1378.370000pt;}
._dd{margin-left:-1374.673194pt;}
._114{margin-left:-1365.112934pt;}
._f8{margin-left:-1352.929550pt;}
._60{margin-left:-1332.381741pt;}
._c8{margin-left:-1314.804236pt;}
._75{margin-left:-1303.250915pt;}
._38{margin-left:-1285.772800pt;}
._12c{margin-left:-1250.582690pt;}
._133{margin-left:-1243.799856pt;}
._62{margin-left:-1239.903745pt;}
._6d{margin-left:-1215.260519pt;}
._5b{margin-left:-1200.597120pt;}
._109{margin-left:-1168.783639pt;}
._79{margin-left:-1151.733330pt;}
._100{margin-left:-1140.417891pt;}
._5f{margin-left:-1125.514944pt;}
._97{margin-left:-1115.523926pt;}
._c5{margin-left:-1037.132365pt;}
._96{margin-left:-1015.417600pt;}
._7e{margin-left:-997.811215pt;}
._67{margin-left:-979.455773pt;}
._4e{margin-left:-976.994784pt;}
._26{margin-left:-950.835200pt;}
._59{margin-left:-947.942400pt;}
._44{margin-left:-944.038400pt;}
._82{margin-left:-940.732540pt;}
._e2{margin-left:-926.498233pt;}
._92{margin-left:-894.480684pt;}
._c0{margin-left:-891.786838pt;}
._8b{margin-left:-884.181063pt;}
._b7{margin-left:-873.392820pt;}
._48{margin-left:-855.193600pt;}
._eb{margin-left:-848.305978pt;}
._fc{margin-left:-841.323838pt;}
._91{margin-left:-833.673058pt;}
._f4{margin-left:-776.640000pt;}
._12{margin-left:-745.772800pt;}
._ef{margin-left:-613.497600pt;}
._54{margin-left:-603.206400pt;}
._142{margin-left:-584.894132pt;}
._56{margin-left:-574.809600pt;}
._45{margin-left:-563.315200pt;}
._f6{margin-left:-556.313600pt;}
._81{margin-left:-528.021193pt;}
._9e{margin-left:-514.532675pt;}
._1{margin-left:-405.900800pt;}
._47{margin-left:-403.193600pt;}
._5a{margin-left:-378.578583pt;}
._bf{margin-left:-211.793250pt;}
._bc{margin-left:-207.683872pt;}
._bb{margin-left:-21.982560pt;}
._be{margin-left:-7.043392pt;}
._a1{margin-left:-2.356704pt;}
._0{margin-left:-1.344000pt;}
._2{width:1.280000pt;}
._76{width:11.192601pt;}
._bd{width:14.704000pt;}
._dc{width:52.677376pt;}
._d8{width:60.698496pt;}
._da{width:61.931488pt;}
._db{width:63.080352pt;}
._b9{width:73.572544pt;}
._ba{width:74.806016pt;}
._d7{width:76.364832pt;}
._11{width:103.916800pt;}
._43{width:106.617600pt;}
._a4{width:132.712032pt;}
._d6{width:142.043392pt;}
._a6{width:147.434752pt;}
._d9{width:155.037344pt;}
._d5{width:219.429984pt;}
._a2{width:285.759712pt;}
._b8{width:295.913312pt;}
._a3{width:343.710048pt;}
._a7{width:399.886176pt;}
._a5{width:406.779936pt;}
._a0{width:490.993344pt;}
.fsb{font-size:26.107733pt;}
.fsc{font-size:32.025067pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.168533pt;}
.fs2{font-size:42.560000pt;}
.fs4{font-size:45.440000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:64.292267pt;}
.fs8{font-size:74.560000pt;}
.fs5{font-size:86.392533pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:50.507147pt;}
.y1{bottom:67.387067pt;}
.ybf{bottom:98.187200pt;}
.y113{bottom:99.787067pt;}
.y70{bottom:100.187200pt;}
.yee{bottom:103.467067pt;}
.y5b{bottom:106.187200pt;}
.y120{bottom:108.427067pt;}
.y105{bottom:108.667067pt;}
.yfa{bottom:110.987067pt;}
.y37{bottom:112.027200pt;}
.yf2{bottom:114.187200pt;}
.yb5{bottom:117.627067pt;}
.y1a{bottom:118.347067pt;}
.y139{bottom:118.987067pt;}
.yeb{bottom:121.387067pt;}
.y42{bottom:122.187200pt;}
.y8e{bottom:122.987067pt;}
.y134{bottom:126.987067pt;}
.y114{bottom:128.507067pt;}
.y118{bottom:130.187200pt;}
.y9f{bottom:133.627067pt;}
.ybe{bottom:134.987067pt;}
.y112{bottom:136.587067pt;}
.y6f{bottom:136.987067pt;}
.yed{bottom:140.267067pt;}
.y5a{bottom:142.987067pt;}
.y11f{bottom:145.227067pt;}
.y104{bottom:145.467067pt;}
.y19{bottom:146.587067pt;}
.yf9{bottom:147.787067pt;}
.yf1{bottom:150.987067pt;}
.yb4{bottom:154.427067pt;}
.y138{bottom:155.787067pt;}
.y36{bottom:156.827200pt;}
.yea{bottom:158.187200pt;}
.y41{bottom:158.987067pt;}
.y8d{bottom:159.787067pt;}
.ycf{bottom:162.347067pt;}
.y133{bottom:163.787067pt;}
.y117{bottom:166.987067pt;}
.y9e{bottom:170.427067pt;}
.y124{bottom:171.787067pt;}
.y111{bottom:173.387067pt;}
.y6e{bottom:173.787067pt;}
.y18{bottom:174.827067pt;}
.yce{bottom:178.347067pt;}
.ybd{bottom:179.707067pt;}
.y59{bottom:179.787067pt;}
.yec{bottom:181.547067pt;}
.y11e{bottom:182.027200pt;}
.yd5{bottom:183.707067pt;}
.yf8{bottom:184.587067pt;}
.y103{bottom:190.267067pt;}
.yb3{bottom:191.227067pt;}
.y131{bottom:192.587067pt;}
.ycd{bottom:194.347067pt;}
.ye9{bottom:194.987067pt;}
.yf0{bottom:195.707067pt;}
.y40{bottom:195.787067pt;}
.y13a{bottom:200.587067pt;}
.y35{bottom:201.627200pt;}
.y17{bottom:203.067067pt;}
.y116{bottom:203.787067pt;}
.y8c{bottom:204.507067pt;}
.y9d{bottom:207.227067pt;}
.y123{bottom:208.587067pt;}
.ycc{bottom:210.347067pt;}
.y6d{bottom:210.587067pt;}
.yd3{bottom:215.147200pt;}
.y58{bottom:216.587067pt;}
.y110{bottom:218.187200pt;}
.y11d{bottom:218.827067pt;}
.yd4{bottom:220.507067pt;}
.yf7{bottom:221.387067pt;}
.ybc{bottom:224.587067pt;}
.yb2{bottom:228.027067pt;}
.y130{bottom:229.387067pt;}
.y102{bottom:230.027067pt;}
.y16{bottom:231.307067pt;}
.y3f{bottom:232.587067pt;}
.y137{bottom:237.387067pt;}
.ye8{bottom:239.707067pt;}
.yfe{bottom:240.027067pt;}
.yef{bottom:240.587067pt;}
.y9c{bottom:244.027067pt;}
.ycb{bottom:245.387067pt;}
.y34{bottom:246.427200pt;}
.y8b{bottom:249.387067pt;}
.yd2{bottom:251.947067pt;}
.yfc{bottom:252.267067pt;}
.y122{bottom:253.307067pt;}
.y57{bottom:253.387067pt;}
.y10f{bottom:254.987067pt;}
.y6c{bottom:255.627067pt;}
.yf6{bottom:258.187067pt;}
.y15{bottom:259.547067pt;}
.ybb{bottom:261.387067pt;}
.yb1{bottom:264.827067pt;}
.y12f{bottom:266.187200pt;}
.y6b{bottom:266.347067pt;}
.y3e{bottom:269.387067pt;}
.y136{bottom:274.187200pt;}
.yd8{bottom:277.387067pt;}
.y13b{bottom:282.187200pt;}
.ye7{bottom:284.587067pt;}
.y8a{bottom:286.187200pt;}
.y14{bottom:287.787067pt;}
.y9b{bottom:288.747067pt;}
.yca{bottom:290.187200pt;}
.y33{bottom:291.227200pt;}
.y11c{bottom:292.427067pt;}
.yd1{bottom:293.307067pt;}
.yf5{bottom:294.987067pt;}
.y10e{bottom:297.147067pt;}
.y56{bottom:298.107067pt;}
.yba{bottom:298.187200pt;}
.ye6{bottom:302.987067pt;}
.y3d{bottom:306.187200pt;}
.yb0{bottom:309.467067pt;}
.y10d{bottom:310.187200pt;}
.y12e{bottom:310.987067pt;}
.yd7{bottom:314.187200pt;}
.y13{bottom:316.027067pt;}
.yfd{bottom:316.667200pt;}
.y6a{bottom:318.987067pt;}
.y89{bottom:322.987067pt;}
.y10c{bottom:326.187200pt;}
.yc9{bottom:326.987067pt;}
.y11b{bottom:329.227067pt;}
.yf4{bottom:331.787067pt;}
.y9a{bottom:333.627200pt;}
.yb9{bottom:334.987067pt;}
.y32{bottom:336.027200pt;}
.y10b{bottom:342.187200pt;}
.y55{bottom:342.907200pt;}
.y3c{bottom:342.987200pt;}
.y12{bottom:344.187067pt;}
.y12d{bottom:347.787067pt;}
.ye4{bottom:350.986536pt;}
.yd6{bottom:350.987200pt;}
.yaf{bottom:354.347067pt;}
.y69{bottom:355.787067pt;}
.y109{bottom:358.187075pt;}
.y107{bottom:358.187200pt;}
.ye3{bottom:358.667200pt;}
.y88{bottom:359.787067pt;}
.yc8{bottom:363.787067pt;}
.y106{bottom:365.867067pt;}
.y11a{bottom:366.027067pt;}
.ye5{bottom:366.347192pt;}
.y99{bottom:370.427067pt;}
.yb8{bottom:371.787067pt;}
.y11{bottom:372.427067pt;}
.yf3{bottom:373.067200pt;}
.y10a{bottom:373.547067pt;}
.y108{bottom:373.547192pt;}
.y3b{bottom:379.787067pt;}
.y101{bottom:380.587200pt;}
.y31{bottom:380.827200pt;}
.y12c{bottom:384.587200pt;}
.y54{bottom:387.787067pt;}
.y100{bottom:390.427067pt;}
.yae{bottom:391.147200pt;}
.y135{bottom:392.587067pt;}
.yff{bottom:400.267067pt;}
.y68{bottom:400.507067pt;}
.yc7{bottom:400.587067pt;}
.y10{bottom:400.667067pt;}
.y119{bottom:401.147200pt;}
.y87{bottom:404.507067pt;}
.y98{bottom:407.227067pt;}
.yb7{bottom:408.587067pt;}
.ye2{bottom:409.387067pt;}
.y3a{bottom:416.587067pt;}
.y12b{bottom:421.387067pt;}
.y53{bottom:424.587067pt;}
.y30{bottom:425.627200pt;}
.yad{bottom:427.947200pt;}
.yf{bottom:428.907067pt;}
.y132{bottom:429.387067pt;}
.yc6{bottom:437.387067pt;}
.y67{bottom:445.387067pt;}
.ye1{bottom:447.387067pt;}
.y86{bottom:449.387067pt;}
.y97{bottom:451.947200pt;}
.y39{bottom:453.387067pt;}
.y2f{bottom:453.947200pt;}
.y52{bottom:461.387067pt;}
.yac{bottom:464.747200pt;}
.y12a{bottom:466.187200pt;}
.ye{bottom:473.707067pt;}
.yc5{bottom:474.187067pt;}
.y2e{bottom:482.187067pt;}
.ye0{bottom:485.387067pt;}
.y85{bottom:486.187067pt;}
.y38{bottom:490.187067pt;}
.y96{bottom:496.827067pt;}
.y51{bottom:498.187067pt;}
.yab{bottom:501.547067pt;}
.y129{bottom:502.987067pt;}
.yd{bottom:510.507067pt;}
.yc4{bottom:510.987067pt;}
.y66{bottom:518.987067pt;}
.ydf{bottom:522.187067pt;}
.y84{bottom:522.987067pt;}
.y2d{bottom:526.987067pt;}
.y50{bottom:534.987067pt;}
.y95{bottom:537.147067pt;}
.yaa{bottom:538.347067pt;}
.y128{bottom:539.787067pt;}
.yc3{bottom:547.787067pt;}
.yc{bottom:552.667067pt;}
.y65{bottom:555.787067pt;}
.y83{bottom:559.787067pt;}
.y2c{bottom:563.787067pt;}
.yde{bottom:566.907067pt;}
.y4f{bottom:571.787067pt;}
.ya9{bottom:575.147067pt;}
.y94{bottom:576.587067pt;}
.yc2{bottom:584.587067pt;}
.yb{bottom:592.107067pt;}
.y64{bottom:592.587067pt;}
.y82{bottom:596.587067pt;}
.y2b{bottom:600.587067pt;}
.ydd{bottom:603.707067pt;}
.y4e{bottom:608.587067pt;}
.y93{bottom:613.387067pt;}
.ya8{bottom:619.867067pt;}
.yc1{bottom:621.387067pt;}
.ya{bottom:628.907067pt;}
.y63{bottom:629.387067pt;}
.y81{bottom:633.307067pt;}
.y2a{bottom:637.387067pt;}
.ydc{bottom:640.507067pt;}
.y4d{bottom:645.387067pt;}
.y92{bottom:650.187067pt;}
.y127{bottom:658.187067pt;}
.ya7{bottom:664.747067pt;}
.yc0{bottom:666.107067pt;}
.y62{bottom:666.187067pt;}
.y9{bottom:671.067067pt;}
.y121{bottom:674.107067pt;}
.y29{bottom:674.187067pt;}
.ydb{bottom:677.307067pt;}
.y80{bottom:678.027067pt;}
.y4c{bottom:682.187067pt;}
.y91{bottom:686.907067pt;}
.y126{bottom:694.907067pt;}
.ya6{bottom:701.547067pt;}
.y8{bottom:702.507067pt;}
.y61{bottom:702.907067pt;}
.yb6{bottom:710.827067pt;}
.y28{bottom:710.907067pt;}
.yda{bottom:715.307067pt;}
.y4b{bottom:718.907067pt;}
.y7c{bottom:721.147047pt;}
.y7f{bottom:725.467056pt;}
.y90{bottom:731.627067pt;}
.y125{bottom:731.707067pt;}
.y79{bottom:736.747067pt;}
.y78{bottom:737.947448pt;}
.y7e{bottom:738.026551pt;}
.y7a{bottom:738.027067pt;}
.ya5{bottom:738.347067pt;}
.y7{bottom:739.307067pt;}
.y60{bottom:739.707067pt;}
.y7b{bottom:744.027067pt;}
.y27{bottom:747.707067pt;}
.y7d{bottom:748.347067pt;}
.yd9{bottom:754.507067pt;}
.y4a{bottom:755.707067pt;}
.ya4{bottom:775.147200pt;}
.y5f{bottom:776.507067pt;}
.y6{bottom:782.187067pt;}
.y26{bottom:784.507067pt;}
.y49{bottom:792.507067pt;}
.y77{bottom:794.667200pt;}
.y5e{bottom:813.307067pt;}
.ya3{bottom:819.867067pt;}
.y5{bottom:820.987067pt;}
.yfb{bottom:821.227067pt;}
.y25{bottom:821.307067pt;}
.y48{bottom:829.307067pt;}
.y76{bottom:831.467067pt;}
.y5d{bottom:850.107067pt;}
.y4{bottom:857.787067pt;}
.y24{bottom:858.107067pt;}
.ya2{bottom:864.747067pt;}
.y47{bottom:866.107067pt;}
.y75{bottom:868.267067pt;}
.y8f{bottom:886.907067pt;}
.y5c{bottom:894.827067pt;}
.y23{bottom:894.907067pt;}
.y115{bottom:902.827067pt;}
.y46{bottom:902.907067pt;}
.y74{bottom:905.067067pt;}
.ya1{bottom:909.787067pt;}
.ya0{bottom:920.507067pt;}
.y3{bottom:931.627067pt;}
.y22{bottom:931.707067pt;}
.y45{bottom:939.707067pt;}
.y73{bottom:949.787067pt;}
.y2{bottom:968.427067pt;}
.y21{bottom:968.507067pt;}
.y44{bottom:976.507067pt;}
.y72{bottom:994.747067pt;}
.y71{bottom:1005.467067pt;}
.y20{bottom:1013.227067pt;}
.y43{bottom:1013.307067pt;}
.yd0{bottom:1018.667067pt;}
.y1e{bottom:1035.398800pt;}
.y1d{bottom:1051.398800pt;}
.y1c{bottom:1067.398667pt;}
.y1b{bottom:1083.398667pt;}
.h1d{height:22.691292pt;}
.hd{height:27.059709pt;}
.h1e{height:27.834286pt;}
.h5{height:31.625000pt;}
.h7{height:36.990625pt;}
.h8{height:38.828125pt;}
.h9{height:38.828658pt;}
.h14{height:38.905781pt;}
.h19{height:43.720092pt;}
.h20{height:43.720625pt;}
.h18{height:43.722748pt;}
.hf{height:44.640431pt;}
.h2{height:46.593750pt;}
.h1b{height:46.767515pt;}
.he{height:46.806528pt;}
.h22{height:48.916967pt;}
.h21{height:48.917500pt;}
.h15{height:48.918033pt;}
.h1c{height:49.694531pt;}
.h10{height:50.578939pt;}
.h1{height:50.896875pt;}
.h6{height:55.625000pt;}
.hc{height:55.879021pt;}
.h16{height:58.430092pt;}
.h4{height:58.430625pt;}
.h3{height:58.431158pt;}
.hb{height:59.985441pt;}
.h17{height:69.623093pt;}
.h1a{height:69.628437pt;}
.h1f{height:74.441158pt;}
.h11{height:93.038750pt;}
.h13{height:98.759021pt;}
.ha{height:103.945000pt;}
.h12{height:147.081088pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x19{left:64.960000pt;}
.x5{left:98.958667pt;}
.x4{left:113.440000pt;}
.x2{left:117.760000pt;}
.x18{left:119.360000pt;}
.x1e{left:123.680000pt;}
.x27{left:150.800000pt;}
.x26{left:155.760000pt;}
.xf{left:162.320463pt;}
.x2b{left:192.640000pt;}
.x1f{left:201.520704pt;}
.x17{left:223.200000pt;}
.xc{left:224.960000pt;}
.x28{left:244.320000pt;}
.x12{left:254.880432pt;}
.xe{left:268.160000pt;}
.xd{left:280.640000pt;}
.x10{left:283.919642pt;}
.x11{left:289.680229pt;}
.x3{left:293.360000pt;}
.x2c{left:294.719712pt;}
.x9{left:297.280000pt;}
.x2d{left:303.759088pt;}
.x13{left:311.520000pt;}
.x6{left:320.400000pt;}
.x21{left:332.720672pt;}
.x20{left:345.840192pt;}
.x29{left:352.880000pt;}
.x2f{left:367.599920pt;}
.x2e{left:370.478928pt;}
.x14{left:373.680000pt;}
.x7{left:401.200000pt;}
.x23{left:411.360000pt;}
.x24{left:415.600000pt;}
.xa{left:424.320000pt;}
.x22{left:429.840512pt;}
.x8{left:434.240000pt;}
.x2a{left:439.840000pt;}
.x30{left:448.159384pt;}
.x15{left:452.080000pt;}
.xb{left:457.360000pt;}
.x31{left:458.560392pt;}
.x1b{left:460.240000pt;}
.x1c{left:469.680000pt;}
.x33{left:530.080296pt;}
.x32{left:532.479936pt;}
.x34{left:609.999816pt;}
.x35{left:620.879432pt;}
.x16{left:664.079867pt;}
.x25{left:669.440000pt;}
.x1{left:672.240000pt;}
.x1d{left:673.440000pt;}
.x36{left:679.999867pt;}
.x1a{left:685.839867pt;}
}




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