
    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_cd4bab77b4adb63e8f61458b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_68e4c6857fab01eba2425fda.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9908c7110c5e9eb076195e9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_41e06e8719383ce1cfd74d02.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4f6a2f581206c1a0cb862daa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_697b7c42c7902b22d08ea498.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c546e1be1e3106bda5c9b153.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923828;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_4f62dd23a1ff04fbe63a9b1e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3a237155226fdb3693db2f98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_54f998668e25364494831185.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_bf6c1652951012a232e4b33d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.890625;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_17d306d91ef714720f5976af.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ba513c2b5938addf80c7bd15.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923828;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_9914556937e213c88937e0a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939941;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_bc6cb6c3c787575f46acd96c.woff2')format("woff");}.fff{font-family:fff;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.874400px;}
.v3{vertical-align:19.980000px;}
.v4{vertical-align:23.976000px;}
.ls16{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-1.188000px;}
.ls15{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.139920px;}
.ls17{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.600000px;}
.lse{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.897600px;}
.ls1{letter-spacing:0.900000px;}
.ls7{letter-spacing:0.960000px;}
.ls11{letter-spacing:1.140000px;}
.ls18{letter-spacing:1.560000px;}
.ls13{letter-spacing:3.840000px;}
.ls5{letter-spacing:1151.469000px;}
.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;}
}
.ws17b{word-spacing:-60.000000px;}
.ws199{word-spacing:-32.940000px;}
.ws84{word-spacing:-29.646000px;}
.ws194{word-spacing:-18.360000px;}
.ws1bd{word-spacing:-16.860000px;}
.ws1{word-spacing:-16.830000px;}
.ws19{word-spacing:-16.698000px;}
.ws1bc{word-spacing:-15.900000px;}
.ws1b6{word-spacing:-15.840000px;}
.ws1be{word-spacing:-15.780000px;}
.ws1b8{word-spacing:-15.600000px;}
.ws46{word-spacing:-15.444000px;}
.ws193{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.300000px;}
.ws1bb{word-spacing:-15.180000px;}
.ws1b7{word-spacing:-15.060000px;}
.wsba{word-spacing:-15.000000px;}
.ws1ba{word-spacing:-14.880000px;}
.ws124{word-spacing:-14.760000px;}
.ws2{word-spacing:-14.040000px;}
.ws86{word-spacing:-13.770000px;}
.ws1c{word-spacing:-13.398000px;}
.ws1b9{word-spacing:-13.140000px;}
.ws87{word-spacing:-12.636000px;}
.ws1d{word-spacing:-11.220000px;}
.ws1b{word-spacing:-11.088000px;}
.ws18{word-spacing:-9.636000px;}
.ws8a{word-spacing:-8.919900px;}
.ws10c{word-spacing:-8.779980px;}
.ws1a1{word-spacing:-8.185320px;}
.ws89{word-spacing:-8.027910px;}
.ws16{word-spacing:-7.524000px;}
.ws107{word-spacing:-6.960000px;}
.ws1a{word-spacing:-6.798000px;}
.ws1b4{word-spacing:-6.600000px;}
.ws24{word-spacing:-6.180000px;}
.ws30{word-spacing:-5.880000px;}
.ws1b2{word-spacing:-5.640000px;}
.ws13a{word-spacing:-5.580000px;}
.ws1ad{word-spacing:-5.400000px;}
.ws19a{word-spacing:-5.280000px;}
.ws106{word-spacing:-5.160000px;}
.ws17{word-spacing:-5.082000px;}
.ws164{word-spacing:-5.040000px;}
.ws1aa{word-spacing:-4.980000px;}
.ws14{word-spacing:-4.950000px;}
.wsd3{word-spacing:-4.800000px;}
.wsb4{word-spacing:-4.740000px;}
.ws1f{word-spacing:-4.620000px;}
.ws15c{word-spacing:-4.560000px;}
.ws149{word-spacing:-4.440000px;}
.ws15{word-spacing:-4.422000px;}
.ws69{word-spacing:-4.380000px;}
.ws148{word-spacing:-4.320000px;}
.ws190{word-spacing:-4.200000px;}
.ws4d{word-spacing:-4.140000px;}
.ws18e{word-spacing:-4.020000px;}
.ws12f{word-spacing:-3.960000px;}
.ws156{word-spacing:-3.900000px;}
.ws78{word-spacing:-3.840000px;}
.ws12{word-spacing:-3.828000px;}
.ws19d{word-spacing:-3.780000px;}
.ws16b{word-spacing:-3.720000px;}
.ws1b1{word-spacing:-3.660000px;}
.ws163{word-spacing:-3.600000px;}
.ws1ab{word-spacing:-3.480000px;}
.ws3c{word-spacing:-3.420000px;}
.ws6f{word-spacing:-3.360000px;}
.ws176{word-spacing:-3.300000px;}
.ws1a6{word-spacing:-3.240000px;}
.ws142{word-spacing:-3.180000px;}
.ws172{word-spacing:-3.120000px;}
.ws175{word-spacing:-3.060000px;}
.ws41{word-spacing:-3.000000px;}
.wscc{word-spacing:-2.940000px;}
.ws9a{word-spacing:-2.880000px;}
.ws168{word-spacing:-2.820000px;}
.wsb9{word-spacing:-2.760000px;}
.ws6d{word-spacing:-2.700000px;}
.ws27{word-spacing:-2.640000px;}
.ws113{word-spacing:-2.580000px;}
.ws93{word-spacing:-2.520000px;}
.wsad{word-spacing:-2.460000px;}
.wsa0{word-spacing:-2.400000px;}
.wsa8{word-spacing:-2.340000px;}
.wsf1{word-spacing:-2.280000px;}
.ws10a{word-spacing:-2.220000px;}
.ws31{word-spacing:-2.160000px;}
.ws45{word-spacing:-2.100000px;}
.wsb1{word-spacing:-2.040000px;}
.wsf8{word-spacing:-1.980000px;}
.ws16d{word-spacing:-1.920000px;}
.ws62{word-spacing:-1.860000px;}
.ws18a{word-spacing:-1.800000px;}
.wsa4{word-spacing:-1.782000px;}
.ws9{word-spacing:-1.740000px;}
.ws79{word-spacing:-1.680000px;}
.wsf0{word-spacing:-1.620000px;}
.wsb6{word-spacing:-1.560000px;}
.wsd5{word-spacing:-1.500000px;}
.ws1e{word-spacing:-1.452000px;}
.ws180{word-spacing:-1.440000px;}
.ws8f{word-spacing:-1.380000px;}
.ws103{word-spacing:-1.320000px;}
.wsfb{word-spacing:-1.260000px;}
.ws8{word-spacing:-1.200000px;}
.wsfc{word-spacing:-1.140000px;}
.wsbb{word-spacing:-1.080000px;}
.ws88{word-spacing:-1.026000px;}
.ws50{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.960000px;}
.wse4{word-spacing:-0.900000px;}
.wsb7{word-spacing:-0.840000px;}
.ws15b{word-spacing:-0.780000px;}
.wsb{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.660000px;}
.ws108{word-spacing:-0.600000px;}
.ws57{word-spacing:-0.540000px;}
.ws3d{word-spacing:-0.480000px;}
.ws10d{word-spacing:-0.420000px;}
.ws11d{word-spacing:-0.360000px;}
.ws109{word-spacing:-0.300000px;}
.wsa7{word-spacing:-0.240000px;}
.ws141{word-spacing:-0.216000px;}
.ws68{word-spacing:-0.180000px;}
.wsd{word-spacing:-0.120000px;}
.wsac{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.060000px;}
.wsee{word-spacing:0.120000px;}
.ws43{word-spacing:0.180000px;}
.ws2a{word-spacing:0.240000px;}
.ws49{word-spacing:0.300000px;}
.ws119{word-spacing:0.360000px;}
.wsb5{word-spacing:0.420000px;}
.ws10{word-spacing:0.480000px;}
.ws13{word-spacing:0.528000px;}
.ws72{word-spacing:0.540000px;}
.ws6e{word-spacing:0.600000px;}
.wsb0{word-spacing:0.660000px;}
.ws96{word-spacing:0.720000px;}
.wse6{word-spacing:0.780000px;}
.wsa5{word-spacing:0.810000px;}
.ws165{word-spacing:0.840000px;}
.wsf{word-spacing:0.900000px;}
.ws20{word-spacing:0.960000px;}
.wsa2{word-spacing:1.020000px;}
.ws23{word-spacing:1.080000px;}
.ws126{word-spacing:1.140000px;}
.ws38{word-spacing:1.200000px;}
.ws63{word-spacing:1.260000px;}
.ws5{word-spacing:1.320000px;}
.ws6{word-spacing:1.380000px;}
.wsc0{word-spacing:1.440000px;}
.ws9c{word-spacing:1.500000px;}
.ws90{word-spacing:1.560000px;}
.wsa3{word-spacing:1.620000px;}
.ws22{word-spacing:1.680000px;}
.ws2c{word-spacing:1.740000px;}
.wsf5{word-spacing:1.800000px;}
.ws5b{word-spacing:1.920000px;}
.ws112{word-spacing:1.980000px;}
.wsaf{word-spacing:2.040000px;}
.ws26{word-spacing:2.100000px;}
.ws53{word-spacing:2.160000px;}
.ws8c{word-spacing:2.220000px;}
.ws137{word-spacing:2.280000px;}
.ws9e{word-spacing:2.340000px;}
.ws47{word-spacing:2.400000px;}
.ws56{word-spacing:2.460000px;}
.ws59{word-spacing:2.520000px;}
.ws9b{word-spacing:2.580000px;}
.wsf9{word-spacing:2.640000px;}
.ws2d{word-spacing:2.700000px;}
.ws98{word-spacing:2.760000px;}
.ws13c{word-spacing:2.820000px;}
.ws81{word-spacing:2.880000px;}
.ws75{word-spacing:2.940000px;}
.wsc6{word-spacing:3.000000px;}
.ws11f{word-spacing:3.060000px;}
.ws80{word-spacing:3.120000px;}
.wsc2{word-spacing:3.180000px;}
.ws8e{word-spacing:3.240000px;}
.ws64{word-spacing:3.300000px;}
.ws51{word-spacing:3.360000px;}
.ws4{word-spacing:3.420000px;}
.ws110{word-spacing:3.480000px;}
.ws65{word-spacing:3.540000px;}
.wsae{word-spacing:3.600000px;}
.ws5f{word-spacing:3.660000px;}
.ws7e{word-spacing:3.720000px;}
.ws6c{word-spacing:3.780000px;}
.ws28{word-spacing:3.840000px;}
.ws7c{word-spacing:3.900000px;}
.ws3a{word-spacing:3.960000px;}
.ws58{word-spacing:4.020000px;}
.wsb3{word-spacing:4.080000px;}
.ws14d{word-spacing:4.140000px;}
.ws9d{word-spacing:4.200000px;}
.wsfd{word-spacing:4.260000px;}
.ws7f{word-spacing:4.320000px;}
.ws3b{word-spacing:4.380000px;}
.wsc{word-spacing:4.440000px;}
.ws189{word-spacing:4.500000px;}
.ws2e{word-spacing:4.560000px;}
.ws4f{word-spacing:4.620000px;}
.ws7d{word-spacing:4.680000px;}
.ws55{word-spacing:4.740000px;}
.ws5a{word-spacing:4.800000px;}
.wse0{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.wsc1{word-spacing:4.980000px;}
.wsaa{word-spacing:5.040000px;}
.wsab{word-spacing:5.100000px;}
.ws32{word-spacing:5.160000px;}
.ws9f{word-spacing:5.220000px;}
.ws29{word-spacing:5.280000px;}
.ws76{word-spacing:5.340000px;}
.ws14a{word-spacing:5.400000px;}
.ws5d{word-spacing:5.460000px;}
.ws6b{word-spacing:5.520000px;}
.ws3e{word-spacing:5.580000px;}
.ws1a2{word-spacing:5.640000px;}
.wse{word-spacing:5.700000px;}
.ws13b{word-spacing:5.760000px;}
.ws60{word-spacing:5.820000px;}
.ws33{word-spacing:5.880000px;}
.ws42{word-spacing:5.940000px;}
.ws83{word-spacing:6.000000px;}
.wsf6{word-spacing:6.060000px;}
.ws48{word-spacing:6.120000px;}
.ws4e{word-spacing:6.180000px;}
.wsc3{word-spacing:6.240000px;}
.wsd7{word-spacing:6.300000px;}
.ws167{word-spacing:6.360000px;}
.wsea{word-spacing:6.420000px;}
.ws129{word-spacing:6.480000px;}
.wseb{word-spacing:6.540000px;}
.ws120{word-spacing:6.600000px;}
.ws35{word-spacing:6.660000px;}
.ws166{word-spacing:6.720000px;}
.wscd{word-spacing:6.780000px;}
.wsa6{word-spacing:6.840000px;}
.ws2f{word-spacing:6.900000px;}
.wsc5{word-spacing:6.960000px;}
.ws40{word-spacing:7.020000px;}
.ws136{word-spacing:7.080000px;}
.ws8b{word-spacing:7.140000px;}
.wsfa{word-spacing:7.200000px;}
.wsb8{word-spacing:7.260000px;}
.wsbe{word-spacing:7.320000px;}
.ws5e{word-spacing:7.380000px;}
.wsce{word-spacing:7.440000px;}
.ws52{word-spacing:7.500000px;}
.wsd0{word-spacing:7.560000px;}
.ws104{word-spacing:7.620000px;}
.ws1a9{word-spacing:7.680000px;}
.ws169{word-spacing:7.740000px;}
.wscb{word-spacing:7.800000px;}
.ws77{word-spacing:7.920000px;}
.ws1b0{word-spacing:7.980000px;}
.ws140{word-spacing:8.040000px;}
.wsf7{word-spacing:8.100000px;}
.ws7a{word-spacing:8.160000px;}
.ws66{word-spacing:8.220000px;}
.ws39{word-spacing:8.280000px;}
.wsec{word-spacing:8.340000px;}
.wsd4{word-spacing:8.400000px;}
.wse7{word-spacing:8.460000px;}
.ws181{word-spacing:8.520000px;}
.ws160{word-spacing:8.580000px;}
.ws158{word-spacing:8.640000px;}
.ws8d{word-spacing:8.700000px;}
.ws70{word-spacing:8.760000px;}
.ws118{word-spacing:8.820000px;}
.ws36{word-spacing:8.880000px;}
.wsd1{word-spacing:8.940000px;}
.ws102{word-spacing:9.000000px;}
.ws74{word-spacing:9.060000px;}
.ws12a{word-spacing:9.120000px;}
.ws4b{word-spacing:9.180000px;}
.ws71{word-spacing:9.240000px;}
.ws12e{word-spacing:9.300000px;}
.wscf{word-spacing:9.360000px;}
.ws10f{word-spacing:9.420000px;}
.wsef{word-spacing:9.480000px;}
.ws18c{word-spacing:9.540000px;}
.wsc7{word-spacing:9.600000px;}
.ws11b{word-spacing:9.660000px;}
.ws130{word-spacing:9.720000px;}
.ws153{word-spacing:9.780000px;}
.wsbf{word-spacing:9.840000px;}
.ws195{word-spacing:9.900000px;}
.ws44{word-spacing:9.960000px;}
.ws94{word-spacing:10.020000px;}
.ws14e{word-spacing:10.080000px;}
.ws18d{word-spacing:10.140000px;}
.ws1a0{word-spacing:10.200000px;}
.ws187{word-spacing:10.260000px;}
.ws97{word-spacing:10.320000px;}
.ws67{word-spacing:10.380000px;}
.ws34{word-spacing:10.440000px;}
.wsf2{word-spacing:10.500000px;}
.ws1ac{word-spacing:10.560000px;}
.ws15e{word-spacing:10.680000px;}
.ws6a{word-spacing:10.740000px;}
.ws132{word-spacing:10.800000px;}
.ws15d{word-spacing:10.860000px;}
.ws99{word-spacing:10.920000px;}
.wse5{word-spacing:11.040000px;}
.ws10b{word-spacing:11.100000px;}
.wsbd{word-spacing:11.160000px;}
.wsdf{word-spacing:11.220000px;}
.ws2b{word-spacing:11.340000px;}
.wsd2{word-spacing:11.400000px;}
.ws127{word-spacing:11.460000px;}
.wsed{word-spacing:11.520000px;}
.ws54{word-spacing:11.580000px;}
.ws16c{word-spacing:11.640000px;}
.wsbc{word-spacing:11.700000px;}
.ws115{word-spacing:11.820000px;}
.ws179{word-spacing:11.880000px;}
.ws121{word-spacing:11.940000px;}
.ws183{word-spacing:12.060000px;}
.ws185{word-spacing:12.120000px;}
.wsdb{word-spacing:12.180000px;}
.ws151{word-spacing:12.240000px;}
.ws191{word-spacing:12.300000px;}
.ws4a{word-spacing:12.360000px;}
.ws134{word-spacing:12.420000px;}
.ws61{word-spacing:12.540000px;}
.ws145{word-spacing:12.600000px;}
.ws173{word-spacing:12.660000px;}
.wsda{word-spacing:12.720000px;}
.wse3{word-spacing:12.780000px;}
.wsd8{word-spacing:12.840000px;}
.ws198{word-spacing:12.900000px;}
.ws155{word-spacing:12.960000px;}
.ws1ae{word-spacing:13.020000px;}
.ws73{word-spacing:13.140000px;}
.wse8{word-spacing:13.200000px;}
.ws7b{word-spacing:13.260000px;}
.ws196{word-spacing:13.320000px;}
.ws37{word-spacing:13.380000px;}
.ws25{word-spacing:13.500000px;}
.ws12d{word-spacing:13.680000px;}
.ws152{word-spacing:13.740000px;}
.ws186{word-spacing:13.800000px;}
.ws19c{word-spacing:13.920000px;}
.ws17d{word-spacing:13.980000px;}
.ws11{word-spacing:14.040000px;}
.ws147{word-spacing:14.100000px;}
.wsd9{word-spacing:14.160000px;}
.wsca{word-spacing:14.220000px;}
.wsb2{word-spacing:14.280000px;}
.ws111{word-spacing:14.340000px;}
.ws150{word-spacing:14.400000px;}
.ws5c{word-spacing:14.580000px;}
.ws184{word-spacing:14.640000px;}
.ws15a{word-spacing:14.700000px;}
.wsd6{word-spacing:14.760000px;}
.ws13f{word-spacing:14.820000px;}
.ws178{word-spacing:14.880000px;}
.wsde{word-spacing:14.940000px;}
.ws157{word-spacing:15.000000px;}
.wse9{word-spacing:15.120000px;}
.ws133{word-spacing:15.180000px;}
.ws14c{word-spacing:15.240000px;}
.ws161{word-spacing:15.300000px;}
.ws171{word-spacing:15.360000px;}
.ws146{word-spacing:15.480000px;}
.ws159{word-spacing:15.540000px;}
.ws122{word-spacing:15.600000px;}
.ws162{word-spacing:15.720000px;}
.ws11c{word-spacing:15.780000px;}
.ws143{word-spacing:15.840000px;}
.ws12b{word-spacing:15.900000px;}
.ws101{word-spacing:16.020000px;}
.ws1b5{word-spacing:16.140000px;}
.ws128{word-spacing:16.320000px;}
.ws17a{word-spacing:16.380000px;}
.wsdd{word-spacing:16.440000px;}
.wsc8{word-spacing:16.500000px;}
.ws139{word-spacing:16.560000px;}
.ws82{word-spacing:16.860000px;}
.wsa9{word-spacing:16.920000px;}
.ws15f{word-spacing:16.980000px;}
.ws92{word-spacing:17.040000px;}
.ws144{word-spacing:17.220000px;}
.ws16f{word-spacing:17.280000px;}
.ws131{word-spacing:17.460000px;}
.wsf4{word-spacing:17.820000px;}
.ws188{word-spacing:17.940000px;}
.ws17e{word-spacing:18.180000px;}
.ws95{word-spacing:18.300000px;}
.ws91{word-spacing:18.600000px;}
.wse1{word-spacing:18.660000px;}
.ws154{word-spacing:18.780000px;}
.ws18f{word-spacing:18.840000px;}
.ws4c{word-spacing:19.020000px;}
.wsc4{word-spacing:19.080000px;}
.ws174{word-spacing:19.140000px;}
.ws13d{word-spacing:19.200000px;}
.ws105{word-spacing:19.320000px;}
.wsf3{word-spacing:19.380000px;}
.ws116{word-spacing:19.500000px;}
.ws177{word-spacing:19.560000px;}
.ws170{word-spacing:19.680000px;}
.ws17c{word-spacing:19.920000px;}
.ws182{word-spacing:20.100000px;}
.ws21{word-spacing:20.160000px;}
.ws16a{word-spacing:20.460000px;}
.ws197{word-spacing:20.520000px;}
.ws1a5{word-spacing:20.580000px;}
.ws16e{word-spacing:21.000000px;}
.ws1a8{word-spacing:21.060000px;}
.ws17f{word-spacing:21.120000px;}
.ws11e{word-spacing:21.540000px;}
.ws192{word-spacing:21.900000px;}
.ws114{word-spacing:22.020000px;}
.wsc9{word-spacing:22.080000px;}
.ws1a3{word-spacing:22.140000px;}
.ws117{word-spacing:22.260000px;}
.ws1a4{word-spacing:22.380000px;}
.ws13e{word-spacing:22.800000px;}
.wsdc{word-spacing:22.860000px;}
.ws19b{word-spacing:22.920000px;}
.ws1a7{word-spacing:22.980000px;}
.ws18b{word-spacing:23.100000px;}
.ws138{word-spacing:23.160000px;}
.ws135{word-spacing:23.400000px;}
.wse2{word-spacing:24.600000px;}
.ws12c{word-spacing:25.920000px;}
.ws19f{word-spacing:26.640000px;}
.ws19e{word-spacing:29.040000px;}
.ws10e{word-spacing:29.100000px;}
.ws125{word-spacing:29.340000px;}
.ws1b3{word-spacing:29.700000px;}
.ws1af{word-spacing:30.720000px;}
.ws14f{word-spacing:32.940000px;}
.ws11a{word-spacing:33.480000px;}
.ws14b{word-spacing:44.220000px;}
.ws85{word-spacing:244.090200px;}
.ws100{word-spacing:255.229800px;}
.wsfe{word-spacing:504.569400px;}
.ws1bf{word-spacing:1113.780600px;}
.ws123{word-spacing:1114.740600px;}
.wsff{word-spacing:1341.147000px;}
._2c{margin-left:-44.453400px;}
._2d{margin-left:-37.706400px;}
._18{margin-left:-34.380000px;}
._30{margin-left:-27.842400px;}
._2e{margin-left:-25.641600px;}
._11{margin-left:-24.110400px;}
._19{margin-left:-22.832400px;}
._22{margin-left:-18.512400px;}
._12{margin-left:-16.380000px;}
._2f{margin-left:-14.487600px;}
._29{margin-left:-11.956800px;}
._10{margin-left:-10.255200px;}
._d{margin-left:-9.163200px;}
._7{margin-left:-7.778400px;}
._1{margin-left:-6.213600px;}
._4{margin-left:-4.680000px;}
._16{margin-left:-3.662400px;}
._2{margin-left:-2.584800px;}
._0{margin-left:-1.504800px;}
._a{width:1.754400px;}
._c{width:3.600000px;}
._9{width:5.492400px;}
._b{width:6.538800px;}
._3{width:7.632000px;}
._8{width:9.213600px;}
._5{width:10.424400px;}
._6{width:11.446200px;}
._f{width:12.768000px;}
._e{width:15.168000px;}
._2a{width:20.851200px;}
._1a{width:23.104380px;}
._17{width:25.966380px;}
._2b{width:28.236600px;}
._1f{width:139.120200px;}
._28{width:159.324000px;}
._21{width:162.323400px;}
._1e{width:219.751800px;}
._27{width:228.814800px;}
._26{width:279.643200px;}
._20{width:343.519800px;}
._15{width:385.528200px;}
._25{width:410.841600px;}
._14{width:473.772600px;}
._13{width:502.565400px;}
._23{width:537.229200px;}
._1b{width:558.956400px;}
._1c{width:705.999000px;}
._24{width:880.327800px;}
._1d{width:1050.930600px;}
._32{width:1723.065600px;}
._31{width:1877.898000px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(85,147,195);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs8{font-size:41.976000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y28a{bottom:-44.548050px;}
.y2a3{bottom:-43.303350px;}
.y0{bottom:0.000000px;}
.y6{bottom:72.781500px;}
.y29{bottom:75.594300px;}
.y2a{bottom:76.812900px;}
.y54{bottom:117.000000px;}
.ye6{bottom:117.000150px;}
.y288{bottom:117.596250px;}
.y5{bottom:117.781500px;}
.yfd{bottom:118.032000px;}
.y235{bottom:118.104150px;}
.y97{bottom:118.899000px;}
.y289{bottom:119.835000px;}
.y1da{bottom:124.942500px;}
.ye5{bottom:139.500150px;}
.y53{bottom:139.531200px;}
.y16a{bottom:139.542150px;}
.y1bb{bottom:139.544250px;}
.y25e{bottom:139.545300px;}
.y179{bottom:139.564650px;}
.y205{bottom:139.630950px;}
.y13e{bottom:139.692750px;}
.y6c{bottom:139.931400px;}
.ye2{bottom:140.000100px;}
.y287{bottom:140.237700px;}
.y4{bottom:140.281500px;}
.yfc{bottom:140.532000px;}
.y234{bottom:140.621850px;}
.y96{bottom:141.399000px;}
.y1d9{bottom:143.692500px;}
.ye9{bottom:143.995650px;}
.ye1{bottom:158.750100px;}
.y52{bottom:162.062250px;}
.y169{bottom:162.084450px;}
.y1ba{bottom:162.088350px;}
.y178{bottom:162.129450px;}
.y204{bottom:162.261900px;}
.y1d8{bottom:162.442500px;}
.y6b{bottom:162.862800px;}
.y286{bottom:162.879300px;}
.yfb{bottom:163.032000px;}
.y233{bottom:163.139550px;}
.y95{bottom:163.899000px;}
.ye4{bottom:166.495650px;}
.ye0{bottom:177.500100px;}
.y13d{bottom:178.885350px;}
.y51{bottom:184.593450px;}
.y168{bottom:184.626600px;}
.y1b9{bottom:184.632450px;}
.y177{bottom:184.694100px;}
.y203{bottom:184.892850px;}
.y25{bottom:185.214000px;}
.y2a1{bottom:185.314950px;}
.y285{bottom:185.520750px;}
.yfa{bottom:185.532000px;}
.y232{bottom:185.657250px;}
.y6a{bottom:185.794200px;}
.y94{bottom:186.399000px;}
.y25d{bottom:192.090450px;}
.y1d7{bottom:192.310050px;}
.ydf{bottom:196.250100px;}
.y13c{bottom:201.577950px;}
.y50{bottom:207.124500px;}
.y167{bottom:207.168750px;}
.y1b8{bottom:207.176700px;}
.y176{bottom:207.258750px;}
.y202{bottom:207.523800px;}
.y24{bottom:207.714000px;}
.y2a0{bottom:207.814950px;}
.yf9{bottom:208.032000px;}
.y284{bottom:208.162350px;}
.y231{bottom:208.174950px;}
.y69{bottom:208.725600px;}
.y93{bottom:208.899000px;}
.y1d6{bottom:211.060050px;}
.y25c{bottom:214.635750px;}
.yde{bottom:226.117500px;}
.y4f{bottom:229.655700px;}
.y166{bottom:229.711050px;}
.y1b7{bottom:229.720800px;}
.y1d5{bottom:229.810050px;}
.y175{bottom:229.823550px;}
.y201{bottom:230.154750px;}
.y23{bottom:230.214000px;}
.y2a9{bottom:230.304000px;}
.y29f{bottom:230.314950px;}
.yf8{bottom:230.532000px;}
.y230{bottom:230.692500px;}
.y283{bottom:230.803800px;}
.y92{bottom:231.399000px;}
.y68{bottom:231.657000px;}
.y25b{bottom:237.180900px;}
.ydd{bottom:244.867500px;}
.y1d4{bottom:248.560050px;}
.y4e{bottom:252.186750px;}
.y165{bottom:252.253200px;}
.y1b6{bottom:252.264900px;}
.y174{bottom:252.388200px;}
.y200{bottom:252.785700px;}
.y29e{bottom:252.814950px;}
.yf7{bottom:253.032000px;}
.y22f{bottom:253.210200px;}
.y91{bottom:253.899000px;}
.y13b{bottom:254.270700px;}
.y67{bottom:254.588250px;}
.ydc{bottom:263.617500px;}
.y22{bottom:273.912900px;}
.y4d{bottom:274.717950px;}
.y164{bottom:274.795500px;}
.y1b5{bottom:274.809150px;}
.y173{bottom:274.952850px;}
.y1ff{bottom:275.416650px;}
.yf6{bottom:275.532000px;}
.y22e{bottom:275.727750px;}
.y9c{bottom:276.399000px;}
.y13a{bottom:276.963300px;}
.y66{bottom:277.519650px;}
.y1d3{bottom:278.427450px;}
.y282{bottom:283.445400px;}
.ydb{bottom:293.484900px;}
.y21{bottom:296.412900px;}
.y1d2{bottom:297.177450px;}
.y25a{bottom:297.226050px;}
.y4c{bottom:297.249000px;}
.y163{bottom:297.337650px;}
.y1b4{bottom:297.353250px;}
.y172{bottom:297.517500px;}
.yf5{bottom:298.032000px;}
.y1fe{bottom:298.047600px;}
.y22d{bottom:298.245450px;}
.y9b{bottom:298.899000px;}
.y65{bottom:300.451050px;}
.y90{bottom:306.399000px;}
.yd4{bottom:312.228300px;}
.yda{bottom:312.234900px;}
.y208{bottom:315.399000px;}
.y1d1{bottom:315.927450px;}
.y20{bottom:318.912900px;}
.y259{bottom:319.771200px;}
.y4b{bottom:319.780200px;}
.y162{bottom:319.879800px;}
.y1b3{bottom:319.897500px;}
.y171{bottom:320.082300px;}
.yf4{bottom:320.532000px;}
.y1fd{bottom:320.678550px;}
.y22c{bottom:320.763150px;}
.y9a{bottom:321.399000px;}
.y64{bottom:323.382450px;}
.yd3{bottom:330.978300px;}
.yd9{bottom:330.984900px;}
.y1d0{bottom:334.677450px;}
.y139{bottom:337.155900px;}
.y207{bottom:337.899000px;}
.y1f{bottom:341.412900px;}
.y4a{bottom:342.311250px;}
.y258{bottom:342.316500px;}
.y161{bottom:342.422100px;}
.y1b2{bottom:342.441600px;}
.y170{bottom:342.646950px;}
.yf3{bottom:343.032000px;}
.y22b{bottom:343.280850px;}
.y1fc{bottom:343.309500px;}
.y99{bottom:343.899000px;}
.y63{bottom:346.313850px;}
.yd2{bottom:349.728300px;}
.yd8{bottom:349.734900px;}
.y138{bottom:359.848650px;}
.y281{bottom:361.586850px;}
.y1e{bottom:363.912900px;}
.y1cf{bottom:364.544850px;}
.y49{bottom:364.842450px;}
.y257{bottom:364.861650px;}
.y160{bottom:364.964100px;}
.y1b1{bottom:364.985850px;}
.y16f{bottom:365.211600px;}
.yf2{bottom:365.532000px;}
.y22a{bottom:365.798550px;}
.y1fb{bottom:365.940450px;}
.y8f{bottom:366.399000px;}
.yd1{bottom:368.478300px;}
.yd7{bottom:368.484900px;}
.y62{bottom:369.245250px;}
.y137{bottom:382.541250px;}
.y1ce{bottom:383.294850px;}
.y280{bottom:384.228450px;}
.y1d{bottom:386.412900px;}
.yd0{bottom:387.228300px;}
.yd6{bottom:387.234900px;}
.y48{bottom:387.373500px;}
.y256{bottom:387.406950px;}
.y15f{bottom:387.506400px;}
.y1b0{bottom:387.529950px;}
.y16e{bottom:387.776250px;}
.y29d{bottom:387.814950px;}
.yf1{bottom:388.032000px;}
.y229{bottom:388.316100px;}
.y1fa{bottom:388.571400px;}
.y8e{bottom:388.899000px;}
.y61{bottom:392.176500px;}
.y136{bottom:405.234000px;}
.ycf{bottom:405.978300px;}
.yd5{bottom:405.984900px;}
.y27f{bottom:406.869900px;}
.y1c{bottom:408.912900px;}
.y47{bottom:409.904700px;}
.y255{bottom:409.952250px;}
.y15e{bottom:410.048700px;}
.y1af{bottom:410.074200px;}
.y29c{bottom:410.314950px;}
.y16d{bottom:410.340900px;}
.yf0{bottom:410.532000px;}
.y228{bottom:410.833800px;}
.y1f9{bottom:411.202350px;}
.y8d{bottom:411.399000px;}
.y1cd{bottom:413.162250px;}
.y60{bottom:415.107900px;}
.yce{bottom:424.728300px;}
.y135{bottom:427.926600px;}
.y27e{bottom:429.511500px;}
.y1b{bottom:431.412900px;}
.y1cc{bottom:431.912250px;}
.y46{bottom:432.435750px;}
.y254{bottom:432.497400px;}
.y15d{bottom:432.590850px;}
.y1ae{bottom:432.618300px;}
.y29b{bottom:432.814950px;}
.y16c{bottom:432.905700px;}
.y2a8{bottom:432.931500px;}
.yef{bottom:433.032000px;}
.y227{bottom:433.351500px;}
.y1f8{bottom:433.833300px;}
.y8c{bottom:433.899000px;}
.y5f{bottom:438.039300px;}
.y134{bottom:450.619200px;}
.y1cb{bottom:450.662250px;}
.y27d{bottom:452.153100px;}
.y1a{bottom:453.912900px;}
.ycd{bottom:454.595700px;}
.y45{bottom:454.966950px;}
.y253{bottom:455.042550px;}
.y15c{bottom:455.133000px;}
.y1ad{bottom:455.162400px;}
.y29a{bottom:455.314950px;}
.y2a7{bottom:455.431500px;}
.y16b{bottom:455.470350px;}
.yee{bottom:455.532000px;}
.y226{bottom:455.869200px;}
.y8b{bottom:456.399000px;}
.y1f7{bottom:456.464250px;}
.y5e{bottom:460.970700px;}
.y1ca{bottom:469.412250px;}
.y133{bottom:473.311950px;}
.ycc{bottom:473.345700px;}
.y27c{bottom:474.794550px;}
.y19{bottom:476.412900px;}
.y44{bottom:477.498000px;}
.y252{bottom:477.587850px;}
.y15b{bottom:477.675150px;}
.y1ac{bottom:477.706650px;}
.y299{bottom:477.814950px;}
.y2a6{bottom:477.931500px;}
.yed{bottom:478.032000px;}
.y225{bottom:478.386750px;}
.y8a{bottom:478.899000px;}
.y1f6{bottom:479.095200px;}
.y5d{bottom:483.902100px;}
.ycb{bottom:492.095700px;}
.y132{bottom:496.004550px;}
.y27b{bottom:497.436150px;}
.y18{bottom:498.912900px;}
.y1c9{bottom:499.279650px;}
.y43{bottom:500.029200px;}
.y251{bottom:500.133000px;}
.y15a{bottom:500.217450px;}
.y1ab{bottom:500.250750px;}
.y298{bottom:500.314950px;}
.y2a5{bottom:500.431500px;}
.yec{bottom:500.532000px;}
.y224{bottom:500.904450px;}
.y89{bottom:501.399000px;}
.y1f5{bottom:501.726150px;}
.y191{bottom:503.186850px;}
.y5c{bottom:506.833500px;}
.yc6{bottom:510.839100px;}
.yca{bottom:510.845700px;}
.y1c8{bottom:518.029650px;}
.y131{bottom:518.697300px;}
.y27a{bottom:520.077600px;}
.y190{bottom:521.936850px;}
.y42{bottom:522.560250px;}
.y250{bottom:522.678150px;}
.y159{bottom:522.759600px;}
.y1aa{bottom:522.795000px;}
.y297{bottom:522.814950px;}
.yeb{bottom:523.032000px;}
.y223{bottom:523.422150px;}
.y88{bottom:523.899000px;}
.y1f4{bottom:524.357100px;}
.yc5{bottom:529.589100px;}
.yc9{bottom:529.595700px;}
.y5b{bottom:529.764900px;}
.y17{bottom:536.412900px;}
.y1c7{bottom:536.779650px;}
.y18f{bottom:540.686850px;}
.y130{bottom:541.389900px;}
.y279{bottom:542.719200px;}
.y41{bottom:545.091450px;}
.y24f{bottom:545.223450px;}
.y158{bottom:545.301750px;}
.y1a9{bottom:545.339100px;}
.yea{bottom:545.532000px;}
.y222{bottom:545.939850px;}
.y87{bottom:546.399000px;}
.y1f3{bottom:546.988050px;}
.yc4{bottom:548.339100px;}
.yc8{bottom:548.345700px;}
.y5a{bottom:552.696300px;}
.y1c6{bottom:555.529650px;}
.y18e{bottom:559.436850px;}
.y12f{bottom:564.082500px;}
.y278{bottom:565.360650px;}
.yc3{bottom:567.089100px;}
.yc7{bottom:567.095700px;}
.y40{bottom:567.622500px;}
.y24e{bottom:567.768600px;}
.y157{bottom:567.844050px;}
.y1a8{bottom:567.883200px;}
.y221{bottom:568.457400px;}
.y86{bottom:568.899000px;}
.y1f2{bottom:569.619000px;}
.y1c5{bottom:574.279650px;}
.y59{bottom:575.627700px;}
.y18d{bottom:578.186850px;}
.yc2{bottom:585.839100px;}
.y16{bottom:585.912900px;}
.y12e{bottom:586.775250px;}
.y277{bottom:588.002250px;}
.y3f{bottom:590.153700px;}
.y24d{bottom:590.313900px;}
.y156{bottom:590.386200px;}
.y1a7{bottom:590.427450px;}
.y220{bottom:590.975100px;}
.y85{bottom:591.399000px;}
.y1f1{bottom:592.249950px;}
.y1c4{bottom:593.029650px;}
.y18c{bottom:596.936850px;}
.y58{bottom:598.558950px;}
.y116{bottom:601.084350px;}
.y15{bottom:608.412900px;}
.y12d{bottom:609.467850px;}
.y276{bottom:610.643700px;}
.y3e{bottom:612.684750px;}
.y296{bottom:612.814950px;}
.y24c{bottom:612.859050px;}
.y155{bottom:612.928350px;}
.y1a6{bottom:612.971550px;}
.y21f{bottom:613.492800px;}
.y84{bottom:613.899000px;}
.y1f0{bottom:614.880900px;}
.y18b{bottom:615.686850px;}
.yc1{bottom:615.706650px;}
.y115{bottom:619.834350px;}
.y57{bottom:621.490350px;}
.y1c3{bottom:622.897200px;}
.y14{bottom:630.912900px;}
.y12c{bottom:632.160450px;}
.y275{bottom:633.285300px;}
.y18a{bottom:634.436850px;}
.yc0{bottom:634.456650px;}
.y295{bottom:635.314950px;}
.y24b{bottom:635.404350px;}
.y154{bottom:635.470650px;}
.y1a5{bottom:635.515800px;}
.y21e{bottom:636.010500px;}
.y83{bottom:636.399000px;}
.y1ef{bottom:637.511850px;}
.y114{bottom:638.584350px;}
.y56{bottom:644.421750px;}
.y1c2{bottom:652.764600px;}
.y189{bottom:653.186850px;}
.ybf{bottom:653.206650px;}
.y13{bottom:653.412900px;}
.y12b{bottom:654.853200px;}
.y274{bottom:655.926750px;}
.y113{bottom:657.334350px;}
.y24a{bottom:657.949500px;}
.y153{bottom:658.012800px;}
.y1a4{bottom:658.059900px;}
.y21d{bottom:658.528050px;}
.y82{bottom:658.899000px;}
.y1ee{bottom:660.142800px;}
.y3d{bottom:665.215950px;}
.y55{bottom:667.353150px;}
.y1c1{bottom:671.514600px;}
.ybe{bottom:671.956650px;}
.y12{bottom:675.912900px;}
.y12a{bottom:677.545800px;}
.y273{bottom:678.568350px;}
.y294{bottom:680.314950px;}
.y249{bottom:680.494650px;}
.y152{bottom:680.554950px;}
.y1a3{bottom:680.604150px;}
.y21c{bottom:681.045750px;}
.y81{bottom:681.399000px;}
.y1ed{bottom:682.773750px;}
.y188{bottom:683.054250px;}
.y112{bottom:687.201750px;}
.y1c0{bottom:690.264600px;}
.yba{bottom:690.700050px;}
.ybd{bottom:690.706650px;}
.y206{bottom:697.899000px;}
.y11{bottom:698.412900px;}
.y129{bottom:700.238550px;}
.y272{bottom:701.209950px;}
.y187{bottom:701.804250px;}
.y293{bottom:702.814950px;}
.y248{bottom:703.039950px;}
.y151{bottom:703.097250px;}
.y1a2{bottom:703.148250px;}
.y21b{bottom:703.563450px;}
.y80{bottom:703.899000px;}
.y1ec{bottom:705.404700px;}
.y111{bottom:705.951750px;}
.yb9{bottom:709.450050px;}
.ybc{bottom:709.456650px;}
.y25f{bottom:711.399000px;}
.y1bf{bottom:720.132000px;}
.y186{bottom:720.554250px;}
.y10{bottom:720.912900px;}
.y128{bottom:722.931150px;}
.y271{bottom:723.851400px;}
.y110{bottom:724.701750px;}
.y292{bottom:725.314950px;}
.y247{bottom:725.585100px;}
.y150{bottom:725.639400px;}
.y1a1{bottom:725.692350px;}
.y21a{bottom:726.081000px;}
.y7f{bottom:726.399000px;}
.y1eb{bottom:728.035650px;}
.yb8{bottom:728.200050px;}
.ybb{bottom:728.206650px;}
.y3c{bottom:731.761800px;}
.y1be{bottom:738.882000px;}
.y185{bottom:739.304250px;}
.yf{bottom:743.412900px;}
.y10f{bottom:743.451750px;}
.y127{bottom:745.623900px;}
.y270{bottom:746.493000px;}
.yb7{bottom:746.950050px;}
.y246{bottom:748.130400px;}
.y14f{bottom:748.181550px;}
.y1a0{bottom:748.236600px;}
.y219{bottom:748.598700px;}
.y7e{bottom:748.899000px;}
.y1ea{bottom:750.666600px;}
.y3b{bottom:754.261800px;}
.y1bd{bottom:757.632000px;}
.y184{bottom:758.054250px;}
.y10e{bottom:762.201750px;}
.ye{bottom:765.912900px;}
.y126{bottom:768.316500px;}
.y26f{bottom:769.134450px;}
.y291{bottom:770.314950px;}
.y245{bottom:770.675550px;}
.y14e{bottom:770.723850px;}
.y19f{bottom:770.780700px;}
.y218{bottom:771.116400px;}
.y7d{bottom:771.399000px;}
.y1e9{bottom:773.297550px;}
.y3a{bottom:776.761800px;}
.y183{bottom:776.804250px;}
.yb6{bottom:776.817450px;}
.y10d{bottom:780.951750px;}
.y1bc{bottom:784.124400px;}
.yd{bottom:788.412900px;}
.y125{bottom:791.009100px;}
.y26e{bottom:791.776050px;}
.y290{bottom:792.814950px;}
.y244{bottom:793.220700px;}
.y14d{bottom:793.266000px;}
.y217{bottom:793.634100px;}
.y7c{bottom:793.899000px;}
.y182{bottom:795.554250px;}
.yb1{bottom:795.560850px;}
.yb5{bottom:795.567450px;}
.y1e8{bottom:795.928500px;}
.y39{bottom:799.261800px;}
.y10c{bottom:799.701750px;}
.y98{bottom:801.399000px;}
.y19e{bottom:809.824800px;}
.yc{bottom:810.912900px;}
.y124{bottom:813.701700px;}
.y181{bottom:814.304250px;}
.yb0{bottom:814.310850px;}
.yb4{bottom:814.317450px;}
.y26d{bottom:814.417500px;}
.y28f{bottom:815.314950px;}
.y243{bottom:815.766000px;}
.y14c{bottom:815.808150px;}
.y216{bottom:816.151650px;}
.y7b{bottom:816.399000px;}
.y1e7{bottom:818.559450px;}
.y38{bottom:821.761800px;}
.y10b{bottom:829.569150px;}
.y19d{bottom:832.369050px;}
.y180{bottom:833.054250px;}
.yaf{bottom:833.060850px;}
.yb3{bottom:833.067450px;}
.y123{bottom:836.394450px;}
.y26c{bottom:837.059100px;}
.y242{bottom:838.311150px;}
.y14b{bottom:838.350450px;}
.y215{bottom:838.669350px;}
.y7a{bottom:838.899000px;}
.y1e6{bottom:841.190400px;}
.y28{bottom:843.174600px;}
.y37{bottom:844.261800px;}
.y10a{bottom:848.319150px;}
.y17f{bottom:851.804250px;}
.yae{bottom:851.810850px;}
.yb2{bottom:851.817450px;}
.y122{bottom:859.087050px;}
.y26b{bottom:859.700550px;}
.y28e{bottom:860.314950px;}
.y241{bottom:860.856450px;}
.y14a{bottom:860.892600px;}
.y214{bottom:861.187050px;}
.y79{bottom:861.399000px;}
.y1e5{bottom:863.821350px;}
.y27{bottom:864.174600px;}
.y36{bottom:866.761800px;}
.y109{bottom:867.069150px;}
.y17e{bottom:870.554250px;}
.yad{bottom:870.560850px;}
.y121{bottom:881.779650px;}
.y26a{bottom:882.342150px;}
.y28d{bottom:882.814950px;}
.y240{bottom:883.401600px;}
.y19c{bottom:883.413150px;}
.y149{bottom:883.434750px;}
.y213{bottom:883.704750px;}
.y78{bottom:883.899000px;}
.y108{bottom:885.819150px;}
.y1e4{bottom:886.452300px;}
.y35{bottom:889.261800px;}
.y26{bottom:889.374600px;}
.ye3{bottom:891.399000px;}
.y17d{bottom:900.421650px;}
.yac{bottom:900.428250px;}
.y120{bottom:904.472400px;}
.y107{bottom:904.569150px;}
.y269{bottom:904.983600px;}
.y28c{bottom:905.314950px;}
.y23f{bottom:905.946900px;}
.y19b{bottom:905.957400px;}
.y148{bottom:905.977050px;}
.y212{bottom:906.222450px;}
.y77{bottom:906.399000px;}
.y1e3{bottom:909.083250px;}
.y34{bottom:911.761800px;}
.y17c{bottom:919.171650px;}
.yab{bottom:919.178250px;}
.yb{bottom:925.607700px;}
.y11f{bottom:927.165000px;}
.y268{bottom:927.625200px;}
.y23e{bottom:928.492050px;}
.y19a{bottom:928.501500px;}
.y147{bottom:928.519200px;}
.y211{bottom:928.740000px;}
.y76{bottom:928.899000px;}
.y1e2{bottom:931.714200px;}
.y33{bottom:934.261800px;}
.y106{bottom:934.436700px;}
.ya8{bottom:937.921650px;}
.yaa{bottom:937.928250px;}
.ya{bottom:946.607700px;}
.y11e{bottom:949.857750px;}
.y267{bottom:950.266800px;}
.y28b{bottom:950.314950px;}
.y23d{bottom:951.037200px;}
.y199{bottom:951.045750px;}
.y146{bottom:951.061500px;}
.y210{bottom:951.257700px;}
.y75{bottom:951.399000px;}
.y105{bottom:953.186700px;}
.y1e1{bottom:954.345150px;}
.ya7{bottom:956.671650px;}
.ya9{bottom:956.678250px;}
.y32{bottom:956.761800px;}
.y9{bottom:971.807700px;}
.y11d{bottom:972.550350px;}
.y266{bottom:972.908250px;}
.y23c{bottom:973.582500px;}
.y198{bottom:973.589850px;}
.y145{bottom:973.603650px;}
.y20f{bottom:973.775400px;}
.y74{bottom:973.899000px;}
.ya6{bottom:975.421650px;}
.y1e0{bottom:976.976100px;}
.y31{bottom:979.261800px;}
.y104{bottom:983.054100px;}
.y17b{bottom:994.171650px;}
.y11c{bottom:995.243100px;}
.y265{bottom:995.549850px;}
.y23b{bottom:996.127650px;}
.y197{bottom:996.134100px;}
.y144{bottom:996.145800px;}
.y20e{bottom:996.292950px;}
.y73{bottom:996.399000px;}
.y1df{bottom:999.607050px;}
.y30{bottom:1001.761800px;}
.y103{bottom:1001.804100px;}
.ya2{bottom:1005.289050px;}
.ya5{bottom:1005.295650px;}
.y11b{bottom:1017.935700px;}
.y264{bottom:1018.191300px;}
.y23a{bottom:1018.672950px;}
.y196{bottom:1018.678200px;}
.y143{bottom:1018.687950px;}
.y20d{bottom:1018.810800px;}
.y72{bottom:1018.899000px;}
.y102{bottom:1020.554100px;}
.y1de{bottom:1022.238000px;}
.y8{bottom:1024.007700px;}
.ya1{bottom:1024.039050px;}
.ya4{bottom:1024.045650px;}
.y2f{bottom:1024.261800px;}
.ye8{bottom:1026.399000px;}
.y11a{bottom:1040.628450px;}
.y263{bottom:1040.832750px;}
.y239{bottom:1041.218100px;}
.y195{bottom:1041.222300px;}
.y142{bottom:1041.230100px;}
.y20c{bottom:1041.328350px;}
.y71{bottom:1041.399000px;}
.ya0{bottom:1042.789050px;}
.ya3{bottom:1042.795650px;}
.y1dd{bottom:1044.868950px;}
.y2e{bottom:1046.761800px;}
.ye7{bottom:1048.899000px;}
.y101{bottom:1050.421500px;}
.y9f{bottom:1061.539050px;}
.y119{bottom:1063.321050px;}
.y262{bottom:1063.474350px;}
.y238{bottom:1063.763250px;}
.y194{bottom:1063.766550px;}
.y141{bottom:1063.772400px;}
.y20b{bottom:1063.846050px;}
.y70{bottom:1063.899000px;}
.y7{bottom:1064.507700px;}
.y1dc{bottom:1067.499900px;}
.y2d{bottom:1069.261800px;}
.y2a2{bottom:1076.040150px;}
.y100{bottom:1080.288900px;}
.y17a{bottom:1080.289050px;}
.y118{bottom:1086.013650px;}
.y261{bottom:1086.115950px;}
.y237{bottom:1086.308550px;}
.y193{bottom:1086.310650px;}
.y140{bottom:1086.314550px;}
.y20a{bottom:1086.363600px;}
.y6f{bottom:1086.399000px;}
.y9e{bottom:1087.656600px;}
.y2a4{bottom:1099.040100px;}
.yff{bottom:1106.406300px;}
.y9d{bottom:1106.406600px;}
.y1db{bottom:1106.630850px;}
.y117{bottom:1108.706400px;}
.y260{bottom:1108.757400px;}
.y236{bottom:1108.853700px;}
.y192{bottom:1108.854900px;}
.y13f{bottom:1108.856850px;}
.y209{bottom:1108.881300px;}
.y6e{bottom:1108.899000px;}
.y2c{bottom:1129.261800px;}
.yfe{bottom:1131.398850px;}
.y6d{bottom:1131.399000px;}
.y3{bottom:1148.311650px;}
.y2{bottom:1169.911650px;}
.y1{bottom:1191.511650px;}
.y2b{bottom:1197.162900px;}
.hc{height:30.929133px;}
.ha{height:38.496094px;}
.h9{height:42.773438px;}
.h7{height:47.050781px;}
.hb{height:48.911133px;}
.h8{height:51.328125px;}
.hd{height:53.900297px;}
.he{height:54.000000px;}
.h3{height:54.345703px;}
.h6{height:59.780273px;}
.h2{height:65.214844px;}
.h5{height:76.083984px;}
.h4{height:76.992188px;}
.hf{height:1021.581000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x38{left:55.374600px;}
.x22{left:61.464000px;}
.x26{left:67.125000px;}
.x27{left:69.421350px;}
.x19{left:74.625000px;}
.x36{left:76.125000px;}
.x25{left:77.278800px;}
.xc{left:86.625000px;}
.x2c{left:98.737200px;}
.xd{left:100.125000px;}
.x2a{left:114.750900px;}
.x15{left:122.625000px;}
.x16{left:139.125000px;}
.x28{left:141.295500px;}
.x2b{left:144.176700px;}
.x17{left:155.625000px;}
.x1f{left:156.723300px;}
.x5{left:158.942550px;}
.x1d{left:161.943900px;}
.xe{left:179.241450px;}
.x2f{left:184.164000px;}
.x18{left:193.426200px;}
.xf{left:213.503100px;}
.x2d{left:236.244300px;}
.x7{left:297.929100px;}
.x30{left:318.414000px;}
.x6{left:324.811950px;}
.x23{left:326.565900px;}
.x39{left:334.514850px;}
.x20{left:354.946650px;}
.x8{left:355.986750px;}
.x9{left:374.781150px;}
.x35{left:403.638150px;}
.xb{left:408.316800px;}
.x14{left:414.117600px;}
.xa{left:415.692750px;}
.x21{left:436.717950px;}
.x37{left:438.655500px;}
.x13{left:441.866100px;}
.x1a{left:459.957000px;}
.x1b{left:480.957000px;}
.x32{left:488.721600px;}
.x2e{left:495.981600px;}
.x10{left:504.519300px;}
.x1c{left:510.577350px;}
.x31{left:521.082900px;}
.x24{left:541.818000px;}
.x2{left:549.590550px;}
.x11{left:552.871500px;}
.x33{left:567.722100px;}
.x1e{left:588.389550px;}
.x12{left:597.205350px;}
.x34{left:600.900900px;}
.x29{left:668.664000px;}
.x4{left:700.947000px;}
.x3{left:734.521200px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.332800pt;}
.v3{vertical-align:17.760000pt;}
.v4{vertical-align:21.312000pt;}
.ls16{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-1.056000pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.124373pt;}
.ls17{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.797867pt;}
.ls1{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.853333pt;}
.ls11{letter-spacing:1.013333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls13{letter-spacing:3.413333pt;}
.ls5{letter-spacing:1023.528000pt;}
.ws17b{word-spacing:-53.333333pt;}
.ws199{word-spacing:-29.280000pt;}
.ws84{word-spacing:-26.352000pt;}
.ws194{word-spacing:-16.320000pt;}
.ws1bd{word-spacing:-14.986667pt;}
.ws1{word-spacing:-14.960000pt;}
.ws19{word-spacing:-14.842667pt;}
.ws1bc{word-spacing:-14.133333pt;}
.ws1b6{word-spacing:-14.080000pt;}
.ws1be{word-spacing:-14.026667pt;}
.ws1b8{word-spacing:-13.866667pt;}
.ws46{word-spacing:-13.728000pt;}
.ws193{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1bb{word-spacing:-13.493333pt;}
.ws1b7{word-spacing:-13.386667pt;}
.wsba{word-spacing:-13.333333pt;}
.ws1ba{word-spacing:-13.226667pt;}
.ws124{word-spacing:-13.120000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws86{word-spacing:-12.240000pt;}
.ws1c{word-spacing:-11.909333pt;}
.ws1b9{word-spacing:-11.680000pt;}
.ws87{word-spacing:-11.232000pt;}
.ws1d{word-spacing:-9.973333pt;}
.ws1b{word-spacing:-9.856000pt;}
.ws18{word-spacing:-8.565333pt;}
.ws8a{word-spacing:-7.928800pt;}
.ws10c{word-spacing:-7.804427pt;}
.ws1a1{word-spacing:-7.275840pt;}
.ws89{word-spacing:-7.135920pt;}
.ws16{word-spacing:-6.688000pt;}
.ws107{word-spacing:-6.186667pt;}
.ws1a{word-spacing:-6.042667pt;}
.ws1b4{word-spacing:-5.866667pt;}
.ws24{word-spacing:-5.493333pt;}
.ws30{word-spacing:-5.226667pt;}
.ws1b2{word-spacing:-5.013333pt;}
.ws13a{word-spacing:-4.960000pt;}
.ws1ad{word-spacing:-4.800000pt;}
.ws19a{word-spacing:-4.693333pt;}
.ws106{word-spacing:-4.586667pt;}
.ws17{word-spacing:-4.517333pt;}
.ws164{word-spacing:-4.480000pt;}
.ws1aa{word-spacing:-4.426667pt;}
.ws14{word-spacing:-4.400000pt;}
.wsd3{word-spacing:-4.266667pt;}
.wsb4{word-spacing:-4.213333pt;}
.ws1f{word-spacing:-4.106667pt;}
.ws15c{word-spacing:-4.053333pt;}
.ws149{word-spacing:-3.946667pt;}
.ws15{word-spacing:-3.930667pt;}
.ws69{word-spacing:-3.893333pt;}
.ws148{word-spacing:-3.840000pt;}
.ws190{word-spacing:-3.733333pt;}
.ws4d{word-spacing:-3.680000pt;}
.ws18e{word-spacing:-3.573333pt;}
.ws12f{word-spacing:-3.520000pt;}
.ws156{word-spacing:-3.466667pt;}
.ws78{word-spacing:-3.413333pt;}
.ws12{word-spacing:-3.402667pt;}
.ws19d{word-spacing:-3.360000pt;}
.ws16b{word-spacing:-3.306667pt;}
.ws1b1{word-spacing:-3.253333pt;}
.ws163{word-spacing:-3.200000pt;}
.ws1ab{word-spacing:-3.093333pt;}
.ws3c{word-spacing:-3.040000pt;}
.ws6f{word-spacing:-2.986667pt;}
.ws176{word-spacing:-2.933333pt;}
.ws1a6{word-spacing:-2.880000pt;}
.ws142{word-spacing:-2.826667pt;}
.ws172{word-spacing:-2.773333pt;}
.ws175{word-spacing:-2.720000pt;}
.ws41{word-spacing:-2.666667pt;}
.wscc{word-spacing:-2.613333pt;}
.ws9a{word-spacing:-2.560000pt;}
.ws168{word-spacing:-2.506667pt;}
.wsb9{word-spacing:-2.453333pt;}
.ws6d{word-spacing:-2.400000pt;}
.ws27{word-spacing:-2.346667pt;}
.ws113{word-spacing:-2.293333pt;}
.ws93{word-spacing:-2.240000pt;}
.wsad{word-spacing:-2.186667pt;}
.wsa0{word-spacing:-2.133333pt;}
.wsa8{word-spacing:-2.080000pt;}
.wsf1{word-spacing:-2.026667pt;}
.ws10a{word-spacing:-1.973333pt;}
.ws31{word-spacing:-1.920000pt;}
.ws45{word-spacing:-1.866667pt;}
.wsb1{word-spacing:-1.813333pt;}
.wsf8{word-spacing:-1.760000pt;}
.ws16d{word-spacing:-1.706667pt;}
.ws62{word-spacing:-1.653333pt;}
.ws18a{word-spacing:-1.600000pt;}
.wsa4{word-spacing:-1.584000pt;}
.ws9{word-spacing:-1.546667pt;}
.ws79{word-spacing:-1.493333pt;}
.wsf0{word-spacing:-1.440000pt;}
.wsb6{word-spacing:-1.386667pt;}
.wsd5{word-spacing:-1.333333pt;}
.ws1e{word-spacing:-1.290667pt;}
.ws180{word-spacing:-1.280000pt;}
.ws8f{word-spacing:-1.226667pt;}
.ws103{word-spacing:-1.173333pt;}
.wsfb{word-spacing:-1.120000pt;}
.ws8{word-spacing:-1.066667pt;}
.wsfc{word-spacing:-1.013333pt;}
.wsbb{word-spacing:-0.960000pt;}
.ws88{word-spacing:-0.912000pt;}
.ws50{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.853333pt;}
.wse4{word-spacing:-0.800000pt;}
.wsb7{word-spacing:-0.746667pt;}
.ws15b{word-spacing:-0.693333pt;}
.wsb{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.586667pt;}
.ws108{word-spacing:-0.533333pt;}
.ws57{word-spacing:-0.480000pt;}
.ws3d{word-spacing:-0.426667pt;}
.ws10d{word-spacing:-0.373333pt;}
.ws11d{word-spacing:-0.320000pt;}
.ws109{word-spacing:-0.266667pt;}
.wsa7{word-spacing:-0.213333pt;}
.ws141{word-spacing:-0.192000pt;}
.ws68{word-spacing:-0.160000pt;}
.wsd{word-spacing:-0.106667pt;}
.wsac{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053333pt;}
.wsee{word-spacing:0.106667pt;}
.ws43{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws49{word-spacing:0.266667pt;}
.ws119{word-spacing:0.320000pt;}
.wsb5{word-spacing:0.373333pt;}
.ws10{word-spacing:0.426667pt;}
.ws13{word-spacing:0.469333pt;}
.ws72{word-spacing:0.480000pt;}
.ws6e{word-spacing:0.533333pt;}
.wsb0{word-spacing:0.586667pt;}
.ws96{word-spacing:0.640000pt;}
.wse6{word-spacing:0.693333pt;}
.wsa5{word-spacing:0.720000pt;}
.ws165{word-spacing:0.746667pt;}
.wsf{word-spacing:0.800000pt;}
.ws20{word-spacing:0.853333pt;}
.wsa2{word-spacing:0.906667pt;}
.ws23{word-spacing:0.960000pt;}
.ws126{word-spacing:1.013333pt;}
.ws38{word-spacing:1.066667pt;}
.ws63{word-spacing:1.120000pt;}
.ws5{word-spacing:1.173333pt;}
.ws6{word-spacing:1.226667pt;}
.wsc0{word-spacing:1.280000pt;}
.ws9c{word-spacing:1.333333pt;}
.ws90{word-spacing:1.386667pt;}
.wsa3{word-spacing:1.440000pt;}
.ws22{word-spacing:1.493333pt;}
.ws2c{word-spacing:1.546667pt;}
.wsf5{word-spacing:1.600000pt;}
.ws5b{word-spacing:1.706667pt;}
.ws112{word-spacing:1.760000pt;}
.wsaf{word-spacing:1.813333pt;}
.ws26{word-spacing:1.866667pt;}
.ws53{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.973333pt;}
.ws137{word-spacing:2.026667pt;}
.ws9e{word-spacing:2.080000pt;}
.ws47{word-spacing:2.133333pt;}
.ws56{word-spacing:2.186667pt;}
.ws59{word-spacing:2.240000pt;}
.ws9b{word-spacing:2.293333pt;}
.wsf9{word-spacing:2.346667pt;}
.ws2d{word-spacing:2.400000pt;}
.ws98{word-spacing:2.453333pt;}
.ws13c{word-spacing:2.506667pt;}
.ws81{word-spacing:2.560000pt;}
.ws75{word-spacing:2.613333pt;}
.wsc6{word-spacing:2.666667pt;}
.ws11f{word-spacing:2.720000pt;}
.ws80{word-spacing:2.773333pt;}
.wsc2{word-spacing:2.826667pt;}
.ws8e{word-spacing:2.880000pt;}
.ws64{word-spacing:2.933333pt;}
.ws51{word-spacing:2.986667pt;}
.ws4{word-spacing:3.040000pt;}
.ws110{word-spacing:3.093333pt;}
.ws65{word-spacing:3.146667pt;}
.wsae{word-spacing:3.200000pt;}
.ws5f{word-spacing:3.253333pt;}
.ws7e{word-spacing:3.306667pt;}
.ws6c{word-spacing:3.360000pt;}
.ws28{word-spacing:3.413333pt;}
.ws7c{word-spacing:3.466667pt;}
.ws3a{word-spacing:3.520000pt;}
.ws58{word-spacing:3.573333pt;}
.wsb3{word-spacing:3.626667pt;}
.ws14d{word-spacing:3.680000pt;}
.ws9d{word-spacing:3.733333pt;}
.wsfd{word-spacing:3.786667pt;}
.ws7f{word-spacing:3.840000pt;}
.ws3b{word-spacing:3.893333pt;}
.wsc{word-spacing:3.946667pt;}
.ws189{word-spacing:4.000000pt;}
.ws2e{word-spacing:4.053333pt;}
.ws4f{word-spacing:4.106667pt;}
.ws7d{word-spacing:4.160000pt;}
.ws55{word-spacing:4.213333pt;}
.ws5a{word-spacing:4.266667pt;}
.wse0{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.wsc1{word-spacing:4.426667pt;}
.wsaa{word-spacing:4.480000pt;}
.wsab{word-spacing:4.533333pt;}
.ws32{word-spacing:4.586667pt;}
.ws9f{word-spacing:4.640000pt;}
.ws29{word-spacing:4.693333pt;}
.ws76{word-spacing:4.746667pt;}
.ws14a{word-spacing:4.800000pt;}
.ws5d{word-spacing:4.853333pt;}
.ws6b{word-spacing:4.906667pt;}
.ws3e{word-spacing:4.960000pt;}
.ws1a2{word-spacing:5.013333pt;}
.wse{word-spacing:5.066667pt;}
.ws13b{word-spacing:5.120000pt;}
.ws60{word-spacing:5.173333pt;}
.ws33{word-spacing:5.226667pt;}
.ws42{word-spacing:5.280000pt;}
.ws83{word-spacing:5.333333pt;}
.wsf6{word-spacing:5.386667pt;}
.ws48{word-spacing:5.440000pt;}
.ws4e{word-spacing:5.493333pt;}
.wsc3{word-spacing:5.546667pt;}
.wsd7{word-spacing:5.600000pt;}
.ws167{word-spacing:5.653333pt;}
.wsea{word-spacing:5.706667pt;}
.ws129{word-spacing:5.760000pt;}
.wseb{word-spacing:5.813333pt;}
.ws120{word-spacing:5.866667pt;}
.ws35{word-spacing:5.920000pt;}
.ws166{word-spacing:5.973333pt;}
.wscd{word-spacing:6.026667pt;}
.wsa6{word-spacing:6.080000pt;}
.ws2f{word-spacing:6.133333pt;}
.wsc5{word-spacing:6.186667pt;}
.ws40{word-spacing:6.240000pt;}
.ws136{word-spacing:6.293333pt;}
.ws8b{word-spacing:6.346667pt;}
.wsfa{word-spacing:6.400000pt;}
.wsb8{word-spacing:6.453333pt;}
.wsbe{word-spacing:6.506667pt;}
.ws5e{word-spacing:6.560000pt;}
.wsce{word-spacing:6.613333pt;}
.ws52{word-spacing:6.666667pt;}
.wsd0{word-spacing:6.720000pt;}
.ws104{word-spacing:6.773333pt;}
.ws1a9{word-spacing:6.826667pt;}
.ws169{word-spacing:6.880000pt;}
.wscb{word-spacing:6.933333pt;}
.ws77{word-spacing:7.040000pt;}
.ws1b0{word-spacing:7.093333pt;}
.ws140{word-spacing:7.146667pt;}
.wsf7{word-spacing:7.200000pt;}
.ws7a{word-spacing:7.253333pt;}
.ws66{word-spacing:7.306667pt;}
.ws39{word-spacing:7.360000pt;}
.wsec{word-spacing:7.413333pt;}
.wsd4{word-spacing:7.466667pt;}
.wse7{word-spacing:7.520000pt;}
.ws181{word-spacing:7.573333pt;}
.ws160{word-spacing:7.626667pt;}
.ws158{word-spacing:7.680000pt;}
.ws8d{word-spacing:7.733333pt;}
.ws70{word-spacing:7.786667pt;}
.ws118{word-spacing:7.840000pt;}
.ws36{word-spacing:7.893333pt;}
.wsd1{word-spacing:7.946667pt;}
.ws102{word-spacing:8.000000pt;}
.ws74{word-spacing:8.053333pt;}
.ws12a{word-spacing:8.106667pt;}
.ws4b{word-spacing:8.160000pt;}
.ws71{word-spacing:8.213333pt;}
.ws12e{word-spacing:8.266667pt;}
.wscf{word-spacing:8.320000pt;}
.ws10f{word-spacing:8.373333pt;}
.wsef{word-spacing:8.426667pt;}
.ws18c{word-spacing:8.480000pt;}
.wsc7{word-spacing:8.533333pt;}
.ws11b{word-spacing:8.586667pt;}
.ws130{word-spacing:8.640000pt;}
.ws153{word-spacing:8.693333pt;}
.wsbf{word-spacing:8.746667pt;}
.ws195{word-spacing:8.800000pt;}
.ws44{word-spacing:8.853333pt;}
.ws94{word-spacing:8.906667pt;}
.ws14e{word-spacing:8.960000pt;}
.ws18d{word-spacing:9.013333pt;}
.ws1a0{word-spacing:9.066667pt;}
.ws187{word-spacing:9.120000pt;}
.ws97{word-spacing:9.173333pt;}
.ws67{word-spacing:9.226667pt;}
.ws34{word-spacing:9.280000pt;}
.wsf2{word-spacing:9.333333pt;}
.ws1ac{word-spacing:9.386667pt;}
.ws15e{word-spacing:9.493333pt;}
.ws6a{word-spacing:9.546667pt;}
.ws132{word-spacing:9.600000pt;}
.ws15d{word-spacing:9.653333pt;}
.ws99{word-spacing:9.706667pt;}
.wse5{word-spacing:9.813333pt;}
.ws10b{word-spacing:9.866667pt;}
.wsbd{word-spacing:9.920000pt;}
.wsdf{word-spacing:9.973333pt;}
.ws2b{word-spacing:10.080000pt;}
.wsd2{word-spacing:10.133333pt;}
.ws127{word-spacing:10.186667pt;}
.wsed{word-spacing:10.240000pt;}
.ws54{word-spacing:10.293333pt;}
.ws16c{word-spacing:10.346667pt;}
.wsbc{word-spacing:10.400000pt;}
.ws115{word-spacing:10.506667pt;}
.ws179{word-spacing:10.560000pt;}
.ws121{word-spacing:10.613333pt;}
.ws183{word-spacing:10.720000pt;}
.ws185{word-spacing:10.773333pt;}
.wsdb{word-spacing:10.826667pt;}
.ws151{word-spacing:10.880000pt;}
.ws191{word-spacing:10.933333pt;}
.ws4a{word-spacing:10.986667pt;}
.ws134{word-spacing:11.040000pt;}
.ws61{word-spacing:11.146667pt;}
.ws145{word-spacing:11.200000pt;}
.ws173{word-spacing:11.253333pt;}
.wsda{word-spacing:11.306667pt;}
.wse3{word-spacing:11.360000pt;}
.wsd8{word-spacing:11.413333pt;}
.ws198{word-spacing:11.466667pt;}
.ws155{word-spacing:11.520000pt;}
.ws1ae{word-spacing:11.573333pt;}
.ws73{word-spacing:11.680000pt;}
.wse8{word-spacing:11.733333pt;}
.ws7b{word-spacing:11.786667pt;}
.ws196{word-spacing:11.840000pt;}
.ws37{word-spacing:11.893333pt;}
.ws25{word-spacing:12.000000pt;}
.ws12d{word-spacing:12.160000pt;}
.ws152{word-spacing:12.213333pt;}
.ws186{word-spacing:12.266667pt;}
.ws19c{word-spacing:12.373333pt;}
.ws17d{word-spacing:12.426667pt;}
.ws11{word-spacing:12.480000pt;}
.ws147{word-spacing:12.533333pt;}
.wsd9{word-spacing:12.586667pt;}
.wsca{word-spacing:12.640000pt;}
.wsb2{word-spacing:12.693333pt;}
.ws111{word-spacing:12.746667pt;}
.ws150{word-spacing:12.800000pt;}
.ws5c{word-spacing:12.960000pt;}
.ws184{word-spacing:13.013333pt;}
.ws15a{word-spacing:13.066667pt;}
.wsd6{word-spacing:13.120000pt;}
.ws13f{word-spacing:13.173333pt;}
.ws178{word-spacing:13.226667pt;}
.wsde{word-spacing:13.280000pt;}
.ws157{word-spacing:13.333333pt;}
.wse9{word-spacing:13.440000pt;}
.ws133{word-spacing:13.493333pt;}
.ws14c{word-spacing:13.546667pt;}
.ws161{word-spacing:13.600000pt;}
.ws171{word-spacing:13.653333pt;}
.ws146{word-spacing:13.760000pt;}
.ws159{word-spacing:13.813333pt;}
.ws122{word-spacing:13.866667pt;}
.ws162{word-spacing:13.973333pt;}
.ws11c{word-spacing:14.026667pt;}
.ws143{word-spacing:14.080000pt;}
.ws12b{word-spacing:14.133333pt;}
.ws101{word-spacing:14.240000pt;}
.ws1b5{word-spacing:14.346667pt;}
.ws128{word-spacing:14.506667pt;}
.ws17a{word-spacing:14.560000pt;}
.wsdd{word-spacing:14.613333pt;}
.wsc8{word-spacing:14.666667pt;}
.ws139{word-spacing:14.720000pt;}
.ws82{word-spacing:14.986667pt;}
.wsa9{word-spacing:15.040000pt;}
.ws15f{word-spacing:15.093333pt;}
.ws92{word-spacing:15.146667pt;}
.ws144{word-spacing:15.306667pt;}
.ws16f{word-spacing:15.360000pt;}
.ws131{word-spacing:15.520000pt;}
.wsf4{word-spacing:15.840000pt;}
.ws188{word-spacing:15.946667pt;}
.ws17e{word-spacing:16.160000pt;}
.ws95{word-spacing:16.266667pt;}
.ws91{word-spacing:16.533333pt;}
.wse1{word-spacing:16.586667pt;}
.ws154{word-spacing:16.693333pt;}
.ws18f{word-spacing:16.746667pt;}
.ws4c{word-spacing:16.906667pt;}
.wsc4{word-spacing:16.960000pt;}
.ws174{word-spacing:17.013333pt;}
.ws13d{word-spacing:17.066667pt;}
.ws105{word-spacing:17.173333pt;}
.wsf3{word-spacing:17.226667pt;}
.ws116{word-spacing:17.333333pt;}
.ws177{word-spacing:17.386667pt;}
.ws170{word-spacing:17.493333pt;}
.ws17c{word-spacing:17.706667pt;}
.ws182{word-spacing:17.866667pt;}
.ws21{word-spacing:17.920000pt;}
.ws16a{word-spacing:18.186667pt;}
.ws197{word-spacing:18.240000pt;}
.ws1a5{word-spacing:18.293333pt;}
.ws16e{word-spacing:18.666667pt;}
.ws1a8{word-spacing:18.720000pt;}
.ws17f{word-spacing:18.773333pt;}
.ws11e{word-spacing:19.146667pt;}
.ws192{word-spacing:19.466667pt;}
.ws114{word-spacing:19.573333pt;}
.wsc9{word-spacing:19.626667pt;}
.ws1a3{word-spacing:19.680000pt;}
.ws117{word-spacing:19.786667pt;}
.ws1a4{word-spacing:19.893333pt;}
.ws13e{word-spacing:20.266667pt;}
.wsdc{word-spacing:20.320000pt;}
.ws19b{word-spacing:20.373333pt;}
.ws1a7{word-spacing:20.426667pt;}
.ws18b{word-spacing:20.533333pt;}
.ws138{word-spacing:20.586667pt;}
.ws135{word-spacing:20.800000pt;}
.wse2{word-spacing:21.866667pt;}
.ws12c{word-spacing:23.040000pt;}
.ws19f{word-spacing:23.680000pt;}
.ws19e{word-spacing:25.813333pt;}
.ws10e{word-spacing:25.866667pt;}
.ws125{word-spacing:26.080000pt;}
.ws1b3{word-spacing:26.400000pt;}
.ws1af{word-spacing:27.306667pt;}
.ws14f{word-spacing:29.280000pt;}
.ws11a{word-spacing:29.760000pt;}
.ws14b{word-spacing:39.306667pt;}
.ws85{word-spacing:216.969067pt;}
.ws100{word-spacing:226.870933pt;}
.wsfe{word-spacing:448.506133pt;}
.ws1bf{word-spacing:990.027200pt;}
.ws123{word-spacing:990.880533pt;}
.wsff{word-spacing:1192.130667pt;}
._2c{margin-left:-39.514133pt;}
._2d{margin-left:-33.516800pt;}
._18{margin-left:-30.560000pt;}
._30{margin-left:-24.748800pt;}
._2e{margin-left:-22.792533pt;}
._11{margin-left:-21.431467pt;}
._19{margin-left:-20.295467pt;}
._22{margin-left:-16.455467pt;}
._12{margin-left:-14.560000pt;}
._2f{margin-left:-12.877867pt;}
._29{margin-left:-10.628267pt;}
._10{margin-left:-9.115733pt;}
._d{margin-left:-8.145067pt;}
._7{margin-left:-6.914133pt;}
._1{margin-left:-5.523200pt;}
._4{margin-left:-4.160000pt;}
._16{margin-left:-3.255467pt;}
._2{margin-left:-2.297600pt;}
._0{margin-left:-1.337600pt;}
._a{width:1.559467pt;}
._c{width:3.200000pt;}
._9{width:4.882133pt;}
._b{width:5.812267pt;}
._3{width:6.784000pt;}
._8{width:8.189867pt;}
._5{width:9.266133pt;}
._6{width:10.174400pt;}
._f{width:11.349333pt;}
._e{width:13.482667pt;}
._2a{width:18.534400pt;}
._1a{width:20.537227pt;}
._17{width:23.081227pt;}
._2b{width:25.099200pt;}
._1f{width:123.662400pt;}
._28{width:141.621333pt;}
._21{width:144.287467pt;}
._1e{width:195.334933pt;}
._27{width:203.390933pt;}
._26{width:248.571733pt;}
._20{width:305.350933pt;}
._15{width:342.691733pt;}
._25{width:365.192533pt;}
._14{width:421.131200pt;}
._13{width:446.724800pt;}
._23{width:477.537067pt;}
._1b{width:496.850133pt;}
._1c{width:627.554667pt;}
._24{width:782.513600pt;}
._1d{width:934.160533pt;}
._32{width:1531.613867pt;}
._31{width:1669.242667pt;}
.fs6{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs8{font-size:37.312000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y28a{bottom:-39.598267pt;}
.y2a3{bottom:-38.491867pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:64.694667pt;}
.y29{bottom:67.194933pt;}
.y2a{bottom:68.278133pt;}
.y54{bottom:104.000000pt;}
.ye6{bottom:104.000133pt;}
.y288{bottom:104.530000pt;}
.y5{bottom:104.694667pt;}
.yfd{bottom:104.917333pt;}
.y235{bottom:104.981467pt;}
.y97{bottom:105.688000pt;}
.y289{bottom:106.520000pt;}
.y1da{bottom:111.060000pt;}
.ye5{bottom:124.000133pt;}
.y53{bottom:124.027733pt;}
.y16a{bottom:124.037467pt;}
.y1bb{bottom:124.039333pt;}
.y25e{bottom:124.040267pt;}
.y179{bottom:124.057467pt;}
.y205{bottom:124.116400pt;}
.y13e{bottom:124.171333pt;}
.y6c{bottom:124.383467pt;}
.ye2{bottom:124.444533pt;}
.y287{bottom:124.655733pt;}
.y4{bottom:124.694667pt;}
.yfc{bottom:124.917333pt;}
.y234{bottom:124.997200pt;}
.y96{bottom:125.688000pt;}
.y1d9{bottom:127.726667pt;}
.ye9{bottom:127.996133pt;}
.ye1{bottom:141.111200pt;}
.y52{bottom:144.055333pt;}
.y169{bottom:144.075067pt;}
.y1ba{bottom:144.078533pt;}
.y178{bottom:144.115067pt;}
.y204{bottom:144.232800pt;}
.y1d8{bottom:144.393333pt;}
.y6b{bottom:144.766933pt;}
.y286{bottom:144.781600pt;}
.yfb{bottom:144.917333pt;}
.y233{bottom:145.012933pt;}
.y95{bottom:145.688000pt;}
.ye4{bottom:147.996133pt;}
.ye0{bottom:157.777867pt;}
.y13d{bottom:159.009200pt;}
.y51{bottom:164.083067pt;}
.y168{bottom:164.112533pt;}
.y1b9{bottom:164.117733pt;}
.y177{bottom:164.172533pt;}
.y203{bottom:164.349200pt;}
.y25{bottom:164.634667pt;}
.y2a1{bottom:164.724400pt;}
.y285{bottom:164.907333pt;}
.yfa{bottom:164.917333pt;}
.y232{bottom:165.028667pt;}
.y6a{bottom:165.150400pt;}
.y94{bottom:165.688000pt;}
.y25d{bottom:170.747067pt;}
.y1d7{bottom:170.942267pt;}
.ydf{bottom:174.444533pt;}
.y13c{bottom:179.180400pt;}
.y50{bottom:184.110667pt;}
.y167{bottom:184.150000pt;}
.y1b8{bottom:184.157067pt;}
.y176{bottom:184.230000pt;}
.y202{bottom:184.465600pt;}
.y24{bottom:184.634667pt;}
.y2a0{bottom:184.724400pt;}
.yf9{bottom:184.917333pt;}
.y284{bottom:185.033200pt;}
.y231{bottom:185.044400pt;}
.y69{bottom:185.533867pt;}
.y93{bottom:185.688000pt;}
.y1d6{bottom:187.608933pt;}
.y25c{bottom:190.787333pt;}
.yde{bottom:200.993333pt;}
.y4f{bottom:204.138400pt;}
.y166{bottom:204.187600pt;}
.y1b7{bottom:204.196267pt;}
.y1d5{bottom:204.275600pt;}
.y175{bottom:204.287600pt;}
.y201{bottom:204.582000pt;}
.y23{bottom:204.634667pt;}
.y2a9{bottom:204.714667pt;}
.y29f{bottom:204.724400pt;}
.yf8{bottom:204.917333pt;}
.y230{bottom:205.060000pt;}
.y283{bottom:205.158933pt;}
.y92{bottom:205.688000pt;}
.y68{bottom:205.917333pt;}
.y25b{bottom:210.827467pt;}
.ydd{bottom:217.660000pt;}
.y1d4{bottom:220.942267pt;}
.y4e{bottom:224.166000pt;}
.y165{bottom:224.225067pt;}
.y1b6{bottom:224.235467pt;}
.y174{bottom:224.345067pt;}
.y200{bottom:224.698400pt;}
.y29e{bottom:224.724400pt;}
.yf7{bottom:224.917333pt;}
.y22f{bottom:225.075733pt;}
.y91{bottom:225.688000pt;}
.y13b{bottom:226.018400pt;}
.y67{bottom:226.300667pt;}
.ydc{bottom:234.326667pt;}
.y22{bottom:243.478133pt;}
.y4d{bottom:244.193733pt;}
.y164{bottom:244.262667pt;}
.y1b5{bottom:244.274800pt;}
.y173{bottom:244.402533pt;}
.y1ff{bottom:244.814800pt;}
.yf6{bottom:244.917333pt;}
.y22e{bottom:245.091333pt;}
.y9c{bottom:245.688000pt;}
.y13a{bottom:246.189600pt;}
.y66{bottom:246.684133pt;}
.y1d3{bottom:247.491067pt;}
.y282{bottom:251.951467pt;}
.ydb{bottom:260.875467pt;}
.y21{bottom:263.478133pt;}
.y1d2{bottom:264.157733pt;}
.y25a{bottom:264.200933pt;}
.y4c{bottom:264.221333pt;}
.y163{bottom:264.300133pt;}
.y1b4{bottom:264.314000pt;}
.y172{bottom:264.460000pt;}
.yf5{bottom:264.917333pt;}
.y1fe{bottom:264.931200pt;}
.y22d{bottom:265.107067pt;}
.y9b{bottom:265.688000pt;}
.y65{bottom:267.067600pt;}
.y90{bottom:272.354667pt;}
.yd4{bottom:277.536267pt;}
.yda{bottom:277.542133pt;}
.y208{bottom:280.354667pt;}
.y1d1{bottom:280.824400pt;}
.y20{bottom:283.478133pt;}
.y259{bottom:284.241067pt;}
.y4b{bottom:284.249067pt;}
.y162{bottom:284.337600pt;}
.y1b3{bottom:284.353333pt;}
.y171{bottom:284.517600pt;}
.yf4{bottom:284.917333pt;}
.y1fd{bottom:285.047600pt;}
.y22c{bottom:285.122800pt;}
.y9a{bottom:285.688000pt;}
.y64{bottom:287.451067pt;}
.yd3{bottom:294.202933pt;}
.yd9{bottom:294.208800pt;}
.y1d0{bottom:297.491067pt;}
.y139{bottom:299.694133pt;}
.y207{bottom:300.354667pt;}
.y1f{bottom:303.478133pt;}
.y4a{bottom:304.276667pt;}
.y258{bottom:304.281333pt;}
.y161{bottom:304.375200pt;}
.y1b2{bottom:304.392533pt;}
.y170{bottom:304.575067pt;}
.yf3{bottom:304.917333pt;}
.y22b{bottom:305.138533pt;}
.y1fc{bottom:305.164000pt;}
.y99{bottom:305.688000pt;}
.y63{bottom:307.834533pt;}
.yd2{bottom:310.869600pt;}
.yd8{bottom:310.875467pt;}
.y138{bottom:319.865467pt;}
.y281{bottom:321.410533pt;}
.y1e{bottom:323.478133pt;}
.y1cf{bottom:324.039867pt;}
.y49{bottom:324.304400pt;}
.y257{bottom:324.321467pt;}
.y160{bottom:324.412533pt;}
.y1b1{bottom:324.431867pt;}
.y16f{bottom:324.632533pt;}
.yf2{bottom:324.917333pt;}
.y22a{bottom:325.154267pt;}
.y1fb{bottom:325.280400pt;}
.y8f{bottom:325.688000pt;}
.yd1{bottom:327.536267pt;}
.yd7{bottom:327.542133pt;}
.y62{bottom:328.218000pt;}
.y137{bottom:340.036667pt;}
.y1ce{bottom:340.706533pt;}
.y280{bottom:341.536400pt;}
.y1d{bottom:343.478133pt;}
.yd0{bottom:344.202933pt;}
.yd6{bottom:344.208800pt;}
.y48{bottom:344.332000pt;}
.y256{bottom:344.361733pt;}
.y15f{bottom:344.450133pt;}
.y1b0{bottom:344.471067pt;}
.y16e{bottom:344.690000pt;}
.y29d{bottom:344.724400pt;}
.yf1{bottom:344.917333pt;}
.y229{bottom:345.169867pt;}
.y1fa{bottom:345.396800pt;}
.y8e{bottom:345.688000pt;}
.y61{bottom:348.601333pt;}
.y136{bottom:360.208000pt;}
.ycf{bottom:360.869600pt;}
.yd5{bottom:360.875467pt;}
.y27f{bottom:361.662133pt;}
.y1c{bottom:363.478133pt;}
.y47{bottom:364.359733pt;}
.y255{bottom:364.402000pt;}
.y15e{bottom:364.487733pt;}
.y1af{bottom:364.510400pt;}
.y29c{bottom:364.724400pt;}
.y16d{bottom:364.747467pt;}
.yf0{bottom:364.917333pt;}
.y228{bottom:365.185600pt;}
.y1f9{bottom:365.513200pt;}
.y8d{bottom:365.688000pt;}
.y1cd{bottom:367.255333pt;}
.y60{bottom:368.984800pt;}
.yce{bottom:377.536267pt;}
.y135{bottom:380.379200pt;}
.y27e{bottom:381.788000pt;}
.y1b{bottom:383.478133pt;}
.y1cc{bottom:383.922000pt;}
.y46{bottom:384.387333pt;}
.y254{bottom:384.442133pt;}
.y15d{bottom:384.525200pt;}
.y1ae{bottom:384.549600pt;}
.y29b{bottom:384.724400pt;}
.y16c{bottom:384.805067pt;}
.y2a8{bottom:384.828000pt;}
.yef{bottom:384.917333pt;}
.y227{bottom:385.201333pt;}
.y1f8{bottom:385.629600pt;}
.y8c{bottom:385.688000pt;}
.y5f{bottom:389.368267pt;}
.y134{bottom:400.550400pt;}
.y1cb{bottom:400.588667pt;}
.y27d{bottom:401.913867pt;}
.y1a{bottom:403.478133pt;}
.ycd{bottom:404.085067pt;}
.y45{bottom:404.415067pt;}
.y253{bottom:404.482267pt;}
.y15c{bottom:404.562667pt;}
.y1ad{bottom:404.588800pt;}
.y29a{bottom:404.724400pt;}
.y2a7{bottom:404.828000pt;}
.y16b{bottom:404.862533pt;}
.yee{bottom:404.917333pt;}
.y226{bottom:405.217067pt;}
.y8b{bottom:405.688000pt;}
.y1f7{bottom:405.746000pt;}
.y5e{bottom:409.751733pt;}
.y1ca{bottom:417.255333pt;}
.y133{bottom:420.721733pt;}
.ycc{bottom:420.751733pt;}
.y27c{bottom:422.039600pt;}
.y19{bottom:423.478133pt;}
.y44{bottom:424.442667pt;}
.y252{bottom:424.522533pt;}
.y15b{bottom:424.600133pt;}
.y1ac{bottom:424.628133pt;}
.y299{bottom:424.724400pt;}
.y2a6{bottom:424.828000pt;}
.yed{bottom:424.917333pt;}
.y225{bottom:425.232667pt;}
.y8a{bottom:425.688000pt;}
.y1f6{bottom:425.862400pt;}
.y5d{bottom:430.135200pt;}
.ycb{bottom:437.418400pt;}
.y132{bottom:440.892933pt;}
.y27b{bottom:442.165467pt;}
.y18{bottom:443.478133pt;}
.y1c9{bottom:443.804133pt;}
.y43{bottom:444.470400pt;}
.y251{bottom:444.562667pt;}
.y15a{bottom:444.637733pt;}
.y1ab{bottom:444.667333pt;}
.y298{bottom:444.724400pt;}
.y2a5{bottom:444.828000pt;}
.yec{bottom:444.917333pt;}
.y224{bottom:445.248400pt;}
.y89{bottom:445.688000pt;}
.y1f5{bottom:445.978800pt;}
.y191{bottom:447.277200pt;}
.y5c{bottom:450.518667pt;}
.yc6{bottom:454.079200pt;}
.yca{bottom:454.085067pt;}
.y1c8{bottom:460.470800pt;}
.y131{bottom:461.064267pt;}
.y27a{bottom:462.291200pt;}
.y190{bottom:463.943867pt;}
.y42{bottom:464.498000pt;}
.y250{bottom:464.602800pt;}
.y159{bottom:464.675200pt;}
.y1aa{bottom:464.706667pt;}
.y297{bottom:464.724400pt;}
.yeb{bottom:464.917333pt;}
.y223{bottom:465.264133pt;}
.y88{bottom:465.688000pt;}
.y1f4{bottom:466.095200pt;}
.yc5{bottom:470.745867pt;}
.yc9{bottom:470.751733pt;}
.y5b{bottom:470.902133pt;}
.y17{bottom:476.811467pt;}
.y1c7{bottom:477.137467pt;}
.y18f{bottom:480.610533pt;}
.y130{bottom:481.235467pt;}
.y279{bottom:482.417067pt;}
.y41{bottom:484.525733pt;}
.y24f{bottom:484.643067pt;}
.y158{bottom:484.712667pt;}
.y1a9{bottom:484.745867pt;}
.yea{bottom:484.917333pt;}
.y222{bottom:485.279867pt;}
.y87{bottom:485.688000pt;}
.y1f3{bottom:486.211600pt;}
.yc4{bottom:487.412533pt;}
.yc8{bottom:487.418400pt;}
.y5a{bottom:491.285600pt;}
.y1c6{bottom:493.804133pt;}
.y18e{bottom:497.277200pt;}
.y12f{bottom:501.406667pt;}
.y278{bottom:502.542800pt;}
.yc3{bottom:504.079200pt;}
.yc7{bottom:504.085067pt;}
.y40{bottom:504.553333pt;}
.y24e{bottom:504.683200pt;}
.y157{bottom:504.750267pt;}
.y1a8{bottom:504.785067pt;}
.y221{bottom:505.295467pt;}
.y86{bottom:505.688000pt;}
.y1f2{bottom:506.328000pt;}
.y1c5{bottom:510.470800pt;}
.y59{bottom:511.669067pt;}
.y18d{bottom:513.943867pt;}
.yc2{bottom:520.745867pt;}
.y16{bottom:520.811467pt;}
.y12e{bottom:521.578000pt;}
.y277{bottom:522.668667pt;}
.y3f{bottom:524.581067pt;}
.y24d{bottom:524.723467pt;}
.y156{bottom:524.787733pt;}
.y1a7{bottom:524.824400pt;}
.y220{bottom:525.311200pt;}
.y85{bottom:525.688000pt;}
.y1f1{bottom:526.444400pt;}
.y1c4{bottom:527.137467pt;}
.y18c{bottom:530.610533pt;}
.y58{bottom:532.052400pt;}
.y116{bottom:534.297200pt;}
.y15{bottom:540.811467pt;}
.y12d{bottom:541.749200pt;}
.y276{bottom:542.794400pt;}
.y3e{bottom:544.608667pt;}
.y296{bottom:544.724400pt;}
.y24c{bottom:544.763600pt;}
.y155{bottom:544.825200pt;}
.y1a6{bottom:544.863600pt;}
.y21f{bottom:545.326933pt;}
.y84{bottom:545.688000pt;}
.y1f0{bottom:546.560800pt;}
.y18b{bottom:547.277200pt;}
.yc1{bottom:547.294800pt;}
.y115{bottom:550.963867pt;}
.y57{bottom:552.435867pt;}
.y1c3{bottom:553.686400pt;}
.y14{bottom:560.811467pt;}
.y12c{bottom:561.920400pt;}
.y275{bottom:562.920267pt;}
.y18a{bottom:563.943867pt;}
.yc0{bottom:563.961467pt;}
.y295{bottom:564.724400pt;}
.y24b{bottom:564.803867pt;}
.y154{bottom:564.862800pt;}
.y1a5{bottom:564.902933pt;}
.y21e{bottom:565.342667pt;}
.y83{bottom:565.688000pt;}
.y1ef{bottom:566.677200pt;}
.y114{bottom:567.630533pt;}
.y56{bottom:572.819333pt;}
.y1c2{bottom:580.235200pt;}
.y189{bottom:580.610533pt;}
.ybf{bottom:580.628133pt;}
.y13{bottom:580.811467pt;}
.y12b{bottom:582.091733pt;}
.y274{bottom:583.046000pt;}
.y113{bottom:584.297200pt;}
.y24a{bottom:584.844000pt;}
.y153{bottom:584.900267pt;}
.y1a4{bottom:584.942133pt;}
.y21d{bottom:585.358267pt;}
.y82{bottom:585.688000pt;}
.y1ee{bottom:586.793600pt;}
.y3d{bottom:591.303067pt;}
.y55{bottom:593.202800pt;}
.y1c1{bottom:596.901867pt;}
.ybe{bottom:597.294800pt;}
.y12{bottom:600.811467pt;}
.y12a{bottom:602.262933pt;}
.y273{bottom:603.171867pt;}
.y294{bottom:604.724400pt;}
.y249{bottom:604.884133pt;}
.y152{bottom:604.937733pt;}
.y1a3{bottom:604.981467pt;}
.y21c{bottom:605.374000pt;}
.y81{bottom:605.688000pt;}
.y1ed{bottom:606.910000pt;}
.y188{bottom:607.159333pt;}
.y112{bottom:610.846000pt;}
.y1c0{bottom:613.568533pt;}
.yba{bottom:613.955600pt;}
.ybd{bottom:613.961467pt;}
.y206{bottom:620.354667pt;}
.y11{bottom:620.811467pt;}
.y129{bottom:622.434267pt;}
.y272{bottom:623.297733pt;}
.y187{bottom:623.826000pt;}
.y293{bottom:624.724400pt;}
.y248{bottom:624.924400pt;}
.y151{bottom:624.975333pt;}
.y1a2{bottom:625.020667pt;}
.y21b{bottom:625.389733pt;}
.y80{bottom:625.688000pt;}
.y1ec{bottom:627.026400pt;}
.y111{bottom:627.512667pt;}
.yb9{bottom:630.622267pt;}
.ybc{bottom:630.628133pt;}
.y25f{bottom:632.354667pt;}
.y1bf{bottom:640.117333pt;}
.y186{bottom:640.492667pt;}
.y10{bottom:640.811467pt;}
.y128{bottom:642.605467pt;}
.y271{bottom:643.423467pt;}
.y110{bottom:644.179333pt;}
.y292{bottom:644.724400pt;}
.y247{bottom:644.964533pt;}
.y150{bottom:645.012800pt;}
.y1a1{bottom:645.059867pt;}
.y21a{bottom:645.405333pt;}
.y7f{bottom:645.688000pt;}
.y1eb{bottom:647.142800pt;}
.yb8{bottom:647.288933pt;}
.ybb{bottom:647.294800pt;}
.y3c{bottom:650.454933pt;}
.y1be{bottom:656.784000pt;}
.y185{bottom:657.159333pt;}
.yf{bottom:660.811467pt;}
.y10f{bottom:660.846000pt;}
.y127{bottom:662.776800pt;}
.y270{bottom:663.549333pt;}
.yb7{bottom:663.955600pt;}
.y246{bottom:665.004800pt;}
.y14f{bottom:665.050267pt;}
.y1a0{bottom:665.099200pt;}
.y219{bottom:665.421067pt;}
.y7e{bottom:665.688000pt;}
.y1ea{bottom:667.259200pt;}
.y3b{bottom:670.454933pt;}
.y1bd{bottom:673.450667pt;}
.y184{bottom:673.826000pt;}
.y10e{bottom:677.512667pt;}
.ye{bottom:680.811467pt;}
.y126{bottom:682.948000pt;}
.y26f{bottom:683.675067pt;}
.y291{bottom:684.724400pt;}
.y245{bottom:685.044933pt;}
.y14e{bottom:685.087867pt;}
.y19f{bottom:685.138400pt;}
.y218{bottom:685.436800pt;}
.y7d{bottom:685.688000pt;}
.y1e9{bottom:687.375600pt;}
.y3a{bottom:690.454933pt;}
.y183{bottom:690.492667pt;}
.yb6{bottom:690.504400pt;}
.y10d{bottom:694.179333pt;}
.y1bc{bottom:696.999467pt;}
.yd{bottom:700.811467pt;}
.y125{bottom:703.119200pt;}
.y26e{bottom:703.800933pt;}
.y290{bottom:704.724400pt;}
.y244{bottom:705.085067pt;}
.y14d{bottom:705.125333pt;}
.y217{bottom:705.452533pt;}
.y7c{bottom:705.688000pt;}
.y182{bottom:707.159333pt;}
.yb1{bottom:707.165200pt;}
.yb5{bottom:707.171067pt;}
.y1e8{bottom:707.492000pt;}
.y39{bottom:710.454933pt;}
.y10c{bottom:710.846000pt;}
.y98{bottom:712.354667pt;}
.y19e{bottom:719.844267pt;}
.yc{bottom:720.811467pt;}
.y124{bottom:723.290400pt;}
.y181{bottom:723.826000pt;}
.yb0{bottom:723.831867pt;}
.yb4{bottom:723.837733pt;}
.y26d{bottom:723.926667pt;}
.y28f{bottom:724.724400pt;}
.y243{bottom:725.125333pt;}
.y14c{bottom:725.162800pt;}
.y216{bottom:725.468133pt;}
.y7b{bottom:725.688000pt;}
.y1e7{bottom:727.608400pt;}
.y38{bottom:730.454933pt;}
.y10b{bottom:737.394800pt;}
.y19d{bottom:739.883600pt;}
.y180{bottom:740.492667pt;}
.yaf{bottom:740.498533pt;}
.yb3{bottom:740.504400pt;}
.y123{bottom:743.461733pt;}
.y26c{bottom:744.052533pt;}
.y242{bottom:745.165467pt;}
.y14b{bottom:745.200400pt;}
.y215{bottom:745.483867pt;}
.y7a{bottom:745.688000pt;}
.y1e6{bottom:747.724800pt;}
.y28{bottom:749.488533pt;}
.y37{bottom:750.454933pt;}
.y10a{bottom:754.061467pt;}
.y17f{bottom:757.159333pt;}
.yae{bottom:757.165200pt;}
.yb2{bottom:757.171067pt;}
.y122{bottom:763.632933pt;}
.y26b{bottom:764.178267pt;}
.y28e{bottom:764.724400pt;}
.y241{bottom:765.205733pt;}
.y14a{bottom:765.237867pt;}
.y214{bottom:765.499600pt;}
.y79{bottom:765.688000pt;}
.y1e5{bottom:767.841200pt;}
.y27{bottom:768.155200pt;}
.y36{bottom:770.454933pt;}
.y109{bottom:770.728133pt;}
.y17e{bottom:773.826000pt;}
.yad{bottom:773.831867pt;}
.y121{bottom:783.804133pt;}
.y26a{bottom:784.304133pt;}
.y28d{bottom:784.724400pt;}
.y240{bottom:785.245867pt;}
.y19c{bottom:785.256133pt;}
.y149{bottom:785.275333pt;}
.y213{bottom:785.515333pt;}
.y78{bottom:785.688000pt;}
.y108{bottom:787.394800pt;}
.y1e4{bottom:787.957600pt;}
.y35{bottom:790.454933pt;}
.y26{bottom:790.555200pt;}
.ye3{bottom:792.354667pt;}
.y17d{bottom:800.374800pt;}
.yac{bottom:800.380667pt;}
.y120{bottom:803.975467pt;}
.y107{bottom:804.061467pt;}
.y269{bottom:804.429867pt;}
.y28c{bottom:804.724400pt;}
.y23f{bottom:805.286133pt;}
.y19b{bottom:805.295467pt;}
.y148{bottom:805.312933pt;}
.y212{bottom:805.531067pt;}
.y77{bottom:805.688000pt;}
.y1e3{bottom:808.074000pt;}
.y34{bottom:810.454933pt;}
.y17c{bottom:817.041467pt;}
.yab{bottom:817.047333pt;}
.yb{bottom:822.762400pt;}
.y11f{bottom:824.146667pt;}
.y268{bottom:824.555733pt;}
.y23e{bottom:825.326267pt;}
.y19a{bottom:825.334667pt;}
.y147{bottom:825.350400pt;}
.y211{bottom:825.546667pt;}
.y76{bottom:825.688000pt;}
.y1e2{bottom:828.190400pt;}
.y33{bottom:830.454933pt;}
.y106{bottom:830.610400pt;}
.ya8{bottom:833.708133pt;}
.yaa{bottom:833.714000pt;}
.ya{bottom:841.429067pt;}
.y11e{bottom:844.318000pt;}
.y267{bottom:844.681600pt;}
.y28b{bottom:844.724400pt;}
.y23d{bottom:845.366400pt;}
.y199{bottom:845.374000pt;}
.y146{bottom:845.388000pt;}
.y210{bottom:845.562400pt;}
.y75{bottom:845.688000pt;}
.y105{bottom:847.277067pt;}
.y1e1{bottom:848.306800pt;}
.ya7{bottom:850.374800pt;}
.ya9{bottom:850.380667pt;}
.y32{bottom:850.454933pt;}
.y9{bottom:863.829067pt;}
.y11d{bottom:864.489200pt;}
.y266{bottom:864.807333pt;}
.y23c{bottom:865.406667pt;}
.y198{bottom:865.413200pt;}
.y145{bottom:865.425467pt;}
.y20f{bottom:865.578133pt;}
.y74{bottom:865.688000pt;}
.ya6{bottom:867.041467pt;}
.y1e0{bottom:868.423200pt;}
.y31{bottom:870.454933pt;}
.y104{bottom:873.825867pt;}
.y17b{bottom:883.708133pt;}
.y11c{bottom:884.660533pt;}
.y265{bottom:884.933200pt;}
.y23b{bottom:885.446800pt;}
.y197{bottom:885.452533pt;}
.y144{bottom:885.462933pt;}
.y20e{bottom:885.593733pt;}
.y73{bottom:885.688000pt;}
.y1df{bottom:888.539600pt;}
.y30{bottom:890.454933pt;}
.y103{bottom:890.492533pt;}
.ya2{bottom:893.590267pt;}
.ya5{bottom:893.596133pt;}
.y11b{bottom:904.831733pt;}
.y264{bottom:905.058933pt;}
.y23a{bottom:905.487067pt;}
.y196{bottom:905.491733pt;}
.y143{bottom:905.500400pt;}
.y20d{bottom:905.609600pt;}
.y72{bottom:905.688000pt;}
.y102{bottom:907.159200pt;}
.y1de{bottom:908.656000pt;}
.y8{bottom:910.229067pt;}
.ya1{bottom:910.256933pt;}
.ya4{bottom:910.262800pt;}
.y2f{bottom:910.454933pt;}
.ye8{bottom:912.354667pt;}
.y11a{bottom:925.003067pt;}
.y263{bottom:925.184667pt;}
.y239{bottom:925.527200pt;}
.y195{bottom:925.530933pt;}
.y142{bottom:925.537867pt;}
.y20c{bottom:925.625200pt;}
.y71{bottom:925.688000pt;}
.ya0{bottom:926.923600pt;}
.ya3{bottom:926.929467pt;}
.y1dd{bottom:928.772400pt;}
.y2e{bottom:930.454933pt;}
.ye7{bottom:932.354667pt;}
.y101{bottom:933.708000pt;}
.y9f{bottom:943.590267pt;}
.y119{bottom:945.174267pt;}
.y262{bottom:945.310533pt;}
.y238{bottom:945.567333pt;}
.y194{bottom:945.570267pt;}
.y141{bottom:945.575467pt;}
.y20b{bottom:945.640933pt;}
.y70{bottom:945.688000pt;}
.y7{bottom:946.229067pt;}
.y1dc{bottom:948.888800pt;}
.y2d{bottom:950.454933pt;}
.y2a2{bottom:956.480133pt;}
.y100{bottom:960.256800pt;}
.y17a{bottom:960.256933pt;}
.y118{bottom:965.345467pt;}
.y261{bottom:965.436400pt;}
.y237{bottom:965.607600pt;}
.y193{bottom:965.609467pt;}
.y140{bottom:965.612933pt;}
.y20a{bottom:965.656533pt;}
.y6f{bottom:965.688000pt;}
.y9e{bottom:966.805867pt;}
.y2a4{bottom:976.924533pt;}
.yff{bottom:983.472267pt;}
.y9d{bottom:983.472533pt;}
.y1db{bottom:983.671867pt;}
.y117{bottom:985.516800pt;}
.y260{bottom:985.562133pt;}
.y236{bottom:985.647733pt;}
.y192{bottom:985.648800pt;}
.y13f{bottom:985.650533pt;}
.y209{bottom:985.672267pt;}
.y6e{bottom:985.688000pt;}
.y2c{bottom:1003.788267pt;}
.yfe{bottom:1005.687867pt;}
.y6d{bottom:1005.688000pt;}
.y3{bottom:1020.721467pt;}
.y2{bottom:1039.921467pt;}
.y1{bottom:1059.121467pt;}
.y2b{bottom:1064.144800pt;}
.hc{height:27.492563pt;}
.ha{height:34.218750pt;}
.h9{height:38.020833pt;}
.h7{height:41.822917pt;}
.hb{height:43.476562pt;}
.h8{height:45.625000pt;}
.hd{height:47.911375pt;}
.he{height:48.000000pt;}
.h3{height:48.307292pt;}
.h6{height:53.138021pt;}
.h2{height:57.968750pt;}
.h5{height:67.630208pt;}
.h4{height:68.437500pt;}
.hf{height:908.072000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x38{left:49.221867pt;}
.x22{left:54.634667pt;}
.x26{left:59.666667pt;}
.x27{left:61.707867pt;}
.x19{left:66.333333pt;}
.x36{left:67.666667pt;}
.x25{left:68.692267pt;}
.xc{left:77.000000pt;}
.x2c{left:87.766400pt;}
.xd{left:89.000000pt;}
.x2a{left:102.000800pt;}
.x15{left:109.000000pt;}
.x16{left:123.666667pt;}
.x28{left:125.596000pt;}
.x2b{left:128.157067pt;}
.x17{left:138.333333pt;}
.x1f{left:139.309600pt;}
.x5{left:141.282267pt;}
.x1d{left:143.950133pt;}
.xe{left:159.325733pt;}
.x2f{left:163.701333pt;}
.x18{left:171.934400pt;}
.xf{left:189.780533pt;}
.x2d{left:209.994933pt;}
.x7{left:264.825867pt;}
.x30{left:283.034667pt;}
.x6{left:288.721733pt;}
.x23{left:290.280800pt;}
.x39{left:297.346533pt;}
.x20{left:315.508133pt;}
.x8{left:316.432667pt;}
.x9{left:333.138800pt;}
.x35{left:358.789467pt;}
.xb{left:362.948267pt;}
.x14{left:368.104533pt;}
.xa{left:369.504667pt;}
.x21{left:388.193733pt;}
.x37{left:389.916000pt;}
.x13{left:392.769867pt;}
.x1a{left:408.850667pt;}
.x1b{left:427.517333pt;}
.x32{left:434.419200pt;}
.x2e{left:440.872533pt;}
.x10{left:448.461600pt;}
.x1c{left:453.846533pt;}
.x31{left:463.184800pt;}
.x24{left:481.616000pt;}
.x2{left:488.524933pt;}
.x11{left:491.441333pt;}
.x33{left:504.641867pt;}
.x1e{left:523.012933pt;}
.x12{left:530.849200pt;}
.x34{left:534.134133pt;}
.x29{left:594.368000pt;}
.x4{left:623.064000pt;}
.x3{left:652.907733pt;}
}




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