
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62cfe37368d4dea0bb6b4b34.woff2')format("woff");}.ff4{font-family:ff4;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a7797ef67ca8183fc451f2c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2af586ec99318dde7d1e9625.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_06137922b5f4ae46c359ecf4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.454000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a1f0cbf4a52a71380a93f05a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_9493bc784fea81964201638d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.803000;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_a770ee465dc170fd56a92a97.woff2')format("woff");}.fff{font-family:fff;line-height:3.625000;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_33185270a51374a8639242f0.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_eadef1cc8f99e3735c0c5d67.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.808000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2cf3224e1ea3c6c188c90162.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2ebbf10a763e902bdac2bd9b.woff2')format("woff");}.ff13{font-family:ff13;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;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ebd29dac2c53ec8adf53868b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.635000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d448582ee2805f61611f28ae.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.486000;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.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);}
.v2{vertical-align:-9.822000px;}
.va{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:3.798000px;}
.vb{vertical-align:9.816000px;}
.vd{vertical-align:13.614000px;}
.vc{vertical-align:16.626000px;}
.v5{vertical-align:18.906000px;}
.v1{vertical-align:23.754000px;}
.v6{vertical-align:24.786000px;}
.v12{vertical-align:27.030000px;}
.vf{vertical-align:31.842000px;}
.v9{vertical-align:37.788000px;}
.v10{vertical-align:40.828930px;}
.v4{vertical-align:44.280000px;}
.v8{vertical-align:47.610000px;}
.v11{vertical-align:81.663888px;}
.v3{vertical-align:103.638000px;}
.v7{vertical-align:151.242000px;}
.ls1{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000557px;}
.ls36{letter-spacing:0.001405px;}
.ls43{letter-spacing:0.001490px;}
.ls1a{letter-spacing:0.001590px;}
.lsd{letter-spacing:0.001611px;}
.ls3a{letter-spacing:0.001670px;}
.ls41{letter-spacing:0.002147px;}
.ls21{letter-spacing:0.002682px;}
.ls5{letter-spacing:0.002688px;}
.ls57{letter-spacing:0.002694px;}
.ls0{letter-spacing:0.002700px;}
.ls7{letter-spacing:0.002706px;}
.ls25{letter-spacing:0.002712px;}
.ls59{letter-spacing:0.002724px;}
.ls5c{letter-spacing:0.003229px;}
.ls20{letter-spacing:0.003791px;}
.ls11{letter-spacing:0.007611px;}
.ls8{letter-spacing:1.819611px;}
.ls18{letter-spacing:1.825611px;}
.ls4b{letter-spacing:2.350878px;}
.lse{letter-spacing:2.984915px;}
.ls54{letter-spacing:2.986200px;}
.ls3d{letter-spacing:2.988532px;}
.ls55{letter-spacing:2.989289px;}
.lsf{letter-spacing:2.990915px;}
.ls17{letter-spacing:2.992200px;}
.ls48{letter-spacing:5.132158px;}
.ls49{letter-spacing:5.138158px;}
.ls50{letter-spacing:9.086147px;}
.ls42{letter-spacing:9.092147px;}
.ls64{letter-spacing:10.640700px;}
.ls2d{letter-spacing:10.904712px;}
.ls9{letter-spacing:10.907412px;}
.ls2f{letter-spacing:10.910712px;}
.ls6{letter-spacing:13.894200px;}
.ls12{letter-spacing:14.541657px;}
.lsc{letter-spacing:14.543412px;}
.ls61{letter-spacing:14.549412px;}
.ls15{letter-spacing:15.311412px;}
.ls35{letter-spacing:15.361985px;}
.ls1f{letter-spacing:16.101832px;}
.ls10{letter-spacing:16.363611px;}
.lsb{letter-spacing:16.369611px;}
.ls53{letter-spacing:16.821832px;}
.ls5e{letter-spacing:16.894878px;}
.ls47{letter-spacing:17.530200px;}
.ls5f{letter-spacing:17.532103px;}
.ls62{letter-spacing:17.534915px;}
.ls5d{letter-spacing:17.538103px;}
.ls4e{letter-spacing:17.834915px;}
.ls34{letter-spacing:18.179412px;}
.ls2c{letter-spacing:18.179418px;}
.ls3e{letter-spacing:18.182682px;}
.ls4a{letter-spacing:18.196379px;}
.ls66{letter-spacing:18.239412px;}
.ls6a{letter-spacing:18.629412px;}
.ls22{letter-spacing:19.243652px;}
.ls14{letter-spacing:19.445412px;}
.ls3c{letter-spacing:19.759559px;}
.ls2{letter-spacing:19.963653px;}
.ls4{letter-spacing:20.160017px;}
.ls69{letter-spacing:20.455611px;}
.ls2b{letter-spacing:21.164915px;}
.ls30{letter-spacing:21.170915px;}
.ls2e{letter-spacing:21.171543px;}
.ls44{letter-spacing:21.213358px;}
.ls45{letter-spacing:21.219358px;}
.ls13{letter-spacing:21.271611px;}
.ls19{letter-spacing:21.665473px;}
.ls60{letter-spacing:21.675229px;}
.ls63{letter-spacing:21.719412px;}
.ls4c{letter-spacing:21.932915px;}
.ls4d{letter-spacing:21.934200px;}
.ls1d{letter-spacing:21.946200px;}
.ls4f{letter-spacing:21.992746px;}
.ls37{letter-spacing:22.746532px;}
.ls3b{letter-spacing:22.748352px;}
.ls39{letter-spacing:22.752532px;}
.ls56{letter-spacing:22.843655px;}
.ls3{letter-spacing:23.432747px;}
.ls31{letter-spacing:23.606915px;}
.ls52{letter-spacing:25.223428px;}
.ls1e{letter-spacing:25.330930px;}
.ls32{letter-spacing:25.461839px;}
.ls26{letter-spacing:25.772915px;}
.ls16{letter-spacing:26.186915px;}
.ls27{letter-spacing:26.481242px;}
.ls28{letter-spacing:26.487242px;}
.ls51{letter-spacing:26.753428px;}
.ls40{letter-spacing:27.244332px;}
.ls68{letter-spacing:27.695412px;}
.ls1b{letter-spacing:27.720532px;}
.ls5b{letter-spacing:28.293859px;}
.ls1c{letter-spacing:29.192752px;}
.ls65{letter-spacing:29.227611px;}
.ls46{letter-spacing:29.494332px;}
.ls67{letter-spacing:29.515611px;}
.ls23{letter-spacing:30.536915px;}
.ls24{letter-spacing:30.542915px;}
.ls3f{letter-spacing:33.254915px;}
.ls2a{letter-spacing:45.554915px;}
.ls33{letter-spacing:45.560915px;}
.ls29{letter-spacing:48.578915px;}
.ls58{letter-spacing:133.979625px;}
.lsa{letter-spacing:265.221657px;}
.ls5a{letter-spacing:285.663293px;}
.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;}
}
.ws71{word-spacing:-65.454600px;}
.ws59{word-spacing:-47.376039px;}
.wsd2{word-spacing:-42.831125px;}
.ws11{word-spacing:-42.637126px;}
.wsb4{word-spacing:-36.379667px;}
.ws8c{word-spacing:-36.071827px;}
.ws68{word-spacing:-23.458929px;}
.wsd1{word-spacing:-18.266022px;}
.wsb{word-spacing:-18.183288px;}
.ws82{word-spacing:-15.359443px;}
.ws32{word-spacing:-7.317824px;}
.ws31{word-spacing:-7.280349px;}
.ws93{word-spacing:-7.262889px;}
.ws33{word-spacing:-3.652367px;}
.wsb5{word-spacing:-3.325094px;}
.ws9f{word-spacing:-3.093408px;}
.wseb{word-spacing:-0.052364px;}
.ws3b{word-spacing:-0.047821px;}
.ws9b{word-spacing:-0.035866px;}
.ws85{word-spacing:-0.026899px;}
.ws30{word-spacing:-0.017548px;}
.ws16{word-spacing:0.000000px;}
.ws79{word-spacing:0.013091px;}
.ws5a{word-spacing:0.733092px;}
.wsba{word-spacing:1.518547px;}
.wsc5{word-spacing:1.845820px;}
.ws7e{word-spacing:2.173093px;}
.ws7b{word-spacing:2.434911px;}
.ws78{word-spacing:3.024003px;}
.ws72{word-spacing:4.117475px;}
.ws70{word-spacing:4.123475px;}
.ws87{word-spacing:4.384570px;}
.ws6d{word-spacing:4.594913px;}
.ws74{word-spacing:5.969460px;}
.wsf2{word-spacing:9.242190px;}
.ws42{word-spacing:9.334022px;}
.ws6c{word-spacing:9.373099px;}
.ws43{word-spacing:9.387821px;}
.wsc4{word-spacing:9.896736px;}
.ws39{word-spacing:10.093099px;}
.wsa0{word-spacing:10.234200px;}
.ws77{word-spacing:11.729464px;}
.ws91{word-spacing:12.056737px;}
.ws84{word-spacing:12.642624px;}
.wse5{word-spacing:12.938515px;}
.wsbe{word-spacing:13.073011px;}
.ws5d{word-spacing:14.465467px;}
.wsfd{word-spacing:14.727285px;}
.ws20{word-spacing:14.923649px;}
.ws8e{word-spacing:14.955955px;}
.ws3f{word-spacing:15.117350px;}
.ws10b{word-spacing:15.250922px;}
.wse2{word-spacing:15.601536px;}
.ws109{word-spacing:15.643649px;}
.ws4{word-spacing:15.970922px;}
.ws99{word-spacing:15.978125px;}
.ws10d{word-spacing:16.036377px;}
.ws55{word-spacing:16.101832px;}
.ws53{word-spacing:16.232741px;}
.ws102{word-spacing:16.363650px;}
.ws56{word-spacing:16.408512px;}
.ws24{word-spacing:16.429105px;}
.wsc3{word-spacing:16.560014px;}
.ws5{word-spacing:16.756378px;}
.ws66{word-spacing:16.821832px;}
.ws1f{word-spacing:17.018196px;}
.ws7f{word-spacing:17.083651px;}
.wsaf{word-spacing:17.345469px;}
.ws12{word-spacing:17.476378px;}
.wsc8{word-spacing:17.541833px;}
.wsc2{word-spacing:17.607287px;}
.wsc1{word-spacing:17.672742px;}
.wsae{word-spacing:17.869106px;}
.wse9{word-spacing:18.065470px;}
.wsfa{word-spacing:18.237658px;}
.ws3a{word-spacing:18.258943px;}
.ws9d{word-spacing:18.291456px;}
.ws4f{word-spacing:18.392743px;}
.ws44{word-spacing:18.399053px;}
.ws8a{word-spacing:18.452851px;}
.ws50{word-spacing:18.523652px;}
.wsb2{word-spacing:18.589106px;}
.ws4e{word-spacing:18.654561px;}
.ws6{word-spacing:18.720016px;}
.wsf8{word-spacing:18.785470px;}
.ws81{word-spacing:18.829440px;}
.ws98{word-spacing:18.850925px;}
.ws83{word-spacing:18.883238px;}
.ws63{word-spacing:18.916379px;}
.wsfb{word-spacing:19.044634px;}
.ws67{word-spacing:19.178198px;}
.ws6b{word-spacing:19.243652px;}
.ws89{word-spacing:19.259827px;}
.wsc0{word-spacing:19.309107px;}
.ws4b{word-spacing:19.440016px;}
.wsc7{word-spacing:19.505471px;}
.ws64{word-spacing:19.570925px;}
.wsad{word-spacing:19.701835px;}
.ws3{word-spacing:19.744013px;}
.wsa6{word-spacing:19.767289px;}
.ws17{word-spacing:19.963653px;}
.wsf7{word-spacing:20.029108px;}
.wse6{word-spacing:20.066803px;}
.ws1d{word-spacing:20.160017px;}
.ws6f{word-spacing:20.225471px;}
.ws65{word-spacing:20.290926px;}
.wsb1{word-spacing:20.356381px;}
.wsaa{word-spacing:20.487290px;}
.ws4d{word-spacing:20.618199px;}
.wsf{word-spacing:20.749108px;}
.wscc{word-spacing:20.814563px;}
.wsa8{word-spacing:20.880017px;}
.wsa9{word-spacing:20.945472px;}
.ws2e{word-spacing:21.010927px;}
.ws86{word-spacing:21.035174px;}
.ws69{word-spacing:21.076381px;}
.ws88{word-spacing:21.088973px;}
.wsa7{word-spacing:21.141836px;}
.ws4a{word-spacing:21.272745px;}
.wsfc{word-spacing:21.403654px;}
.ws1e{word-spacing:21.534563px;}
.wsbb{word-spacing:21.600018px;}
.ws2{word-spacing:21.665473px;}
.ws1{word-spacing:21.730927px;}
.wsdc{word-spacing:21.764051px;}
.wsce{word-spacing:21.829803px;}
.wsbd{word-spacing:21.842150px;}
.wse8{word-spacing:21.861836px;}
.ws2b{word-spacing:21.927291px;}
.wsf5{word-spacing:21.992746px;}
.wsb7{word-spacing:22.058200px;}
.ws49{word-spacing:22.123655px;}
.ws9a{word-spacing:22.164941px;}
.ws10a{word-spacing:22.189109px;}
.ws9c{word-spacing:22.218739px;}
.ws61{word-spacing:22.254564px;}
.ws6e{word-spacing:22.385473px;}
.wsf6{word-spacing:22.450928px;}
.wsbc{word-spacing:22.516382px;}
.ws7a{word-spacing:22.581837px;}
.ws1a{word-spacing:22.647292px;}
.ws8d{word-spacing:22.702925px;}
.ws8b{word-spacing:22.756723px;}
.wsc6{word-spacing:22.778201px;}
.ws3c{word-spacing:22.843655px;}
.ws29{word-spacing:22.909110px;}
.ws40{word-spacing:22.918118px;}
.wse3{word-spacing:22.971917px;}
.wsa{word-spacing:22.974565px;}
.ws48{word-spacing:23.040019px;}
.ws80{word-spacing:23.105474px;}
.ws7c{word-spacing:23.170928px;}
.ws37{word-spacing:23.236383px;}
.ws9{word-spacing:23.301838px;}
.ws118{word-spacing:23.367292px;}
.ws10c{word-spacing:23.432747px;}
.ws18{word-spacing:23.498201px;}
.wscd{word-spacing:23.563656px;}
.wsf9{word-spacing:23.617498px;}
.wsa3{word-spacing:23.694565px;}
.wsc{word-spacing:23.760020px;}
.ws45{word-spacing:23.825474px;}
.wscb{word-spacing:23.890929px;}
.ws73{word-spacing:23.956384px;}
.ws41{word-spacing:24.047885px;}
.ws25{word-spacing:24.087293px;}
.ws1b{word-spacing:24.152747px;}
.wsc9{word-spacing:24.218202px;}
.ws2a{word-spacing:24.283657px;}
.ws7d{word-spacing:24.349111px;}
.ws58{word-spacing:24.480020px;}
.ws9e{word-spacing:24.532070px;}
.wsa2{word-spacing:24.545475px;}
.ws103{word-spacing:24.610930px;}
.ws3d{word-spacing:24.676384px;}
.ws2f{word-spacing:24.741839px;}
.wsb0{word-spacing:24.807293px;}
.ws54{word-spacing:24.938203px;}
.ws7{word-spacing:25.134566px;}
.ws15{word-spacing:25.200021px;}
.ws5e{word-spacing:25.265476px;}
.ws60{word-spacing:25.330930px;}
.wsab{word-spacing:25.396385px;}
.ws5b{word-spacing:25.461839px;}
.ws2d{word-spacing:25.592749px;}
.ws2c{word-spacing:25.658203px;}
.ws51{word-spacing:25.723658px;}
.wsf3{word-spacing:25.789112px;}
.ws52{word-spacing:25.920022px;}
.ws106{word-spacing:25.985476px;}
.ws10{word-spacing:26.050931px;}
.ws75{word-spacing:26.116385px;}
.wsf0{word-spacing:26.181840px;}
.wse4{word-spacing:26.199821px;}
.ws8{word-spacing:26.247295px;}
.ws62{word-spacing:26.312749px;}
.wsa4{word-spacing:26.378204px;}
.ws105{word-spacing:26.509113px;}
.ws95{word-spacing:26.574568px;}
.ws96{word-spacing:26.640022px;}
.ws6a{word-spacing:26.705477px;}
.ws23{word-spacing:26.901841px;}
.wse7{word-spacing:26.967295px;}
.ws57{word-spacing:27.032750px;}
.ws8f{word-spacing:27.098204px;}
.ws27{word-spacing:27.163659px;}
.wsca{word-spacing:27.229114px;}
.ws0{word-spacing:27.286472px;}
.ws14{word-spacing:27.294568px;}
.wsf4{word-spacing:27.360023px;}
.ws4c{word-spacing:27.425477px;}
.wsa5{word-spacing:27.556387px;}
.ws5f{word-spacing:27.621841px;}
.ws38{word-spacing:27.752750px;}
.wsfe{word-spacing:27.818205px;}
.wsb3{word-spacing:27.883660px;}
.ws117{word-spacing:27.949114px;}
.ws34{word-spacing:28.014569px;}
.ws26{word-spacing:28.080023px;}
.ws1c{word-spacing:28.145478px;}
.wse{word-spacing:28.210933px;}
.ws47{word-spacing:28.276387px;}
.ws97{word-spacing:28.341842px;}
.wsa1{word-spacing:28.407296px;}
.ws94{word-spacing:28.472751px;}
.ws28{word-spacing:28.538206px;}
.ws76{word-spacing:28.669115px;}
.wsf1{word-spacing:28.800024px;}
.ws90{word-spacing:28.930933px;}
.ws36{word-spacing:28.996388px;}
.ws110{word-spacing:29.127297px;}
.ws35{word-spacing:29.389115px;}
.wsea{word-spacing:29.543185px;}
.wsed{word-spacing:29.559671px;}
.wsd{word-spacing:29.650934px;}
.wsb8{word-spacing:29.912752px;}
.ws100{word-spacing:30.043661px;}
.ws119{word-spacing:30.109116px;}
.ws5c{word-spacing:30.174571px;}
.ws10e{word-spacing:30.240025px;}
.wsb6{word-spacing:30.305480px;}
.wsb9{word-spacing:30.632753px;}
.ws46{word-spacing:30.698207px;}
.ws21{word-spacing:30.763662px;}
.ws101{word-spacing:30.894571px;}
.ws92{word-spacing:31.025480px;}
.ws10f{word-spacing:31.090935px;}
.ws104{word-spacing:31.156390px;}
.ws113{word-spacing:31.221844px;}
.wsbf{word-spacing:31.352753px;}
.ws112{word-spacing:31.680026px;}
.wsef{word-spacing:31.941845px;}
.ws114{word-spacing:32.007299px;}
.ws19{word-spacing:34.298210px;}
.ws13{word-spacing:37.374577px;}
.wsff{word-spacing:38.029123px;}
.ws111{word-spacing:39.730942px;}
.wsac{word-spacing:39.927306px;}
.ws116{word-spacing:41.563671px;}
.ws22{word-spacing:42.676399px;}
.ws108{word-spacing:53.738227px;}
.ws107{word-spacing:54.850955px;}
.ws115{word-spacing:57.272775px;}
.wsd5{word-spacing:72.920397px;}
.wsd0{word-spacing:99.512865px;}
.wsd9{word-spacing:105.805346px;}
.wsde{word-spacing:122.238478px;}
.wsd4{word-spacing:126.515149px;}
.wsda{word-spacing:142.951596px;}
.wsdb{word-spacing:142.954911px;}
.wsd7{word-spacing:148.490685px;}
.wsdd{word-spacing:159.390755px;}
.wsd8{word-spacing:159.394070px;}
.wse1{word-spacing:171.551134px;}
.wsd3{word-spacing:185.215023px;}
.wsdf{word-spacing:194.095949px;}
.wse0{word-spacing:208.706727px;}
.wsd6{word-spacing:218.087918px;}
.wscf{word-spacing:228.694572px;}
.wsee{word-spacing:248.832207px;}
.wsec{word-spacing:571.981568px;}
.ws3e{word-spacing:1200.213531px;}
._1d{margin-left:-29.187467px;}
._24{margin-left:-18.224336px;}
._32{margin-left:-7.200006px;}
._b{margin-left:-5.432732px;}
._30{margin-left:-4.404300px;}
._1{margin-left:-3.357026px;}
._0{margin-left:-2.238007px;}
._4{margin-left:-1.022172px;}
._2{width:1.000644px;}
._3{width:2.238007px;}
._22{width:3.819686px;}
._19{width:7.290002px;}
._1e{width:15.905468px;}
._5{width:17.803651px;}
._23{width:18.897538px;}
._6{width:19.932277px;}
._20{width:21.319375px;}
._1a{width:22.971917px;}
._c{width:24.308758px;}
._18{width:25.408936px;}
._10{width:26.724319px;}
._9{width:27.765301px;}
._f{width:29.217853px;}
._1c{width:30.526945px;}
._e{width:31.614572px;}
._14{width:33.151420px;}
._a{width:34.781494px;}
._12{width:36.327303px;}
._17{width:37.617570px;}
._7{width:39.141851px;}
._26{width:40.332584px;}
._1b{width:41.478566px;}
._8{width:42.950768px;}
._15{width:45.188776px;}
._1f{width:46.210948px;}
._2d{width:47.826778px;}
._16{width:49.072125px;}
._d{width:52.952771px;}
._13{width:56.434416px;}
._21{width:57.811666px;}
._2f{width:59.582528px;}
._25{width:65.061872px;}
._29{width:74.862995px;}
._2e{width:94.517339px;}
._31{width:128.711531px;}
._28{width:131.798190px;}
._27{width:171.171991px;}
._2a{width:196.685313px;}
._2c{width:276.284814px;}
._2b{width:334.978662px;}
._11{width:1434.426739px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:48.038184px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs7{font-size:65.752418px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y23{bottom:169.011000px;}
.ya3{bottom:209.383500px;}
.ya2{bottom:209.685000px;}
.y22{bottom:213.841500px;}
.y4a{bottom:213.843000px;}
.y21{bottom:219.555000px;}
.y90{bottom:225.825000px;}
.y49{bottom:234.166500px;}
.ya1{bottom:235.690500px;}
.y8f{bottom:242.263500px;}
.y48{bottom:254.490000px;}
.ya0{bottom:256.014000px;}
.y88{bottom:263.349000px;}
.y20{bottom:264.396000px;}
.y65{bottom:267.507000px;}
.y150{bottom:268.938000px;}
.y87{bottom:273.444000px;}
.y47{bottom:274.813500px;}
.y9f{bottom:276.337500px;}
.y7a{bottom:280.317000px;}
.y1f{bottom:284.719500px;}
.y64{bottom:287.830500px;}
.y14f{bottom:289.261500px;}
.y11b{bottom:292.734000px;}
.y46{bottom:295.137000px;}
.y9e{bottom:296.661000px;}
.y63{bottom:308.154000px;}
.yd2{bottom:309.024000px;}
.y11a{bottom:313.057500px;}
.y134{bottom:313.449000px;}
.y45{bottom:315.460500px;}
.y10b{bottom:315.462000px;}
.y9d{bottom:316.984500px;}
.y14e{bottom:324.031500px;}
.yd1{bottom:325.462500px;}
.yb7{bottom:325.881000px;}
.y1e{bottom:328.194000px;}
.y62{bottom:328.477500px;}
.yf1{bottom:329.625000px;}
.y119{bottom:333.381000px;}
.y133{bottom:333.772500px;}
.y44{bottom:335.785500px;}
.y9c{bottom:337.309500px;}
.y79{bottom:339.916500px;}
.y14d{bottom:344.356500px;}
.ydb{bottom:346.204500px;}
.y61{bottom:348.801000px;}
.yb6{bottom:348.802500px;}
.y43{bottom:356.109000px;}
.y9b{bottom:357.633000px;}
.y78{bottom:360.240000px;}
.yce{bottom:364.098000px;}
.y14c{bottom:364.680000px;}
.y60{bottom:369.126000px;}
.y132{bottom:372.406500px;}
.y118{bottom:373.860000px;}
.y42{bottom:376.432500px;}
.y9a{bottom:377.956500px;}
.yf0{bottom:380.254500px;}
.y77{bottom:380.563500px;}
.ycd{bottom:384.421500px;}
.yb5{bottom:384.990000px;}
.y86{bottom:385.291500px;}
.yda{bottom:386.851500px;}
.y5f{bottom:389.449500px;}
.y131{bottom:392.730000px;}
.y1d{bottom:394.810500px;}
.y85{bottom:395.388000px;}
.y10a{bottom:396.756000px;}
.y14b{bottom:399.451500px;}
.yef{bottom:400.578000px;}
.y76{bottom:400.888500px;}
.ycc{bottom:404.746500px;}
.y5e{bottom:409.773000px;}
.y41{bottom:409.888500px;}
.y130{bottom:413.053500px;}
.y1c{bottom:415.134000px;}
.y84{bottom:415.711500px;}
.yee{bottom:417.016500px;}
.y14a{bottom:419.775000px;}
.y75{bottom:421.212000px;}
.y40{bottom:421.791000px;}
.ycb{bottom:425.070000px;}
.y99{bottom:429.936000px;}
.y5d{bottom:430.096500px;}
.yed{bottom:433.455000px;}
.y1b{bottom:435.457500px;}
.y117{bottom:440.806500px;}
.y74{bottom:441.535500px;}
.y109{bottom:442.168500px;}
.yca{bottom:445.393500px;}
.yec{bottom:449.893500px;}
.yd9{bottom:450.420000px;}
.yb4{bottom:450.421500px;}
.y12f{bottom:451.689000px;}
.y149{bottom:454.545000px;}
.y1a{bottom:455.781000px;}
.y116{bottom:461.130000px;}
.y73{bottom:461.859000px;}
.y5c{bottom:463.437000px;}
.yc9{bottom:465.717000px;}
.yeb{bottom:466.332000px;}
.yb3{bottom:466.587000px;}
.y3f{bottom:467.241000px;}
.yb2{bottom:470.745000px;}
.y12e{bottom:472.012500px;}
.y83{bottom:473.172000px;}
.y148{bottom:474.870000px;}
.y19{bottom:476.104500px;}
.yc8{bottom:481.053000px;}
.yc7{bottom:481.354500px;}
.y115{bottom:481.453500px;}
.y72{bottom:482.182500px;}
.yc6{bottom:483.444000px;}
.y5b{bottom:483.760500px;}
.yc5{bottom:486.040500px;}
.y3e{bottom:487.564500px;}
.yb1{bottom:491.068500px;}
.y12d{bottom:492.336000px;}
.y147{bottom:495.193500px;}
.y98{bottom:495.366000px;}
.y18{bottom:496.429500px;}
.yea{bottom:498.757683px;}
.y108{bottom:501.030000px;}
.y114{bottom:501.777000px;}
.y5a{bottom:504.085500px;}
.y82{bottom:505.461000px;}
.yc4{bottom:506.365500px;}
.y3d{bottom:507.889500px;}
.yb0{bottom:511.392000px;}
.y12c{bottom:512.659500px;}
.y146{bottom:515.517000px;}
.y71{bottom:515.523000px;}
.y97{bottom:515.689500px;}
.y17{bottom:516.753000px;}
.ye9{bottom:519.773372px;}
.y107{bottom:521.353500px;}
.y113{bottom:522.102000px;}
.y59{bottom:524.409000px;}
.yc3{bottom:526.689000px;}
.y3c{bottom:528.213000px;}
.yaf{bottom:531.715500px;}
.y70{bottom:535.848000px;}
.y96{bottom:536.013000px;}
.y16{bottom:537.076500px;}
.ye8{bottom:540.790567px;}
.y106{bottom:541.677000px;}
.y58{bottom:544.732500px;}
.yc2{bottom:547.012500px;}
.y3b{bottom:548.536500px;}
.y145{bottom:550.288500px;}
.y12b{bottom:551.295000px;}
.yd8{bottom:552.039000px;}
.y6f{bottom:556.171500px;}
.y95{bottom:556.336500px;}
.y15{bottom:557.400000px;}
.ye7{bottom:561.807762px;}
.y105{bottom:562.002000px;}
.yc1{bottom:562.348500px;}
.yc0{bottom:562.650000px;}
.yae{bottom:565.056000px;}
.ybf{bottom:567.336000px;}
.y81{bottom:568.860000px;}
.y144{bottom:570.612000px;}
.y12a{bottom:571.618500px;}
.yd7{bottom:572.364000px;}
.y112{bottom:575.598000px;}
.y6e{bottom:576.495000px;}
.y94{bottom:576.661500px;}
.y14{bottom:577.723500px;}
.y57{bottom:578.073000px;}
.y3a{bottom:581.877000px;}
.y104{bottom:582.325500px;}
.ye6{bottom:582.824957px;}
.yad{bottom:585.379500px;}
.y80{bottom:589.183500px;}
.y129{bottom:591.942000px;}
.y6d{bottom:594.222000px;}
.y6c{bottom:596.818500px;}
.y93{bottom:596.985000px;}
.y13{bottom:598.048500px;}
.y56{bottom:598.396500px;}
.y39{bottom:602.200500px;}
.y103{bottom:602.649000px;}
.yac{bottom:603.106500px;}
.ye5{bottom:603.840645px;}
.y143{bottom:605.383500px;}
.yab{bottom:605.704500px;}
.ybe{bottom:609.507000px;}
.y128{bottom:612.265500px;}
.yd6{bottom:614.535000px;}
.y6b{bottom:617.142000px;}
.y7f{bottom:618.367500px;}
.y12{bottom:618.372000px;}
.y55{bottom:618.720000px;}
.y38{bottom:622.524000px;}
.y102{bottom:622.972500px;}
.ye4{bottom:624.857840px;}
.y142{bottom:625.707000px;}
.y7e{bottom:628.462500px;}
.ybd{bottom:629.832000px;}
.y6a{bottom:634.869000px;}
.y69{bottom:637.467000px;}
.y7d{bottom:638.691000px;}
.y11{bottom:638.695500px;}
.y54{bottom:639.045000px;}
.y111{bottom:642.543000px;}
.y37{bottom:642.847500px;}
.y101{bottom:643.296000px;}
.ye3{bottom:645.875035px;}
.y141{bottom:646.030500px;}
.y92{bottom:647.655000px;}
.y7c{bottom:648.786000px;}
.ybc{bottom:650.155500px;}
.y127{bottom:650.901000px;}
.y8e{bottom:651.595500px;}
.y68{bottom:657.790500px;}
.y10{bottom:659.019000px;}
.y53{bottom:659.368500px;}
.y110{bottom:662.866500px;}
.y36{bottom:663.172500px;}
.y100{bottom:663.621000px;}
.y91{bottom:664.093500px;}
.yd5{bottom:665.674500px;}
.y140{bottom:666.354000px;}
.ye2{bottom:666.890724px;}
.y8d{bottom:668.034000px;}
.ya9{bottom:668.242500px;}
.yaa{bottom:668.340000px;}
.y7b{bottom:669.109500px;}
.ya8{bottom:669.835500px;}
.y126{bottom:671.224500px;}
.y52{bottom:679.692000px;}
.y35{bottom:683.496000px;}
.yff{bottom:683.944500px;}
.y8c{bottom:684.472500px;}
.ya7{bottom:686.274000px;}
.ye1{bottom:687.306695px;}
.y125{bottom:691.548000px;}
.yf{bottom:699.115500px;}
.y51{bottom:700.015500px;}
.y8b{bottom:700.909500px;}
.y13f{bottom:701.125500px;}
.ya6{bottom:702.711000px;}
.y34{bottom:703.819500px;}
.yfd{bottom:704.268000px;}
.y67{bottom:706.626000px;}
.ydf{bottom:708.323891px;}
.yfe{bottom:708.586500px;}
.y10f{bottom:714.043500px;}
.ye0{bottom:714.289411px;}
.yd4{bottom:716.064000px;}
.y8a{bottom:717.348000px;}
.ydd{bottom:718.532630px;}
.ya5{bottom:719.149500px;}
.y50{bottom:720.339000px;}
.y13e{bottom:721.449000px;}
.ybb{bottom:721.546500px;}
.y66{bottom:723.063000px;}
.y33{bottom:724.143000px;}
.yde{bottom:724.498150px;}
.yfc{bottom:724.591500px;}
.yd0{bottom:725.265000px;}
.ydc{bottom:728.739863px;}
.y124{bottom:730.182000px;}
.y10e{bottom:730.480500px;}
.yd3{bottom:732.502500px;}
.y13d{bottom:741.772500px;}
.y32{bottom:744.466500px;}
.yfb{bottom:744.915000px;}
.y10d{bottom:746.919000px;}
.y123{bottom:750.507000px;}
.y13c{bottom:762.096000px;}
.y10c{bottom:763.357500px;}
.y31{bottom:764.791500px;}
.yfa{bottom:765.240000px;}
.y4f{bottom:769.600500px;}
.y13b{bottom:782.421000px;}
.y30{bottom:785.115000px;}
.ye{bottom:785.352000px;}
.yf9{bottom:785.563500px;}
.y4e{bottom:786.039000px;}
.y122{bottom:789.141000px;}
.yd{bottom:791.065500px;}
.yf8{bottom:801.730500px;}
.y4d{bottom:802.477500px;}
.y2f{bottom:805.438500px;}
.yf7{bottom:805.887000px;}
.y121{bottom:809.464500px;}
.yc{bottom:814.807500px;}
.y13a{bottom:817.191000px;}
.y4c{bottom:818.916000px;}
.y2e{bottom:825.762000px;}
.y120{bottom:829.788000px;}
.yb{bottom:831.244500px;}
.yf6{bottom:833.643000px;}
.ya{bottom:836.958000px;}
.y139{bottom:837.516000px;}
.yf5{bottom:840.823500px;}
.yf4{bottom:844.867500px;}
.y2d{bottom:846.085500px;}
.y138{bottom:857.839500px;}
.y9{bottom:860.700000px;}
.yba{bottom:861.421500px;}
.yb9{bottom:861.723000px;}
.y2c{bottom:866.410500px;}
.y11f{bottom:868.423500px;}
.yf3{bottom:869.005500px;}
.yf2{bottom:873.051000px;}
.y8{bottom:877.138500px;}
.ya4{bottom:880.030500px;}
.y7{bottom:882.852000px;}
.y2b{bottom:886.734000px;}
.y11e{bottom:888.747000px;}
.y137{bottom:892.609500px;}
.y2a{bottom:907.057500px;}
.y11d{bottom:909.070500px;}
.y136{bottom:912.934500px;}
.y154{bottom:913.932000px;}
.y5{bottom:921.537000px;}
.y29{bottom:927.381000px;}
.y6{bottom:927.475500px;}
.y11c{bottom:929.394000px;}
.y135{bottom:933.258000px;}
.y153{bottom:934.255500px;}
.ycf{bottom:940.602000px;}
.y3{bottom:941.862000px;}
.y28{bottom:947.704500px;}
.y4{bottom:947.799000px;}
.y152{bottom:954.579000px;}
.y27{bottom:968.029500px;}
.y151{bottom:974.902500px;}
.y26{bottom:988.353000px;}
.y2{bottom:1002.100500px;}
.y25{bottom:1008.676500px;}
.y89{bottom:1023.801000px;}
.yb8{bottom:1026.403500px;}
.y1{bottom:1029.000000px;}
.y4b{bottom:1033.168500px;}
.y24{bottom:1082.799000px;}
.h9{height:17.107891px;}
.h4{height:26.731715px;}
.h19{height:26.853345px;}
.hf{height:32.278905px;}
.h5{height:34.072320px;}
.hc{height:38.519654px;}
.h11{height:39.961891px;}
.hd{height:40.348800px;}
.h20{height:43.592764px;}
.h3{height:45.429570px;}
.h7{height:49.090950px;}
.h18{height:49.314314px;}
.h12{height:50.479715px;}
.h8{height:50.485715px;}
.h6{height:51.108480px;}
.h1c{height:53.761715px;}
.h13{height:57.461523px;}
.h15{height:57.467523px;}
.h2{height:62.181870px;}
.h17{height:62.464798px;}
.h1d{height:65.272950px;}
.h14{height:65.555523px;}
.h16{height:65.561523px;}
.he{height:65.716950px;}
.h10{height:65.722950px;}
.h1{height:81.773340px;}
.h1f{height:93.988950px;}
.h1a{height:103.293728px;}
.h1e{height:109.552950px;}
.ha{height:143.448550px;}
.h1b{height:144.128685px;}
.hb{height:191.052550px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:110.331000px;}
.x14{left:117.076500px;}
.x68{left:118.297500px;}
.x16{left:122.265000px;}
.x105{left:125.829016px;}
.x26{left:128.560500px;}
.xf5{left:129.618000px;}
.x3{left:130.701000px;}
.x25{left:134.568000px;}
.x104{left:135.590229px;}
.xdc{left:139.383000px;}
.xf1{left:140.578500px;}
.x1{left:141.709500px;}
.x113{left:143.658000px;}
.x7d{left:147.588000px;}
.xf8{left:149.724000px;}
.x70{left:151.071000px;}
.xc7{left:154.215000px;}
.x2b{left:158.737500px;}
.xc8{left:160.543500px;}
.x103{left:162.371029px;}
.xba{left:165.651000px;}
.x35{left:166.917000px;}
.xf9{left:168.576000px;}
.xf2{left:170.548500px;}
.x58{left:172.464000px;}
.xaa{left:174.880500px;}
.x9f{left:176.148000px;}
.x18{left:177.924000px;}
.x114{left:181.000500px;}
.xd{left:182.901000px;}
.x19{left:184.098000px;}
.xab{left:186.357000px;}
.xbb{left:188.038500px;}
.x2c{left:189.535500px;}
.x69{left:191.640000px;}
.x118{left:193.033500px;}
.x6f{left:195.555000px;}
.x28{left:196.780500px;}
.x7e{left:199.929000px;}
.x5b{left:201.694500px;}
.x6a{left:202.941000px;}
.x51{left:207.127500px;}
.xcc{left:211.932000px;}
.x17{left:214.464000px;}
.x59{left:216.327000px;}
.x54{left:217.966500px;}
.xcd{left:219.199500px;}
.x4f{left:220.675500px;}
.x8e{left:221.728500px;}
.x52{left:224.806500px;}
.x107{left:226.771223px;}
.x55{left:228.216000px;}
.x37{left:229.581000px;}
.x7f{left:231.930000px;}
.xfa{left:233.007000px;}
.x50{left:238.771500px;}
.xce{left:243.001500px;}
.x4{left:249.546000px;}
.x115{left:252.361500px;}
.xd6{left:253.485000px;}
.xd3{left:255.046500px;}
.x5{left:256.642500px;}
.xae{left:258.111000px;}
.x4c{left:260.413500px;}
.x15{left:262.894500px;}
.xfe{left:267.048655px;}
.x5a{left:271.591500px;}
.xa7{left:275.331000px;}
.x42{left:276.480000px;}
.xd9{left:278.341500px;}
.x8f{left:280.099500px;}
.xaf{left:281.572500px;}
.xdd{left:283.266000px;}
.x89{left:284.448000px;}
.x80{left:286.113000px;}
.xb0{left:287.901000px;}
.x90{left:289.369500px;}
.x81{left:291.538500px;}
.x5c{left:292.849500px;}
.x119{left:295.932000px;}
.x99{left:297.021000px;}
.xb1{left:298.407000px;}
.x2{left:303.441000px;}
.x10a{left:304.584000px;}
.xa9{left:305.628000px;}
.x71{left:308.364000px;}
.xd4{left:309.447000px;}
.x2f{left:312.271500px;}
.xb5{left:313.398000px;}
.xde{left:314.899500px;}
.x33{left:316.648500px;}
.x72{left:318.312000px;}
.xd1{left:321.234000px;}
.xb6{left:323.019000px;}
.x9a{left:325.431000px;}
.x30{left:327.762000px;}
.xe7{left:331.422000px;}
.xd2{left:334.315500px;}
.x10b{left:338.070000px;}
.xdf{left:339.237000px;}
.xe8{left:341.005500px;}
.x29{left:343.296000px;}
.xf4{left:345.033000px;}
.x9b{left:346.165500px;}
.xe6{left:347.344500px;}
.xb2{left:349.263000px;}
.x9c{left:350.772000px;}
.x91{left:353.008500px;}
.x10c{left:356.859000px;}
.xb3{left:359.769000px;}
.xe{left:361.728000px;}
.xda{left:366.753000px;}
.x34{left:369.270000px;}
.x6{left:371.851500px;}
.xd8{left:375.214500px;}
.xb7{left:377.611500px;}
.xf{left:378.702000px;}
.x92{left:380.539500px;}
.x7{left:381.729000px;}
.x60{left:383.881500px;}
.x3c{left:385.300500px;}
.x8{left:387.333000px;}
.x56{left:388.482000px;}
.x43{left:393.483000px;}
.x108{left:394.735500px;}
.xfc{left:395.862000px;}
.x10d{left:403.005000px;}
.x3d{left:404.217000px;}
.xe5{left:405.483000px;}
.xfb{left:406.819500px;}
.xff{left:408.690205px;}
.xb8{left:409.938000px;}
.x117{left:412.647000px;}
.x3e{left:414.163500px;}
.x109{left:415.821000px;}
.x112{left:416.862000px;}
.x1f{left:418.008000px;}
.xdb{left:419.688000px;}
.xb4{left:421.063500px;}
.xa0{left:424.537500px;}
.x100{left:427.838937px;}
.x8b{left:429.108000px;}
.xbc{left:431.425500px;}
.x3f{left:433.225500px;}
.x73{left:436.161000px;}
.x20{left:438.918000px;}
.x93{left:439.933500px;}
.xac{left:441.798000px;}
.x38{left:442.944000px;}
.x94{left:444.540000px;}
.x61{left:447.705000px;}
.x21{left:450.856500px;}
.xfd{left:451.924500px;}
.xad{left:454.734000px;}
.xec{left:458.167500px;}
.x46{left:459.697500px;}
.x8c{left:461.032500px;}
.x96{left:463.674000px;}
.x40{left:464.865000px;}
.xa4{left:466.386000px;}
.xc9{left:467.832000px;}
.xf6{left:468.978000px;}
.x10{left:470.680500px;}
.xa5{left:471.811500px;}
.x5d{left:474.991500px;}
.x11{left:478.482000px;}
.x111{left:480.589500px;}
.x39{left:482.050500px;}
.x41{left:485.070000px;}
.xf7{left:487.894500px;}
.xa1{left:489.963000px;}
.x62{left:491.968500px;}
.x1a{left:497.362500px;}
.xbe{left:499.035000px;}
.xb9{left:501.681000px;}
.x76{left:503.361000px;}
.x1b{left:505.543500px;}
.x47{left:508.156500px;}
.xc4{left:511.152000px;}
.x11a{left:512.244000px;}
.xed{left:513.453000px;}
.x8a{left:515.290500px;}
.x1c{left:516.706500px;}
.xef{left:517.761000px;}
.x48{left:518.775000px;}
.x57{left:521.118000px;}
.xc5{left:524.088000px;}
.x74{left:526.909500px;}
.x75{left:531.456000px;}
.x110{left:533.142000px;}
.x3a{left:534.493500px;}
.xa3{left:537.181500px;}
.xd5{left:539.904000px;}
.x106{left:541.042179px;}
.x53{left:543.903000px;}
.x49{left:547.053000px;}
.x1d{left:548.656500px;}
.x5e{left:553.419000px;}
.x63{left:555.792000px;}
.x5f{left:558.844500px;}
.x9{left:560.166000px;}
.x64{left:561.217500px;}
.xc6{left:563.280000px;}
.xa{left:567.262500px;}
.x1e{left:572.119500px;}
.xe0{left:581.923500px;}
.x77{left:585.756000px;}
.x3b{left:588.249000px;}
.x101{left:591.552460px;}
.xbf{left:593.844000px;}
.x4a{left:596.689500px;}
.x102{left:597.909755px;}
.xe1{left:599.605500px;}
.x4b{left:601.296000px;}
.xc0{left:603.826500px;}
.xf3{left:604.845000px;}
.xd7{left:608.034000px;}
.xa6{left:610.102500px;}
.xeb{left:611.652000px;}
.x44{left:618.399000px;}
.x6b{left:620.083500px;}
.x65{left:621.612000px;}
.xe2{left:625.819500px;}
.x79{left:627.232500px;}
.x85{left:630.159000px;}
.x82{left:631.191000px;}
.x10e{left:632.313000px;}
.x6c{left:633.720000px;}
.x66{left:635.248500px;}
.x45{left:636.826500px;}
.x7a{left:640.869000px;}
.xca{left:642.052500px;}
.x116{left:643.243500px;}
.x83{left:644.827500px;}
.xc1{left:646.392000px;}
.xe3{left:649.027500px;}
.x6d{left:651.762000px;}
.xe4{left:654.007500px;}
.x22{left:655.089000px;}
.x95{left:656.751000px;}
.x86{left:658.219500px;}
.xcb{left:659.710500px;}
.xc2{left:660.711000px;}
.x84{left:663.357000px;}
.x78{left:666.541500px;}
.xa8{left:668.004000px;}
.x87{left:671.166000px;}
.x12{left:672.921000px;}
.x23{left:675.997500px;}
.x7b{left:677.511000px;}
.xe9{left:679.648500px;}
.x24{left:681.423000px;}
.xa2{left:682.810500px;}
.xbd{left:690.007500px;}
.x2d{left:691.587000px;}
.xcf{left:693.999000px;}
.x9d{left:697.708500px;}
.x97{left:699.540000px;}
.x4d{left:701.506500px;}
.x88{left:702.567000px;}
.x10f{left:704.614500px;}
.x7c{left:709.368000px;}
.x2e{left:712.221000px;}
.x4e{left:713.325000px;}
.x6e{left:715.245000px;}
.x98{left:716.743500px;}
.x9e{left:718.264500px;}
.x36{left:719.323500px;}
.xb{left:720.600000px;}
.xd0{left:723.340500px;}
.x67{left:726.546000px;}
.xc{left:727.696500px;}
.xc3{left:730.557000px;}
.x2a{left:731.965500px;}
.xee{left:736.488000px;}
.x32{left:739.197000px;}
.x31{left:741.817500px;}
.xea{left:743.256000px;}
.x27{left:744.622500px;}
.xf0{left:747.333000px;}
.x8d{left:748.920000px;}
@media print{
.v2{vertical-align:-8.730667pt;}
.va{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:3.376000pt;}
.vb{vertical-align:8.725333pt;}
.vd{vertical-align:12.101333pt;}
.vc{vertical-align:14.778667pt;}
.v5{vertical-align:16.805333pt;}
.v1{vertical-align:21.114667pt;}
.v6{vertical-align:22.032000pt;}
.v12{vertical-align:24.026667pt;}
.vf{vertical-align:28.304000pt;}
.v9{vertical-align:33.589333pt;}
.v10{vertical-align:36.292382pt;}
.v4{vertical-align:39.360000pt;}
.v8{vertical-align:42.320000pt;}
.v11{vertical-align:72.590122pt;}
.v3{vertical-align:92.122667pt;}
.v7{vertical-align:134.437333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000495pt;}
.ls36{letter-spacing:0.001249pt;}
.ls43{letter-spacing:0.001324pt;}
.ls1a{letter-spacing:0.001413pt;}
.lsd{letter-spacing:0.001432pt;}
.ls3a{letter-spacing:0.001485pt;}
.ls41{letter-spacing:0.001908pt;}
.ls21{letter-spacing:0.002384pt;}
.ls5{letter-spacing:0.002389pt;}
.ls57{letter-spacing:0.002395pt;}
.ls0{letter-spacing:0.002400pt;}
.ls7{letter-spacing:0.002405pt;}
.ls25{letter-spacing:0.002411pt;}
.ls59{letter-spacing:0.002422pt;}
.ls5c{letter-spacing:0.002870pt;}
.ls20{letter-spacing:0.003370pt;}
.ls11{letter-spacing:0.006765pt;}
.ls8{letter-spacing:1.617432pt;}
.ls18{letter-spacing:1.622765pt;}
.ls4b{letter-spacing:2.089669pt;}
.lse{letter-spacing:2.653258pt;}
.ls54{letter-spacing:2.654400pt;}
.ls3d{letter-spacing:2.656473pt;}
.ls55{letter-spacing:2.657146pt;}
.lsf{letter-spacing:2.658591pt;}
.ls17{letter-spacing:2.659733pt;}
.ls48{letter-spacing:4.561918pt;}
.ls49{letter-spacing:4.567251pt;}
.ls50{letter-spacing:8.076575pt;}
.ls42{letter-spacing:8.081908pt;}
.ls64{letter-spacing:9.458400pt;}
.ls2d{letter-spacing:9.693077pt;}
.ls9{letter-spacing:9.695477pt;}
.ls2f{letter-spacing:9.698411pt;}
.ls6{letter-spacing:12.350400pt;}
.ls12{letter-spacing:12.925918pt;}
.lsc{letter-spacing:12.927477pt;}
.ls61{letter-spacing:12.932811pt;}
.ls15{letter-spacing:13.610144pt;}
.ls35{letter-spacing:13.655098pt;}
.ls1f{letter-spacing:14.312739pt;}
.ls10{letter-spacing:14.545432pt;}
.lsb{letter-spacing:14.550765pt;}
.ls53{letter-spacing:14.952740pt;}
.ls5e{letter-spacing:15.017669pt;}
.ls47{letter-spacing:15.582400pt;}
.ls5f{letter-spacing:15.584092pt;}
.ls62{letter-spacing:15.586591pt;}
.ls5d{letter-spacing:15.589425pt;}
.ls4e{letter-spacing:15.853258pt;}
.ls34{letter-spacing:16.159477pt;}
.ls2c{letter-spacing:16.159483pt;}
.ls3e{letter-spacing:16.162384pt;}
.ls4a{letter-spacing:16.174559pt;}
.ls66{letter-spacing:16.212811pt;}
.ls6a{letter-spacing:16.559477pt;}
.ls22{letter-spacing:17.105469pt;}
.ls14{letter-spacing:17.284811pt;}
.ls3c{letter-spacing:17.564052pt;}
.ls2{letter-spacing:17.745469pt;}
.ls4{letter-spacing:17.920015pt;}
.ls69{letter-spacing:18.182765pt;}
.ls2b{letter-spacing:18.813258pt;}
.ls30{letter-spacing:18.818591pt;}
.ls2e{letter-spacing:18.819149pt;}
.ls44{letter-spacing:18.856318pt;}
.ls45{letter-spacing:18.861652pt;}
.ls13{letter-spacing:18.908098pt;}
.ls19{letter-spacing:19.258198pt;}
.ls60{letter-spacing:19.266870pt;}
.ls63{letter-spacing:19.306144pt;}
.ls4c{letter-spacing:19.495925pt;}
.ls4d{letter-spacing:19.497067pt;}
.ls1d{letter-spacing:19.507733pt;}
.ls4f{letter-spacing:19.549107pt;}
.ls37{letter-spacing:20.219139pt;}
.ls3b{letter-spacing:20.220757pt;}
.ls39{letter-spacing:20.224473pt;}
.ls56{letter-spacing:20.305471pt;}
.ls3{letter-spacing:20.829108pt;}
.ls31{letter-spacing:20.983925pt;}
.ls52{letter-spacing:22.420825pt;}
.ls1e{letter-spacing:22.516382pt;}
.ls32{letter-spacing:22.632746pt;}
.ls26{letter-spacing:22.909258pt;}
.ls16{letter-spacing:23.277258pt;}
.ls27{letter-spacing:23.538881pt;}
.ls28{letter-spacing:23.544215pt;}
.ls51{letter-spacing:23.780825pt;}
.ls40{letter-spacing:24.217184pt;}
.ls68{letter-spacing:24.618144pt;}
.ls1b{letter-spacing:24.640473pt;}
.ls5b{letter-spacing:25.150097pt;}
.ls1c{letter-spacing:25.949113pt;}
.ls65{letter-spacing:25.980098pt;}
.ls46{letter-spacing:26.217184pt;}
.ls67{letter-spacing:26.236098pt;}
.ls23{letter-spacing:27.143925pt;}
.ls24{letter-spacing:27.149258pt;}
.ls3f{letter-spacing:29.559925pt;}
.ls2a{letter-spacing:40.493258pt;}
.ls33{letter-spacing:40.498591pt;}
.ls29{letter-spacing:43.181258pt;}
.ls58{letter-spacing:119.093000pt;}
.lsa{letter-spacing:235.752584pt;}
.ls5a{letter-spacing:253.922927pt;}
.ws71{word-spacing:-58.181867pt;}
.ws59{word-spacing:-42.112035pt;}
.wsd2{word-spacing:-38.072111pt;}
.ws11{word-spacing:-37.899668pt;}
.wsb4{word-spacing:-32.337481pt;}
.ws8c{word-spacing:-32.063846pt;}
.ws68{word-spacing:-20.852381pt;}
.wsd1{word-spacing:-16.236464pt;}
.wsb{word-spacing:-16.162923pt;}
.ws82{word-spacing:-13.652838pt;}
.ws32{word-spacing:-6.504733pt;}
.ws31{word-spacing:-6.471421pt;}
.ws93{word-spacing:-6.455902pt;}
.ws33{word-spacing:-3.246548pt;}
.wsb5{word-spacing:-2.955639pt;}
.ws9f{word-spacing:-2.749696pt;}
.wseb{word-spacing:-0.046545pt;}
.ws3b{word-spacing:-0.042507pt;}
.ws9b{word-spacing:-0.031881pt;}
.ws85{word-spacing:-0.023910pt;}
.ws30{word-spacing:-0.015599pt;}
.ws16{word-spacing:0.000000pt;}
.ws79{word-spacing:0.011636pt;}
.ws5a{word-spacing:0.651637pt;}
.wsba{word-spacing:1.349819pt;}
.wsc5{word-spacing:1.640729pt;}
.ws7e{word-spacing:1.931638pt;}
.ws7b{word-spacing:2.164365pt;}
.ws78{word-spacing:2.688002pt;}
.ws72{word-spacing:3.659978pt;}
.ws70{word-spacing:3.665311pt;}
.ws87{word-spacing:3.897395pt;}
.ws6d{word-spacing:4.084367pt;}
.ws74{word-spacing:5.306186pt;}
.wsf2{word-spacing:8.215280pt;}
.ws42{word-spacing:8.296909pt;}
.ws6c{word-spacing:8.331643pt;}
.ws43{word-spacing:8.344730pt;}
.wsc4{word-spacing:8.797098pt;}
.ws39{word-spacing:8.971644pt;}
.wsa0{word-spacing:9.097066pt;}
.ws77{word-spacing:10.426191pt;}
.ws91{word-spacing:10.717100pt;}
.ws84{word-spacing:11.237888pt;}
.wse5{word-spacing:11.500902pt;}
.wsbe{word-spacing:11.620454pt;}
.ws5d{word-spacing:12.858193pt;}
.wsfd{word-spacing:13.090920pt;}
.ws20{word-spacing:13.265466pt;}
.ws8e{word-spacing:13.294182pt;}
.ws3f{word-spacing:13.437645pt;}
.ws10b{word-spacing:13.556375pt;}
.wse2{word-spacing:13.868032pt;}
.ws109{word-spacing:13.905466pt;}
.ws4{word-spacing:14.196375pt;}
.ws99{word-spacing:14.202778pt;}
.ws10d{word-spacing:14.254557pt;}
.ws55{word-spacing:14.312739pt;}
.ws53{word-spacing:14.429103pt;}
.ws102{word-spacing:14.545467pt;}
.ws56{word-spacing:14.585344pt;}
.ws24{word-spacing:14.603649pt;}
.wsc3{word-spacing:14.720012pt;}
.ws5{word-spacing:14.894558pt;}
.ws66{word-spacing:14.952740pt;}
.ws1f{word-spacing:15.127285pt;}
.ws7f{word-spacing:15.185467pt;}
.wsaf{word-spacing:15.418195pt;}
.ws12{word-spacing:15.534558pt;}
.wsc8{word-spacing:15.592740pt;}
.wsc2{word-spacing:15.650922pt;}
.wsc1{word-spacing:15.709104pt;}
.wsae{word-spacing:15.883650pt;}
.wse9{word-spacing:16.058195pt;}
.wsfa{word-spacing:16.211251pt;}
.ws3a{word-spacing:16.230171pt;}
.ws9d{word-spacing:16.259072pt;}
.ws4f{word-spacing:16.349105pt;}
.ws44{word-spacing:16.354714pt;}
.ws8a{word-spacing:16.402534pt;}
.ws50{word-spacing:16.465468pt;}
.wsb2{word-spacing:16.523650pt;}
.ws4e{word-spacing:16.581832pt;}
.ws6{word-spacing:16.640014pt;}
.wsf8{word-spacing:16.698196pt;}
.ws81{word-spacing:16.737280pt;}
.ws98{word-spacing:16.756378pt;}
.ws83{word-spacing:16.785101pt;}
.ws63{word-spacing:16.814559pt;}
.wsfb{word-spacing:16.928563pt;}
.ws67{word-spacing:17.047287pt;}
.ws6b{word-spacing:17.105469pt;}
.ws89{word-spacing:17.119846pt;}
.wsc0{word-spacing:17.163651pt;}
.ws4b{word-spacing:17.280014pt;}
.wsc7{word-spacing:17.338196pt;}
.ws64{word-spacing:17.396378pt;}
.wsad{word-spacing:17.512742pt;}
.ws3{word-spacing:17.550234pt;}
.wsa6{word-spacing:17.570924pt;}
.ws17{word-spacing:17.745469pt;}
.wsf7{word-spacing:17.803651pt;}
.wse6{word-spacing:17.837158pt;}
.ws1d{word-spacing:17.920015pt;}
.ws6f{word-spacing:17.978197pt;}
.ws65{word-spacing:18.036379pt;}
.wsb1{word-spacing:18.094561pt;}
.wsaa{word-spacing:18.210924pt;}
.ws4d{word-spacing:18.327288pt;}
.wsf{word-spacing:18.443652pt;}
.wscc{word-spacing:18.501834pt;}
.wsa8{word-spacing:18.560015pt;}
.wsa9{word-spacing:18.618197pt;}
.ws2e{word-spacing:18.676379pt;}
.ws86{word-spacing:18.697933pt;}
.ws69{word-spacing:18.734561pt;}
.ws88{word-spacing:18.745754pt;}
.wsa7{word-spacing:18.792743pt;}
.ws4a{word-spacing:18.909107pt;}
.wsfc{word-spacing:19.025470pt;}
.ws1e{word-spacing:19.141834pt;}
.wsbb{word-spacing:19.200016pt;}
.ws2{word-spacing:19.258198pt;}
.ws1{word-spacing:19.316380pt;}
.wsdc{word-spacing:19.345823pt;}
.wsce{word-spacing:19.404269pt;}
.wsbd{word-spacing:19.415245pt;}
.wse8{word-spacing:19.432743pt;}
.ws2b{word-spacing:19.490925pt;}
.wsf5{word-spacing:19.549107pt;}
.wsb7{word-spacing:19.607289pt;}
.ws49{word-spacing:19.665471pt;}
.ws9a{word-spacing:19.702170pt;}
.ws10a{word-spacing:19.723653pt;}
.ws9c{word-spacing:19.749990pt;}
.ws61{word-spacing:19.781835pt;}
.ws6e{word-spacing:19.898198pt;}
.wsf6{word-spacing:19.956380pt;}
.wsbc{word-spacing:20.014562pt;}
.ws7a{word-spacing:20.072744pt;}
.ws1a{word-spacing:20.130926pt;}
.ws8d{word-spacing:20.180378pt;}
.ws8b{word-spacing:20.228198pt;}
.wsc6{word-spacing:20.247290pt;}
.ws3c{word-spacing:20.305471pt;}
.ws29{word-spacing:20.363653pt;}
.ws40{word-spacing:20.371661pt;}
.wse3{word-spacing:20.419482pt;}
.wsa{word-spacing:20.421835pt;}
.ws48{word-spacing:20.480017pt;}
.ws80{word-spacing:20.538199pt;}
.ws7c{word-spacing:20.596381pt;}
.ws37{word-spacing:20.654563pt;}
.ws9{word-spacing:20.712745pt;}
.ws118{word-spacing:20.770926pt;}
.ws10c{word-spacing:20.829108pt;}
.ws18{word-spacing:20.887290pt;}
.wscd{word-spacing:20.945472pt;}
.wsf9{word-spacing:20.993331pt;}
.wsa3{word-spacing:21.061836pt;}
.wsc{word-spacing:21.120018pt;}
.ws45{word-spacing:21.178199pt;}
.wscb{word-spacing:21.236381pt;}
.ws73{word-spacing:21.294563pt;}
.ws41{word-spacing:21.375898pt;}
.ws25{word-spacing:21.410927pt;}
.ws1b{word-spacing:21.469109pt;}
.wsc9{word-spacing:21.527291pt;}
.ws2a{word-spacing:21.585473pt;}
.ws7d{word-spacing:21.643654pt;}
.ws58{word-spacing:21.760018pt;}
.ws9e{word-spacing:21.806285pt;}
.wsa2{word-spacing:21.818200pt;}
.ws103{word-spacing:21.876382pt;}
.ws3d{word-spacing:21.934564pt;}
.ws2f{word-spacing:21.992746pt;}
.wsb0{word-spacing:22.050927pt;}
.ws54{word-spacing:22.167291pt;}
.ws7{word-spacing:22.341837pt;}
.ws15{word-spacing:22.400019pt;}
.ws5e{word-spacing:22.458201pt;}
.ws60{word-spacing:22.516382pt;}
.wsab{word-spacing:22.574564pt;}
.ws5b{word-spacing:22.632746pt;}
.ws2d{word-spacing:22.749110pt;}
.ws2c{word-spacing:22.807292pt;}
.ws51{word-spacing:22.865474pt;}
.wsf3{word-spacing:22.923655pt;}
.ws52{word-spacing:23.040019pt;}
.ws106{word-spacing:23.098201pt;}
.ws10{word-spacing:23.156383pt;}
.ws75{word-spacing:23.214565pt;}
.wsf0{word-spacing:23.272747pt;}
.wse4{word-spacing:23.288730pt;}
.ws8{word-spacing:23.330929pt;}
.ws62{word-spacing:23.389110pt;}
.wsa4{word-spacing:23.447292pt;}
.ws105{word-spacing:23.563656pt;}
.ws95{word-spacing:23.621838pt;}
.ws96{word-spacing:23.680020pt;}
.ws6a{word-spacing:23.738202pt;}
.ws23{word-spacing:23.912747pt;}
.wse7{word-spacing:23.970929pt;}
.ws57{word-spacing:24.029111pt;}
.ws8f{word-spacing:24.087293pt;}
.ws27{word-spacing:24.145475pt;}
.wsca{word-spacing:24.203657pt;}
.ws0{word-spacing:24.254642pt;}
.ws14{word-spacing:24.261838pt;}
.wsf4{word-spacing:24.320020pt;}
.ws4c{word-spacing:24.378202pt;}
.wsa5{word-spacing:24.494566pt;}
.ws5f{word-spacing:24.552748pt;}
.ws38{word-spacing:24.669111pt;}
.wsfe{word-spacing:24.727293pt;}
.wsb3{word-spacing:24.785475pt;}
.ws117{word-spacing:24.843657pt;}
.ws34{word-spacing:24.901839pt;}
.ws26{word-spacing:24.960021pt;}
.ws1c{word-spacing:25.018203pt;}
.wse{word-spacing:25.076385pt;}
.ws47{word-spacing:25.134566pt;}
.ws97{word-spacing:25.192748pt;}
.wsa1{word-spacing:25.250930pt;}
.ws94{word-spacing:25.309112pt;}
.ws28{word-spacing:25.367294pt;}
.ws76{word-spacing:25.483658pt;}
.wsf1{word-spacing:25.600021pt;}
.ws90{word-spacing:25.716385pt;}
.ws36{word-spacing:25.774567pt;}
.ws110{word-spacing:25.890931pt;}
.ws35{word-spacing:26.123658pt;}
.wsea{word-spacing:26.260609pt;}
.wsed{word-spacing:26.275263pt;}
.wsd{word-spacing:26.356386pt;}
.wsb8{word-spacing:26.589113pt;}
.ws100{word-spacing:26.705477pt;}
.ws119{word-spacing:26.763659pt;}
.ws5c{word-spacing:26.821841pt;}
.ws10e{word-spacing:26.880022pt;}
.wsb6{word-spacing:26.938204pt;}
.wsb9{word-spacing:27.229114pt;}
.ws46{word-spacing:27.287295pt;}
.ws21{word-spacing:27.345477pt;}
.ws101{word-spacing:27.461841pt;}
.ws92{word-spacing:27.578205pt;}
.ws10f{word-spacing:27.636387pt;}
.ws104{word-spacing:27.694569pt;}
.ws113{word-spacing:27.752750pt;}
.wsbf{word-spacing:27.869114pt;}
.ws112{word-spacing:28.160023pt;}
.wsef{word-spacing:28.392751pt;}
.ws114{word-spacing:28.450933pt;}
.ws19{word-spacing:30.487298pt;}
.ws13{word-spacing:33.221846pt;}
.wsff{word-spacing:33.803665pt;}
.ws111{word-spacing:35.316393pt;}
.wsac{word-spacing:35.490939pt;}
.ws116{word-spacing:36.945485pt;}
.ws22{word-spacing:37.934577pt;}
.ws108{word-spacing:47.767313pt;}
.ws107{word-spacing:48.756404pt;}
.ws115{word-spacing:50.909133pt;}
.wsd5{word-spacing:64.818131pt;}
.wsd0{word-spacing:88.455880pt;}
.wsd9{word-spacing:94.049196pt;}
.wsde{word-spacing:108.656425pt;}
.wsd4{word-spacing:112.457910pt;}
.wsda{word-spacing:127.068085pt;}
.wsdb{word-spacing:127.071032pt;}
.wsd7{word-spacing:131.991720pt;}
.wsdd{word-spacing:141.680671pt;}
.wsd8{word-spacing:141.683618pt;}
.wse1{word-spacing:152.489897pt;}
.wsd3{word-spacing:164.635576pt;}
.wsdf{word-spacing:172.529732pt;}
.wse0{word-spacing:185.517090pt;}
.wsd6{word-spacing:193.855927pt;}
.wscf{word-spacing:203.284064pt;}
.wsee{word-spacing:221.184184pt;}
.wsec{word-spacing:508.428060pt;}
.ws3e{word-spacing:1066.856472pt;}
._1d{margin-left:-25.944415pt;}
._24{margin-left:-16.199410pt;}
._32{margin-left:-6.400005pt;}
._b{margin-left:-4.829095pt;}
._30{margin-left:-3.914933pt;}
._1{margin-left:-2.984023pt;}
._0{margin-left:-1.989340pt;}
._4{margin-left:-0.908597pt;}
._2{width:0.889461pt;}
._3{width:1.989340pt;}
._22{width:3.395277pt;}
._19{width:6.480002pt;}
._1e{width:14.138194pt;}
._5{width:15.825468pt;}
._23{width:16.797811pt;}
._6{width:17.717580pt;}
._20{width:18.950555pt;}
._1a{width:20.419482pt;}
._c{width:21.607785pt;}
._18{width:22.585721pt;}
._10{width:23.754950pt;}
._9{width:24.680268pt;}
._f{width:25.971425pt;}
._1c{width:27.135062pt;}
._e{width:28.101842pt;}
._14{width:29.467929pt;}
._a{width:30.916884pt;}
._12{width:32.290936pt;}
._17{width:33.437840pt;}
._7{width:34.792756pt;}
._26{width:35.851186pt;}
._1b{width:36.869837pt;}
._8{width:38.178461pt;}
._15{width:40.167801pt;}
._1f{width:41.076398pt;}
._2d{width:42.512691pt;}
._16{width:43.619667pt;}
._d{width:47.069130pt;}
._13{width:50.163925pt;}
._21{width:51.388147pt;}
._2f{width:52.962247pt;}
._25{width:57.832775pt;}
._29{width:66.544884pt;}
._2e{width:84.015413pt;}
._31{width:114.410250pt;}
._28{width:117.153947pt;}
._27{width:152.152881pt;}
._2a{width:174.831389pt;}
._2c{width:245.586501pt;}
._2b{width:297.758810pt;}
._11{width:1275.045990pt;}
.fs6{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:42.700608pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs7{font-size:58.446594pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:150.232000pt;}
.ya3{bottom:186.118667pt;}
.ya2{bottom:186.386667pt;}
.y22{bottom:190.081333pt;}
.y4a{bottom:190.082667pt;}
.y21{bottom:195.160000pt;}
.y90{bottom:200.733333pt;}
.y49{bottom:208.148000pt;}
.ya1{bottom:209.502667pt;}
.y8f{bottom:215.345333pt;}
.y48{bottom:226.213333pt;}
.ya0{bottom:227.568000pt;}
.y88{bottom:234.088000pt;}
.y20{bottom:235.018667pt;}
.y65{bottom:237.784000pt;}
.y150{bottom:239.056000pt;}
.y87{bottom:243.061333pt;}
.y47{bottom:244.278667pt;}
.y9f{bottom:245.633333pt;}
.y7a{bottom:249.170667pt;}
.y1f{bottom:253.084000pt;}
.y64{bottom:255.849333pt;}
.y14f{bottom:257.121333pt;}
.y11b{bottom:260.208000pt;}
.y46{bottom:262.344000pt;}
.y9e{bottom:263.698667pt;}
.y63{bottom:273.914667pt;}
.yd2{bottom:274.688000pt;}
.y11a{bottom:278.273333pt;}
.y134{bottom:278.621333pt;}
.y45{bottom:280.409333pt;}
.y10b{bottom:280.410667pt;}
.y9d{bottom:281.764000pt;}
.y14e{bottom:288.028000pt;}
.yd1{bottom:289.300000pt;}
.yb7{bottom:289.672000pt;}
.y1e{bottom:291.728000pt;}
.y62{bottom:291.980000pt;}
.yf1{bottom:293.000000pt;}
.y119{bottom:296.338667pt;}
.y133{bottom:296.686667pt;}
.y44{bottom:298.476000pt;}
.y9c{bottom:299.830667pt;}
.y79{bottom:302.148000pt;}
.y14d{bottom:306.094667pt;}
.ydb{bottom:307.737333pt;}
.y61{bottom:310.045333pt;}
.yb6{bottom:310.046667pt;}
.y43{bottom:316.541333pt;}
.y9b{bottom:317.896000pt;}
.y78{bottom:320.213333pt;}
.yce{bottom:323.642667pt;}
.y14c{bottom:324.160000pt;}
.y60{bottom:328.112000pt;}
.y132{bottom:331.028000pt;}
.y118{bottom:332.320000pt;}
.y42{bottom:334.606667pt;}
.y9a{bottom:335.961333pt;}
.yf0{bottom:338.004000pt;}
.y77{bottom:338.278667pt;}
.ycd{bottom:341.708000pt;}
.yb5{bottom:342.213333pt;}
.y86{bottom:342.481333pt;}
.yda{bottom:343.868000pt;}
.y5f{bottom:346.177333pt;}
.y131{bottom:349.093333pt;}
.y1d{bottom:350.942667pt;}
.y85{bottom:351.456000pt;}
.y10a{bottom:352.672000pt;}
.y14b{bottom:355.068000pt;}
.yef{bottom:356.069333pt;}
.y76{bottom:356.345333pt;}
.ycc{bottom:359.774667pt;}
.y5e{bottom:364.242667pt;}
.y41{bottom:364.345333pt;}
.y130{bottom:367.158667pt;}
.y1c{bottom:369.008000pt;}
.y84{bottom:369.521333pt;}
.yee{bottom:370.681333pt;}
.y14a{bottom:373.133333pt;}
.y75{bottom:374.410667pt;}
.y40{bottom:374.925333pt;}
.ycb{bottom:377.840000pt;}
.y99{bottom:382.165333pt;}
.y5d{bottom:382.308000pt;}
.yed{bottom:385.293333pt;}
.y1b{bottom:387.073333pt;}
.y117{bottom:391.828000pt;}
.y74{bottom:392.476000pt;}
.y109{bottom:393.038667pt;}
.yca{bottom:395.905333pt;}
.yec{bottom:399.905333pt;}
.yd9{bottom:400.373333pt;}
.yb4{bottom:400.374667pt;}
.y12f{bottom:401.501333pt;}
.y149{bottom:404.040000pt;}
.y1a{bottom:405.138667pt;}
.y116{bottom:409.893333pt;}
.y73{bottom:410.541333pt;}
.y5c{bottom:411.944000pt;}
.yc9{bottom:413.970667pt;}
.yeb{bottom:414.517333pt;}
.yb3{bottom:414.744000pt;}
.y3f{bottom:415.325333pt;}
.yb2{bottom:418.440000pt;}
.y12e{bottom:419.566667pt;}
.y83{bottom:420.597333pt;}
.y148{bottom:422.106667pt;}
.y19{bottom:423.204000pt;}
.yc8{bottom:427.602667pt;}
.yc7{bottom:427.870667pt;}
.y115{bottom:427.958667pt;}
.y72{bottom:428.606667pt;}
.yc6{bottom:429.728000pt;}
.y5b{bottom:430.009333pt;}
.yc5{bottom:432.036000pt;}
.y3e{bottom:433.390667pt;}
.yb1{bottom:436.505333pt;}
.y12d{bottom:437.632000pt;}
.y147{bottom:440.172000pt;}
.y98{bottom:440.325333pt;}
.y18{bottom:441.270667pt;}
.yea{bottom:443.340163pt;}
.y108{bottom:445.360000pt;}
.y114{bottom:446.024000pt;}
.y5a{bottom:448.076000pt;}
.y82{bottom:449.298667pt;}
.yc4{bottom:450.102667pt;}
.y3d{bottom:451.457333pt;}
.yb0{bottom:454.570667pt;}
.y12c{bottom:455.697333pt;}
.y146{bottom:458.237333pt;}
.y71{bottom:458.242667pt;}
.y97{bottom:458.390667pt;}
.y17{bottom:459.336000pt;}
.ye9{bottom:462.020775pt;}
.y107{bottom:463.425333pt;}
.y113{bottom:464.090667pt;}
.y59{bottom:466.141333pt;}
.yc3{bottom:468.168000pt;}
.y3c{bottom:469.522667pt;}
.yaf{bottom:472.636000pt;}
.y70{bottom:476.309333pt;}
.y96{bottom:476.456000pt;}
.y16{bottom:477.401333pt;}
.ye8{bottom:480.702726pt;}
.y106{bottom:481.490667pt;}
.y58{bottom:484.206667pt;}
.yc2{bottom:486.233333pt;}
.y3b{bottom:487.588000pt;}
.y145{bottom:489.145333pt;}
.y12b{bottom:490.040000pt;}
.yd8{bottom:490.701333pt;}
.y6f{bottom:494.374667pt;}
.y95{bottom:494.521333pt;}
.y15{bottom:495.466667pt;}
.ye7{bottom:499.384677pt;}
.y105{bottom:499.557333pt;}
.yc1{bottom:499.865333pt;}
.yc0{bottom:500.133333pt;}
.yae{bottom:502.272000pt;}
.ybf{bottom:504.298667pt;}
.y81{bottom:505.653333pt;}
.y144{bottom:507.210667pt;}
.y12a{bottom:508.105333pt;}
.yd7{bottom:508.768000pt;}
.y112{bottom:511.642667pt;}
.y6e{bottom:512.440000pt;}
.y94{bottom:512.588000pt;}
.y14{bottom:513.532000pt;}
.y57{bottom:513.842667pt;}
.y3a{bottom:517.224000pt;}
.y104{bottom:517.622667pt;}
.ye6{bottom:518.066628pt;}
.yad{bottom:520.337333pt;}
.y80{bottom:523.718667pt;}
.y129{bottom:526.170667pt;}
.y6d{bottom:528.197333pt;}
.y6c{bottom:530.505333pt;}
.y93{bottom:530.653333pt;}
.y13{bottom:531.598667pt;}
.y56{bottom:531.908000pt;}
.y39{bottom:535.289333pt;}
.y103{bottom:535.688000pt;}
.yac{bottom:536.094667pt;}
.ye5{bottom:536.747240pt;}
.y143{bottom:538.118667pt;}
.yab{bottom:538.404000pt;}
.ybe{bottom:541.784000pt;}
.y128{bottom:544.236000pt;}
.yd6{bottom:546.253333pt;}
.y6b{bottom:548.570667pt;}
.y7f{bottom:549.660000pt;}
.y12{bottom:549.664000pt;}
.y55{bottom:549.973333pt;}
.y38{bottom:553.354667pt;}
.y102{bottom:553.753333pt;}
.ye4{bottom:555.429191pt;}
.y142{bottom:556.184000pt;}
.y7e{bottom:558.633333pt;}
.ybd{bottom:559.850667pt;}
.y6a{bottom:564.328000pt;}
.y69{bottom:566.637333pt;}
.y7d{bottom:567.725333pt;}
.y11{bottom:567.729333pt;}
.y54{bottom:568.040000pt;}
.y111{bottom:571.149333pt;}
.y37{bottom:571.420000pt;}
.y101{bottom:571.818667pt;}
.ye3{bottom:574.111142pt;}
.y141{bottom:574.249333pt;}
.y92{bottom:575.693333pt;}
.y7c{bottom:576.698667pt;}
.ybc{bottom:577.916000pt;}
.y127{bottom:578.578667pt;}
.y8e{bottom:579.196000pt;}
.y68{bottom:584.702667pt;}
.y10{bottom:585.794667pt;}
.y53{bottom:586.105333pt;}
.y110{bottom:589.214667pt;}
.y36{bottom:589.486667pt;}
.y100{bottom:589.885333pt;}
.y91{bottom:590.305333pt;}
.yd5{bottom:591.710667pt;}
.y140{bottom:592.314667pt;}
.ye2{bottom:592.791754pt;}
.y8d{bottom:593.808000pt;}
.ya9{bottom:593.993333pt;}
.yaa{bottom:594.080000pt;}
.y7b{bottom:594.764000pt;}
.ya8{bottom:595.409333pt;}
.y126{bottom:596.644000pt;}
.y52{bottom:604.170667pt;}
.y35{bottom:607.552000pt;}
.yff{bottom:607.950667pt;}
.y8c{bottom:608.420000pt;}
.ya7{bottom:610.021333pt;}
.ye1{bottom:610.939285pt;}
.y125{bottom:614.709333pt;}
.yf{bottom:621.436000pt;}
.y51{bottom:622.236000pt;}
.y8b{bottom:623.030667pt;}
.y13f{bottom:623.222667pt;}
.ya6{bottom:624.632000pt;}
.y34{bottom:625.617333pt;}
.yfd{bottom:626.016000pt;}
.y67{bottom:628.112000pt;}
.ydf{bottom:629.621236pt;}
.yfe{bottom:629.854667pt;}
.y10f{bottom:634.705333pt;}
.ye0{bottom:634.923921pt;}
.yd4{bottom:636.501333pt;}
.y8a{bottom:637.642667pt;}
.ydd{bottom:638.695671pt;}
.ya5{bottom:639.244000pt;}
.y50{bottom:640.301333pt;}
.y13e{bottom:641.288000pt;}
.ybb{bottom:641.374667pt;}
.y66{bottom:642.722667pt;}
.y33{bottom:643.682667pt;}
.yde{bottom:643.998356pt;}
.yfc{bottom:644.081333pt;}
.yd0{bottom:644.680000pt;}
.ydc{bottom:647.768767pt;}
.y124{bottom:649.050667pt;}
.y10e{bottom:649.316000pt;}
.yd3{bottom:651.113333pt;}
.y13d{bottom:659.353333pt;}
.y32{bottom:661.748000pt;}
.yfb{bottom:662.146667pt;}
.y10d{bottom:663.928000pt;}
.y123{bottom:667.117333pt;}
.y13c{bottom:677.418667pt;}
.y10c{bottom:678.540000pt;}
.y31{bottom:679.814667pt;}
.yfa{bottom:680.213333pt;}
.y4f{bottom:684.089333pt;}
.y13b{bottom:695.485333pt;}
.y30{bottom:697.880000pt;}
.ye{bottom:698.090667pt;}
.yf9{bottom:698.278667pt;}
.y4e{bottom:698.701333pt;}
.y122{bottom:701.458667pt;}
.yd{bottom:703.169333pt;}
.yf8{bottom:712.649333pt;}
.y4d{bottom:713.313333pt;}
.y2f{bottom:715.945333pt;}
.yf7{bottom:716.344000pt;}
.y121{bottom:719.524000pt;}
.yc{bottom:724.273333pt;}
.y13a{bottom:726.392000pt;}
.y4c{bottom:727.925333pt;}
.y2e{bottom:734.010667pt;}
.y120{bottom:737.589333pt;}
.yb{bottom:738.884000pt;}
.yf6{bottom:741.016000pt;}
.ya{bottom:743.962667pt;}
.y139{bottom:744.458667pt;}
.yf5{bottom:747.398667pt;}
.yf4{bottom:750.993333pt;}
.y2d{bottom:752.076000pt;}
.y138{bottom:762.524000pt;}
.y9{bottom:765.066667pt;}
.yba{bottom:765.708000pt;}
.yb9{bottom:765.976000pt;}
.y2c{bottom:770.142667pt;}
.y11f{bottom:771.932000pt;}
.yf3{bottom:772.449333pt;}
.yf2{bottom:776.045333pt;}
.y8{bottom:779.678667pt;}
.ya4{bottom:782.249333pt;}
.y7{bottom:784.757333pt;}
.y2b{bottom:788.208000pt;}
.y11e{bottom:789.997333pt;}
.y137{bottom:793.430667pt;}
.y2a{bottom:806.273333pt;}
.y11d{bottom:808.062667pt;}
.y136{bottom:811.497333pt;}
.y154{bottom:812.384000pt;}
.y5{bottom:819.144000pt;}
.y29{bottom:824.338667pt;}
.y6{bottom:824.422667pt;}
.y11c{bottom:826.128000pt;}
.y135{bottom:829.562667pt;}
.y153{bottom:830.449333pt;}
.ycf{bottom:836.090667pt;}
.y3{bottom:837.210667pt;}
.y28{bottom:842.404000pt;}
.y4{bottom:842.488000pt;}
.y152{bottom:848.514667pt;}
.y27{bottom:860.470667pt;}
.y151{bottom:866.580000pt;}
.y26{bottom:878.536000pt;}
.y2{bottom:890.756000pt;}
.y25{bottom:896.601333pt;}
.y89{bottom:910.045333pt;}
.yb8{bottom:912.358667pt;}
.y1{bottom:914.666667pt;}
.y4b{bottom:918.372000pt;}
.y24{bottom:962.488000pt;}
.h9{height:15.207014pt;}
.h4{height:23.761525pt;}
.h19{height:23.869640pt;}
.hf{height:28.692360pt;}
.h5{height:30.286507pt;}
.hc{height:34.239693pt;}
.h11{height:35.521681pt;}
.hd{height:35.865600pt;}
.h20{height:38.749123pt;}
.h3{height:40.381840pt;}
.h7{height:43.636400pt;}
.h18{height:43.834946pt;}
.h12{height:44.870858pt;}
.h8{height:44.876191pt;}
.h6{height:45.429760pt;}
.h1c{height:47.788191pt;}
.h13{height:51.076909pt;}
.h15{height:51.082243pt;}
.h2{height:55.272773pt;}
.h17{height:55.524264pt;}
.h1d{height:58.020400pt;}
.h14{height:58.271576pt;}
.h16{height:58.276909pt;}
.he{height:58.415067pt;}
.h10{height:58.420400pt;}
.h1{height:72.687413pt;}
.h1f{height:83.545733pt;}
.h1a{height:91.816647pt;}
.h1e{height:97.380400pt;}
.ha{height:127.509822pt;}
.h1b{height:128.114387pt;}
.hb{height:169.824489pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:98.072000pt;}
.x14{left:104.068000pt;}
.x68{left:105.153333pt;}
.x16{left:108.680000pt;}
.x105{left:111.848014pt;}
.x26{left:114.276000pt;}
.xf5{left:115.216000pt;}
.x3{left:116.178667pt;}
.x25{left:119.616000pt;}
.x104{left:120.524648pt;}
.xdc{left:123.896000pt;}
.xf1{left:124.958667pt;}
.x1{left:125.964000pt;}
.x113{left:127.696000pt;}
.x7d{left:131.189333pt;}
.xf8{left:133.088000pt;}
.x70{left:134.285333pt;}
.xc7{left:137.080000pt;}
.x2b{left:141.100000pt;}
.xc8{left:142.705333pt;}
.x103{left:144.329804pt;}
.xba{left:147.245333pt;}
.x35{left:148.370667pt;}
.xf9{left:149.845333pt;}
.xf2{left:151.598667pt;}
.x58{left:153.301333pt;}
.xaa{left:155.449333pt;}
.x9f{left:156.576000pt;}
.x18{left:158.154667pt;}
.x114{left:160.889333pt;}
.xd{left:162.578667pt;}
.x19{left:163.642667pt;}
.xab{left:165.650667pt;}
.xbb{left:167.145333pt;}
.x2c{left:168.476000pt;}
.x69{left:170.346667pt;}
.x118{left:171.585333pt;}
.x6f{left:173.826667pt;}
.x28{left:174.916000pt;}
.x7e{left:177.714667pt;}
.x5b{left:179.284000pt;}
.x6a{left:180.392000pt;}
.x51{left:184.113333pt;}
.xcc{left:188.384000pt;}
.x17{left:190.634667pt;}
.x59{left:192.290667pt;}
.x54{left:193.748000pt;}
.xcd{left:194.844000pt;}
.x4f{left:196.156000pt;}
.x8e{left:197.092000pt;}
.x52{left:199.828000pt;}
.x107{left:201.574420pt;}
.x55{left:202.858667pt;}
.x37{left:204.072000pt;}
.x7f{left:206.160000pt;}
.xfa{left:207.117333pt;}
.x50{left:212.241333pt;}
.xce{left:216.001333pt;}
.x4{left:221.818667pt;}
.x115{left:224.321333pt;}
.xd6{left:225.320000pt;}
.xd3{left:226.708000pt;}
.x5{left:228.126667pt;}
.xae{left:229.432000pt;}
.x4c{left:231.478667pt;}
.x15{left:233.684000pt;}
.xfe{left:237.376582pt;}
.x5a{left:241.414667pt;}
.xa7{left:244.738667pt;}
.x42{left:245.760000pt;}
.xd9{left:247.414667pt;}
.x8f{left:248.977333pt;}
.xaf{left:250.286667pt;}
.xdd{left:251.792000pt;}
.x89{left:252.842667pt;}
.x80{left:254.322667pt;}
.xb0{left:255.912000pt;}
.x90{left:257.217333pt;}
.x81{left:259.145333pt;}
.x5c{left:260.310667pt;}
.x119{left:263.050667pt;}
.x99{left:264.018667pt;}
.xb1{left:265.250667pt;}
.x2{left:269.725333pt;}
.x10a{left:270.741333pt;}
.xa9{left:271.669333pt;}
.x71{left:274.101333pt;}
.xd4{left:275.064000pt;}
.x2f{left:277.574667pt;}
.xb5{left:278.576000pt;}
.xde{left:279.910667pt;}
.x33{left:281.465333pt;}
.x72{left:282.944000pt;}
.xd1{left:285.541333pt;}
.xb6{left:287.128000pt;}
.x9a{left:289.272000pt;}
.x30{left:291.344000pt;}
.xe7{left:294.597333pt;}
.xd2{left:297.169333pt;}
.x10b{left:300.506667pt;}
.xdf{left:301.544000pt;}
.xe8{left:303.116000pt;}
.x29{left:305.152000pt;}
.xf4{left:306.696000pt;}
.x9b{left:307.702667pt;}
.xe6{left:308.750667pt;}
.xb2{left:310.456000pt;}
.x9c{left:311.797333pt;}
.x91{left:313.785333pt;}
.x10c{left:317.208000pt;}
.xb3{left:319.794667pt;}
.xe{left:321.536000pt;}
.xda{left:326.002667pt;}
.x34{left:328.240000pt;}
.x6{left:330.534667pt;}
.xd8{left:333.524000pt;}
.xb7{left:335.654667pt;}
.xf{left:336.624000pt;}
.x92{left:338.257333pt;}
.x7{left:339.314667pt;}
.x60{left:341.228000pt;}
.x3c{left:342.489333pt;}
.x8{left:344.296000pt;}
.x56{left:345.317333pt;}
.x43{left:349.762667pt;}
.x108{left:350.876000pt;}
.xfc{left:351.877333pt;}
.x10d{left:358.226667pt;}
.x3d{left:359.304000pt;}
.xe5{left:360.429333pt;}
.xfb{left:361.617333pt;}
.xff{left:363.280182pt;}
.xb8{left:364.389333pt;}
.x117{left:366.797333pt;}
.x3e{left:368.145333pt;}
.x109{left:369.618667pt;}
.x112{left:370.544000pt;}
.x1f{left:371.562667pt;}
.xdb{left:373.056000pt;}
.xb4{left:374.278667pt;}
.xa0{left:377.366667pt;}
.x100{left:380.301278pt;}
.x8b{left:381.429333pt;}
.xbc{left:383.489333pt;}
.x3f{left:385.089333pt;}
.x73{left:387.698667pt;}
.x20{left:390.149333pt;}
.x93{left:391.052000pt;}
.xac{left:392.709333pt;}
.x38{left:393.728000pt;}
.x94{left:395.146667pt;}
.x61{left:397.960000pt;}
.x21{left:400.761333pt;}
.xfd{left:401.710667pt;}
.xad{left:404.208000pt;}
.xec{left:407.260000pt;}
.x46{left:408.620000pt;}
.x8c{left:409.806667pt;}
.x96{left:412.154667pt;}
.x40{left:413.213333pt;}
.xa4{left:414.565333pt;}
.xc9{left:415.850667pt;}
.xf6{left:416.869333pt;}
.x10{left:418.382667pt;}
.xa5{left:419.388000pt;}
.x5d{left:422.214667pt;}
.x11{left:425.317333pt;}
.x111{left:427.190667pt;}
.x39{left:428.489333pt;}
.x41{left:431.173333pt;}
.xf7{left:433.684000pt;}
.xa1{left:435.522667pt;}
.x62{left:437.305333pt;}
.x1a{left:442.100000pt;}
.xbe{left:443.586667pt;}
.xb9{left:445.938667pt;}
.x76{left:447.432000pt;}
.x1b{left:449.372000pt;}
.x47{left:451.694667pt;}
.xc4{left:454.357333pt;}
.x11a{left:455.328000pt;}
.xed{left:456.402667pt;}
.x8a{left:458.036000pt;}
.x1c{left:459.294667pt;}
.xef{left:460.232000pt;}
.x48{left:461.133333pt;}
.x57{left:463.216000pt;}
.xc5{left:465.856000pt;}
.x74{left:468.364000pt;}
.x75{left:472.405333pt;}
.x110{left:473.904000pt;}
.x3a{left:475.105333pt;}
.xa3{left:477.494667pt;}
.xd5{left:479.914667pt;}
.x106{left:480.926381pt;}
.x53{left:483.469333pt;}
.x49{left:486.269333pt;}
.x1d{left:487.694667pt;}
.x5e{left:491.928000pt;}
.x63{left:494.037333pt;}
.x5f{left:496.750667pt;}
.x9{left:497.925333pt;}
.x64{left:498.860000pt;}
.xc6{left:500.693333pt;}
.xa{left:504.233333pt;}
.x1e{left:508.550667pt;}
.xe0{left:517.265333pt;}
.x77{left:520.672000pt;}
.x3b{left:522.888000pt;}
.x101{left:525.824409pt;}
.xbf{left:527.861333pt;}
.x4a{left:530.390667pt;}
.x102{left:531.475337pt;}
.xe1{left:532.982667pt;}
.x4b{left:534.485333pt;}
.xc0{left:536.734667pt;}
.xf3{left:537.640000pt;}
.xd7{left:540.474667pt;}
.xa6{left:542.313333pt;}
.xeb{left:543.690667pt;}
.x44{left:549.688000pt;}
.x6b{left:551.185333pt;}
.x65{left:552.544000pt;}
.xe2{left:556.284000pt;}
.x79{left:557.540000pt;}
.x85{left:560.141333pt;}
.x82{left:561.058667pt;}
.x10e{left:562.056000pt;}
.x6c{left:563.306667pt;}
.x66{left:564.665333pt;}
.x45{left:566.068000pt;}
.x7a{left:569.661333pt;}
.xca{left:570.713333pt;}
.x116{left:571.772000pt;}
.x83{left:573.180000pt;}
.xc1{left:574.570667pt;}
.xe3{left:576.913333pt;}
.x6d{left:579.344000pt;}
.xe4{left:581.340000pt;}
.x22{left:582.301333pt;}
.x95{left:583.778667pt;}
.x86{left:585.084000pt;}
.xcb{left:586.409333pt;}
.xc2{left:587.298667pt;}
.x84{left:589.650667pt;}
.x78{left:592.481333pt;}
.xa8{left:593.781333pt;}
.x87{left:596.592000pt;}
.x12{left:598.152000pt;}
.x23{left:600.886667pt;}
.x7b{left:602.232000pt;}
.xe9{left:604.132000pt;}
.x24{left:605.709333pt;}
.xa2{left:606.942667pt;}
.xbd{left:613.340000pt;}
.x2d{left:614.744000pt;}
.xcf{left:616.888000pt;}
.x9d{left:620.185333pt;}
.x97{left:621.813333pt;}
.x4d{left:623.561333pt;}
.x88{left:624.504000pt;}
.x10f{left:626.324000pt;}
.x7c{left:630.549333pt;}
.x2e{left:633.085333pt;}
.x4e{left:634.066667pt;}
.x6e{left:635.773333pt;}
.x98{left:637.105333pt;}
.x9e{left:638.457333pt;}
.x36{left:639.398667pt;}
.xb{left:640.533333pt;}
.xd0{left:642.969333pt;}
.x67{left:645.818667pt;}
.xc{left:646.841333pt;}
.xc3{left:649.384000pt;}
.x2a{left:650.636000pt;}
.xee{left:654.656000pt;}
.x32{left:657.064000pt;}
.x31{left:659.393333pt;}
.xea{left:660.672000pt;}
.x27{left:661.886667pt;}
.xf0{left:664.296000pt;}
.x8d{left:665.706667pt;}
}




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