
    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_7cf906028eb908ffb906529d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_47d5bfe547c871db3bb1934c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_a3a647c982f71eebfe8097d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_4feef7cc3a4095a356e1e2d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.950000;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_4629485c374e83919ddce7dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_e1842748d509cbfccd6a8901.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929286;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_01d303ef33077efd13357722.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138184;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_97746ce6333f86e583020527.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_5a879ba3ec1a37e0f364ce20.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075195;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_ee9db603c31ed672af6380ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905273;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_c59c300c1b6731faf9bee14c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8f9a08f04b1830b892d0f057.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.796387;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_c206868343d5f66eeaae86b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.742000;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_6081cd7e9775af8201e863da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.350000px;}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.333500px;}
.ls30{letter-spacing:-1.290000px;}
.lsc{letter-spacing:-1.170000px;}
.ls3{letter-spacing:-1.050000px;}
.ls54{letter-spacing:-0.760500px;}
.ls27{letter-spacing:-0.682500px;}
.ls3d{letter-spacing:-0.645000px;}
.ls56{letter-spacing:-0.585000px;}
.ls25{letter-spacing:-0.525000px;}
.ls3e{letter-spacing:-0.419250px;}
.ls3f{letter-spacing:-0.387000px;}
.ls24{letter-spacing:-0.341250px;}
.ls2a{letter-spacing:-0.322500px;}
.ls2c{letter-spacing:-0.258000px;}
.ls2b{letter-spacing:-0.209625px;}
.ls40{letter-spacing:-0.193500px;}
.ls41{letter-spacing:-0.129000px;}
.ls2e{letter-spacing:-0.064500px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000300px;}
.ls14{letter-spacing:0.000900px;}
.ls18{letter-spacing:0.052500px;}
.ls4c{letter-spacing:0.058500px;}
.lsd{letter-spacing:0.064500px;}
.ls2d{letter-spacing:0.068250px;}
.ls2f{letter-spacing:0.083850px;}
.ls0{letter-spacing:0.084000px;}
.ls21{letter-spacing:0.096750px;}
.ls33{letter-spacing:0.102375px;}
.ls1e{letter-spacing:0.105000px;}
.ls38{letter-spacing:0.125775px;}
.ls13{letter-spacing:0.129000px;}
.ls17{letter-spacing:0.157500px;}
.ls34{letter-spacing:0.170625px;}
.ls47{letter-spacing:0.175500px;}
.ls15{letter-spacing:0.193500px;}
.ls5a{letter-spacing:0.204750px;}
.ls32{letter-spacing:0.209625px;}
.lsa{letter-spacing:0.221100px;}
.ls48{letter-spacing:0.234000px;}
.ls10{letter-spacing:0.258000px;}
.ls31{letter-spacing:0.262500px;}
.ls20{letter-spacing:0.273000px;}
.ls45{letter-spacing:0.274950px;}
.ls46{letter-spacing:0.292500px;}
.ls1f{letter-spacing:0.322500px;}
.ls12{letter-spacing:0.344700px;}
.ls55{letter-spacing:0.351000px;}
.ls19{letter-spacing:0.363900px;}
.lsb{letter-spacing:0.367500px;}
.ls3c{letter-spacing:0.377325px;}
.ls26{letter-spacing:0.387000px;}
.ls50{letter-spacing:0.409500px;}
.ls9{letter-spacing:0.419100px;}
.ls1d{letter-spacing:0.420000px;}
.ls39{letter-spacing:0.451500px;}
.ls4b{letter-spacing:0.497250px;}
.ls37{letter-spacing:0.511875px;}
.ls11{letter-spacing:0.516000px;}
.ls4e{letter-spacing:0.526500px;}
.ls36{letter-spacing:0.545025px;}
.ls1a{letter-spacing:0.577500px;}
.ls28{letter-spacing:0.580500px;}
.ls51{letter-spacing:0.585000px;}
.ls44{letter-spacing:0.628875px;}
.ls52{letter-spacing:0.643500px;}
.ls7{letter-spacing:0.645000px;}
.ls22{letter-spacing:0.657900px;}
.lse{letter-spacing:0.709500px;}
.ls53{letter-spacing:0.760500px;}
.ls1b{letter-spacing:0.774000px;}
.ls35{letter-spacing:0.787500px;}
.ls59{letter-spacing:0.819000px;}
.ls8{letter-spacing:0.838500px;}
.ls58{letter-spacing:0.877500px;}
.ls3a{letter-spacing:0.903000px;}
.ls5{letter-spacing:0.967500px;}
.ls4{letter-spacing:1.032000px;}
.ls4f{letter-spacing:1.053000px;}
.ls1c{letter-spacing:1.096500px;}
.ls57{letter-spacing:1.111500px;}
.ls49{letter-spacing:1.170000px;}
.ls3b{letter-spacing:1.225500px;}
.ls5b{letter-spacing:1.228500px;}
.ls6{letter-spacing:1.290000px;}
.ls4d{letter-spacing:1.345500px;}
.ls42{letter-spacing:1.483500px;}
.ls43{letter-spacing:1.548000px;}
.ls4a{letter-spacing:1.930500px;}
.ls5c{letter-spacing:2.515500px;}
.ls29{letter-spacing:4.192500px;}
.ls16{letter-spacing:5.368350px;}
.ls1{letter-spacing:12.510000px;}
.ls23{letter-spacing:13.125000px;}
.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;}
}
.ws109{word-spacing:-17.092500px;}
.wsf2{word-spacing:-16.705500px;}
.ws42{word-spacing:-16.125000px;}
.ws10e{word-spacing:-14.899950px;}
.ws10f{word-spacing:-14.625000px;}
.ws38{word-spacing:-13.455000px;}
.wse1{word-spacing:-13.125000px;}
.ws8b{word-spacing:-12.751650px;}
.ws37{word-spacing:-12.750000px;}
.ws7f{word-spacing:-12.190500px;}
.ws19{word-spacing:-12.093750px;}
.ws108{word-spacing:-11.110125px;}
.wse0{word-spacing:-11.026275px;}
.ws111{word-spacing:-10.968750px;}
.wsf3{word-spacing:-10.858575px;}
.wsd7{word-spacing:-10.690875px;}
.wsec{word-spacing:-10.607025px;}
.wsc8{word-spacing:-10.565100px;}
.ws39{word-spacing:-10.481250px;}
.wsb3{word-spacing:-10.271625px;}
.wsf8{word-spacing:-10.062000px;}
.ws58{word-spacing:-9.843750px;}
.wse2{word-spacing:-9.043125px;}
.ws0{word-spacing:-9.000000px;}
.ws6c{word-spacing:-8.804250px;}
.wsd9{word-spacing:-8.701875px;}
.wsd8{word-spacing:-8.633625px;}
.wsb4{word-spacing:-8.599500px;}
.ws3a{word-spacing:-8.531250px;}
.ws96{word-spacing:-8.190000px;}
.wsa2{word-spacing:-7.848750px;}
.ws6{word-spacing:-7.434000px;}
.ws1c{word-spacing:-0.967500px;}
.wsf4{word-spacing:-0.903000px;}
.ws20{word-spacing:-0.645000px;}
.ws10b{word-spacing:-0.628875px;}
.ws130{word-spacing:-0.585000px;}
.ws115{word-spacing:-0.292500px;}
.ws11d{word-spacing:-0.234000px;}
.wse5{word-spacing:-0.209625px;}
.wsbb{word-spacing:-0.105000px;}
.ws14a{word-spacing:-0.058500px;}
.wsc9{word-spacing:-0.048375px;}
.ws110{word-spacing:-0.043875px;}
.ws2{word-spacing:0.000000px;}
.ws72{word-spacing:0.064500px;}
.ws29{word-spacing:0.129000px;}
.wsd1{word-spacing:0.157500px;}
.ws136{word-spacing:0.175500px;}
.ws48{word-spacing:0.193500px;}
.wsb9{word-spacing:0.209625px;}
.ws54{word-spacing:0.210000px;}
.ws62{word-spacing:0.258000px;}
.ws101{word-spacing:0.315000px;}
.ws30{word-spacing:0.322500px;}
.wsa{word-spacing:0.336000px;}
.ws142{word-spacing:0.351000px;}
.ws77{word-spacing:0.387000px;}
.ws13c{word-spacing:0.409500px;}
.wsfa{word-spacing:0.419250px;}
.wsd{word-spacing:0.432000px;}
.ws81{word-spacing:0.451500px;}
.ws119{word-spacing:0.468000px;}
.wsc2{word-spacing:0.472500px;}
.wsb1{word-spacing:0.516000px;}
.ws7d{word-spacing:0.525000px;}
.ws134{word-spacing:0.526500px;}
.wsfc{word-spacing:0.580500px;}
.ws137{word-spacing:0.585000px;}
.ws145{word-spacing:0.643500px;}
.ws3f{word-spacing:0.645000px;}
.wsa0{word-spacing:0.682500px;}
.ws147{word-spacing:0.702000px;}
.ws43{word-spacing:0.709500px;}
.ws14d{word-spacing:0.735000px;}
.ws4c{word-spacing:0.774000px;}
.ws4f{word-spacing:0.787500px;}
.ws24{word-spacing:0.838500px;}
.wsde{word-spacing:0.840000px;}
.ws9b{word-spacing:0.892500px;}
.ws89{word-spacing:0.903000px;}
.ws18{word-spacing:0.912000px;}
.ws113{word-spacing:0.936000px;}
.ws7c{word-spacing:0.945000px;}
.wscf{word-spacing:0.967500px;}
.ws51{word-spacing:0.997500px;}
.ws61{word-spacing:1.032000px;}
.wsaa{word-spacing:1.050000px;}
.ws4e{word-spacing:1.096500px;}
.ws13e{word-spacing:1.111500px;}
.wsc6{word-spacing:1.155000px;}
.ws3e{word-spacing:1.161000px;}
.ws12b{word-spacing:1.170000px;}
.wsc4{word-spacing:1.207500px;}
.wscb{word-spacing:1.225500px;}
.wsf5{word-spacing:1.260000px;}
.ws22{word-spacing:1.290000px;}
.ws107{word-spacing:1.312500px;}
.ws8f{word-spacing:1.354500px;}
.ws94{word-spacing:1.365000px;}
.ws120{word-spacing:1.404000px;}
.ws5d{word-spacing:1.419000px;}
.ws7b{word-spacing:1.470000px;}
.ws10a{word-spacing:1.483500px;}
.ws13a{word-spacing:1.521000px;}
.wse3{word-spacing:1.548000px;}
.ws55{word-spacing:1.575000px;}
.ws114{word-spacing:1.579500px;}
.ws1f{word-spacing:1.612500px;}
.ws4{word-spacing:1.638000px;}
.wsb5{word-spacing:1.677000px;}
.ws7e{word-spacing:1.680000px;}
.wse{word-spacing:1.728000px;}
.wsf7{word-spacing:1.732500px;}
.ws11{word-spacing:1.776000px;}
.ws9d{word-spacing:1.785000px;}
.ws25{word-spacing:1.806000px;}
.ws135{word-spacing:1.813500px;}
.wsc7{word-spacing:1.837500px;}
.ws100{word-spacing:1.870500px;}
.ws13{word-spacing:1.872000px;}
.ws64{word-spacing:1.890000px;}
.ws10{word-spacing:1.920000px;}
.ws131{word-spacing:1.930500px;}
.wsa3{word-spacing:1.935000px;}
.wsa1{word-spacing:1.942500px;}
.ws99{word-spacing:1.995000px;}
.ws4a{word-spacing:1.999500px;}
.ws9f{word-spacing:2.047500px;}
.wsb8{word-spacing:2.064000px;}
.ws9c{word-spacing:2.100000px;}
.wsce{word-spacing:2.128500px;}
.ws146{word-spacing:2.164500px;}
.ws26{word-spacing:2.193000px;}
.wsba{word-spacing:2.205000px;}
.ws6d{word-spacing:2.257500px;}
.ws117{word-spacing:2.281500px;}
.wse7{word-spacing:2.310000px;}
.ws88{word-spacing:2.322000px;}
.ws13d{word-spacing:2.340000px;}
.wsd6{word-spacing:2.362500px;}
.ws60{word-spacing:2.386500px;}
.ws139{word-spacing:2.398500px;}
.wsee{word-spacing:2.451000px;}
.ws65{word-spacing:2.467500px;}
.ws71{word-spacing:2.515500px;}
.wsda{word-spacing:2.520000px;}
.ws36{word-spacing:2.572500px;}
.ws32{word-spacing:2.580000px;}
.ws5{word-spacing:2.604000px;}
.ws6e{word-spacing:2.644500px;}
.ws67{word-spacing:2.677500px;}
.wscd{word-spacing:2.709000px;}
.wsdb{word-spacing:2.730000px;}
.ws5f{word-spacing:2.773500px;}
.ws133{word-spacing:2.808000px;}
.wsdd{word-spacing:2.835000px;}
.wsa5{word-spacing:2.838000px;}
.wsf6{word-spacing:2.887500px;}
.ws102{word-spacing:2.902500px;}
.wse9{word-spacing:2.940000px;}
.ws40{word-spacing:2.967000px;}
.ws57{word-spacing:2.992500px;}
.ws2f{word-spacing:3.031500px;}
.ws11c{word-spacing:3.042000px;}
.ws53{word-spacing:3.045000px;}
.ws47{word-spacing:3.096000px;}
.wseb{word-spacing:3.097500px;}
.wsb{word-spacing:3.120000px;}
.ws56{word-spacing:3.150000px;}
.ws127{word-spacing:3.159000px;}
.wsca{word-spacing:3.160500px;}
.ws16{word-spacing:3.168000px;}
.ws95{word-spacing:3.202500px;}
.ws124{word-spacing:3.217500px;}
.ws85{word-spacing:3.225000px;}
.wsea{word-spacing:3.255000px;}
.ws129{word-spacing:3.276000px;}
.wsb0{word-spacing:3.289500px;}
.wsa9{word-spacing:3.307500px;}
.ws116{word-spacing:3.334500px;}
.ws84{word-spacing:3.354000px;}
.ws103{word-spacing:3.360000px;}
.ws11b{word-spacing:3.393000px;}
.ws33{word-spacing:3.418500px;}
.ws9a{word-spacing:3.465000px;}
.ws2d{word-spacing:3.483000px;}
.ws12f{word-spacing:3.510000px;}
.wsb6{word-spacing:3.547500px;}
.ws6b{word-spacing:3.570000px;}
.ws82{word-spacing:3.612000px;}
.ws10d{word-spacing:3.622500px;}
.ws141{word-spacing:3.627000px;}
.ws12{word-spacing:3.648000px;}
.wsf9{word-spacing:3.676500px;}
.wsa4{word-spacing:3.741000px;}
.ws12a{word-spacing:3.744000px;}
.wsd5{word-spacing:3.780000px;}
.ws143{word-spacing:3.802500px;}
.ws34{word-spacing:3.805500px;}
.wsdf{word-spacing:3.832500px;}
.ws15{word-spacing:3.840000px;}
.ws80{word-spacing:3.870000px;}
.wsb2{word-spacing:3.885000px;}
.ws2e{word-spacing:3.934500px;}
.ws63{word-spacing:3.937500px;}
.ws12c{word-spacing:3.978000px;}
.ws68{word-spacing:3.990000px;}
.ws87{word-spacing:3.999000px;}
.wsc3{word-spacing:4.042500px;}
.ws70{word-spacing:4.063500px;}
.ws66{word-spacing:4.095000px;}
.wsab{word-spacing:4.128000px;}
.ws123{word-spacing:4.153500px;}
.ws5e{word-spacing:4.192500px;}
.ws105{word-spacing:4.200000px;}
.ws132{word-spacing:4.212000px;}
.wse8{word-spacing:4.252500px;}
.ws78{word-spacing:4.257000px;}
.ws13b{word-spacing:4.270500px;}
.ws28{word-spacing:4.321500px;}
.wsd0{word-spacing:4.357500px;}
.ws21{word-spacing:4.386000px;}
.ws9{word-spacing:4.416000px;}
.ws83{word-spacing:4.450500px;}
.wsa7{word-spacing:4.462500px;}
.ws2a{word-spacing:4.515000px;}
.wsc{word-spacing:4.560000px;}
.ws11a{word-spacing:4.563000px;}
.ws31{word-spacing:4.579500px;}
.ws50{word-spacing:4.620000px;}
.ws13f{word-spacing:4.621500px;}
.ws86{word-spacing:4.644000px;}
.ws3{word-spacing:4.662000px;}
.ws10c{word-spacing:4.672500px;}
.ws144{word-spacing:4.680000px;}
.wsc1{word-spacing:4.708500px;}
.wse4{word-spacing:4.773000px;}
.wsc5{word-spacing:4.830000px;}
.wsbe{word-spacing:4.837500px;}
.ws27{word-spacing:4.902000px;}
.ws8c{word-spacing:4.966500px;}
.ws14b{word-spacing:4.972500px;}
.ws52{word-spacing:4.987500px;}
.ws5c{word-spacing:5.031000px;}
.wsf1{word-spacing:5.040000px;}
.ws2b{word-spacing:5.095500px;}
.ws6a{word-spacing:5.145000px;}
.ws98{word-spacing:5.160000px;}
.wsfe{word-spacing:5.197500px;}
.ws3c{word-spacing:5.224500px;}
.wsa8{word-spacing:5.250000px;}
.ws8d{word-spacing:5.353500px;}
.wsf{word-spacing:5.376000px;}
.ws8a{word-spacing:5.407500px;}
.ws49{word-spacing:5.418000px;}
.ws106{word-spacing:5.460000px;}
.wsed{word-spacing:5.482500px;}
.ws11f{word-spacing:5.499000px;}
.ws73{word-spacing:5.547000px;}
.ws126{word-spacing:5.557500px;}
.ws1e{word-spacing:5.611500px;}
.wsd4{word-spacing:5.617500px;}
.ws17{word-spacing:5.664000px;}
.ws69{word-spacing:5.670000px;}
.ws12d{word-spacing:5.674500px;}
.ws44{word-spacing:5.676000px;}
.ws7a{word-spacing:5.722500px;}
.ws122{word-spacing:5.733000px;}
.ws90{word-spacing:5.740500px;}
.ws97{word-spacing:5.805000px;}
.wsbd{word-spacing:5.827500px;}
.ws149{word-spacing:5.850000px;}
.wsbf{word-spacing:5.869500px;}
.ws138{word-spacing:5.908500px;}
.wsfd{word-spacing:5.932500px;}
.ws59{word-spacing:5.934000px;}
.ws93{word-spacing:5.985000px;}
.wsd2{word-spacing:5.998500px;}
.ws14{word-spacing:6.000000px;}
.wsad{word-spacing:6.063000px;}
.wsf0{word-spacing:6.090000px;}
.ws46{word-spacing:6.127500px;}
.wsd3{word-spacing:6.142500px;}
.ws1d{word-spacing:6.192000px;}
.ws9e{word-spacing:6.195000px;}
.wscc{word-spacing:6.256500px;}
.wsdc{word-spacing:6.300000px;}
.ws4b{word-spacing:6.321000px;}
.ws2c{word-spacing:6.385500px;}
.ws11e{word-spacing:6.435000px;}
.wsae{word-spacing:6.450000px;}
.wse6{word-spacing:6.457500px;}
.wsff{word-spacing:6.514500px;}
.ws128{word-spacing:6.552000px;}
.ws35{word-spacing:6.562500px;}
.ws4d{word-spacing:6.579000px;}
.ws91{word-spacing:6.643500px;}
.wsef{word-spacing:6.708000px;}
.ws121{word-spacing:6.727500px;}
.ws75{word-spacing:6.772500px;}
.ws125{word-spacing:6.786000px;}
.ws23{word-spacing:6.837000px;}
.ws140{word-spacing:6.844500px;}
.ws45{word-spacing:6.901500px;}
.ws148{word-spacing:6.903000px;}
.ws74{word-spacing:6.966000px;}
.ws12e{word-spacing:7.020000px;}
.ws6f{word-spacing:7.030500px;}
.wsb7{word-spacing:7.095000px;}
.ws5b{word-spacing:7.159500px;}
.ws118{word-spacing:7.195500px;}
.ws92{word-spacing:7.224000px;}
.wsc0{word-spacing:7.288500px;}
.ws112{word-spacing:7.312500px;}
.ws8e{word-spacing:7.353000px;}
.wsfb{word-spacing:7.417500px;}
.ws5a{word-spacing:7.482000px;}
.ws104{word-spacing:7.546500px;}
.ws41{word-spacing:7.611000px;}
.wsac{word-spacing:7.675500px;}
.ws76{word-spacing:7.740000px;}
.wsaf{word-spacing:7.804500px;}
.ws79{word-spacing:7.869000px;}
.wsa6{word-spacing:7.933500px;}
.ws3d{word-spacing:7.998000px;}
.ws1b{word-spacing:8.062500px;}
.ws14c{word-spacing:8.514000px;}
.ws8{word-spacing:10.656000px;}
.ws1a{word-spacing:12.750000px;}
.wsbc{word-spacing:13.125000px;}
.ws7{word-spacing:13.344000px;}
.ws3b{word-spacing:1149.576000px;}
.ws1{word-spacing:1818.756000px;}
._5{margin-left:-14.820000px;}
._3{margin-left:-9.324000px;}
._d{margin-left:-7.534800px;}
._c{margin-left:-4.671900px;}
._a{margin-left:-3.188250px;}
._b{margin-left:-2.137500px;}
._7{margin-left:-1.044900px;}
._8{width:1.266150px;}
._10{width:2.644500px;}
._9{width:4.128600px;}
._f{width:5.161500px;}
._0{width:7.014000px;}
._1{width:8.946000px;}
._e{width:10.080000px;}
._2{width:11.676000px;}
._4{width:13.344000px;}
._6{width:869.585400px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.125000px;}
.fs6{font-size:36.000000px;}
.fse{font-size:39.375000px;}
.fsa{font-size:41.925000px;}
.fs2{font-size:42.000000px;}
.fsf{font-size:43.875000px;}
.fs3{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:48.375000px;}
.fs7{font-size:51.000000px;}
.fsc{font-size:52.500000px;}
.fs0{font-size:57.000000px;}
.fsd{font-size:58.500000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.yb{bottom:96.326100px;}
.ya{bottom:108.327600px;}
.y1f9{bottom:124.391850px;}
.yba{bottom:124.532025px;}
.y10f{bottom:124.543275px;}
.y18f{bottom:124.554525px;}
.y14c{bottom:124.565775px;}
.y9{bottom:124.569000px;}
.y51{bottom:124.571400px;}
.ya1{bottom:124.577025px;}
.y220{bottom:124.614450px;}
.y24a{bottom:125.597700px;}
.y297{bottom:125.603850px;}
.y272{bottom:125.647200px;}
.y5d{bottom:128.520150px;}
.yb9{bottom:138.930150px;}
.y10e{bottom:138.941400px;}
.y7f{bottom:138.947025px;}
.y18e{bottom:138.952650px;}
.y1d5{bottom:138.958275px;}
.y14b{bottom:138.963900px;}
.y50{bottom:138.969525px;}
.y8{bottom:140.823000px;}
.y21f{bottom:141.111450px;}
.y249{bottom:141.919200px;}
.y296{bottom:141.925350px;}
.y271{bottom:141.968700px;}
.y1f8{bottom:142.274475px;}
.ya0{bottom:142.912650px;}
.yb8{bottom:153.328275px;}
.y10d{bottom:153.339525px;}
.y7e{bottom:153.345150px;}
.y177{bottom:153.350775px;}
.y1d4{bottom:153.356400px;}
.y9f{bottom:153.362025px;}
.y7{bottom:157.077000px;}
.y4f{bottom:157.305150px;}
.y21e{bottom:157.608450px;}
.y248{bottom:158.240700px;}
.y295{bottom:158.246850px;}
.y270{bottom:158.290200px;}
.y1f7{bottom:160.157100px;}
.y5c{bottom:167.297325px;}
.yb7{bottom:167.726400px;}
.y10c{bottom:167.737650px;}
.y7d{bottom:167.743275px;}
.y9e{bottom:167.748900px;}
.yf1{bottom:167.754525px;}
.y6{bottom:168.259500px;}
.y14a{bottom:171.697650px;}
.y21d{bottom:174.105450px;}
.y247{bottom:174.562200px;}
.y294{bottom:174.568350px;}
.y26f{bottom:174.611700px;}
.y1f6{bottom:178.039725px;}
.yb6{bottom:182.124525px;}
.y182{bottom:182.130150px;}
.y10b{bottom:182.135775px;}
.y7c{bottom:182.141400px;}
.y9d{bottom:182.147025px;}
.y5{bottom:183.694500px;}
.y5b{bottom:184.889700px;}
.yf0{bottom:186.090150px;}
.y21c{bottom:190.602450px;}
.y246{bottom:190.883700px;}
.y293{bottom:190.889850px;}
.y26e{bottom:190.933200px;}
.y4{bottom:194.877000px;}
.y4e{bottom:195.383400px;}
.yd5{bottom:195.443325px;}
.y1f5{bottom:195.922350px;}
.yb5{bottom:196.522650px;}
.y181{bottom:196.528275px;}
.y10a{bottom:196.533900px;}
.y7b{bottom:196.539525px;}
.y9c{bottom:200.482650px;}
.y5a{bottom:202.482075px;}
.y3{bottom:206.059500px;}
.y21b{bottom:207.099450px;}
.y245{bottom:207.205200px;}
.y292{bottom:207.211350px;}
.y26d{bottom:207.254700px;}
.yb4{bottom:210.920775px;}
.y180{bottom:210.926400px;}
.y109{bottom:210.932025px;}
.y4d{bottom:212.975775px;}
.y1a8{bottom:212.985825px;}
.yd4{bottom:213.035700px;}
.y1f4{bottom:213.804975px;}
.y7a{bottom:214.875150px;}
.y59{bottom:220.074450px;}
.y244{bottom:223.526700px;}
.y291{bottom:223.532850px;}
.y26c{bottom:223.576200px;}
.y21a{bottom:223.596450px;}
.y9b{bottom:225.257025px;}
.y79{bottom:225.313275px;}
.yb3{bottom:225.318900px;}
.y17f{bottom:225.324525px;}
.y108{bottom:229.267650px;}
.y4c{bottom:230.572275px;}
.y1a7{bottom:230.578200px;}
.y132{bottom:230.623950px;}
.yd3{bottom:230.628075px;}
.y1f3{bottom:231.687600px;}
.y58{bottom:237.666825px;}
.y9a{bottom:239.655150px;}
.y107{bottom:239.700150px;}
.y78{bottom:239.711400px;}
.yb2{bottom:239.717025px;}
.y243{bottom:239.848200px;}
.y290{bottom:239.854350px;}
.y26b{bottom:239.897700px;}
.y219{bottom:240.138750px;}
.y11d{bottom:243.660150px;}
.yef{bottom:248.172375px;}
.y1a0{bottom:248.183325px;}
.y4b{bottom:248.185275px;}
.y131{bottom:248.216325px;}
.yd2{bottom:248.220450px;}
.y176{bottom:248.278350px;}
.y1f2{bottom:249.570225px;}
.y99{bottom:254.053275px;}
.y1c2{bottom:254.087025px;}
.y11c{bottom:254.092650px;}
.y106{bottom:254.098275px;}
.y18d{bottom:254.103900px;}
.y77{bottom:254.109525px;}
.y57{bottom:255.259200px;}
.y242{bottom:256.169700px;}
.y28f{bottom:256.175850px;}
.y26a{bottom:256.187700px;}
.y218{bottom:256.635750px;}
.yb1{bottom:258.052650px;}
.y1a6{bottom:265.762950px;}
.y19f{bottom:265.775700px;}
.y4a{bottom:265.777650px;}
.y1d3{bottom:265.783950px;}
.y15c{bottom:265.797900px;}
.yee{bottom:265.802025px;}
.y130{bottom:265.808700px;}
.yd1{bottom:265.812825px;}
.y175{bottom:265.870725px;}
.y1f1{bottom:267.452850px;}
.y98{bottom:268.451400px;}
.y1c1{bottom:268.485150px;}
.y11b{bottom:268.490775px;}
.y105{bottom:268.496400px;}
.y18c{bottom:268.502025px;}
.y76{bottom:272.445150px;}
.y241{bottom:272.491200px;}
.y28e{bottom:272.497350px;}
.y269{bottom:272.509200px;}
.y217{bottom:273.132750px;}
.y97{bottom:282.849525px;}
.y1c0{bottom:282.883275px;}
.y11a{bottom:282.888900px;}
.y75{bottom:282.894525px;}
.y1b8{bottom:283.359975px;}
.y19e{bottom:283.368075px;}
.y49{bottom:283.370025px;}
.y1d2{bottom:283.376325px;}
.y15b{bottom:283.390275px;}
.yed{bottom:283.394400px;}
.y12f{bottom:283.401075px;}
.yd0{bottom:283.405200px;}
.y1ce{bottom:283.425825px;}
.y174{bottom:283.463100px;}
.y1f0{bottom:285.335475px;}
.y18b{bottom:286.837650px;}
.y240{bottom:288.812700px;}
.y28d{bottom:288.818850px;}
.y268{bottom:288.830700px;}
.y216{bottom:289.629750px;}
.y96{bottom:297.247650px;}
.y1bf{bottom:297.281400px;}
.y119{bottom:297.287025px;}
.y56{bottom:299.253375px;}
.y19d{bottom:300.960450px;}
.y48{bottom:300.962400px;}
.y1d1{bottom:300.968700px;}
.y13c{bottom:300.976950px;}
.y15a{bottom:300.982650px;}
.yec{bottom:300.986775px;}
.y12e{bottom:300.993450px;}
.ycf{bottom:300.997575px;}
.yb0{bottom:301.009950px;}
.y1cd{bottom:301.018200px;}
.y173{bottom:301.055475px;}
.y74{bottom:301.230150px;}
.y2b{bottom:303.124500px;}
.y1ef{bottom:303.218100px;}
.y23f{bottom:305.134200px;}
.y28c{bottom:305.140350px;}
.y267{bottom:305.152200px;}
.y215{bottom:306.126750px;}
.y95{bottom:311.645775px;}
.y104{bottom:311.679525px;}
.y55{bottom:315.238500px;}
.y118{bottom:315.622650px;}
.y19c{bottom:318.552825px;}
.y47{bottom:318.554775px;}
.y1d0{bottom:318.561075px;}
.y13b{bottom:318.569325px;}
.y159{bottom:318.575025px;}
.yeb{bottom:318.579150px;}
.y12d{bottom:318.585825px;}
.yce{bottom:318.589950px;}
.yaf{bottom:318.602325px;}
.y1cc{bottom:318.610575px;}
.y172{bottom:318.647850px;}
.y1ee{bottom:321.100725px;}
.y23e{bottom:321.455700px;}
.y28b{bottom:321.461850px;}
.y266{bottom:321.473700px;}
.y2a{bottom:322.252500px;}
.y214{bottom:322.623750px;}
.y94{bottom:326.043900px;}
.y17e{bottom:326.049525px;}
.y188{bottom:326.060775px;}
.y103{bottom:330.015150px;}
.y54{bottom:331.223625px;}
.y29{bottom:334.996500px;}
.y18a{bottom:336.149475px;}
.y46{bottom:336.151275px;}
.y195{bottom:336.153450px;}
.y1b7{bottom:336.157725px;}
.y13a{bottom:336.161700px;}
.y158{bottom:336.167400px;}
.yea{bottom:336.171525px;}
.y12c{bottom:336.178200px;}
.ycd{bottom:336.182325px;}
.y1b2{bottom:336.186600px;}
.yae{bottom:336.194700px;}
.y1cb{bottom:336.202950px;}
.y171{bottom:336.240225px;}
.y23d{bottom:337.777200px;}
.y28a{bottom:337.783350px;}
.y265{bottom:337.795200px;}
.y1ed{bottom:338.983350px;}
.y213{bottom:339.120750px;}
.y93{bottom:340.442025px;}
.y17d{bottom:340.447650px;}
.y187{bottom:340.458900px;}
.y102{bottom:340.464525px;}
.y53{bottom:347.208750px;}
.y28{bottom:347.740500px;}
.y194{bottom:353.745825px;}
.y19b{bottom:353.750100px;}
.y45{bottom:353.751900px;}
.y117{bottom:353.754075px;}
.y157{bottom:353.759775px;}
.ye9{bottom:353.763900px;}
.y73{bottom:353.766450px;}
.y12b{bottom:353.770575px;}
.ycc{bottom:353.774700px;}
.y1b1{bottom:353.778975px;}
.yad{bottom:353.787075px;}
.y1ca{bottom:353.795325px;}
.y170{bottom:353.832600px;}
.y23c{bottom:354.098700px;}
.y289{bottom:354.104850px;}
.y264{bottom:354.116700px;}
.y92{bottom:354.840150px;}
.y17c{bottom:354.845775px;}
.y186{bottom:354.857025px;}
.y212{bottom:355.617750px;}
.y1ec{bottom:356.865975px;}
.y101{bottom:358.800150px;}
.y27{bottom:360.484500px;}
.y91{bottom:369.238275px;}
.y17b{bottom:369.243900px;}
.y23b{bottom:370.420200px;}
.y288{bottom:370.426350px;}
.y263{bottom:370.438200px;}
.y52{bottom:371.193750px;}
.y193{bottom:371.342475px;}
.y44{bottom:371.344275px;}
.y116{bottom:371.346450px;}
.y1cf{bottom:371.350575px;}
.y156{bottom:371.352150px;}
.ye8{bottom:371.356275px;}
.y72{bottom:371.358825px;}
.y12a{bottom:371.362950px;}
.ycb{bottom:371.367075px;}
.y1b0{bottom:371.371350px;}
.yac{bottom:371.379450px;}
.y1c9{bottom:371.387700px;}
.y16f{bottom:371.424975px;}
.y211{bottom:372.114750px;}
.y185{bottom:373.192650px;}
.y26{bottom:373.228500px;}
.y1eb{bottom:374.748600px;}
.y90{bottom:383.636400px;}
.y17a{bottom:383.642025px;}
.y25{bottom:385.972500px;}
.y23a{bottom:386.741700px;}
.y287{bottom:386.747850px;}
.y262{bottom:386.759700px;}
.y210{bottom:388.611750px;}
.y192{bottom:388.934850px;}
.y115{bottom:388.938825px;}
.y19a{bottom:388.942950px;}
.y155{bottom:388.944525px;}
.ye7{bottom:388.948650px;}
.y71{bottom:388.951200px;}
.y129{bottom:388.955325px;}
.yca{bottom:388.959450px;}
.y1af{bottom:388.963725px;}
.yab{bottom:388.971825px;}
.y1c8{bottom:388.980075px;}
.y43{bottom:388.986150px;}
.y16e{bottom:389.017350px;}
.y1ea{bottom:392.631225px;}
.y8f{bottom:398.034525px;}
.y184{bottom:398.040150px;}
.y24{bottom:398.716500px;}
.y179{bottom:401.977650px;}
.y239{bottom:403.063200px;}
.y286{bottom:403.069350px;}
.y261{bottom:403.081200px;}
.y20f{bottom:405.172200px;}
.y114{bottom:406.531200px;}
.y199{bottom:406.535325px;}
.y154{bottom:406.536900px;}
.y191{bottom:406.539450px;}
.ye6{bottom:406.541025px;}
.y70{bottom:406.543575px;}
.y128{bottom:406.547700px;}
.yc9{bottom:406.551825px;}
.y1ae{bottom:406.556100px;}
.y100{bottom:406.560075px;}
.yaa{bottom:406.564200px;}
.y1c7{bottom:406.572450px;}
.y42{bottom:406.578525px;}
.y16d{bottom:406.609725px;}
.y1e9{bottom:410.513850px;}
.y23{bottom:411.460500px;}
.y8e{bottom:416.370150px;}
.y238{bottom:419.384700px;}
.y285{bottom:419.390850px;}
.y260{bottom:419.402700px;}
.y20e{bottom:421.669200px;}
.y198{bottom:424.127700px;}
.y113{bottom:424.131825px;}
.y6f{bottom:424.135950px;}
.y127{bottom:424.140075px;}
.ye5{bottom:424.141650px;}
.yc8{bottom:424.144200px;}
.y1ad{bottom:424.148475px;}
.yff{bottom:424.152450px;}
.ya9{bottom:424.156575px;}
.y1c6{bottom:424.164825px;}
.y41{bottom:424.170900px;}
.y16c{bottom:424.202100px;}
.y22{bottom:424.204500px;}
.y1e8{bottom:428.396475px;}
.y237{bottom:435.706200px;}
.y284{bottom:435.712350px;}
.y25f{bottom:435.724200px;}
.y20d{bottom:438.166200px;}
.y6e{bottom:441.728325px;}
.y126{bottom:441.732450px;}
.ye4{bottom:441.734025px;}
.yc7{bottom:441.736575px;}
.y1ac{bottom:441.740850px;}
.yfe{bottom:441.744825px;}
.ya8{bottom:441.748950px;}
.y153{bottom:441.753450px;}
.y1c5{bottom:441.757200px;}
.y197{bottom:441.761325px;}
.y40{bottom:441.763275px;}
.y16b{bottom:441.794475px;}
.y1e7{bottom:446.279100px;}
.y21{bottom:449.716500px;}
.y236{bottom:452.027700px;}
.y283{bottom:452.033850px;}
.y25e{bottom:452.045700px;}
.y20c{bottom:454.663200px;}
.y6d{bottom:459.320700px;}
.y8d{bottom:459.324825px;}
.yc6{bottom:459.328950px;}
.y1ab{bottom:459.333225px;}
.yfd{bottom:459.337200px;}
.ya7{bottom:459.341325px;}
.y152{bottom:459.345825px;}
.y1c4{bottom:459.349575px;}
.y189{bottom:459.353700px;}
.ye3{bottom:459.355125px;}
.y3f{bottom:459.355650px;}
.y149{bottom:459.370200px;}
.y16a{bottom:459.386850px;}
.y1e6{bottom:464.161725px;}
.y235{bottom:468.349200px;}
.y282{bottom:468.355350px;}
.y25d{bottom:468.367200px;}
.y20{bottom:468.892500px;}
.y20b{bottom:471.160200px;}
.y8c{bottom:476.917200px;}
.yc5{bottom:476.921325px;}
.y1aa{bottom:476.925600px;}
.yfc{bottom:476.929575px;}
.ya6{bottom:476.933700px;}
.y1c3{bottom:476.941950px;}
.y139{bottom:476.946075px;}
.ye2{bottom:476.947500px;}
.y3e{bottom:476.948025px;}
.y125{bottom:476.950200px;}
.y6c{bottom:476.954325px;}
.y148{bottom:476.962575px;}
.y169{bottom:476.979225px;}
.y1f{bottom:481.636500px;}
.y1e5{bottom:482.044350px;}
.y234{bottom:484.670700px;}
.y281{bottom:484.676850px;}
.y25c{bottom:484.688700px;}
.y20a{bottom:487.657200px;}
.y1e{bottom:494.380500px;}
.y183{bottom:494.513700px;}
.y1a9{bottom:494.517975px;}
.yfb{bottom:494.521950px;}
.ya5{bottom:494.526075px;}
.y1a5{bottom:494.530350px;}
.y8b{bottom:494.534325px;}
.y138{bottom:494.538450px;}
.ye1{bottom:494.539875px;}
.y3d{bottom:494.540400px;}
.y124{bottom:494.542575px;}
.y6b{bottom:494.546700px;}
.yc4{bottom:494.550975px;}
.y147{bottom:494.554950px;}
.y168{bottom:494.571600px;}
.y1b6{bottom:494.583825px;}
.y1e4{bottom:499.926975px;}
.y233{bottom:500.992200px;}
.y280{bottom:500.998350px;}
.y25b{bottom:501.010200px;}
.y209{bottom:504.154200px;}
.y1d{bottom:507.124500px;}
.yfa{bottom:512.114325px;}
.ya4{bottom:512.118450px;}
.y1a4{bottom:512.122725px;}
.y8a{bottom:512.126700px;}
.y137{bottom:512.130825px;}
.ye0{bottom:512.132250px;}
.y3c{bottom:512.132775px;}
.y123{bottom:512.134950px;}
.y6a{bottom:512.139075px;}
.yc3{bottom:512.143350px;}
.y146{bottom:512.147325px;}
.y167{bottom:512.163975px;}
.y1b5{bottom:512.176200px;}
.y232{bottom:517.313700px;}
.y27f{bottom:517.319850px;}
.y25a{bottom:517.331700px;}
.y1e3{bottom:517.809600px;}
.y1c{bottom:519.868500px;}
.y208{bottom:520.651200px;}
.ya3{bottom:529.710825px;}
.y1a3{bottom:529.715100px;}
.y89{bottom:529.719075px;}
.yf9{bottom:529.723200px;}
.ydf{bottom:529.724625px;}
.y3b{bottom:529.725150px;}
.y122{bottom:529.727325px;}
.y69{bottom:529.731450px;}
.yc2{bottom:529.735725px;}
.y145{bottom:529.739700px;}
.y166{bottom:529.756350px;}
.y1b4{bottom:529.768575px;}
.y1b{bottom:532.612500px;}
.y231{bottom:533.635200px;}
.y27e{bottom:533.641350px;}
.y259{bottom:533.653200px;}
.y1e2{bottom:535.692225px;}
.y207{bottom:537.148200px;}
.y1a{bottom:545.356500px;}
.y178{bottom:547.303200px;}
.y1a2{bottom:547.307475px;}
.y88{bottom:547.311450px;}
.yf8{bottom:547.315575px;}
.yde{bottom:547.317000px;}
.y3a{bottom:547.317525px;}
.y121{bottom:547.319700px;}
.y68{bottom:547.323825px;}
.yc1{bottom:547.328100px;}
.y144{bottom:547.332075px;}
.y165{bottom:547.348725px;}
.y1b3{bottom:547.360950px;}
.y230{bottom:549.956700px;}
.y27d{bottom:549.962850px;}
.y258{bottom:549.974700px;}
.y1e1{bottom:553.574850px;}
.y206{bottom:553.645200px;}
.y19{bottom:558.100500px;}
.y87{bottom:564.903825px;}
.yf7{bottom:564.907950px;}
.ydd{bottom:564.909375px;}
.y39{bottom:564.909900px;}
.y120{bottom:564.912075px;}
.y67{bottom:564.916200px;}
.yc0{bottom:564.920475px;}
.y143{bottom:564.924450px;}
.y164{bottom:564.941100px;}
.y1a1{bottom:564.953325px;}
.y22f{bottom:566.278200px;}
.y27c{bottom:566.284350px;}
.y257{bottom:566.296200px;}
.y205{bottom:570.142200px;}
.y18{bottom:570.851250px;}
.y1e0{bottom:571.457475px;}
.y29d{bottom:575.307375px;}
.yf6{bottom:582.500325px;}
.y38{bottom:582.502275px;}
.y11f{bottom:582.504450px;}
.ydc{bottom:582.506025px;}
.y66{bottom:582.508575px;}
.ybf{bottom:582.512850px;}
.y142{bottom:582.516825px;}
.y163{bottom:582.533475px;}
.ya2{bottom:582.545700px;}
.y22e{bottom:582.599700px;}
.y27b{bottom:582.605850px;}
.y256{bottom:582.617700px;}
.y17{bottom:583.595250px;}
.y204{bottom:586.639200px;}
.y1df{bottom:589.340100px;}
.y29c{bottom:589.705500px;}
.y22d{bottom:598.921200px;}
.y255{bottom:598.922700px;}
.y27a{bottom:598.927350px;}
.y196{bottom:600.092700px;}
.y11e{bottom:600.096825px;}
.y65{bottom:600.100950px;}
.ybe{bottom:600.105225px;}
.ydb{bottom:600.106650px;}
.y141{bottom:600.109200px;}
.yf5{bottom:600.113475px;}
.y136{bottom:600.117450px;}
.y162{bottom:600.125850px;}
.y1be{bottom:600.129825px;}
.y37{bottom:600.138075px;}
.y203{bottom:603.136200px;}
.y29b{bottom:604.103625px;}
.y1de{bottom:607.222725px;}
.y22c{bottom:615.242700px;}
.y254{bottom:615.244200px;}
.y279{bottom:615.248850px;}
.y64{bottom:617.693325px;}
.ybd{bottom:617.697600px;}
.yda{bottom:617.699025px;}
.y140{bottom:617.701575px;}
.yf4{bottom:617.705850px;}
.y135{bottom:617.709825px;}
.y161{bottom:617.718225px;}
.y1bd{bottom:617.722200px;}
.y36{bottom:617.730450px;}
.y29a{bottom:618.501750px;}
.y202{bottom:619.633200px;}
.y1dd{bottom:625.105350px;}
.y22b{bottom:631.564200px;}
.y253{bottom:631.565700px;}
.y278{bottom:631.570350px;}
.y299{bottom:632.899875px;}
.y190{bottom:635.285700px;}
.ybc{bottom:635.289975px;}
.y86{bottom:635.293950px;}
.yf3{bottom:635.298225px;}
.y134{bottom:635.302200px;}
.y63{bottom:635.306325px;}
.yd9{bottom:635.306700px;}
.y160{bottom:635.310600px;}
.y1bc{bottom:635.314575px;}
.y151{bottom:635.318700px;}
.y35{bottom:635.322825px;}
.y201{bottom:636.161850px;}
.y16{bottom:640.331250px;}
.y1dc{bottom:642.987975px;}
.y22a{bottom:647.885700px;}
.y252{bottom:647.887200px;}
.y277{bottom:647.891850px;}
.y200{bottom:652.658850px;}
.y85{bottom:652.886325px;}
.yf2{bottom:652.890600px;}
.y133{bottom:652.894575px;}
.y62{bottom:652.898700px;}
.yd8{bottom:652.899075px;}
.y15f{bottom:652.902975px;}
.y1bb{bottom:652.906950px;}
.y150{bottom:652.911075px;}
.y34{bottom:652.915200px;}
.y15{bottom:654.743100px;}
.y298{bottom:656.091750px;}
.y1db{bottom:660.870600px;}
.y229{bottom:664.207200px;}
.y251{bottom:664.208700px;}
.y276{bottom:664.213350px;}
.y1ff{bottom:669.155850px;}
.y84{bottom:670.482975px;}
.y112{bottom:670.486950px;}
.y61{bottom:670.491075px;}
.yd7{bottom:670.491450px;}
.y15e{bottom:670.495350px;}
.y1ba{bottom:670.499325px;}
.y14f{bottom:670.503450px;}
.y33{bottom:670.507575px;}
.y14{bottom:678.713100px;}
.y1da{bottom:678.753225px;}
.y228{bottom:680.528700px;}
.y250{bottom:680.530200px;}
.y275{bottom:680.534850px;}
.y1fe{bottom:685.652850px;}
.ybb{bottom:688.075350px;}
.y83{bottom:688.079325px;}
.y60{bottom:688.083450px;}
.y15d{bottom:688.087725px;}
.y1b9{bottom:688.091700px;}
.y14e{bottom:688.095825px;}
.y32{bottom:688.099950px;}
.y1d9{bottom:696.613950px;}
.y227{bottom:696.850200px;}
.y24f{bottom:696.851700px;}
.y274{bottom:696.856350px;}
.y13{bottom:697.898100px;}
.y1fd{bottom:702.149850px;}
.y5f{bottom:705.675825px;}
.yd6{bottom:705.676200px;}
.y111{bottom:705.680100px;}
.y82{bottom:705.684075px;}
.y14d{bottom:705.688200px;}
.y31{bottom:705.692325px;}
.y226{bottom:713.171700px;}
.y24e{bottom:713.173200px;}
.y273{bottom:713.177850px;}
.y1d8{bottom:714.496575px;}
.y12{bottom:717.083100px;}
.y1fc{bottom:718.646850px;}
.y110{bottom:723.272475px;}
.y81{bottom:723.276450px;}
.y13f{bottom:723.280575px;}
.y30{bottom:723.284700px;}
.y225{bottom:729.493200px;}
.y24d{bottom:729.494700px;}
.y1d7{bottom:732.379200px;}
.y1fb{bottom:735.143850px;}
.y80{bottom:740.868825px;}
.y13e{bottom:740.872950px;}
.y2f{bottom:740.877075px;}
.y224{bottom:745.814700px;}
.y24c{bottom:745.816200px;}
.y1d6{bottom:750.261825px;}
.y1fa{bottom:751.640850px;}
.y11{bottom:756.128100px;}
.y13d{bottom:758.465325px;}
.y2e{bottom:758.469450px;}
.y223{bottom:762.136200px;}
.y24b{bottom:762.137700px;}
.y10{bottom:775.313100px;}
.y5e{bottom:776.061825px;}
.y222{bottom:778.457700px;}
.y2d{bottom:793.654200px;}
.yf{bottom:794.498100px;}
.y221{bottom:794.779200px;}
.y2c{bottom:832.327200px;}
.yc{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.ye{bottom:867.883800px;}
.yd{bottom:881.383800px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h12{height:31.341064px;}
.h5{height:33.435000px;}
.h8{height:35.328000px;}
.h7{height:35.376000px;}
.h1f{height:37.957500px;}
.h21{height:38.692500px;}
.h20{height:39.480000px;}
.he{height:42.539062px;}
.hc{height:43.054688px;}
.hd{height:44.671875px;}
.hf{height:45.745605px;}
.h13{height:47.091064px;}
.h16{height:47.136064px;}
.h2{height:51.127441px;}
.h19{height:51.844482px;}
.h1a{height:52.291700px;}
.h18{height:52.346300px;}
.h15{height:52.472900px;}
.h1b{height:52.478900px;}
.h1e{height:52.497500px;}
.h1c{height:52.538900px;}
.h1d{height:52.598900px;}
.ha{height:53.173828px;}
.hb{height:53.818359px;}
.h14{height:54.443848px;}
.h9{height:55.839844px;}
.h11{height:57.854736px;}
.h17{height:57.942336px;}
.h10{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xf{left:93.543300px;}
.x1{left:107.148450px;}
.x15{left:108.275775px;}
.x12{left:114.803100px;}
.x14{left:116.889900px;}
.x11{left:119.053050px;}
.x16{left:123.617400px;}
.x17{left:128.409450px;}
.x3{left:132.664650px;}
.x18{left:136.911525px;}
.x8{left:162.154350px;}
.x4{left:167.305950px;}
.x5{left:172.930950px;}
.xb{left:174.634350px;}
.xc{left:228.454350px;}
.x9{left:254.674350px;}
.x7{left:267.544350px;}
.x13{left:320.352900px;}
.xa{left:352.579350px;}
.xe{left:381.153300px;}
.x6{left:415.535250px;}
.xd{left:455.584350px;}
.x10{left:468.032700px;}
.x2{left:520.665750px;}
@media print{
.v3{vertical-align:-17.200000pt;}
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.185333pt;}
.ls30{letter-spacing:-1.146667pt;}
.lsc{letter-spacing:-1.040000pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls54{letter-spacing:-0.676000pt;}
.ls27{letter-spacing:-0.606667pt;}
.ls3d{letter-spacing:-0.573333pt;}
.ls56{letter-spacing:-0.520000pt;}
.ls25{letter-spacing:-0.466667pt;}
.ls3e{letter-spacing:-0.372667pt;}
.ls3f{letter-spacing:-0.344000pt;}
.ls24{letter-spacing:-0.303333pt;}
.ls2a{letter-spacing:-0.286667pt;}
.ls2c{letter-spacing:-0.229333pt;}
.ls2b{letter-spacing:-0.186333pt;}
.ls40{letter-spacing:-0.172000pt;}
.ls41{letter-spacing:-0.114667pt;}
.ls2e{letter-spacing:-0.057333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000267pt;}
.ls14{letter-spacing:0.000800pt;}
.ls18{letter-spacing:0.046667pt;}
.ls4c{letter-spacing:0.052000pt;}
.lsd{letter-spacing:0.057333pt;}
.ls2d{letter-spacing:0.060667pt;}
.ls2f{letter-spacing:0.074533pt;}
.ls0{letter-spacing:0.074667pt;}
.ls21{letter-spacing:0.086000pt;}
.ls33{letter-spacing:0.091000pt;}
.ls1e{letter-spacing:0.093333pt;}
.ls38{letter-spacing:0.111800pt;}
.ls13{letter-spacing:0.114667pt;}
.ls17{letter-spacing:0.140000pt;}
.ls34{letter-spacing:0.151667pt;}
.ls47{letter-spacing:0.156000pt;}
.ls15{letter-spacing:0.172000pt;}
.ls5a{letter-spacing:0.182000pt;}
.ls32{letter-spacing:0.186333pt;}
.lsa{letter-spacing:0.196533pt;}
.ls48{letter-spacing:0.208000pt;}
.ls10{letter-spacing:0.229333pt;}
.ls31{letter-spacing:0.233333pt;}
.ls20{letter-spacing:0.242667pt;}
.ls45{letter-spacing:0.244400pt;}
.ls46{letter-spacing:0.260000pt;}
.ls1f{letter-spacing:0.286667pt;}
.ls12{letter-spacing:0.306400pt;}
.ls55{letter-spacing:0.312000pt;}
.ls19{letter-spacing:0.323467pt;}
.lsb{letter-spacing:0.326667pt;}
.ls3c{letter-spacing:0.335400pt;}
.ls26{letter-spacing:0.344000pt;}
.ls50{letter-spacing:0.364000pt;}
.ls9{letter-spacing:0.372533pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls39{letter-spacing:0.401333pt;}
.ls4b{letter-spacing:0.442000pt;}
.ls37{letter-spacing:0.455000pt;}
.ls11{letter-spacing:0.458667pt;}
.ls4e{letter-spacing:0.468000pt;}
.ls36{letter-spacing:0.484467pt;}
.ls1a{letter-spacing:0.513333pt;}
.ls28{letter-spacing:0.516000pt;}
.ls51{letter-spacing:0.520000pt;}
.ls44{letter-spacing:0.559000pt;}
.ls52{letter-spacing:0.572000pt;}
.ls7{letter-spacing:0.573333pt;}
.ls22{letter-spacing:0.584800pt;}
.lse{letter-spacing:0.630667pt;}
.ls53{letter-spacing:0.676000pt;}
.ls1b{letter-spacing:0.688000pt;}
.ls35{letter-spacing:0.700000pt;}
.ls59{letter-spacing:0.728000pt;}
.ls8{letter-spacing:0.745333pt;}
.ls58{letter-spacing:0.780000pt;}
.ls3a{letter-spacing:0.802667pt;}
.ls5{letter-spacing:0.860000pt;}
.ls4{letter-spacing:0.917333pt;}
.ls4f{letter-spacing:0.936000pt;}
.ls1c{letter-spacing:0.974667pt;}
.ls57{letter-spacing:0.988000pt;}
.ls49{letter-spacing:1.040000pt;}
.ls3b{letter-spacing:1.089333pt;}
.ls5b{letter-spacing:1.092000pt;}
.ls6{letter-spacing:1.146667pt;}
.ls4d{letter-spacing:1.196000pt;}
.ls42{letter-spacing:1.318667pt;}
.ls43{letter-spacing:1.376000pt;}
.ls4a{letter-spacing:1.716000pt;}
.ls5c{letter-spacing:2.236000pt;}
.ls29{letter-spacing:3.726667pt;}
.ls16{letter-spacing:4.771867pt;}
.ls1{letter-spacing:11.120000pt;}
.ls23{letter-spacing:11.666667pt;}
.ws109{word-spacing:-15.193333pt;}
.wsf2{word-spacing:-14.849333pt;}
.ws42{word-spacing:-14.333333pt;}
.ws10e{word-spacing:-13.244400pt;}
.ws10f{word-spacing:-13.000000pt;}
.ws38{word-spacing:-11.960000pt;}
.wse1{word-spacing:-11.666667pt;}
.ws8b{word-spacing:-11.334800pt;}
.ws37{word-spacing:-11.333333pt;}
.ws7f{word-spacing:-10.836000pt;}
.ws19{word-spacing:-10.750000pt;}
.ws108{word-spacing:-9.875667pt;}
.wse0{word-spacing:-9.801133pt;}
.ws111{word-spacing:-9.750000pt;}
.wsf3{word-spacing:-9.652067pt;}
.wsd7{word-spacing:-9.503000pt;}
.wsec{word-spacing:-9.428467pt;}
.wsc8{word-spacing:-9.391200pt;}
.ws39{word-spacing:-9.316667pt;}
.wsb3{word-spacing:-9.130333pt;}
.wsf8{word-spacing:-8.944000pt;}
.ws58{word-spacing:-8.750000pt;}
.wse2{word-spacing:-8.038333pt;}
.ws0{word-spacing:-8.000000pt;}
.ws6c{word-spacing:-7.826000pt;}
.wsd9{word-spacing:-7.735000pt;}
.wsd8{word-spacing:-7.674333pt;}
.wsb4{word-spacing:-7.644000pt;}
.ws3a{word-spacing:-7.583333pt;}
.ws96{word-spacing:-7.280000pt;}
.wsa2{word-spacing:-6.976667pt;}
.ws6{word-spacing:-6.608000pt;}
.ws1c{word-spacing:-0.860000pt;}
.wsf4{word-spacing:-0.802667pt;}
.ws20{word-spacing:-0.573333pt;}
.ws10b{word-spacing:-0.559000pt;}
.ws130{word-spacing:-0.520000pt;}
.ws115{word-spacing:-0.260000pt;}
.ws11d{word-spacing:-0.208000pt;}
.wse5{word-spacing:-0.186333pt;}
.wsbb{word-spacing:-0.093333pt;}
.ws14a{word-spacing:-0.052000pt;}
.wsc9{word-spacing:-0.043000pt;}
.ws110{word-spacing:-0.039000pt;}
.ws2{word-spacing:0.000000pt;}
.ws72{word-spacing:0.057333pt;}
.ws29{word-spacing:0.114667pt;}
.wsd1{word-spacing:0.140000pt;}
.ws136{word-spacing:0.156000pt;}
.ws48{word-spacing:0.172000pt;}
.wsb9{word-spacing:0.186333pt;}
.ws54{word-spacing:0.186667pt;}
.ws62{word-spacing:0.229333pt;}
.ws101{word-spacing:0.280000pt;}
.ws30{word-spacing:0.286667pt;}
.wsa{word-spacing:0.298667pt;}
.ws142{word-spacing:0.312000pt;}
.ws77{word-spacing:0.344000pt;}
.ws13c{word-spacing:0.364000pt;}
.wsfa{word-spacing:0.372667pt;}
.wsd{word-spacing:0.384000pt;}
.ws81{word-spacing:0.401333pt;}
.ws119{word-spacing:0.416000pt;}
.wsc2{word-spacing:0.420000pt;}
.wsb1{word-spacing:0.458667pt;}
.ws7d{word-spacing:0.466667pt;}
.ws134{word-spacing:0.468000pt;}
.wsfc{word-spacing:0.516000pt;}
.ws137{word-spacing:0.520000pt;}
.ws145{word-spacing:0.572000pt;}
.ws3f{word-spacing:0.573333pt;}
.wsa0{word-spacing:0.606667pt;}
.ws147{word-spacing:0.624000pt;}
.ws43{word-spacing:0.630667pt;}
.ws14d{word-spacing:0.653333pt;}
.ws4c{word-spacing:0.688000pt;}
.ws4f{word-spacing:0.700000pt;}
.ws24{word-spacing:0.745333pt;}
.wsde{word-spacing:0.746667pt;}
.ws9b{word-spacing:0.793333pt;}
.ws89{word-spacing:0.802667pt;}
.ws18{word-spacing:0.810667pt;}
.ws113{word-spacing:0.832000pt;}
.ws7c{word-spacing:0.840000pt;}
.wscf{word-spacing:0.860000pt;}
.ws51{word-spacing:0.886667pt;}
.ws61{word-spacing:0.917333pt;}
.wsaa{word-spacing:0.933333pt;}
.ws4e{word-spacing:0.974667pt;}
.ws13e{word-spacing:0.988000pt;}
.wsc6{word-spacing:1.026667pt;}
.ws3e{word-spacing:1.032000pt;}
.ws12b{word-spacing:1.040000pt;}
.wsc4{word-spacing:1.073333pt;}
.wscb{word-spacing:1.089333pt;}
.wsf5{word-spacing:1.120000pt;}
.ws22{word-spacing:1.146667pt;}
.ws107{word-spacing:1.166667pt;}
.ws8f{word-spacing:1.204000pt;}
.ws94{word-spacing:1.213333pt;}
.ws120{word-spacing:1.248000pt;}
.ws5d{word-spacing:1.261333pt;}
.ws7b{word-spacing:1.306667pt;}
.ws10a{word-spacing:1.318667pt;}
.ws13a{word-spacing:1.352000pt;}
.wse3{word-spacing:1.376000pt;}
.ws55{word-spacing:1.400000pt;}
.ws114{word-spacing:1.404000pt;}
.ws1f{word-spacing:1.433333pt;}
.ws4{word-spacing:1.456000pt;}
.wsb5{word-spacing:1.490667pt;}
.ws7e{word-spacing:1.493333pt;}
.wse{word-spacing:1.536000pt;}
.wsf7{word-spacing:1.540000pt;}
.ws11{word-spacing:1.578667pt;}
.ws9d{word-spacing:1.586667pt;}
.ws25{word-spacing:1.605333pt;}
.ws135{word-spacing:1.612000pt;}
.wsc7{word-spacing:1.633333pt;}
.ws100{word-spacing:1.662667pt;}
.ws13{word-spacing:1.664000pt;}
.ws64{word-spacing:1.680000pt;}
.ws10{word-spacing:1.706667pt;}
.ws131{word-spacing:1.716000pt;}
.wsa3{word-spacing:1.720000pt;}
.wsa1{word-spacing:1.726667pt;}
.ws99{word-spacing:1.773333pt;}
.ws4a{word-spacing:1.777333pt;}
.ws9f{word-spacing:1.820000pt;}
.wsb8{word-spacing:1.834667pt;}
.ws9c{word-spacing:1.866667pt;}
.wsce{word-spacing:1.892000pt;}
.ws146{word-spacing:1.924000pt;}
.ws26{word-spacing:1.949333pt;}
.wsba{word-spacing:1.960000pt;}
.ws6d{word-spacing:2.006667pt;}
.ws117{word-spacing:2.028000pt;}
.wse7{word-spacing:2.053333pt;}
.ws88{word-spacing:2.064000pt;}
.ws13d{word-spacing:2.080000pt;}
.wsd6{word-spacing:2.100000pt;}
.ws60{word-spacing:2.121333pt;}
.ws139{word-spacing:2.132000pt;}
.wsee{word-spacing:2.178667pt;}
.ws65{word-spacing:2.193333pt;}
.ws71{word-spacing:2.236000pt;}
.wsda{word-spacing:2.240000pt;}
.ws36{word-spacing:2.286667pt;}
.ws32{word-spacing:2.293333pt;}
.ws5{word-spacing:2.314667pt;}
.ws6e{word-spacing:2.350667pt;}
.ws67{word-spacing:2.380000pt;}
.wscd{word-spacing:2.408000pt;}
.wsdb{word-spacing:2.426667pt;}
.ws5f{word-spacing:2.465333pt;}
.ws133{word-spacing:2.496000pt;}
.wsdd{word-spacing:2.520000pt;}
.wsa5{word-spacing:2.522667pt;}
.wsf6{word-spacing:2.566667pt;}
.ws102{word-spacing:2.580000pt;}
.wse9{word-spacing:2.613333pt;}
.ws40{word-spacing:2.637333pt;}
.ws57{word-spacing:2.660000pt;}
.ws2f{word-spacing:2.694667pt;}
.ws11c{word-spacing:2.704000pt;}
.ws53{word-spacing:2.706667pt;}
.ws47{word-spacing:2.752000pt;}
.wseb{word-spacing:2.753333pt;}
.wsb{word-spacing:2.773333pt;}
.ws56{word-spacing:2.800000pt;}
.ws127{word-spacing:2.808000pt;}
.wsca{word-spacing:2.809333pt;}
.ws16{word-spacing:2.816000pt;}
.ws95{word-spacing:2.846667pt;}
.ws124{word-spacing:2.860000pt;}
.ws85{word-spacing:2.866667pt;}
.wsea{word-spacing:2.893333pt;}
.ws129{word-spacing:2.912000pt;}
.wsb0{word-spacing:2.924000pt;}
.wsa9{word-spacing:2.940000pt;}
.ws116{word-spacing:2.964000pt;}
.ws84{word-spacing:2.981333pt;}
.ws103{word-spacing:2.986667pt;}
.ws11b{word-spacing:3.016000pt;}
.ws33{word-spacing:3.038667pt;}
.ws9a{word-spacing:3.080000pt;}
.ws2d{word-spacing:3.096000pt;}
.ws12f{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.153333pt;}
.ws6b{word-spacing:3.173333pt;}
.ws82{word-spacing:3.210667pt;}
.ws10d{word-spacing:3.220000pt;}
.ws141{word-spacing:3.224000pt;}
.ws12{word-spacing:3.242667pt;}
.wsf9{word-spacing:3.268000pt;}
.wsa4{word-spacing:3.325333pt;}
.ws12a{word-spacing:3.328000pt;}
.wsd5{word-spacing:3.360000pt;}
.ws143{word-spacing:3.380000pt;}
.ws34{word-spacing:3.382667pt;}
.wsdf{word-spacing:3.406667pt;}
.ws15{word-spacing:3.413333pt;}
.ws80{word-spacing:3.440000pt;}
.wsb2{word-spacing:3.453333pt;}
.ws2e{word-spacing:3.497333pt;}
.ws63{word-spacing:3.500000pt;}
.ws12c{word-spacing:3.536000pt;}
.ws68{word-spacing:3.546667pt;}
.ws87{word-spacing:3.554667pt;}
.wsc3{word-spacing:3.593333pt;}
.ws70{word-spacing:3.612000pt;}
.ws66{word-spacing:3.640000pt;}
.wsab{word-spacing:3.669333pt;}
.ws123{word-spacing:3.692000pt;}
.ws5e{word-spacing:3.726667pt;}
.ws105{word-spacing:3.733333pt;}
.ws132{word-spacing:3.744000pt;}
.wse8{word-spacing:3.780000pt;}
.ws78{word-spacing:3.784000pt;}
.ws13b{word-spacing:3.796000pt;}
.ws28{word-spacing:3.841333pt;}
.wsd0{word-spacing:3.873333pt;}
.ws21{word-spacing:3.898667pt;}
.ws9{word-spacing:3.925333pt;}
.ws83{word-spacing:3.956000pt;}
.wsa7{word-spacing:3.966667pt;}
.ws2a{word-spacing:4.013333pt;}
.wsc{word-spacing:4.053333pt;}
.ws11a{word-spacing:4.056000pt;}
.ws31{word-spacing:4.070667pt;}
.ws50{word-spacing:4.106667pt;}
.ws13f{word-spacing:4.108000pt;}
.ws86{word-spacing:4.128000pt;}
.ws3{word-spacing:4.144000pt;}
.ws10c{word-spacing:4.153333pt;}
.ws144{word-spacing:4.160000pt;}
.wsc1{word-spacing:4.185333pt;}
.wse4{word-spacing:4.242667pt;}
.wsc5{word-spacing:4.293333pt;}
.wsbe{word-spacing:4.300000pt;}
.ws27{word-spacing:4.357333pt;}
.ws8c{word-spacing:4.414667pt;}
.ws14b{word-spacing:4.420000pt;}
.ws52{word-spacing:4.433333pt;}
.ws5c{word-spacing:4.472000pt;}
.wsf1{word-spacing:4.480000pt;}
.ws2b{word-spacing:4.529333pt;}
.ws6a{word-spacing:4.573333pt;}
.ws98{word-spacing:4.586667pt;}
.wsfe{word-spacing:4.620000pt;}
.ws3c{word-spacing:4.644000pt;}
.wsa8{word-spacing:4.666667pt;}
.ws8d{word-spacing:4.758667pt;}
.wsf{word-spacing:4.778667pt;}
.ws8a{word-spacing:4.806667pt;}
.ws49{word-spacing:4.816000pt;}
.ws106{word-spacing:4.853333pt;}
.wsed{word-spacing:4.873333pt;}
.ws11f{word-spacing:4.888000pt;}
.ws73{word-spacing:4.930667pt;}
.ws126{word-spacing:4.940000pt;}
.ws1e{word-spacing:4.988000pt;}
.wsd4{word-spacing:4.993333pt;}
.ws17{word-spacing:5.034667pt;}
.ws69{word-spacing:5.040000pt;}
.ws12d{word-spacing:5.044000pt;}
.ws44{word-spacing:5.045333pt;}
.ws7a{word-spacing:5.086667pt;}
.ws122{word-spacing:5.096000pt;}
.ws90{word-spacing:5.102667pt;}
.ws97{word-spacing:5.160000pt;}
.wsbd{word-spacing:5.180000pt;}
.ws149{word-spacing:5.200000pt;}
.wsbf{word-spacing:5.217333pt;}
.ws138{word-spacing:5.252000pt;}
.wsfd{word-spacing:5.273333pt;}
.ws59{word-spacing:5.274667pt;}
.ws93{word-spacing:5.320000pt;}
.wsd2{word-spacing:5.332000pt;}
.ws14{word-spacing:5.333333pt;}
.wsad{word-spacing:5.389333pt;}
.wsf0{word-spacing:5.413333pt;}
.ws46{word-spacing:5.446667pt;}
.wsd3{word-spacing:5.460000pt;}
.ws1d{word-spacing:5.504000pt;}
.ws9e{word-spacing:5.506667pt;}
.wscc{word-spacing:5.561333pt;}
.wsdc{word-spacing:5.600000pt;}
.ws4b{word-spacing:5.618667pt;}
.ws2c{word-spacing:5.676000pt;}
.ws11e{word-spacing:5.720000pt;}
.wsae{word-spacing:5.733333pt;}
.wse6{word-spacing:5.740000pt;}
.wsff{word-spacing:5.790667pt;}
.ws128{word-spacing:5.824000pt;}
.ws35{word-spacing:5.833333pt;}
.ws4d{word-spacing:5.848000pt;}
.ws91{word-spacing:5.905333pt;}
.wsef{word-spacing:5.962667pt;}
.ws121{word-spacing:5.980000pt;}
.ws75{word-spacing:6.020000pt;}
.ws125{word-spacing:6.032000pt;}
.ws23{word-spacing:6.077333pt;}
.ws140{word-spacing:6.084000pt;}
.ws45{word-spacing:6.134667pt;}
.ws148{word-spacing:6.136000pt;}
.ws74{word-spacing:6.192000pt;}
.ws12e{word-spacing:6.240000pt;}
.ws6f{word-spacing:6.249333pt;}
.wsb7{word-spacing:6.306667pt;}
.ws5b{word-spacing:6.364000pt;}
.ws118{word-spacing:6.396000pt;}
.ws92{word-spacing:6.421333pt;}
.wsc0{word-spacing:6.478667pt;}
.ws112{word-spacing:6.500000pt;}
.ws8e{word-spacing:6.536000pt;}
.wsfb{word-spacing:6.593333pt;}
.ws5a{word-spacing:6.650667pt;}
.ws104{word-spacing:6.708000pt;}
.ws41{word-spacing:6.765333pt;}
.wsac{word-spacing:6.822667pt;}
.ws76{word-spacing:6.880000pt;}
.wsaf{word-spacing:6.937333pt;}
.ws79{word-spacing:6.994667pt;}
.wsa6{word-spacing:7.052000pt;}
.ws3d{word-spacing:7.109333pt;}
.ws1b{word-spacing:7.166667pt;}
.ws14c{word-spacing:7.568000pt;}
.ws8{word-spacing:9.472000pt;}
.ws1a{word-spacing:11.333333pt;}
.wsbc{word-spacing:11.666667pt;}
.ws7{word-spacing:11.861333pt;}
.ws3b{word-spacing:1021.845333pt;}
.ws1{word-spacing:1616.672000pt;}
._5{margin-left:-13.173333pt;}
._3{margin-left:-8.288000pt;}
._d{margin-left:-6.697600pt;}
._c{margin-left:-4.152800pt;}
._a{margin-left:-2.834000pt;}
._b{margin-left:-1.900000pt;}
._7{margin-left:-0.928800pt;}
._8{width:1.125467pt;}
._10{width:2.350667pt;}
._9{width:3.669867pt;}
._f{width:4.588000pt;}
._0{width:6.234667pt;}
._1{width:7.952000pt;}
._e{width:8.960000pt;}
._2{width:10.378667pt;}
._4{width:11.861333pt;}
._6{width:772.964800pt;}
.fsb{font-size:30.333333pt;}
.fs6{font-size:32.000000pt;}
.fse{font-size:35.000000pt;}
.fsa{font-size:37.266667pt;}
.fs2{font-size:37.333333pt;}
.fsf{font-size:39.000000pt;}
.fs3{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:43.000000pt;}
.fs7{font-size:45.333333pt;}
.fsc{font-size:46.666667pt;}
.fs0{font-size:50.666667pt;}
.fsd{font-size:52.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.yb{bottom:85.623200pt;}
.ya{bottom:96.291200pt;}
.y1f9{bottom:110.570533pt;}
.yba{bottom:110.695133pt;}
.y10f{bottom:110.705133pt;}
.y18f{bottom:110.715133pt;}
.y14c{bottom:110.725133pt;}
.y9{bottom:110.728000pt;}
.y51{bottom:110.730133pt;}
.ya1{bottom:110.735133pt;}
.y220{bottom:110.768400pt;}
.y24a{bottom:111.642400pt;}
.y297{bottom:111.647867pt;}
.y272{bottom:111.686400pt;}
.y5d{bottom:114.240133pt;}
.yb9{bottom:123.493467pt;}
.y10e{bottom:123.503467pt;}
.y7f{bottom:123.508467pt;}
.y18e{bottom:123.513467pt;}
.y1d5{bottom:123.518467pt;}
.y14b{bottom:123.523467pt;}
.y50{bottom:123.528467pt;}
.y8{bottom:125.176000pt;}
.y21f{bottom:125.432400pt;}
.y249{bottom:126.150400pt;}
.y296{bottom:126.155867pt;}
.y271{bottom:126.194400pt;}
.y1f8{bottom:126.466200pt;}
.ya0{bottom:127.033467pt;}
.yb8{bottom:136.291800pt;}
.y10d{bottom:136.301800pt;}
.y7e{bottom:136.306800pt;}
.y177{bottom:136.311800pt;}
.y1d4{bottom:136.316800pt;}
.y9f{bottom:136.321800pt;}
.y7{bottom:139.624000pt;}
.y4f{bottom:139.826800pt;}
.y21e{bottom:140.096400pt;}
.y248{bottom:140.658400pt;}
.y295{bottom:140.663867pt;}
.y270{bottom:140.702400pt;}
.y1f7{bottom:142.361867pt;}
.y5c{bottom:148.708733pt;}
.yb7{bottom:149.090133pt;}
.y10c{bottom:149.100133pt;}
.y7d{bottom:149.105133pt;}
.y9e{bottom:149.110133pt;}
.yf1{bottom:149.115133pt;}
.y6{bottom:149.564000pt;}
.y14a{bottom:152.620133pt;}
.y21d{bottom:154.760400pt;}
.y247{bottom:155.166400pt;}
.y294{bottom:155.171867pt;}
.y26f{bottom:155.210400pt;}
.y1f6{bottom:158.257533pt;}
.yb6{bottom:161.888467pt;}
.y182{bottom:161.893467pt;}
.y10b{bottom:161.898467pt;}
.y7c{bottom:161.903467pt;}
.y9d{bottom:161.908467pt;}
.y5{bottom:163.284000pt;}
.y5b{bottom:164.346400pt;}
.yf0{bottom:165.413467pt;}
.y21c{bottom:169.424400pt;}
.y246{bottom:169.674400pt;}
.y293{bottom:169.679867pt;}
.y26e{bottom:169.718400pt;}
.y4{bottom:173.224000pt;}
.y4e{bottom:173.674133pt;}
.yd5{bottom:173.727400pt;}
.y1f5{bottom:174.153200pt;}
.yb5{bottom:174.686800pt;}
.y181{bottom:174.691800pt;}
.y10a{bottom:174.696800pt;}
.y7b{bottom:174.701800pt;}
.y9c{bottom:178.206800pt;}
.y5a{bottom:179.984067pt;}
.y3{bottom:183.164000pt;}
.y21b{bottom:184.088400pt;}
.y245{bottom:184.182400pt;}
.y292{bottom:184.187867pt;}
.y26d{bottom:184.226400pt;}
.yb4{bottom:187.485133pt;}
.y180{bottom:187.490133pt;}
.y109{bottom:187.495133pt;}
.y4d{bottom:189.311800pt;}
.y1a8{bottom:189.320733pt;}
.yd4{bottom:189.365067pt;}
.y1f4{bottom:190.048867pt;}
.y7a{bottom:191.000133pt;}
.y59{bottom:195.621733pt;}
.y244{bottom:198.690400pt;}
.y291{bottom:198.695867pt;}
.y26c{bottom:198.734400pt;}
.y21a{bottom:198.752400pt;}
.y9b{bottom:200.228467pt;}
.y79{bottom:200.278467pt;}
.yb3{bottom:200.283467pt;}
.y17f{bottom:200.288467pt;}
.y108{bottom:203.793467pt;}
.y4c{bottom:204.953133pt;}
.y1a7{bottom:204.958400pt;}
.y132{bottom:204.999067pt;}
.yd3{bottom:205.002733pt;}
.y1f3{bottom:205.944533pt;}
.y58{bottom:211.259400pt;}
.y9a{bottom:213.026800pt;}
.y107{bottom:213.066800pt;}
.y78{bottom:213.076800pt;}
.yb2{bottom:213.081800pt;}
.y243{bottom:213.198400pt;}
.y290{bottom:213.203867pt;}
.y26b{bottom:213.242400pt;}
.y219{bottom:213.456667pt;}
.y11d{bottom:216.586800pt;}
.yef{bottom:220.597667pt;}
.y1a0{bottom:220.607400pt;}
.y4b{bottom:220.609133pt;}
.y131{bottom:220.636733pt;}
.yd2{bottom:220.640400pt;}
.y176{bottom:220.691867pt;}
.y1f2{bottom:221.840200pt;}
.y99{bottom:225.825133pt;}
.y1c2{bottom:225.855133pt;}
.y11c{bottom:225.860133pt;}
.y106{bottom:225.865133pt;}
.y18d{bottom:225.870133pt;}
.y77{bottom:225.875133pt;}
.y57{bottom:226.897067pt;}
.y242{bottom:227.706400pt;}
.y28f{bottom:227.711867pt;}
.y26a{bottom:227.722400pt;}
.y218{bottom:228.120667pt;}
.yb1{bottom:229.380133pt;}
.y1a6{bottom:236.233733pt;}
.y19f{bottom:236.245067pt;}
.y4a{bottom:236.246800pt;}
.y1d3{bottom:236.252400pt;}
.y15c{bottom:236.264800pt;}
.yee{bottom:236.268467pt;}
.y130{bottom:236.274400pt;}
.yd1{bottom:236.278067pt;}
.y175{bottom:236.329533pt;}
.y1f1{bottom:237.735867pt;}
.y98{bottom:238.623467pt;}
.y1c1{bottom:238.653467pt;}
.y11b{bottom:238.658467pt;}
.y105{bottom:238.663467pt;}
.y18c{bottom:238.668467pt;}
.y76{bottom:242.173467pt;}
.y241{bottom:242.214400pt;}
.y28e{bottom:242.219867pt;}
.y269{bottom:242.230400pt;}
.y217{bottom:242.784667pt;}
.y97{bottom:251.421800pt;}
.y1c0{bottom:251.451800pt;}
.y11a{bottom:251.456800pt;}
.y75{bottom:251.461800pt;}
.y1b8{bottom:251.875533pt;}
.y19e{bottom:251.882733pt;}
.y49{bottom:251.884467pt;}
.y1d2{bottom:251.890067pt;}
.y15b{bottom:251.902467pt;}
.yed{bottom:251.906133pt;}
.y12f{bottom:251.912067pt;}
.yd0{bottom:251.915733pt;}
.y1ce{bottom:251.934067pt;}
.y174{bottom:251.967200pt;}
.y1f0{bottom:253.631533pt;}
.y18b{bottom:254.966800pt;}
.y240{bottom:256.722400pt;}
.y28d{bottom:256.727867pt;}
.y268{bottom:256.738400pt;}
.y216{bottom:257.448667pt;}
.y96{bottom:264.220133pt;}
.y1bf{bottom:264.250133pt;}
.y119{bottom:264.255133pt;}
.y56{bottom:266.003000pt;}
.y19d{bottom:267.520400pt;}
.y48{bottom:267.522133pt;}
.y1d1{bottom:267.527733pt;}
.y13c{bottom:267.535067pt;}
.y15a{bottom:267.540133pt;}
.yec{bottom:267.543800pt;}
.y12e{bottom:267.549733pt;}
.ycf{bottom:267.553400pt;}
.yb0{bottom:267.564400pt;}
.y1cd{bottom:267.571733pt;}
.y173{bottom:267.604867pt;}
.y74{bottom:267.760133pt;}
.y2b{bottom:269.444000pt;}
.y1ef{bottom:269.527200pt;}
.y23f{bottom:271.230400pt;}
.y28c{bottom:271.235867pt;}
.y267{bottom:271.246400pt;}
.y215{bottom:272.112667pt;}
.y95{bottom:277.018467pt;}
.y104{bottom:277.048467pt;}
.y55{bottom:280.212000pt;}
.y118{bottom:280.553467pt;}
.y19c{bottom:283.158067pt;}
.y47{bottom:283.159800pt;}
.y1d0{bottom:283.165400pt;}
.y13b{bottom:283.172733pt;}
.y159{bottom:283.177800pt;}
.yeb{bottom:283.181467pt;}
.y12d{bottom:283.187400pt;}
.yce{bottom:283.191067pt;}
.yaf{bottom:283.202067pt;}
.y1cc{bottom:283.209400pt;}
.y172{bottom:283.242533pt;}
.y1ee{bottom:285.422867pt;}
.y23e{bottom:285.738400pt;}
.y28b{bottom:285.743867pt;}
.y266{bottom:285.754400pt;}
.y2a{bottom:286.446667pt;}
.y214{bottom:286.776667pt;}
.y94{bottom:289.816800pt;}
.y17e{bottom:289.821800pt;}
.y188{bottom:289.831800pt;}
.y103{bottom:293.346800pt;}
.y54{bottom:294.421000pt;}
.y29{bottom:297.774667pt;}
.y18a{bottom:298.799533pt;}
.y46{bottom:298.801133pt;}
.y195{bottom:298.803067pt;}
.y1b7{bottom:298.806867pt;}
.y13a{bottom:298.810400pt;}
.y158{bottom:298.815467pt;}
.yea{bottom:298.819133pt;}
.y12c{bottom:298.825067pt;}
.ycd{bottom:298.828733pt;}
.y1b2{bottom:298.832533pt;}
.yae{bottom:298.839733pt;}
.y1cb{bottom:298.847067pt;}
.y171{bottom:298.880200pt;}
.y23d{bottom:300.246400pt;}
.y28a{bottom:300.251867pt;}
.y265{bottom:300.262400pt;}
.y1ed{bottom:301.318533pt;}
.y213{bottom:301.440667pt;}
.y93{bottom:302.615133pt;}
.y17d{bottom:302.620133pt;}
.y187{bottom:302.630133pt;}
.y102{bottom:302.635133pt;}
.y53{bottom:308.630000pt;}
.y28{bottom:309.102667pt;}
.y194{bottom:314.440733pt;}
.y19b{bottom:314.444533pt;}
.y45{bottom:314.446133pt;}
.y117{bottom:314.448067pt;}
.y157{bottom:314.453133pt;}
.ye9{bottom:314.456800pt;}
.y73{bottom:314.459067pt;}
.y12b{bottom:314.462733pt;}
.ycc{bottom:314.466400pt;}
.y1b1{bottom:314.470200pt;}
.yad{bottom:314.477400pt;}
.y1ca{bottom:314.484733pt;}
.y170{bottom:314.517867pt;}
.y23c{bottom:314.754400pt;}
.y289{bottom:314.759867pt;}
.y264{bottom:314.770400pt;}
.y92{bottom:315.413467pt;}
.y17c{bottom:315.418467pt;}
.y186{bottom:315.428467pt;}
.y212{bottom:316.104667pt;}
.y1ec{bottom:317.214200pt;}
.y101{bottom:318.933467pt;}
.y27{bottom:320.430667pt;}
.y91{bottom:328.211800pt;}
.y17b{bottom:328.216800pt;}
.y23b{bottom:329.262400pt;}
.y288{bottom:329.267867pt;}
.y263{bottom:329.278400pt;}
.y52{bottom:329.950000pt;}
.y193{bottom:330.082200pt;}
.y44{bottom:330.083800pt;}
.y116{bottom:330.085733pt;}
.y1cf{bottom:330.089400pt;}
.y156{bottom:330.090800pt;}
.ye8{bottom:330.094467pt;}
.y72{bottom:330.096733pt;}
.y12a{bottom:330.100400pt;}
.ycb{bottom:330.104067pt;}
.y1b0{bottom:330.107867pt;}
.yac{bottom:330.115067pt;}
.y1c9{bottom:330.122400pt;}
.y16f{bottom:330.155533pt;}
.y211{bottom:330.768667pt;}
.y185{bottom:331.726800pt;}
.y26{bottom:331.758667pt;}
.y1eb{bottom:333.109867pt;}
.y90{bottom:341.010133pt;}
.y17a{bottom:341.015133pt;}
.y25{bottom:343.086667pt;}
.y23a{bottom:343.770400pt;}
.y287{bottom:343.775867pt;}
.y262{bottom:343.786400pt;}
.y210{bottom:345.432667pt;}
.y192{bottom:345.719867pt;}
.y115{bottom:345.723400pt;}
.y19a{bottom:345.727067pt;}
.y155{bottom:345.728467pt;}
.ye7{bottom:345.732133pt;}
.y71{bottom:345.734400pt;}
.y129{bottom:345.738067pt;}
.yca{bottom:345.741733pt;}
.y1af{bottom:345.745533pt;}
.yab{bottom:345.752733pt;}
.y1c8{bottom:345.760067pt;}
.y43{bottom:345.765467pt;}
.y16e{bottom:345.793200pt;}
.y1ea{bottom:349.005533pt;}
.y8f{bottom:353.808467pt;}
.y184{bottom:353.813467pt;}
.y24{bottom:354.414667pt;}
.y179{bottom:357.313467pt;}
.y239{bottom:358.278400pt;}
.y286{bottom:358.283867pt;}
.y261{bottom:358.294400pt;}
.y20f{bottom:360.153067pt;}
.y114{bottom:361.361067pt;}
.y199{bottom:361.364733pt;}
.y154{bottom:361.366133pt;}
.y191{bottom:361.368400pt;}
.ye6{bottom:361.369800pt;}
.y70{bottom:361.372067pt;}
.y128{bottom:361.375733pt;}
.yc9{bottom:361.379400pt;}
.y1ae{bottom:361.383200pt;}
.y100{bottom:361.386733pt;}
.yaa{bottom:361.390400pt;}
.y1c7{bottom:361.397733pt;}
.y42{bottom:361.403133pt;}
.y16d{bottom:361.430867pt;}
.y1e9{bottom:364.901200pt;}
.y23{bottom:365.742667pt;}
.y8e{bottom:370.106800pt;}
.y238{bottom:372.786400pt;}
.y285{bottom:372.791867pt;}
.y260{bottom:372.802400pt;}
.y20e{bottom:374.817067pt;}
.y198{bottom:377.002400pt;}
.y113{bottom:377.006067pt;}
.y6f{bottom:377.009733pt;}
.y127{bottom:377.013400pt;}
.ye5{bottom:377.014800pt;}
.yc8{bottom:377.017067pt;}
.y1ad{bottom:377.020867pt;}
.yff{bottom:377.024400pt;}
.ya9{bottom:377.028067pt;}
.y1c6{bottom:377.035400pt;}
.y41{bottom:377.040800pt;}
.y16c{bottom:377.068533pt;}
.y22{bottom:377.070667pt;}
.y1e8{bottom:380.796867pt;}
.y237{bottom:387.294400pt;}
.y284{bottom:387.299867pt;}
.y25f{bottom:387.310400pt;}
.y20d{bottom:389.481067pt;}
.y6e{bottom:392.647400pt;}
.y126{bottom:392.651067pt;}
.ye4{bottom:392.652467pt;}
.yc7{bottom:392.654733pt;}
.y1ac{bottom:392.658533pt;}
.yfe{bottom:392.662067pt;}
.ya8{bottom:392.665733pt;}
.y153{bottom:392.669733pt;}
.y1c5{bottom:392.673067pt;}
.y197{bottom:392.676733pt;}
.y40{bottom:392.678467pt;}
.y16b{bottom:392.706200pt;}
.y1e7{bottom:396.692533pt;}
.y21{bottom:399.748000pt;}
.y236{bottom:401.802400pt;}
.y283{bottom:401.807867pt;}
.y25e{bottom:401.818400pt;}
.y20c{bottom:404.145067pt;}
.y6d{bottom:408.285067pt;}
.y8d{bottom:408.288733pt;}
.yc6{bottom:408.292400pt;}
.y1ab{bottom:408.296200pt;}
.yfd{bottom:408.299733pt;}
.ya7{bottom:408.303400pt;}
.y152{bottom:408.307400pt;}
.y1c4{bottom:408.310733pt;}
.y189{bottom:408.314400pt;}
.ye3{bottom:408.315667pt;}
.y3f{bottom:408.316133pt;}
.y149{bottom:408.329067pt;}
.y16a{bottom:408.343867pt;}
.y1e6{bottom:412.588200pt;}
.y235{bottom:416.310400pt;}
.y282{bottom:416.315867pt;}
.y25d{bottom:416.326400pt;}
.y20{bottom:416.793333pt;}
.y20b{bottom:418.809067pt;}
.y8c{bottom:423.926400pt;}
.yc5{bottom:423.930067pt;}
.y1aa{bottom:423.933867pt;}
.yfc{bottom:423.937400pt;}
.ya6{bottom:423.941067pt;}
.y1c3{bottom:423.948400pt;}
.y139{bottom:423.952067pt;}
.ye2{bottom:423.953333pt;}
.y3e{bottom:423.953800pt;}
.y125{bottom:423.955733pt;}
.y6c{bottom:423.959400pt;}
.y148{bottom:423.966733pt;}
.y169{bottom:423.981533pt;}
.y1f{bottom:428.121333pt;}
.y1e5{bottom:428.483867pt;}
.y234{bottom:430.818400pt;}
.y281{bottom:430.823867pt;}
.y25c{bottom:430.834400pt;}
.y20a{bottom:433.473067pt;}
.y1e{bottom:439.449333pt;}
.y183{bottom:439.567733pt;}
.y1a9{bottom:439.571533pt;}
.yfb{bottom:439.575067pt;}
.ya5{bottom:439.578733pt;}
.y1a5{bottom:439.582533pt;}
.y8b{bottom:439.586067pt;}
.y138{bottom:439.589733pt;}
.ye1{bottom:439.591000pt;}
.y3d{bottom:439.591467pt;}
.y124{bottom:439.593400pt;}
.y6b{bottom:439.597067pt;}
.yc4{bottom:439.600867pt;}
.y147{bottom:439.604400pt;}
.y168{bottom:439.619200pt;}
.y1b6{bottom:439.630067pt;}
.y1e4{bottom:444.379533pt;}
.y233{bottom:445.326400pt;}
.y280{bottom:445.331867pt;}
.y25b{bottom:445.342400pt;}
.y209{bottom:448.137067pt;}
.y1d{bottom:450.777333pt;}
.yfa{bottom:455.212733pt;}
.ya4{bottom:455.216400pt;}
.y1a4{bottom:455.220200pt;}
.y8a{bottom:455.223733pt;}
.y137{bottom:455.227400pt;}
.ye0{bottom:455.228667pt;}
.y3c{bottom:455.229133pt;}
.y123{bottom:455.231067pt;}
.y6a{bottom:455.234733pt;}
.yc3{bottom:455.238533pt;}
.y146{bottom:455.242067pt;}
.y167{bottom:455.256867pt;}
.y1b5{bottom:455.267733pt;}
.y232{bottom:459.834400pt;}
.y27f{bottom:459.839867pt;}
.y25a{bottom:459.850400pt;}
.y1e3{bottom:460.275200pt;}
.y1c{bottom:462.105333pt;}
.y208{bottom:462.801067pt;}
.ya3{bottom:470.854067pt;}
.y1a3{bottom:470.857867pt;}
.y89{bottom:470.861400pt;}
.yf9{bottom:470.865067pt;}
.ydf{bottom:470.866333pt;}
.y3b{bottom:470.866800pt;}
.y122{bottom:470.868733pt;}
.y69{bottom:470.872400pt;}
.yc2{bottom:470.876200pt;}
.y145{bottom:470.879733pt;}
.y166{bottom:470.894533pt;}
.y1b4{bottom:470.905400pt;}
.y1b{bottom:473.433333pt;}
.y231{bottom:474.342400pt;}
.y27e{bottom:474.347867pt;}
.y259{bottom:474.358400pt;}
.y1e2{bottom:476.170867pt;}
.y207{bottom:477.465067pt;}
.y1a{bottom:484.761333pt;}
.y178{bottom:486.491733pt;}
.y1a2{bottom:486.495533pt;}
.y88{bottom:486.499067pt;}
.yf8{bottom:486.502733pt;}
.yde{bottom:486.504000pt;}
.y3a{bottom:486.504467pt;}
.y121{bottom:486.506400pt;}
.y68{bottom:486.510067pt;}
.yc1{bottom:486.513867pt;}
.y144{bottom:486.517400pt;}
.y165{bottom:486.532200pt;}
.y1b3{bottom:486.543067pt;}
.y230{bottom:488.850400pt;}
.y27d{bottom:488.855867pt;}
.y258{bottom:488.866400pt;}
.y1e1{bottom:492.066533pt;}
.y206{bottom:492.129067pt;}
.y19{bottom:496.089333pt;}
.y87{bottom:502.136733pt;}
.yf7{bottom:502.140400pt;}
.ydd{bottom:502.141667pt;}
.y39{bottom:502.142133pt;}
.y120{bottom:502.144067pt;}
.y67{bottom:502.147733pt;}
.yc0{bottom:502.151533pt;}
.y143{bottom:502.155067pt;}
.y164{bottom:502.169867pt;}
.y1a1{bottom:502.180733pt;}
.y22f{bottom:503.358400pt;}
.y27c{bottom:503.363867pt;}
.y257{bottom:503.374400pt;}
.y205{bottom:506.793067pt;}
.y18{bottom:507.423333pt;}
.y1e0{bottom:507.962200pt;}
.y29d{bottom:511.384333pt;}
.yf6{bottom:517.778067pt;}
.y38{bottom:517.779800pt;}
.y11f{bottom:517.781733pt;}
.ydc{bottom:517.783133pt;}
.y66{bottom:517.785400pt;}
.ybf{bottom:517.789200pt;}
.y142{bottom:517.792733pt;}
.y163{bottom:517.807533pt;}
.ya2{bottom:517.818400pt;}
.y22e{bottom:517.866400pt;}
.y27b{bottom:517.871867pt;}
.y256{bottom:517.882400pt;}
.y17{bottom:518.751333pt;}
.y204{bottom:521.457067pt;}
.y1df{bottom:523.857867pt;}
.y29c{bottom:524.182667pt;}
.y22d{bottom:532.374400pt;}
.y255{bottom:532.375733pt;}
.y27a{bottom:532.379867pt;}
.y196{bottom:533.415733pt;}
.y11e{bottom:533.419400pt;}
.y65{bottom:533.423067pt;}
.ybe{bottom:533.426867pt;}
.ydb{bottom:533.428133pt;}
.y141{bottom:533.430400pt;}
.yf5{bottom:533.434200pt;}
.y136{bottom:533.437733pt;}
.y162{bottom:533.445200pt;}
.y1be{bottom:533.448733pt;}
.y37{bottom:533.456067pt;}
.y203{bottom:536.121067pt;}
.y29b{bottom:536.981000pt;}
.y1de{bottom:539.753533pt;}
.y22c{bottom:546.882400pt;}
.y254{bottom:546.883733pt;}
.y279{bottom:546.887867pt;}
.y64{bottom:549.060733pt;}
.ybd{bottom:549.064533pt;}
.yda{bottom:549.065800pt;}
.y140{bottom:549.068067pt;}
.yf4{bottom:549.071867pt;}
.y135{bottom:549.075400pt;}
.y161{bottom:549.082867pt;}
.y1bd{bottom:549.086400pt;}
.y36{bottom:549.093733pt;}
.y29a{bottom:549.779333pt;}
.y202{bottom:550.785067pt;}
.y1dd{bottom:555.649200pt;}
.y22b{bottom:561.390400pt;}
.y253{bottom:561.391733pt;}
.y278{bottom:561.395867pt;}
.y299{bottom:562.577667pt;}
.y190{bottom:564.698400pt;}
.ybc{bottom:564.702200pt;}
.y86{bottom:564.705733pt;}
.yf3{bottom:564.709533pt;}
.y134{bottom:564.713067pt;}
.y63{bottom:564.716733pt;}
.yd9{bottom:564.717067pt;}
.y160{bottom:564.720533pt;}
.y1bc{bottom:564.724067pt;}
.y151{bottom:564.727733pt;}
.y35{bottom:564.731400pt;}
.y201{bottom:565.477200pt;}
.y16{bottom:569.183333pt;}
.y1dc{bottom:571.544867pt;}
.y22a{bottom:575.898400pt;}
.y252{bottom:575.899733pt;}
.y277{bottom:575.903867pt;}
.y200{bottom:580.141200pt;}
.y85{bottom:580.343400pt;}
.yf2{bottom:580.347200pt;}
.y133{bottom:580.350733pt;}
.y62{bottom:580.354400pt;}
.yd8{bottom:580.354733pt;}
.y15f{bottom:580.358200pt;}
.y1bb{bottom:580.361733pt;}
.y150{bottom:580.365400pt;}
.y34{bottom:580.369067pt;}
.y15{bottom:581.993867pt;}
.y298{bottom:583.192667pt;}
.y1db{bottom:587.440533pt;}
.y229{bottom:590.406400pt;}
.y251{bottom:590.407733pt;}
.y276{bottom:590.411867pt;}
.y1ff{bottom:594.805200pt;}
.y84{bottom:595.984867pt;}
.y112{bottom:595.988400pt;}
.y61{bottom:595.992067pt;}
.yd7{bottom:595.992400pt;}
.y15e{bottom:595.995867pt;}
.y1ba{bottom:595.999400pt;}
.y14f{bottom:596.003067pt;}
.y33{bottom:596.006733pt;}
.y14{bottom:603.300533pt;}
.y1da{bottom:603.336200pt;}
.y228{bottom:604.914400pt;}
.y250{bottom:604.915733pt;}
.y275{bottom:604.919867pt;}
.y1fe{bottom:609.469200pt;}
.ybb{bottom:611.622533pt;}
.y83{bottom:611.626067pt;}
.y60{bottom:611.629733pt;}
.y15d{bottom:611.633533pt;}
.y1b9{bottom:611.637067pt;}
.y14e{bottom:611.640733pt;}
.y32{bottom:611.644400pt;}
.y1d9{bottom:619.212400pt;}
.y227{bottom:619.422400pt;}
.y24f{bottom:619.423733pt;}
.y274{bottom:619.427867pt;}
.y13{bottom:620.353867pt;}
.y1fd{bottom:624.133200pt;}
.y5f{bottom:627.267400pt;}
.yd6{bottom:627.267733pt;}
.y111{bottom:627.271200pt;}
.y82{bottom:627.274733pt;}
.y14d{bottom:627.278400pt;}
.y31{bottom:627.282067pt;}
.y226{bottom:633.930400pt;}
.y24e{bottom:633.931733pt;}
.y273{bottom:633.935867pt;}
.y1d8{bottom:635.108067pt;}
.y12{bottom:637.407200pt;}
.y1fc{bottom:638.797200pt;}
.y110{bottom:642.908867pt;}
.y81{bottom:642.912400pt;}
.y13f{bottom:642.916067pt;}
.y30{bottom:642.919733pt;}
.y225{bottom:648.438400pt;}
.y24d{bottom:648.439733pt;}
.y1d7{bottom:651.003733pt;}
.y1fb{bottom:653.461200pt;}
.y80{bottom:658.550067pt;}
.y13e{bottom:658.553733pt;}
.y2f{bottom:658.557400pt;}
.y224{bottom:662.946400pt;}
.y24c{bottom:662.947733pt;}
.y1d6{bottom:666.899400pt;}
.y1fa{bottom:668.125200pt;}
.y11{bottom:672.113867pt;}
.y13d{bottom:674.191400pt;}
.y2e{bottom:674.195067pt;}
.y223{bottom:677.454400pt;}
.y24b{bottom:677.455733pt;}
.y10{bottom:689.167200pt;}
.y5e{bottom:689.832733pt;}
.y222{bottom:691.962400pt;}
.y2d{bottom:705.470400pt;}
.yf{bottom:706.220533pt;}
.y221{bottom:706.470400pt;}
.y2c{bottom:739.846400pt;}
.yc{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.ye{bottom:771.452267pt;}
.yd{bottom:783.452267pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h12{height:27.858724pt;}
.h5{height:29.720000pt;}
.h8{height:31.402667pt;}
.h7{height:31.445333pt;}
.h1f{height:33.740000pt;}
.h21{height:34.393333pt;}
.h20{height:35.093333pt;}
.he{height:37.812500pt;}
.hc{height:38.270833pt;}
.hd{height:39.708333pt;}
.hf{height:40.662760pt;}
.h13{height:41.858724pt;}
.h16{height:41.898724pt;}
.h2{height:45.446615pt;}
.h19{height:46.083984pt;}
.h1a{height:46.481511pt;}
.h18{height:46.530045pt;}
.h15{height:46.642578pt;}
.h1b{height:46.647911pt;}
.h1e{height:46.664445pt;}
.h1c{height:46.701245pt;}
.h1d{height:46.754578pt;}
.ha{height:47.265625pt;}
.hb{height:47.838542pt;}
.h14{height:48.394531pt;}
.h9{height:49.635417pt;}
.h11{height:51.426432pt;}
.h17{height:51.504299pt;}
.h10{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xf{left:83.149600pt;}
.x1{left:95.243067pt;}
.x15{left:96.245133pt;}
.x12{left:102.047200pt;}
.x14{left:103.902133pt;}
.x11{left:105.824933pt;}
.x16{left:109.882133pt;}
.x17{left:114.141733pt;}
.x3{left:117.924133pt;}
.x18{left:121.699133pt;}
.x8{left:144.137200pt;}
.x4{left:148.716400pt;}
.x5{left:153.716400pt;}
.xb{left:155.230533pt;}
.xc{left:203.070533pt;}
.x9{left:226.377200pt;}
.x7{left:237.817200pt;}
.x13{left:284.758133pt;}
.xa{left:313.403867pt;}
.xe{left:338.802933pt;}
.x6{left:369.364667pt;}
.xd{left:404.963867pt;}
.x10{left:416.029067pt;}
.x2{left:462.814000pt;}
}




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