
    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_07b1cd8de88bc2db525adf03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_c107e881ac74d374ba09374d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_7ad6bf219e33e6d072bd3873.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_4649d135708c4c980b373b29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_ca1ff9c1697e7382791a20b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_69877151e7191faca1d0ca06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_7cbece004d81685938088f17.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_07e4570ce017bc88bb852ea9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.384000;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_d4f45184ea49408cd4e20da8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9c63ec44946b49e60aadd2f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-18.899780px;}
.v4{vertical-align:-17.849995px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.570110px;}
.v2{vertical-align:21.000000px;}
.ls81{letter-spacing:-3.960000px;}
.ls7e{letter-spacing:-3.150000px;}
.ls70{letter-spacing:-1.935000px;}
.ls53{letter-spacing:-1.296000px;}
.ls5f{letter-spacing:-1.026000px;}
.ls52{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.918000px;}
.ls80{letter-spacing:-0.900000px;}
.ls28{letter-spacing:-0.864000px;}
.ls73{letter-spacing:-0.810000px;}
.ls78{letter-spacing:-0.765000px;}
.ls3a{letter-spacing:-0.702000px;}
.ls6c{letter-spacing:-0.675000px;}
.ls5c{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.594000px;}
.ls77{letter-spacing:-0.585000px;}
.ls13{letter-spacing:-0.540000px;}
.ls76{letter-spacing:-0.495000px;}
.ls51{letter-spacing:-0.486000px;}
.ls79{letter-spacing:-0.450000px;}
.ls6e{letter-spacing:-0.405000px;}
.ls50{letter-spacing:-0.378000px;}
.ls6f{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.324000px;}
.ls74{letter-spacing:-0.315000px;}
.ls18{letter-spacing:-0.270000px;}
.ls72{letter-spacing:-0.225000px;}
.ls21{letter-spacing:-0.216000px;}
.ls75{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.175500px;}
.ls17{letter-spacing:-0.162000px;}
.ls6d{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.108000px;}
.ls6b{letter-spacing:-0.090000px;}
.ls59{letter-spacing:-0.070200px;}
.ls14{letter-spacing:-0.054000px;}
.ls71{letter-spacing:-0.045000px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013956px;}
.lse{letter-spacing:0.018028px;}
.ls25{letter-spacing:0.027530px;}
.ls26{letter-spacing:0.035100px;}
.ls64{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.054000px;}
.ls87{letter-spacing:0.064800px;}
.ls3b{letter-spacing:0.070200px;}
.ls68{letter-spacing:0.090000px;}
.ls3e{letter-spacing:0.091800px;}
.ls3c{letter-spacing:0.097188px;}
.ls9{letter-spacing:0.104391px;}
.ls39{letter-spacing:0.105300px;}
.ls54{letter-spacing:0.107964px;}
.ls3f{letter-spacing:0.107976px;}
.ls7{letter-spacing:0.108000px;}
.ls7d{letter-spacing:0.112500px;}
.ls55{letter-spacing:0.124200px;}
.lsb{letter-spacing:0.126714px;}
.ls66{letter-spacing:0.135000px;}
.ls8{letter-spacing:0.140400px;}
.ls4{letter-spacing:0.145800px;}
.ls1b{letter-spacing:0.157950px;}
.ls2a{letter-spacing:0.158836px;}
.ls32{letter-spacing:0.159019px;}
.ls27{letter-spacing:0.162000px;}
.ls45{letter-spacing:0.172794px;}
.ls56{letter-spacing:0.172800px;}
.lsa{letter-spacing:0.175500px;}
.ls31{letter-spacing:0.175811px;}
.ls62{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.183583px;}
.ls2b{letter-spacing:0.191555px;}
.ls4e{letter-spacing:0.194400px;}
.ls63{letter-spacing:0.202500px;}
.ls1e{letter-spacing:0.210600px;}
.ls3{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.223005px;}
.ls29{letter-spacing:0.224396px;}
.ls65{letter-spacing:0.225000px;}
.ls1d{letter-spacing:0.243000px;}
.ls30{letter-spacing:0.245700px;}
.ls86{letter-spacing:0.247500px;}
.ls2c{letter-spacing:0.253767px;}
.ls60{letter-spacing:0.264000px;}
.ls35{letter-spacing:0.266316px;}
.lsd{letter-spacing:0.270000px;}
.ls33{letter-spacing:0.271805px;}
.ls20{letter-spacing:0.280800px;}
.ls40{letter-spacing:0.286200px;}
.ls41{letter-spacing:0.313200px;}
.ls5a{letter-spacing:0.315900px;}
.ls12{letter-spacing:0.324000px;}
.ls84{letter-spacing:0.337500px;}
.ls19{letter-spacing:0.351000px;}
.ls6a{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.367200px;}
.ls3d{letter-spacing:0.377962px;}
.ls24{letter-spacing:0.378000px;}
.ls58{letter-spacing:0.386100px;}
.ls61{letter-spacing:0.405000px;}
.ls5e{letter-spacing:0.421200px;}
.ls1c{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.448200px;}
.ls67{letter-spacing:0.450000px;}
.ls5b{letter-spacing:0.456300px;}
.ls44{letter-spacing:0.475200px;}
.ls4d{letter-spacing:0.480600px;}
.ls38{letter-spacing:0.486000px;}
.ls5d{letter-spacing:0.491400px;}
.ls4f{letter-spacing:0.523788px;}
.ls1a{letter-spacing:0.540000px;}
.ls36{letter-spacing:0.565326px;}
.ls7a{letter-spacing:0.585000px;}
.ls23{letter-spacing:0.594000px;}
.ls82{letter-spacing:0.630000px;}
.ls4a{letter-spacing:0.631800px;}
.ls48{letter-spacing:0.637190px;}
.ls47{letter-spacing:0.637200px;}
.ls1f{letter-spacing:0.648000px;}
.ls49{letter-spacing:0.701984px;}
.ls46{letter-spacing:0.702000px;}
.ls6{letter-spacing:0.756000px;}
.ls7f{letter-spacing:0.765000px;}
.ls4c{letter-spacing:0.793800px;}
.ls7c{letter-spacing:0.810000px;}
.ls57{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.918000px;}
.ls22{letter-spacing:0.972000px;}
.ls2f{letter-spacing:1.026000px;}
.ls85{letter-spacing:1.201500px;}
.ls2d{letter-spacing:1.242000px;}
.ls83{letter-spacing:1.350000px;}
.ls34{letter-spacing:1.425600px;}
.ls69{letter-spacing:1.935000px;}
.ls0{letter-spacing:3.000000px;}
.ls7b{letter-spacing:3.330000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.wsa6{word-spacing:-13.860000px;}
.ws70{word-spacing:-13.596000px;}
.ws40{word-spacing:-13.392000px;}
.ws79{word-spacing:-13.068000px;}
.ws7b{word-spacing:-12.852000px;}
.ws1b{word-spacing:-12.798000px;}
.ws78{word-spacing:-12.690000px;}
.ws3b{word-spacing:-12.636000px;}
.ws25{word-spacing:-12.582000px;}
.ws19{word-spacing:-12.528000px;}
.ws96{word-spacing:-12.501000px;}
.ws57{word-spacing:-12.474000px;}
.ws42{word-spacing:-12.420000px;}
.ws3e{word-spacing:-12.366000px;}
.wsa5{word-spacing:-12.312000px;}
.ws3d{word-spacing:-12.258000px;}
.ws76{word-spacing:-12.204000px;}
.ws3f{word-spacing:-12.150000px;}
.ws29{word-spacing:-12.096000px;}
.ws77{word-spacing:-12.042000px;}
.ws3a{word-spacing:-11.988000px;}
.ws93{word-spacing:-11.934000px;}
.ws7a{word-spacing:-11.880000px;}
.ws84{word-spacing:-11.718000px;}
.ws5b{word-spacing:-11.664000px;}
.ws85{word-spacing:-11.394000px;}
.wsac{word-spacing:-10.575000px;}
.wsaa{word-spacing:-10.507500px;}
.wsb3{word-spacing:-10.440000px;}
.wsa9{word-spacing:-10.417500px;}
.wsc2{word-spacing:-10.395000px;}
.wsa7{word-spacing:-10.350000px;}
.wsab{word-spacing:-10.125000px;}
.wse6{word-spacing:-10.102500px;}
.wsd2{word-spacing:-9.945000px;}
.ws0{word-spacing:-9.600000px;}
.ws9d{word-spacing:-8.459100px;}
.ws9f{word-spacing:-8.388900px;}
.wsa8{word-spacing:-8.370000px;}
.ws97{word-spacing:-8.353800px;}
.ws15{word-spacing:-8.318700px;}
.ws9e{word-spacing:-8.283600px;}
.ws16{word-spacing:-8.248500px;}
.ws41{word-spacing:-8.213400px;}
.ws17{word-spacing:-8.178300px;}
.ws3{word-spacing:-8.143200px;}
.ws58{word-spacing:-8.108100px;}
.ws5a{word-spacing:-8.073000px;}
.ws5c{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws2a{word-spacing:-8.002800px;}
.ws3c{word-spacing:-7.967700px;}
.ws98{word-spacing:-7.897500px;}
.ws59{word-spacing:-7.792200px;}
.ws4{word-spacing:-6.630000px;}
.wsd8{word-spacing:-6.255000px;}
.wse1{word-spacing:-6.210000px;}
.wse7{word-spacing:-6.165000px;}
.wse5{word-spacing:-6.075000px;}
.wsb9{word-spacing:-6.030000px;}
.wsbe{word-spacing:-5.985000px;}
.wsce{word-spacing:-5.940000px;}
.wsc8{word-spacing:-5.895000px;}
.wscc{word-spacing:-5.805000px;}
.wsdd{word-spacing:-5.760000px;}
.wsd4{word-spacing:-5.715000px;}
.wsc3{word-spacing:-5.580000px;}
.ws39{word-spacing:-5.508000px;}
.ws8f{word-spacing:-2.376000px;}
.ws6e{word-spacing:-2.214000px;}
.ws4c{word-spacing:-1.890000px;}
.ws6a{word-spacing:-1.836000px;}
.ws38{word-spacing:-1.728000px;}
.ws94{word-spacing:-1.674000px;}
.ws8e{word-spacing:-1.620000px;}
.ws66{word-spacing:-1.566000px;}
.ws68{word-spacing:-1.512000px;}
.ws81{word-spacing:-1.458000px;}
.ws60{word-spacing:-1.404000px;}
.ws6c{word-spacing:-1.296000px;}
.wsb{word-spacing:-1.242000px;}
.ws9{word-spacing:-1.188000px;}
.wsa{word-spacing:-1.134000px;}
.ws1e{word-spacing:-1.080000px;}
.wsae{word-spacing:-1.035000px;}
.ws12{word-spacing:-1.026000px;}
.wsc4{word-spacing:-0.990000px;}
.ws56{word-spacing:-0.972000px;}
.wsd3{word-spacing:-0.945000px;}
.ws2b{word-spacing:-0.918000px;}
.ws11{word-spacing:-0.864000px;}
.wsc1{word-spacing:-0.855000px;}
.ws74{word-spacing:-0.840000px;}
.ws69{word-spacing:-0.810000px;}
.ws86{word-spacing:-0.780000px;}
.wsdb{word-spacing:-0.765000px;}
.ws72{word-spacing:-0.756000px;}
.ws71{word-spacing:-0.720000px;}
.ws43{word-spacing:-0.702000px;}
.wscb{word-spacing:-0.675000px;}
.wsc{word-spacing:-0.648000px;}
.wscf{word-spacing:-0.630000px;}
.ws21{word-spacing:-0.594000px;}
.wsca{word-spacing:-0.585000px;}
.ws7{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.486000px;}
.wsb2{word-spacing:-0.450000px;}
.ws7e{word-spacing:-0.432000px;}
.wsa2{word-spacing:-0.421200px;}
.wsc9{word-spacing:-0.405000px;}
.ws10{word-spacing:-0.378000px;}
.wsaf{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.351000px;}
.wsa4{word-spacing:-0.324000px;}
.wsd7{word-spacing:-0.315000px;}
.wsa0{word-spacing:-0.280800px;}
.ws20{word-spacing:-0.270000px;}
.wse8{word-spacing:-0.264000px;}
.wsb8{word-spacing:-0.225000px;}
.ws6{word-spacing:-0.216000px;}
.ws26{word-spacing:-0.210600px;}
.wsb0{word-spacing:-0.180000px;}
.ws2d{word-spacing:-0.162000px;}
.wsa3{word-spacing:-0.140400px;}
.wsc7{word-spacing:-0.135000px;}
.ws5d{word-spacing:-0.108000px;}
.wsd1{word-spacing:-0.090000px;}
.ws9a{word-spacing:-0.070200px;}
.ws45{word-spacing:-0.054000px;}
.wsc5{word-spacing:-0.045000px;}
.ws30{word-spacing:-0.035100px;}
.ws5{word-spacing:0.000000px;}
.wsbd{word-spacing:0.045000px;}
.wsa1{word-spacing:0.054000px;}
.ws9b{word-spacing:0.070200px;}
.wsb4{word-spacing:0.090000px;}
.ws18{word-spacing:0.108000px;}
.wsf{word-spacing:0.162000px;}
.wsba{word-spacing:0.180000px;}
.ws2f{word-spacing:0.216000px;}
.wsbf{word-spacing:0.225000px;}
.ws31{word-spacing:0.270000px;}
.wsc6{word-spacing:0.315000px;}
.ws53{word-spacing:0.324000px;}
.wse4{word-spacing:0.360000px;}
.ws13{word-spacing:0.378000px;}
.wsd0{word-spacing:0.405000px;}
.ws2e{word-spacing:0.432000px;}
.wsde{word-spacing:0.450000px;}
.ws89{word-spacing:0.486000px;}
.wscd{word-spacing:0.495000px;}
.ws73{word-spacing:0.540000px;}
.wsd5{word-spacing:0.585000px;}
.ws1f{word-spacing:0.594000px;}
.wsdc{word-spacing:0.630000px;}
.ws8d{word-spacing:0.648000px;}
.wsbc{word-spacing:0.675000px;}
.ws22{word-spacing:0.702000px;}
.ws2c{word-spacing:0.756000px;}
.wsbb{word-spacing:0.765000px;}
.wsc0{word-spacing:0.810000px;}
.ws8b{word-spacing:0.864000px;}
.ws28{word-spacing:0.918000px;}
.ws44{word-spacing:0.972000px;}
.wse3{word-spacing:0.990000px;}
.ws8c{word-spacing:1.026000px;}
.wsad{word-spacing:1.035000px;}
.ws63{word-spacing:1.080000px;}
.ws61{word-spacing:1.134000px;}
.wse2{word-spacing:1.170000px;}
.ws1d{word-spacing:1.188000px;}
.wsb1{word-spacing:1.215000px;}
.wsd{word-spacing:1.242000px;}
.wsb5{word-spacing:1.260000px;}
.ws1a{word-spacing:1.296000px;}
.ws6d{word-spacing:1.350000px;}
.ws35{word-spacing:1.404000px;}
.ws52{word-spacing:1.458000px;}
.ws9c{word-spacing:1.512000px;}
.ws62{word-spacing:1.620000px;}
.ws91{word-spacing:1.674000px;}
.ws90{word-spacing:1.680000px;}
.ws47{word-spacing:1.728000px;}
.wsdf{word-spacing:1.755000px;}
.ws32{word-spacing:1.782000px;}
.ws8a{word-spacing:1.836000px;}
.wsb6{word-spacing:1.845000px;}
.ws7c{word-spacing:1.890000px;}
.ws8{word-spacing:1.944000px;}
.wsb7{word-spacing:1.980000px;}
.ws33{word-spacing:1.998000px;}
.wsec{word-spacing:2.052000px;}
.wse{word-spacing:2.106000px;}
.ws87{word-spacing:2.160000px;}
.ws34{word-spacing:2.214000px;}
.ws88{word-spacing:2.376000px;}
.ws5e{word-spacing:2.484000px;}
.wsd9{word-spacing:2.520000px;}
.ws92{word-spacing:2.538000px;}
.ws4b{word-spacing:2.646000px;}
.ws7d{word-spacing:2.700000px;}
.ws23{word-spacing:2.862000px;}
.ws24{word-spacing:2.916000px;}
.wsda{word-spacing:3.015000px;}
.wse9{word-spacing:3.024000px;}
.ws14{word-spacing:3.060000px;}
.ws99{word-spacing:3.078000px;}
.ws49{word-spacing:3.132000px;}
.wsd6{word-spacing:3.150000px;}
.ws67{word-spacing:3.294000px;}
.ws51{word-spacing:3.348000px;}
.ws36{word-spacing:3.456000px;}
.ws37{word-spacing:3.510000px;}
.ws83{word-spacing:3.564000px;}
.ws82{word-spacing:3.618000px;}
.wse0{word-spacing:3.645000px;}
.ws48{word-spacing:4.050000px;}
.ws4e{word-spacing:4.104000px;}
.ws95{word-spacing:4.320000px;}
.ws54{word-spacing:4.374000px;}
.ws75{word-spacing:4.590000px;}
.ws64{word-spacing:4.644000px;}
.ws50{word-spacing:4.860000px;}
.ws55{word-spacing:5.022000px;}
.ws4a{word-spacing:5.400000px;}
.ws6f{word-spacing:5.454000px;}
.wsed{word-spacing:5.670000px;}
.ws46{word-spacing:5.940000px;}
.ws4f{word-spacing:6.264000px;}
.wsea{word-spacing:6.480000px;}
.wseb{word-spacing:6.750000px;}
.ws6b{word-spacing:8.046000px;}
.ws65{word-spacing:8.316000px;}
.ws5f{word-spacing:10.044000px;}
.ws80{word-spacing:11.070000px;}
.ws7f{word-spacing:11.160000px;}
.ws27{word-spacing:15.282000px;}
._e{margin-left:-20.952007px;}
._12{margin-left:-18.601181px;}
._16{margin-left:-17.107240px;}
._14{margin-left:-16.014042px;}
._8{margin-left:-13.210217px;}
._15{margin-left:-11.833800px;}
._6{margin-left:-10.565400px;}
._17{margin-left:-8.902162px;}
._2{margin-left:-7.020000px;}
._3{margin-left:-5.162438px;}
._4{margin-left:-3.792000px;}
._0{margin-left:-1.876800px;}
._5{width:1.035000px;}
._7{width:2.146800px;}
._b{width:3.331200px;}
._10{width:4.425701px;}
._11{width:5.898000px;}
._a{width:7.053475px;}
._9{width:8.812625px;}
._1c{width:9.855000px;}
._13{width:11.019600px;}
._18{width:12.050380px;}
._c{width:13.253468px;}
._d{width:14.674800px;}
._1a{width:16.965000px;}
._1b{width:18.045000px;}
._19{width:46.892419px;}
._f{width:48.335343px;}
._1{width:313.252800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:3.199200px;}
.y36{bottom:3.199350px;}
.yc6{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y35{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y84{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y102{bottom:67.989148px;}
.y243{bottom:67.996648px;}
.y34{bottom:68.037600px;}
.y1ce{bottom:68.718602px;}
.y15c{bottom:69.484648px;}
.y1c2{bottom:69.499648px;}
.y56{bottom:75.565052px;}
.y20b{bottom:76.983148px;}
.y30e{bottom:82.662034px;}
.y101{bottom:82.987648px;}
.y242{bottom:82.995148px;}
.y33{bottom:83.037600px;}
.y2be{bottom:83.481632px;}
.y1cd{bottom:83.717102px;}
.y15b{bottom:84.483148px;}
.y1c1{bottom:84.498148px;}
.y55{bottom:90.563552px;}
.y20a{bottom:91.981648px;}
.y19f{bottom:92.008648px;}
.y11c{bottom:92.528700px;}
.y158{bottom:95.022148px;}
.y30d{bottom:95.408284px;}
.y2bd{bottom:96.227882px;}
.y81{bottom:97.662004px;}
.y100{bottom:97.986148px;}
.y241{bottom:97.993648px;}
.y32{bottom:98.037600px;}
.y15a{bottom:99.481648px;}
.y1c0{bottom:99.496648px;}
.y54{bottom:105.562052px;}
.yc5{bottom:106.983148px;}
.y209{bottom:107.002648px;}
.y19e{bottom:107.007148px;}
.y11b{bottom:107.527200px;}
.y30c{bottom:108.154534px;}
.y2bc{bottom:108.974132px;}
.y157{bottom:110.020648px;}
.y174{bottom:110.169771px;}
.y80{bottom:112.660504px;}
.yff{bottom:112.984648px;}
.y240{bottom:112.992148px;}
.y159{bottom:114.480148px;}
.y1bf{bottom:114.495148px;}
.y31{bottom:117.494099px;}
.y53{bottom:120.560552px;}
.y30b{bottom:120.900784px;}
.y2bb{bottom:121.720382px;}
.yc4{bottom:121.981648px;}
.y208{bottom:122.001148px;}
.y19d{bottom:122.005648px;}
.y11a{bottom:122.525700px;}
.y271{bottom:124.996648px;}
.y156{bottom:125.019148px;}
.y173{bottom:125.168271px;}
.y7f{bottom:127.659004px;}
.yfe{bottom:127.983148px;}
.y23f{bottom:127.990648px;}
.y1be{bottom:129.493648px;}
.y30a{bottom:133.647034px;}
.y2ba{bottom:134.466632px;}
.y52{bottom:135.559052px;}
.yc3{bottom:136.986148px;}
.y207{bottom:136.999648px;}
.y19c{bottom:137.004148px;}
.y119{bottom:137.524200px;}
.y270{bottom:139.995148px;}
.y155{bottom:140.017648px;}
.y172{bottom:140.166771px;}
.yfd{bottom:142.981648px;}
.y23e{bottom:142.989148px;}
.y1bd{bottom:144.492148px;}
.y309{bottom:146.393284px;}
.y2b9{bottom:147.212882px;}
.y51{bottom:150.557552px;}
.yc2{bottom:151.984648px;}
.y206{bottom:151.998148px;}
.y19b{bottom:152.002648px;}
.y26f{bottom:154.993648px;}
.y154{bottom:155.016148px;}
.y171{bottom:155.165271px;}
.y2f{bottom:157.570954px;}
.yfc{bottom:157.980148px;}
.y23d{bottom:157.987648px;}
.y308{bottom:159.139534px;}
.y1bc{bottom:159.490648px;}
.y2b8{bottom:159.959132px;}
.y7e{bottom:160.668004px;}
.y50{bottom:165.556052px;}
.yc1{bottom:166.983148px;}
.y205{bottom:166.996648px;}
.y19a{bottom:167.001148px;}
.y26e{bottom:169.992148px;}
.y153{bottom:170.014648px;}
.y170{bottom:170.163771px;}
.y118{bottom:170.554200px;}
.y307{bottom:171.885784px;}
.y2e{bottom:172.579805px;}
.y2b7{bottom:172.705382px;}
.y23c{bottom:172.986148px;}
.y1bb{bottom:174.489148px;}
.y7d{bottom:175.666504px;}
.y4f{bottom:180.554552px;}
.yc0{bottom:181.981648px;}
.y204{bottom:181.995148px;}
.y199{bottom:181.999648px;}
.y306{bottom:184.632034px;}
.y26d{bottom:184.990648px;}
.y152{bottom:185.013148px;}
.y15f{bottom:185.074495px;}
.y16f{bottom:185.162271px;}
.y2b6{bottom:185.451632px;}
.y117{bottom:185.552700px;}
.y2d{bottom:187.578305px;}
.y23b{bottom:187.984648px;}
.y1ba{bottom:189.487648px;}
.y7c{bottom:190.665004px;}
.yfb{bottom:190.981648px;}
.y4e{bottom:195.553052px;}
.ybf{bottom:196.981648px;}
.y203{bottom:196.993648px;}
.y198{bottom:196.998148px;}
.y305{bottom:197.378284px;}
.y2b5{bottom:198.197882px;}
.y26c{bottom:199.989148px;}
.y151{bottom:200.011648px;}
.y15e{bottom:200.072995px;}
.y16e{bottom:200.160771px;}
.y116{bottom:200.551200px;}
.y2c{bottom:202.576805px;}
.y23a{bottom:202.983148px;}
.y1b9{bottom:204.486148px;}
.y7b{bottom:205.663504px;}
.yfa{bottom:205.984648px;}
.y304{bottom:210.124534px;}
.y4d{bottom:210.551552px;}
.y2b4{bottom:210.944132px;}
.y202{bottom:211.992148px;}
.y197{bottom:211.996648px;}
.ybe{bottom:211.999648px;}
.y26b{bottom:214.987648px;}
.y150{bottom:215.010148px;}
.y15d{bottom:215.071495px;}
.y16d{bottom:215.159271px;}
.y115{bottom:215.549700px;}
.y2b{bottom:217.575305px;}
.y239{bottom:217.981648px;}
.y1b8{bottom:219.484648px;}
.y7a{bottom:220.662004px;}
.yf9{bottom:220.983148px;}
.y303{bottom:222.870784px;}
.y2b3{bottom:223.690382px;}
.y4c{bottom:225.550052px;}
.y201{bottom:226.990648px;}
.y196{bottom:226.995148px;}
.ybd{bottom:226.998148px;}
.y26a{bottom:229.986148px;}
.y14f{bottom:230.008648px;}
.y16c{bottom:230.157771px;}
.y114{bottom:230.548200px;}
.y2a{bottom:232.573805px;}
.y238{bottom:232.983148px;}
.y1b7{bottom:234.483148px;}
.y302{bottom:235.617034px;}
.y79{bottom:235.660504px;}
.yf8{bottom:235.981648px;}
.y2b2{bottom:236.436632px;}
.y4b{bottom:240.548552px;}
.y200{bottom:241.989148px;}
.y195{bottom:241.993648px;}
.ybc{bottom:241.996648px;}
.y269{bottom:244.984648px;}
.y14e{bottom:245.007148px;}
.y16b{bottom:245.156271px;}
.y113{bottom:245.546700px;}
.y29{bottom:247.572305px;}
.y237{bottom:247.981648px;}
.y301{bottom:248.363284px;}
.y2b1{bottom:249.182882px;}
.y1b6{bottom:249.481648px;}
.y78{bottom:250.659004px;}
.yf7{bottom:250.980148px;}
.y4a{bottom:255.547052px;}
.y1ff{bottom:256.987648px;}
.y194{bottom:256.992148px;}
.ybb{bottom:256.995148px;}
.y268{bottom:259.983148px;}
.y14d{bottom:260.005648px;}
.y16a{bottom:260.154771px;}
.y112{bottom:260.545200px;}
.y300{bottom:261.109534px;}
.y2b0{bottom:261.929132px;}
.y28{bottom:262.570805px;}
.y236{bottom:262.998148px;}
.y1b5{bottom:264.480148px;}
.y49{bottom:270.545552px;}
.y1fe{bottom:271.986148px;}
.y193{bottom:271.990648px;}
.yba{bottom:271.993648px;}
.y2ff{bottom:273.855784px;}
.y2af{bottom:274.675382px;}
.y267{bottom:274.981648px;}
.y14c{bottom:275.004148px;}
.y169{bottom:275.153271px;}
.y111{bottom:275.543700px;}
.y27{bottom:277.572305px;}
.y235{bottom:277.996648px;}
.y77{bottom:283.660504px;}
.yf6{bottom:283.990648px;}
.y48{bottom:285.547052px;}
.y2fe{bottom:286.602034px;}
.y1fd{bottom:286.984648px;}
.y192{bottom:286.989148px;}
.yb9{bottom:286.992148px;}
.y2ae{bottom:287.421632px;}
.y266{bottom:289.980148px;}
.y14b{bottom:290.002648px;}
.y168{bottom:290.151771px;}
.y110{bottom:290.542200px;}
.y26{bottom:292.570805px;}
.y234{bottom:292.995148px;}
.y1b4{bottom:297.487648px;}
.y76{bottom:298.659004px;}
.yf5{bottom:298.989148px;}
.y2fd{bottom:299.348284px;}
.y2ad{bottom:300.167882px;}
.y47{bottom:300.545552px;}
.y1fc{bottom:301.983148px;}
.y191{bottom:301.987648px;}
.yb8{bottom:301.990648px;}
.y265{bottom:304.980148px;}
.y14a{bottom:305.001148px;}
.y167{bottom:305.150271px;}
.y10f{bottom:305.540700px;}
.y25{bottom:307.651769px;}
.y233{bottom:307.993648px;}
.y2fc{bottom:312.094534px;}
.y1b3{bottom:312.486148px;}
.y2ac{bottom:312.914132px;}
.y75{bottom:313.659004px;}
.yf4{bottom:313.987648px;}
.y46{bottom:315.545552px;}
.y1fb{bottom:316.981648px;}
.y190{bottom:316.986148px;}
.yb7{bottom:316.989148px;}
.y149{bottom:319.999648px;}
.y166{bottom:320.148771px;}
.y330{bottom:320.162244px;}
.y10e{bottom:320.539200px;}
.y24{bottom:322.650269px;}
.y232{bottom:322.992148px;}
.y2fb{bottom:324.840784px;}
.y2ab{bottom:325.660382px;}
.y1b2{bottom:327.484648px;}
.yf3{bottom:328.986148px;}
.y45{bottom:330.550052px;}
.y18f{bottom:331.984648px;}
.y1fa{bottom:331.986148px;}
.yb6{bottom:331.987648px;}
.y148{bottom:334.998148px;}
.y165{bottom:335.147271px;}
.y10d{bottom:335.537700px;}
.y2fa{bottom:337.587034px;}
.y23{bottom:337.648769px;}
.y231{bottom:337.990648px;}
.y264{bottom:338.001148px;}
.y2aa{bottom:338.406632px;}
.y1b1{bottom:342.483148px;}
.yf2{bottom:343.984648px;}
.y44{bottom:345.548552px;}
.y74{bottom:346.663481px;}
.y18e{bottom:346.983148px;}
.y1f9{bottom:346.984648px;}
.yb5{bottom:346.986148px;}
.y147{bottom:349.996648px;}
.y164{bottom:350.145771px;}
.y32f{bottom:350.159243px;}
.y2f9{bottom:350.333284px;}
.y10c{bottom:350.536200px;}
.y2a9{bottom:351.152882px;}
.y22{bottom:352.647269px;}
.y230{bottom:352.989148px;}
.y263{bottom:352.999648px;}
.y1b0{bottom:357.481648px;}
.yf1{bottom:358.983148px;}
.y43{bottom:360.547052px;}
.y73{bottom:361.661981px;}
.y18d{bottom:361.981648px;}
.y1f8{bottom:361.983148px;}
.yb4{bottom:361.984648px;}
.y2f8{bottom:363.079534px;}
.y2a8{bottom:363.899132px;}
.y146{bottom:364.995148px;}
.y163{bottom:365.144271px;}
.y32e{bottom:365.157743px;}
.y10b{bottom:365.534700px;}
.y22f{bottom:367.987648px;}
.y262{bottom:367.998148px;}
.y1af{bottom:372.490648px;}
.yf0{bottom:373.981648px;}
.y42{bottom:375.545552px;}
.y2f7{bottom:375.825784px;}
.y2a7{bottom:376.645382px;}
.y72{bottom:376.660481px;}
.y18c{bottom:376.980148px;}
.y1f7{bottom:376.981648px;}
.yb3{bottom:376.983148px;}
.y145{bottom:379.993648px;}
.y162{bottom:380.142771px;}
.y32d{bottom:380.156243px;}
.y10a{bottom:380.533200px;}
.y22e{bottom:382.986148px;}
.y261{bottom:382.996648px;}
.y1ae{bottom:387.489148px;}
.y2f6{bottom:388.572034px;}
.yef{bottom:388.981648px;}
.y2a6{bottom:389.391632px;}
.y41{bottom:390.551552px;}
.y71{bottom:391.669481px;}
.yb2{bottom:391.981648px;}
.y1f6{bottom:391.986148px;}
.y144{bottom:394.992148px;}
.y161{bottom:395.141271px;}
.y32c{bottom:395.154743px;}
.y109{bottom:395.531700px;}
.y21{bottom:397.791269px;}
.y22d{bottom:397.984648px;}
.y260{bottom:397.995148px;}
.y2f5{bottom:401.318284px;}
.y2a5{bottom:402.137882px;}
.y1ad{bottom:402.487648px;}
.yee{bottom:403.993648px;}
.y40{bottom:405.550052px;}
.y70{bottom:406.667981px;}
.yb1{bottom:406.981648px;}
.y1f5{bottom:406.984648px;}
.y143{bottom:409.990648px;}
.y18b{bottom:409.993648px;}
.y160{bottom:410.139771px;}
.y32b{bottom:410.153243px;}
.y108{bottom:410.530200px;}
.y22c{bottom:412.983148px;}
.y25f{bottom:412.993648px;}
.y2f4{bottom:414.064534px;}
.y20{bottom:414.288269px;}
.y2a4{bottom:414.884132px;}
.y1ac{bottom:417.486148px;}
.yed{bottom:418.992148px;}
.y3f{bottom:420.548552px;}
.y6f{bottom:421.666481px;}
.yb0{bottom:421.980148px;}
.y1f4{bottom:421.983148px;}
.y142{bottom:424.989148px;}
.y18a{bottom:424.992148px;}
.y32a{bottom:425.151743px;}
.y107{bottom:425.528700px;}
.y2f3{bottom:426.810784px;}
.y2a3{bottom:427.630382px;}
.y22b{bottom:427.981648px;}
.y25e{bottom:427.992148px;}
.y1f{bottom:430.785269px;}
.y1ab{bottom:432.484648px;}
.yec{bottom:433.990648px;}
.y3e{bottom:435.547052px;}
.y6e{bottom:436.664981px;}
.y1f3{bottom:436.981648px;}
.y2f2{bottom:439.557034px;}
.y141{bottom:439.987648px;}
.y189{bottom:439.990648px;}
.y329{bottom:440.150243px;}
.y2a2{bottom:440.376632px;}
.y106{bottom:440.527200px;}
.y25d{bottom:442.990648px;}
.y22a{bottom:442.992148px;}
.y1e{bottom:447.282269px;}
.y1aa{bottom:447.483148px;}
.yeb{bottom:448.989148px;}
.y3d{bottom:450.545552px;}
.y6d{bottom:451.663481px;}
.y1f2{bottom:451.989148px;}
.y2f1{bottom:452.303284px;}
.y2a1{bottom:453.122882px;}
.y140{bottom:454.986148px;}
.y188{bottom:454.989148px;}
.yaf{bottom:455.005648px;}
.y328{bottom:455.148743px;}
.y105{bottom:455.525700px;}
.y25c{bottom:457.989148px;}
.y229{bottom:457.990648px;}
.y1a9{bottom:462.481648px;}
.y1d{bottom:463.779269px;}
.yea{bottom:463.987648px;}
.y17c{bottom:464.785506px;}
.y2f0{bottom:465.049534px;}
.y3c{bottom:465.545552px;}
.y2a0{bottom:465.869132px;}
.y6c{bottom:466.661981px;}
.y1f1{bottom:466.987648px;}
.y13f{bottom:469.984648px;}
.y187{bottom:469.987648px;}
.yae{bottom:470.004148px;}
.y104{bottom:470.524200px;}
.y25b{bottom:472.987648px;}
.y228{bottom:472.989148px;}
.y1a8{bottom:477.480148px;}
.y327{bottom:477.636743px;}
.y2ef{bottom:477.795784px;}
.y29f{bottom:478.615382px;}
.ye9{bottom:478.986148px;}
.y17b{bottom:479.784006px;}
.y1c{bottom:480.276269px;}
.y3b{bottom:480.548552px;}
.y6b{bottom:481.660481px;}
.y1f0{bottom:481.986148px;}
.y13e{bottom:484.983148px;}
.y186{bottom:484.986148px;}
.yad{bottom:485.002648px;}
.y103{bottom:485.524200px;}
.y25a{bottom:487.986148px;}
.y227{bottom:487.987648px;}
.y2ee{bottom:490.542034px;}
.y29e{bottom:491.361632px;}
.y326{bottom:492.635243px;}
.ye8{bottom:493.984648px;}
.y17a{bottom:494.782506px;}
.y3a{bottom:495.547052px;}
.y6a{bottom:496.667981px;}
.y1b{bottom:496.773269px;}
.y1ef{bottom:496.984648px;}
.y13d{bottom:499.981648px;}
.y185{bottom:499.984648px;}
.yac{bottom:500.001148px;}
.y259{bottom:502.984648px;}
.y226{bottom:502.986148px;}
.y2ed{bottom:503.288284px;}
.y29d{bottom:504.107882px;}
.ye7{bottom:508.983148px;}
.y179{bottom:509.781006px;}
.y1a7{bottom:510.481648px;}
.y39{bottom:510.545552px;}
.y69{bottom:511.666481px;}
.y1ee{bottom:511.983148px;}
.y1a{bottom:513.270269px;}
.y13c{bottom:514.980148px;}
.y184{bottom:514.983148px;}
.yab{bottom:514.999648px;}
.y325{bottom:515.139743px;}
.y2ec{bottom:516.034534px;}
.y29c{bottom:516.854132px;}
.y258{bottom:517.983148px;}
.y225{bottom:517.984648px;}
.ye6{bottom:523.981648px;}
.y1a6{bottom:525.480148px;}
.y38{bottom:525.544052px;}
.y68{bottom:526.664981px;}
.y1ed{bottom:526.981648px;}
.y2eb{bottom:528.780784px;}
.y29b{bottom:529.600382px;}
.y19{bottom:529.767269px;}
.y183{bottom:529.981648px;}
.yaa{bottom:529.998148px;}
.y257{bottom:532.981648px;}
.y224{bottom:532.983148px;}
.y121{bottom:535.777637px;}
.y324{bottom:537.644243px;}
.ye5{bottom:538.983148px;}
.y2ea{bottom:541.527034px;}
.y67{bottom:541.663481px;}
.y1ec{bottom:541.984648px;}
.y29a{bottom:542.346632px;}
.y182{bottom:544.980148px;}
.ya9{bottom:544.996648px;}
.y18{bottom:546.264269px;}
.y223{bottom:547.981648px;}
.y256{bottom:547.987648px;}
.y13b{bottom:548.019194px;}
.y120{bottom:550.776137px;}
.ye4{bottom:553.981648px;}
.y2e9{bottom:554.273284px;}
.y299{bottom:555.092882px;}
.y66{bottom:556.661981px;}
.y1eb{bottom:556.983148px;}
.ya8{bottom:559.995148px;}
.y323{bottom:560.148743px;}
.y17{bottom:562.761269px;}
.y222{bottom:562.984648px;}
.y255{bottom:562.986148px;}
.y13a{bottom:563.017694px;}
.y1ca{bottom:564.222170px;}
.y11f{bottom:565.774637px;}
.y2e8{bottom:567.019534px;}
.y298{bottom:567.839132px;}
.ye3{bottom:568.980148px;}
.y5c{bottom:571.179146px;}
.y65{bottom:571.660481px;}
.y1ea{bottom:571.981648px;}
.ya7{bottom:574.993648px;}
.y322{bottom:575.148743px;}
.y221{bottom:577.983148px;}
.y254{bottom:577.984648px;}
.y181{bottom:577.986148px;}
.y139{bottom:578.016194px;}
.y1c9{bottom:579.220670px;}
.y16{bottom:579.258269px;}
.y2e7{bottom:579.765784px;}
.y297{bottom:580.585382px;}
.y11e{bottom:580.773137px;}
.y5b{bottom:586.177646px;}
.y64{bottom:586.664981px;}
.y1e9{bottom:586.993648px;}
.ya6{bottom:589.992148px;}
.y2e6{bottom:592.512034px;}
.y220{bottom:592.981648px;}
.y253{bottom:592.983148px;}
.y180{bottom:592.984648px;}
.y138{bottom:593.014694px;}
.y296{bottom:593.331632px;}
.y1c8{bottom:594.219170px;}
.y15{bottom:595.755269px;}
.y11d{bottom:595.771637px;}
.y5a{bottom:601.176146px;}
.y63{bottom:601.663481px;}
.ye2{bottom:601.989148px;}
.y1e8{bottom:601.992148px;}
.ya5{bottom:604.990648px;}
.y321{bottom:605.148743px;}
.y2e5{bottom:605.258284px;}
.y295{bottom:606.077882px;}
.y252{bottom:607.981648px;}
.y17f{bottom:607.983148px;}
.y137{bottom:608.013194px;}
.y1c7{bottom:609.217670px;}
.y14{bottom:612.252269px;}
.y59{bottom:616.174646px;}
.y62{bottom:616.661981px;}
.ye1{bottom:616.987648px;}
.y1e7{bottom:616.990648px;}
.y2e4{bottom:618.004534px;}
.y294{bottom:618.824132px;}
.ya4{bottom:619.989148px;}
.y320{bottom:620.148743px;}
.y17e{bottom:622.981648px;}
.y251{bottom:622.984648px;}
.y136{bottom:623.011694px;}
.y1c6{bottom:624.216170px;}
.y13{bottom:628.749269px;}
.y2e3{bottom:630.750784px;}
.y58{bottom:631.173146px;}
.y293{bottom:631.570382px;}
.y61{bottom:631.660481px;}
.ye0{bottom:631.986148px;}
.y1e6{bottom:631.989148px;}
.ya3{bottom:634.987648px;}
.y17d{bottom:637.980148px;}
.y250{bottom:637.983148px;}
.y21f{bottom:637.987648px;}
.y135{bottom:638.010194px;}
.y1c5{bottom:639.214670px;}
.y2e2{bottom:643.497034px;}
.y292{bottom:644.316632px;}
.y12{bottom:645.246269px;}
.y57{bottom:646.171646px;}
.y60{bottom:646.661981px;}
.ydf{bottom:646.984648px;}
.y1e5{bottom:646.987648px;}
.y1cc{bottom:648.813161px;}
.ya2{bottom:649.986148px;}
.y31f{bottom:651.620238px;}
.y24f{bottom:652.981648px;}
.y21e{bottom:652.986148px;}
.y134{bottom:653.008694px;}
.y1c4{bottom:654.213170px;}
.y2e1{bottom:656.243284px;}
.y291{bottom:657.062882px;}
.y5f{bottom:661.660481px;}
.y11{bottom:661.743269px;}
.yde{bottom:661.983148px;}
.y1e4{bottom:661.986148px;}
.y1cb{bottom:663.811661px;}
.ya1{bottom:664.984648px;}
.y31e{bottom:666.618738px;}
.y21d{bottom:667.984648px;}
.y24e{bottom:667.996694px;}
.y133{bottom:668.007194px;}
.y2e0{bottom:668.989534px;}
.y1c3{bottom:669.211670px;}
.y290{bottom:669.809132px;}
.y1a5{bottom:673.959130px;}
.y5e{bottom:676.658981px;}
.ydd{bottom:676.981648px;}
.y1e3{bottom:676.984648px;}
.y10{bottom:678.240269px;}
.ya0{bottom:679.983148px;}
.y31d{bottom:681.617238px;}
.y2df{bottom:681.735784px;}
.y28f{bottom:682.555382px;}
.y21c{bottom:682.983148px;}
.y24d{bottom:682.995194px;}
.y132{bottom:683.005694px;}
.y1a4{bottom:688.957630px;}
.ydc{bottom:691.980148px;}
.y1e2{bottom:691.983148px;}
.y2de{bottom:694.482034px;}
.yf{bottom:694.737269px;}
.y9f{bottom:694.981648px;}
.y28e{bottom:695.301632px;}
.y31c{bottom:696.615738px;}
.y21b{bottom:697.981648px;}
.y24c{bottom:697.993694px;}
.y131{bottom:698.004194px;}
.y1a3{bottom:703.956130px;}
.y1e1{bottom:706.981648px;}
.y2dd{bottom:707.228284px;}
.y28d{bottom:708.047882px;}
.y9e{bottom:709.980148px;}
.ye{bottom:711.234269px;}
.y31b{bottom:711.615738px;}
.y21a{bottom:712.984648px;}
.y24b{bottom:712.992194px;}
.y130{bottom:713.002694px;}
.y1a2{bottom:718.954630px;}
.y2dc{bottom:719.974534px;}
.y28c{bottom:720.794132px;}
.y1e0{bottom:721.981648px;}
.ydb{bottom:724.987694px;}
.yd{bottom:727.731269px;}
.y219{bottom:727.983148px;}
.y24a{bottom:727.990694px;}
.y12f{bottom:728.001194px;}
.y2db{bottom:732.720784px;}
.y28b{bottom:733.540382px;}
.y1a1{bottom:733.953130px;}
.y82{bottom:735.811661px;}
.y1df{bottom:736.983148px;}
.yda{bottom:739.986194px;}
.y31a{bottom:741.630784px;}
.y218{bottom:742.981648px;}
.y9d{bottom:742.984694px;}
.y249{bottom:742.989194px;}
.y12e{bottom:742.999694px;}
.yc{bottom:744.228269px;}
.y2da{bottom:745.467034px;}
.y28a{bottom:746.286632px;}
.y1a0{bottom:748.951630px;}
.y1de{bottom:751.981648px;}
.yd9{bottom:754.984694px;}
.y319{bottom:756.629284px;}
.y9c{bottom:757.983194px;}
.y248{bottom:757.987694px;}
.y217{bottom:757.992194px;}
.y12d{bottom:757.998194px;}
.y2d9{bottom:758.213284px;}
.y289{bottom:759.032882px;}
.yb{bottom:760.725269px;}
.y1dd{bottom:766.981694px;}
.yd8{bottom:769.983194px;}
.y2d8{bottom:770.959534px;}
.y318{bottom:771.627784px;}
.y288{bottom:771.779132px;}
.y9b{bottom:772.981694px;}
.y247{bottom:772.986194px;}
.y216{bottom:772.990694px;}
.y12c{bottom:772.996694px;}
.ya{bottom:777.222269px;}
.y1dc{bottom:781.989194px;}
.y2d7{bottom:783.705784px;}
.y287{bottom:784.525382px;}
.yd7{bottom:784.981694px;}
.y317{bottom:786.626284px;}
.y246{bottom:787.984694px;}
.y9a{bottom:787.987694px;}
.y215{bottom:787.989194px;}
.y12b{bottom:787.995194px;}
.y9{bottom:793.719269px;}
.y2d6{bottom:796.452034px;}
.y1db{bottom:796.987694px;}
.y286{bottom:797.271632px;}
.yd6{bottom:799.980194px;}
.y316{bottom:801.624784px;}
.y178{bottom:801.696181px;}
.y245{bottom:802.983194px;}
.y99{bottom:802.986194px;}
.y214{bottom:802.987694px;}
.y12a{bottom:802.993694px;}
.y2d5{bottom:809.198284px;}
.y285{bottom:810.017882px;}
.y1da{bottom:811.986194px;}
.y315{bottom:816.623284px;}
.y177{bottom:816.694681px;}
.y244{bottom:817.981694px;}
.y98{bottom:817.984694px;}
.y213{bottom:817.986194px;}
.y129{bottom:817.992194px;}
.y2d4{bottom:821.944534px;}
.y284{bottom:822.764132px;}
.y8{bottom:823.719269px;}
.y1d9{bottom:826.984694px;}
.y314{bottom:831.621784px;}
.y176{bottom:831.693181px;}
.yd5{bottom:832.981694px;}
.y97{bottom:832.983194px;}
.y212{bottom:832.984694px;}
.y128{bottom:832.990694px;}
.y2d3{bottom:834.690784px;}
.y283{bottom:835.510382px;}
.y1d8{bottom:841.983194px;}
.y313{bottom:846.620284px;}
.y175{bottom:846.691681px;}
.y2d2{bottom:847.437034px;}
.y96{bottom:847.981694px;}
.y211{bottom:847.983194px;}
.y127{bottom:847.989194px;}
.y282{bottom:848.256632px;}
.y7{bottom:856.707269px;}
.y1d7{bottom:856.981694px;}
.y2d1{bottom:860.183284px;}
.y281{bottom:861.002882px;}
.y312{bottom:861.618784px;}
.y210{bottom:862.981694px;}
.y126{bottom:862.987694px;}
.yd4{bottom:862.989194px;}
.y95{bottom:863.002694px;}
.y1d6{bottom:871.980194px;}
.y2d0{bottom:872.929534px;}
.y280{bottom:873.749132px;}
.y311{bottom:876.617284px;}
.y20f{bottom:877.981694px;}
.y125{bottom:877.986194px;}
.yd3{bottom:877.987694px;}
.y94{bottom:878.001194px;}
.y2cf{bottom:885.675784px;}
.y27f{bottom:886.495382px;}
.y1d5{bottom:886.980194px;}
.y310{bottom:891.615784px;}
.y124{bottom:892.984694px;}
.yd2{bottom:892.986194px;}
.y93{bottom:892.999694px;}
.y2ce{bottom:898.422034px;}
.y27e{bottom:899.241632px;}
.y6{bottom:901.713269px;}
.y30f{bottom:906.615784px;}
.y123{bottom:907.983194px;}
.yd1{bottom:907.984694px;}
.y92{bottom:907.998194px;}
.y2cd{bottom:911.168284px;}
.y27d{bottom:911.987882px;}
.y1d4{bottom:919.987694px;}
.y122{bottom:922.981694px;}
.yd0{bottom:922.983194px;}
.y91{bottom:922.996694px;}
.y2cc{bottom:923.914534px;}
.y27c{bottom:924.734132px;}
.y1d3{bottom:934.986194px;}
.y2cb{bottom:936.660784px;}
.y27b{bottom:937.480382px;}
.ycf{bottom:937.981694px;}
.y20e{bottom:937.989194px;}
.y90{bottom:937.995194px;}
.y5{bottom:946.719269px;}
.y2ca{bottom:949.407034px;}
.y1d2{bottom:949.984694px;}
.y27a{bottom:950.226632px;}
.yce{bottom:952.981694px;}
.y20d{bottom:952.987694px;}
.y8f{bottom:952.993694px;}
.y30{bottom:954.366760px;}
.y2c9{bottom:962.153284px;}
.y279{bottom:962.972882px;}
.y1d1{bottom:964.983194px;}
.ycd{bottom:967.981694px;}
.y20c{bottom:967.986194px;}
.y8e{bottom:967.992194px;}
.y2c8{bottom:974.899534px;}
.y278{bottom:975.719132px;}
.y1d0{bottom:979.981694px;}
.ycc{bottom:982.984694px;}
.y8d{bottom:982.990694px;}
.y2c7{bottom:987.645784px;}
.y277{bottom:988.465382px;}
.y1cf{bottom:994.980194px;}
.ycb{bottom:997.983194px;}
.y8c{bottom:997.989194px;}
.y2c6{bottom:1000.392034px;}
.y276{bottom:1001.211632px;}
.yca{bottom:1012.981694px;}
.y8b{bottom:1012.987694px;}
.y2c5{bottom:1013.138284px;}
.y275{bottom:1013.957882px;}
.y2c4{bottom:1025.884534px;}
.y274{bottom:1026.704132px;}
.yc9{bottom:1027.984694px;}
.y8a{bottom:1027.986194px;}
.y2c3{bottom:1038.630784px;}
.y273{bottom:1039.454132px;}
.yc8{bottom:1042.983194px;}
.y89{bottom:1042.984694px;}
.y2c2{bottom:1051.377034px;}
.yc7{bottom:1057.981694px;}
.y88{bottom:1057.983194px;}
.y2c1{bottom:1064.123284px;}
.y87{bottom:1072.981694px;}
.y2c0{bottom:1076.869534px;}
.y86{bottom:1087.980194px;}
.y272{bottom:1088.954132px;}
.y2bf{bottom:1089.615784px;}
.y5d{bottom:1140.640320px;}
.y85{bottom:1140.746521px;}
.y37{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.he{height:23.842749px;}
.h2{height:34.523438px;}
.h2d{height:35.411133px;}
.h9{height:38.838867px;}
.hf{height:41.668744px;}
.h30{height:44.505000px;}
.h2e{height:45.090000px;}
.h3{height:45.679688px;}
.h2f{height:46.080000px;}
.h1b{height:47.469727px;}
.h10{height:48.510668px;}
.h7{height:49.183594px;}
.h11{height:49.373529px;}
.h31{height:50.439000px;}
.h8{height:51.416016px;}
.ha{height:53.406000px;}
.h28{height:53.523907px;}
.h16{height:53.529886px;}
.h2c{height:53.547680px;}
.h24{height:53.553680px;}
.h23{height:53.559863px;}
.h2a{height:53.565680px;}
.h2b{height:53.565863px;}
.h25{height:53.571863px;}
.h21{height:53.577680px;}
.h27{height:53.577863px;}
.h1a{height:53.578046px;}
.h14{height:53.583863px;}
.h15{height:53.589863px;}
.h20{height:53.589907px;}
.h19{height:53.590046px;}
.h29{height:53.595680px;}
.h12{height:53.595863px;}
.hc{height:53.601863px;}
.h18{height:53.602046px;}
.h26{height:53.607680px;}
.h13{height:53.607863px;}
.h1c{height:53.613863px;}
.h1f{height:54.030000px;}
.h22{height:54.096000px;}
.h1e{height:54.102000px;}
.hb{height:54.108000px;}
.h17{height:55.296000px;}
.h4{height:57.099609px;}
.h1d{height:57.128906px;}
.hd{height:77.677734px;}
.h5{height:112.201172px;}
.h6{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.865172px;}
.xb{left:254.108253px;}
.xc{left:302.498840px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.xa{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v5{vertical-align:-16.799805pt;}
.v4{vertical-align:-15.866662pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.506764pt;}
.v2{vertical-align:18.666667pt;}
.ls81{letter-spacing:-3.520000pt;}
.ls7e{letter-spacing:-2.800000pt;}
.ls70{letter-spacing:-1.720000pt;}
.ls53{letter-spacing:-1.152000pt;}
.ls5f{letter-spacing:-0.912000pt;}
.ls52{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.816000pt;}
.ls80{letter-spacing:-0.800000pt;}
.ls28{letter-spacing:-0.768000pt;}
.ls73{letter-spacing:-0.720000pt;}
.ls78{letter-spacing:-0.680000pt;}
.ls3a{letter-spacing:-0.624000pt;}
.ls6c{letter-spacing:-0.600000pt;}
.ls5c{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls77{letter-spacing:-0.520000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls76{letter-spacing:-0.440000pt;}
.ls51{letter-spacing:-0.432000pt;}
.ls79{letter-spacing:-0.400000pt;}
.ls6e{letter-spacing:-0.360000pt;}
.ls50{letter-spacing:-0.336000pt;}
.ls6f{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.288000pt;}
.ls74{letter-spacing:-0.280000pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls72{letter-spacing:-0.200000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls75{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.156000pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls6d{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls6b{letter-spacing:-0.080000pt;}
.ls59{letter-spacing:-0.062400pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls71{letter-spacing:-0.040000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012405pt;}
.lse{letter-spacing:0.016025pt;}
.ls25{letter-spacing:0.024471pt;}
.ls26{letter-spacing:0.031200pt;}
.ls64{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.048000pt;}
.ls87{letter-spacing:0.057600pt;}
.ls3b{letter-spacing:0.062400pt;}
.ls68{letter-spacing:0.080000pt;}
.ls3e{letter-spacing:0.081600pt;}
.ls3c{letter-spacing:0.086389pt;}
.ls9{letter-spacing:0.092792pt;}
.ls39{letter-spacing:0.093600pt;}
.ls54{letter-spacing:0.095968pt;}
.ls3f{letter-spacing:0.095979pt;}
.ls7{letter-spacing:0.096000pt;}
.ls7d{letter-spacing:0.100000pt;}
.ls55{letter-spacing:0.110400pt;}
.lsb{letter-spacing:0.112634pt;}
.ls66{letter-spacing:0.120000pt;}
.ls8{letter-spacing:0.124800pt;}
.ls4{letter-spacing:0.129600pt;}
.ls1b{letter-spacing:0.140400pt;}
.ls2a{letter-spacing:0.141187pt;}
.ls32{letter-spacing:0.141350pt;}
.ls27{letter-spacing:0.144000pt;}
.ls45{letter-spacing:0.153595pt;}
.ls56{letter-spacing:0.153600pt;}
.lsa{letter-spacing:0.156000pt;}
.ls31{letter-spacing:0.156277pt;}
.ls62{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.163185pt;}
.ls2b{letter-spacing:0.170271pt;}
.ls4e{letter-spacing:0.172800pt;}
.ls63{letter-spacing:0.180000pt;}
.ls1e{letter-spacing:0.187200pt;}
.ls3{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.198227pt;}
.ls29{letter-spacing:0.199463pt;}
.ls65{letter-spacing:0.200000pt;}
.ls1d{letter-spacing:0.216000pt;}
.ls30{letter-spacing:0.218400pt;}
.ls86{letter-spacing:0.220000pt;}
.ls2c{letter-spacing:0.225571pt;}
.ls60{letter-spacing:0.234667pt;}
.ls35{letter-spacing:0.236726pt;}
.lsd{letter-spacing:0.240000pt;}
.ls33{letter-spacing:0.241604pt;}
.ls20{letter-spacing:0.249600pt;}
.ls40{letter-spacing:0.254400pt;}
.ls41{letter-spacing:0.278400pt;}
.ls5a{letter-spacing:0.280800pt;}
.ls12{letter-spacing:0.288000pt;}
.ls84{letter-spacing:0.300000pt;}
.ls19{letter-spacing:0.312000pt;}
.ls6a{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.326400pt;}
.ls3d{letter-spacing:0.335966pt;}
.ls24{letter-spacing:0.336000pt;}
.ls58{letter-spacing:0.343200pt;}
.ls61{letter-spacing:0.360000pt;}
.ls5e{letter-spacing:0.374400pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.398400pt;}
.ls67{letter-spacing:0.400000pt;}
.ls5b{letter-spacing:0.405600pt;}
.ls44{letter-spacing:0.422400pt;}
.ls4d{letter-spacing:0.427200pt;}
.ls38{letter-spacing:0.432000pt;}
.ls5d{letter-spacing:0.436800pt;}
.ls4f{letter-spacing:0.465590pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls36{letter-spacing:0.502512pt;}
.ls7a{letter-spacing:0.520000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls82{letter-spacing:0.560000pt;}
.ls4a{letter-spacing:0.561600pt;}
.ls48{letter-spacing:0.566391pt;}
.ls47{letter-spacing:0.566400pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls49{letter-spacing:0.623986pt;}
.ls46{letter-spacing:0.624000pt;}
.ls6{letter-spacing:0.672000pt;}
.ls7f{letter-spacing:0.680000pt;}
.ls4c{letter-spacing:0.705600pt;}
.ls7c{letter-spacing:0.720000pt;}
.ls57{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.816000pt;}
.ls22{letter-spacing:0.864000pt;}
.ls2f{letter-spacing:0.912000pt;}
.ls85{letter-spacing:1.068000pt;}
.ls2d{letter-spacing:1.104000pt;}
.ls83{letter-spacing:1.200000pt;}
.ls34{letter-spacing:1.267200pt;}
.ls69{letter-spacing:1.720000pt;}
.ls0{letter-spacing:2.666667pt;}
.ls7b{letter-spacing:2.960000pt;}
.ws1{word-spacing:-13.333333pt;}
.wsa6{word-spacing:-12.320000pt;}
.ws70{word-spacing:-12.085333pt;}
.ws40{word-spacing:-11.904000pt;}
.ws79{word-spacing:-11.616000pt;}
.ws7b{word-spacing:-11.424000pt;}
.ws1b{word-spacing:-11.376000pt;}
.ws78{word-spacing:-11.280000pt;}
.ws3b{word-spacing:-11.232000pt;}
.ws25{word-spacing:-11.184000pt;}
.ws19{word-spacing:-11.136000pt;}
.ws96{word-spacing:-11.112000pt;}
.ws57{word-spacing:-11.088000pt;}
.ws42{word-spacing:-11.040000pt;}
.ws3e{word-spacing:-10.992000pt;}
.wsa5{word-spacing:-10.944000pt;}
.ws3d{word-spacing:-10.896000pt;}
.ws76{word-spacing:-10.848000pt;}
.ws3f{word-spacing:-10.800000pt;}
.ws29{word-spacing:-10.752000pt;}
.ws77{word-spacing:-10.704000pt;}
.ws3a{word-spacing:-10.656000pt;}
.ws93{word-spacing:-10.608000pt;}
.ws7a{word-spacing:-10.560000pt;}
.ws84{word-spacing:-10.416000pt;}
.ws5b{word-spacing:-10.368000pt;}
.ws85{word-spacing:-10.128000pt;}
.wsac{word-spacing:-9.400000pt;}
.wsaa{word-spacing:-9.340000pt;}
.wsb3{word-spacing:-9.280000pt;}
.wsa9{word-spacing:-9.260000pt;}
.wsc2{word-spacing:-9.240000pt;}
.wsa7{word-spacing:-9.200000pt;}
.wsab{word-spacing:-9.000000pt;}
.wse6{word-spacing:-8.980000pt;}
.wsd2{word-spacing:-8.840000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws9d{word-spacing:-7.519200pt;}
.ws9f{word-spacing:-7.456800pt;}
.wsa8{word-spacing:-7.440000pt;}
.ws97{word-spacing:-7.425600pt;}
.ws15{word-spacing:-7.394400pt;}
.ws9e{word-spacing:-7.363200pt;}
.ws16{word-spacing:-7.332000pt;}
.ws41{word-spacing:-7.300800pt;}
.ws17{word-spacing:-7.269600pt;}
.ws3{word-spacing:-7.238400pt;}
.ws58{word-spacing:-7.207200pt;}
.ws5a{word-spacing:-7.176000pt;}
.ws5c{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws2a{word-spacing:-7.113600pt;}
.ws3c{word-spacing:-7.082400pt;}
.ws98{word-spacing:-7.020000pt;}
.ws59{word-spacing:-6.926400pt;}
.ws4{word-spacing:-5.893333pt;}
.wsd8{word-spacing:-5.560000pt;}
.wse1{word-spacing:-5.520000pt;}
.wse7{word-spacing:-5.480000pt;}
.wse5{word-spacing:-5.400000pt;}
.wsb9{word-spacing:-5.360000pt;}
.wsbe{word-spacing:-5.320000pt;}
.wsce{word-spacing:-5.280000pt;}
.wsc8{word-spacing:-5.240000pt;}
.wscc{word-spacing:-5.160000pt;}
.wsdd{word-spacing:-5.120000pt;}
.wsd4{word-spacing:-5.080000pt;}
.wsc3{word-spacing:-4.960000pt;}
.ws39{word-spacing:-4.896000pt;}
.ws8f{word-spacing:-2.112000pt;}
.ws6e{word-spacing:-1.968000pt;}
.ws4c{word-spacing:-1.680000pt;}
.ws6a{word-spacing:-1.632000pt;}
.ws38{word-spacing:-1.536000pt;}
.ws94{word-spacing:-1.488000pt;}
.ws8e{word-spacing:-1.440000pt;}
.ws66{word-spacing:-1.392000pt;}
.ws68{word-spacing:-1.344000pt;}
.ws81{word-spacing:-1.296000pt;}
.ws60{word-spacing:-1.248000pt;}
.ws6c{word-spacing:-1.152000pt;}
.wsb{word-spacing:-1.104000pt;}
.ws9{word-spacing:-1.056000pt;}
.wsa{word-spacing:-1.008000pt;}
.ws1e{word-spacing:-0.960000pt;}
.wsae{word-spacing:-0.920000pt;}
.ws12{word-spacing:-0.912000pt;}
.wsc4{word-spacing:-0.880000pt;}
.ws56{word-spacing:-0.864000pt;}
.wsd3{word-spacing:-0.840000pt;}
.ws2b{word-spacing:-0.816000pt;}
.ws11{word-spacing:-0.768000pt;}
.wsc1{word-spacing:-0.760000pt;}
.ws74{word-spacing:-0.746667pt;}
.ws69{word-spacing:-0.720000pt;}
.ws86{word-spacing:-0.693333pt;}
.wsdb{word-spacing:-0.680000pt;}
.ws72{word-spacing:-0.672000pt;}
.ws71{word-spacing:-0.640000pt;}
.ws43{word-spacing:-0.624000pt;}
.wscb{word-spacing:-0.600000pt;}
.wsc{word-spacing:-0.576000pt;}
.wscf{word-spacing:-0.560000pt;}
.ws21{word-spacing:-0.528000pt;}
.wsca{word-spacing:-0.520000pt;}
.ws7{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.432000pt;}
.wsb2{word-spacing:-0.400000pt;}
.ws7e{word-spacing:-0.384000pt;}
.wsa2{word-spacing:-0.374400pt;}
.wsc9{word-spacing:-0.360000pt;}
.ws10{word-spacing:-0.336000pt;}
.wsaf{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.312000pt;}
.wsa4{word-spacing:-0.288000pt;}
.wsd7{word-spacing:-0.280000pt;}
.wsa0{word-spacing:-0.249600pt;}
.ws20{word-spacing:-0.240000pt;}
.wse8{word-spacing:-0.234667pt;}
.wsb8{word-spacing:-0.200000pt;}
.ws6{word-spacing:-0.192000pt;}
.ws26{word-spacing:-0.187200pt;}
.wsb0{word-spacing:-0.160000pt;}
.ws2d{word-spacing:-0.144000pt;}
.wsa3{word-spacing:-0.124800pt;}
.wsc7{word-spacing:-0.120000pt;}
.ws5d{word-spacing:-0.096000pt;}
.wsd1{word-spacing:-0.080000pt;}
.ws9a{word-spacing:-0.062400pt;}
.ws45{word-spacing:-0.048000pt;}
.wsc5{word-spacing:-0.040000pt;}
.ws30{word-spacing:-0.031200pt;}
.ws5{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.040000pt;}
.wsa1{word-spacing:0.048000pt;}
.ws9b{word-spacing:0.062400pt;}
.wsb4{word-spacing:0.080000pt;}
.ws18{word-spacing:0.096000pt;}
.wsf{word-spacing:0.144000pt;}
.wsba{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.192000pt;}
.wsbf{word-spacing:0.200000pt;}
.ws31{word-spacing:0.240000pt;}
.wsc6{word-spacing:0.280000pt;}
.ws53{word-spacing:0.288000pt;}
.wse4{word-spacing:0.320000pt;}
.ws13{word-spacing:0.336000pt;}
.wsd0{word-spacing:0.360000pt;}
.ws2e{word-spacing:0.384000pt;}
.wsde{word-spacing:0.400000pt;}
.ws89{word-spacing:0.432000pt;}
.wscd{word-spacing:0.440000pt;}
.ws73{word-spacing:0.480000pt;}
.wsd5{word-spacing:0.520000pt;}
.ws1f{word-spacing:0.528000pt;}
.wsdc{word-spacing:0.560000pt;}
.ws8d{word-spacing:0.576000pt;}
.wsbc{word-spacing:0.600000pt;}
.ws22{word-spacing:0.624000pt;}
.ws2c{word-spacing:0.672000pt;}
.wsbb{word-spacing:0.680000pt;}
.wsc0{word-spacing:0.720000pt;}
.ws8b{word-spacing:0.768000pt;}
.ws28{word-spacing:0.816000pt;}
.ws44{word-spacing:0.864000pt;}
.wse3{word-spacing:0.880000pt;}
.ws8c{word-spacing:0.912000pt;}
.wsad{word-spacing:0.920000pt;}
.ws63{word-spacing:0.960000pt;}
.ws61{word-spacing:1.008000pt;}
.wse2{word-spacing:1.040000pt;}
.ws1d{word-spacing:1.056000pt;}
.wsb1{word-spacing:1.080000pt;}
.wsd{word-spacing:1.104000pt;}
.wsb5{word-spacing:1.120000pt;}
.ws1a{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.200000pt;}
.ws35{word-spacing:1.248000pt;}
.ws52{word-spacing:1.296000pt;}
.ws9c{word-spacing:1.344000pt;}
.ws62{word-spacing:1.440000pt;}
.ws91{word-spacing:1.488000pt;}
.ws90{word-spacing:1.493333pt;}
.ws47{word-spacing:1.536000pt;}
.wsdf{word-spacing:1.560000pt;}
.ws32{word-spacing:1.584000pt;}
.ws8a{word-spacing:1.632000pt;}
.wsb6{word-spacing:1.640000pt;}
.ws7c{word-spacing:1.680000pt;}
.ws8{word-spacing:1.728000pt;}
.wsb7{word-spacing:1.760000pt;}
.ws33{word-spacing:1.776000pt;}
.wsec{word-spacing:1.824000pt;}
.wse{word-spacing:1.872000pt;}
.ws87{word-spacing:1.920000pt;}
.ws34{word-spacing:1.968000pt;}
.ws88{word-spacing:2.112000pt;}
.ws5e{word-spacing:2.208000pt;}
.wsd9{word-spacing:2.240000pt;}
.ws92{word-spacing:2.256000pt;}
.ws4b{word-spacing:2.352000pt;}
.ws7d{word-spacing:2.400000pt;}
.ws23{word-spacing:2.544000pt;}
.ws24{word-spacing:2.592000pt;}
.wsda{word-spacing:2.680000pt;}
.wse9{word-spacing:2.688000pt;}
.ws14{word-spacing:2.720000pt;}
.ws99{word-spacing:2.736000pt;}
.ws49{word-spacing:2.784000pt;}
.wsd6{word-spacing:2.800000pt;}
.ws67{word-spacing:2.928000pt;}
.ws51{word-spacing:2.976000pt;}
.ws36{word-spacing:3.072000pt;}
.ws37{word-spacing:3.120000pt;}
.ws83{word-spacing:3.168000pt;}
.ws82{word-spacing:3.216000pt;}
.wse0{word-spacing:3.240000pt;}
.ws48{word-spacing:3.600000pt;}
.ws4e{word-spacing:3.648000pt;}
.ws95{word-spacing:3.840000pt;}
.ws54{word-spacing:3.888000pt;}
.ws75{word-spacing:4.080000pt;}
.ws64{word-spacing:4.128000pt;}
.ws50{word-spacing:4.320000pt;}
.ws55{word-spacing:4.464000pt;}
.ws4a{word-spacing:4.800000pt;}
.ws6f{word-spacing:4.848000pt;}
.wsed{word-spacing:5.040000pt;}
.ws46{word-spacing:5.280000pt;}
.ws4f{word-spacing:5.568000pt;}
.wsea{word-spacing:5.760000pt;}
.wseb{word-spacing:6.000000pt;}
.ws6b{word-spacing:7.152000pt;}
.ws65{word-spacing:7.392000pt;}
.ws5f{word-spacing:8.928000pt;}
.ws80{word-spacing:9.840000pt;}
.ws7f{word-spacing:9.920000pt;}
.ws27{word-spacing:13.584000pt;}
._e{margin-left:-18.624006pt;}
._12{margin-left:-16.534383pt;}
._16{margin-left:-15.206435pt;}
._14{margin-left:-14.234704pt;}
._8{margin-left:-11.742415pt;}
._15{margin-left:-10.518933pt;}
._6{margin-left:-9.391467pt;}
._17{margin-left:-7.913033pt;}
._2{margin-left:-6.240000pt;}
._3{margin-left:-4.588833pt;}
._4{margin-left:-3.370667pt;}
._0{margin-left:-1.668267pt;}
._5{width:0.920000pt;}
._7{width:1.908267pt;}
._b{width:2.961066pt;}
._10{width:3.933957pt;}
._11{width:5.242667pt;}
._a{width:6.269756pt;}
._9{width:7.833444pt;}
._1c{width:8.760000pt;}
._13{width:9.795200pt;}
._18{width:10.711449pt;}
._c{width:11.780860pt;}
._d{width:13.044267pt;}
._1a{width:15.080000pt;}
._1b{width:16.040000pt;}
._19{width:41.682150pt;}
._f{width:42.964749pt;}
._1{width:278.446933pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.843733pt;}
.y36{bottom:2.843867pt;}
.yc6{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y35{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y84{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y102{bottom:60.434799pt;}
.y243{bottom:60.441465pt;}
.y34{bottom:60.477867pt;}
.y1ce{bottom:61.083202pt;}
.y15c{bottom:61.764132pt;}
.y1c2{bottom:61.777465pt;}
.y56{bottom:67.168935pt;}
.y20b{bottom:68.429465pt;}
.y30e{bottom:73.477363pt;}
.y101{bottom:73.766799pt;}
.y242{bottom:73.773465pt;}
.y33{bottom:73.811200pt;}
.y2be{bottom:74.205895pt;}
.y1cd{bottom:74.415202pt;}
.y15b{bottom:75.096132pt;}
.y1c1{bottom:75.109465pt;}
.y55{bottom:80.500935pt;}
.y20a{bottom:81.761465pt;}
.y19f{bottom:81.785465pt;}
.y11c{bottom:82.247733pt;}
.y158{bottom:84.464132pt;}
.y30d{bottom:84.807363pt;}
.y2bd{bottom:85.535895pt;}
.y81{bottom:86.810670pt;}
.y100{bottom:87.098799pt;}
.y241{bottom:87.105465pt;}
.y32{bottom:87.144533pt;}
.y15a{bottom:88.428132pt;}
.y1c0{bottom:88.441465pt;}
.y54{bottom:93.832935pt;}
.yc5{bottom:95.096132pt;}
.y209{bottom:95.113465pt;}
.y19e{bottom:95.117465pt;}
.y11b{bottom:95.579733pt;}
.y30c{bottom:96.137363pt;}
.y2bc{bottom:96.865895pt;}
.y157{bottom:97.796132pt;}
.y174{bottom:97.928685pt;}
.y80{bottom:100.142670pt;}
.yff{bottom:100.430799pt;}
.y240{bottom:100.437465pt;}
.y159{bottom:101.760132pt;}
.y1bf{bottom:101.773465pt;}
.y31{bottom:104.439199pt;}
.y53{bottom:107.164935pt;}
.y30b{bottom:107.467363pt;}
.y2bb{bottom:108.195895pt;}
.yc4{bottom:108.428132pt;}
.y208{bottom:108.445465pt;}
.y19d{bottom:108.449465pt;}
.y11a{bottom:108.911733pt;}
.y271{bottom:111.108132pt;}
.y156{bottom:111.128132pt;}
.y173{bottom:111.260685pt;}
.y7f{bottom:113.474670pt;}
.yfe{bottom:113.762799pt;}
.y23f{bottom:113.769465pt;}
.y1be{bottom:115.105465pt;}
.y30a{bottom:118.797363pt;}
.y2ba{bottom:119.525895pt;}
.y52{bottom:120.496935pt;}
.yc3{bottom:121.765465pt;}
.y207{bottom:121.777465pt;}
.y19c{bottom:121.781465pt;}
.y119{bottom:122.243733pt;}
.y270{bottom:124.440132pt;}
.y155{bottom:124.460132pt;}
.y172{bottom:124.592685pt;}
.yfd{bottom:127.094799pt;}
.y23e{bottom:127.101465pt;}
.y1bd{bottom:128.437465pt;}
.y309{bottom:130.127363pt;}
.y2b9{bottom:130.855895pt;}
.y51{bottom:133.828935pt;}
.yc2{bottom:135.097465pt;}
.y206{bottom:135.109465pt;}
.y19b{bottom:135.113465pt;}
.y26f{bottom:137.772132pt;}
.y154{bottom:137.792132pt;}
.y171{bottom:137.924685pt;}
.y2f{bottom:140.063070pt;}
.yfc{bottom:140.426799pt;}
.y23d{bottom:140.433465pt;}
.y308{bottom:141.457363pt;}
.y1bc{bottom:141.769465pt;}
.y2b8{bottom:142.185895pt;}
.y7e{bottom:142.816004pt;}
.y50{bottom:147.160935pt;}
.yc1{bottom:148.429465pt;}
.y205{bottom:148.441465pt;}
.y19a{bottom:148.445465pt;}
.y26e{bottom:151.104132pt;}
.y153{bottom:151.124132pt;}
.y170{bottom:151.256685pt;}
.y118{bottom:151.603733pt;}
.y307{bottom:152.787363pt;}
.y2e{bottom:153.404271pt;}
.y2b7{bottom:153.515895pt;}
.y23c{bottom:153.765465pt;}
.y1bb{bottom:155.101465pt;}
.y7d{bottom:156.148004pt;}
.y4f{bottom:160.492935pt;}
.yc0{bottom:161.761465pt;}
.y204{bottom:161.773465pt;}
.y199{bottom:161.777465pt;}
.y306{bottom:164.117363pt;}
.y26d{bottom:164.436132pt;}
.y152{bottom:164.456132pt;}
.y15f{bottom:164.510662pt;}
.y16f{bottom:164.588685pt;}
.y2b6{bottom:164.845895pt;}
.y117{bottom:164.935733pt;}
.y2d{bottom:166.736271pt;}
.y23b{bottom:167.097465pt;}
.y1ba{bottom:168.433465pt;}
.y7c{bottom:169.480004pt;}
.yfb{bottom:169.761465pt;}
.y4e{bottom:173.824935pt;}
.ybf{bottom:175.094799pt;}
.y203{bottom:175.105465pt;}
.y198{bottom:175.109465pt;}
.y305{bottom:175.447363pt;}
.y2b5{bottom:176.175895pt;}
.y26c{bottom:177.768132pt;}
.y151{bottom:177.788132pt;}
.y15e{bottom:177.842662pt;}
.y16e{bottom:177.920685pt;}
.y116{bottom:178.267733pt;}
.y2c{bottom:180.068271pt;}
.y23a{bottom:180.429465pt;}
.y1b9{bottom:181.765465pt;}
.y7b{bottom:182.812004pt;}
.yfa{bottom:183.097465pt;}
.y304{bottom:186.777363pt;}
.y4d{bottom:187.156935pt;}
.y2b4{bottom:187.505895pt;}
.y202{bottom:188.437465pt;}
.y197{bottom:188.441465pt;}
.ybe{bottom:188.444132pt;}
.y26b{bottom:191.100132pt;}
.y150{bottom:191.120132pt;}
.y15d{bottom:191.174662pt;}
.y16d{bottom:191.252685pt;}
.y115{bottom:191.599733pt;}
.y2b{bottom:193.400271pt;}
.y239{bottom:193.761465pt;}
.y1b8{bottom:195.097465pt;}
.y7a{bottom:196.144004pt;}
.yf9{bottom:196.429465pt;}
.y303{bottom:198.107363pt;}
.y2b3{bottom:198.835895pt;}
.y4c{bottom:200.488935pt;}
.y201{bottom:201.769465pt;}
.y196{bottom:201.773465pt;}
.ybd{bottom:201.776132pt;}
.y26a{bottom:204.432132pt;}
.y14f{bottom:204.452132pt;}
.y16c{bottom:204.584685pt;}
.y114{bottom:204.931733pt;}
.y2a{bottom:206.732271pt;}
.y238{bottom:207.096132pt;}
.y1b7{bottom:208.429465pt;}
.y302{bottom:209.437363pt;}
.y79{bottom:209.476004pt;}
.yf8{bottom:209.761465pt;}
.y2b2{bottom:210.165895pt;}
.y4b{bottom:213.820935pt;}
.y200{bottom:215.101465pt;}
.y195{bottom:215.105465pt;}
.ybc{bottom:215.108132pt;}
.y269{bottom:217.764132pt;}
.y14e{bottom:217.784132pt;}
.y16b{bottom:217.916685pt;}
.y113{bottom:218.263733pt;}
.y29{bottom:220.064271pt;}
.y237{bottom:220.428132pt;}
.y301{bottom:220.767363pt;}
.y2b1{bottom:221.495895pt;}
.y1b6{bottom:221.761465pt;}
.y78{bottom:222.808004pt;}
.yf7{bottom:223.093465pt;}
.y4a{bottom:227.152935pt;}
.y1ff{bottom:228.433465pt;}
.y194{bottom:228.437465pt;}
.ybb{bottom:228.440132pt;}
.y268{bottom:231.096132pt;}
.y14d{bottom:231.116132pt;}
.y16a{bottom:231.248685pt;}
.y112{bottom:231.595733pt;}
.y300{bottom:232.097363pt;}
.y2b0{bottom:232.825895pt;}
.y28{bottom:233.396271pt;}
.y236{bottom:233.776132pt;}
.y1b5{bottom:235.093465pt;}
.y49{bottom:240.484935pt;}
.y1fe{bottom:241.765465pt;}
.y193{bottom:241.769465pt;}
.yba{bottom:241.772132pt;}
.y2ff{bottom:243.427363pt;}
.y2af{bottom:244.155895pt;}
.y267{bottom:244.428132pt;}
.y14c{bottom:244.448132pt;}
.y169{bottom:244.580685pt;}
.y111{bottom:244.927733pt;}
.y27{bottom:246.730938pt;}
.y235{bottom:247.108132pt;}
.y77{bottom:252.142670pt;}
.yf6{bottom:252.436132pt;}
.y48{bottom:253.819602pt;}
.y2fe{bottom:254.757363pt;}
.y1fd{bottom:255.097465pt;}
.y192{bottom:255.101465pt;}
.yb9{bottom:255.104132pt;}
.y2ae{bottom:255.485895pt;}
.y266{bottom:257.760132pt;}
.y14b{bottom:257.780132pt;}
.y168{bottom:257.912685pt;}
.y110{bottom:258.259733pt;}
.y26{bottom:260.062938pt;}
.y234{bottom:260.440132pt;}
.y1b4{bottom:264.433465pt;}
.y76{bottom:265.474670pt;}
.yf5{bottom:265.768132pt;}
.y2fd{bottom:266.087363pt;}
.y2ad{bottom:266.815895pt;}
.y47{bottom:267.151602pt;}
.y1fc{bottom:268.429465pt;}
.y191{bottom:268.433465pt;}
.yb8{bottom:268.436132pt;}
.y265{bottom:271.093465pt;}
.y14a{bottom:271.112132pt;}
.y167{bottom:271.244685pt;}
.y10f{bottom:271.591733pt;}
.y25{bottom:273.468239pt;}
.y233{bottom:273.772132pt;}
.y2fc{bottom:277.417363pt;}
.y1b3{bottom:277.765465pt;}
.y2ac{bottom:278.145895pt;}
.y75{bottom:278.808004pt;}
.yf4{bottom:279.100132pt;}
.y46{bottom:280.484935pt;}
.y1fb{bottom:281.761465pt;}
.y190{bottom:281.765465pt;}
.yb7{bottom:281.768132pt;}
.y149{bottom:284.444132pt;}
.y166{bottom:284.576685pt;}
.y330{bottom:284.588662pt;}
.y10e{bottom:284.923733pt;}
.y24{bottom:286.800239pt;}
.y232{bottom:287.104132pt;}
.y2fb{bottom:288.747363pt;}
.y2ab{bottom:289.475895pt;}
.y1b2{bottom:291.097465pt;}
.yf3{bottom:292.432132pt;}
.y45{bottom:293.822269pt;}
.y18f{bottom:295.097465pt;}
.y1fa{bottom:295.098799pt;}
.yb6{bottom:295.100132pt;}
.y148{bottom:297.776132pt;}
.y165{bottom:297.908685pt;}
.y10d{bottom:298.255733pt;}
.y2fa{bottom:300.077363pt;}
.y23{bottom:300.132239pt;}
.y231{bottom:300.436132pt;}
.y264{bottom:300.445465pt;}
.y2aa{bottom:300.805895pt;}
.y1b1{bottom:304.429465pt;}
.yf2{bottom:305.764132pt;}
.y44{bottom:307.154269pt;}
.y74{bottom:308.145317pt;}
.y18e{bottom:308.429465pt;}
.y1f9{bottom:308.430799pt;}
.yb5{bottom:308.432132pt;}
.y147{bottom:311.108132pt;}
.y164{bottom:311.240685pt;}
.y32f{bottom:311.252660pt;}
.y2f9{bottom:311.407363pt;}
.y10c{bottom:311.587733pt;}
.y2a9{bottom:312.135895pt;}
.y22{bottom:313.464239pt;}
.y230{bottom:313.768132pt;}
.y263{bottom:313.777465pt;}
.y1b0{bottom:317.761465pt;}
.yf1{bottom:319.096132pt;}
.y43{bottom:320.486269pt;}
.y73{bottom:321.477317pt;}
.y18d{bottom:321.761465pt;}
.y1f8{bottom:321.762799pt;}
.yb4{bottom:321.764132pt;}
.y2f8{bottom:322.737363pt;}
.y2a8{bottom:323.465895pt;}
.y146{bottom:324.440132pt;}
.y163{bottom:324.572685pt;}
.y32e{bottom:324.584660pt;}
.y10b{bottom:324.919733pt;}
.y22f{bottom:327.100132pt;}
.y262{bottom:327.109465pt;}
.y1af{bottom:331.102799pt;}
.yf0{bottom:332.428132pt;}
.y42{bottom:333.818269pt;}
.y2f7{bottom:334.067363pt;}
.y2a7{bottom:334.795895pt;}
.y72{bottom:334.809317pt;}
.y18c{bottom:335.093465pt;}
.y1f7{bottom:335.094799pt;}
.yb3{bottom:335.096132pt;}
.y145{bottom:337.772132pt;}
.y162{bottom:337.904685pt;}
.y32d{bottom:337.916660pt;}
.y10a{bottom:338.251733pt;}
.y22e{bottom:340.432132pt;}
.y261{bottom:340.441465pt;}
.y1ae{bottom:344.434799pt;}
.y2f6{bottom:345.397363pt;}
.yef{bottom:345.761465pt;}
.y2a6{bottom:346.125895pt;}
.y41{bottom:347.156935pt;}
.y71{bottom:348.150650pt;}
.yb2{bottom:348.428132pt;}
.y1f6{bottom:348.432132pt;}
.y144{bottom:351.104132pt;}
.y161{bottom:351.236685pt;}
.y32c{bottom:351.248660pt;}
.y109{bottom:351.583733pt;}
.y21{bottom:353.592239pt;}
.y22d{bottom:353.764132pt;}
.y260{bottom:353.773465pt;}
.y2f5{bottom:356.727363pt;}
.y2a5{bottom:357.455895pt;}
.y1ad{bottom:357.766799pt;}
.yee{bottom:359.105465pt;}
.y40{bottom:360.488935pt;}
.y70{bottom:361.482650pt;}
.yb1{bottom:361.761465pt;}
.y1f5{bottom:361.764132pt;}
.y143{bottom:364.436132pt;}
.y18b{bottom:364.438799pt;}
.y160{bottom:364.568685pt;}
.y32b{bottom:364.580660pt;}
.y108{bottom:364.915733pt;}
.y22c{bottom:367.096132pt;}
.y25f{bottom:367.105465pt;}
.y2f4{bottom:368.057363pt;}
.y20{bottom:368.256239pt;}
.y2a4{bottom:368.785895pt;}
.y1ac{bottom:371.098799pt;}
.yed{bottom:372.437465pt;}
.y3f{bottom:373.820935pt;}
.y6f{bottom:374.814650pt;}
.yb0{bottom:375.093465pt;}
.y1f4{bottom:375.096132pt;}
.y142{bottom:377.768132pt;}
.y18a{bottom:377.770799pt;}
.y32a{bottom:377.912660pt;}
.y107{bottom:378.247733pt;}
.y2f3{bottom:379.387363pt;}
.y2a3{bottom:380.115895pt;}
.y22b{bottom:380.428132pt;}
.y25e{bottom:380.437465pt;}
.y1f{bottom:382.920239pt;}
.y1ab{bottom:384.430799pt;}
.yec{bottom:385.769465pt;}
.y3e{bottom:387.152935pt;}
.y6e{bottom:388.146650pt;}
.y1f3{bottom:388.428132pt;}
.y2f2{bottom:390.717363pt;}
.y141{bottom:391.100132pt;}
.y189{bottom:391.102799pt;}
.y329{bottom:391.244660pt;}
.y2a2{bottom:391.445895pt;}
.y106{bottom:391.579733pt;}
.y25d{bottom:393.769465pt;}
.y22a{bottom:393.770799pt;}
.y1e{bottom:397.584239pt;}
.y1aa{bottom:397.762799pt;}
.yeb{bottom:399.101465pt;}
.y3d{bottom:400.484935pt;}
.y6d{bottom:401.478650pt;}
.y1f2{bottom:401.768132pt;}
.y2f1{bottom:402.047363pt;}
.y2a1{bottom:402.775895pt;}
.y140{bottom:404.432132pt;}
.y188{bottom:404.434799pt;}
.yaf{bottom:404.449465pt;}
.y328{bottom:404.576660pt;}
.y105{bottom:404.911733pt;}
.y25c{bottom:407.101465pt;}
.y229{bottom:407.102799pt;}
.y1a9{bottom:411.094799pt;}
.y1d{bottom:412.248239pt;}
.yea{bottom:412.433465pt;}
.y17c{bottom:413.142672pt;}
.y2f0{bottom:413.377363pt;}
.y3c{bottom:413.818269pt;}
.y2a0{bottom:414.105895pt;}
.y6c{bottom:414.810650pt;}
.y1f1{bottom:415.100132pt;}
.y13f{bottom:417.764132pt;}
.y187{bottom:417.766799pt;}
.yae{bottom:417.781465pt;}
.y104{bottom:418.243733pt;}
.y25b{bottom:420.433465pt;}
.y228{bottom:420.434799pt;}
.y1a8{bottom:424.426799pt;}
.y327{bottom:424.565993pt;}
.y2ef{bottom:424.707363pt;}
.y29f{bottom:425.435895pt;}
.ye9{bottom:425.765465pt;}
.y17b{bottom:426.474672pt;}
.y1c{bottom:426.912239pt;}
.y3b{bottom:427.154269pt;}
.y6b{bottom:428.142650pt;}
.y1f0{bottom:428.432132pt;}
.y13e{bottom:431.096132pt;}
.y186{bottom:431.098799pt;}
.yad{bottom:431.113465pt;}
.y103{bottom:431.577067pt;}
.y25a{bottom:433.765465pt;}
.y227{bottom:433.766799pt;}
.y2ee{bottom:436.037363pt;}
.y29e{bottom:436.765895pt;}
.y326{bottom:437.897993pt;}
.ye8{bottom:439.097465pt;}
.y17a{bottom:439.806672pt;}
.y3a{bottom:440.486269pt;}
.y6a{bottom:441.482650pt;}
.y1b{bottom:441.576239pt;}
.y1ef{bottom:441.764132pt;}
.y13d{bottom:444.428132pt;}
.y185{bottom:444.430799pt;}
.yac{bottom:444.445465pt;}
.y259{bottom:447.097465pt;}
.y226{bottom:447.098799pt;}
.y2ed{bottom:447.367363pt;}
.y29d{bottom:448.095895pt;}
.ye7{bottom:452.429465pt;}
.y179{bottom:453.138672pt;}
.y1a7{bottom:453.761465pt;}
.y39{bottom:453.818269pt;}
.y69{bottom:454.814650pt;}
.y1ee{bottom:455.096132pt;}
.y1a{bottom:456.240239pt;}
.y13c{bottom:457.760132pt;}
.y184{bottom:457.762799pt;}
.yab{bottom:457.777465pt;}
.y325{bottom:457.901993pt;}
.y2ec{bottom:458.697363pt;}
.y29c{bottom:459.425895pt;}
.y258{bottom:460.429465pt;}
.y225{bottom:460.430799pt;}
.ye6{bottom:465.761465pt;}
.y1a6{bottom:467.093465pt;}
.y38{bottom:467.150269pt;}
.y68{bottom:468.146650pt;}
.y1ed{bottom:468.428132pt;}
.y2eb{bottom:470.027363pt;}
.y29b{bottom:470.755895pt;}
.y19{bottom:470.904239pt;}
.y183{bottom:471.094799pt;}
.yaa{bottom:471.109465pt;}
.y257{bottom:473.761465pt;}
.y224{bottom:473.762799pt;}
.y121{bottom:476.246788pt;}
.y324{bottom:477.905993pt;}
.ye5{bottom:479.096132pt;}
.y2ea{bottom:481.357363pt;}
.y67{bottom:481.478650pt;}
.y1ec{bottom:481.764132pt;}
.y29a{bottom:482.085895pt;}
.y182{bottom:484.426799pt;}
.ya9{bottom:484.441465pt;}
.y18{bottom:485.568239pt;}
.y223{bottom:487.094799pt;}
.y256{bottom:487.100132pt;}
.y13b{bottom:487.128173pt;}
.y120{bottom:489.578788pt;}
.ye4{bottom:492.428132pt;}
.y2e9{bottom:492.687363pt;}
.y299{bottom:493.415895pt;}
.y66{bottom:494.810650pt;}
.y1eb{bottom:495.096132pt;}
.ya8{bottom:497.773465pt;}
.y323{bottom:497.909993pt;}
.y17{bottom:500.232239pt;}
.y222{bottom:500.430799pt;}
.y255{bottom:500.432132pt;}
.y13a{bottom:500.460173pt;}
.y1ca{bottom:501.530818pt;}
.y11f{bottom:502.910788pt;}
.y2e8{bottom:504.017363pt;}
.y298{bottom:504.745895pt;}
.ye3{bottom:505.760132pt;}
.y5c{bottom:507.714797pt;}
.y65{bottom:508.142650pt;}
.y1ea{bottom:508.428132pt;}
.ya7{bottom:511.105465pt;}
.y322{bottom:511.243327pt;}
.y221{bottom:513.762799pt;}
.y254{bottom:513.764132pt;}
.y181{bottom:513.765465pt;}
.y139{bottom:513.792173pt;}
.y1c9{bottom:514.862818pt;}
.y16{bottom:514.896239pt;}
.y2e7{bottom:515.347363pt;}
.y297{bottom:516.075895pt;}
.y11e{bottom:516.242788pt;}
.y5b{bottom:521.046797pt;}
.y64{bottom:521.479983pt;}
.y1e9{bottom:521.772132pt;}
.ya6{bottom:524.437465pt;}
.y2e6{bottom:526.677363pt;}
.y220{bottom:527.094799pt;}
.y253{bottom:527.096132pt;}
.y180{bottom:527.097465pt;}
.y138{bottom:527.124173pt;}
.y296{bottom:527.405895pt;}
.y1c8{bottom:528.194818pt;}
.y15{bottom:529.560239pt;}
.y11d{bottom:529.574788pt;}
.y5a{bottom:534.378797pt;}
.y63{bottom:534.811983pt;}
.ye2{bottom:535.101465pt;}
.y1e8{bottom:535.104132pt;}
.ya5{bottom:537.769465pt;}
.y321{bottom:537.909993pt;}
.y2e5{bottom:538.007363pt;}
.y295{bottom:538.735895pt;}
.y252{bottom:540.428132pt;}
.y17f{bottom:540.429465pt;}
.y137{bottom:540.456173pt;}
.y1c7{bottom:541.526818pt;}
.y14{bottom:544.224239pt;}
.y59{bottom:547.710797pt;}
.y62{bottom:548.143983pt;}
.ye1{bottom:548.433465pt;}
.y1e7{bottom:548.436132pt;}
.y2e4{bottom:549.337363pt;}
.y294{bottom:550.065895pt;}
.ya4{bottom:551.101465pt;}
.y320{bottom:551.243327pt;}
.y17e{bottom:553.761465pt;}
.y251{bottom:553.764132pt;}
.y136{bottom:553.788173pt;}
.y1c6{bottom:554.858818pt;}
.y13{bottom:558.888239pt;}
.y2e3{bottom:560.667363pt;}
.y58{bottom:561.042797pt;}
.y293{bottom:561.395895pt;}
.y61{bottom:561.475983pt;}
.ye0{bottom:561.765465pt;}
.y1e6{bottom:561.768132pt;}
.ya3{bottom:564.433465pt;}
.y17d{bottom:567.093465pt;}
.y250{bottom:567.096132pt;}
.y21f{bottom:567.100132pt;}
.y135{bottom:567.120173pt;}
.y1c5{bottom:568.190818pt;}
.y2e2{bottom:571.997363pt;}
.y292{bottom:572.725895pt;}
.y12{bottom:573.552239pt;}
.y57{bottom:574.374797pt;}
.y60{bottom:574.810650pt;}
.ydf{bottom:575.097465pt;}
.y1e5{bottom:575.100132pt;}
.y1cc{bottom:576.722810pt;}
.ya2{bottom:577.765465pt;}
.y31f{bottom:579.217989pt;}
.y24f{bottom:580.428132pt;}
.y21e{bottom:580.432132pt;}
.y134{bottom:580.452173pt;}
.y1c4{bottom:581.522818pt;}
.y2e1{bottom:583.327363pt;}
.y291{bottom:584.055895pt;}
.y5f{bottom:588.142650pt;}
.y11{bottom:588.216239pt;}
.yde{bottom:588.429465pt;}
.y1e4{bottom:588.432132pt;}
.y1cb{bottom:590.054810pt;}
.ya1{bottom:591.097465pt;}
.y31e{bottom:592.549989pt;}
.y21d{bottom:593.764132pt;}
.y24e{bottom:593.774839pt;}
.y133{bottom:593.784173pt;}
.y2e0{bottom:594.657363pt;}
.y1c3{bottom:594.854818pt;}
.y290{bottom:595.385895pt;}
.y1a5{bottom:599.074782pt;}
.y5e{bottom:601.474650pt;}
.ydd{bottom:601.761465pt;}
.y1e3{bottom:601.764132pt;}
.y10{bottom:602.880239pt;}
.ya0{bottom:604.429465pt;}
.y31d{bottom:605.881989pt;}
.y2df{bottom:605.987363pt;}
.y28f{bottom:606.715895pt;}
.y21c{bottom:607.096132pt;}
.y24d{bottom:607.106839pt;}
.y132{bottom:607.116173pt;}
.y1a4{bottom:612.406782pt;}
.ydc{bottom:615.093465pt;}
.y1e2{bottom:615.096132pt;}
.y2de{bottom:617.317363pt;}
.yf{bottom:617.544239pt;}
.y9f{bottom:617.761465pt;}
.y28e{bottom:618.045895pt;}
.y31c{bottom:619.213989pt;}
.y21b{bottom:620.428132pt;}
.y24c{bottom:620.438839pt;}
.y131{bottom:620.448173pt;}
.y1a3{bottom:625.738782pt;}
.y1e1{bottom:628.428132pt;}
.y2dd{bottom:628.647363pt;}
.y28d{bottom:629.375895pt;}
.y9e{bottom:631.093465pt;}
.ye{bottom:632.208239pt;}
.y31b{bottom:632.547323pt;}
.y21a{bottom:633.764132pt;}
.y24b{bottom:633.770839pt;}
.y130{bottom:633.780173pt;}
.y1a2{bottom:639.070782pt;}
.y2dc{bottom:639.977363pt;}
.y28c{bottom:640.705895pt;}
.y1e0{bottom:641.761465pt;}
.ydb{bottom:644.433506pt;}
.yd{bottom:646.872239pt;}
.y219{bottom:647.096132pt;}
.y24a{bottom:647.102839pt;}
.y12f{bottom:647.112173pt;}
.y2db{bottom:651.307363pt;}
.y28b{bottom:652.035895pt;}
.y1a1{bottom:652.402782pt;}
.y82{bottom:654.054810pt;}
.y1df{bottom:655.096132pt;}
.yda{bottom:657.765506pt;}
.y31a{bottom:659.227363pt;}
.y218{bottom:660.428132pt;}
.y9d{bottom:660.430839pt;}
.y249{bottom:660.434839pt;}
.y12e{bottom:660.444173pt;}
.yc{bottom:661.536239pt;}
.y2da{bottom:662.637363pt;}
.y28a{bottom:663.365895pt;}
.y1a0{bottom:665.734782pt;}
.y1de{bottom:668.428132pt;}
.yd9{bottom:671.097506pt;}
.y319{bottom:672.559363pt;}
.y9c{bottom:673.762839pt;}
.y248{bottom:673.766839pt;}
.y217{bottom:673.770839pt;}
.y12d{bottom:673.776173pt;}
.y2d9{bottom:673.967363pt;}
.y289{bottom:674.695895pt;}
.yb{bottom:676.200239pt;}
.y1dd{bottom:681.761506pt;}
.yd8{bottom:684.429506pt;}
.y2d8{bottom:685.297363pt;}
.y318{bottom:685.891363pt;}
.y288{bottom:686.025895pt;}
.y9b{bottom:687.094839pt;}
.y247{bottom:687.098839pt;}
.y216{bottom:687.102839pt;}
.y12c{bottom:687.108173pt;}
.ya{bottom:690.864239pt;}
.y1dc{bottom:695.101506pt;}
.y2d7{bottom:696.627363pt;}
.y287{bottom:697.355895pt;}
.yd7{bottom:697.761506pt;}
.y317{bottom:699.223363pt;}
.y246{bottom:700.430839pt;}
.y9a{bottom:700.433506pt;}
.y215{bottom:700.434839pt;}
.y12b{bottom:700.440173pt;}
.y9{bottom:705.528239pt;}
.y2d6{bottom:707.957363pt;}
.y1db{bottom:708.433506pt;}
.y286{bottom:708.685895pt;}
.yd6{bottom:711.093506pt;}
.y316{bottom:712.555363pt;}
.y178{bottom:712.618827pt;}
.y245{bottom:713.762839pt;}
.y99{bottom:713.765506pt;}
.y214{bottom:713.766839pt;}
.y12a{bottom:713.772173pt;}
.y2d5{bottom:719.287363pt;}
.y285{bottom:720.015895pt;}
.y1da{bottom:721.765506pt;}
.y315{bottom:725.887363pt;}
.y177{bottom:725.950827pt;}
.y244{bottom:727.094839pt;}
.y98{bottom:727.097506pt;}
.y213{bottom:727.098839pt;}
.y129{bottom:727.104173pt;}
.y2d4{bottom:730.617363pt;}
.y284{bottom:731.345895pt;}
.y8{bottom:732.194906pt;}
.y1d9{bottom:735.097506pt;}
.y314{bottom:739.219363pt;}
.y176{bottom:739.282827pt;}
.yd5{bottom:740.428173pt;}
.y97{bottom:740.429506pt;}
.y212{bottom:740.430839pt;}
.y128{bottom:740.436173pt;}
.y2d3{bottom:741.947363pt;}
.y283{bottom:742.675895pt;}
.y1d8{bottom:748.429506pt;}
.y313{bottom:752.551363pt;}
.y175{bottom:752.614827pt;}
.y2d2{bottom:753.277363pt;}
.y96{bottom:753.761506pt;}
.y211{bottom:753.762839pt;}
.y127{bottom:753.768173pt;}
.y282{bottom:754.005895pt;}
.y7{bottom:761.517572pt;}
.y1d7{bottom:761.761506pt;}
.y2d1{bottom:764.607363pt;}
.y281{bottom:765.335895pt;}
.y312{bottom:765.883363pt;}
.y210{bottom:767.094839pt;}
.y126{bottom:767.100173pt;}
.yd4{bottom:767.101506pt;}
.y95{bottom:767.113506pt;}
.y1d6{bottom:775.093506pt;}
.y2d0{bottom:775.937363pt;}
.y280{bottom:776.665895pt;}
.y311{bottom:779.215363pt;}
.y20f{bottom:780.428173pt;}
.y125{bottom:780.432173pt;}
.yd3{bottom:780.433506pt;}
.y94{bottom:780.445506pt;}
.y2cf{bottom:787.267363pt;}
.y27f{bottom:787.995895pt;}
.y1d5{bottom:788.426839pt;}
.y310{bottom:792.547363pt;}
.y124{bottom:793.764173pt;}
.yd2{bottom:793.765506pt;}
.y93{bottom:793.777506pt;}
.y2ce{bottom:798.597363pt;}
.y27e{bottom:799.325895pt;}
.y6{bottom:801.522906pt;}
.y30f{bottom:805.880697pt;}
.y123{bottom:807.096173pt;}
.yd1{bottom:807.097506pt;}
.y92{bottom:807.109506pt;}
.y2cd{bottom:809.927363pt;}
.y27d{bottom:810.655895pt;}
.y1d4{bottom:817.766839pt;}
.y122{bottom:820.428173pt;}
.yd0{bottom:820.429506pt;}
.y91{bottom:820.441506pt;}
.y2cc{bottom:821.257363pt;}
.y27c{bottom:821.985895pt;}
.y1d3{bottom:831.098839pt;}
.y2cb{bottom:832.587363pt;}
.y27b{bottom:833.315895pt;}
.ycf{bottom:833.761506pt;}
.y20e{bottom:833.768173pt;}
.y90{bottom:833.773506pt;}
.y5{bottom:841.528239pt;}
.y2ca{bottom:843.917363pt;}
.y1d2{bottom:844.430839pt;}
.y27a{bottom:844.645895pt;}
.yce{bottom:847.094839pt;}
.y20d{bottom:847.100173pt;}
.y8f{bottom:847.105506pt;}
.y30{bottom:848.326009pt;}
.y2c9{bottom:855.247363pt;}
.y279{bottom:855.975895pt;}
.y1d1{bottom:857.762839pt;}
.ycd{bottom:860.428173pt;}
.y20c{bottom:860.432173pt;}
.y8e{bottom:860.437506pt;}
.y2c8{bottom:866.577363pt;}
.y278{bottom:867.305895pt;}
.y1d0{bottom:871.094839pt;}
.ycc{bottom:873.764173pt;}
.y8d{bottom:873.769506pt;}
.y2c7{bottom:877.907363pt;}
.y277{bottom:878.635895pt;}
.y1cf{bottom:884.426839pt;}
.ycb{bottom:887.096173pt;}
.y8c{bottom:887.101506pt;}
.y2c6{bottom:889.237363pt;}
.y276{bottom:889.965895pt;}
.yca{bottom:900.428173pt;}
.y8b{bottom:900.433506pt;}
.y2c5{bottom:900.567363pt;}
.y275{bottom:901.295895pt;}
.y2c4{bottom:911.897363pt;}
.y274{bottom:912.625895pt;}
.yc9{bottom:913.764173pt;}
.y8a{bottom:913.765506pt;}
.y2c3{bottom:923.227363pt;}
.y273{bottom:923.959229pt;}
.yc8{bottom:927.096173pt;}
.y89{bottom:927.097506pt;}
.y2c2{bottom:934.557363pt;}
.yc7{bottom:940.428173pt;}
.y88{bottom:940.429506pt;}
.y2c1{bottom:945.887363pt;}
.y87{bottom:953.761506pt;}
.y2c0{bottom:957.217363pt;}
.y86{bottom:967.093506pt;}
.y272{bottom:967.959229pt;}
.y2bf{bottom:968.547363pt;}
.y5d{bottom:1013.902507pt;}
.y85{bottom:1013.996908pt;}
.y37{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.he{height:21.193555pt;}
.h2{height:30.687500pt;}
.h2d{height:31.476562pt;}
.h9{height:34.523438pt;}
.hf{height:37.038883pt;}
.h30{height:39.560000pt;}
.h2e{height:40.080000pt;}
.h3{height:40.604167pt;}
.h2f{height:40.960000pt;}
.h1b{height:42.195312pt;}
.h10{height:43.120594pt;}
.h7{height:43.718750pt;}
.h11{height:43.887581pt;}
.h31{height:44.834667pt;}
.h8{height:45.703125pt;}
.ha{height:47.472000pt;}
.h28{height:47.576806pt;}
.h16{height:47.582121pt;}
.h2c{height:47.597938pt;}
.h24{height:47.603271pt;}
.h23{height:47.608767pt;}
.h2a{height:47.613938pt;}
.h2b{height:47.614101pt;}
.h25{height:47.619434pt;}
.h21{height:47.624605pt;}
.h27{height:47.624767pt;}
.h1a{height:47.624930pt;}
.h14{height:47.630101pt;}
.h15{height:47.635434pt;}
.h20{height:47.635473pt;}
.h19{height:47.635597pt;}
.h29{height:47.640605pt;}
.h12{height:47.640767pt;}
.hc{height:47.646101pt;}
.h18{height:47.646264pt;}
.h26{height:47.651271pt;}
.h13{height:47.651434pt;}
.h1c{height:47.656767pt;}
.h1f{height:48.026667pt;}
.h22{height:48.085333pt;}
.h1e{height:48.090667pt;}
.hb{height:48.096000pt;}
.h17{height:49.152000pt;}
.h4{height:50.755208pt;}
.h1d{height:50.781250pt;}
.hd{height:69.046875pt;}
.h5{height:99.734375pt;}
.h6{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.880153pt;}
.xb{left:225.874003pt;}
.xc{left:268.887858pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.xa{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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