
    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_bb4537171fe3d19962f66a50.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_8ed095a04a8c0beee253245a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_f8a5339dd197c4d6f024fc9b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.970368;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_2f1d3422b0c83e0fcb147700.woff')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_a81e495e4302280033fc6d9f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_30212a97de7d51a4b2d1fcc2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_c6dd8b35485afe5d1bb029da.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_903f3bbd7ea9a653ca83a221.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123000;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_80f7671605d2851d9d4a3676.woff')format("woff");}.ff9{font-family:ff9;line-height:0.984048;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_87f0f2ddad42d5662b12c7e0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_49a0fa2383480b802e6a807a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.972788;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_5132ec3843c31c047241fdd1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_a7009024aed27e24cc9f6102.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_607ae2ecad8ffa9eda70ec54.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902832;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_29d302852f72bb2e9fb7c171.woff')format("woff");}.fff{font-family:fff;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5f1531333eb8df364278fa18.woff')format("woff");}.ff10{font-family:ff10;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c78ba73f4eae30f9125ff7bf.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5385b5aad6d0cf36630420ba.woff')format("woff");}.ff12{font-family:ff12;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1cf0a3687c695b66f4c26d00.woff')format("woff");}.ff13{font-family:ff13;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_deb46ba39445c43b181ff2b8.woff')format("woff");}.ff14{font-family:ff14;line-height:0.850586;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:ff15;src:url('chunks/assets/font_65d2d670cef0442ccb0d7145.woff')format("woff");}.ff15{font-family:ff15;line-height:0.942000;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:ff16;src:url('chunks/assets/font_1bd2bb78790b483a9bbffec5.woff')format("woff");}.ff16{font-family:ff16;line-height:0.913574;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:ff17;src:url('chunks/assets/font_338de161961017f3f111e24c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.942000;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:ff18;src:url('chunks/assets/font_aca16725f7399f8f12041d57.woff')format("woff");}.ff18{font-family:ff18;line-height:0.770020;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-21.978000px;}
