
    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_248199ce4c3641b40d7a581e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_1b076dd326fab23714c8ede7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_ed245f82e7195ad99967ba0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_1b076dd326fab23714c8ede7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_7db59265c882139e80cda339.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_c3b34e063d287b5893fcffed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_48ea5ab15ed5721a527d4e6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924805;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_dfcb6cadf8d8b16ef9f64b26.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_91f8ff207d5f00b452d7f9a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.688000;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_8e73058ee613c412d2b9fc33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.108000;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_142140bfed782a340428c67a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.525000;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_d8678b08d87f47db91bc7e26.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.514000;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_470a8c687dfa7985a3a96cba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.696000;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_c4e602ad05c9d37db114e307.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.106000;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_eabc5819904e22c40a4f77f9.woff2')format("woff");}.fff{font-family:fff;line-height:0.482000;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_177fb2e6fc88282598f583a9.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.399000;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_bd07cdd880910febdc874a39.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-22.854000px;}
.v2{vertical-align:-21.690000px;}
.v9{vertical-align:-17.112000px;}
.v6{vertical-align:-9.822000px;}
.v5{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:26.034000px;}
.vb{vertical-align:27.162000px;}
.v7{vertical-align:30.468000px;}
.v8{vertical-align:44.280000px;}
.va{vertical-align:92.292000px;}
.vc{vertical-align:137.190000px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.001002px;}
.ls1f{letter-spacing:0.002700px;}
.ls23{letter-spacing:0.002712px;}
.ls1c{letter-spacing:0.003056px;}
.ls10{letter-spacing:0.004350px;}
.ls21{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.987700px;}
.ls17{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.993700px;}
.ls24{letter-spacing:7.174869px;}
.ls15{letter-spacing:8.960959px;}
.ls14{letter-spacing:8.966959px;}
.ls1a{letter-spacing:9.217002px;}
.ls19{letter-spacing:10.813559px;}
.lse{letter-spacing:11.998350px;}
.lsd{letter-spacing:12.004350px;}
.ls4{letter-spacing:13.453976px;}
.ls1b{letter-spacing:13.743600px;}
.ls22{letter-spacing:14.543412px;}
.ls25{letter-spacing:14.548869px;}
.ls12{letter-spacing:16.361969px;}
.ls6{letter-spacing:16.441200px;}
.ls3{letter-spacing:17.934600px;}
.ls13{letter-spacing:17.935606px;}
.ls20{letter-spacing:18.179412px;}
.lsb{letter-spacing:20.035200px;}
.ls9{letter-spacing:20.753700px;}
.ls1d{letter-spacing:25.349412px;}
.ls1e{letter-spacing:25.355412px;}
.ls8{letter-spacing:27.647700px;}
.lsf{letter-spacing:27.742350px;}
.ls26{letter-spacing:28.190362px;}
.ls27{letter-spacing:28.244160px;}
.lsa{letter-spacing:28.343700px;}
.ls16{letter-spacing:32.728345px;}
.ls11{letter-spacing:32.729180px;}
.lsc{letter-spacing:35.993700px;}
.ls7{letter-spacing:44.933700px;}
.ls0{letter-spacing:68.741700px;}
.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;}
}
.ws3{word-spacing:-0.071731px;}
.ws51{word-spacing:-0.065455px;}
.ws13{word-spacing:-0.053798px;}
.wsce{word-spacing:-0.047821px;}
.ws15{word-spacing:0.000000px;}
.ws16e{word-spacing:8.925734px;}
.ws170{word-spacing:8.928134px;}
.ws16f{word-spacing:8.929334px;}
.ws107{word-spacing:8.930534px;}
.ws172{word-spacing:8.931734px;}
.ws16d{word-spacing:8.932934px;}
.ws171{word-spacing:8.935334px;}
.ws18b{word-spacing:9.159208px;}
.ws114{word-spacing:9.199526px;}
.ws184{word-spacing:9.253325px;}
.ws187{word-spacing:9.414720px;}
.ws11b{word-spacing:9.468518px;}
.ws12a{word-spacing:9.898906px;}
.ws5{word-spacing:9.922750px;}
.ws118{word-spacing:10.167898px;}
.ws6{word-spacing:10.221628px;}
.ws119{word-spacing:10.275494px;}
.ws14a{word-spacing:10.276372px;}
.ws8c{word-spacing:10.329293px;}
.ws81{word-spacing:10.544486px;}
.ws135{word-spacing:10.603645px;}
.ws84{word-spacing:10.652083px;}
.ws192{word-spacing:10.705882px;}
.ws18a{word-spacing:10.759964px;}
.ws189{word-spacing:10.760206px;}
.wsec{word-spacing:10.865464px;}
.ws86{word-spacing:10.867277px;}
.ws5a{word-spacing:10.996373px;}
.ws10a{word-spacing:11.082470px;}
.wsb0{word-spacing:11.127282px;}
.ws15b{word-spacing:11.192737px;}
.ws182{word-spacing:11.210582px;}
.ws183{word-spacing:11.221396px;}
.ws181{word-spacing:11.243866px;}
.wse1{word-spacing:11.323646px;}
.ws1b{word-spacing:11.454555px;}
.ws63{word-spacing:11.459059px;}
.ws188{word-spacing:11.512858px;}
.ws26{word-spacing:11.520010px;}
.wsb1{word-spacing:11.585464px;}
.ws180{word-spacing:11.620454px;}
.ws161{word-spacing:11.650919px;}
.ws101{word-spacing:11.716373px;}
.ws10b{word-spacing:11.728051px;}
.wseb{word-spacing:11.847283px;}
.ws16c{word-spacing:11.907329px;}
.ws17b{word-spacing:11.907379px;}
.wsb8{word-spacing:11.912737px;}
.ws198{word-spacing:12.043646px;}
.ws11c{word-spacing:12.104640px;}
.wsfe{word-spacing:12.109101px;}
.wsa7{word-spacing:12.158438px;}
.wsaa{word-spacing:12.174556px;}
.ws9a{word-spacing:12.240010px;}
.ws108{word-spacing:12.266035px;}
.ws69{word-spacing:12.305465px;}
.ws19c{word-spacing:12.319834px;}
.ws88{word-spacing:12.373632px;}
.wsd8{word-spacing:12.427430px;}
.ws131{word-spacing:12.436374px;}
.ws7a{word-spacing:12.588826px;}
.ws160{word-spacing:12.632738px;}
.ws89{word-spacing:12.696422px;}
.ws9c{word-spacing:12.698192px;}
.ws191{word-spacing:12.750221px;}
.wsdc{word-spacing:12.763647px;}
.ws1a{word-spacing:12.829102px;}
.wsf6{word-spacing:12.835430px;}
.ws163{word-spacing:12.857818px;}
.ws168{word-spacing:12.894556px;}
.ws8f{word-spacing:12.960011px;}
.wsd4{word-spacing:13.025465px;}
.ws169{word-spacing:13.073011px;}
.ws90{word-spacing:13.090920px;}
.wsf9{word-spacing:13.206818px;}
.wsf8{word-spacing:13.221829px;}
.ws117{word-spacing:13.234406px;}
.wsc6{word-spacing:13.287284px;}
.ws85{word-spacing:13.288205px;}
.ws3b{word-spacing:13.342003px;}
.ws45{word-spacing:13.352738px;}
.ws14{word-spacing:13.395802px;}
.ws33{word-spacing:13.418193px;}
.ws11e{word-spacing:13.419084px;}
.ws40{word-spacing:13.449600px;}
.ws186{word-spacing:13.490817px;}
.ws78{word-spacing:13.503398px;}
.ws143{word-spacing:13.549102px;}
.ws77{word-spacing:13.557197px;}
.ws1c{word-spacing:13.614557px;}
.ws129{word-spacing:13.664794px;}
.ws185{word-spacing:13.718592px;}
.ws11f{word-spacing:13.745466px;}
.ws87{word-spacing:13.772390px;}
.ws96{word-spacing:13.810921px;}
.wsd7{word-spacing:13.826189px;}
.ws178{word-spacing:13.896229px;}
.ws177{word-spacing:13.900837px;}
.ws179{word-spacing:13.901162px;}
.ws175{word-spacing:13.901202px;}
.ws176{word-spacing:13.901502px;}
.wsba{word-spacing:13.941830px;}
.ws7c{word-spacing:13.987584px;}
.wsb6{word-spacing:14.007284px;}
.ws115{word-spacing:14.041382px;}
.ws4d{word-spacing:14.072739px;}
.ws109{word-spacing:14.095181px;}
.ws12e{word-spacing:14.138194px;}
.ws7b{word-spacing:14.202778px;}
.ws9f{word-spacing:14.203648px;}
.ws136{word-spacing:14.213850px;}
.ws80{word-spacing:14.256576px;}
.wsa9{word-spacing:14.269103px;}
.ws8a{word-spacing:14.297209px;}
.ws8b{word-spacing:14.310374px;}
.ws132{word-spacing:14.334557px;}
.ws18f{word-spacing:14.356606px;}
.ws7f{word-spacing:14.364173px;}
.ws31{word-spacing:14.386824px;}
.ws32{word-spacing:14.400012px;}
.ws8{word-spacing:14.405920px;}
.wsbe{word-spacing:14.465467px;}
.ws64{word-spacing:14.471770px;}
.ws195{word-spacing:14.480112px;}
.ws74{word-spacing:14.530921px;}
.ws60{word-spacing:14.579366px;}
.ws18{word-spacing:14.596376px;}
.ws6a{word-spacing:14.661830px;}
.wsa2{word-spacing:14.727285px;}
.wsae{word-spacing:14.792740px;}
.ws193{word-spacing:14.794560px;}
.ws82{word-spacing:14.848358px;}
.ws123{word-spacing:14.858194px;}
.ws0{word-spacing:14.884124px;}
.ws9e{word-spacing:14.923649px;}
.ws41{word-spacing:14.955955px;}
.wsea{word-spacing:14.973922px;}
.ws5d{word-spacing:14.989103px;}
.wse3{word-spacing:15.009754px;}
.wsf3{word-spacing:15.054558px;}
.ws11d{word-spacing:15.063552px;}
.ws164{word-spacing:15.104594px;}
.ws13e{word-spacing:15.120013px;}
.ws165{word-spacing:15.137906px;}
.ws190{word-spacing:15.162438px;}
.ws10e{word-spacing:15.171149px;}
.ws55{word-spacing:15.185467px;}
.ws36{word-spacing:15.224947px;}
.ws147{word-spacing:15.250922px;}
.wse5{word-spacing:15.278746px;}
.wsfc{word-spacing:15.316376px;}
.wsa6{word-spacing:15.332544px;}
.wsc{word-spacing:15.362329px;}
.wsc4{word-spacing:15.381831px;}
.ws10d{word-spacing:15.386342px;}
.wsa8{word-spacing:15.440141px;}
.ws125{word-spacing:15.447286px;}
.ws11a{word-spacing:15.493939px;}
.ws8e{word-spacing:15.512740px;}
.wsd6{word-spacing:15.547738px;}
.wsfa{word-spacing:15.563370px;}
.wsbc{word-spacing:15.578195px;}
.ws5c{word-spacing:15.643649px;}
.ws42{word-spacing:15.709104px;}
.ws61{word-spacing:15.709133px;}
.wsb4{word-spacing:15.774559px;}
.wse4{word-spacing:15.816730px;}
.ws19{word-spacing:15.840013px;}
.ws3f{word-spacing:15.870528px;}
.ws67{word-spacing:15.905468px;}
.ws53{word-spacing:15.970922px;}
.ws54{word-spacing:15.983706px;}
.ws65{word-spacing:16.031923px;}
.ws98{word-spacing:16.036377px;}
.ws7d{word-spacing:16.085722px;}
.ws34{word-spacing:16.101832px;}
.ws133{word-spacing:16.135756px;}
.ws112{word-spacing:16.139520px;}
.wsbf{word-spacing:16.167286px;}
.wsd3{word-spacing:16.232741px;}
.wsc7{word-spacing:16.283579px;}
.ws14b{word-spacing:16.293870px;}
.ws13b{word-spacing:16.294758px;}
.ws141{word-spacing:16.295724px;}
.ws14c{word-spacing:16.296794px;}
.ws140{word-spacing:16.298058px;}
.ws1d{word-spacing:16.298195px;}
.ws151{word-spacing:16.300224px;}
.ws144{word-spacing:16.300251px;}
.ws111{word-spacing:16.300915px;}
.wsc8{word-spacing:16.302948px;}
.wsd2{word-spacing:16.316586px;}
.ws58{word-spacing:16.363650px;}
.wsc1{word-spacing:16.401562px;}
.wsa5{word-spacing:16.406534px;}
.ws8d{word-spacing:16.408512px;}
.ws159{word-spacing:16.423302px;}
.ws72{word-spacing:16.429105px;}
.ws5f{word-spacing:16.462310px;}
.ws24{word-spacing:16.560014px;}
.ws10f{word-spacing:16.569907px;}
.ws17{word-spacing:16.625468px;}
.wse8{word-spacing:16.690923px;}
.ws12f{word-spacing:16.756378px;}
.ws155{word-spacing:16.776858px;}
.ws9{word-spacing:16.796944px;}
.ws30{word-spacing:16.821832px;}
.ws1f{word-spacing:16.887287px;}
.ws116{word-spacing:16.892698px;}
.ws25{word-spacing:16.952741px;}
.ws83{word-spacing:17.000294px;}
.wsb3{word-spacing:17.018196px;}
.wsb5{word-spacing:17.083651px;}
.ws22{word-spacing:17.149105px;}
.ws12b{word-spacing:17.161690px;}
.ws23{word-spacing:17.214560px;}
.ws19b{word-spacing:17.215488px;}
.ws142{word-spacing:17.280014px;}
.wsad{word-spacing:17.345469px;}
.ws7e{word-spacing:17.376883px;}
.ws44{word-spacing:17.410924px;}
.ws73{word-spacing:17.476378px;}
.ws128{word-spacing:17.484480px;}
.ws79{word-spacing:17.538278px;}
.ws68{word-spacing:17.541833px;}
.ws162{word-spacing:17.592077px;}
.ws1e{word-spacing:17.607287px;}
.ws18e{word-spacing:17.645875px;}
.wsfd{word-spacing:17.672742px;}
.ws43{word-spacing:17.738197px;}
.ws59{word-spacing:17.803651px;}
.ws2{word-spacing:17.861069px;}
.wsfb{word-spacing:17.869106px;}
.wsf5{word-spacing:17.876511px;}
.wse6{word-spacing:17.934560px;}
.ws56{word-spacing:18.000015px;}
.ws13f{word-spacing:18.065470px;}
.ws66{word-spacing:18.130924px;}
.wsa4{word-spacing:18.183859px;}
.ws106{word-spacing:18.196379px;}
.wsf4{word-spacing:18.261833px;}
.ws9b{word-spacing:18.327288px;}
.ws6c{word-spacing:18.392743px;}
.ws12c{word-spacing:18.399053px;}
.ws104{word-spacing:18.458197px;}
.ws46{word-spacing:18.523652px;}
.ws27{word-spacing:18.589106px;}
.ws110{word-spacing:18.614246px;}
.wsa0{word-spacing:18.654561px;}
.wsb{word-spacing:18.709763px;}
.ws4f{word-spacing:18.720016px;}
.ws4e{word-spacing:18.736824px;}
.ws62{word-spacing:18.775642px;}
.ws75{word-spacing:18.785470px;}
.ws6b{word-spacing:18.850925px;}
.ws9d{word-spacing:18.916379px;}
.ws10{word-spacing:18.990835px;}
.ws194{word-spacing:19.026870px;}
.ws11{word-spacing:19.044634px;}
.wsc3{word-spacing:19.047289px;}
.ws154{word-spacing:19.112743px;}
.ws4b{word-spacing:19.178198px;}
.ws167{word-spacing:19.243652px;}
.ws10c{word-spacing:19.259827px;}
.wsdf{word-spacing:19.309107px;}
.wsc9{word-spacing:19.365194px;}
.ws3c{word-spacing:19.367424px;}
.wsc0{word-spacing:19.374562px;}
.ws12d{word-spacing:19.439155px;}
.ws102{word-spacing:19.440016px;}
.ws124{word-spacing:19.505471px;}
.ws5e{word-spacing:19.528819px;}
.ws130{word-spacing:19.570925px;}
.ws113{word-spacing:19.582618px;}
.wsa{word-spacing:19.606397px;}
.ws91{word-spacing:19.636380px;}
.ws50{word-spacing:19.701835px;}
.ws13d{word-spacing:19.707664px;}
.ws4{word-spacing:19.725948px;}
.wse7{word-spacing:19.767289px;}
.ws49{word-spacing:19.832744px;}
.ws158{word-spacing:19.840824px;}
.ws7{word-spacing:19.845499px;}
.wsbb{word-spacing:19.898198px;}
.ws150{word-spacing:19.955652px;}
.ws21{word-spacing:19.963653px;}
.wse{word-spacing:20.024826px;}
.ws2a{word-spacing:20.029108px;}
.wsa3{word-spacing:20.094562px;}
.ws5b{word-spacing:20.160017px;}
.ws71{word-spacing:20.225471px;}
.ws152{word-spacing:20.288973px;}
.ws35{word-spacing:20.290926px;}
.ws48{word-spacing:20.356381px;}
.ws12{word-spacing:20.389594px;}
.ws139{word-spacing:20.419162px;}
.ws13a{word-spacing:20.421835px;}
.wscc{word-spacing:20.487290px;}
.ws28{word-spacing:20.552744px;}
.ws3e{word-spacing:20.604787px;}
.ws16a{word-spacing:20.618199px;}
.ws199{word-spacing:20.621579px;}
.ws146{word-spacing:20.683654px;}
.ws2e{word-spacing:20.814563px;}
.ws4a{word-spacing:20.880017px;}
.ws3d{word-spacing:20.927578px;}
.ws94{word-spacing:20.945472px;}
.wsd5{word-spacing:20.951579px;}
.ws14e{word-spacing:21.010927px;}
.ws95{word-spacing:21.076381px;}
.ws76{word-spacing:21.141836px;}
.wsa1{word-spacing:21.149579px;}
.ws20{word-spacing:21.207290px;}
.wsca{word-spacing:21.272745px;}
.ws2c{word-spacing:21.338200px;}
.wsd1{word-spacing:21.360471px;}
.ws2d{word-spacing:21.403654px;}
.ws100{word-spacing:21.467579px;}
.wsb7{word-spacing:21.469109px;}
.wse9{word-spacing:21.534563px;}
.wsab{word-spacing:21.659661px;}
.wsac{word-spacing:21.665473px;}
.wsbd{word-spacing:21.730927px;}
.ws126{word-spacing:21.737579px;}
.wse2{word-spacing:21.785579px;}
.ws15e{word-spacing:21.989058px;}
.wsee{word-spacing:21.992746px;}
.ws15d{word-spacing:22.018824px;}
.ws127{word-spacing:22.058200px;}
.wsaf{word-spacing:22.123655px;}
.wsdb{word-spacing:22.189109px;}
.wsef{word-spacing:22.254564px;}
.wsff{word-spacing:22.320019px;}
.ws2f{word-spacing:22.385473px;}
.ws57{word-spacing:22.450928px;}
.ws105{word-spacing:22.505579px;}
.ws15c{word-spacing:22.581837px;}
.ws70{word-spacing:22.647292px;}
.ws2b{word-spacing:22.712746px;}
.ws14f{word-spacing:22.778201px;}
.ws156{word-spacing:22.843655px;}
.ws92{word-spacing:22.909110px;}
.ws122{word-spacing:22.974565px;}
.ws137{word-spacing:23.040019px;}
.ws15a{word-spacing:23.081579px;}
.ws138{word-spacing:23.170928px;}
.ws47{word-spacing:23.236383px;}
.wsf{word-spacing:23.240909px;}
.ws99{word-spacing:23.301838px;}
.ws29{word-spacing:23.367292px;}
.ws93{word-spacing:23.432747px;}
.ws3a{word-spacing:23.509901px;}
.ws39{word-spacing:23.517544px;}
.ws6f{word-spacing:23.563656px;}
.ws38{word-spacing:23.563699px;}
.ws166{word-spacing:23.629111px;}
.wsb9{word-spacing:23.694565px;}
.ws149{word-spacing:23.760020px;}
.wsc5{word-spacing:23.825474px;}
.ws52{word-spacing:23.890929px;}
.ws6e{word-spacing:23.956384px;}
.ws4c{word-spacing:24.021838px;}
.ws97{word-spacing:24.087293px;}
.ws13c{word-spacing:24.152747px;}
.ws17f{word-spacing:24.218202px;}
.ws134{word-spacing:24.283657px;}
.wsdd{word-spacing:24.676384px;}
.ws148{word-spacing:24.807293px;}
.ws145{word-spacing:24.872748px;}
.ws37{word-spacing:24.908659px;}
.ws6d{word-spacing:24.938203px;}
.ws18d{word-spacing:25.070054px;}
.ws15f{word-spacing:25.217579px;}
.wscb{word-spacing:25.330930px;}
.wscd{word-spacing:25.396385px;}
.ws1{word-spacing:25.719808px;}
.ws14d{word-spacing:26.443658px;}
.ws120{word-spacing:27.101579px;}
.ws17c{word-spacing:27.461579px;}
.wsda{word-spacing:27.490982px;}
.wsd{word-spacing:27.699275px;}
.ws1a0{word-spacing:28.136563px;}
.ws19a{word-spacing:28.190362px;}
.wscf{word-spacing:28.409579px;}
.wsb2{word-spacing:29.062942px;}
.wsf7{word-spacing:29.579579px;}
.wsc2{word-spacing:29.965709px;}
.wsed{word-spacing:31.049579px;}
.ws197{word-spacing:31.127579px;}
.ws19f{word-spacing:31.472064px;}
.ws19d{word-spacing:32.279040px;}
.ws17e{word-spacing:34.858694px;}
.wsd0{word-spacing:37.205579px;}
.ws18c{word-spacing:39.057638px;}
.wse0{word-spacing:41.189579px;}
.ws103{word-spacing:41.237579px;}
.ws157{word-spacing:41.729579px;}
.ws17d{word-spacing:41.873579px;}
.ws121{word-spacing:41.993579px;}
.ws153{word-spacing:43.469579px;}
.wsde{word-spacing:47.189579px;}
.wsd9{word-spacing:60.092813px;}
.ws16{word-spacing:71.659469px;}
.wsf0{word-spacing:71.672787px;}
.ws16b{word-spacing:71.683079px;}
.wsf1{word-spacing:124.232831px;}
.wsf2{word-spacing:124.298285px;}
.ws19e{word-spacing:137.058248px;}
.ws196{word-spacing:167.633345px;}
.ws173{word-spacing:986.998982px;}
.ws17a{word-spacing:988.774982px;}
.ws174{word-spacing:1106.582775px;}
._1b{margin-left:-7.854552px;}
._e{margin-left:-6.067599px;}
._c{margin-left:-4.581822px;}
._0{margin-left:-3.287658px;}
._1{margin-left:-1.859263px;}
._39{width:1.655927px;}
._11{width:2.958912px;}
._3b{width:3.962216px;}
._3a{width:5.085896px;}
._3c{width:7.330915px;}
._38{width:8.757240px;}
._2d{width:10.629323px;}
._18{width:12.155436px;}
._9{width:13.287284px;}
._17{width:14.397148px;}
._2{width:15.900310px;}
._5{width:17.215373px;}
._7{width:18.709763px;}
._6{width:19.791943px;}
._4{width:21.100787px;}
._19{width:22.123655px;}
._a{width:23.236383px;}
._10{width:24.676384px;}
._8{width:25.769434px;}
._13{width:26.781184px;}
._1d{width:28.366633px;}
._d{width:30.043661px;}
._20{width:31.053191px;}
._3{width:32.159273px;}
._b{width:33.774574px;}
._22{width:35.329561px;}
._1a{width:36.589121px;}
._23{width:37.924748px;}
._f{width:39.357893px;}
._16{width:40.385488px;}
._15{width:41.459296px;}
._12{width:45.927719px;}
._1c{width:48.272596px;}
._5c{width:51.264211px;}
._21{width:64.983925px;}
._1e{width:66.179377px;}
._14{width:71.731200px;}
._53{width:75.102566px;}
._46{width:76.226036px;}
._25{width:86.138254px;}
._52{width:89.043379px;}
._4b{width:90.043521px;}
._4c{width:94.111334px;}
._59{width:95.644977px;}
._3d{width:102.549298px;}
._54{width:114.267802px;}
._43{width:115.534570px;}
._5a{width:119.551200px;}
._27{width:124.363740px;}
._51{width:127.308226px;}
._3e{width:129.306902px;}
._5b{width:131.506350px;}
._48{width:132.586585px;}
._4a{width:134.639462px;}
._4d{width:138.620544px;}
._49{width:149.882342px;}
._1f{width:155.738822px;}
._40{width:161.155422px;}
._24{width:166.189229px;}
._56{width:172.680187px;}
._50{width:173.953797px;}
._42{width:176.079200px;}
._45{width:177.698180px;}
._41{width:180.570586px;}
._3f{width:183.351011px;}
._55{width:185.046013px;}
._29{width:191.716523px;}
._4e{width:195.037133px;}
._28{width:200.749258px;}
._2b{width:202.516532px;}
._47{width:222.359958px;}
._44{width:247.147325px;}
._2c{width:255.446975px;}
._58{width:273.629473px;}
._26{width:275.171138px;}
._2a{width:288.654786px;}
._36{width:289.702060px;}
._34{width:315.032990px;}
._57{width:326.710339px;}
._4f{width:366.821280px;}
._31{width:420.414896px;}
._2f{width:426.613404px;}
._2e{width:567.753200px;}
._30{width:668.160557px;}
._32{width:671.513669px;}
._33{width:733.687653px;}
._37{width:746.444258px;}
._35{width:784.604290px;}
.fc7{color:rgb(186,33,33);}
.fc9{color:rgb(171,33,255);}
.fc5{color:rgb(61,122,122);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,128,0);}
.fc8{color:rgb(163,89,120);}
.fc2{color:rgb(239,184,64);}
.fc6{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,178,178);}
.fs7{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1a{bottom:63.780000px;}
.y24f{bottom:127.558500px;}
.y19{bottom:127.605000px;}
.y4d{bottom:128.035500px;}
.ybe{bottom:129.828000px;}
.ye8{bottom:130.020000px;}
.y21c{bottom:132.039000px;}
.y2ae{bottom:132.535500px;}
.y12c{bottom:133.272000px;}
.y7d{bottom:133.843500px;}
.y14d{bottom:135.297000px;}
.y225{bottom:138.766500px;}
.y221{bottom:139.513500px;}
.y9d{bottom:140.079000px;}
.y1b4{bottom:141.873000px;}
.y1f2{bottom:143.424000px;}
.y24e{bottom:143.997000px;}
.y4c{bottom:144.474000px;}
.ye7{bottom:146.458500px;}
.y21b{bottom:148.477500px;}
.y12b{bottom:149.893500px;}
.y7c{bottom:150.282000px;}
.y18{bottom:150.768000px;}
.ybd{bottom:151.980000px;}
.y10b{bottom:153.126000px;}
.y9c{bottom:156.517500px;}
.y14c{bottom:157.449000px;}
.y1f1{bottom:159.862500px;}
.y24d{bottom:160.435500px;}
.y4b{bottom:160.912500px;}
.y1b3{bottom:162.196500px;}
.y2ad{bottom:165.412500px;}
.y7b{bottom:166.720500px;}
.y17{bottom:167.206500px;}
.y14b{bottom:168.357000px;}
.ye6{bottom:168.610500px;}
.y1dc{bottom:171.091500px;}
.y9b{bottom:172.956000px;}
.y12a{bottom:173.215500px;}
.y10a{bottom:175.278000px;}
.y1f0{bottom:176.301000px;}
.ybc{bottom:176.431500px;}
.y24c{bottom:176.874000px;}
.y4a{bottom:177.351000px;}
.y21a{bottom:178.459500px;}
.ye5{bottom:179.518500px;}
.y2ac{bottom:181.851000px;}
.y1b2{bottom:182.520000px;}
.y27a{bottom:182.587500px;}
.y16{bottom:183.645000px;}
.yb4{bottom:183.901500px;}
.y14a{bottom:184.795500px;}
.y7a{bottom:188.872500px;}
.y1db{bottom:191.415000px;}
.y24b{bottom:193.312500px;}
.y226{bottom:193.456500px;}
.y279{bottom:193.495500px;}
.y129{bottom:193.539000px;}
.y49{bottom:193.789500px;}
.y9a{bottom:195.108000px;}
.ye4{bottom:195.957000px;}
.y169{bottom:196.750500px;}
.ybb{bottom:196.756500px;}
.y2ab{bottom:198.289500px;}
.y1ef{bottom:198.453000px;}
.y219{bottom:198.783000px;}
.y79{bottom:199.779000px;}
.yb3{bottom:200.340000px;}
.y149{bottom:201.232500px;}
.y109{bottom:202.624500px;}
.y99{bottom:206.014500px;}
.y1b1{bottom:209.568000px;}
.y24a{bottom:209.751000px;}
.y278{bottom:209.934000px;}
.y48{bottom:210.226500px;}
.y222{bottom:212.434500px;}
.y168{bottom:213.189000px;}
.y128{bottom:213.862500px;}
.y2aa{bottom:214.728000px;}
.y1ee{bottom:215.074500px;}
.y78{bottom:216.217500px;}
.yb2{bottom:216.778500px;}
.yba{bottom:217.080000px;}
.y148{bottom:217.671000px;}
.ye3{bottom:218.107500px;}
.y1da{bottom:218.463000px;}
.y108{bottom:219.063000px;}
.y218{bottom:219.106500px;}
.y98{bottom:222.453000px;}
.y249{bottom:226.189500px;}
.y277{bottom:226.372500px;}
.y22a{bottom:226.411500px;}
.y47{bottom:226.665000px;}
.y229{bottom:229.399500px;}
.y167{bottom:229.626000px;}
.y1b0{bottom:229.893000px;}
.y1ed{bottom:231.696000px;}
.y77{bottom:232.656000px;}
.yb1{bottom:233.217000px;}
.y147{bottom:234.109500px;}
.y127{bottom:234.187500px;}
.ye2{bottom:234.729000px;}
.yb9{bottom:237.403500px;}
.y1d9{bottom:238.786500px;}
.y97{bottom:238.891500px;}
.y217{bottom:239.431500px;}
.y107{bottom:241.479000px;}
.y248{bottom:242.628000px;}
.y46{bottom:243.103500px;}
.y224{bottom:244.576500px;}
.y2a9{bottom:247.605000px;}
.y1ec{bottom:248.316000px;}
.y276{bottom:248.524500px;}
.y76{bottom:249.094500px;}
.y22c{bottom:249.186000px;}
.y1af{bottom:250.216500px;}
.y146{bottom:250.548000px;}
.ye1{bottom:251.350500px;}
.y166{bottom:251.778000px;}
.y126{bottom:254.511000px;}
.y96{bottom:255.330000px;}
.yb0{bottom:255.369000px;}
.yb8{bottom:257.727000px;}
.y247{bottom:259.066500px;}
.y1eb{bottom:259.224000px;}
.y45{bottom:259.542000px;}
.y216{bottom:259.755000px;}
.y165{bottom:262.686000px;}
.y106{bottom:263.895000px;}
.y2a8{bottom:264.043500px;}
.y75{bottom:265.533000px;}
.y1d8{bottom:265.836000px;}
.yaf{bottom:266.277000px;}
.y145{bottom:266.986500px;}
.ye0{bottom:267.972000px;}
.y1ae{bottom:270.540000px;}
.y95{bottom:271.768500px;}
.y275{bottom:272.323500px;}
.y125{bottom:274.834500px;}
.y246{bottom:275.505000px;}
.y44{bottom:275.980500px;}
.yb7{bottom:278.050500px;}
.y164{bottom:279.124500px;}
.y215{bottom:280.078500px;}
.y2a7{bottom:280.480500px;}
.y220{bottom:280.594500px;}
.y1ea{bottom:281.376000px;}
.y1d7{bottom:286.159500px;}
.y105{bottom:286.309500px;}
.y74{bottom:287.685000px;}
.y94{bottom:288.207000px;}
.yae{bottom:288.429000px;}
.y144{bottom:289.138500px;}
.y43{bottom:292.419000px;}
.y124{bottom:295.158000px;}
.ydf{bottom:295.317000px;}
.y163{bottom:295.563000px;}
.y245{bottom:296.311500px;}
.y2a6{bottom:296.919000px;}
.y1ad{bottom:297.588000px;}
.y1e9{bottom:297.997500px;}
.yb6{bottom:298.375500px;}
.y143{bottom:300.046500px;}
.y214{bottom:300.402000px;}
.y93{bottom:304.645500px;}
.yad{bottom:305.049000px;}
.y274{bottom:305.199000px;}
.y1d6{bottom:306.483000px;}
.y104{bottom:308.725500px;}
.y73{bottom:312.136500px;}
.y244{bottom:312.750000px;}
.y2a5{bottom:313.357500px;}
.y42{bottom:314.571000px;}
.y1e8{bottom:314.619000px;}
.y123{bottom:315.481500px;}
.y142{bottom:316.485000px;}
.y162{bottom:317.715000px;}
.yde{bottom:317.733000px;}
.y1ac{bottom:317.913000px;}
.yb5{bottom:318.699000px;}
.y213{bottom:320.725500px;}
.y92{bottom:321.084000px;}
.y273{bottom:321.637500px;}
.yac{bottom:326.209500px;}
.y243{bottom:329.188500px;}
.y103{bottom:331.141500px;}
.y72{bottom:332.460000px;}
.y141{bottom:332.923500px;}
.y1d5{bottom:333.532500px;}
.y161{bottom:334.336500px;}
.y122{bottom:335.806500px;}
.y91{bottom:337.522500px;}
.y272{bottom:338.076000px;}
.y41{bottom:339.022500px;}
.ydd{bottom:340.149000px;}
.y1ab{bottom:344.961000px;}
.y242{bottom:345.627000px;}
.y2a4{bottom:346.234500px;}
.yab{bottom:346.533000px;}
.y102{bottom:347.580000px;}
.y140{bottom:349.360500px;}
.y71{bottom:352.783500px;}
.y1d4{bottom:353.856000px;}
.y90{bottom:353.961000px;}
.y212{bottom:354.499500px;}
.y271{bottom:354.514500px;}
.y121{bottom:356.130000px;}
.y160{bottom:358.788000px;}
.y40{bottom:359.346000px;}
.y241{bottom:362.065500px;}
.ydc{bottom:362.565000px;}
.y2a3{bottom:362.673000px;}
.y101{bottom:364.018500px;}
.y1aa{bottom:365.284500px;}
.y13f{bottom:365.799000px;}
.yaa{bottom:366.856500px;}
.y8f{bottom:370.398000px;}
.y270{bottom:370.953000px;}
.y70{bottom:373.108500px;}
.y1d3{bottom:374.179500px;}
.y211{bottom:374.823000px;}
.y120{bottom:376.453500px;}
.y240{bottom:378.504000px;}
.y15f{bottom:379.111500px;}
.y3f{bottom:379.669500px;}
.y13e{bottom:382.237500px;}
.ydb{bottom:384.981000px;}
.y1a9{bottom:385.608000px;}
.y100{bottom:386.170500px;}
.ya9{bottom:387.181500px;}
.y8e{bottom:392.550000px;}
.y6f{bottom:393.432000px;}
.y210{bottom:395.146500px;}
.y2a2{bottom:395.550000px;}
.y228{bottom:396.360000px;}
.y11f{bottom:396.777000px;}
.yff{bottom:397.078500px;}
.y13d{bottom:398.676000px;}
.y23f{bottom:399.312000px;}
.y15e{bottom:399.435000px;}
.y3e{bottom:399.993000px;}
.y1e7{bottom:399.994500px;}
.y1d2{bottom:401.227500px;}
.yda{bottom:401.419500px;}
.y8d{bottom:403.458000px;}
.y26f{bottom:403.830000px;}
.ya8{bottom:407.505000px;}
.y2a1{bottom:411.988500px;}
.y1a8{bottom:412.657500px;}
.y6e{bottom:413.755500px;}
.y13c{bottom:415.114500px;}
.y20f{bottom:415.471500px;}
.y23e{bottom:415.750500px;}
.yfe{bottom:419.230500px;}
.y15d{bottom:419.758500px;}
.y8c{bottom:419.896500px;}
.y26e{bottom:420.268500px;}
.y3d{bottom:420.318000px;}
.y1d1{bottom:421.552500px;}
.yd9{bottom:423.835500px;}
.y11e{bottom:424.612500px;}
.ya7{bottom:427.828500px;}
.y2a0{bottom:428.427000px;}
.y13b{bottom:431.553000px;}
.y23d{bottom:432.187500px;}
.y1a7{bottom:432.981000px;}
.y6d{bottom:434.079000px;}
.yfd{bottom:435.852000px;}
.y8b{bottom:436.335000px;}
.y26d{bottom:436.707000px;}
.y15c{bottom:440.082000px;}
.yd8{bottom:440.274000px;}
.y3c{bottom:440.641500px;}
.y20e{bottom:442.519500px;}
.y29f{bottom:444.864000px;}
.y13a{bottom:447.991500px;}
.ya6{bottom:448.152000px;}
.y1d0{bottom:448.600500px;}
.y23c{bottom:448.626000px;}
.y8a{bottom:452.773500px;}
.y1a6{bottom:453.304500px;}
.y6c{bottom:454.402500px;}
.y227{bottom:458.242500px;}
.yfc{bottom:460.303500px;}
.y189{bottom:460.368000px;}
.y15b{bottom:460.407000px;}
.y26c{bottom:460.656000px;}
.y3b{bottom:460.965000px;}
.y29e{bottom:461.302500px;}
.yd7{bottom:462.426000px;}
.y20d{bottom:462.843000px;}
.y139{bottom:464.430000px;}
.y23b{bottom:465.064500px;}
.ya5{bottom:468.475500px;}
.y1cf{bottom:468.924000px;}
.y89{bottom:469.212000px;}
.y6b{bottom:474.727500px;}
.y2b2{bottom:477.741000px;}
.y1a5{bottom:480.354000px;}
.yfb{bottom:480.627000px;}
.y188{bottom:480.691500px;}
.y15a{bottom:480.730500px;}
.y138{bottom:480.868500px;}
.y3a{bottom:481.288500px;}
.y23a{bottom:481.503000px;}
.y20c{bottom:483.166500px;}
.y88{bottom:485.650500px;}
.yd6{bottom:486.877500px;}
.ya4{bottom:488.800500px;}
.y1ce{bottom:489.247500px;}
.y11d{bottom:490.623000px;}
.y29d{bottom:494.179500px;}
.y6a{bottom:495.051000px;}
.y137{bottom:497.307000px;}
.y239{bottom:497.941500px;}
.y1a4{bottom:500.677500px;}
.yfa{bottom:500.950500px;}
.y187{bottom:501.015000px;}
.y159{bottom:501.054000px;}
.y223{bottom:501.252000px;}
.y39{bottom:501.612000px;}
.y87{bottom:502.089000px;}
.y20b{bottom:503.491500px;}
.yd5{bottom:507.201000px;}
.y26b{bottom:507.213000px;}
.ya3{bottom:509.124000px;}
.y1cd{bottom:509.572500px;}
.y29c{bottom:510.618000px;}
.y11c{bottom:510.946500px;}
.y21f{bottom:511.531500px;}
.y136{bottom:513.744000px;}
.y238{bottom:514.380000px;}
.y69{bottom:515.374500px;}
.y86{bottom:518.526000px;}
.yf9{bottom:521.274000px;}
.y186{bottom:521.338500px;}
.y158{bottom:521.377500px;}
.y38{bottom:521.937000px;}
.y20a{bottom:523.815000px;}
.y29b{bottom:527.056500px;}
.yd4{bottom:527.524500px;}
.y26a{bottom:527.536500px;}
.y1a3{bottom:527.725500px;}
.ya2{bottom:529.447500px;}
.y135{bottom:530.182500px;}
.y237{bottom:530.818500px;}
.y85{bottom:534.964500px;}
.y68{bottom:535.698000px;}
.y1cc{bottom:536.620500px;}
.yf8{bottom:541.597500px;}
.y185{bottom:541.662000px;}
.y157{bottom:541.701000px;}
.y37{bottom:542.260500px;}
.y29a{bottom:543.495000px;}
.y134{bottom:546.621000px;}
.y236{bottom:547.257000px;}
.yd3{bottom:547.849500px;}
.y269{bottom:547.860000px;}
.y1a2{bottom:548.049000px;}
.ya1{bottom:549.771000px;}
.y11b{bottom:550.342500px;}
.y209{bottom:550.863000px;}
.y84{bottom:551.403000px;}
.y67{bottom:556.021500px;}
.y1cb{bottom:556.944000px;}
.y299{bottom:559.933500px;}
.yf7{bottom:561.922500px;}
.y184{bottom:561.987000px;}
.y156{bottom:562.024500px;}
.y36{bottom:562.584000px;}
.y133{bottom:563.059500px;}
.y235{bottom:563.695500px;}
.y268{bottom:568.183500px;}
.y1a1{bottom:568.374000px;}
.ya0{bottom:570.094500px;}
.y11a{bottom:570.666000px;}
.y208{bottom:571.186500px;}
.y83{bottom:573.555000px;}
.y66{bottom:576.346500px;}
.y298{bottom:576.372000px;}
.y1ca{bottom:577.267500px;}
.y132{bottom:579.498000px;}
.y234{bottom:580.134000px;}
.yf6{bottom:582.246000px;}
.y183{bottom:582.310500px;}
.y35{bottom:582.907500px;}
.y82{bottom:584.463000px;}
.y267{bottom:588.508500px;}
.y9f{bottom:590.418000px;}
.y207{bottom:591.511500px;}
.yd2{bottom:592.582500px;}
.y297{bottom:592.810500px;}
.y1a0{bottom:595.422000px;}
.y131{bottom:595.936500px;}
.y233{bottom:596.571000px;}
.y65{bottom:596.670000px;}
.y1c9{bottom:597.592500px;}
.y119{bottom:599.205000px;}
.yf5{bottom:602.569500px;}
.y182{bottom:602.634000px;}
.y155{bottom:602.847000px;}
.y34{bottom:603.231000px;}
.y81{bottom:606.615000px;}
.y266{bottom:608.832000px;}
.y2b1{bottom:609.247500px;}
.y9e{bottom:610.743000px;}
.y206{bottom:611.835000px;}
.y130{bottom:612.375000px;}
.yd1{bottom:612.907500px;}
.y232{bottom:613.009500px;}
.y19f{bottom:615.745500px;}
.y64{bottom:616.993500px;}
.y118{bottom:619.528500px;}
.yf4{bottom:622.893000px;}
.y181{bottom:622.957500px;}
.y154{bottom:623.172000px;}
.y33{bottom:623.556000px;}
.y1c8{bottom:624.640500px;}
.y296{bottom:625.686000px;}
.y265{bottom:629.155500px;}
.y231{bottom:629.448000px;}
.y80{bottom:631.066500px;}
.y205{bottom:632.158500px;}
.yd0{bottom:633.231000px;}
.y12f{bottom:634.527000px;}
.y19e{bottom:636.069000px;}
.y295{bottom:642.124500px;}
.yf3{bottom:643.216500px;}
.y180{bottom:643.281000px;}
.y32{bottom:643.879500px;}
.y63{bottom:644.827500px;}
.y1c7{bottom:644.964000px;}
.y12e{bottom:645.435000px;}
.y117{bottom:648.069000px;}
.y264{bottom:649.479000px;}
.y7f{bottom:651.390000px;}
.y230{bottom:651.600000px;}
.y204{bottom:652.482000px;}
.ycf{bottom:653.554500px;}
.y294{bottom:658.563000px;}
.y153{bottom:662.566500px;}
.y19d{bottom:663.118500px;}
.y17f{bottom:663.604500px;}
.y31{bottom:664.203000px;}
.y1c6{bottom:665.287500px;}
.y12d{bottom:667.585500px;}
.y22f{bottom:668.221500px;}
.y263{bottom:669.802500px;}
.y7e{bottom:671.713500px;}
.y203{bottom:672.805500px;}
.yce{bottom:673.878000px;}
.y15{bottom:674.457000px;}
.y2b0{bottom:675.001500px;}
.y152{bottom:682.890000px;}
.y19c{bottom:683.442000px;}
.y17e{bottom:683.929500px;}
.y30{bottom:684.526500px;}
.yf2{bottom:687.951000px;}
.y116{bottom:688.518000px;}
.y262{bottom:690.127500px;}
.y22e{bottom:691.144500px;}
.y293{bottom:691.440000px;}
.y62{bottom:692.037000px;}
.y1c5{bottom:692.337000px;}
.y14{bottom:692.389500px;}
.y202{bottom:693.130500px;}
.y151{bottom:703.213500px;}
.y19b{bottom:703.765500px;}
.y17d{bottom:704.253000px;}
.y2f{bottom:704.850000px;}
.y292{bottom:707.878500px;}
.yf1{bottom:708.274500px;}
.y115{bottom:708.843000px;}
.y261{bottom:710.451000px;}
.y61{bottom:712.362000px;}
.y1c4{bottom:712.660500px;}
.y201{bottom:713.454000px;}
.ycd{bottom:718.612500px;}
.y1e6{bottom:719.385000px;}
.y150{bottom:723.537000px;}
.y291{bottom:724.317000px;}
.y17c{bottom:724.576500px;}
.y2e{bottom:725.175000px;}
.y13{bottom:728.254500px;}
.yf0{bottom:728.598000px;}
.y114{bottom:729.166500px;}
.y260{bottom:730.774500px;}
.y19a{bottom:730.813500px;}
.y60{bottom:732.685500px;}
.y1c3{bottom:732.984000px;}
.y200{bottom:733.777500px;}
.ycc{bottom:738.936000px;}
.y1e5{bottom:739.708500px;}
.y290{bottom:740.755500px;}
.y14f{bottom:743.862000px;}
.y17b{bottom:744.900000px;}
.y2d{bottom:745.498500px;}
.y12{bottom:746.187000px;}
.yef{bottom:748.923000px;}
.y113{bottom:749.490000px;}
.y199{bottom:751.138500px;}
.y5f{bottom:753.009000px;}
.y1ff{bottom:754.101000px;}
.y28f{bottom:757.194000px;}
.y25f{bottom:757.825500px;}
.ycb{bottom:759.259500px;}
.y1c2{bottom:760.032000px;}
.y11{bottom:764.121000px;}
.y17a{bottom:765.223500px;}
.y2c{bottom:765.822000px;}
.y25e{bottom:769.050000px;}
.yee{bottom:769.246500px;}
.y112{bottom:769.813500px;}
.y198{bottom:771.462000px;}
.y14e{bottom:772.401000px;}
.y5e{bottom:773.332500px;}
.y28e{bottom:773.632500px;}
.y1fe{bottom:774.424500px;}
.yca{bottom:779.583000px;}
.y1c1{bottom:780.357000px;}
.y10{bottom:782.053500px;}
.y179{bottom:785.548500px;}
.y2b{bottom:786.145500px;}
.y1e4{bottom:787.081500px;}
.yed{bottom:789.570000px;}
.y28d{bottom:790.069500px;}
.y111{bottom:790.137000px;}
.y197{bottom:791.785500px;}
.y5d{bottom:793.656000px;}
.yc9{bottom:799.908000px;}
.yf{bottom:799.986000px;}
.y1c0{bottom:800.680500px;}
.y178{bottom:805.872000px;}
.y2a{bottom:806.469000px;}
.y2af{bottom:806.508000px;}
.y1e3{bottom:807.405000px;}
.y1fd{bottom:808.198500px;}
.yec{bottom:809.893500px;}
.y110{bottom:810.462000px;}
.y196{bottom:812.109000px;}
.y5c{bottom:813.981000px;}
.y25d{bottom:814.594500px;}
.ye{bottom:817.918500px;}
.yc8{bottom:820.231500px;}
.y28c{bottom:822.946500px;}
.y177{bottom:826.195500px;}
.y29{bottom:826.794000px;}
.y1bf{bottom:827.728500px;}
.yeb{bottom:830.217000px;}
.y10f{bottom:830.785500px;}
.y5b{bottom:834.304500px;}
.y1e2{bottom:834.453000px;}
.y25c{bottom:834.919500px;}
.yd{bottom:835.851000px;}
.y1fc{bottom:836.032500px;}
.y195{bottom:839.158500px;}
.y28b{bottom:839.385000px;}
.yc7{bottom:840.555000px;}
.y22b{bottom:845.085000px;}
.y176{bottom:846.519000px;}
.y28{bottom:847.117500px;}
.y1be{bottom:848.052000px;}
.yea{bottom:850.542000px;}
.y10e{bottom:851.109000px;}
.yc{bottom:853.783500px;}
.y5a{bottom:854.628000px;}
.y1e1{bottom:854.778000px;}
.y21e{bottom:854.914500px;}
.y28a{bottom:855.823500px;}
.y194{bottom:859.482000px;}
.yc6{bottom:860.878500px;}
.y25b{bottom:864.792000px;}
.y175{bottom:866.842500px;}
.y27{bottom:867.441000px;}
.y1bd{bottom:868.377000px;}
.ye9{bottom:870.865500px;}
.y10d{bottom:871.432500px;}
.yb{bottom:871.717500px;}
.y289{bottom:872.262000px;}
.y59{bottom:874.951500px;}
.y1e0{bottom:875.101500px;}
.y193{bottom:879.805500px;}
.yc5{bottom:881.202000px;}
.y1fb{bottom:882.645000px;}
.y174{bottom:887.167500px;}
.y26{bottom:887.764500px;}
.y288{bottom:888.700500px;}
.ya{bottom:889.650000px;}
.y10c{bottom:891.756000px;}
.y58{bottom:895.275000px;}
.y1bc{bottom:895.425000px;}
.y192{bottom:900.129000px;}
.yc4{bottom:901.527000px;}
.y1fa{bottom:902.968500px;}
.y287{bottom:905.139000px;}
.y25a{bottom:905.440500px;}
.y173{bottom:907.491000px;}
.y9{bottom:907.582500px;}
.y25{bottom:908.088000px;}
.y57{bottom:915.600000px;}
.y1bb{bottom:915.748500px;}
.y286{bottom:921.577500px;}
.yc3{bottom:921.850500px;}
.y1df{bottom:922.473000px;}
.y22d{bottom:925.212000px;}
.y259{bottom:925.764000px;}
.y191{bottom:927.178500px;}
.y172{bottom:927.814500px;}
.y24{bottom:928.411500px;}
.y56{bottom:935.923500px;}
.y285{bottom:938.016000px;}
.y1f9{bottom:941.224500px;}
.yc2{bottom:942.174000px;}
.y1ba{bottom:942.798000px;}
.y8{bottom:943.447500px;}
.y190{bottom:947.502000px;}
.y171{bottom:948.138000px;}
.y258{bottom:948.493500px;}
.y23{bottom:948.736500px;}
.y21d{bottom:949.684500px;}
.y284{bottom:954.453000px;}
.y55{bottom:956.247000px;}
.y257{bottom:959.718000px;}
.y1f8{bottom:961.549500px;}
.yc1{bottom:962.497500px;}
.y1b9{bottom:963.121500px;}
.y170{bottom:968.461500px;}
.y22{bottom:969.060000px;}
.y1de{bottom:969.846000px;}
.y283{bottom:970.891500px;}
.y18f{bottom:974.550000px;}
.y54{bottom:976.570500px;}
.y1f7{bottom:981.873000px;}
.yc0{bottom:982.821000px;}
.y1b8{bottom:983.445000px;}
.y7{bottom:987.127500px;}
.y282{bottom:987.330000px;}
.y16f{bottom:988.786500px;}
.y21{bottom:989.383500px;}
.y1dd{bottom:990.169500px;}
.y18e{bottom:994.873500px;}
.y53{bottom:996.894000px;}
.y1f6{bottom:1002.196500px;}
.y281{bottom:1003.768500px;}
.y256{bottom:1003.908000px;}
.y6{bottom:1005.060000px;}
.y16e{bottom:1009.110000px;}
.y20{bottom:1009.707000px;}
.y1b7{bottom:1010.493000px;}
.ybf{bottom:1010.656500px;}
.y18d{bottom:1015.198500px;}
.y52{bottom:1017.219000px;}
.y280{bottom:1020.207000px;}
.y1f5{bottom:1022.520000px;}
.y255{bottom:1024.231500px;}
.y5{bottom:1025.752500px;}
.y16d{bottom:1029.433500px;}
.y1f{bottom:1030.030500px;}
.y1b6{bottom:1030.818000px;}
.y27f{bottom:1036.645500px;}
.y51{bottom:1037.542500px;}
.y18c{bottom:1042.246500px;}
.y1f4{bottom:1042.843500px;}
.y254{bottom:1044.555000px;}
.y4{bottom:1046.673000px;}
.y16c{bottom:1049.757000px;}
.y1e{bottom:1050.355500px;}
.y1b5{bottom:1051.141500px;}
.y27e{bottom:1053.084000px;}
.y50{bottom:1057.866000px;}
.y18b{bottom:1062.570000px;}
.y1f3{bottom:1063.168500px;}
.y27d{bottom:1069.522500px;}
.y16b{bottom:1070.080500px;}
.y1d{bottom:1070.679000px;}
.y253{bottom:1076.842500px;}
.y4f{bottom:1078.189500px;}
.y252{bottom:1082.485500px;}
.y3{bottom:1083.958500px;}
.y27c{bottom:1085.961000px;}
.y18a{bottom:1090.405500px;}
.y1c{bottom:1091.002500px;}
.y16a{bottom:1097.916000px;}
.y4e{bottom:1098.513000px;}
.y27b{bottom:1102.399500px;}
.y251{bottom:1113.195000px;}
.y2{bottom:1116.835500px;}
.y1b{bottom:1118.836500px;}
.y250{bottom:1126.455000px;}
.y1{bottom:1205.152500px;}
.hb{height:25.253025px;}
.h6{height:29.461581px;}
.he{height:32.278905px;}
.hd{height:33.670559px;}
.h15{height:33.677798px;}
.h14{height:37.443686px;}
.h8{height:37.879538px;}
.h2{height:42.088093px;}
.h11{height:44.247310px;}
.h7{height:46.086686px;}
.h9{height:50.506050px;}
.hc{height:57.418559px;}
.ha{height:57.424559px;}
.h5{height:59.698559px;}
.h4{height:59.704559px;}
.hf{height:64.138559px;}
.h3{height:72.728340px;}
.h10{height:90.366686px;}
.h12{height:94.910184px;}
.h13{height:139.808184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.780000px;}
.xb{left:127.558500px;}
.xa{left:128.680500px;}
.x13{left:135.741000px;}
.x15{left:137.496000px;}
.x44{left:143.385000px;}
.x2{left:149.352000px;}
.xd{left:152.964000px;}
.x12{left:154.458000px;}
.xe{left:155.577000px;}
.x6b{left:158.443500px;}
.x10{left:165.607500px;}
.x4{left:166.912500px;}
.x9{left:168.468000px;}
.x14{left:171.184500px;}
.x16{left:174.363000px;}
.xf{left:178.795500px;}
.x45{left:179.994000px;}
.x72{left:184.033500px;}
.x22{left:187.809000px;}
.x46{left:194.190000px;}
.x17{left:196.776000px;}
.x6c{left:198.469500px;}
.x47{left:208.387500px;}
.x25{left:210.972000px;}
.x73{left:212.271000px;}
.x23{left:216.946500px;}
.x48{left:222.583500px;}
.x26{left:225.169500px;}
.x18{left:233.385000px;}
.x49{left:236.781000px;}
.x27{left:239.365500px;}
.x5{left:240.651000px;}
.x6{left:246.345000px;}
.x4a{left:250.977000px;}
.x28{left:253.563000px;}
.x4b{left:265.174500px;}
.x29{left:267.759000px;}
.x19{left:269.994000px;}
.x65{left:273.390000px;}
.x24{left:275.221500px;}
.x2a{left:281.956500px;}
.x70{left:285.459000px;}
.x66{left:287.587500px;}
.x2b{left:296.152500px;}
.x4c{left:301.783500px;}
.x1a{left:306.603000px;}
.x6e{left:308.614500px;}
.x7{left:316.689000px;}
.x4d{left:330.177000px;}
.x2c{left:332.763000px;}
.x3{left:334.557000px;}
.x1b{left:343.213500px;}
.x4e{left:344.374500px;}
.x2d{left:346.959000px;}
.x4f{left:358.570500px;}
.x2e{left:361.156500px;}
.x50{left:372.768000px;}
.x2f{left:375.352500px;}
.x1c{left:379.822500px;}
.x51{left:386.964000px;}
.x30{left:389.550000px;}
.x52{left:401.161500px;}
.x31{left:403.746000px;}
.x67{left:409.377000px;}
.x8{left:416.010000px;}
.x32{left:417.943500px;}
.x68{left:423.573000px;}
.x33{left:432.139500px;}
.x11{left:438.274500px;}
.xc{left:442.366500px;}
.x53{left:451.966500px;}
.x1d{left:453.040500px;}
.x54{left:466.164000px;}
.x34{left:468.748500px;}
.x71{left:476.211000px;}
.x55{left:480.360000px;}
.x35{left:482.946000px;}
.x1e{left:489.651000px;}
.x56{left:494.557500px;}
.x36{left:497.142000px;}
.x6d{left:499.840500px;}
.x6f{left:502.344000px;}
.x57{left:508.753500px;}
.x37{left:511.339500px;}
.x58{left:522.951000px;}
.x1f{left:526.260000px;}
.x59{left:537.147000px;}
.x38{left:539.733000px;}
.x69{left:545.362500px;}
.x39{left:553.929000px;}
.x6a{left:559.560000px;}
.x20{left:562.869000px;}
.x3a{left:568.126500px;}
.x5a{left:573.756000px;}
.x5b{left:587.953500px;}
.x21{left:599.478000px;}
.x5c{left:602.149500px;}
.x3b{left:604.735500px;}
.x5d{left:616.347000px;}
.x3c{left:618.933000px;}
.x5e{left:630.543000px;}
.x3d{left:633.129000px;}
.x5f{left:644.740500px;}
.x3e{left:647.325000px;}
.x60{left:658.936500px;}
.x3f{left:661.522500px;}
.x61{left:673.134000px;}
.x40{left:675.720000px;}
.x41{left:689.916000px;}
.x42{left:704.113500px;}
.x62{left:709.743000px;}
.x63{left:723.940500px;}
.x64{left:746.352000px;}
.x43{left:748.938000px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v2{vertical-align:-19.280000pt;}
.v9{vertical-align:-15.210667pt;}
.v6{vertical-align:-8.730667pt;}
.v5{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:23.141333pt;}
.vb{vertical-align:24.144000pt;}
.v7{vertical-align:27.082667pt;}
.v8{vertical-align:39.360000pt;}
.va{vertical-align:82.037333pt;}
.vc{vertical-align:121.946667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000891pt;}
.ls1f{letter-spacing:0.002400pt;}
.ls23{letter-spacing:0.002411pt;}
.ls1c{letter-spacing:0.002717pt;}
.ls10{letter-spacing:0.003867pt;}
.ls21{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.655733pt;}
.ls17{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.661067pt;}
.ls24{letter-spacing:6.377661pt;}
.ls15{letter-spacing:7.965297pt;}
.ls14{letter-spacing:7.970630pt;}
.ls1a{letter-spacing:8.192891pt;}
.ls19{letter-spacing:9.612052pt;}
.lse{letter-spacing:10.665200pt;}
.lsd{letter-spacing:10.670533pt;}
.ls4{letter-spacing:11.959089pt;}
.ls1b{letter-spacing:12.216533pt;}
.ls22{letter-spacing:12.927477pt;}
.ls25{letter-spacing:12.932328pt;}
.ls12{letter-spacing:14.543972pt;}
.ls6{letter-spacing:14.614400pt;}
.ls3{letter-spacing:15.941867pt;}
.ls13{letter-spacing:15.942761pt;}
.ls20{letter-spacing:16.159477pt;}
.lsb{letter-spacing:17.809067pt;}
.ls9{letter-spacing:18.447733pt;}
.ls1d{letter-spacing:22.532811pt;}
.ls1e{letter-spacing:22.538144pt;}
.ls8{letter-spacing:24.575733pt;}
.lsf{letter-spacing:24.659867pt;}
.ls26{letter-spacing:25.058099pt;}
.ls27{letter-spacing:25.105920pt;}
.lsa{letter-spacing:25.194400pt;}
.ls16{letter-spacing:29.091862pt;}
.ls11{letter-spacing:29.092605pt;}
.lsc{letter-spacing:31.994400pt;}
.ls7{letter-spacing:39.941067pt;}
.ls0{letter-spacing:61.103733pt;}
.ws3{word-spacing:-0.063761pt;}
.ws51{word-spacing:-0.058182pt;}
.ws13{word-spacing:-0.047821pt;}
.wsce{word-spacing:-0.042507pt;}
.ws15{word-spacing:0.000000pt;}
.ws16e{word-spacing:7.933986pt;}
.ws170{word-spacing:7.936119pt;}
.ws16f{word-spacing:7.937186pt;}
.ws107{word-spacing:7.938253pt;}
.ws172{word-spacing:7.939319pt;}
.ws16d{word-spacing:7.940386pt;}
.ws171{word-spacing:7.942519pt;}
.ws18b{word-spacing:8.141519pt;}
.ws114{word-spacing:8.177357pt;}
.ws184{word-spacing:8.225178pt;}
.ws187{word-spacing:8.368640pt;}
.ws11b{word-spacing:8.416461pt;}
.ws12a{word-spacing:8.799027pt;}
.ws5{word-spacing:8.820222pt;}
.ws118{word-spacing:9.038131pt;}
.ws6{word-spacing:9.085891pt;}
.ws119{word-spacing:9.133773pt;}
.ws14a{word-spacing:9.134553pt;}
.ws8c{word-spacing:9.181594pt;}
.ws81{word-spacing:9.372877pt;}
.ws135{word-spacing:9.425462pt;}
.ws84{word-spacing:9.468518pt;}
.ws192{word-spacing:9.516339pt;}
.ws18a{word-spacing:9.564413pt;}
.ws189{word-spacing:9.564628pt;}
.wsec{word-spacing:9.658190pt;}
.ws86{word-spacing:9.659802pt;}
.ws5a{word-spacing:9.774554pt;}
.ws10a{word-spacing:9.851085pt;}
.wsb0{word-spacing:9.890917pt;}
.ws15b{word-spacing:9.949099pt;}
.ws182{word-spacing:9.964962pt;}
.ws183{word-spacing:9.974574pt;}
.ws181{word-spacing:9.994547pt;}
.wse1{word-spacing:10.065463pt;}
.ws1b{word-spacing:10.181827pt;}
.ws63{word-spacing:10.185830pt;}
.ws188{word-spacing:10.233651pt;}
.ws26{word-spacing:10.240009pt;}
.wsb1{word-spacing:10.298190pt;}
.ws180{word-spacing:10.329293pt;}
.ws161{word-spacing:10.356372pt;}
.ws101{word-spacing:10.414554pt;}
.ws10b{word-spacing:10.424934pt;}
.wseb{word-spacing:10.530918pt;}
.ws16c{word-spacing:10.584293pt;}
.ws17b{word-spacing:10.584337pt;}
.wsb8{word-spacing:10.589100pt;}
.ws198{word-spacing:10.705463pt;}
.ws11c{word-spacing:10.759680pt;}
.wsfe{word-spacing:10.763645pt;}
.wsa7{word-spacing:10.807501pt;}
.wsaa{word-spacing:10.821827pt;}
.ws9a{word-spacing:10.880009pt;}
.ws108{word-spacing:10.903142pt;}
.ws69{word-spacing:10.938191pt;}
.ws19c{word-spacing:10.950963pt;}
.ws88{word-spacing:10.998784pt;}
.wsd8{word-spacing:11.046605pt;}
.ws131{word-spacing:11.054555pt;}
.ws7a{word-spacing:11.190067pt;}
.ws160{word-spacing:11.229100pt;}
.ws89{word-spacing:11.285709pt;}
.ws9c{word-spacing:11.287282pt;}
.ws191{word-spacing:11.333530pt;}
.wsdc{word-spacing:11.345464pt;}
.ws1a{word-spacing:11.403646pt;}
.wsf6{word-spacing:11.409271pt;}
.ws163{word-spacing:11.429171pt;}
.ws168{word-spacing:11.461828pt;}
.ws8f{word-spacing:11.520010pt;}
.wsd4{word-spacing:11.578191pt;}
.ws169{word-spacing:11.620454pt;}
.ws90{word-spacing:11.636373pt;}
.wsf9{word-spacing:11.739394pt;}
.wsf8{word-spacing:11.752737pt;}
.ws117{word-spacing:11.763917pt;}
.wsc6{word-spacing:11.810919pt;}
.ws85{word-spacing:11.811738pt;}
.ws3b{word-spacing:11.859558pt;}
.ws45{word-spacing:11.869101pt;}
.ws14{word-spacing:11.907379pt;}
.ws33{word-spacing:11.927283pt;}
.ws11e{word-spacing:11.928074pt;}
.ws40{word-spacing:11.955200pt;}
.ws186{word-spacing:11.991837pt;}
.ws78{word-spacing:12.003021pt;}
.ws143{word-spacing:12.043646pt;}
.ws77{word-spacing:12.050842pt;}
.ws1c{word-spacing:12.101828pt;}
.ws129{word-spacing:12.146483pt;}
.ws185{word-spacing:12.194304pt;}
.ws11f{word-spacing:12.218192pt;}
.ws87{word-spacing:12.242125pt;}
.ws96{word-spacing:12.276374pt;}
.wsd7{word-spacing:12.289946pt;}
.ws178{word-spacing:12.352203pt;}
.ws177{word-spacing:12.356300pt;}
.ws179{word-spacing:12.356588pt;}
.ws175{word-spacing:12.356624pt;}
.ws176{word-spacing:12.356891pt;}
.wsba{word-spacing:12.392738pt;}
.ws7c{word-spacing:12.433408pt;}
.wsb6{word-spacing:12.450919pt;}
.ws115{word-spacing:12.481229pt;}
.ws4d{word-spacing:12.509101pt;}
.ws109{word-spacing:12.529050pt;}
.ws12e{word-spacing:12.567283pt;}
.ws7b{word-spacing:12.624691pt;}
.ws9f{word-spacing:12.625465pt;}
.ws136{word-spacing:12.634533pt;}
.ws80{word-spacing:12.672512pt;}
.wsa9{word-spacing:12.683647pt;}
.ws8a{word-spacing:12.708630pt;}
.ws8b{word-spacing:12.720333pt;}
.ws132{word-spacing:12.741829pt;}
.ws18f{word-spacing:12.761428pt;}
.ws7f{word-spacing:12.768154pt;}
.ws31{word-spacing:12.788288pt;}
.ws32{word-spacing:12.800011pt;}
.ws8{word-spacing:12.805262pt;}
.wsbe{word-spacing:12.858193pt;}
.ws64{word-spacing:12.863795pt;}
.ws195{word-spacing:12.871211pt;}
.ws74{word-spacing:12.916374pt;}
.ws60{word-spacing:12.959437pt;}
.ws18{word-spacing:12.974556pt;}
.ws6a{word-spacing:13.032738pt;}
.wsa2{word-spacing:13.090920pt;}
.wsae{word-spacing:13.149102pt;}
.ws193{word-spacing:13.150720pt;}
.ws82{word-spacing:13.198541pt;}
.ws123{word-spacing:13.207284pt;}
.ws0{word-spacing:13.230333pt;}
.ws9e{word-spacing:13.265466pt;}
.ws41{word-spacing:13.294182pt;}
.wsea{word-spacing:13.310153pt;}
.ws5d{word-spacing:13.323647pt;}
.wse3{word-spacing:13.342003pt;}
.wsf3{word-spacing:13.381829pt;}
.ws11d{word-spacing:13.389824pt;}
.ws164{word-spacing:13.426306pt;}
.ws13e{word-spacing:13.440011pt;}
.ws165{word-spacing:13.455916pt;}
.ws190{word-spacing:13.477722pt;}
.ws10e{word-spacing:13.485466pt;}
.ws55{word-spacing:13.498193pt;}
.ws36{word-spacing:13.533286pt;}
.ws147{word-spacing:13.556375pt;}
.wse5{word-spacing:13.581107pt;}
.wsfc{word-spacing:13.614557pt;}
.wsa6{word-spacing:13.628928pt;}
.wsc{word-spacing:13.655404pt;}
.wsc4{word-spacing:13.672739pt;}
.ws10d{word-spacing:13.676749pt;}
.wsa8{word-spacing:13.724570pt;}
.ws125{word-spacing:13.730921pt;}
.ws11a{word-spacing:13.772390pt;}
.ws8e{word-spacing:13.789102pt;}
.wsd6{word-spacing:13.820211pt;}
.wsfa{word-spacing:13.834107pt;}
.wsbc{word-spacing:13.847284pt;}
.ws5c{word-spacing:13.905466pt;}
.ws42{word-spacing:13.963648pt;}
.ws61{word-spacing:13.963674pt;}
.wsb4{word-spacing:14.021830pt;}
.wse4{word-spacing:14.059315pt;}
.ws19{word-spacing:14.080012pt;}
.ws3f{word-spacing:14.107136pt;}
.ws67{word-spacing:14.138194pt;}
.ws53{word-spacing:14.196375pt;}
.ws54{word-spacing:14.207739pt;}
.ws65{word-spacing:14.250598pt;}
.ws98{word-spacing:14.254557pt;}
.ws7d{word-spacing:14.298419pt;}
.ws34{word-spacing:14.312739pt;}
.ws133{word-spacing:14.342894pt;}
.ws112{word-spacing:14.346240pt;}
.wsbf{word-spacing:14.370921pt;}
.wsd3{word-spacing:14.429103pt;}
.wsc7{word-spacing:14.474293pt;}
.ws14b{word-spacing:14.483440pt;}
.ws13b{word-spacing:14.484229pt;}
.ws141{word-spacing:14.485088pt;}
.ws14c{word-spacing:14.486039pt;}
.ws140{word-spacing:14.487162pt;}
.ws1d{word-spacing:14.487285pt;}
.ws151{word-spacing:14.489088pt;}
.ws144{word-spacing:14.489112pt;}
.ws111{word-spacing:14.489702pt;}
.wsc8{word-spacing:14.491510pt;}
.wsd2{word-spacing:14.503632pt;}
.ws58{word-spacing:14.545467pt;}
.wsc1{word-spacing:14.579166pt;}
.wsa5{word-spacing:14.583586pt;}
.ws8d{word-spacing:14.585344pt;}
.ws159{word-spacing:14.598491pt;}
.ws72{word-spacing:14.603649pt;}
.ws5f{word-spacing:14.633165pt;}
.ws24{word-spacing:14.720012pt;}
.ws10f{word-spacing:14.728806pt;}
.ws17{word-spacing:14.778194pt;}
.wse8{word-spacing:14.836376pt;}
.ws12f{word-spacing:14.894558pt;}
.ws155{word-spacing:14.912762pt;}
.ws9{word-spacing:14.930617pt;}
.ws30{word-spacing:14.952740pt;}
.ws1f{word-spacing:15.010922pt;}
.ws116{word-spacing:15.015731pt;}
.ws25{word-spacing:15.069103pt;}
.ws83{word-spacing:15.111373pt;}
.wsb3{word-spacing:15.127285pt;}
.wsb5{word-spacing:15.185467pt;}
.ws22{word-spacing:15.243649pt;}
.ws12b{word-spacing:15.254835pt;}
.ws23{word-spacing:15.301831pt;}
.ws19b{word-spacing:15.302656pt;}
.ws142{word-spacing:15.360013pt;}
.wsad{word-spacing:15.418195pt;}
.ws7e{word-spacing:15.446118pt;}
.ws44{word-spacing:15.476377pt;}
.ws73{word-spacing:15.534558pt;}
.ws128{word-spacing:15.541760pt;}
.ws79{word-spacing:15.589581pt;}
.ws68{word-spacing:15.592740pt;}
.ws162{word-spacing:15.637402pt;}
.ws1e{word-spacing:15.650922pt;}
.ws18e{word-spacing:15.685222pt;}
.wsfd{word-spacing:15.709104pt;}
.ws43{word-spacing:15.767286pt;}
.ws59{word-spacing:15.825468pt;}
.ws2{word-spacing:15.876506pt;}
.wsfb{word-spacing:15.883650pt;}
.wsf5{word-spacing:15.890232pt;}
.wse6{word-spacing:15.941831pt;}
.ws56{word-spacing:16.000013pt;}
.ws13f{word-spacing:16.058195pt;}
.ws66{word-spacing:16.116377pt;}
.wsa4{word-spacing:16.163430pt;}
.ws106{word-spacing:16.174559pt;}
.wsf4{word-spacing:16.232741pt;}
.ws9b{word-spacing:16.290923pt;}
.ws6c{word-spacing:16.349105pt;}
.ws12c{word-spacing:16.354714pt;}
.ws104{word-spacing:16.407286pt;}
.ws46{word-spacing:16.465468pt;}
.ws27{word-spacing:16.523650pt;}
.ws110{word-spacing:16.545997pt;}
.wsa0{word-spacing:16.581832pt;}
.wsb{word-spacing:16.630900pt;}
.ws4f{word-spacing:16.640014pt;}
.ws4e{word-spacing:16.654955pt;}
.ws62{word-spacing:16.689459pt;}
.ws75{word-spacing:16.698196pt;}
.ws6b{word-spacing:16.756378pt;}
.ws9d{word-spacing:16.814559pt;}
.ws10{word-spacing:16.880742pt;}
.ws194{word-spacing:16.912773pt;}
.ws11{word-spacing:16.928563pt;}
.wsc3{word-spacing:16.930923pt;}
.ws154{word-spacing:16.989105pt;}
.ws4b{word-spacing:17.047287pt;}
.ws167{word-spacing:17.105469pt;}
.ws10c{word-spacing:17.119846pt;}
.wsdf{word-spacing:17.163651pt;}
.wsc9{word-spacing:17.213506pt;}
.ws3c{word-spacing:17.215488pt;}
.wsc0{word-spacing:17.221833pt;}
.ws12d{word-spacing:17.279249pt;}
.ws102{word-spacing:17.280014pt;}
.ws124{word-spacing:17.338196pt;}
.ws5e{word-spacing:17.358950pt;}
.ws130{word-spacing:17.396378pt;}
.ws113{word-spacing:17.406771pt;}
.wsa{word-spacing:17.427908pt;}
.ws91{word-spacing:17.454560pt;}
.ws50{word-spacing:17.512742pt;}
.ws13d{word-spacing:17.517923pt;}
.ws4{word-spacing:17.534176pt;}
.wse7{word-spacing:17.570924pt;}
.ws49{word-spacing:17.629106pt;}
.ws158{word-spacing:17.636288pt;}
.ws7{word-spacing:17.640444pt;}
.wsbb{word-spacing:17.687287pt;}
.ws150{word-spacing:17.738357pt;}
.ws21{word-spacing:17.745469pt;}
.wse{word-spacing:17.799845pt;}
.ws2a{word-spacing:17.803651pt;}
.wsa3{word-spacing:17.861833pt;}
.ws5b{word-spacing:17.920015pt;}
.ws71{word-spacing:17.978197pt;}
.ws152{word-spacing:18.034642pt;}
.ws35{word-spacing:18.036379pt;}
.ws48{word-spacing:18.094561pt;}
.ws12{word-spacing:18.124083pt;}
.ws139{word-spacing:18.150366pt;}
.ws13a{word-spacing:18.152742pt;}
.wscc{word-spacing:18.210924pt;}
.ws28{word-spacing:18.269106pt;}
.ws3e{word-spacing:18.315366pt;}
.ws16a{word-spacing:18.327288pt;}
.ws199{word-spacing:18.330293pt;}
.ws146{word-spacing:18.385470pt;}
.ws2e{word-spacing:18.501834pt;}
.ws4a{word-spacing:18.560015pt;}
.ws3d{word-spacing:18.602291pt;}
.ws94{word-spacing:18.618197pt;}
.wsd5{word-spacing:18.623626pt;}
.ws14e{word-spacing:18.676379pt;}
.ws95{word-spacing:18.734561pt;}
.ws76{word-spacing:18.792743pt;}
.wsa1{word-spacing:18.799626pt;}
.ws20{word-spacing:18.850925pt;}
.wsca{word-spacing:18.909107pt;}
.ws2c{word-spacing:18.967289pt;}
.wsd1{word-spacing:18.987085pt;}
.ws2d{word-spacing:19.025470pt;}
.ws100{word-spacing:19.082293pt;}
.wsb7{word-spacing:19.083652pt;}
.wse9{word-spacing:19.141834pt;}
.wsab{word-spacing:19.253032pt;}
.wsac{word-spacing:19.258198pt;}
.wsbd{word-spacing:19.316380pt;}
.ws126{word-spacing:19.322293pt;}
.wse2{word-spacing:19.364959pt;}
.ws15e{word-spacing:19.545829pt;}
.wsee{word-spacing:19.549107pt;}
.ws15d{word-spacing:19.572288pt;}
.ws127{word-spacing:19.607289pt;}
.wsaf{word-spacing:19.665471pt;}
.wsdb{word-spacing:19.723653pt;}
.wsef{word-spacing:19.781835pt;}
.wsff{word-spacing:19.840017pt;}
.ws2f{word-spacing:19.898198pt;}
.ws57{word-spacing:19.956380pt;}
.ws105{word-spacing:20.004959pt;}
.ws15c{word-spacing:20.072744pt;}
.ws70{word-spacing:20.130926pt;}
.ws2b{word-spacing:20.189108pt;}
.ws14f{word-spacing:20.247290pt;}
.ws156{word-spacing:20.305471pt;}
.ws92{word-spacing:20.363653pt;}
.ws122{word-spacing:20.421835pt;}
.ws137{word-spacing:20.480017pt;}
.ws15a{word-spacing:20.516959pt;}
.ws138{word-spacing:20.596381pt;}
.ws47{word-spacing:20.654563pt;}
.wsf{word-spacing:20.658586pt;}
.ws99{word-spacing:20.712745pt;}
.ws29{word-spacing:20.770926pt;}
.ws93{word-spacing:20.829108pt;}
.ws3a{word-spacing:20.897690pt;}
.ws39{word-spacing:20.904484pt;}
.ws6f{word-spacing:20.945472pt;}
.ws38{word-spacing:20.945510pt;}
.ws166{word-spacing:21.003654pt;}
.wsb9{word-spacing:21.061836pt;}
.ws149{word-spacing:21.120018pt;}
.wsc5{word-spacing:21.178199pt;}
.ws52{word-spacing:21.236381pt;}
.ws6e{word-spacing:21.294563pt;}
.ws4c{word-spacing:21.352745pt;}
.ws97{word-spacing:21.410927pt;}
.ws13c{word-spacing:21.469109pt;}
.ws17f{word-spacing:21.527291pt;}
.ws134{word-spacing:21.585473pt;}
.wsdd{word-spacing:21.934564pt;}
.ws148{word-spacing:22.050927pt;}
.ws145{word-spacing:22.109109pt;}
.ws37{word-spacing:22.141030pt;}
.ws6d{word-spacing:22.167291pt;}
.ws18d{word-spacing:22.284493pt;}
.ws15f{word-spacing:22.415626pt;}
.wscb{word-spacing:22.516382pt;}
.wscd{word-spacing:22.574564pt;}
.ws1{word-spacing:22.862051pt;}
.ws14d{word-spacing:23.505474pt;}
.ws120{word-spacing:24.090293pt;}
.ws17c{word-spacing:24.410293pt;}
.wsda{word-spacing:24.436429pt;}
.wsd{word-spacing:24.621578pt;}
.ws1a0{word-spacing:25.010278pt;}
.ws19a{word-spacing:25.058099pt;}
.wscf{word-spacing:25.252959pt;}
.wsb2{word-spacing:25.833726pt;}
.wsf7{word-spacing:26.292959pt;}
.wsc2{word-spacing:26.636186pt;}
.wsed{word-spacing:27.599626pt;}
.ws197{word-spacing:27.668959pt;}
.ws19f{word-spacing:27.975168pt;}
.ws19d{word-spacing:28.692480pt;}
.ws17e{word-spacing:30.985506pt;}
.wsd0{word-spacing:33.071626pt;}
.ws18c{word-spacing:34.717901pt;}
.wse0{word-spacing:36.612959pt;}
.ws103{word-spacing:36.655626pt;}
.ws157{word-spacing:37.092959pt;}
.ws17d{word-spacing:37.220959pt;}
.ws121{word-spacing:37.327626pt;}
.ws153{word-spacing:38.639626pt;}
.wsde{word-spacing:41.946293pt;}
.wsd9{word-spacing:53.415834pt;}
.ws16{word-spacing:63.697306pt;}
.wsf0{word-spacing:63.709144pt;}
.ws16b{word-spacing:63.718293pt;}
.wsf1{word-spacing:110.429183pt;}
.wsf2{word-spacing:110.487365pt;}
.ws19e{word-spacing:121.829553pt;}
.ws196{word-spacing:149.007418pt;}
.ws173{word-spacing:877.332429pt;}
.ws17a{word-spacing:878.911095pt;}
.ws174{word-spacing:983.629133pt;}
._1b{margin-left:-6.981824pt;}
._e{margin-left:-5.393421pt;}
._c{margin-left:-4.072731pt;}
._0{margin-left:-2.922363pt;}
._1{margin-left:-1.652678pt;}
._39{width:1.471935pt;}
._11{width:2.630144pt;}
._3b{width:3.521970pt;}
._3a{width:4.520797pt;}
._3c{width:6.516369pt;}
._38{width:7.784214pt;}
._2d{width:9.448287pt;}
._18{width:10.804832pt;}
._9{width:11.810919pt;}
._17{width:12.797465pt;}
._2{width:14.133609pt;}
._5{width:15.302554pt;}
._7{width:16.630900pt;}
._6{width:17.592838pt;}
._4{width:18.756255pt;}
._19{width:19.665471pt;}
._a{width:20.654563pt;}
._10{width:21.934564pt;}
._8{width:22.906163pt;}
._13{width:23.805497pt;}
._1d{width:25.214785pt;}
._d{width:26.705477pt;}
._20{width:27.602836pt;}
._3{width:28.586020pt;}
._b{width:30.021843pt;}
._22{width:31.404054pt;}
._1a{width:32.523663pt;}
._23{width:33.710887pt;}
._f{width:34.984794pt;}
._16{width:35.898212pt;}
._15{width:36.852708pt;}
._12{width:40.824639pt;}
._1c{width:42.908974pt;}
._5c{width:45.568187pt;}
._21{width:57.763489pt;}
._1e{width:58.826113pt;}
._14{width:63.761067pt;}
._53{width:66.757837pt;}
._46{width:67.756477pt;}
._25{width:76.567337pt;}
._52{width:79.149670pt;}
._4b{width:80.038685pt;}
._4c{width:83.654519pt;}
._59{width:85.017757pt;}
._3d{width:91.154932pt;}
._54{width:101.571379pt;}
._43{width:102.697395pt;}
._5a{width:106.267733pt;}
._27{width:110.545547pt;}
._51{width:113.162868pt;}
._3e{width:114.939469pt;}
._5b{width:116.894533pt;}
._48{width:117.854742pt;}
._4a{width:119.679522pt;}
._4d{width:123.218261pt;}
._49{width:133.228749pt;}
._1f{width:138.434509pt;}
._40{width:143.249264pt;}
._24{width:147.723759pt;}
._56{width:153.493499pt;}
._50{width:154.625597pt;}
._42{width:156.514845pt;}
._45{width:157.953938pt;}
._41{width:160.507187pt;}
._3f{width:162.978677pt;}
._55{width:164.485345pt;}
._29{width:170.414687pt;}
._4e{width:173.366340pt;}
._28{width:178.443785pt;}
._2b{width:180.014695pt;}
._47{width:197.653296pt;}
._44{width:219.686511pt;}
._2c{width:227.063978pt;}
._58{width:243.226198pt;}
._26{width:244.596567pt;}
._2a{width:256.582032pt;}
._36{width:257.512942pt;}
._34{width:280.029324pt;}
._57{width:290.409190pt;}
._4f{width:326.063360pt;}
._31{width:373.702130pt;}
._2f{width:379.211915pt;}
._2e{width:504.669511pt;}
._30{width:593.920495pt;}
._32{width:596.901039pt;}
._33{width:652.166803pt;}
._37{width:663.506007pt;}
._35{width:697.426036pt;}
.fs7{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:56.693333pt;}
.y24f{bottom:113.385333pt;}
.y19{bottom:113.426667pt;}
.y4d{bottom:113.809333pt;}
.ybe{bottom:115.402667pt;}
.ye8{bottom:115.573333pt;}
.y21c{bottom:117.368000pt;}
.y2ae{bottom:117.809333pt;}
.y12c{bottom:118.464000pt;}
.y7d{bottom:118.972000pt;}
.y14d{bottom:120.264000pt;}
.y225{bottom:123.348000pt;}
.y221{bottom:124.012000pt;}
.y9d{bottom:124.514667pt;}
.y1b4{bottom:126.109333pt;}
.y1f2{bottom:127.488000pt;}
.y24e{bottom:127.997333pt;}
.y4c{bottom:128.421333pt;}
.ye7{bottom:130.185333pt;}
.y21b{bottom:131.980000pt;}
.y12b{bottom:133.238667pt;}
.y7c{bottom:133.584000pt;}
.y18{bottom:134.016000pt;}
.ybd{bottom:135.093333pt;}
.y10b{bottom:136.112000pt;}
.y9c{bottom:139.126667pt;}
.y14c{bottom:139.954667pt;}
.y1f1{bottom:142.100000pt;}
.y24d{bottom:142.609333pt;}
.y4b{bottom:143.033333pt;}
.y1b3{bottom:144.174667pt;}
.y2ad{bottom:147.033333pt;}
.y7b{bottom:148.196000pt;}
.y17{bottom:148.628000pt;}
.y14b{bottom:149.650667pt;}
.ye6{bottom:149.876000pt;}
.y1dc{bottom:152.081333pt;}
.y9b{bottom:153.738667pt;}
.y12a{bottom:153.969333pt;}
.y10a{bottom:155.802667pt;}
.y1f0{bottom:156.712000pt;}
.ybc{bottom:156.828000pt;}
.y24c{bottom:157.221333pt;}
.y4a{bottom:157.645333pt;}
.y21a{bottom:158.630667pt;}
.ye5{bottom:159.572000pt;}
.y2ac{bottom:161.645333pt;}
.y1b2{bottom:162.240000pt;}
.y27a{bottom:162.300000pt;}
.y16{bottom:163.240000pt;}
.yb4{bottom:163.468000pt;}
.y14a{bottom:164.262667pt;}
.y7a{bottom:167.886667pt;}
.y1db{bottom:170.146667pt;}
.y24b{bottom:171.833333pt;}
.y226{bottom:171.961333pt;}
.y279{bottom:171.996000pt;}
.y129{bottom:172.034667pt;}
.y49{bottom:172.257333pt;}
.y9a{bottom:173.429333pt;}
.ye4{bottom:174.184000pt;}
.y169{bottom:174.889333pt;}
.ybb{bottom:174.894667pt;}
.y2ab{bottom:176.257333pt;}
.y1ef{bottom:176.402667pt;}
.y219{bottom:176.696000pt;}
.y79{bottom:177.581333pt;}
.yb3{bottom:178.080000pt;}
.y149{bottom:178.873333pt;}
.y109{bottom:180.110667pt;}
.y99{bottom:183.124000pt;}
.y1b1{bottom:186.282667pt;}
.y24a{bottom:186.445333pt;}
.y278{bottom:186.608000pt;}
.y48{bottom:186.868000pt;}
.y222{bottom:188.830667pt;}
.y168{bottom:189.501333pt;}
.y128{bottom:190.100000pt;}
.y2aa{bottom:190.869333pt;}
.y1ee{bottom:191.177333pt;}
.y78{bottom:192.193333pt;}
.yb2{bottom:192.692000pt;}
.yba{bottom:192.960000pt;}
.y148{bottom:193.485333pt;}
.ye3{bottom:193.873333pt;}
.y1da{bottom:194.189333pt;}
.y108{bottom:194.722667pt;}
.y218{bottom:194.761333pt;}
.y98{bottom:197.736000pt;}
.y249{bottom:201.057333pt;}
.y277{bottom:201.220000pt;}
.y22a{bottom:201.254667pt;}
.y47{bottom:201.480000pt;}
.y229{bottom:203.910667pt;}
.y167{bottom:204.112000pt;}
.y1b0{bottom:204.349333pt;}
.y1ed{bottom:205.952000pt;}
.y77{bottom:206.805333pt;}
.yb1{bottom:207.304000pt;}
.y147{bottom:208.097333pt;}
.y127{bottom:208.166667pt;}
.ye2{bottom:208.648000pt;}
.yb9{bottom:211.025333pt;}
.y1d9{bottom:212.254667pt;}
.y97{bottom:212.348000pt;}
.y217{bottom:212.828000pt;}
.y107{bottom:214.648000pt;}
.y248{bottom:215.669333pt;}
.y46{bottom:216.092000pt;}
.y224{bottom:217.401333pt;}
.y2a9{bottom:220.093333pt;}
.y1ec{bottom:220.725333pt;}
.y276{bottom:220.910667pt;}
.y76{bottom:221.417333pt;}
.y22c{bottom:221.498667pt;}
.y1af{bottom:222.414667pt;}
.y146{bottom:222.709333pt;}
.ye1{bottom:223.422667pt;}
.y166{bottom:223.802667pt;}
.y126{bottom:226.232000pt;}
.y96{bottom:226.960000pt;}
.yb0{bottom:226.994667pt;}
.yb8{bottom:229.090667pt;}
.y247{bottom:230.281333pt;}
.y1eb{bottom:230.421333pt;}
.y45{bottom:230.704000pt;}
.y216{bottom:230.893333pt;}
.y165{bottom:233.498667pt;}
.y106{bottom:234.573333pt;}
.y2a8{bottom:234.705333pt;}
.y75{bottom:236.029333pt;}
.y1d8{bottom:236.298667pt;}
.yaf{bottom:236.690667pt;}
.y145{bottom:237.321333pt;}
.ye0{bottom:238.197333pt;}
.y1ae{bottom:240.480000pt;}
.y95{bottom:241.572000pt;}
.y275{bottom:242.065333pt;}
.y125{bottom:244.297333pt;}
.y246{bottom:244.893333pt;}
.y44{bottom:245.316000pt;}
.yb7{bottom:247.156000pt;}
.y164{bottom:248.110667pt;}
.y215{bottom:248.958667pt;}
.y2a7{bottom:249.316000pt;}
.y220{bottom:249.417333pt;}
.y1ea{bottom:250.112000pt;}
.y1d7{bottom:254.364000pt;}
.y105{bottom:254.497333pt;}
.y74{bottom:255.720000pt;}
.y94{bottom:256.184000pt;}
.yae{bottom:256.381333pt;}
.y144{bottom:257.012000pt;}
.y43{bottom:259.928000pt;}
.y124{bottom:262.362667pt;}
.ydf{bottom:262.504000pt;}
.y163{bottom:262.722667pt;}
.y245{bottom:263.388000pt;}
.y2a6{bottom:263.928000pt;}
.y1ad{bottom:264.522667pt;}
.y1e9{bottom:264.886667pt;}
.yb6{bottom:265.222667pt;}
.y143{bottom:266.708000pt;}
.y214{bottom:267.024000pt;}
.y93{bottom:270.796000pt;}
.yad{bottom:271.154667pt;}
.y274{bottom:271.288000pt;}
.y1d6{bottom:272.429333pt;}
.y104{bottom:274.422667pt;}
.y73{bottom:277.454667pt;}
.y244{bottom:278.000000pt;}
.y2a5{bottom:278.540000pt;}
.y42{bottom:279.618667pt;}
.y1e8{bottom:279.661333pt;}
.y123{bottom:280.428000pt;}
.y142{bottom:281.320000pt;}
.y162{bottom:282.413333pt;}
.yde{bottom:282.429333pt;}
.y1ac{bottom:282.589333pt;}
.yb5{bottom:283.288000pt;}
.y213{bottom:285.089333pt;}
.y92{bottom:285.408000pt;}
.y273{bottom:285.900000pt;}
.yac{bottom:289.964000pt;}
.y243{bottom:292.612000pt;}
.y103{bottom:294.348000pt;}
.y72{bottom:295.520000pt;}
.y141{bottom:295.932000pt;}
.y1d5{bottom:296.473333pt;}
.y161{bottom:297.188000pt;}
.y122{bottom:298.494667pt;}
.y91{bottom:300.020000pt;}
.y272{bottom:300.512000pt;}
.y41{bottom:301.353333pt;}
.ydd{bottom:302.354667pt;}
.y1ab{bottom:306.632000pt;}
.y242{bottom:307.224000pt;}
.y2a4{bottom:307.764000pt;}
.yab{bottom:308.029333pt;}
.y102{bottom:308.960000pt;}
.y140{bottom:310.542667pt;}
.y71{bottom:313.585333pt;}
.y1d4{bottom:314.538667pt;}
.y90{bottom:314.632000pt;}
.y212{bottom:315.110667pt;}
.y271{bottom:315.124000pt;}
.y121{bottom:316.560000pt;}
.y160{bottom:318.922667pt;}
.y40{bottom:319.418667pt;}
.y241{bottom:321.836000pt;}
.ydc{bottom:322.280000pt;}
.y2a3{bottom:322.376000pt;}
.y101{bottom:323.572000pt;}
.y1aa{bottom:324.697333pt;}
.y13f{bottom:325.154667pt;}
.yaa{bottom:326.094667pt;}
.y8f{bottom:329.242667pt;}
.y270{bottom:329.736000pt;}
.y70{bottom:331.652000pt;}
.y1d3{bottom:332.604000pt;}
.y211{bottom:333.176000pt;}
.y120{bottom:334.625333pt;}
.y240{bottom:336.448000pt;}
.y15f{bottom:336.988000pt;}
.y3f{bottom:337.484000pt;}
.y13e{bottom:339.766667pt;}
.ydb{bottom:342.205333pt;}
.y1a9{bottom:342.762667pt;}
.y100{bottom:343.262667pt;}
.ya9{bottom:344.161333pt;}
.y8e{bottom:348.933333pt;}
.y6f{bottom:349.717333pt;}
.y210{bottom:351.241333pt;}
.y2a2{bottom:351.600000pt;}
.y228{bottom:352.320000pt;}
.y11f{bottom:352.690667pt;}
.yff{bottom:352.958667pt;}
.y13d{bottom:354.378667pt;}
.y23f{bottom:354.944000pt;}
.y15e{bottom:355.053333pt;}
.y3e{bottom:355.549333pt;}
.y1e7{bottom:355.550667pt;}
.y1d2{bottom:356.646667pt;}
.yda{bottom:356.817333pt;}
.y8d{bottom:358.629333pt;}
.y26f{bottom:358.960000pt;}
.ya8{bottom:362.226667pt;}
.y2a1{bottom:366.212000pt;}
.y1a8{bottom:366.806667pt;}
.y6e{bottom:367.782667pt;}
.y13c{bottom:368.990667pt;}
.y20f{bottom:369.308000pt;}
.y23e{bottom:369.556000pt;}
.yfe{bottom:372.649333pt;}
.y15d{bottom:373.118667pt;}
.y8c{bottom:373.241333pt;}
.y26e{bottom:373.572000pt;}
.y3d{bottom:373.616000pt;}
.y1d1{bottom:374.713333pt;}
.yd9{bottom:376.742667pt;}
.y11e{bottom:377.433333pt;}
.ya7{bottom:380.292000pt;}
.y2a0{bottom:380.824000pt;}
.y13b{bottom:383.602667pt;}
.y23d{bottom:384.166667pt;}
.y1a7{bottom:384.872000pt;}
.y6d{bottom:385.848000pt;}
.yfd{bottom:387.424000pt;}
.y8b{bottom:387.853333pt;}
.y26d{bottom:388.184000pt;}
.y15c{bottom:391.184000pt;}
.yd8{bottom:391.354667pt;}
.y3c{bottom:391.681333pt;}
.y20e{bottom:393.350667pt;}
.y29f{bottom:395.434667pt;}
.y13a{bottom:398.214667pt;}
.ya6{bottom:398.357333pt;}
.y1d0{bottom:398.756000pt;}
.y23c{bottom:398.778667pt;}
.y8a{bottom:402.465333pt;}
.y1a6{bottom:402.937333pt;}
.y6c{bottom:403.913333pt;}
.y227{bottom:407.326667pt;}
.yfc{bottom:409.158667pt;}
.y189{bottom:409.216000pt;}
.y15b{bottom:409.250667pt;}
.y26c{bottom:409.472000pt;}
.y3b{bottom:409.746667pt;}
.y29e{bottom:410.046667pt;}
.yd7{bottom:411.045333pt;}
.y20d{bottom:411.416000pt;}
.y139{bottom:412.826667pt;}
.y23b{bottom:413.390667pt;}
.ya5{bottom:416.422667pt;}
.y1cf{bottom:416.821333pt;}
.y89{bottom:417.077333pt;}
.y6b{bottom:421.980000pt;}
.y2b2{bottom:424.658667pt;}
.y1a5{bottom:426.981333pt;}
.yfb{bottom:427.224000pt;}
.y188{bottom:427.281333pt;}
.y15a{bottom:427.316000pt;}
.y138{bottom:427.438667pt;}
.y3a{bottom:427.812000pt;}
.y23a{bottom:428.002667pt;}
.y20c{bottom:429.481333pt;}
.y88{bottom:431.689333pt;}
.yd6{bottom:432.780000pt;}
.ya4{bottom:434.489333pt;}
.y1ce{bottom:434.886667pt;}
.y11d{bottom:436.109333pt;}
.y29d{bottom:439.270667pt;}
.y6a{bottom:440.045333pt;}
.y137{bottom:442.050667pt;}
.y239{bottom:442.614667pt;}
.y1a4{bottom:445.046667pt;}
.yfa{bottom:445.289333pt;}
.y187{bottom:445.346667pt;}
.y159{bottom:445.381333pt;}
.y223{bottom:445.557333pt;}
.y39{bottom:445.877333pt;}
.y87{bottom:446.301333pt;}
.y20b{bottom:447.548000pt;}
.yd5{bottom:450.845333pt;}
.y26b{bottom:450.856000pt;}
.ya3{bottom:452.554667pt;}
.y1cd{bottom:452.953333pt;}
.y29c{bottom:453.882667pt;}
.y11c{bottom:454.174667pt;}
.y21f{bottom:454.694667pt;}
.y136{bottom:456.661333pt;}
.y238{bottom:457.226667pt;}
.y69{bottom:458.110667pt;}
.y86{bottom:460.912000pt;}
.yf9{bottom:463.354667pt;}
.y186{bottom:463.412000pt;}
.y158{bottom:463.446667pt;}
.y38{bottom:463.944000pt;}
.y20a{bottom:465.613333pt;}
.y29b{bottom:468.494667pt;}
.yd4{bottom:468.910667pt;}
.y26a{bottom:468.921333pt;}
.y1a3{bottom:469.089333pt;}
.ya2{bottom:470.620000pt;}
.y135{bottom:471.273333pt;}
.y237{bottom:471.838667pt;}
.y85{bottom:475.524000pt;}
.y68{bottom:476.176000pt;}
.y1cc{bottom:476.996000pt;}
.yf8{bottom:481.420000pt;}
.y185{bottom:481.477333pt;}
.y157{bottom:481.512000pt;}
.y37{bottom:482.009333pt;}
.y29a{bottom:483.106667pt;}
.y134{bottom:485.885333pt;}
.y236{bottom:486.450667pt;}
.yd3{bottom:486.977333pt;}
.y269{bottom:486.986667pt;}
.y1a2{bottom:487.154667pt;}
.ya1{bottom:488.685333pt;}
.y11b{bottom:489.193333pt;}
.y209{bottom:489.656000pt;}
.y84{bottom:490.136000pt;}
.y67{bottom:494.241333pt;}
.y1cb{bottom:495.061333pt;}
.y299{bottom:497.718667pt;}
.yf7{bottom:499.486667pt;}
.y184{bottom:499.544000pt;}
.y156{bottom:499.577333pt;}
.y36{bottom:500.074667pt;}
.y133{bottom:500.497333pt;}
.y235{bottom:501.062667pt;}
.y268{bottom:505.052000pt;}
.y1a1{bottom:505.221333pt;}
.ya0{bottom:506.750667pt;}
.y11a{bottom:507.258667pt;}
.y208{bottom:507.721333pt;}
.y83{bottom:509.826667pt;}
.y66{bottom:512.308000pt;}
.y298{bottom:512.330667pt;}
.y1ca{bottom:513.126667pt;}
.y132{bottom:515.109333pt;}
.y234{bottom:515.674667pt;}
.yf6{bottom:517.552000pt;}
.y183{bottom:517.609333pt;}
.y35{bottom:518.140000pt;}
.y82{bottom:519.522667pt;}
.y267{bottom:523.118667pt;}
.y9f{bottom:524.816000pt;}
.y207{bottom:525.788000pt;}
.yd2{bottom:526.740000pt;}
.y297{bottom:526.942667pt;}
.y1a0{bottom:529.264000pt;}
.y131{bottom:529.721333pt;}
.y233{bottom:530.285333pt;}
.y65{bottom:530.373333pt;}
.y1c9{bottom:531.193333pt;}
.y119{bottom:532.626667pt;}
.yf5{bottom:535.617333pt;}
.y182{bottom:535.674667pt;}
.y155{bottom:535.864000pt;}
.y34{bottom:536.205333pt;}
.y81{bottom:539.213333pt;}
.y266{bottom:541.184000pt;}
.y2b1{bottom:541.553333pt;}
.y9e{bottom:542.882667pt;}
.y206{bottom:543.853333pt;}
.y130{bottom:544.333333pt;}
.yd1{bottom:544.806667pt;}
.y232{bottom:544.897333pt;}
.y19f{bottom:547.329333pt;}
.y64{bottom:548.438667pt;}
.y118{bottom:550.692000pt;}
.yf4{bottom:553.682667pt;}
.y181{bottom:553.740000pt;}
.y154{bottom:553.930667pt;}
.y33{bottom:554.272000pt;}
.y1c8{bottom:555.236000pt;}
.y296{bottom:556.165333pt;}
.y265{bottom:559.249333pt;}
.y231{bottom:559.509333pt;}
.y80{bottom:560.948000pt;}
.y205{bottom:561.918667pt;}
.yd0{bottom:562.872000pt;}
.y12f{bottom:564.024000pt;}
.y19e{bottom:565.394667pt;}
.y295{bottom:570.777333pt;}
.yf3{bottom:571.748000pt;}
.y180{bottom:571.805333pt;}
.y32{bottom:572.337333pt;}
.y63{bottom:573.180000pt;}
.y1c7{bottom:573.301333pt;}
.y12e{bottom:573.720000pt;}
.y117{bottom:576.061333pt;}
.y264{bottom:577.314667pt;}
.y7f{bottom:579.013333pt;}
.y230{bottom:579.200000pt;}
.y204{bottom:579.984000pt;}
.ycf{bottom:580.937333pt;}
.y294{bottom:585.389333pt;}
.y153{bottom:588.948000pt;}
.y19d{bottom:589.438667pt;}
.y17f{bottom:589.870667pt;}
.y31{bottom:590.402667pt;}
.y1c6{bottom:591.366667pt;}
.y12d{bottom:593.409333pt;}
.y22f{bottom:593.974667pt;}
.y263{bottom:595.380000pt;}
.y7e{bottom:597.078667pt;}
.y203{bottom:598.049333pt;}
.yce{bottom:599.002667pt;}
.y15{bottom:599.517333pt;}
.y2b0{bottom:600.001333pt;}
.y152{bottom:607.013333pt;}
.y19c{bottom:607.504000pt;}
.y17e{bottom:607.937333pt;}
.y30{bottom:608.468000pt;}
.yf2{bottom:611.512000pt;}
.y116{bottom:612.016000pt;}
.y262{bottom:613.446667pt;}
.y22e{bottom:614.350667pt;}
.y293{bottom:614.613333pt;}
.y62{bottom:615.144000pt;}
.y1c5{bottom:615.410667pt;}
.y14{bottom:615.457333pt;}
.y202{bottom:616.116000pt;}
.y151{bottom:625.078667pt;}
.y19b{bottom:625.569333pt;}
.y17d{bottom:626.002667pt;}
.y2f{bottom:626.533333pt;}
.y292{bottom:629.225333pt;}
.yf1{bottom:629.577333pt;}
.y115{bottom:630.082667pt;}
.y261{bottom:631.512000pt;}
.y61{bottom:633.210667pt;}
.y1c4{bottom:633.476000pt;}
.y201{bottom:634.181333pt;}
.ycd{bottom:638.766667pt;}
.y1e6{bottom:639.453333pt;}
.y150{bottom:643.144000pt;}
.y291{bottom:643.837333pt;}
.y17c{bottom:644.068000pt;}
.y2e{bottom:644.600000pt;}
.y13{bottom:647.337333pt;}
.yf0{bottom:647.642667pt;}
.y114{bottom:648.148000pt;}
.y260{bottom:649.577333pt;}
.y19a{bottom:649.612000pt;}
.y60{bottom:651.276000pt;}
.y1c3{bottom:651.541333pt;}
.y200{bottom:652.246667pt;}
.ycc{bottom:656.832000pt;}
.y1e5{bottom:657.518667pt;}
.y290{bottom:658.449333pt;}
.y14f{bottom:661.210667pt;}
.y17b{bottom:662.133333pt;}
.y2d{bottom:662.665333pt;}
.y12{bottom:663.277333pt;}
.yef{bottom:665.709333pt;}
.y113{bottom:666.213333pt;}
.y199{bottom:667.678667pt;}
.y5f{bottom:669.341333pt;}
.y1ff{bottom:670.312000pt;}
.y28f{bottom:673.061333pt;}
.y25f{bottom:673.622667pt;}
.ycb{bottom:674.897333pt;}
.y1c2{bottom:675.584000pt;}
.y11{bottom:679.218667pt;}
.y17a{bottom:680.198667pt;}
.y2c{bottom:680.730667pt;}
.y25e{bottom:683.600000pt;}
.yee{bottom:683.774667pt;}
.y112{bottom:684.278667pt;}
.y198{bottom:685.744000pt;}
.y14e{bottom:686.578667pt;}
.y5e{bottom:687.406667pt;}
.y28e{bottom:687.673333pt;}
.y1fe{bottom:688.377333pt;}
.yca{bottom:692.962667pt;}
.y1c1{bottom:693.650667pt;}
.y10{bottom:695.158667pt;}
.y179{bottom:698.265333pt;}
.y2b{bottom:698.796000pt;}
.y1e4{bottom:699.628000pt;}
.yed{bottom:701.840000pt;}
.y28d{bottom:702.284000pt;}
.y111{bottom:702.344000pt;}
.y197{bottom:703.809333pt;}
.y5d{bottom:705.472000pt;}
.yc9{bottom:711.029333pt;}
.yf{bottom:711.098667pt;}
.y1c0{bottom:711.716000pt;}
.y178{bottom:716.330667pt;}
.y2a{bottom:716.861333pt;}
.y2af{bottom:716.896000pt;}
.y1e3{bottom:717.693333pt;}
.y1fd{bottom:718.398667pt;}
.yec{bottom:719.905333pt;}
.y110{bottom:720.410667pt;}
.y196{bottom:721.874667pt;}
.y5c{bottom:723.538667pt;}
.y25d{bottom:724.084000pt;}
.ye{bottom:727.038667pt;}
.yc8{bottom:729.094667pt;}
.y28c{bottom:731.508000pt;}
.y177{bottom:734.396000pt;}
.y29{bottom:734.928000pt;}
.y1bf{bottom:735.758667pt;}
.yeb{bottom:737.970667pt;}
.y10f{bottom:738.476000pt;}
.y5b{bottom:741.604000pt;}
.y1e2{bottom:741.736000pt;}
.y25c{bottom:742.150667pt;}
.yd{bottom:742.978667pt;}
.y1fc{bottom:743.140000pt;}
.y195{bottom:745.918667pt;}
.y28b{bottom:746.120000pt;}
.yc7{bottom:747.160000pt;}
.y22b{bottom:751.186667pt;}
.y176{bottom:752.461333pt;}
.y28{bottom:752.993333pt;}
.y1be{bottom:753.824000pt;}
.yea{bottom:756.037333pt;}
.y10e{bottom:756.541333pt;}
.yc{bottom:758.918667pt;}
.y5a{bottom:759.669333pt;}
.y1e1{bottom:759.802667pt;}
.y21e{bottom:759.924000pt;}
.y28a{bottom:760.732000pt;}
.y194{bottom:763.984000pt;}
.yc6{bottom:765.225333pt;}
.y25b{bottom:768.704000pt;}
.y175{bottom:770.526667pt;}
.y27{bottom:771.058667pt;}
.y1bd{bottom:771.890667pt;}
.ye9{bottom:774.102667pt;}
.y10d{bottom:774.606667pt;}
.yb{bottom:774.860000pt;}
.y289{bottom:775.344000pt;}
.y59{bottom:777.734667pt;}
.y1e0{bottom:777.868000pt;}
.y193{bottom:782.049333pt;}
.yc5{bottom:783.290667pt;}
.y1fb{bottom:784.573333pt;}
.y174{bottom:788.593333pt;}
.y26{bottom:789.124000pt;}
.y288{bottom:789.956000pt;}
.ya{bottom:790.800000pt;}
.y10c{bottom:792.672000pt;}
.y58{bottom:795.800000pt;}
.y1bc{bottom:795.933333pt;}
.y192{bottom:800.114667pt;}
.yc4{bottom:801.357333pt;}
.y1fa{bottom:802.638667pt;}
.y287{bottom:804.568000pt;}
.y25a{bottom:804.836000pt;}
.y173{bottom:806.658667pt;}
.y9{bottom:806.740000pt;}
.y25{bottom:807.189333pt;}
.y57{bottom:813.866667pt;}
.y1bb{bottom:813.998667pt;}
.y286{bottom:819.180000pt;}
.yc3{bottom:819.422667pt;}
.y1df{bottom:819.976000pt;}
.y22d{bottom:822.410667pt;}
.y259{bottom:822.901333pt;}
.y191{bottom:824.158667pt;}
.y172{bottom:824.724000pt;}
.y24{bottom:825.254667pt;}
.y56{bottom:831.932000pt;}
.y285{bottom:833.792000pt;}
.y1f9{bottom:836.644000pt;}
.yc2{bottom:837.488000pt;}
.y1ba{bottom:838.042667pt;}
.y8{bottom:838.620000pt;}
.y190{bottom:842.224000pt;}
.y171{bottom:842.789333pt;}
.y258{bottom:843.105333pt;}
.y23{bottom:843.321333pt;}
.y21d{bottom:844.164000pt;}
.y284{bottom:848.402667pt;}
.y55{bottom:849.997333pt;}
.y257{bottom:853.082667pt;}
.y1f8{bottom:854.710667pt;}
.yc1{bottom:855.553333pt;}
.y1b9{bottom:856.108000pt;}
.y170{bottom:860.854667pt;}
.y22{bottom:861.386667pt;}
.y1de{bottom:862.085333pt;}
.y283{bottom:863.014667pt;}
.y18f{bottom:866.266667pt;}
.y54{bottom:868.062667pt;}
.y1f7{bottom:872.776000pt;}
.yc0{bottom:873.618667pt;}
.y1b8{bottom:874.173333pt;}
.y7{bottom:877.446667pt;}
.y282{bottom:877.626667pt;}
.y16f{bottom:878.921333pt;}
.y21{bottom:879.452000pt;}
.y1dd{bottom:880.150667pt;}
.y18e{bottom:884.332000pt;}
.y53{bottom:886.128000pt;}
.y1f6{bottom:890.841333pt;}
.y281{bottom:892.238667pt;}
.y256{bottom:892.362667pt;}
.y6{bottom:893.386667pt;}
.y16e{bottom:896.986667pt;}
.y20{bottom:897.517333pt;}
.y1b7{bottom:898.216000pt;}
.ybf{bottom:898.361333pt;}
.y18d{bottom:902.398667pt;}
.y52{bottom:904.194667pt;}
.y280{bottom:906.850667pt;}
.y1f5{bottom:908.906667pt;}
.y255{bottom:910.428000pt;}
.y5{bottom:911.780000pt;}
.y16d{bottom:915.052000pt;}
.y1f{bottom:915.582667pt;}
.y1b6{bottom:916.282667pt;}
.y27f{bottom:921.462667pt;}
.y51{bottom:922.260000pt;}
.y18c{bottom:926.441333pt;}
.y1f4{bottom:926.972000pt;}
.y254{bottom:928.493333pt;}
.y4{bottom:930.376000pt;}
.y16c{bottom:933.117333pt;}
.y1e{bottom:933.649333pt;}
.y1b5{bottom:934.348000pt;}
.y27e{bottom:936.074667pt;}
.y50{bottom:940.325333pt;}
.y18b{bottom:944.506667pt;}
.y1f3{bottom:945.038667pt;}
.y27d{bottom:950.686667pt;}
.y16b{bottom:951.182667pt;}
.y1d{bottom:951.714667pt;}
.y253{bottom:957.193333pt;}
.y4f{bottom:958.390667pt;}
.y252{bottom:962.209333pt;}
.y3{bottom:963.518667pt;}
.y27c{bottom:965.298667pt;}
.y18a{bottom:969.249333pt;}
.y1c{bottom:969.780000pt;}
.y16a{bottom:975.925333pt;}
.y4e{bottom:976.456000pt;}
.y27b{bottom:979.910667pt;}
.y251{bottom:989.506667pt;}
.y2{bottom:992.742667pt;}
.y1b{bottom:994.521333pt;}
.y250{bottom:1001.293333pt;}
.y1{bottom:1071.246667pt;}
.hb{height:22.447133pt;}
.h6{height:26.188072pt;}
.he{height:28.692360pt;}
.hd{height:29.929386pt;}
.h15{height:29.935821pt;}
.h14{height:33.283277pt;}
.h8{height:33.670700pt;}
.h2{height:37.411639pt;}
.h11{height:39.330942pt;}
.h7{height:40.965943pt;}
.h9{height:44.894267pt;}
.hc{height:51.038719pt;}
.ha{height:51.044053pt;}
.h5{height:53.065386pt;}
.h4{height:53.070719pt;}
.hf{height:57.012053pt;}
.h3{height:64.647414pt;}
.h10{height:80.325943pt;}
.h12{height:84.364608pt;}
.h13{height:124.273941pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.693333pt;}
.xb{left:113.385333pt;}
.xa{left:114.382667pt;}
.x13{left:120.658667pt;}
.x15{left:122.218667pt;}
.x44{left:127.453333pt;}
.x2{left:132.757333pt;}
.xd{left:135.968000pt;}
.x12{left:137.296000pt;}
.xe{left:138.290667pt;}
.x6b{left:140.838667pt;}
.x10{left:147.206667pt;}
.x4{left:148.366667pt;}
.x9{left:149.749333pt;}
.x14{left:152.164000pt;}
.x16{left:154.989333pt;}
.xf{left:158.929333pt;}
.x45{left:159.994667pt;}
.x72{left:163.585333pt;}
.x22{left:166.941333pt;}
.x46{left:172.613333pt;}
.x17{left:174.912000pt;}
.x6c{left:176.417333pt;}
.x47{left:185.233333pt;}
.x25{left:187.530667pt;}
.x73{left:188.685333pt;}
.x23{left:192.841333pt;}
.x48{left:197.852000pt;}
.x26{left:200.150667pt;}
.x18{left:207.453333pt;}
.x49{left:210.472000pt;}
.x27{left:212.769333pt;}
.x5{left:213.912000pt;}
.x6{left:218.973333pt;}
.x4a{left:223.090667pt;}
.x28{left:225.389333pt;}
.x4b{left:235.710667pt;}
.x29{left:238.008000pt;}
.x19{left:239.994667pt;}
.x65{left:243.013333pt;}
.x24{left:244.641333pt;}
.x2a{left:250.628000pt;}
.x70{left:253.741333pt;}
.x66{left:255.633333pt;}
.x2b{left:263.246667pt;}
.x4c{left:268.252000pt;}
.x1a{left:272.536000pt;}
.x6e{left:274.324000pt;}
.x7{left:281.501333pt;}
.x4d{left:293.490667pt;}
.x2c{left:295.789333pt;}
.x3{left:297.384000pt;}
.x1b{left:305.078667pt;}
.x4e{left:306.110667pt;}
.x2d{left:308.408000pt;}
.x4f{left:318.729333pt;}
.x2e{left:321.028000pt;}
.x50{left:331.349333pt;}
.x2f{left:333.646667pt;}
.x1c{left:337.620000pt;}
.x51{left:343.968000pt;}
.x30{left:346.266667pt;}
.x52{left:356.588000pt;}
.x31{left:358.885333pt;}
.x67{left:363.890667pt;}
.x8{left:369.786667pt;}
.x32{left:371.505333pt;}
.x68{left:376.509333pt;}
.x33{left:384.124000pt;}
.x11{left:389.577333pt;}
.xc{left:393.214667pt;}
.x53{left:401.748000pt;}
.x1d{left:402.702667pt;}
.x54{left:414.368000pt;}
.x34{left:416.665333pt;}
.x71{left:423.298667pt;}
.x55{left:426.986667pt;}
.x35{left:429.285333pt;}
.x1e{left:435.245333pt;}
.x56{left:439.606667pt;}
.x36{left:441.904000pt;}
.x6d{left:444.302667pt;}
.x6f{left:446.528000pt;}
.x57{left:452.225333pt;}
.x37{left:454.524000pt;}
.x58{left:464.845333pt;}
.x1f{left:467.786667pt;}
.x59{left:477.464000pt;}
.x38{left:479.762667pt;}
.x69{left:484.766667pt;}
.x39{left:492.381333pt;}
.x6a{left:497.386667pt;}
.x20{left:500.328000pt;}
.x3a{left:505.001333pt;}
.x5a{left:510.005333pt;}
.x5b{left:522.625333pt;}
.x21{left:532.869333pt;}
.x5c{left:535.244000pt;}
.x3b{left:537.542667pt;}
.x5d{left:547.864000pt;}
.x3c{left:550.162667pt;}
.x5e{left:560.482667pt;}
.x3d{left:562.781333pt;}
.x5f{left:573.102667pt;}
.x3e{left:575.400000pt;}
.x60{left:585.721333pt;}
.x3f{left:588.020000pt;}
.x61{left:598.341333pt;}
.x40{left:600.640000pt;}
.x41{left:613.258667pt;}
.x42{left:625.878667pt;}
.x62{left:630.882667pt;}
.x63{left:643.502667pt;}
.x64{left:663.424000pt;}
.x43{left:665.722667pt;}
}




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