.v6{vertical-align:-5.752440px;}
.v5{vertical-align:-3.374765px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.251397px;}
.v9{vertical-align:15.984000px;}
.va{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:30.000000px;}
.v7{vertical-align:32.544600px;}
.v3{vertical-align:60.000000px;}
.ls23{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.924000px;}
.ls21{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.691200px;}
.ls14{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.510000px;}
.ls2a{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.462000px;}
.ls22{letter-spacing:-0.461736px;}
.ls18{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.396000px;}
.ls8{letter-spacing:-0.330000px;}
.ls13{letter-spacing:-0.319014px;}
.ls1d{letter-spacing:-0.305600px;}
.ls25{letter-spacing:-0.253840px;}
.ls2b{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.171045px;}
.ls15{letter-spacing:-0.132000px;}
.ls12{letter-spacing:-0.127606px;}
.ls29{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.066000px;}
.ls11{letter-spacing:-0.057015px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025800px;}
.lsa{letter-spacing:0.057015px;}
.ls6{letter-spacing:0.102000px;}
.ls1c{letter-spacing:0.118145px;}
.ls24{letter-spacing:0.126920px;}
.ls1e{letter-spacing:0.127597px;}
.ls1b{letter-spacing:0.152800px;}
.ls1a{letter-spacing:0.236290px;}
.ls19{letter-spacing:0.245661px;}
.ls28{letter-spacing:0.792000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.lsd{letter-spacing:79.439131px;}
.lse{letter-spacing:82.164931px;}
.lsf{letter-spacing:82.167331px;}
.lsb{letter-spacing:104.541010px;}
.lsc{letter-spacing:107.225482px;}
.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;}
}
.wsef{word-spacing:-48.000000px;}
.ws0{word-spacing:-25.296000px;}
.ws5{word-spacing:-17.928000px;}
.ws131{word-spacing:-16.500000px;}
.ws132{word-spacing:-16.434000px;}
.ws4{word-spacing:-14.940000px;}
.ws133{word-spacing:-13.500000px;}
.ws138{word-spacing:-13.392000px;}
.ws160{word-spacing:-13.014000px;}
.wsca{word-spacing:-12.960000px;}
.ws8d{word-spacing:-12.951968px;}
.wsc9{word-spacing:-12.528000px;}
.ws7{word-spacing:-12.150000px;}
.ws6{word-spacing:-11.772000px;}
.ws8e{word-spacing:-11.631060px;}
.ws8c{word-spacing:-11.574045px;}
.ws115{word-spacing:-10.973671px;}
.ws2{word-spacing:-10.896000px;}
.ws62{word-spacing:-9.619500px;}
.ws3{word-spacing:-9.417600px;}
.wsea{word-spacing:-9.157764px;}
.ws113{word-spacing:-8.968999px;}
.ws148{word-spacing:-8.856000px;}
.ws161{word-spacing:-7.870500px;}
.wsf0{word-spacing:-6.996000px;}
.ws12f{word-spacing:-5.808000px;}
.ws15d{word-spacing:-4.806000px;}
.ws70{word-spacing:-4.620000px;}
.wsb0{word-spacing:-4.158000px;}
.wsba{word-spacing:-4.092000px;}
.ws3e{word-spacing:-3.894000px;}
.ws2a{word-spacing:-3.828000px;}
.wsc7{word-spacing:-3.762000px;}
.ws54{word-spacing:-3.432000px;}
.ws82{word-spacing:-3.300000px;}
.ws162{word-spacing:-3.240000px;}
.ws63{word-spacing:-3.234000px;}
.wsae{word-spacing:-3.168000px;}
.ws13c{word-spacing:-3.132000px;}
.ws40{word-spacing:-3.102000px;}
.ws16e{word-spacing:-3.078000px;}
.ws4a{word-spacing:-3.036000px;}
.ws81{word-spacing:-2.970000px;}
.ws175{word-spacing:-2.916000px;}
.ws3a{word-spacing:-2.904000px;}
.ws123{word-spacing:-2.838000px;}
.ws139{word-spacing:-2.808000px;}
.ws39{word-spacing:-2.772000px;}
.ws181{word-spacing:-2.754000px;}
.ws41{word-spacing:-2.706000px;}
.ws185{word-spacing:-2.700000px;}
.ws5f{word-spacing:-2.640000px;}
.ws48{word-spacing:-2.574000px;}
.wsa9{word-spacing:-2.508000px;}
.ws1c{word-spacing:-2.442000px;}
.ws14d{word-spacing:-2.430000px;}
.wsad{word-spacing:-2.376000px;}
.wsce{word-spacing:-2.322000px;}
.wsa2{word-spacing:-2.310000px;}
.ws180{word-spacing:-2.268000px;}
.ws51{word-spacing:-2.178000px;}
.ws105{word-spacing:-2.160000px;}
.ws6a{word-spacing:-2.112000px;}
.ws17f{word-spacing:-2.106000px;}
.ws1d{word-spacing:-2.046000px;}
.ws104{word-spacing:-2.016000px;}
.ws28{word-spacing:-1.980000px;}
.ws183{word-spacing:-1.944000px;}
.ws76{word-spacing:-1.914000px;}
.ws73{word-spacing:-1.848000px;}
.ws165{word-spacing:-1.836000px;}
.ws36{word-spacing:-1.782000px;}
.ws8b{word-spacing:-1.728000px;}
.wsc8{word-spacing:-1.716000px;}
.ws140{word-spacing:-1.674000px;}
.ws77{word-spacing:-1.584000px;}
.ws149{word-spacing:-1.566000px;}
.ws1f{word-spacing:-1.518000px;}
.ws16f{word-spacing:-1.512000px;}
.ws11b{word-spacing:-1.458000px;}
.ws10e{word-spacing:-1.452000px;}
.ws15e{word-spacing:-1.404000px;}
.wsb2{word-spacing:-1.386000px;}
.ws18c{word-spacing:-1.350000px;}
.ws83{word-spacing:-1.320000px;}
.ws13d{word-spacing:-1.296000px;}
.ws46{word-spacing:-1.254000px;}
.ws16b{word-spacing:-1.242000px;}
.ws3b{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.134000px;}
.ws4d{word-spacing:-1.122000px;}
.ws86{word-spacing:-1.080000px;}
.ws1e{word-spacing:-1.056000px;}
.ws166{word-spacing:-1.026000px;}
.ws3f{word-spacing:-0.990000px;}
.ws16{word-spacing:-0.972000px;}
.ws69{word-spacing:-0.924000px;}
.ws8a{word-spacing:-0.918000px;}
.ws178{word-spacing:-0.864000px;}
.ws10d{word-spacing:-0.858000px;}
.ws134{word-spacing:-0.810000px;}
.ws35{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.780000px;}
.ws144{word-spacing:-0.756000px;}
.ws2b{word-spacing:-0.726000px;}
.ws1a{word-spacing:-0.702000px;}
.ws7e{word-spacing:-0.660000px;}
.wsd2{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.594000px;}
.wse4{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.528000px;}
.ws17e{word-spacing:-0.486000px;}
.ws12e{word-spacing:-0.462000px;}
.ws135{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.396000px;}
.wsd3{word-spacing:-0.378000px;}
.ws5e{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.324000px;}
.ws99{word-spacing:-0.270000px;}
.ws32{word-spacing:-0.264000px;}
.wsd4{word-spacing:-0.245661px;}
.wsb{word-spacing:-0.216000px;}
.wsb3{word-spacing:-0.198000px;}
.ws150{word-spacing:-0.162000px;}
.wse6{word-spacing:-0.152800px;}
.ws7c{word-spacing:-0.132000px;}
.wse9{word-spacing:-0.127597px;}
.ws11d{word-spacing:-0.126920px;}
.wse7{word-spacing:-0.118145px;}
.ws8{word-spacing:-0.111318px;}
.ws18{word-spacing:-0.108000px;}
.ws103{word-spacing:-0.096000px;}
.wscc{word-spacing:-0.067168px;}
.wsbd{word-spacing:-0.066000px;}
.wsda{word-spacing:-0.061961px;}
.ws9d{word-spacing:-0.057015px;}
.ws112{word-spacing:-0.054000px;}
.wscb{word-spacing:-0.049132px;}
.wsdf{word-spacing:-0.042532px;}
.wsd5{word-spacing:-0.039382px;}
.ws9{word-spacing:0.000000px;}
.ws11c{word-spacing:0.054000px;}
.ws9e{word-spacing:0.057015px;}
.wsc5{word-spacing:0.066000px;}
.ws187{word-spacing:0.108000px;}
.ws9f{word-spacing:0.127606px;}
.wsbb{word-spacing:0.132000px;}
.wsd0{word-spacing:0.162000px;}
.ws9c{word-spacing:0.171045px;}
.ws186{word-spacing:0.180000px;}
.ws100{word-spacing:0.198000px;}
.ws9a{word-spacing:0.216000px;}
.ws11e{word-spacing:0.253840px;}
.ws85{word-spacing:0.264000px;}
.wscf{word-spacing:0.270000px;}
.wse8{word-spacing:0.305600px;}
.wsa0{word-spacing:0.319014px;}
.wsc3{word-spacing:0.330000px;}
.ws154{word-spacing:0.378000px;}
.ws57{word-spacing:0.396000px;}
.ws89{word-spacing:0.432000px;}
.wsa6{word-spacing:0.462000px;}
.wsa{word-spacing:0.510000px;}
.ws6c{word-spacing:0.528000px;}
.wse3{word-spacing:0.540000px;}
.ws84{word-spacing:0.594000px;}
.ws43{word-spacing:0.660000px;}
.wsc{word-spacing:0.691200px;}
.ws88{word-spacing:0.702000px;}
.ws22{word-spacing:0.726000px;}
.wsd1{word-spacing:0.756000px;}
.ws74{word-spacing:0.792000px;}
.ws9b{word-spacing:0.864000px;}
.wse5{word-spacing:0.918000px;}
.ws64{word-spacing:0.924000px;}
.ws102{word-spacing:0.960000px;}
.ws142{word-spacing:0.972000px;}
.ws6e{word-spacing:0.990000px;}
.ws15a{word-spacing:1.026000px;}
.ws17a{word-spacing:1.080000px;}
.ws60{word-spacing:1.122000px;}
.ws15{word-spacing:1.134000px;}
.ws55{word-spacing:1.188000px;}
.ws151{word-spacing:1.242000px;}
.ws5a{word-spacing:1.254000px;}
.ws13{word-spacing:1.296000px;}
.ws29{word-spacing:1.320000px;}
.ws171{word-spacing:1.350000px;}
.ws3c{word-spacing:1.386000px;}
.ws6f{word-spacing:1.452000px;}
.wse{word-spacing:1.458000px;}
.ws15c{word-spacing:1.512000px;}
.ws42{word-spacing:1.518000px;}
.ws190{word-spacing:1.566000px;}
.ws4e{word-spacing:1.584000px;}
.ws14{word-spacing:1.620000px;}
.wsff{word-spacing:1.650000px;}
.ws98{word-spacing:1.674000px;}
.ws96{word-spacing:1.716000px;}
.ws170{word-spacing:1.728000px;}
.ws26{word-spacing:1.782000px;}
.ws58{word-spacing:1.848000px;}
.ws158{word-spacing:1.890000px;}
.ws44{word-spacing:1.914000px;}
.wsf{word-spacing:1.944000px;}
.ws108{word-spacing:1.980000px;}
.ws141{word-spacing:1.998000px;}
.ws34{word-spacing:2.046000px;}
.ws159{word-spacing:2.052000px;}
.ws177{word-spacing:2.106000px;}
.wsaf{word-spacing:2.112000px;}
.ws167{word-spacing:2.160000px;}
.ws91{word-spacing:2.178000px;}
.ws119{word-spacing:2.214000px;}
.ws2d{word-spacing:2.244000px;}
.ws174{word-spacing:2.268000px;}
.ws37{word-spacing:2.310000px;}
.ws157{word-spacing:2.322000px;}
.ws120{word-spacing:2.376000px;}
.ws14a{word-spacing:2.430000px;}
.ws80{word-spacing:2.442000px;}
.ws163{word-spacing:2.484000px;}
.ws56{word-spacing:2.508000px;}
.ws13e{word-spacing:2.538000px;}
.ws117{word-spacing:2.538396px;}
.ws4c{word-spacing:2.574000px;}
.ws114{word-spacing:2.580703px;}
.ws15f{word-spacing:2.592000px;}
.ws12c{word-spacing:2.640000px;}
.ws15b{word-spacing:2.646000px;}
.ws16c{word-spacing:2.700000px;}
.ws52{word-spacing:2.706000px;}
.ws116{word-spacing:2.707622px;}
.ws118{word-spacing:2.749929px;}
.ws11a{word-spacing:2.754000px;}
.wsb1{word-spacing:2.772000px;}
.ws11{word-spacing:2.808000px;}
.ws65{word-spacing:2.838000px;}
.ws18d{word-spacing:2.862000px;}
.ws71{word-spacing:2.904000px;}
.ws66{word-spacing:2.970000px;}
.ws179{word-spacing:3.024000px;}
.ws11f{word-spacing:3.036000px;}
.ws173{word-spacing:3.078000px;}
.wsc0{word-spacing:3.102000px;}
.wsd{word-spacing:3.132000px;}
.ws25{word-spacing:3.168000px;}
.ws13b{word-spacing:3.186000px;}
.wsa1{word-spacing:3.234000px;}
.wsb4{word-spacing:3.300000px;}
.ws12{word-spacing:3.348000px;}
.ws3d{word-spacing:3.366000px;}
.ws20{word-spacing:3.432000px;}
.ws101{word-spacing:3.456000px;}
.ws24{word-spacing:3.498000px;}
.ws95{word-spacing:3.564000px;}
.ws1b{word-spacing:3.630000px;}
.ws94{word-spacing:3.696000px;}
.ws10f{word-spacing:3.762000px;}
.ws14b{word-spacing:3.780000px;}
.ws10c{word-spacing:3.828000px;}
.wsb9{word-spacing:3.894000px;}
.wse2{word-spacing:3.942000px;}
.wsc4{word-spacing:3.960000px;}
.ws145{word-spacing:3.996000px;}
.wsbc{word-spacing:4.026000px;}
.ws7d{word-spacing:4.092000px;}
.ws16a{word-spacing:4.104000px;}
.ws18f{word-spacing:4.158000px;}
.ws16d{word-spacing:4.212000px;}
.wsa5{word-spacing:4.224000px;}
.ws13f{word-spacing:4.266000px;}
.ws127{word-spacing:4.290000px;}
.ws18e{word-spacing:4.320000px;}
.ws27{word-spacing:4.356000px;}
.ws152{word-spacing:4.374000px;}
.ws67{word-spacing:4.422000px;}
.ws192{word-spacing:4.482000px;}
.wsa3{word-spacing:4.488000px;}
.ws47{word-spacing:4.554000px;}
.ws17d{word-spacing:4.590000px;}
.ws2c{word-spacing:4.620000px;}
.ws193{word-spacing:4.644000px;}
.ws97{word-spacing:4.698000px;}
.wsb7{word-spacing:4.752000px;}
.wsc1{word-spacing:4.818000px;}
.wsac{word-spacing:4.884000px;}
.ws156{word-spacing:4.914000px;}
.ws31{word-spacing:4.950000px;}
.ws5c{word-spacing:5.016000px;}
.ws14e{word-spacing:5.076000px;}
.ws72{word-spacing:5.082000px;}
.ws191{word-spacing:5.130000px;}
.ws125{word-spacing:5.214000px;}
.ws45{word-spacing:5.280000px;}
.ws107{word-spacing:5.346000px;}
.wsfe{word-spacing:5.412000px;}
.ws53{word-spacing:5.478000px;}
.ws137{word-spacing:5.562000px;}
.ws6b{word-spacing:5.610000px;}
.ws49{word-spacing:5.676000px;}
.ws21{word-spacing:5.742000px;}
.ws124{word-spacing:5.874000px;}
.ws14c{word-spacing:5.886000px;}
.ws111{word-spacing:5.940000px;}
.wsb6{word-spacing:6.006000px;}
.ws75{word-spacing:6.072000px;}
.ws93{word-spacing:6.138000px;}
.ws78{word-spacing:6.204000px;}
.ws168{word-spacing:6.210000px;}
.ws18b{word-spacing:6.264000px;}
.ws122{word-spacing:6.270000px;}
.ws194{word-spacing:6.318000px;}
.wsbf{word-spacing:6.402000px;}
.ws176{word-spacing:6.480000px;}
.ws61{word-spacing:6.534000px;}
.ws30{word-spacing:6.666000px;}
.ws169{word-spacing:6.696000px;}
.ws92{word-spacing:6.732000px;}
.ws143{word-spacing:6.750000px;}
.ws68{word-spacing:6.798000px;}
.ws18a{word-spacing:6.858000px;}
.ws130{word-spacing:6.864000px;}
.ws153{word-spacing:6.912000px;}
.wsfc{word-spacing:6.930000px;}
.ws79{word-spacing:6.996000px;}
.wsa8{word-spacing:7.062000px;}
.ws106{word-spacing:7.128000px;}
.ws189{word-spacing:7.182000px;}
.ws59{word-spacing:7.194000px;}
.ws10b{word-spacing:7.260000px;}
.ws10a{word-spacing:7.458000px;}
.ws188{word-spacing:7.506000px;}
.ws172{word-spacing:7.560000px;}
.ws184{word-spacing:7.614000px;}
.ws23{word-spacing:7.656000px;}
.wsb5{word-spacing:7.722000px;}
.ws90{word-spacing:7.920000px;}
.ws13a{word-spacing:7.938000px;}
.ws50{word-spacing:7.986000px;}
.wsb8{word-spacing:8.052000px;}
.ws129{word-spacing:8.118000px;}
.ws4b{word-spacing:8.316000px;}
.ws136{word-spacing:8.424000px;}
.ws6d{word-spacing:8.514000px;}
.ws12b{word-spacing:8.580000px;}
.ws146{word-spacing:8.640000px;}
.wsc2{word-spacing:8.646000px;}
.ws121{word-spacing:8.712000px;}
.ws5d{word-spacing:8.778000px;}
.wsc6{word-spacing:8.844000px;}
.wsab{word-spacing:8.910000px;}
.ws38{word-spacing:8.976000px;}
.ws5b{word-spacing:9.042000px;}
.ws14f{word-spacing:9.072000px;}
.ws2e{word-spacing:9.174000px;}
.ws7f{word-spacing:9.306000px;}
.ws12d{word-spacing:9.504000px;}
.wsfd{word-spacing:9.570000px;}
.ws128{word-spacing:9.768000px;}
.ws182{word-spacing:9.828000px;}
.ws12a{word-spacing:9.834000px;}
.ws110{word-spacing:10.032000px;}
.wsa4{word-spacing:10.098000px;}
.ws164{word-spacing:10.260000px;}
.ws8f{word-spacing:10.824000px;}
.ws155{word-spacing:11.016000px;}
.ws109{word-spacing:11.022000px;}
.ws17b{word-spacing:11.178000px;}
.wsdd{word-spacing:11.568758px;}
.wsbe{word-spacing:11.616000px;}
.wse1{word-spacing:11.653823px;}
.wse0{word-spacing:11.994080px;}
.wsa7{word-spacing:12.540000px;}
.ws126{word-spacing:13.332000px;}
.ws147{word-spacing:13.392000px;}
.wsd8{word-spacing:13.853885px;}
.ws2f{word-spacing:13.860000px;}
.wsd9{word-spacing:14.159485px;}
.wsdb{word-spacing:14.312285px;}
.wsd7{word-spacing:14.363219px;}
.wsaa{word-spacing:14.454000px;}
.ws17c{word-spacing:18.576000px;}
.ws1{word-spacing:33.651774px;}
.wsde{word-spacing:79.549012px;}
.wsec{word-spacing:79.624200px;}
.wseb{word-spacing:105.300600px;}
.wsf1{word-spacing:113.954400px;}
.wsd6{word-spacing:162.330955px;}
.wsed{word-spacing:165.813000px;}
.ws7b{word-spacing:166.934400px;}
.wsdc{word-spacing:189.504259px;}
.wsf2{word-spacing:215.133000px;}
.wsf3{word-spacing:222.118200px;}
.wsf8{word-spacing:234.117600px;}
.wsf6{word-spacing:234.118200px;}
.ws7a{word-spacing:259.114800px;}
.wsfb{word-spacing:267.870000px;}
.wsf5{word-spacing:291.870000px;}
.wsf7{word-spacing:291.870600px;}
.wsee{word-spacing:311.503200px;}
.wsf4{word-spacing:316.553400px;}
.wsf9{word-spacing:352.675200px;}
.wsfa{word-spacing:427.338000px;}
.wscd{word-spacing:863.917388px;}
._4e{margin-left:-14.364000px;}
._6{margin-left:-10.342800px;}
._8{margin-left:-9.240000px;}
._7{margin-left:-7.920000px;}
._5{margin-left:-6.649800px;}
._3{margin-left:-4.635000px;}
._1{margin-left:-2.641800px;}
._0{margin-left:-1.438200px;}
._2{width:1.437000px;}
._24{width:2.456423px;}
._49{width:4.828800px;}
._4a{width:7.467600px;}
._25{width:14.216199px;}
._4{width:36.624000px;}
._4f{width:42.223800px;}
._39{width:44.353200px;}
._31{width:45.442200px;}
._30{width:48.696600px;}
._32{width:50.155800px;}
._44{width:56.565600px;}
._40{width:57.981000px;}
._2c{width:61.268400px;}
._27{width:66.420000px;}
._38{width:74.582400px;}
._3e{width:75.753600px;}
._14{width:82.466400px;}
._34{width:84.369600px;}
._29{width:87.135600px;}
._47{width:88.600800px;}
._45{width:92.893800px;}
._4d{width:94.760411px;}
._b{width:99.268200px;}
._42{width:100.495200px;}
._33{width:105.340200px;}
._48{width:108.603600px;}
._2e{width:111.894600px;}
._2d{width:116.251200px;}
._26{width:120.003000px;}
._15{width:125.666400px;}
._23{width:128.423398px;}
._11{width:133.743000px;}
._4b{width:135.579487px;}
._20{width:138.697200px;}
._13{width:142.432200px;}
._18{width:147.302400px;}
._17{width:151.743000px;}
._21{width:154.560600px;}
._1f{width:156.087600px;}
._4c{width:161.951089px;}
._9{width:164.219400px;}
._1c{width:168.087600px;}
._19{width:170.953800px;}
._1e{width:174.011400px;}
._10{width:177.118200px;}
._12{width:178.692600px;}
._1d{width:185.184600px;}
._16{width:195.118200px;}
._22{width:210.831600px;}
._1a{width:213.292800px;}
._f{width:216.438000px;}
._a{width:217.997400px;}
._2a{width:219.637800px;}
._c{width:226.907400px;}
._3d{width:239.921400px;}
._d{width:242.654400px;}
._3b{width:260.526000px;}
._36{width:261.676200px;}
._3a{width:264.041400px;}
._e{width:272.738400px;}
._43{width:294.810000px;}
._37{width:323.227800px;}
._3f{width:347.897400px;}
._1b{width:376.475400px;}
._28{width:401.034000px;}
._41{width:405.643800px;}
._3c{width:614.814600px;}
._2b{width:704.091000px;}
._2f{width:728.091000px;}
._46{width:800.059800px;}
._35{width:812.257800px;}
.fc9{color:rgb(16,15,13);}
.fc8{color:rgb(70,70,72);}
.fc6{color:rgb(145,143,143);}
.fc5{color:rgb(92,147,213);}
.fc4{color:rgb(54,108,190);}
.fc3{color:rgb(67,33,78);}
.fc7{color:rgb(191,66,32);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:22.096800px;}
.fs14{font-size:27.984000px;}
.fs17{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs10{font-size:39.381600px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:42.306600px;}
.fs13{font-size:42.532200px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fse{font-size:49.132200px;}
.fs11{font-size:50.933400px;}
.fs16{font-size:51.762600px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:57.015000px;}
.fs7{font-size:60.000000px;}
.fs12{font-size:61.960800px;}
.fsd{font-size:63.802800px;}
.fs2{font-size:66.000000px;}
.fsf{font-size:67.168200px;}
.fs8{font-size:72.000000px;}
.fsc{font-size:76.699200px;}
.fs1{font-size:102.000000px;}
.fsa{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:1.204950px;}
.y104{bottom:2.092050px;}
.y15c{bottom:2.495700px;}
.ybc{bottom:11.609400px;}
.yc6{bottom:21.860340px;}
.ybf{bottom:23.283221px;}
.yc5{bottom:39.164392px;}
.ybe{bottom:40.587274px;}
.yca{bottom:41.400654px;}
.yc9{bottom:41.432555px;}
.yc2{bottom:41.930543px;}
.y3e{bottom:45.774196px;}
.yc4{bottom:56.297400px;}
.ybd{bottom:57.720281px;}
.yc1{bottom:59.063550px;}
.y1{bottom:68.124750px;}
.y40{bottom:71.212050px;}
.y41{bottom:75.036150px;}
.yc7{bottom:80.812950px;}
.yc0{bottom:83.246250px;}
.yc3{bottom:83.410500px;}
.y101{bottom:89.662800px;}
.ya3{bottom:113.078700px;}
.y73{bottom:113.078850px;}
.y16d{bottom:116.078850px;}
.y2b{bottom:117.212700px;}
.y12{bottom:117.875550px;}
.yb4{bottom:117.954300px;}
.ye3{bottom:120.500850px;}
.y11{bottom:132.275550px;}
.ya2{bottom:134.078700px;}
.y72{bottom:134.078850px;}
.y153{bottom:134.393850px;}
.y2a{bottom:138.212700px;}
.yb3{bottom:139.410150px;}
.ye2{bottom:140.300850px;}
.y10{bottom:146.675550px;}
.ya1{bottom:155.078700px;}
.y71{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.ye1{bottom:160.100850px;}
.yb2{bottom:160.865850px;}
.yf{bottom:161.075550px;}
.ya0{bottom:176.078700px;}
.y70{bottom:176.078850px;}
.ye0{bottom:179.900850px;}
.y28{bottom:180.212700px;}
.yb1{bottom:182.321700px;}
.y9f{bottom:197.078700px;}
.y6f{bottom:197.078850px;}
.y39{bottom:199.392600px;}
.ydf{bottom:199.700850px;}
.y27{bottom:201.212700px;}
.yb0{bottom:203.777550px;}
.yc8{bottom:205.373850px;}
.y163{bottom:211.441050px;}
.y38{bottom:217.392600px;}
.y9e{bottom:218.078700px;}
.y6e{bottom:218.078850px;}
.yde{bottom:219.500850px;}
.y130{bottom:220.806300px;}
.yaf{bottom:225.233250px;}
.y26{bottom:232.448400px;}
.y37{bottom:235.392600px;}
.y9d{bottom:239.078700px;}
.y6d{bottom:239.078850px;}
.ydd{bottom:239.300850px;}
.y12f{bottom:240.606300px;}
.yae{bottom:246.689100px;}
.y36{bottom:253.392600px;}
.ydc{bottom:259.100850px;}
.y9c{bottom:260.078700px;}
.y6c{bottom:260.078850px;}
.y12e{bottom:260.406300px;}
.yac{bottom:268.444950px;}
.y35{bottom:271.392600px;}
.yab{bottom:275.944950px;}
.ydb{bottom:278.900850px;}
.yf1{bottom:279.856500px;}
.y12d{bottom:280.206300px;}
.y9b{bottom:281.078700px;}
.y6b{bottom:281.078850px;}
.yad{bottom:283.444950px;}
.y34{bottom:289.392600px;}
.y103{bottom:289.959750px;}
.yd0{bottom:295.368709px;}
.yd2{bottom:295.525500px;}
.yce{bottom:295.953112px;}
.ycc{bottom:297.207443px;}
.y105{bottom:298.095900px;}
.yda{bottom:298.700850px;}
.y12c{bottom:300.006300px;}
.y9a{bottom:302.078700px;}
.y6a{bottom:302.078850px;}
.y33{bottom:307.392600px;}
.ycf{bottom:312.501716px;}
.yd1{bottom:312.658508px;}
.ycd{bottom:313.086120px;}
.ycb{bottom:314.340450px;}
.y100{bottom:314.381100px;}
.yaa{bottom:314.477100px;}
.yd9{bottom:316.441050px;}
.y25{bottom:317.227950px;}
.ye6{bottom:319.456500px;}
.y12b{bottom:319.806300px;}
.y99{bottom:323.078700px;}
.y69{bottom:323.078850px;}
.y32{bottom:325.392600px;}
.yff{bottom:328.425000px;}
.ya9{bottom:334.277100px;}
.y24{bottom:337.027950px;}
.yd8{bottom:337.441050px;}
.y12a{bottom:339.606300px;}
.y31{bottom:343.392600px;}
.yfc{bottom:343.783950px;}
.y98{bottom:344.078700px;}
.y68{bottom:344.078850px;}
.ya8{bottom:354.077100px;}
.y147{bottom:356.378700px;}
.y129{bottom:359.406300px;}
.y30{bottom:361.392600px;}
.yfa{bottom:362.578500px;}
.y97{bottom:365.078700px;}
.y67{bottom:365.078850px;}
.ya7{bottom:373.877100px;}
.y23{bottom:378.087900px;}
.y128{bottom:379.206300px;}
.y106{bottom:379.440900px;}
.y96{bottom:386.078700px;}
.y66{bottom:386.078850px;}
.ya6{bottom:393.677100px;}
.y2f{bottom:396.400500px;}
.y22{bottom:397.887750px;}
.y138{bottom:399.961500px;}
.y95{bottom:407.078700px;}
.y65{bottom:407.078850px;}
.y16a{bottom:412.529400px;}
.ya5{bottom:413.477100px;}
.y2e{bottom:414.400500px;}
.y21{bottom:417.687900px;}
.yfd{bottom:419.790438px;}
.y94{bottom:428.078700px;}
.y64{bottom:428.078850px;}
.y2d{bottom:432.400500px;}
.y20{bottom:437.487900px;}
.y15a{bottom:442.271380px;}
.y152{bottom:448.868825px;}
.y93{bottom:449.078700px;}
.y63{bottom:449.078850px;}
.y2c{bottom:450.400500px;}
.y159{bottom:452.974950px;}
.y1f{bottom:457.287900px;}
.y151{bottom:460.566600px;}
.y155{bottom:468.900450px;}
.y92{bottom:470.078700px;}
.y62{bottom:470.078850px;}
.y1e{bottom:477.087900px;}
.yba{bottom:482.254950px;}
.y91{bottom:491.078700px;}
.y61{bottom:491.078850px;}
.yfe{bottom:495.668936px;}
.y1d{bottom:496.887750px;}
.yb9{bottom:502.054950px;}
.y15e{bottom:505.441050px;}
.y90{bottom:512.078700px;}
.y60{bottom:512.078850px;}
.y14e{bottom:512.452350px;}
.y15b{bottom:514.321650px;}
.y1c{bottom:516.687900px;}
.y156{bottom:520.419312px;}
.yb8{bottom:521.854950px;}
.y15d{bottom:526.441050px;}
.y8f{bottom:533.078700px;}
.y5f{bottom:533.078850px;}
.y1b{bottom:536.487900px;}
.y125{bottom:539.971500px;}
.yb7{bottom:541.654950px;}
.y8e{bottom:554.078700px;}
.y5e{bottom:554.078850px;}
.y1a{bottom:556.287900px;}
.y124{bottom:560.577000px;}
.yb6{bottom:561.454950px;}
.y14f{bottom:563.220270px;}
.y157{bottom:571.938174px;}
.y102{bottom:572.206950px;}
.y8d{bottom:575.078700px;}
.y5d{bottom:575.078850px;}
.y19{bottom:576.087900px;}
.y139{bottom:578.860800px;}
.y123{bottom:581.182350px;}
.yb5{bottom:581.254950px;}
.yf9{bottom:593.865750px;}
.y18{bottom:595.887750px;}
.y8c{bottom:596.078700px;}
.y5c{bottom:596.078850px;}
.y169{bottom:601.529400px;}
.y122{bottom:601.787700px;}
.ybb{bottom:602.010000px;}
.yf8{bottom:607.905450px;}
.y150{bottom:613.861270px;}
.y17{bottom:615.687900px;}
.y8b{bottom:617.078700px;}
.y5b{bottom:617.078850px;}
.yf4{bottom:619.329900px;}
.y121{bottom:622.393200px;}
.y158{bottom:623.457036px;}
.y16{bottom:635.487900px;}
.y8a{bottom:638.078700px;}
.y5a{bottom:638.078850px;}
.y120{bottom:642.998550px;}
.y15{bottom:655.287900px;}
.y154{bottom:657.045600px;}
.ye4{bottom:658.066350px;}
.y89{bottom:659.078700px;}
.y59{bottom:659.078850px;}
.y11f{bottom:663.603900px;}
.ye5{bottom:671.155950px;}
.y16c{bottom:672.513600px;}
.y127{bottom:673.441050px;}
.y88{bottom:680.078700px;}
.y58{bottom:680.078850px;}
.y11e{bottom:684.209400px;}
.y14{bottom:686.385300px;}
.y146{bottom:686.904725px;}
.yf2{bottom:692.988600px;}
.yf5{bottom:693.101482px;}
.y161{bottom:694.440900px;}
.y126{bottom:694.441050px;}
.y145{bottom:698.602500px;}
.y87{bottom:701.078700px;}
.y57{bottom:701.078850px;}
.y16b{bottom:704.811150px;}
.y11d{bottom:704.814750px;}
.y168{bottom:706.529400px;}
.y13f{bottom:712.165650px;}
.y160{bottom:715.440900px;}
.y86{bottom:722.078700px;}
.y56{bottom:722.078850px;}
.y11c{bottom:725.420100px;}
.y13a{bottom:733.031550px;}
.y149{bottom:737.299500px;}
.y85{bottom:743.078700px;}
.y55{bottom:743.078850px;}
.y140{bottom:745.884010px;}
.y11b{bottom:746.025600px;}
.y14d{bottom:759.203400px;}
.y84{bottom:764.078700px;}
.y54{bottom:764.078850px;}
.ye{bottom:765.666900px;}
.y11a{bottom:766.630950px;}
.yf6{bottom:766.882910px;}
.y14a{bottom:775.132177px;}
.yd7{bottom:777.513600px;}
.y141{bottom:779.729290px;}
.yd{bottom:783.666900px;}
.y83{bottom:785.078700px;}
.y53{bottom:785.078850px;}
.y119{bottom:787.236300px;}
.y167{bottom:790.529250px;}
.y118{bottom:792.841800px;}
.yd6{bottom:798.513600px;}
.yc{bottom:801.666900px;}
.y82{bottom:806.078700px;}
.y52{bottom:806.078850px;}
.y117{bottom:807.841800px;}
.ye7{bottom:811.383900px;}
.y14b{bottom:812.964854px;}
.y142{bottom:813.574570px;}
.yb{bottom:819.666900px;}
.y81{bottom:827.078700px;}
.y51{bottom:827.078850px;}
.y116{bottom:828.447150px;}
.yd5{bottom:830.811000px;}
.ya{bottom:837.666900px;}
.yf7{bottom:840.654492px;}
.y143{bottom:847.419850px;}
.y80{bottom:848.078700px;}
.y50{bottom:848.078850px;}
.y115{bottom:849.052500px;}
.y14c{bottom:850.660035px;}
.yf3{bottom:851.303400px;}
.yfb{bottom:851.679450px;}
.y166{bottom:853.529250px;}
.y9{bottom:855.666900px;}
.y7f{bottom:869.078700px;}
.y4f{bottom:869.078850px;}
.y114{bottom:869.658000px;}
.yf0{bottom:873.340350px;}
.y8{bottom:873.666900px;}
.y144{bottom:881.265130px;}
.y162{bottom:883.441050px;}
.yef{bottom:887.385750px;}
.y7e{bottom:890.078700px;}
.y4e{bottom:890.078850px;}
.y113{bottom:890.263350px;}
.y7{bottom:891.666900px;}
.y148{bottom:894.960600px;}
.ye9{bottom:904.716300px;}
.ye8{bottom:910.763550px;}
.y112{bottom:910.868700px;}
.y7d{bottom:911.078700px;}
.y4d{bottom:911.078850px;}
.y165{bottom:916.529250px;}
.y137{bottom:924.818225px;}
.y6{bottom:926.674650px;}
.y111{bottom:931.474200px;}
.y7c{bottom:932.078700px;}
.y4c{bottom:932.078850px;}
.y136{bottom:936.516000px;}
.yea{bottom:943.832074px;}
.y5{bottom:946.474800px;}
.y110{bottom:952.079550px;}
.y7b{bottom:953.078700px;}
.y4b{bottom:953.078850px;}
.y10f{bottom:972.685050px;}
.y131{bottom:973.472100px;}
.y7a{bottom:974.078700px;}
.y4a{bottom:974.078850px;}
.y164{bottom:979.937100px;}
.yeb{bottom:982.957694px;}
.y4{bottom:983.282550px;}
.y13b{bottom:987.783000px;}
.ya4{bottom:988.441050px;}
.y13e{bottom:992.507850px;}
.y10e{bottom:993.290400px;}
.y79{bottom:995.078700px;}
.y49{bottom:995.078850px;}
.yd4{bottom:1009.441050px;}
.y132{bottom:1010.299995px;}
.y10d{bottom:1013.895750px;}
.y78{bottom:1016.078700px;}
.y48{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yec{bottom:1022.201458px;}
.y10b{bottom:1034.501250px;}
.y77{bottom:1037.078700px;}
.y47{bottom:1037.078850px;}
.y13c{bottom:1039.788388px;}
.y10a{bottom:1042.001250px;}
.y133{bottom:1047.127891px;}
.y2{bottom:1049.282550px;}
.y10c{bottom:1049.501250px;}
.y46{bottom:1058.078850px;}
.yed{bottom:1061.327078px;}
.y76{bottom:1071.029250px;}
.y45{bottom:1079.078850px;}
.y109{bottom:1079.682900px;}
.y134{bottom:1083.839443px;}
.y15f{bottom:1089.747000px;}
.y13d{bottom:1091.804353px;}
.y75{bottom:1092.029250px;}
.y108{bottom:1099.482900px;}
.y44{bottom:1100.078850px;}
.yee{bottom:1100.442852px;}
.y13{bottom:1109.815500px;}
.yd3{bottom:1110.747000px;}
.y107{bottom:1119.282900px;}
.y135{bottom:1120.667338px;}
.y43{bottom:1121.078850px;}
.y74{bottom:1124.326650px;}
.y3c{bottom:1135.732500px;}
.y3f{bottom:1152.015600px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y42{bottom:1178.691750px;}
.h10{height:16.788389px;}
.h1f{height:28.394134px;}
.h25{height:30.503059px;}
.h24{height:30.665716px;}
.h1c{height:32.746803px;}
.h16{height:34.320000px;}
.h7{height:34.446094px;}
.h20{height:36.722981px;}
.h27{height:37.320835px;}
.h19{height:38.000720px;}
.h2{height:38.039062px;}
.h12{height:38.273438px;}
.h6{height:38.531250px;}
.h17{height:40.992000px;}
.h1b{height:42.524815px;}
.he{height:42.793945px;}
.h28{height:42.900000px;}
.h8{height:43.004883px;}
.hd{height:43.057617px;}
.h22{height:44.673737px;}
.h1d{height:44.767868px;}
.h9{height:45.615234px;}
.ha{height:46.116000px;}
.h13{height:50.176758px;}
.hf{height:50.566500px;}
.h1a{height:51.120316px;}
.h4{height:51.231050px;}
.h5{height:51.231650px;}
.hb{height:54.738281px;}
.hc{height:56.364000px;}
.h23{height:63.210316px;}
.h14{height:64.320000px;}
.h11{height:80.825130px;}
.h3{height:81.231445px;}
.h15{height:94.320000px;}
.h18{height:540.069000px;}
.h26{height:742.116000px;}
.h1e{height:822.622500px;}
.h21{height:862.222500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w5{width:400.818000px;}
.w4{width:483.223500px;}
.w6{width:631.671000px;}
.w3{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:7.531200px;}
.x2b{left:9.640050px;}
.x1f{left:10.701277px;}
.x27{left:16.318650px;}
.x1e{left:20.335500px;}
.x20{left:29.698561px;}
.x48{left:31.546950px;}
.x21{left:37.592850px;}
.x18{left:56.693565px;}
.x19{left:59.879550px;}
.x2{left:73.984200px;}
.x54{left:78.830250px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xa{left:111.091350px;}
.x16{left:112.252050px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x33{left:127.000950px;}
.x36{left:129.744000px;}
.x46{left:147.630000px;}
.x43{left:158.527769px;}
.x42{left:164.493000px;}
.xf{left:167.542950px;}
.x4f{left:170.338800px;}
.x50{left:179.176950px;}
.x44{left:210.032550px;}
.x41{left:216.541950px;}
.x22{left:220.867568px;}
.x26{left:238.171650px;}
.x35{left:251.052600px;}
.x17{left:253.338300px;}
.x40{left:254.593800px;}
.x3f{left:261.997800px;}
.x2a{left:263.055000px;}
.x10{left:267.325650px;}
.x2d{left:275.714100px;}
.x28{left:277.950126px;}
.x2e{left:281.227524px;}
.x1b{left:282.923100px;}
.x1a{left:284.061600px;}
.x2c{left:292.519050px;}
.x45{left:296.147634px;}
.x4{left:300.189000px;}
.x31{left:301.579800px;}
.x32{left:310.634250px;}
.xc{left:317.196900px;}
.x2f{left:331.114050px;}
.xe{left:334.204650px;}
.x4e{left:350.339550px;}
.x25{left:377.313900px;}
.x23{left:381.835166px;}
.x37{left:386.626650px;}
.x3{left:396.050700px;}
.x29{left:430.749600px;}
.x30{left:435.344400px;}
.x39{left:442.099950px;}
.x38{left:446.755950px;}
.x4d{left:474.078750px;}
.x4a{left:477.434613px;}
.x3b{left:478.473750px;}
.x3a{left:480.771600px;}
.x49{left:483.283500px;}
.x1c{left:486.339450px;}
.x1d{left:492.475050px;}
.x51{left:497.969550px;}
.x3c{left:510.347550px;}
.x34{left:514.107600px;}
.x3d{left:516.215400px;}
.x52{left:524.224800px;}
.x4b{left:528.952650px;}
.x24{left:570.597578px;}
.x11{left:602.250750px;}
.x53{left:612.074455px;}
.x4c{left:614.940814px;}
.x3e{left:644.994600px;}
.x12{left:650.832300px;}
.x9{left:655.284150px;}
.x13{left:662.736300px;}
.x8{left:674.754900px;}
.x14{left:714.492000px;}
.x15{left:732.905850px;}
.x1{left:801.350850px;}
@media print{
.v8{vertical-align:-19.536000pt;}
.v6{vertical-align:-5.113280pt;}
.v5{vertical-align:-2.999791pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.001242pt;}
.v9{vertical-align:14.208000pt;}
.va{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.v7{vertical-align:28.928533pt;}
.v3{vertical-align:53.333333pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.453333pt;}
.ls2a{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.410667pt;}
.ls22{letter-spacing:-0.410432pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.352000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls13{letter-spacing:-0.283568pt;}
.ls1d{letter-spacing:-0.271645pt;}
.ls25{letter-spacing:-0.225635pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.152040pt;}
.ls15{letter-spacing:-0.117333pt;}
.ls12{letter-spacing:-0.113427pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.058667pt;}
.ls11{letter-spacing:-0.050680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022933pt;}
.lsa{letter-spacing:0.050680pt;}
.ls6{letter-spacing:0.090667pt;}
.ls1c{letter-spacing:0.105018pt;}
.ls24{letter-spacing:0.112818pt;}
.ls1e{letter-spacing:0.113419pt;}
.ls1b{letter-spacing:0.135822pt;}
.ls1a{letter-spacing:0.210035pt;}
.ls19{letter-spacing:0.218365pt;}
.ls28{letter-spacing:0.704000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.lsd{letter-spacing:70.612561pt;}
.lse{letter-spacing:73.035494pt;}
.lsf{letter-spacing:73.037628pt;}
.lsb{letter-spacing:92.925342pt;}
.lsc{letter-spacing:95.311539pt;}
.wsef{word-spacing:-42.666667pt;}
.ws0{word-spacing:-22.485333pt;}
.ws5{word-spacing:-15.936000pt;}
.ws131{word-spacing:-14.666667pt;}
.ws132{word-spacing:-14.608000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws133{word-spacing:-12.000000pt;}
.ws138{word-spacing:-11.904000pt;}
.ws160{word-spacing:-11.568000pt;}
.wsca{word-spacing:-11.520000pt;}
.ws8d{word-spacing:-11.512861pt;}
.wsc9{word-spacing:-11.136000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws6{word-spacing:-10.464000pt;}
.ws8e{word-spacing:-10.338720pt;}
.ws8c{word-spacing:-10.288040pt;}
.ws115{word-spacing:-9.754374pt;}
.ws2{word-spacing:-9.685333pt;}
.ws62{word-spacing:-8.550667pt;}
.ws3{word-spacing:-8.371200pt;}
.wsea{word-spacing:-8.140235pt;}
.ws113{word-spacing:-7.972444pt;}
.ws148{word-spacing:-7.872000pt;}
.ws161{word-spacing:-6.996000pt;}
.wsf0{word-spacing:-6.218667pt;}
.ws12f{word-spacing:-5.162667pt;}
.ws15d{word-spacing:-4.272000pt;}
.ws70{word-spacing:-4.106667pt;}
.wsb0{word-spacing:-3.696000pt;}
.wsba{word-spacing:-3.637333pt;}
.ws3e{word-spacing:-3.461333pt;}
.ws2a{word-spacing:-3.402667pt;}
.wsc7{word-spacing:-3.344000pt;}
.ws54{word-spacing:-3.050667pt;}
.ws82{word-spacing:-2.933333pt;}
.ws162{word-spacing:-2.880000pt;}
.ws63{word-spacing:-2.874667pt;}
.wsae{word-spacing:-2.816000pt;}
.ws13c{word-spacing:-2.784000pt;}
.ws40{word-spacing:-2.757333pt;}
.ws16e{word-spacing:-2.736000pt;}
.ws4a{word-spacing:-2.698667pt;}
.ws81{word-spacing:-2.640000pt;}
.ws175{word-spacing:-2.592000pt;}
.ws3a{word-spacing:-2.581333pt;}
.ws123{word-spacing:-2.522667pt;}
.ws139{word-spacing:-2.496000pt;}
.ws39{word-spacing:-2.464000pt;}
.ws181{word-spacing:-2.448000pt;}
.ws41{word-spacing:-2.405333pt;}
.ws185{word-spacing:-2.400000pt;}
.ws5f{word-spacing:-2.346667pt;}
.ws48{word-spacing:-2.288000pt;}
.wsa9{word-spacing:-2.229333pt;}
.ws1c{word-spacing:-2.170667pt;}
.ws14d{word-spacing:-2.160000pt;}
.wsad{word-spacing:-2.112000pt;}
.wsce{word-spacing:-2.064000pt;}
.wsa2{word-spacing:-2.053333pt;}
.ws180{word-spacing:-2.016000pt;}
.ws51{word-spacing:-1.936000pt;}
.ws105{word-spacing:-1.920000pt;}
.ws6a{word-spacing:-1.877333pt;}
.ws17f{word-spacing:-1.872000pt;}
.ws1d{word-spacing:-1.818667pt;}
.ws104{word-spacing:-1.792000pt;}
.ws28{word-spacing:-1.760000pt;}
.ws183{word-spacing:-1.728000pt;}
.ws76{word-spacing:-1.701333pt;}
.ws73{word-spacing:-1.642667pt;}
.ws165{word-spacing:-1.632000pt;}
.ws36{word-spacing:-1.584000pt;}
.ws8b{word-spacing:-1.536000pt;}
.wsc8{word-spacing:-1.525333pt;}
.ws140{word-spacing:-1.488000pt;}
.ws77{word-spacing:-1.408000pt;}
.ws149{word-spacing:-1.392000pt;}
.ws1f{word-spacing:-1.349333pt;}
.ws16f{word-spacing:-1.344000pt;}
.ws11b{word-spacing:-1.296000pt;}
.ws10e{word-spacing:-1.290667pt;}
.ws15e{word-spacing:-1.248000pt;}
.wsb2{word-spacing:-1.232000pt;}
.ws18c{word-spacing:-1.200000pt;}
.ws83{word-spacing:-1.173333pt;}
.ws13d{word-spacing:-1.152000pt;}
.ws46{word-spacing:-1.114667pt;}
.ws16b{word-spacing:-1.104000pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.008000pt;}
.ws4d{word-spacing:-0.997333pt;}
.ws86{word-spacing:-0.960000pt;}
.ws1e{word-spacing:-0.938667pt;}
.ws166{word-spacing:-0.912000pt;}
.ws3f{word-spacing:-0.880000pt;}
.ws16{word-spacing:-0.864000pt;}
.ws69{word-spacing:-0.821333pt;}
.ws8a{word-spacing:-0.816000pt;}
.ws178{word-spacing:-0.768000pt;}
.ws10d{word-spacing:-0.762667pt;}
.ws134{word-spacing:-0.720000pt;}
.ws35{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.693333pt;}
.ws144{word-spacing:-0.672000pt;}
.ws2b{word-spacing:-0.645333pt;}
.ws1a{word-spacing:-0.624000pt;}
.ws7e{word-spacing:-0.586667pt;}
.wsd2{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.528000pt;}
.wse4{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.469333pt;}
.ws17e{word-spacing:-0.432000pt;}
.ws12e{word-spacing:-0.410667pt;}
.ws135{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.352000pt;}
.wsd3{word-spacing:-0.336000pt;}
.ws5e{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.288000pt;}
.ws99{word-spacing:-0.240000pt;}
.ws32{word-spacing:-0.234667pt;}
.wsd4{word-spacing:-0.218365pt;}
.wsb{word-spacing:-0.192000pt;}
.wsb3{word-spacing:-0.176000pt;}
.ws150{word-spacing:-0.144000pt;}
.wse6{word-spacing:-0.135822pt;}
.ws7c{word-spacing:-0.117333pt;}
.wse9{word-spacing:-0.113419pt;}
.ws11d{word-spacing:-0.112818pt;}
.wse7{word-spacing:-0.105018pt;}
.ws8{word-spacing:-0.098949pt;}
.ws18{word-spacing:-0.096000pt;}
.ws103{word-spacing:-0.085333pt;}
.wscc{word-spacing:-0.059705pt;}
.wsbd{word-spacing:-0.058667pt;}
.wsda{word-spacing:-0.055076pt;}
.ws9d{word-spacing:-0.050680pt;}
.ws112{word-spacing:-0.048000pt;}
.wscb{word-spacing:-0.043673pt;}
.wsdf{word-spacing:-0.037806pt;}
.wsd5{word-spacing:-0.035006pt;}
.ws9{word-spacing:0.000000pt;}
.ws11c{word-spacing:0.048000pt;}
.ws9e{word-spacing:0.050680pt;}
.wsc5{word-spacing:0.058667pt;}
.ws187{word-spacing:0.096000pt;}
.ws9f{word-spacing:0.113427pt;}
.wsbb{word-spacing:0.117333pt;}
.wsd0{word-spacing:0.144000pt;}
.ws9c{word-spacing:0.152040pt;}
.ws186{word-spacing:0.160000pt;}
.ws100{word-spacing:0.176000pt;}
.ws9a{word-spacing:0.192000pt;}
.ws11e{word-spacing:0.225635pt;}
.ws85{word-spacing:0.234667pt;}
.wscf{word-spacing:0.240000pt;}
.wse8{word-spacing:0.271645pt;}
.wsa0{word-spacing:0.283568pt;}
.wsc3{word-spacing:0.293333pt;}
.ws154{word-spacing:0.336000pt;}
.ws57{word-spacing:0.352000pt;}
.ws89{word-spacing:0.384000pt;}
.wsa6{word-spacing:0.410667pt;}
.wsa{word-spacing:0.453333pt;}
.ws6c{word-spacing:0.469333pt;}
.wse3{word-spacing:0.480000pt;}
.ws84{word-spacing:0.528000pt;}
.ws43{word-spacing:0.586667pt;}
.wsc{word-spacing:0.614400pt;}
.ws88{word-spacing:0.624000pt;}
.ws22{word-spacing:0.645333pt;}
.wsd1{word-spacing:0.672000pt;}
.ws74{word-spacing:0.704000pt;}
.ws9b{word-spacing:0.768000pt;}
.wse5{word-spacing:0.816000pt;}
.ws64{word-spacing:0.821333pt;}
.ws102{word-spacing:0.853333pt;}
.ws142{word-spacing:0.864000pt;}
.ws6e{word-spacing:0.880000pt;}
.ws15a{word-spacing:0.912000pt;}
.ws17a{word-spacing:0.960000pt;}
.ws60{word-spacing:0.997333pt;}
.ws15{word-spacing:1.008000pt;}
.ws55{word-spacing:1.056000pt;}
.ws151{word-spacing:1.104000pt;}
.ws5a{word-spacing:1.114667pt;}
.ws13{word-spacing:1.152000pt;}
.ws29{word-spacing:1.173333pt;}
.ws171{word-spacing:1.200000pt;}
.ws3c{word-spacing:1.232000pt;}
.ws6f{word-spacing:1.290667pt;}
.wse{word-spacing:1.296000pt;}
.ws15c{word-spacing:1.344000pt;}
.ws42{word-spacing:1.349333pt;}
.ws190{word-spacing:1.392000pt;}
.ws4e{word-spacing:1.408000pt;}
.ws14{word-spacing:1.440000pt;}
.wsff{word-spacing:1.466667pt;}
.ws98{word-spacing:1.488000pt;}
.ws96{word-spacing:1.525333pt;}
.ws170{word-spacing:1.536000pt;}
.ws26{word-spacing:1.584000pt;}
.ws58{word-spacing:1.642667pt;}
.ws158{word-spacing:1.680000pt;}
.ws44{word-spacing:1.701333pt;}
.wsf{word-spacing:1.728000pt;}
.ws108{word-spacing:1.760000pt;}
.ws141{word-spacing:1.776000pt;}
.ws34{word-spacing:1.818667pt;}
.ws159{word-spacing:1.824000pt;}
.ws177{word-spacing:1.872000pt;}
.wsaf{word-spacing:1.877333pt;}
.ws167{word-spacing:1.920000pt;}
.ws91{word-spacing:1.936000pt;}
.ws119{word-spacing:1.968000pt;}
.ws2d{word-spacing:1.994667pt;}
.ws174{word-spacing:2.016000pt;}
.ws37{word-spacing:2.053333pt;}
.ws157{word-spacing:2.064000pt;}
.ws120{word-spacing:2.112000pt;}
.ws14a{word-spacing:2.160000pt;}
.ws80{word-spacing:2.170667pt;}
.ws163{word-spacing:2.208000pt;}
.ws56{word-spacing:2.229333pt;}
.ws13e{word-spacing:2.256000pt;}
.ws117{word-spacing:2.256352pt;}
.ws4c{word-spacing:2.288000pt;}
.ws114{word-spacing:2.293958pt;}
.ws15f{word-spacing:2.304000pt;}
.ws12c{word-spacing:2.346667pt;}
.ws15b{word-spacing:2.352000pt;}
.ws16c{word-spacing:2.400000pt;}
.ws52{word-spacing:2.405333pt;}
.ws116{word-spacing:2.406775pt;}
.ws118{word-spacing:2.444381pt;}
.ws11a{word-spacing:2.448000pt;}
.wsb1{word-spacing:2.464000pt;}
.ws11{word-spacing:2.496000pt;}
.ws65{word-spacing:2.522667pt;}
.ws18d{word-spacing:2.544000pt;}
.ws71{word-spacing:2.581333pt;}
.ws66{word-spacing:2.640000pt;}
.ws179{word-spacing:2.688000pt;}
.ws11f{word-spacing:2.698667pt;}
.ws173{word-spacing:2.736000pt;}
.wsc0{word-spacing:2.757333pt;}
.wsd{word-spacing:2.784000pt;}
.ws25{word-spacing:2.816000pt;}
.ws13b{word-spacing:2.832000pt;}
.wsa1{word-spacing:2.874667pt;}
.wsb4{word-spacing:2.933333pt;}
.ws12{word-spacing:2.976000pt;}
.ws3d{word-spacing:2.992000pt;}
.ws20{word-spacing:3.050667pt;}
.ws101{word-spacing:3.072000pt;}
.ws24{word-spacing:3.109333pt;}
.ws95{word-spacing:3.168000pt;}
.ws1b{word-spacing:3.226667pt;}
.ws94{word-spacing:3.285333pt;}
.ws10f{word-spacing:3.344000pt;}
.ws14b{word-spacing:3.360000pt;}
.ws10c{word-spacing:3.402667pt;}
.wsb9{word-spacing:3.461333pt;}
.wse2{word-spacing:3.504000pt;}
.wsc4{word-spacing:3.520000pt;}
.ws145{word-spacing:3.552000pt;}
.wsbc{word-spacing:3.578667pt;}
.ws7d{word-spacing:3.637333pt;}
.ws16a{word-spacing:3.648000pt;}
.ws18f{word-spacing:3.696000pt;}
.ws16d{word-spacing:3.744000pt;}
.wsa5{word-spacing:3.754667pt;}
.ws13f{word-spacing:3.792000pt;}
.ws127{word-spacing:3.813333pt;}
.ws18e{word-spacing:3.840000pt;}
.ws27{word-spacing:3.872000pt;}
.ws152{word-spacing:3.888000pt;}
.ws67{word-spacing:3.930667pt;}
.ws192{word-spacing:3.984000pt;}
.wsa3{word-spacing:3.989333pt;}
.ws47{word-spacing:4.048000pt;}
.ws17d{word-spacing:4.080000pt;}
.ws2c{word-spacing:4.106667pt;}
.ws193{word-spacing:4.128000pt;}
.ws97{word-spacing:4.176000pt;}
.wsb7{word-spacing:4.224000pt;}
.wsc1{word-spacing:4.282667pt;}
.wsac{word-spacing:4.341333pt;}
.ws156{word-spacing:4.368000pt;}
.ws31{word-spacing:4.400000pt;}
.ws5c{word-spacing:4.458667pt;}
.ws14e{word-spacing:4.512000pt;}
.ws72{word-spacing:4.517333pt;}
.ws191{word-spacing:4.560000pt;}
.ws125{word-spacing:4.634667pt;}
.ws45{word-spacing:4.693333pt;}
.ws107{word-spacing:4.752000pt;}
.wsfe{word-spacing:4.810667pt;}
.ws53{word-spacing:4.869333pt;}
.ws137{word-spacing:4.944000pt;}
.ws6b{word-spacing:4.986667pt;}
.ws49{word-spacing:5.045333pt;}
.ws21{word-spacing:5.104000pt;}
.ws124{word-spacing:5.221333pt;}
.ws14c{word-spacing:5.232000pt;}
.ws111{word-spacing:5.280000pt;}
.wsb6{word-spacing:5.338667pt;}
.ws75{word-spacing:5.397333pt;}
.ws93{word-spacing:5.456000pt;}
.ws78{word-spacing:5.514667pt;}
.ws168{word-spacing:5.520000pt;}
.ws18b{word-spacing:5.568000pt;}
.ws122{word-spacing:5.573333pt;}
.ws194{word-spacing:5.616000pt;}
.wsbf{word-spacing:5.690667pt;}
.ws176{word-spacing:5.760000pt;}
.ws61{word-spacing:5.808000pt;}
.ws30{word-spacing:5.925333pt;}
.ws169{word-spacing:5.952000pt;}
.ws92{word-spacing:5.984000pt;}
.ws143{word-spacing:6.000000pt;}
.ws68{word-spacing:6.042667pt;}
.ws18a{word-spacing:6.096000pt;}
.ws130{word-spacing:6.101333pt;}
.ws153{word-spacing:6.144000pt;}
.wsfc{word-spacing:6.160000pt;}
.ws79{word-spacing:6.218667pt;}
.wsa8{word-spacing:6.277333pt;}
.ws106{word-spacing:6.336000pt;}
.ws189{word-spacing:6.384000pt;}
.ws59{word-spacing:6.394667pt;}
.ws10b{word-spacing:6.453333pt;}
.ws10a{word-spacing:6.629333pt;}
.ws188{word-spacing:6.672000pt;}
.ws172{word-spacing:6.720000pt;}
.ws184{word-spacing:6.768000pt;}
.ws23{word-spacing:6.805333pt;}
.wsb5{word-spacing:6.864000pt;}
.ws90{word-spacing:7.040000pt;}
.ws13a{word-spacing:7.056000pt;}
.ws50{word-spacing:7.098667pt;}
.wsb8{word-spacing:7.157333pt;}
.ws129{word-spacing:7.216000pt;}
.ws4b{word-spacing:7.392000pt;}
.ws136{word-spacing:7.488000pt;}
.ws6d{word-spacing:7.568000pt;}
.ws12b{word-spacing:7.626667pt;}
.ws146{word-spacing:7.680000pt;}
.wsc2{word-spacing:7.685333pt;}
.ws121{word-spacing:7.744000pt;}
.ws5d{word-spacing:7.802667pt;}
.wsc6{word-spacing:7.861333pt;}
.wsab{word-spacing:7.920000pt;}
.ws38{word-spacing:7.978667pt;}
.ws5b{word-spacing:8.037333pt;}
.ws14f{word-spacing:8.064000pt;}
.ws2e{word-spacing:8.154667pt;}
.ws7f{word-spacing:8.272000pt;}
.ws12d{word-spacing:8.448000pt;}
.wsfd{word-spacing:8.506667pt;}
.ws128{word-spacing:8.682667pt;}
.ws182{word-spacing:8.736000pt;}
.ws12a{word-spacing:8.741333pt;}
.ws110{word-spacing:8.917333pt;}
.wsa4{word-spacing:8.976000pt;}
.ws164{word-spacing:9.120000pt;}
.ws8f{word-spacing:9.621333pt;}
.ws155{word-spacing:9.792000pt;}
.ws109{word-spacing:9.797333pt;}
.ws17b{word-spacing:9.936000pt;}
.wsdd{word-spacing:10.283341pt;}
.wsbe{word-spacing:10.325333pt;}
.wse1{word-spacing:10.358954pt;}
.wse0{word-spacing:10.661405pt;}
.wsa7{word-spacing:11.146667pt;}
.ws126{word-spacing:11.850667pt;}
.ws147{word-spacing:11.904000pt;}
.wsd8{word-spacing:12.314564pt;}
.ws2f{word-spacing:12.320000pt;}
.wsd9{word-spacing:12.586209pt;}
.wsdb{word-spacing:12.722031pt;}
.wsd7{word-spacing:12.767306pt;}
.wsaa{word-spacing:12.848000pt;}
.ws17c{word-spacing:16.512000pt;}
.ws1{word-spacing:29.912688pt;}
.wsde{word-spacing:70.710233pt;}
.wsec{word-spacing:70.777067pt;}
.wseb{word-spacing:93.600533pt;}
.wsf1{word-spacing:101.292800pt;}
.wsd6{word-spacing:144.294182pt;}
.wsed{word-spacing:147.389333pt;}
.ws7b{word-spacing:148.386133pt;}
.wsdc{word-spacing:168.448230pt;}
.wsf2{word-spacing:191.229333pt;}
.wsf3{word-spacing:197.438400pt;}
.wsf8{word-spacing:208.104533pt;}
.wsf6{word-spacing:208.105067pt;}
.ws7a{word-spacing:230.324267pt;}
.wsfb{word-spacing:238.106667pt;}
.wsf5{word-spacing:259.440000pt;}
.wsf7{word-spacing:259.440533pt;}
.wsee{word-spacing:276.891733pt;}
.wsf4{word-spacing:281.380800pt;}
.wsf9{word-spacing:313.489067pt;}
.wsfa{word-spacing:379.856000pt;}
.wscd{word-spacing:767.926567pt;}
._4e{margin-left:-12.768000pt;}
._6{margin-left:-9.193600pt;}
._8{margin-left:-8.213333pt;}
._7{margin-left:-7.040000pt;}
._5{margin-left:-5.910933pt;}
._3{margin-left:-4.120000pt;}
._1{margin-left:-2.348267pt;}
._0{margin-left:-1.278400pt;}
._2{width:1.277333pt;}
._24{width:2.183487pt;}
._49{width:4.292267pt;}
._4a{width:6.637867pt;}
._25{width:12.636621pt;}
._4{width:32.554667pt;}
._4f{width:37.532267pt;}
._39{width:39.425067pt;}
._31{width:40.393067pt;}
._30{width:43.285867pt;}
._32{width:44.582933pt;}
._44{width:50.280533pt;}
._40{width:51.538667pt;}
._2c{width:54.460800pt;}
._27{width:59.040000pt;}
._38{width:66.295467pt;}
._3e{width:67.336533pt;}
._14{width:73.303467pt;}
._34{width:74.995200pt;}
._29{width:77.453867pt;}
._47{width:78.756267pt;}
._45{width:82.572267pt;}
._4d{width:84.231476pt;}
._b{width:88.238400pt;}
._42{width:89.329067pt;}
._33{width:93.635733pt;}
._48{width:96.536533pt;}
._2e{width:99.461867pt;}
._2d{width:103.334400pt;}
._26{width:106.669333pt;}
._15{width:111.703467pt;}
._23{width:114.154131pt;}
._11{width:118.882667pt;}
._4b{width:120.515100pt;}
._20{width:123.286400pt;}
._13{width:126.606400pt;}
._18{width:130.935467pt;}
._17{width:134.882667pt;}
._21{width:137.387200pt;}
._1f{width:138.744533pt;}
._4c{width:143.956524pt;}
._9{width:145.972800pt;}
._1c{width:149.411200pt;}
._19{width:151.958933pt;}
._1e{width:154.676800pt;}
._10{width:157.438400pt;}
._12{width:158.837867pt;}
._1d{width:164.608533pt;}
._16{width:173.438400pt;}
._22{width:187.405867pt;}
._1a{width:189.593600pt;}
._f{width:192.389333pt;}
._a{width:193.775467pt;}
._2a{width:195.233600pt;}
._c{width:201.695467pt;}
._3d{width:213.263467pt;}
._d{width:215.692800pt;}
._3b{width:231.578667pt;}
._36{width:232.601067pt;}
._3a{width:234.703467pt;}
._e{width:242.434133pt;}
._43{width:262.053333pt;}
._37{width:287.313600pt;}
._3f{width:309.242133pt;}
._1b{width:334.644800pt;}
._28{width:356.474667pt;}
._41{width:360.572267pt;}
._3c{width:546.501867pt;}
._2b{width:625.858667pt;}
._2f{width:647.192000pt;}
._46{width:711.164267pt;}
._35{width:722.006933pt;}
.fs9{font-size:19.641600pt;}
.fs14{font-size:24.874667pt;}
.fs17{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs10{font-size:35.005867pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:37.605867pt;}
.fs13{font-size:37.806400pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:43.673067pt;}
.fs11{font-size:45.274133pt;}
.fs16{font-size:46.011200pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:50.680000pt;}
.fs7{font-size:53.333333pt;}
.fs12{font-size:55.076267pt;}
.fsd{font-size:56.713600pt;}
.fs2{font-size:58.666667pt;}
.fsf{font-size:59.705067pt;}
.fs8{font-size:64.000000pt;}
.fsc{font-size:68.177067pt;}
.fs1{font-size:90.666667pt;}
.fsa{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.071067pt;}
.y104{bottom:1.859600pt;}
.y15c{bottom:2.218400pt;}
.ybc{bottom:10.319467pt;}
.yc6{bottom:19.431413pt;}
.ybf{bottom:20.696197pt;}
.yc5{bottom:34.812793pt;}
.ybe{bottom:36.077577pt;}
.yca{bottom:36.800581pt;}
.yc9{bottom:36.828938pt;}
.yc2{bottom:37.271593pt;}
.y3e{bottom:40.688174pt;}
.yc4{bottom:50.042133pt;}
.ybd{bottom:51.306917pt;}
.yc1{bottom:52.500933pt;}
.y1{bottom:60.555333pt;}
.y40{bottom:63.299600pt;}
.y41{bottom:66.698800pt;}
.yc7{bottom:71.833733pt;}
.yc0{bottom:73.996667pt;}
.yc3{bottom:74.142667pt;}
.y101{bottom:79.700267pt;}
.ya3{bottom:100.514400pt;}
.y73{bottom:100.514533pt;}
.y16d{bottom:103.181200pt;}
.y2b{bottom:104.189067pt;}
.y12{bottom:104.778267pt;}
.yb4{bottom:104.848267pt;}
.ye3{bottom:107.111867pt;}
.y11{bottom:117.578267pt;}
.ya2{bottom:119.181067pt;}
.y72{bottom:119.181200pt;}
.y153{bottom:119.461200pt;}
.y2a{bottom:122.855733pt;}
.yb3{bottom:123.920133pt;}
.ye2{bottom:124.711867pt;}
.y10{bottom:130.378267pt;}
.ya1{bottom:137.847733pt;}
.y71{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.ye1{bottom:142.311867pt;}
.yb2{bottom:142.991867pt;}
.yf{bottom:143.178267pt;}
.ya0{bottom:156.514400pt;}
.y70{bottom:156.514533pt;}
.ye0{bottom:159.911867pt;}
.y28{bottom:160.189067pt;}
.yb1{bottom:162.063733pt;}
.y9f{bottom:175.181067pt;}
.y6f{bottom:175.181200pt;}
.y39{bottom:177.237867pt;}
.ydf{bottom:177.511867pt;}
.y27{bottom:178.855733pt;}
.yb0{bottom:181.135600pt;}
.yc8{bottom:182.554533pt;}
.y163{bottom:187.947600pt;}
.y38{bottom:193.237867pt;}
.y9e{bottom:193.847733pt;}
.y6e{bottom:193.847867pt;}
.yde{bottom:195.111867pt;}
.y130{bottom:196.272267pt;}
.yaf{bottom:200.207333pt;}
.y26{bottom:206.620800pt;}
.y37{bottom:209.237867pt;}
.y9d{bottom:212.514400pt;}
.y6d{bottom:212.514533pt;}
.ydd{bottom:212.711867pt;}
.y12f{bottom:213.872267pt;}
.yae{bottom:219.279200pt;}
.y36{bottom:225.237867pt;}
.ydc{bottom:230.311867pt;}
.y9c{bottom:231.181067pt;}
.y6c{bottom:231.181200pt;}
.y12e{bottom:231.472267pt;}
.yac{bottom:238.617733pt;}
.y35{bottom:241.237867pt;}
.yab{bottom:245.284400pt;}
.ydb{bottom:247.911867pt;}
.yf1{bottom:248.761333pt;}
.y12d{bottom:249.072267pt;}
.y9b{bottom:249.847733pt;}
.y6b{bottom:249.847867pt;}
.yad{bottom:251.951067pt;}
.y34{bottom:257.237867pt;}
.y103{bottom:257.742000pt;}
.yd0{bottom:262.549963pt;}
.yd2{bottom:262.689333pt;}
.yce{bottom:263.069433pt;}
.ycc{bottom:264.184393pt;}
.y105{bottom:264.974133pt;}
.yda{bottom:265.511867pt;}
.y12c{bottom:266.672267pt;}
.y9a{bottom:268.514400pt;}
.y6a{bottom:268.514533pt;}
.y33{bottom:273.237867pt;}
.ycf{bottom:277.779303pt;}
.yd1{bottom:277.918673pt;}
.ycd{bottom:278.298773pt;}
.ycb{bottom:279.413733pt;}
.y100{bottom:279.449867pt;}
.yaa{bottom:279.535200pt;}
.yd9{bottom:281.280933pt;}
.y25{bottom:281.980400pt;}
.ye6{bottom:283.961333pt;}
.y12b{bottom:284.272267pt;}
.y99{bottom:287.181067pt;}
.y69{bottom:287.181200pt;}
.y32{bottom:289.237867pt;}
.yff{bottom:291.933333pt;}
.ya9{bottom:297.135200pt;}
.y24{bottom:299.580400pt;}
.yd8{bottom:299.947600pt;}
.y12a{bottom:301.872267pt;}
.y31{bottom:305.237867pt;}
.yfc{bottom:305.585733pt;}
.y98{bottom:305.847733pt;}
.y68{bottom:305.847867pt;}
.ya8{bottom:314.735200pt;}
.y147{bottom:316.781067pt;}
.y129{bottom:319.472267pt;}
.y30{bottom:321.237867pt;}
.yfa{bottom:322.292000pt;}
.y97{bottom:324.514400pt;}
.y67{bottom:324.514533pt;}
.ya7{bottom:332.335200pt;}
.y23{bottom:336.078133pt;}
.y128{bottom:337.072267pt;}
.y106{bottom:337.280800pt;}
.y96{bottom:343.181067pt;}
.y66{bottom:343.181200pt;}
.ya6{bottom:349.935200pt;}
.y2f{bottom:352.356000pt;}
.y22{bottom:353.678000pt;}
.y138{bottom:355.521333pt;}
.y95{bottom:361.847733pt;}
.y65{bottom:361.847867pt;}
.y16a{bottom:366.692800pt;}
.ya5{bottom:367.535200pt;}
.y2e{bottom:368.356000pt;}
.y21{bottom:371.278133pt;}
.yfd{bottom:373.147056pt;}
.y94{bottom:380.514400pt;}
.y64{bottom:380.514533pt;}
.y2d{bottom:384.356000pt;}
.y20{bottom:388.878133pt;}
.y15a{bottom:393.130116pt;}
.y152{bottom:398.994511pt;}
.y93{bottom:399.181067pt;}
.y63{bottom:399.181200pt;}
.y2c{bottom:400.356000pt;}
.y159{bottom:402.644400pt;}
.y1f{bottom:406.478133pt;}
.y151{bottom:409.392533pt;}
.y155{bottom:416.800400pt;}
.y92{bottom:417.847733pt;}
.y62{bottom:417.847867pt;}
.y1e{bottom:424.078133pt;}
.yba{bottom:428.671067pt;}
.y91{bottom:436.514400pt;}
.y61{bottom:436.514533pt;}
.yfe{bottom:440.594610pt;}
.y1d{bottom:441.678000pt;}
.yb9{bottom:446.271067pt;}
.y15e{bottom:449.280933pt;}
.y90{bottom:455.181067pt;}
.y60{bottom:455.181200pt;}
.y14e{bottom:455.513200pt;}
.y15b{bottom:457.174800pt;}
.y1c{bottom:459.278133pt;}
.y156{bottom:462.594944pt;}
.yb8{bottom:463.871067pt;}
.y15d{bottom:467.947600pt;}
.y8f{bottom:473.847733pt;}
.y5f{bottom:473.847867pt;}
.y1b{bottom:476.878133pt;}
.y125{bottom:479.974667pt;}
.yb7{bottom:481.471067pt;}
.y8e{bottom:492.514400pt;}
.y5e{bottom:492.514533pt;}
.y1a{bottom:494.478133pt;}
.y124{bottom:498.290667pt;}
.yb6{bottom:499.071067pt;}
.y14f{bottom:500.640240pt;}
.y157{bottom:508.389488pt;}
.y102{bottom:508.628400pt;}
.y8d{bottom:511.181067pt;}
.y5d{bottom:511.181200pt;}
.y19{bottom:512.078133pt;}
.y139{bottom:514.542933pt;}
.y123{bottom:516.606533pt;}
.yb5{bottom:516.671067pt;}
.yf9{bottom:527.880667pt;}
.y18{bottom:529.678000pt;}
.y8c{bottom:529.847733pt;}
.y5c{bottom:529.847867pt;}
.y169{bottom:534.692800pt;}
.y122{bottom:534.922400pt;}
.ybb{bottom:535.120000pt;}
.yf8{bottom:540.360400pt;}
.y150{bottom:545.654462pt;}
.y17{bottom:547.278133pt;}
.y8b{bottom:548.514400pt;}
.y5b{bottom:548.514533pt;}
.yf4{bottom:550.515467pt;}
.y121{bottom:553.238400pt;}
.y158{bottom:554.184032pt;}
.y16{bottom:564.878133pt;}
.y8a{bottom:567.181067pt;}
.y5a{bottom:567.181200pt;}
.y120{bottom:571.554267pt;}
.y15{bottom:582.478133pt;}
.y154{bottom:584.040533pt;}
.ye4{bottom:584.947867pt;}
.y89{bottom:585.847733pt;}
.y59{bottom:585.847867pt;}
.y11f{bottom:589.870133pt;}
.ye5{bottom:596.583067pt;}
.y16c{bottom:597.789867pt;}
.y127{bottom:598.614267pt;}
.y88{bottom:604.514400pt;}
.y58{bottom:604.514533pt;}
.y11e{bottom:608.186133pt;}
.y14{bottom:610.120267pt;}
.y146{bottom:610.581978pt;}
.yf2{bottom:615.989867pt;}
.yf5{bottom:616.090206pt;}
.y161{bottom:617.280800pt;}
.y126{bottom:617.280933pt;}
.y145{bottom:620.980000pt;}
.y87{bottom:623.181067pt;}
.y57{bottom:623.181200pt;}
.y16b{bottom:626.498800pt;}
.y11d{bottom:626.502000pt;}
.y168{bottom:628.026133pt;}
.y13f{bottom:633.036133pt;}
.y160{bottom:635.947467pt;}
.y86{bottom:641.847733pt;}
.y56{bottom:641.847867pt;}
.y11c{bottom:644.817867pt;}
.y13a{bottom:651.583600pt;}
.y149{bottom:655.377333pt;}
.y85{bottom:660.514400pt;}
.y55{bottom:660.514533pt;}
.y140{bottom:663.008009pt;}
.y11b{bottom:663.133867pt;}
.y14d{bottom:674.847467pt;}
.y84{bottom:679.181067pt;}
.y54{bottom:679.181200pt;}
.ye{bottom:680.592800pt;}
.y11a{bottom:681.449733pt;}
.yf6{bottom:681.673698pt;}
.y14a{bottom:689.006380pt;}
.yd7{bottom:691.123200pt;}
.y141{bottom:693.092702pt;}
.yd{bottom:696.592800pt;}
.y83{bottom:697.847733pt;}
.y53{bottom:697.847867pt;}
.y119{bottom:699.765600pt;}
.y167{bottom:702.692667pt;}
.y118{bottom:704.748267pt;}
.yd6{bottom:709.789867pt;}
.yc{bottom:712.592800pt;}
.y82{bottom:716.514400pt;}
.y52{bottom:716.514533pt;}
.y117{bottom:718.081600pt;}
.ye7{bottom:721.230133pt;}
.y14b{bottom:722.635426pt;}
.y142{bottom:723.177396pt;}
.yb{bottom:728.592800pt;}
.y81{bottom:735.181067pt;}
.y51{bottom:735.181200pt;}
.y116{bottom:736.397467pt;}
.yd5{bottom:738.498667pt;}
.ya{bottom:744.592800pt;}
.yf7{bottom:747.248437pt;}
.y143{bottom:753.262089pt;}
.y80{bottom:753.847733pt;}
.y50{bottom:753.847867pt;}
.y115{bottom:754.713333pt;}
.y14c{bottom:756.142253pt;}
.yf3{bottom:756.714133pt;}
.yfb{bottom:757.048400pt;}
.y166{bottom:758.692667pt;}
.y9{bottom:760.592800pt;}
.y7f{bottom:772.514400pt;}
.y4f{bottom:772.514533pt;}
.y114{bottom:773.029333pt;}
.yf0{bottom:776.302533pt;}
.y8{bottom:776.592800pt;}
.y144{bottom:783.346782pt;}
.y162{bottom:785.280933pt;}
.yef{bottom:788.787333pt;}
.y7e{bottom:791.181067pt;}
.y4e{bottom:791.181200pt;}
.y113{bottom:791.345200pt;}
.y7{bottom:792.592800pt;}
.y148{bottom:795.520533pt;}
.ye9{bottom:804.192267pt;}
.ye8{bottom:809.567600pt;}
.y112{bottom:809.661067pt;}
.y7d{bottom:809.847733pt;}
.y4d{bottom:809.847867pt;}
.y165{bottom:814.692667pt;}
.y137{bottom:822.060645pt;}
.y6{bottom:823.710800pt;}
.y111{bottom:827.977067pt;}
.y7c{bottom:828.514400pt;}
.y4c{bottom:828.514533pt;}
.y136{bottom:832.458667pt;}
.yea{bottom:838.961844pt;}
.y5{bottom:841.310933pt;}
.y110{bottom:846.292933pt;}
.y7b{bottom:847.181067pt;}
.y4b{bottom:847.181200pt;}
.y10f{bottom:864.608933pt;}
.y131{bottom:865.308533pt;}
.y7a{bottom:865.847733pt;}
.y4a{bottom:865.847867pt;}
.y164{bottom:871.055200pt;}
.yeb{bottom:873.740172pt;}
.y4{bottom:874.028933pt;}
.y13b{bottom:878.029333pt;}
.ya4{bottom:878.614267pt;}
.y13e{bottom:882.229200pt;}
.y10e{bottom:882.924800pt;}
.y79{bottom:884.514400pt;}
.y49{bottom:884.514533pt;}
.yd4{bottom:897.280933pt;}
.y132{bottom:898.044440pt;}
.y10d{bottom:901.240667pt;}
.y78{bottom:903.181067pt;}
.y48{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yec{bottom:908.623518pt;}
.y10b{bottom:919.556667pt;}
.y77{bottom:921.847733pt;}
.y47{bottom:921.847867pt;}
.y13c{bottom:924.256345pt;}
.y10a{bottom:926.223333pt;}
.y133{bottom:930.780347pt;}
.y2{bottom:932.695600pt;}
.y10c{bottom:932.890000pt;}
.y46{bottom:940.514533pt;}
.yed{bottom:943.401847pt;}
.y76{bottom:952.026000pt;}
.y45{bottom:959.181200pt;}
.y109{bottom:959.718133pt;}
.y134{bottom:963.412838pt;}
.y15f{bottom:968.664000pt;}
.y13d{bottom:970.492758pt;}
.y75{bottom:970.692667pt;}
.y108{bottom:977.318133pt;}
.y44{bottom:977.847867pt;}
.yee{bottom:978.171424pt;}
.y13{bottom:986.502667pt;}
.yd3{bottom:987.330667pt;}
.y107{bottom:994.918133pt;}
.y135{bottom:996.148745pt;}
.y43{bottom:996.514533pt;}
.y74{bottom:999.401467pt;}
.y3c{bottom:1009.540000pt;}
.y3f{bottom:1024.013867pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y42{bottom:1047.726000pt;}
.h10{height:14.923012pt;}
.h1f{height:25.239230pt;}
.h25{height:27.113830pt;}
.h24{height:27.258414pt;}
.h1c{height:29.108270pt;}
.h16{height:30.506667pt;}
.h7{height:30.618750pt;}
.h20{height:32.642650pt;}
.h27{height:33.174075pt;}
.h19{height:33.778418pt;}
.h2{height:33.812500pt;}
.h12{height:34.020833pt;}
.h6{height:34.250000pt;}
.h17{height:36.437333pt;}
.h1b{height:37.799836pt;}
.he{height:38.039062pt;}
.h28{height:38.133333pt;}
.h8{height:38.226562pt;}
.hd{height:38.273438pt;}
.h22{height:39.709988pt;}
.h1d{height:39.793660pt;}
.h9{height:40.546875pt;}
.ha{height:40.992000pt;}
.h13{height:44.601562pt;}
.hf{height:44.948000pt;}
.h1a{height:45.440281pt;}
.h4{height:45.538711pt;}
.h5{height:45.539244pt;}
.hb{height:48.656250pt;}
.hc{height:50.101333pt;}
.h23{height:56.186948pt;}
.h14{height:57.173333pt;}
.h11{height:71.844560pt;}
.h3{height:72.205729pt;}
.h15{height:83.840000pt;}
.h18{height:480.061333pt;}
.h26{height:659.658667pt;}
.h1e{height:731.220000pt;}
.h21{height:766.420000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w5{width:356.282667pt;}
.w4{width:429.532000pt;}
.w6{width:561.485333pt;}
.w3{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:6.694400pt;}
.x2b{left:8.568933pt;}
.x1f{left:9.512246pt;}
.x27{left:14.505467pt;}
.x1e{left:18.076000pt;}
.x20{left:26.398721pt;}
.x48{left:28.041733pt;}
.x21{left:33.415867pt;}
.x18{left:50.394280pt;}
.x19{left:53.226267pt;}
.x2{left:65.763733pt;}
.x54{left:70.071333pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xa{left:98.747867pt;}
.x16{left:99.779600pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x33{left:112.889733pt;}
.x36{left:115.328000pt;}
.x46{left:131.226667pt;}
.x43{left:140.913573pt;}
.x42{left:146.216000pt;}
.xf{left:148.927067pt;}
.x4f{left:151.412267pt;}
.x50{left:159.268400pt;}
.x44{left:186.695600pt;}
.x41{left:192.481733pt;}
.x22{left:196.326727pt;}
.x26{left:211.708133pt;}
.x35{left:223.157867pt;}
.x17{left:225.189600pt;}
.x40{left:226.305600pt;}
.x3f{left:232.886933pt;}
.x2a{left:233.826667pt;}
.x10{left:237.622800pt;}
.x2d{left:245.079200pt;}
.x28{left:247.066779pt;}
.x2e{left:249.980021pt;}
.x1b{left:251.487200pt;}
.x1a{left:252.499200pt;}
.x2c{left:260.016933pt;}
.x45{left:263.242342pt;}
.x4{left:266.834667pt;}
.x31{left:268.070933pt;}
.x32{left:276.119333pt;}
.xc{left:281.952800pt;}
.x2f{left:294.323600pt;}
.xe{left:297.070800pt;}
.x4e{left:311.412933pt;}
.x25{left:335.390133pt;}
.x23{left:339.409037pt;}
.x37{left:343.668133pt;}
.x3{left:352.045067pt;}
.x29{left:382.888533pt;}
.x30{left:386.972800pt;}
.x39{left:392.977733pt;}
.x38{left:397.116400pt;}
.x4d{left:421.403333pt;}
.x4a{left:424.386322pt;}
.x3b{left:425.310000pt;}
.x3a{left:427.352533pt;}
.x49{left:429.585333pt;}
.x1c{left:432.301733pt;}
.x1d{left:437.755600pt;}
.x51{left:442.639600pt;}
.x3c{left:453.642267pt;}
.x34{left:456.984533pt;}
.x3d{left:458.858133pt;}
.x52{left:465.977600pt;}
.x4b{left:470.180133pt;}
.x24{left:507.197847pt;}
.x11{left:535.334000pt;}
.x53{left:544.066182pt;}
.x4c{left:546.614057pt;}
.x3e{left:573.328533pt;}
.x12{left:578.517600pt;}
.x9{left:582.474800pt;}
.x13{left:589.098933pt;}
.x8{left:599.782133pt;}
.x14{left:635.104000pt;}
.x15{left:651.471867pt;}
.x1{left:712.311867pt;}
}




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