
    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_4832f905302f83a88a6309c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.047852;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_91cc9a0feb0ab2568e7b2797.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.047852;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_9a85e0f756378538d373ba71.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c61dff10c664b5335d1fd45a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_976e536deeb7345d7a8555c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_02bde77bfeb32a4992aa93ee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f8929027b35f56fb29163b55.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.068000;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_d145028ed5b79e4b97f7d413.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.047852;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_9f4005314317a07d7e81ca54.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.047852;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_9a85e0f756378538d373ba71.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a1c91f66fb9f555cde10d0ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;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_3f3216034cd1ee1abd7d8b92.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.970000;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_d145028ed5b79e4b97f7d413.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.047852;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_9f4005314317a07d7e81ca54.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.047852;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_9a85e0f756378538d373ba71.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4853203be81f5a9865e85275.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.878000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_882f77c63d09f39f04c7a803.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7b8ff38b6ce7ac0a367672f5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bec81d69ecb72d02907d744e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.878418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dfe0003287082f0b21a6c01a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.047852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cc6a1cc084f60cceb3eb938f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.047852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3f2f99d5003ee7c7c35cb40e.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_230adda215d77e5685f0c20f.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_23231a111ef15363fe3a42e5.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_72527217193144d7b8ca9b01.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.970000;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:ff1a;src:url('chunks/assets/font_7698332d35b41555b84200b8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.068000;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:ff1b;src:url('chunks/assets/font_4020913a21189509fe40fef8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958000;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:ff1c;src:url('chunks/assets/font_42c49e26a69c4a8bcadf02cd.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.047852;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:ff1d;src:url('chunks/assets/font_cc6a1cc084f60cceb3eb938f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.047852;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:ff1e;src:url('chunks/assets/font_3f2f99d5003ee7c7c35cb40e.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_002d21b65da93eb5c53f3f4b.woff2')format("woff");}.ff1f{font-family:ff1f;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;}
.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);}
.v6{vertical-align:-20.400000px;}
.v2{vertical-align:-17.340000px;}
.v5{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.340000px;}
.v4{vertical-align:19.350000px;}
.v1{vertical-align:20.400000px;}
.ls38{letter-spacing:-7.200000px;}
.ls2c{letter-spacing:-3.150000px;}
.ls19{letter-spacing:-1.653000px;}
.lsb{letter-spacing:-1.512000px;}
.ls48{letter-spacing:-1.458600px;}
.ls30{letter-spacing:-1.395000px;}
.ls45{letter-spacing:-1.326000px;}
.ls12{letter-spacing:-1.242000px;}
.ls3e{letter-spacing:-1.131000px;}
.ls51{letter-spacing:-1.127100px;}
.ls14{letter-spacing:-1.083000px;}
.ls11{letter-spacing:-0.969000px;}
.ls49{letter-spacing:-0.961350px;}
.ls3d{letter-spacing:-0.936000px;}
.ls2e{letter-spacing:-0.855000px;}
.lse{letter-spacing:-0.798000px;}
.ls46{letter-spacing:-0.795600px;}
.ls18{letter-spacing:-0.756000px;}
.ls15{letter-spacing:-0.741000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.702000px;}
.lsa{letter-spacing:-0.684000px;}
.ls2a{letter-spacing:-0.630000px;}
.ls47{letter-spacing:-0.629850px;}
.ls44{letter-spacing:-0.585000px;}
.ls16{letter-spacing:-0.570000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.513000px;}
.ls50{letter-spacing:-0.497250px;}
.ls17{letter-spacing:-0.486000px;}
.ls28{letter-spacing:-0.450000px;}
.ls29{letter-spacing:-0.405000px;}
.lsf{letter-spacing:-0.399000px;}
.lsc{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.342000px;}
.ls2d{letter-spacing:-0.315000px;}
.ls61{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.228000px;}
.ls56{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.180000px;}
.ls5f{letter-spacing:-0.108000px;}
.ls7{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000600px;}
.ls4e{letter-spacing:0.000750px;}
.ls3a{letter-spacing:0.001200px;}
.ls4d{letter-spacing:0.001500px;}
.ls41{letter-spacing:0.004050px;}
.ls3{letter-spacing:0.004200px;}
.ls4b{letter-spacing:0.004500px;}
.ls4{letter-spacing:0.007800px;}
.ls4c{letter-spacing:0.008400px;}
.ls3b{letter-spacing:0.009600px;}
.ls3c{letter-spacing:0.010800px;}
.ls5{letter-spacing:0.011400px;}
.ls4a{letter-spacing:0.012000px;}
.ls42{letter-spacing:0.013200px;}
.ls43{letter-spacing:0.013800px;}
.ls40{letter-spacing:0.028200px;}
.ls52{letter-spacing:0.030000px;}
.ls5c{letter-spacing:0.108000px;}
.ls55{letter-spacing:0.270000px;}
.ls59{letter-spacing:0.324000px;}
.ls5d{letter-spacing:0.432000px;}
.ls54{letter-spacing:0.594000px;}
.ls53{letter-spacing:0.648000px;}
.ls58{letter-spacing:0.702000px;}
.ls5e{letter-spacing:0.810000px;}
.ls6{letter-spacing:0.960000px;}
.ls57{letter-spacing:1.134000px;}
.ls5b{letter-spacing:1.458000px;}
.ls5a{letter-spacing:1.566000px;}
.ls60{letter-spacing:1.890000px;}
.ls0{letter-spacing:2.592000px;}
.ls8{letter-spacing:2.700000px;}
.ls2{letter-spacing:2.767500px;}
.ls20{letter-spacing:2.848500px;}
.ls22{letter-spacing:3.015000px;}
.ls33{letter-spacing:3.019500px;}
.ls1b{letter-spacing:3.024000px;}
.ls21{letter-spacing:3.028500px;}
.ls1d{letter-spacing:3.051000px;}
.ls1c{letter-spacing:3.060000px;}
.ls1e{letter-spacing:3.064500px;}
.ls36{letter-spacing:3.069000px;}
.ls34{letter-spacing:3.073500px;}
.ls1f{letter-spacing:3.078000px;}
.ls24{letter-spacing:3.082500px;}
.ls32{letter-spacing:3.091500px;}
.ls25{letter-spacing:3.127500px;}
.ls1{letter-spacing:3.840000px;}
.ls39{letter-spacing:3.944400px;}
.ls23{letter-spacing:4.378500px;}
.ls35{letter-spacing:4.504500px;}
.ls4f{letter-spacing:4.620000px;}
.ls31{letter-spacing:5.175000px;}
.ls26{letter-spacing:5.310000px;}
.ls37{letter-spacing:6.120000px;}
.ls9{letter-spacing:14.742000px;}
.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;}
}
.ws158{word-spacing:-33.150000px;}
.ws2{word-spacing:-15.067500px;}
.wscc{word-spacing:-13.596000px;}
.ws4{word-spacing:-12.939000px;}
.ws3b{word-spacing:-12.825000px;}
.ws3d{word-spacing:-12.654000px;}
.ws55{word-spacing:-12.483000px;}
.ws18b{word-spacing:-12.390000px;}
.ws7f{word-spacing:-12.369000px;}
.ws119{word-spacing:-12.360000px;}
.ws54{word-spacing:-12.312000px;}
.ws9e{word-spacing:-12.258000px;}
.ws3c{word-spacing:-12.255000px;}
.wsb2{word-spacing:-12.198000px;}
.ws0{word-spacing:-12.192000px;}
.ws3e{word-spacing:-12.084000px;}
.ws20{word-spacing:-11.988000px;}
.ws53{word-spacing:-11.856000px;}
.ws3f{word-spacing:-11.718000px;}
.ws41{word-spacing:-11.664000px;}
.ws7d{word-spacing:-11.610000px;}
.ws18c{word-spacing:-11.502000px;}
.ws1f{word-spacing:-10.854000px;}
.ws48{word-spacing:-10.545000px;}
.ws40{word-spacing:-10.476000px;}
.wsd1{word-spacing:-10.305000px;}
.wscd{word-spacing:-10.125000px;}
.wscf{word-spacing:-9.990000px;}
.wsd0{word-spacing:-9.855000px;}
.wsf8{word-spacing:-9.765000px;}
.wsce{word-spacing:-9.675000px;}
.wsd2{word-spacing:-9.585000px;}
.ws5{word-spacing:-8.410350px;}
.ws3{word-spacing:-8.034000px;}
.ws126{word-spacing:-7.449000px;}
.ws117{word-spacing:-7.293000px;}
.ws116{word-spacing:-7.098000px;}
.ws118{word-spacing:-6.903000px;}
.ws127{word-spacing:-6.708000px;}
.wsf7{word-spacing:-6.639750px;}
.ws128{word-spacing:-6.630000px;}
.ws156{word-spacing:-6.132750px;}
.wsf9{word-spacing:-6.120000px;}
.ws12a{word-spacing:-6.000150px;}
.ws129{word-spacing:-5.834400px;}
.ws12c{word-spacing:-5.668650px;}
.ws157{word-spacing:-5.502900px;}
.ws12b{word-spacing:-5.171400px;}
.ws159{word-spacing:-4.620000px;}
.ws191{word-spacing:-4.440000px;}
.ws190{word-spacing:-3.840000px;}
.ws140{word-spacing:-3.621000px;}
.ws163{word-spacing:-3.468000px;}
.ws18d{word-spacing:-3.276000px;}
.wsc{word-spacing:-2.880000px;}
.ws13b{word-spacing:-2.856000px;}
.ws1e{word-spacing:-2.760000px;}
.ws16b{word-spacing:-2.703000px;}
.ws18f{word-spacing:-2.700000px;}
.ws1{word-spacing:-2.640000px;}
.ws164{word-spacing:-2.499000px;}
.ws1a4{word-spacing:-1.890000px;}
.ws1a0{word-spacing:-1.836000px;}
.ws9d{word-spacing:-1.539000px;}
.ws162{word-spacing:-1.479000px;}
.ws13f{word-spacing:-1.377000px;}
.ws196{word-spacing:-1.350000px;}
.ws155{word-spacing:-1.326000px;}
.ws18e{word-spacing:-1.260000px;}
.ws193{word-spacing:-1.242000px;}
.ws192{word-spacing:-1.026000px;}
.ws165{word-spacing:-0.969000px;}
.ws188{word-spacing:-0.816000px;}
.ws136{word-spacing:-0.765000px;}
.ws137{word-spacing:-0.714000px;}
.ws186{word-spacing:-0.663000px;}
.ws19f{word-spacing:-0.648000px;}
.ws197{word-spacing:-0.594000px;}
.ws11d{word-spacing:-0.513000px;}
.ws17d{word-spacing:-0.510000px;}
.ws19b{word-spacing:-0.486000px;}
.ws16a{word-spacing:-0.459000px;}
.ws1a2{word-spacing:-0.432000px;}
.ws123{word-spacing:-0.360000px;}
.ws1a5{word-spacing:-0.162000px;}
.ws125{word-spacing:-0.039000px;}
.ws6{word-spacing:0.000000px;}
.ws2b{word-spacing:0.114000px;}
.ws47{word-spacing:0.171000px;}
.wsd9{word-spacing:0.180000px;}
.wse9{word-spacing:0.225000px;}
.ws8f{word-spacing:0.228000px;}
.ws19e{word-spacing:0.270000px;}
.ws198{word-spacing:0.324000px;}
.ws111{word-spacing:0.342000px;}
.ws195{word-spacing:0.378000px;}
.ws5a{word-spacing:0.399000px;}
.ws36{word-spacing:0.456000px;}
.ws12f{word-spacing:0.480000px;}
.wsdf{word-spacing:0.540000px;}
.wsaf{word-spacing:0.570000px;}
.ws19a{word-spacing:0.594000px;}
.ws76{word-spacing:0.627000px;}
.ws189{word-spacing:0.663000px;}
.wsfc{word-spacing:0.675000px;}
.ws11{word-spacing:0.684000px;}
.ws1a1{word-spacing:0.702000px;}
.wsdd{word-spacing:0.765000px;}
.wsca{word-spacing:0.798000px;}
.wse2{word-spacing:0.810000px;}
.ws5c{word-spacing:0.855000px;}
.ws94{word-spacing:0.912000px;}
.ws154{word-spacing:0.918000px;}
.ws176{word-spacing:0.969000px;}
.ws166{word-spacing:1.020000px;}
.ws63{word-spacing:1.026000px;}
.ws18a{word-spacing:1.071000px;}
.wsb{word-spacing:1.080000px;}
.ws57{word-spacing:1.083000px;}
.wsbb{word-spacing:1.140000px;}
.ws16e{word-spacing:1.173000px;}
.wsc3{word-spacing:1.197000px;}
.wse1{word-spacing:1.215000px;}
.ws109{word-spacing:1.260000px;}
.ws14c{word-spacing:1.275000px;}
.ws10a{word-spacing:1.305000px;}
.ws91{word-spacing:1.311000px;}
.ws8c{word-spacing:1.368000px;}
.wsa{word-spacing:1.380000px;}
.wsf6{word-spacing:1.395000px;}
.ws90{word-spacing:1.425000px;}
.wsf2{word-spacing:1.440000px;}
.ws11b{word-spacing:1.518000px;}
.ws187{word-spacing:1.530000px;}
.ws58{word-spacing:1.539000px;}
.ws194{word-spacing:1.566000px;}
.ws1a{word-spacing:1.596000px;}
.ws199{word-spacing:1.674000px;}
.ws12e{word-spacing:1.680000px;}
.ws51{word-spacing:1.710000px;}
.ws19{word-spacing:1.767000px;}
.ws14{word-spacing:1.824000px;}
.ws138{word-spacing:1.836000px;}
.wsd5{word-spacing:1.938000px;}
.ws104{word-spacing:1.980000px;}
.wsc2{word-spacing:1.995000px;}
.ws105{word-spacing:2.025000px;}
.ws66{word-spacing:2.052000px;}
.ws107{word-spacing:2.115000px;}
.ws145{word-spacing:2.142000px;}
.ws8a{word-spacing:2.166000px;}
.ws12d{word-spacing:2.220000px;}
.ws2c{word-spacing:2.223000px;}
.ws17a{word-spacing:2.244000px;}
.wsc6{word-spacing:2.337000px;}
.ws169{word-spacing:2.346000px;}
.ws19d{word-spacing:2.376000px;}
.ws35{word-spacing:2.394000px;}
.ws6b{word-spacing:2.451000px;}
.ws103{word-spacing:2.475000px;}
.ws95{word-spacing:2.508000px;}
.ws124{word-spacing:2.520000px;}
.ws5d{word-spacing:2.565000px;}
.ws178{word-spacing:2.601000px;}
.wsf0{word-spacing:2.610000px;}
.wsc1{word-spacing:2.622000px;}
.ws67{word-spacing:2.679000px;}
.ws19c{word-spacing:2.700000px;}
.ws121{word-spacing:2.736000px;}
.ws108{word-spacing:2.745000px;}
.ws29{word-spacing:2.793000px;}
.wsfe{word-spacing:2.835000px;}
.wsa9{word-spacing:2.850000px;}
.ws17c{word-spacing:2.856000px;}
.ws7{word-spacing:2.880000px;}
.ws6f{word-spacing:2.907000px;}
.ws18{word-spacing:2.964000px;}
.ws14d{word-spacing:3.009000px;}
.ws96{word-spacing:3.021000px;}
.wsda{word-spacing:3.060000px;}
.ws56{word-spacing:3.078000px;}
.wsdb{word-spacing:3.105000px;}
.ws9a{word-spacing:3.192000px;}
.ws10b{word-spacing:3.240000px;}
.wse3{word-spacing:3.285000px;}
.ws24{word-spacing:3.306000px;}
.wsf{word-spacing:3.348000px;}
.ws99{word-spacing:3.363000px;}
.ws1a3{word-spacing:3.402000px;}
.wse{word-spacing:3.417000px;}
.ws9c{word-spacing:3.420000px;}
.ws16d{word-spacing:3.468000px;}
.ws44{word-spacing:3.477000px;}
.ws39{word-spacing:3.510000px;}
.ws2e{word-spacing:3.534000px;}
.wsb3{word-spacing:3.540000px;}
.wsdc{word-spacing:3.555000px;}
.wsc9{word-spacing:3.591000px;}
.ws101{word-spacing:3.600000px;}
.wsb1{word-spacing:3.618000px;}
.ws131{word-spacing:3.621000px;}
.wse5{word-spacing:3.645000px;}
.ws3a{word-spacing:3.672000px;}
.ws84{word-spacing:3.705000px;}
.ws9{word-spacing:3.720000px;}
.ws2f{word-spacing:3.819000px;}
.ws1d{word-spacing:3.876000px;}
.ws173{word-spacing:3.927000px;}
.ws97{word-spacing:3.933000px;}
.wsf1{word-spacing:3.960000px;}
.ws141{word-spacing:3.978000px;}
.ws11a{word-spacing:3.990000px;}
.ws2a{word-spacing:4.092000px;}
.wsec{word-spacing:4.095000px;}
.ws4f{word-spacing:4.104000px;}
.ws15f{word-spacing:4.131000px;}
.wseb{word-spacing:4.140000px;}
.ws7e{word-spacing:4.158000px;}
.ws1b{word-spacing:4.161000px;}
.ws34{word-spacing:4.218000px;}
.ws168{word-spacing:4.233000px;}
.ws6a{word-spacing:4.275000px;}
.wsfb{word-spacing:4.320000px;}
.wsae{word-spacing:4.332000px;}
.ws14e{word-spacing:4.386000px;}
.ws28{word-spacing:4.389000px;}
.wsde{word-spacing:4.410000px;}
.ws144{word-spacing:4.437000px;}
.wsd4{word-spacing:4.440000px;}
.ws4a{word-spacing:4.446000px;}
.wsfa{word-spacing:4.500000px;}
.ws85{word-spacing:4.503000px;}
.ws6d{word-spacing:4.560000px;}
.ws50{word-spacing:4.617000px;}
.ws65{word-spacing:4.731000px;}
.wsd{word-spacing:4.794000px;}
.ws86{word-spacing:4.845000px;}
.ws106{word-spacing:4.860000px;}
.ws16c{word-spacing:4.947000px;}
.ws5e{word-spacing:4.959000px;}
.ws78{word-spacing:5.130000px;}
.ws16f{word-spacing:5.151000px;}
.wsfd{word-spacing:5.175000px;}
.wsa1{word-spacing:5.187000px;}
.ws52{word-spacing:5.244000px;}
.wsb6{word-spacing:5.301000px;}
.wsf3{word-spacing:5.310000px;}
.wsf4{word-spacing:5.355000px;}
.wsa7{word-spacing:5.358000px;}
.ws8d{word-spacing:5.415000px;}
.ws15{word-spacing:5.472000px;}
.ws33{word-spacing:5.529000px;}
.ws73{word-spacing:5.586000px;}
.ws16{word-spacing:5.643000px;}
.ws38{word-spacing:5.700000px;}
.wsb4{word-spacing:5.757000px;}
.wsee{word-spacing:5.760000px;}
.ws167{word-spacing:5.763000px;}
.wsef{word-spacing:5.805000px;}
.ws10{word-spacing:5.814000px;}
.ws170{word-spacing:5.865000px;}
.ws2d{word-spacing:5.871000px;}
.ws92{word-spacing:5.928000px;}
.ws160{word-spacing:5.967000px;}
.ws26{word-spacing:5.985000px;}
.ws132{word-spacing:6.069000px;}
.ws82{word-spacing:6.213000px;}
.ws14b{word-spacing:6.222000px;}
.wsea{word-spacing:6.255000px;}
.wsa6{word-spacing:6.270000px;}
.ws133{word-spacing:6.273000px;}
.ws17b{word-spacing:6.324000px;}
.ws71{word-spacing:6.327000px;}
.wscb{word-spacing:6.384000px;}
.wsb5{word-spacing:6.441000px;}
.ws4e{word-spacing:6.498000px;}
.ws122{word-spacing:6.555000px;}
.ws177{word-spacing:6.579000px;}
.ws43{word-spacing:6.612000px;}
.ws14f{word-spacing:6.630000px;}
.ws184{word-spacing:6.681000px;}
.wsd7{word-spacing:6.726000px;}
.ws8b{word-spacing:6.783000px;}
.ws72{word-spacing:6.840000px;}
.ws11e{word-spacing:6.897000px;}
.ws37{word-spacing:6.954000px;}
.ws4c{word-spacing:7.011000px;}
.ws46{word-spacing:7.125000px;}
.wsa2{word-spacing:7.182000px;}
.ws102{word-spacing:7.200000px;}
.ws161{word-spacing:7.242000px;}
.wse7{word-spacing:7.245000px;}
.wse8{word-spacing:7.290000px;}
.ws59{word-spacing:7.410000px;}
.ws93{word-spacing:7.467000px;}
.wsf5{word-spacing:7.470000px;}
.ws15e{word-spacing:7.497000px;}
.ws23{word-spacing:7.524000px;}
.wsb0{word-spacing:7.581000px;}
.ws13c{word-spacing:7.599000px;}
.wsc5{word-spacing:7.638000px;}
.wsa3{word-spacing:7.695000px;}
.ws17e{word-spacing:7.701000px;}
.ws7b{word-spacing:7.752000px;}
.ws115{word-spacing:7.809000px;}
.ws79{word-spacing:7.866000px;}
.wsd3{word-spacing:7.923000px;}
.ws69{word-spacing:7.980000px;}
.wsa8{word-spacing:8.037000px;}
.wse0{word-spacing:8.055000px;}
.ws185{word-spacing:8.058000px;}
.ws87{word-spacing:8.094000px;}
.ws13d{word-spacing:8.109000px;}
.ws70{word-spacing:8.151000px;}
.ws98{word-spacing:8.208000px;}
.ws1c{word-spacing:8.265000px;}
.ws30{word-spacing:8.280000px;}
.ws81{word-spacing:8.322000px;}
.ws4b{word-spacing:8.379000px;}
.ws25{word-spacing:8.436000px;}
.ws77{word-spacing:8.493000px;}
.ws181{word-spacing:8.517000px;}
.ws7c{word-spacing:8.550000px;}
.ws7a{word-spacing:8.607000px;}
.ws180{word-spacing:8.619000px;}
.wse6{word-spacing:8.640000px;}
.ws31{word-spacing:8.664000px;}
.ws8e{word-spacing:8.820000px;}
.ws9b{word-spacing:8.835000px;}
.ws152{word-spacing:8.874000px;}
.ws80{word-spacing:9.120000px;}
.wsac{word-spacing:9.177000px;}
.ws12{word-spacing:9.234000px;}
.ws49{word-spacing:9.291000px;}
.ws17{word-spacing:9.348000px;}
.ws32{word-spacing:9.405000px;}
.ws27{word-spacing:9.462000px;}
.ws134{word-spacing:9.486000px;}
.ws68{word-spacing:9.576000px;}
.ws8{word-spacing:9.672000px;}
.ws21{word-spacing:9.690000px;}
.ws22{word-spacing:9.747000px;}
.ws75{word-spacing:9.804000px;}
.ws13e{word-spacing:9.894000px;}
.ws11c{word-spacing:9.918000px;}
.ws17f{word-spacing:9.945000px;}
.ws6e{word-spacing:9.975000px;}
.wsc4{word-spacing:10.032000px;}
.ws42{word-spacing:10.089000px;}
.ws175{word-spacing:10.098000px;}
.wsd6{word-spacing:10.146000px;}
.ws5f{word-spacing:10.203000px;}
.ws120{word-spacing:10.260000px;}
.wse4{word-spacing:10.440000px;}
.ws171{word-spacing:10.455000px;}
.ws172{word-spacing:10.506000px;}
.ws4d{word-spacing:10.545000px;}
.wsaa{word-spacing:10.602000px;}
.ws60{word-spacing:10.659000px;}
.wsff{word-spacing:10.665000px;}
.ws15c{word-spacing:10.710000px;}
.ws61{word-spacing:10.716000px;}
.ws100{word-spacing:10.755000px;}
.ws151{word-spacing:10.761000px;}
.ws89{word-spacing:10.773000px;}
.ws45{word-spacing:10.944000px;}
.ws62{word-spacing:11.001000px;}
.ws83{word-spacing:11.058000px;}
.wsd8{word-spacing:11.115000px;}
.wsb9{word-spacing:11.172000px;}
.ws142{word-spacing:11.322000px;}
.wsad{word-spacing:11.343000px;}
.wsb8{word-spacing:11.400000px;}
.wsa5{word-spacing:11.457000px;}
.ws135{word-spacing:11.475000px;}
.wsab{word-spacing:11.514000px;}
.ws13{word-spacing:11.628000px;}
.ws143{word-spacing:11.832000px;}
.wsc0{word-spacing:11.913000px;}
.ws64{word-spacing:11.970000px;}
.ws15d{word-spacing:11.985000px;}
.ws149{word-spacing:12.036000px;}
.ws174{word-spacing:12.087000px;}
.wsb7{word-spacing:12.198000px;}
.ws112{word-spacing:12.369000px;}
.ws10e{word-spacing:12.426000px;}
.ws110{word-spacing:12.654000px;}
.wsed{word-spacing:12.870000px;}
.wsa4{word-spacing:12.996000px;}
.ws114{word-spacing:13.110000px;}
.wsc7{word-spacing:13.395000px;}
.ws153{word-spacing:13.413000px;}
.ws15b{word-spacing:13.566000px;}
.wsc8{word-spacing:13.623000px;}
.ws10f{word-spacing:13.851000px;}
.ws10d{word-spacing:14.193000px;}
.ws139{word-spacing:14.229000px;}
.ws11f{word-spacing:14.421000px;}
.ws183{word-spacing:14.484000px;}
.ws15a{word-spacing:14.790000px;}
.ws74{word-spacing:15.048000px;}
.ws10c{word-spacing:15.162000px;}
.ws179{word-spacing:15.300000px;}
.ws113{word-spacing:15.447000px;}
.ws88{word-spacing:15.504000px;}
.ws13a{word-spacing:15.708000px;}
.ws9f{word-spacing:16.131000px;}
.ws146{word-spacing:16.677000px;}
.ws147{word-spacing:16.983000px;}
.wsa0{word-spacing:17.784000px;}
.wsbf{word-spacing:18.867000px;}
.ws182{word-spacing:19.023000px;}
.ws148{word-spacing:19.227000px;}
.wsbc{word-spacing:19.779000px;}
.ws5b{word-spacing:20.064000px;}
.ws14a{word-spacing:20.502000px;}
.ws150{word-spacing:21.216000px;}
.wsba{word-spacing:22.743000px;}
.ws6c{word-spacing:25.650000px;}
.ws130{word-spacing:29.529000px;}
.wsbe{word-spacing:42.066000px;}
.wsbd{word-spacing:47.937000px;}
._e{margin-left:-20.495100px;}
._17{margin-left:-18.858300px;}
._16{margin-left:-16.924500px;}
._d{margin-left:-14.484000px;}
._f{margin-left:-12.408000px;}
._15{margin-left:-10.321800px;}
._19{margin-left:-8.973000px;}
._18{margin-left:-7.392000px;}
._6{margin-left:-6.359700px;}
._b{margin-left:-4.984200px;}
._2{margin-left:-3.951000px;}
._4{margin-left:-2.942700px;}
._0{margin-left:-1.776000px;}
._9{width:1.036200px;}
._1{width:2.160600px;}
._7{width:3.283200px;}
._8{width:4.318800px;}
._c{width:5.518800px;}
._5{width:6.874800px;}
._3{width:8.863800px;}
._12{width:10.066200px;}
._1d{width:11.979000px;}
._10{width:14.376000px;}
._13{width:16.689000px;}
._1a{width:17.834700px;}
._1c{width:18.880200px;}
._1b{width:20.466300px;}
._a{width:39.105000px;}
._14{width:43.443000px;}
._11{width:47.160000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsd{font-size:29.250000px;}
.fs5{font-size:33.150000px;}
.fsa{font-size:37.050000px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsb{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.ye{bottom:62.550300px;}
.y4c{bottom:64.057500px;}
.yf9{bottom:64.065000px;}
.y146{bottom:64.068750px;}
.yb1{bottom:64.079850px;}
.y186{bottom:64.117050px;}
.y69{bottom:64.297050px;}
.y1c7{bottom:64.387050px;}
.y234{bottom:65.311050px;}
.y185{bottom:77.245800px;}
.y1fa{bottom:79.264200px;}
.yd{bottom:79.801050px;}
.y4b{bottom:79.803750px;}
.yf8{bottom:79.811250px;}
.y145{bottom:79.815000px;}
.yb0{bottom:79.826100px;}
.y68{bottom:80.047050px;}
.y107{bottom:80.062050px;}
.y1c6{bottom:80.133300px;}
.y233{bottom:82.561050px;}
.y184{bottom:90.374550px;}
.yf7{bottom:95.557500px;}
.y4a{bottom:95.561250px;}
.yaf{bottom:95.572350px;}
.y67{bottom:95.797050px;}
.y106{bottom:95.808300px;}
.y1c5{bottom:95.879550px;}
.yc{bottom:97.051800px;}
.y1f9{bottom:97.264200px;}
.y232{bottom:99.811050px;}
.y183{bottom:103.503300px;}
.y27d{bottom:109.428300px;}
.ybe{bottom:110.464950px;}
.yf6{bottom:111.303750px;}
.y49{bottom:111.307500px;}
.yae{bottom:111.318600px;}
.y66{bottom:111.554550px;}
.y1c4{bottom:111.625800px;}
.y1f8{bottom:115.264200px;}
.y182{bottom:116.632050px;}
.yb{bottom:118.637550px;}
.y231{bottom:121.396800px;}
.y27c{bottom:124.426800px;}
.ybd{bottom:126.961950px;}
.y48{bottom:127.053750px;}
.yad{bottom:127.064850px;}
.y65{bottom:127.300800px;}
.y1c3{bottom:127.372050px;}
.y181{bottom:129.760800px;}
.y1f7{bottom:133.264200px;}
.y230{bottom:134.311050px;}
.y27b{bottom:139.425300px;}
.y144{bottom:142.800000px;}
.yac{bottom:142.811100px;}
.y47{bottom:142.811250px;}
.yf5{bottom:142.830000px;}
.y180{bottom:142.889550px;}
.y64{bottom:143.047050px;}
.y1c2{bottom:143.118300px;}
.ybc{bottom:143.458950px;}
.y1f6{bottom:151.264200px;}
.y22f{bottom:151.561050px;}
.y27a{bottom:154.423800px;}
.y17f{bottom:156.018300px;}
.y2d{bottom:157.015200px;}
.yab{bottom:158.557350px;}
.y46{bottom:158.557500px;}
.yf4{bottom:158.576250px;}
.y63{bottom:158.819550px;}
.y1c1{bottom:158.864550px;}
.ybb{bottom:159.955950px;}
.y22e{bottom:168.811050px;}
.y17e{bottom:169.147050px;}
.y1f5{bottom:169.264200px;}
.y2c{bottom:172.761450px;}
.yaa{bottom:174.303600px;}
.y45{bottom:174.303750px;}
.yf3{bottom:174.322500px;}
.y143{bottom:174.368250px;}
.y62{bottom:174.565800px;}
.y1c0{bottom:174.610800px;}
.yba{bottom:176.452950px;}
.y17d{bottom:182.275800px;}
.y279{bottom:185.176800px;}
.y22d{bottom:186.061050px;}
.y1f4{bottom:187.264200px;}
.y2b{bottom:188.507700px;}
.y44{bottom:190.050000px;}
.ya9{bottom:190.057500px;}
.yf2{bottom:190.068750px;}
.y142{bottom:190.114500px;}
.y61{bottom:190.312050px;}
.y1bf{bottom:190.357050px;}
.yb9{bottom:192.949950px;}
.y17c{bottom:195.404550px;}
.y278{bottom:200.175300px;}
.y22c{bottom:203.311050px;}
.y2a{bottom:204.287700px;}
.y1f3{bottom:205.264200px;}
.ya8{bottom:205.803750px;}
.yf1{bottom:205.815000px;}
.y141{bottom:205.864500px;}
.y60{bottom:206.058300px;}
.y1be{bottom:206.103300px;}
.y17b{bottom:208.533300px;}
.yb8{bottom:209.446950px;}
.y29{bottom:220.033950px;}
.y22b{bottom:220.561050px;}
.yf0{bottom:221.561250px;}
.ya7{bottom:221.568750px;}
.y140{bottom:221.618250px;}
.y17a{bottom:221.662050px;}
.y43{bottom:221.675400px;}
.y5f{bottom:221.804550px;}
.y1bd{bottom:221.849550px;}
.y1f2{bottom:223.264200px;}
.yb7{bottom:225.943950px;}
.y277{bottom:230.928300px;}
.y179{bottom:234.790800px;}
.y28{bottom:235.780200px;}
.yef{bottom:237.307500px;}
.ya6{bottom:237.315000px;}
.y13f{bottom:237.364500px;}
.y42{bottom:237.436650px;}
.y5e{bottom:237.550800px;}
.y1bc{bottom:237.595800px;}
.y22a{bottom:237.811050px;}
.y1f1{bottom:241.264200px;}
.yb6{bottom:242.440950px;}
.y276{bottom:245.926800px;}
.y178{bottom:247.919550px;}
.y27{bottom:251.526450px;}
.yee{bottom:253.053750px;}
.ya5{bottom:253.061250px;}
.y13e{bottom:253.129500px;}
.y41{bottom:253.182900px;}
.y5d{bottom:253.297050px;}
.y1bb{bottom:253.342050px;}
.y229{bottom:255.061050px;}
.yb5{bottom:258.937950px;}
.y1f0{bottom:259.264200px;}
.y177{bottom:261.048300px;}
.y26{bottom:267.272700px;}
.yed{bottom:268.803750px;}
.ya4{bottom:268.807500px;}
.y13d{bottom:268.875750px;}
.y40{bottom:268.929150px;}
.y5c{bottom:269.047050px;}
.y105{bottom:269.080800px;}
.y1ba{bottom:269.088300px;}
.y228{bottom:272.311050px;}
.y176{bottom:274.177050px;}
.yb4{bottom:275.434950px;}
.y275{bottom:276.679800px;}
.y1ef{bottom:280.264200px;}
.y25{bottom:283.018950px;}
.ya3{bottom:284.553750px;}
.yec{bottom:284.568750px;}
.y13c{bottom:284.622000px;}
.y3f{bottom:284.675400px;}
.y5b{bottom:284.797050px;}
.y104{bottom:284.827050px;}
.y1b9{bottom:284.834550px;}
.y175{bottom:287.305800px;}
.y227{bottom:289.561050px;}
.yb3{bottom:291.931950px;}
.y24{bottom:298.765200px;}
.ya2{bottom:300.300000px;}
.yeb{bottom:300.315000px;}
.y13b{bottom:300.368250px;}
.y3e{bottom:300.421650px;}
.y174{bottom:300.434550px;}
.y5a{bottom:300.562050px;}
.y103{bottom:300.573300px;}
.y1b8{bottom:300.580800px;}
.y1ee{bottom:301.264200px;}
.y226{bottom:306.811050px;}
.y274{bottom:307.432800px;}
.yb2{bottom:308.428950px;}
.y173{bottom:313.563300px;}
.y23{bottom:314.511450px;}
.yea{bottom:316.061250px;}
.y13a{bottom:316.114500px;}
.y3d{bottom:316.171650px;}
.y59{bottom:316.308300px;}
.y102{bottom:316.319550px;}
.y1b7{bottom:316.327050px;}
.y273{bottom:322.431300px;}
.y225{bottom:324.061050px;}
.y172{bottom:326.692050px;}
.y22{bottom:330.257700px;}
.ye9{bottom:331.807500px;}
.y139{bottom:331.864500px;}
.ya1{bottom:332.047050px;}
.y58{bottom:332.054550px;}
.y101{bottom:332.065800px;}
.y1b6{bottom:332.073300px;}
.y272{bottom:337.429800px;}
.y171{bottom:339.820800px;}
.y224{bottom:341.311050px;}
.y21{bottom:346.011450px;}
.ye8{bottom:347.553750px;}
.y138{bottom:347.614500px;}
.y57{bottom:347.800800px;}
.ya0{bottom:347.804550px;}
.y100{bottom:347.812050px;}
.y3c{bottom:347.819550px;}
.y1ed{bottom:350.940000px;}
.y170{bottom:352.949550px;}
.y223{bottom:358.561050px;}
.y20{bottom:361.757700px;}
.ye7{bottom:363.356250px;}
.y137{bottom:363.368250px;}
.y56{bottom:363.547050px;}
.y9f{bottom:363.550800px;}
.yff{bottom:363.558300px;}
.y3b{bottom:363.565800px;}
.y16f{bottom:366.078300px;}
.y1ec{bottom:366.686250px;}
.y271{bottom:368.182800px;}
.y222{bottom:375.811050px;}
.y1f{bottom:377.503950px;}
.ye6{bottom:379.102500px;}
.y136{bottom:379.114500px;}
.y16e{bottom:379.207050px;}
.y55{bottom:379.293300px;}
.y9e{bottom:379.297050px;}
.yfe{bottom:379.304550px;}
.y3a{bottom:379.312050px;}
.y1eb{bottom:382.432500px;}
.y270{bottom:383.181300px;}
.y16d{bottom:392.335800px;}
.y221{bottom:393.060300px;}
.ye5{bottom:394.848750px;}
.y135{bottom:394.872000px;}
.yfd{bottom:395.050800px;}
.y39{bottom:395.058300px;}
.y9d{bottom:395.062050px;}
.y1ea{bottom:398.178750px;}
.y25d{bottom:405.391650px;}
.y16c{bottom:405.464550px;}
.y220{bottom:410.311050px;}
.ye4{bottom:410.595000px;}
.y134{bottom:410.618250px;}
.yfc{bottom:410.797050px;}
.y38{bottom:410.804550px;}
.y9c{bottom:410.808300px;}
.y1e9{bottom:413.925000px;}
.y26f{bottom:413.934300px;}
.y16b{bottom:418.593300px;}
.y25c{bottom:422.641650px;}
.y1e{bottom:425.553450px;}
.ye3{bottom:426.341250px;}
.y133{bottom:426.364500px;}
.y37{bottom:426.550800px;}
.y9b{bottom:426.554550px;}
.y21f{bottom:427.561050px;}
.y26e{bottom:428.932800px;}
.y16a{bottom:431.722050px;}
.y1e8{bottom:436.468500px;}
.y25b{bottom:439.891650px;}
.ye2{bottom:442.087500px;}
.y132{bottom:442.114500px;}
.y36{bottom:442.297050px;}
.y9a{bottom:442.300800px;}
.y1d{bottom:443.548950px;}
.y26d{bottom:443.931300px;}
.y71{bottom:444.769950px;}
.y21e{bottom:444.811050px;}
.y169{bottom:444.850800px;}
.y1e7{bottom:452.214750px;}
.y25a{bottom:457.141650px;}
.ye1{bottom:457.833750px;}
.y131{bottom:457.860750px;}
.y168{bottom:457.979550px;}
.y1b5{bottom:458.043300px;}
.y35{bottom:458.047050px;}
.y26c{bottom:458.929800px;}
.y70{bottom:461.266950px;}
.y1c{bottom:461.544450px;}
.y21d{bottom:462.060300px;}
.y1e6{bottom:467.961000px;}
.y167{bottom:471.108300px;}
.ye0{bottom:473.580000px;}
.y1b4{bottom:473.793300px;}
.yfb{bottom:473.797050px;}
.y34{bottom:473.804550px;}
.y99{bottom:473.838300px;}
.y259{bottom:474.391650px;}
.y6f{bottom:477.763950px;}
.y21c{bottom:479.311050px;}
.y1b{bottom:479.539950px;}
.y166{bottom:484.237050px;}
.ydf{bottom:489.326250px;}
.y130{bottom:489.466650px;}
.y33{bottom:489.550800px;}
.y98{bottom:489.584550px;}
.y26b{bottom:489.682800px;}
.y1e5{bottom:490.461750px;}
.y258{bottom:491.640900px;}
.y6e{bottom:494.260950px;}
.y165{bottom:497.365800px;}
.y1a{bottom:497.535450px;}
.y21b{bottom:500.896800px;}
.y26a{bottom:504.681300px;}
.yde{bottom:505.072500px;}
.y12f{bottom:505.212900px;}
.y32{bottom:505.297050px;}
.y97{bottom:505.330800px;}
.y1e4{bottom:506.208000px;}
.y257{bottom:508.891650px;}
.y164{bottom:510.494550px;}
.y6d{bottom:510.757950px;}
.y1b3{bottom:513.003300px;}
.y21a{bottom:513.811050px;}
.y19{bottom:515.530950px;}
.ydd{bottom:520.818750px;}
.y12e{bottom:520.959150px;}
.yfa{bottom:521.043300px;}
.y31{bottom:521.050800px;}
.y96{bottom:521.077050px;}
.y1e3{bottom:521.954250px;}
.y163{bottom:523.623300px;}
.y1b2{bottom:526.132050px;}
.y256{bottom:526.140900px;}
.y6c{bottom:527.254950px;}
.y219{bottom:531.061050px;}
.y18{bottom:533.526450px;}
.y269{bottom:535.434300px;}
.ydc{bottom:536.565000px;}
.y12d{bottom:536.705400px;}
.y162{bottom:536.752050px;}
.y30{bottom:536.797050px;}
.y95{bottom:536.823300px;}
.y1e2{bottom:537.700500px;}
.y1b1{bottom:539.260800px;}
.y255{bottom:543.391650px;}
.y6b{bottom:543.751950px;}
.y161{bottom:549.880800px;}
.y268{bottom:550.432800px;}
.y17{bottom:551.521950px;}
.ydb{bottom:552.311250px;}
.y1b0{bottom:552.389550px;}
.y12c{bottom:552.451650px;}
.y2f{bottom:552.543300px;}
.y94{bottom:552.569550px;}
.y218{bottom:552.646800px;}
.y1e1{bottom:553.446750px;}
.y6a{bottom:560.248950px;}
.y254{bottom:560.641650px;}
.y160{bottom:563.009550px;}
.y267{bottom:565.431300px;}
.y1af{bottom:565.518300px;}
.y217{bottom:565.561050px;}
.yda{bottom:568.057500px;}
.y12b{bottom:568.197900px;}
.y93{bottom:568.315800px;}
.y1e0{bottom:569.193000px;}
.y16{bottom:569.517450px;}
.y10d{bottom:574.423950px;}
.y15f{bottom:576.138300px;}
.y1ae{bottom:578.647050px;}
.y253{bottom:582.227400px;}
.y216{bottom:582.811050px;}
.yd9{bottom:583.803750px;}
.y12a{bottom:583.944150px;}
.y92{bottom:584.062050px;}
.y1df{bottom:584.939250px;}
.y15{bottom:587.512950px;}
.y15e{bottom:589.267050px;}
.y10c{bottom:590.920950px;}
.y1ad{bottom:591.775800px;}
.y252{bottom:595.141650px;}
.y266{bottom:596.184300px;}
.yd8{bottom:599.550000px;}
.y129{bottom:599.690400px;}
.y91{bottom:599.808300px;}
.y215{bottom:600.061050px;}
.y1de{bottom:600.685500px;}
.y15d{bottom:602.395800px;}
.y1ac{bottom:604.904550px;}
.y14{bottom:605.508450px;}
.y10b{bottom:607.417950px;}
.y54{bottom:611.089950px;}
.y265{bottom:611.182800px;}
.y251{bottom:612.391650px;}
.y128{bottom:615.436650px;}
.y15c{bottom:615.524550px;}
.y90{bottom:615.554550px;}
.y1dd{bottom:616.431750px;}
.y1ab{bottom:618.033300px;}
.y214{bottom:621.646800px;}
.y13{bottom:623.503950px;}
.y10a{bottom:623.914950px;}
.y264{bottom:626.181300px;}
.y53{bottom:627.586950px;}
.y15b{bottom:628.653300px;}
.y250{bottom:629.641650px;}
.y1aa{bottom:631.162050px;}
.y127{bottom:631.182900px;}
.y8f{bottom:631.300800px;}
.y1dc{bottom:632.178000px;}
.y213{bottom:634.561050px;}
.y109{bottom:640.411950px;}
.y15a{bottom:641.782050px;}
.y52{bottom:644.083950px;}
.y1a9{bottom:644.290800px;}
.y24f{bottom:646.891650px;}
.y126{bottom:646.929150px;}
.y8e{bottom:647.047050px;}
.y1db{bottom:647.924250px;}
.y159{bottom:654.910800px;}
.y212{bottom:656.146800px;}
.y108{bottom:656.908950px;}
.y263{bottom:656.934300px;}
.y1a8{bottom:657.419550px;}
.y51{bottom:660.580950px;}
.y125{bottom:662.675400px;}
.y8d{bottom:662.797050px;}
.yd7{bottom:662.804550px;}
.ya{bottom:667.434300px;}
.y158{bottom:668.039550px;}
.y24e{bottom:668.477400px;}
.y1da{bottom:670.425000px;}
.y1a7{bottom:670.548300px;}
.y211{bottom:673.396800px;}
.y50{bottom:677.077950px;}
.y124{bottom:678.429150px;}
.yd6{bottom:678.550800px;}
.y8c{bottom:678.569550px;}
.y157{bottom:681.168300px;}
.y24d{bottom:681.391650px;}
.y1a6{bottom:683.677050px;}
.y9{bottom:685.434300px;}
.y1d9{bottom:686.175000px;}
.y4f{bottom:693.574950px;}
.y123{bottom:694.175400px;}
.y156{bottom:694.293300px;}
.yd5{bottom:694.297050px;}
.y8b{bottom:694.315800px;}
.y1a5{bottom:696.805800px;}
.y24c{bottom:698.641650px;}
.y262{bottom:703.434300px;}
.y122{bottom:709.932900px;}
.y1a4{bottom:709.934550px;}
.y8a{bottom:710.062050px;}
.y4e{bottom:710.071950px;}
.yd4{bottom:710.080800px;}
.y210{bottom:714.638550px;}
.y24b{bottom:715.891650px;}
.y1a3{bottom:723.063300px;}
.y8{bottom:724.398300px;}
.y1d8{bottom:725.606250px;}
.y121{bottom:725.679150px;}
.y89{bottom:725.808300px;}
.yd3{bottom:725.827050px;}
.y4d{bottom:726.568950px;}
.y20f{bottom:732.638550px;}
.y24a{bottom:733.141650px;}
.y155{bottom:733.687050px;}
.y1a2{bottom:736.192050px;}
.y261{bottom:736.410300px;}
.y28d{bottom:737.799300px;}
.y1d7{bottom:741.352500px;}
.y120{bottom:741.425400px;}
.y88{bottom:741.554550px;}
.yd2{bottom:741.573300px;}
.y1a1{bottom:749.320800px;}
.y154{bottom:749.433300px;}
.y249{bottom:750.391650px;}
.y20e{bottom:750.638550px;}
.y28c{bottom:752.797800px;}
.y11{bottom:757.050000px;}
.y1d6{bottom:757.098750px;}
.y11f{bottom:757.182900px;}
.y87{bottom:757.300800px;}
.yd1{bottom:757.319550px;}
.y1a0{bottom:762.449550px;}
.y153{bottom:765.179550px;}
.y248{bottom:767.641650px;}
.y28b{bottom:767.796300px;}
.y20d{bottom:768.638550px;}
.y7{bottom:772.407300px;}
.y1d5{bottom:772.845000px;}
.y11e{bottom:772.929150px;}
.y86{bottom:773.047050px;}
.yd0{bottom:773.065800px;}
.y19f{bottom:775.578300px;}
.y10{bottom:778.050000px;}
.y152{bottom:780.925800px;}
.y260{bottom:781.416300px;}
.y28a{bottom:782.794800px;}
.y247{bottom:784.891650px;}
.y20c{bottom:786.638550px;}
.y1d4{bottom:788.591250px;}
.y11d{bottom:788.675400px;}
.y19e{bottom:788.707050px;}
.ycf{bottom:788.812050px;}
.y85{bottom:788.819550px;}
.y151{bottom:796.672050px;}
.y289{bottom:797.793300px;}
.yf{bottom:799.050000px;}
.y19d{bottom:801.835800px;}
.y246{bottom:802.141650px;}
.y1d3{bottom:804.337500px;}
.y11c{bottom:804.425400px;}
.yce{bottom:804.558300px;}
.y84{bottom:804.565800px;}
.y20b{bottom:804.638550px;}
.y150{bottom:812.437050px;}
.y19c{bottom:814.964550px;}
.y245{bottom:819.391650px;}
.y1d2{bottom:820.083750px;}
.y11b{bottom:820.171650px;}
.ycd{bottom:820.304550px;}
.y83{bottom:820.312050px;}
.y6{bottom:820.416300px;}
.y20a{bottom:822.638550px;}
.y25f{bottom:826.422300px;}
.y19b{bottom:828.093300px;}
.y14f{bottom:828.183300px;}
.y288{bottom:828.526800px;}
.y1d1{bottom:835.830000px;}
.y11a{bottom:835.921650px;}
.ycc{bottom:836.050800px;}
.y82{bottom:836.058300px;}
.y244{bottom:836.641650px;}
.y209{bottom:840.638550px;}
.y19a{bottom:841.222050px;}
.y14e{bottom:843.929550px;}
.y1d0{bottom:851.576250px;}
.ycb{bottom:851.797050px;}
.y81{bottom:851.804550px;}
.y243{bottom:853.891650px;}
.y199{bottom:854.350800px;}
.y208{bottom:858.638550px;}
.y287{bottom:859.279800px;}
.y14d{bottom:859.675800px;}
.y1cf{bottom:867.322500px;}
.y198{bottom:867.479550px;}
.y119{bottom:867.493800px;}
.y80{bottom:867.550800px;}
.yca{bottom:867.554550px;}
.y5{bottom:868.425300px;}
.y242{bottom:871.141650px;}
.y25e{bottom:871.428300px;}
.y14c{bottom:875.422050px;}
.y207{bottom:876.638550px;}
.y197{bottom:880.608300px;}
.y1ce{bottom:883.068750px;}
.y118{bottom:883.240050px;}
.y7f{bottom:883.297050px;}
.yc9{bottom:883.300800px;}
.y241{bottom:888.391650px;}
.y286{bottom:890.032800px;}
.y14b{bottom:891.183300px;}
.y196{bottom:893.737050px;}
.y206{bottom:894.638550px;}
.y1cd{bottom:898.815000px;}
.y117{bottom:898.986300px;}
.yc8{bottom:899.047050px;}
.y7e{bottom:899.050800px;}
.y240{bottom:905.641650px;}
.y195{bottom:906.865800px;}
.y14a{bottom:906.929550px;}
.y205{bottom:912.638550px;}
.y1cc{bottom:914.561250px;}
.y116{bottom:914.758800px;}
.y7d{bottom:914.797050px;}
.yc7{bottom:914.800800px;}
.y4{bottom:916.434300px;}
.y194{bottom:919.994550px;}
.y285{bottom:920.785800px;}
.y149{bottom:922.675800px;}
.y23f{bottom:922.891650px;}
.y12{bottom:926.409600px;}
.y1cb{bottom:930.307500px;}
.y115{bottom:930.505050px;}
.yc6{bottom:930.547050px;}
.y7c{bottom:930.569550px;}
.y204{bottom:930.638550px;}
.y193{bottom:933.123300px;}
.y284{bottom:935.784300px;}
.y148{bottom:938.422050px;}
.y23e{bottom:940.141650px;}
.y1ca{bottom:946.053750px;}
.y114{bottom:946.251300px;}
.y192{bottom:946.252050px;}
.yc5{bottom:946.300800px;}
.y7b{bottom:946.315800px;}
.y203{bottom:948.638550px;}
.y147{bottom:954.168300px;}
.y191{bottom:959.380800px;}
.y23d{bottom:961.727400px;}
.y1c9{bottom:961.800000px;}
.y113{bottom:961.997550px;}
.yc4{bottom:962.047050px;}
.y7a{bottom:962.062050px;}
.y283{bottom:966.537300px;}
.y202{bottom:966.638550px;}
.y190{bottom:972.509550px;}
.y23c{bottom:974.641650px;}
.y1c8{bottom:977.550000px;}
.y112{bottom:977.743800px;}
.y79{bottom:977.808300px;}
.yc3{bottom:977.819550px;}
.y201{bottom:984.638550px;}
.y18f{bottom:985.638300px;}
.y23b{bottom:991.891650px;}
.y111{bottom:993.490050px;}
.y78{bottom:993.554550px;}
.yc2{bottom:993.565800px;}
.y282{bottom:997.290300px;}
.y18e{bottom:998.767050px;}
.y200{bottom:1002.638550px;}
.y23a{bottom:1009.141650px;}
.y110{bottom:1009.236300px;}
.y77{bottom:1009.300800px;}
.yc1{bottom:1009.312050px;}
.y18d{bottom:1011.895800px;}
.y1ff{bottom:1020.638550px;}
.y10f{bottom:1024.982550px;}
.y18c{bottom:1025.024550px;}
.y76{bottom:1025.047050px;}
.yc0{bottom:1025.058300px;}
.y239{bottom:1026.391650px;}
.y281{bottom:1028.043300px;}
.y18b{bottom:1038.153300px;}
.y1fe{bottom:1038.638550px;}
.y10e{bottom:1040.732550px;}
.y75{bottom:1040.797050px;}
.ybf{bottom:1040.804550px;}
.y280{bottom:1043.041800px;}
.y238{bottom:1043.641650px;}
.y18a{bottom:1051.282050px;}
.y74{bottom:1056.550800px;}
.y1fd{bottom:1056.638550px;}
.y27f{bottom:1058.040300px;}
.y237{bottom:1060.890900px;}
.y189{bottom:1064.410800px;}
.y73{bottom:1072.297050px;}
.y1fc{bottom:1074.638550px;}
.y188{bottom:1077.539550px;}
.y236{bottom:1078.141650px;}
.y72{bottom:1088.043300px;}
.y27e{bottom:1088.793300px;}
.y187{bottom:1090.668300px;}
.y1fb{bottom:1092.638550px;}
.y235{bottom:1095.392400px;}
.y2e{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h7{height:26.804883px;}
.h23{height:36.495000px;}
.h8{height:36.681152px;}
.h3{height:38.812500px;}
.hb{height:38.838867px;}
.h9{height:41.238281px;}
.h29{height:41.241281px;}
.h28{height:41.244281px;}
.h1f{height:43.154297px;}
.h13{height:43.794000px;}
.h27{height:44.144883px;}
.h25{height:44.147883px;}
.h26{height:44.150883px;}
.h2a{height:44.233154px;}
.h14{height:46.143000px;}
.hc{height:46.227000px;}
.h11{height:47.469727px;}
.h6{height:48.450293px;}
.h2{height:48.515625px;}
.h1b{height:49.202550px;}
.h24{height:49.221000px;}
.h17{height:49.247550px;}
.h1a{height:49.277550px;}
.he{height:49.292550px;}
.h1d{height:49.307550px;}
.h1e{height:49.321950px;}
.h16{height:49.322550px;}
.h22{height:49.337550px;}
.h18{height:49.351950px;}
.h15{height:49.352550px;}
.h12{height:49.367550px;}
.hf{height:49.382550px;}
.h21{height:49.383150px;}
.h19{height:49.396950px;}
.hd{height:49.397550px;}
.h1c{height:49.411950px;}
.h10{height:49.412550px;}
.h20{height:49.413150px;}
.h4{height:49.728516px;}
.ha{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:73.302450px;}
.x5{left:95.562450px;}
.x7{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:238.992150px;}
.x8{left:251.457000px;}
.xc{left:300.348750px;}
.x3{left:584.586600px;}
.xb{left:816.003600px;}
.xd{left:817.278150px;}
.x9{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v6{vertical-align:-18.133333pt;}
.v2{vertical-align:-15.413333pt;}
.v5{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.413333pt;}
.v4{vertical-align:17.200000pt;}
.v1{vertical-align:18.133333pt;}
.ls38{letter-spacing:-6.400000pt;}
.ls2c{letter-spacing:-2.800000pt;}
.ls19{letter-spacing:-1.469333pt;}
.lsb{letter-spacing:-1.344000pt;}
.ls48{letter-spacing:-1.296533pt;}
.ls30{letter-spacing:-1.240000pt;}
.ls45{letter-spacing:-1.178667pt;}
.ls12{letter-spacing:-1.104000pt;}
.ls3e{letter-spacing:-1.005333pt;}
.ls51{letter-spacing:-1.001867pt;}
.ls14{letter-spacing:-0.962667pt;}
.ls11{letter-spacing:-0.861333pt;}
.ls49{letter-spacing:-0.854533pt;}
.ls3d{letter-spacing:-0.832000pt;}
.ls2e{letter-spacing:-0.760000pt;}
.lse{letter-spacing:-0.709333pt;}
.ls46{letter-spacing:-0.707200pt;}
.ls18{letter-spacing:-0.672000pt;}
.ls15{letter-spacing:-0.658667pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.624000pt;}
.lsa{letter-spacing:-0.608000pt;}
.ls2a{letter-spacing:-0.560000pt;}
.ls47{letter-spacing:-0.559867pt;}
.ls44{letter-spacing:-0.520000pt;}
.ls16{letter-spacing:-0.506667pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.456000pt;}
.ls50{letter-spacing:-0.442000pt;}
.ls17{letter-spacing:-0.432000pt;}
.ls28{letter-spacing:-0.400000pt;}
.ls29{letter-spacing:-0.360000pt;}
.lsf{letter-spacing:-0.354667pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.304000pt;}
.ls2d{letter-spacing:-0.280000pt;}
.ls61{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.202667pt;}
.ls56{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls5f{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000533pt;}
.ls4e{letter-spacing:0.000667pt;}
.ls3a{letter-spacing:0.001067pt;}
.ls4d{letter-spacing:0.001333pt;}
.ls41{letter-spacing:0.003600pt;}
.ls3{letter-spacing:0.003733pt;}
.ls4b{letter-spacing:0.004000pt;}
.ls4{letter-spacing:0.006933pt;}
.ls4c{letter-spacing:0.007467pt;}
.ls3b{letter-spacing:0.008533pt;}
.ls3c{letter-spacing:0.009600pt;}
.ls5{letter-spacing:0.010133pt;}
.ls4a{letter-spacing:0.010667pt;}
.ls42{letter-spacing:0.011733pt;}
.ls43{letter-spacing:0.012267pt;}
.ls40{letter-spacing:0.025067pt;}
.ls52{letter-spacing:0.026667pt;}
.ls5c{letter-spacing:0.096000pt;}
.ls55{letter-spacing:0.240000pt;}
.ls59{letter-spacing:0.288000pt;}
.ls5d{letter-spacing:0.384000pt;}
.ls54{letter-spacing:0.528000pt;}
.ls53{letter-spacing:0.576000pt;}
.ls58{letter-spacing:0.624000pt;}
.ls5e{letter-spacing:0.720000pt;}
.ls6{letter-spacing:0.853333pt;}
.ls57{letter-spacing:1.008000pt;}
.ls5b{letter-spacing:1.296000pt;}
.ls5a{letter-spacing:1.392000pt;}
.ls60{letter-spacing:1.680000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls8{letter-spacing:2.400000pt;}
.ls2{letter-spacing:2.460000pt;}
.ls20{letter-spacing:2.532000pt;}
.ls22{letter-spacing:2.680000pt;}
.ls33{letter-spacing:2.684000pt;}
.ls1b{letter-spacing:2.688000pt;}
.ls21{letter-spacing:2.692000pt;}
.ls1d{letter-spacing:2.712000pt;}
.ls1c{letter-spacing:2.720000pt;}
.ls1e{letter-spacing:2.724000pt;}
.ls36{letter-spacing:2.728000pt;}
.ls34{letter-spacing:2.732000pt;}
.ls1f{letter-spacing:2.736000pt;}
.ls24{letter-spacing:2.740000pt;}
.ls32{letter-spacing:2.748000pt;}
.ls25{letter-spacing:2.780000pt;}
.ls1{letter-spacing:3.413333pt;}
.ls39{letter-spacing:3.506133pt;}
.ls23{letter-spacing:3.892000pt;}
.ls35{letter-spacing:4.004000pt;}
.ls4f{letter-spacing:4.106667pt;}
.ls31{letter-spacing:4.600000pt;}
.ls26{letter-spacing:4.720000pt;}
.ls37{letter-spacing:5.440000pt;}
.ls9{letter-spacing:13.104000pt;}
.ws158{word-spacing:-29.466667pt;}
.ws2{word-spacing:-13.393333pt;}
.wscc{word-spacing:-12.085333pt;}
.ws4{word-spacing:-11.501333pt;}
.ws3b{word-spacing:-11.400000pt;}
.ws3d{word-spacing:-11.248000pt;}
.ws55{word-spacing:-11.096000pt;}
.ws18b{word-spacing:-11.013333pt;}
.ws7f{word-spacing:-10.994667pt;}
.ws119{word-spacing:-10.986667pt;}
.ws54{word-spacing:-10.944000pt;}
.ws9e{word-spacing:-10.896000pt;}
.ws3c{word-spacing:-10.893333pt;}
.wsb2{word-spacing:-10.842667pt;}
.ws0{word-spacing:-10.837333pt;}
.ws3e{word-spacing:-10.741333pt;}
.ws20{word-spacing:-10.656000pt;}
.ws53{word-spacing:-10.538667pt;}
.ws3f{word-spacing:-10.416000pt;}
.ws41{word-spacing:-10.368000pt;}
.ws7d{word-spacing:-10.320000pt;}
.ws18c{word-spacing:-10.224000pt;}
.ws1f{word-spacing:-9.648000pt;}
.ws48{word-spacing:-9.373333pt;}
.ws40{word-spacing:-9.312000pt;}
.wsd1{word-spacing:-9.160000pt;}
.wscd{word-spacing:-9.000000pt;}
.wscf{word-spacing:-8.880000pt;}
.wsd0{word-spacing:-8.760000pt;}
.wsf8{word-spacing:-8.680000pt;}
.wsce{word-spacing:-8.600000pt;}
.wsd2{word-spacing:-8.520000pt;}
.ws5{word-spacing:-7.475867pt;}
.ws3{word-spacing:-7.141333pt;}
.ws126{word-spacing:-6.621333pt;}
.ws117{word-spacing:-6.482667pt;}
.ws116{word-spacing:-6.309333pt;}
.ws118{word-spacing:-6.136000pt;}
.ws127{word-spacing:-5.962667pt;}
.wsf7{word-spacing:-5.902000pt;}
.ws128{word-spacing:-5.893333pt;}
.ws156{word-spacing:-5.451333pt;}
.wsf9{word-spacing:-5.440000pt;}
.ws12a{word-spacing:-5.333467pt;}
.ws129{word-spacing:-5.186133pt;}
.ws12c{word-spacing:-5.038800pt;}
.ws157{word-spacing:-4.891467pt;}
.ws12b{word-spacing:-4.596800pt;}
.ws159{word-spacing:-4.106667pt;}
.ws191{word-spacing:-3.946667pt;}
.ws190{word-spacing:-3.413333pt;}
.ws140{word-spacing:-3.218667pt;}
.ws163{word-spacing:-3.082667pt;}
.ws18d{word-spacing:-2.912000pt;}
.wsc{word-spacing:-2.560000pt;}
.ws13b{word-spacing:-2.538667pt;}
.ws1e{word-spacing:-2.453333pt;}
.ws16b{word-spacing:-2.402667pt;}
.ws18f{word-spacing:-2.400000pt;}
.ws1{word-spacing:-2.346667pt;}
.ws164{word-spacing:-2.221333pt;}
.ws1a4{word-spacing:-1.680000pt;}
.ws1a0{word-spacing:-1.632000pt;}
.ws9d{word-spacing:-1.368000pt;}
.ws162{word-spacing:-1.314667pt;}
.ws13f{word-spacing:-1.224000pt;}
.ws196{word-spacing:-1.200000pt;}
.ws155{word-spacing:-1.178667pt;}
.ws18e{word-spacing:-1.120000pt;}
.ws193{word-spacing:-1.104000pt;}
.ws192{word-spacing:-0.912000pt;}
.ws165{word-spacing:-0.861333pt;}
.ws188{word-spacing:-0.725333pt;}
.ws136{word-spacing:-0.680000pt;}
.ws137{word-spacing:-0.634667pt;}
.ws186{word-spacing:-0.589333pt;}
.ws19f{word-spacing:-0.576000pt;}
.ws197{word-spacing:-0.528000pt;}
.ws11d{word-spacing:-0.456000pt;}
.ws17d{word-spacing:-0.453333pt;}
.ws19b{word-spacing:-0.432000pt;}
.ws16a{word-spacing:-0.408000pt;}
.ws1a2{word-spacing:-0.384000pt;}
.ws123{word-spacing:-0.320000pt;}
.ws1a5{word-spacing:-0.144000pt;}
.ws125{word-spacing:-0.034667pt;}
.ws6{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.101333pt;}
.ws47{word-spacing:0.152000pt;}
.wsd9{word-spacing:0.160000pt;}
.wse9{word-spacing:0.200000pt;}
.ws8f{word-spacing:0.202667pt;}
.ws19e{word-spacing:0.240000pt;}
.ws198{word-spacing:0.288000pt;}
.ws111{word-spacing:0.304000pt;}
.ws195{word-spacing:0.336000pt;}
.ws5a{word-spacing:0.354667pt;}
.ws36{word-spacing:0.405333pt;}
.ws12f{word-spacing:0.426667pt;}
.wsdf{word-spacing:0.480000pt;}
.wsaf{word-spacing:0.506667pt;}
.ws19a{word-spacing:0.528000pt;}
.ws76{word-spacing:0.557333pt;}
.ws189{word-spacing:0.589333pt;}
.wsfc{word-spacing:0.600000pt;}
.ws11{word-spacing:0.608000pt;}
.ws1a1{word-spacing:0.624000pt;}
.wsdd{word-spacing:0.680000pt;}
.wsca{word-spacing:0.709333pt;}
.wse2{word-spacing:0.720000pt;}
.ws5c{word-spacing:0.760000pt;}
.ws94{word-spacing:0.810667pt;}
.ws154{word-spacing:0.816000pt;}
.ws176{word-spacing:0.861333pt;}
.ws166{word-spacing:0.906667pt;}
.ws63{word-spacing:0.912000pt;}
.ws18a{word-spacing:0.952000pt;}
.wsb{word-spacing:0.960000pt;}
.ws57{word-spacing:0.962667pt;}
.wsbb{word-spacing:1.013333pt;}
.ws16e{word-spacing:1.042667pt;}
.wsc3{word-spacing:1.064000pt;}
.wse1{word-spacing:1.080000pt;}
.ws109{word-spacing:1.120000pt;}
.ws14c{word-spacing:1.133333pt;}
.ws10a{word-spacing:1.160000pt;}
.ws91{word-spacing:1.165333pt;}
.ws8c{word-spacing:1.216000pt;}
.wsa{word-spacing:1.226667pt;}
.wsf6{word-spacing:1.240000pt;}
.ws90{word-spacing:1.266667pt;}
.wsf2{word-spacing:1.280000pt;}
.ws11b{word-spacing:1.349333pt;}
.ws187{word-spacing:1.360000pt;}
.ws58{word-spacing:1.368000pt;}
.ws194{word-spacing:1.392000pt;}
.ws1a{word-spacing:1.418667pt;}
.ws199{word-spacing:1.488000pt;}
.ws12e{word-spacing:1.493333pt;}
.ws51{word-spacing:1.520000pt;}
.ws19{word-spacing:1.570667pt;}
.ws14{word-spacing:1.621333pt;}
.ws138{word-spacing:1.632000pt;}
.wsd5{word-spacing:1.722667pt;}
.ws104{word-spacing:1.760000pt;}
.wsc2{word-spacing:1.773333pt;}
.ws105{word-spacing:1.800000pt;}
.ws66{word-spacing:1.824000pt;}
.ws107{word-spacing:1.880000pt;}
.ws145{word-spacing:1.904000pt;}
.ws8a{word-spacing:1.925333pt;}
.ws12d{word-spacing:1.973333pt;}
.ws2c{word-spacing:1.976000pt;}
.ws17a{word-spacing:1.994667pt;}
.wsc6{word-spacing:2.077333pt;}
.ws169{word-spacing:2.085333pt;}
.ws19d{word-spacing:2.112000pt;}
.ws35{word-spacing:2.128000pt;}
.ws6b{word-spacing:2.178667pt;}
.ws103{word-spacing:2.200000pt;}
.ws95{word-spacing:2.229333pt;}
.ws124{word-spacing:2.240000pt;}
.ws5d{word-spacing:2.280000pt;}
.ws178{word-spacing:2.312000pt;}
.wsf0{word-spacing:2.320000pt;}
.wsc1{word-spacing:2.330667pt;}
.ws67{word-spacing:2.381333pt;}
.ws19c{word-spacing:2.400000pt;}
.ws121{word-spacing:2.432000pt;}
.ws108{word-spacing:2.440000pt;}
.ws29{word-spacing:2.482667pt;}
.wsfe{word-spacing:2.520000pt;}
.wsa9{word-spacing:2.533333pt;}
.ws17c{word-spacing:2.538667pt;}
.ws7{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.584000pt;}
.ws18{word-spacing:2.634667pt;}
.ws14d{word-spacing:2.674667pt;}
.ws96{word-spacing:2.685333pt;}
.wsda{word-spacing:2.720000pt;}
.ws56{word-spacing:2.736000pt;}
.wsdb{word-spacing:2.760000pt;}
.ws9a{word-spacing:2.837333pt;}
.ws10b{word-spacing:2.880000pt;}
.wse3{word-spacing:2.920000pt;}
.ws24{word-spacing:2.938667pt;}
.wsf{word-spacing:2.976000pt;}
.ws99{word-spacing:2.989333pt;}
.ws1a3{word-spacing:3.024000pt;}
.wse{word-spacing:3.037333pt;}
.ws9c{word-spacing:3.040000pt;}
.ws16d{word-spacing:3.082667pt;}
.ws44{word-spacing:3.090667pt;}
.ws39{word-spacing:3.120000pt;}
.ws2e{word-spacing:3.141333pt;}
.wsb3{word-spacing:3.146667pt;}
.wsdc{word-spacing:3.160000pt;}
.wsc9{word-spacing:3.192000pt;}
.ws101{word-spacing:3.200000pt;}
.wsb1{word-spacing:3.216000pt;}
.ws131{word-spacing:3.218667pt;}
.wse5{word-spacing:3.240000pt;}
.ws3a{word-spacing:3.264000pt;}
.ws84{word-spacing:3.293333pt;}
.ws9{word-spacing:3.306667pt;}
.ws2f{word-spacing:3.394667pt;}
.ws1d{word-spacing:3.445333pt;}
.ws173{word-spacing:3.490667pt;}
.ws97{word-spacing:3.496000pt;}
.wsf1{word-spacing:3.520000pt;}
.ws141{word-spacing:3.536000pt;}
.ws11a{word-spacing:3.546667pt;}
.ws2a{word-spacing:3.637333pt;}
.wsec{word-spacing:3.640000pt;}
.ws4f{word-spacing:3.648000pt;}
.ws15f{word-spacing:3.672000pt;}
.wseb{word-spacing:3.680000pt;}
.ws7e{word-spacing:3.696000pt;}
.ws1b{word-spacing:3.698667pt;}
.ws34{word-spacing:3.749333pt;}
.ws168{word-spacing:3.762667pt;}
.ws6a{word-spacing:3.800000pt;}
.wsfb{word-spacing:3.840000pt;}
.wsae{word-spacing:3.850667pt;}
.ws14e{word-spacing:3.898667pt;}
.ws28{word-spacing:3.901333pt;}
.wsde{word-spacing:3.920000pt;}
.ws144{word-spacing:3.944000pt;}
.wsd4{word-spacing:3.946667pt;}
.ws4a{word-spacing:3.952000pt;}
.wsfa{word-spacing:4.000000pt;}
.ws85{word-spacing:4.002667pt;}
.ws6d{word-spacing:4.053333pt;}
.ws50{word-spacing:4.104000pt;}
.ws65{word-spacing:4.205333pt;}
.wsd{word-spacing:4.261333pt;}
.ws86{word-spacing:4.306667pt;}
.ws106{word-spacing:4.320000pt;}
.ws16c{word-spacing:4.397333pt;}
.ws5e{word-spacing:4.408000pt;}
.ws78{word-spacing:4.560000pt;}
.ws16f{word-spacing:4.578667pt;}
.wsfd{word-spacing:4.600000pt;}
.wsa1{word-spacing:4.610667pt;}
.ws52{word-spacing:4.661333pt;}
.wsb6{word-spacing:4.712000pt;}
.wsf3{word-spacing:4.720000pt;}
.wsf4{word-spacing:4.760000pt;}
.wsa7{word-spacing:4.762667pt;}
.ws8d{word-spacing:4.813333pt;}
.ws15{word-spacing:4.864000pt;}
.ws33{word-spacing:4.914667pt;}
.ws73{word-spacing:4.965333pt;}
.ws16{word-spacing:5.016000pt;}
.ws38{word-spacing:5.066667pt;}
.wsb4{word-spacing:5.117333pt;}
.wsee{word-spacing:5.120000pt;}
.ws167{word-spacing:5.122667pt;}
.wsef{word-spacing:5.160000pt;}
.ws10{word-spacing:5.168000pt;}
.ws170{word-spacing:5.213333pt;}
.ws2d{word-spacing:5.218667pt;}
.ws92{word-spacing:5.269333pt;}
.ws160{word-spacing:5.304000pt;}
.ws26{word-spacing:5.320000pt;}
.ws132{word-spacing:5.394667pt;}
.ws82{word-spacing:5.522667pt;}
.ws14b{word-spacing:5.530667pt;}
.wsea{word-spacing:5.560000pt;}
.wsa6{word-spacing:5.573333pt;}
.ws133{word-spacing:5.576000pt;}
.ws17b{word-spacing:5.621333pt;}
.ws71{word-spacing:5.624000pt;}
.wscb{word-spacing:5.674667pt;}
.wsb5{word-spacing:5.725333pt;}
.ws4e{word-spacing:5.776000pt;}
.ws122{word-spacing:5.826667pt;}
.ws177{word-spacing:5.848000pt;}
.ws43{word-spacing:5.877333pt;}
.ws14f{word-spacing:5.893333pt;}
.ws184{word-spacing:5.938667pt;}
.wsd7{word-spacing:5.978667pt;}
.ws8b{word-spacing:6.029333pt;}
.ws72{word-spacing:6.080000pt;}
.ws11e{word-spacing:6.130667pt;}
.ws37{word-spacing:6.181333pt;}
.ws4c{word-spacing:6.232000pt;}
.ws46{word-spacing:6.333333pt;}
.wsa2{word-spacing:6.384000pt;}
.ws102{word-spacing:6.400000pt;}
.ws161{word-spacing:6.437333pt;}
.wse7{word-spacing:6.440000pt;}
.wse8{word-spacing:6.480000pt;}
.ws59{word-spacing:6.586667pt;}
.ws93{word-spacing:6.637333pt;}
.wsf5{word-spacing:6.640000pt;}
.ws15e{word-spacing:6.664000pt;}
.ws23{word-spacing:6.688000pt;}
.wsb0{word-spacing:6.738667pt;}
.ws13c{word-spacing:6.754667pt;}
.wsc5{word-spacing:6.789333pt;}
.wsa3{word-spacing:6.840000pt;}
.ws17e{word-spacing:6.845333pt;}
.ws7b{word-spacing:6.890667pt;}
.ws115{word-spacing:6.941333pt;}
.ws79{word-spacing:6.992000pt;}
.wsd3{word-spacing:7.042667pt;}
.ws69{word-spacing:7.093333pt;}
.wsa8{word-spacing:7.144000pt;}
.wse0{word-spacing:7.160000pt;}
.ws185{word-spacing:7.162667pt;}
.ws87{word-spacing:7.194667pt;}
.ws13d{word-spacing:7.208000pt;}
.ws70{word-spacing:7.245333pt;}
.ws98{word-spacing:7.296000pt;}
.ws1c{word-spacing:7.346667pt;}
.ws30{word-spacing:7.360000pt;}
.ws81{word-spacing:7.397333pt;}
.ws4b{word-spacing:7.448000pt;}
.ws25{word-spacing:7.498667pt;}
.ws77{word-spacing:7.549333pt;}
.ws181{word-spacing:7.570667pt;}
.ws7c{word-spacing:7.600000pt;}
.ws7a{word-spacing:7.650667pt;}
.ws180{word-spacing:7.661333pt;}
.wse6{word-spacing:7.680000pt;}
.ws31{word-spacing:7.701333pt;}
.ws8e{word-spacing:7.840000pt;}
.ws9b{word-spacing:7.853333pt;}
.ws152{word-spacing:7.888000pt;}
.ws80{word-spacing:8.106667pt;}
.wsac{word-spacing:8.157333pt;}
.ws12{word-spacing:8.208000pt;}
.ws49{word-spacing:8.258667pt;}
.ws17{word-spacing:8.309333pt;}
.ws32{word-spacing:8.360000pt;}
.ws27{word-spacing:8.410667pt;}
.ws134{word-spacing:8.432000pt;}
.ws68{word-spacing:8.512000pt;}
.ws8{word-spacing:8.597333pt;}
.ws21{word-spacing:8.613333pt;}
.ws22{word-spacing:8.664000pt;}
.ws75{word-spacing:8.714667pt;}
.ws13e{word-spacing:8.794667pt;}
.ws11c{word-spacing:8.816000pt;}
.ws17f{word-spacing:8.840000pt;}
.ws6e{word-spacing:8.866667pt;}
.wsc4{word-spacing:8.917333pt;}
.ws42{word-spacing:8.968000pt;}
.ws175{word-spacing:8.976000pt;}
.wsd6{word-spacing:9.018667pt;}
.ws5f{word-spacing:9.069333pt;}
.ws120{word-spacing:9.120000pt;}
.wse4{word-spacing:9.280000pt;}
.ws171{word-spacing:9.293333pt;}
.ws172{word-spacing:9.338667pt;}
.ws4d{word-spacing:9.373333pt;}
.wsaa{word-spacing:9.424000pt;}
.ws60{word-spacing:9.474667pt;}
.wsff{word-spacing:9.480000pt;}
.ws15c{word-spacing:9.520000pt;}
.ws61{word-spacing:9.525333pt;}
.ws100{word-spacing:9.560000pt;}
.ws151{word-spacing:9.565333pt;}
.ws89{word-spacing:9.576000pt;}
.ws45{word-spacing:9.728000pt;}
.ws62{word-spacing:9.778667pt;}
.ws83{word-spacing:9.829333pt;}
.wsd8{word-spacing:9.880000pt;}
.wsb9{word-spacing:9.930667pt;}
.ws142{word-spacing:10.064000pt;}
.wsad{word-spacing:10.082667pt;}
.wsb8{word-spacing:10.133333pt;}
.wsa5{word-spacing:10.184000pt;}
.ws135{word-spacing:10.200000pt;}
.wsab{word-spacing:10.234667pt;}
.ws13{word-spacing:10.336000pt;}
.ws143{word-spacing:10.517333pt;}
.wsc0{word-spacing:10.589333pt;}
.ws64{word-spacing:10.640000pt;}
.ws15d{word-spacing:10.653333pt;}
.ws149{word-spacing:10.698667pt;}
.ws174{word-spacing:10.744000pt;}
.wsb7{word-spacing:10.842667pt;}
.ws112{word-spacing:10.994667pt;}
.ws10e{word-spacing:11.045333pt;}
.ws110{word-spacing:11.248000pt;}
.wsed{word-spacing:11.440000pt;}
.wsa4{word-spacing:11.552000pt;}
.ws114{word-spacing:11.653333pt;}
.wsc7{word-spacing:11.906667pt;}
.ws153{word-spacing:11.922667pt;}
.ws15b{word-spacing:12.058667pt;}
.wsc8{word-spacing:12.109333pt;}
.ws10f{word-spacing:12.312000pt;}
.ws10d{word-spacing:12.616000pt;}
.ws139{word-spacing:12.648000pt;}
.ws11f{word-spacing:12.818667pt;}
.ws183{word-spacing:12.874667pt;}
.ws15a{word-spacing:13.146667pt;}
.ws74{word-spacing:13.376000pt;}
.ws10c{word-spacing:13.477333pt;}
.ws179{word-spacing:13.600000pt;}
.ws113{word-spacing:13.730667pt;}
.ws88{word-spacing:13.781333pt;}
.ws13a{word-spacing:13.962667pt;}
.ws9f{word-spacing:14.338667pt;}
.ws146{word-spacing:14.824000pt;}
.ws147{word-spacing:15.096000pt;}
.wsa0{word-spacing:15.808000pt;}
.wsbf{word-spacing:16.770667pt;}
.ws182{word-spacing:16.909333pt;}
.ws148{word-spacing:17.090667pt;}
.wsbc{word-spacing:17.581333pt;}
.ws5b{word-spacing:17.834667pt;}
.ws14a{word-spacing:18.224000pt;}
.ws150{word-spacing:18.858667pt;}
.wsba{word-spacing:20.216000pt;}
.ws6c{word-spacing:22.800000pt;}
.ws130{word-spacing:26.248000pt;}
.wsbe{word-spacing:37.392000pt;}
.wsbd{word-spacing:42.610667pt;}
._e{margin-left:-18.217867pt;}
._17{margin-left:-16.762933pt;}
._16{margin-left:-15.044000pt;}
._d{margin-left:-12.874667pt;}
._f{margin-left:-11.029333pt;}
._15{margin-left:-9.174933pt;}
._19{margin-left:-7.976000pt;}
._18{margin-left:-6.570667pt;}
._6{margin-left:-5.653067pt;}
._b{margin-left:-4.430400pt;}
._2{margin-left:-3.512000pt;}
._4{margin-left:-2.615733pt;}
._0{margin-left:-1.578667pt;}
._9{width:0.921067pt;}
._1{width:1.920533pt;}
._7{width:2.918400pt;}
._8{width:3.838933pt;}
._c{width:4.905600pt;}
._5{width:6.110933pt;}
._3{width:7.878933pt;}
._12{width:8.947733pt;}
._1d{width:10.648000pt;}
._10{width:12.778667pt;}
._13{width:14.834667pt;}
._1a{width:15.853067pt;}
._1c{width:16.782400pt;}
._1b{width:18.192267pt;}
._a{width:34.760000pt;}
._14{width:38.616000pt;}
._11{width:41.920000pt;}
.fsd{font-size:26.000000pt;}
.fs5{font-size:29.466667pt;}
.fsa{font-size:32.933333pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsb{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.ye{bottom:55.600267pt;}
.y4c{bottom:56.940000pt;}
.yf9{bottom:56.946667pt;}
.y146{bottom:56.950000pt;}
.yb1{bottom:56.959867pt;}
.y186{bottom:56.992933pt;}
.y69{bottom:57.152933pt;}
.y1c7{bottom:57.232933pt;}
.y234{bottom:58.054267pt;}
.y185{bottom:68.662933pt;}
.y1fa{bottom:70.457067pt;}
.yd{bottom:70.934267pt;}
.y4b{bottom:70.936667pt;}
.yf8{bottom:70.943333pt;}
.y145{bottom:70.946667pt;}
.yb0{bottom:70.956533pt;}
.y68{bottom:71.152933pt;}
.y107{bottom:71.166267pt;}
.y1c6{bottom:71.229600pt;}
.y233{bottom:73.387600pt;}
.y184{bottom:80.332933pt;}
.yf7{bottom:84.940000pt;}
.y4a{bottom:84.943333pt;}
.yaf{bottom:84.953200pt;}
.y67{bottom:85.152933pt;}
.y106{bottom:85.162933pt;}
.y1c5{bottom:85.226267pt;}
.yc{bottom:86.268267pt;}
.y1f9{bottom:86.457067pt;}
.y232{bottom:88.720933pt;}
.y183{bottom:92.002933pt;}
.y27d{bottom:97.269600pt;}
.ybe{bottom:98.191067pt;}
.yf6{bottom:98.936667pt;}
.y49{bottom:98.940000pt;}
.yae{bottom:98.949867pt;}
.y66{bottom:99.159600pt;}
.y1c4{bottom:99.222933pt;}
.y1f8{bottom:102.457067pt;}
.y182{bottom:103.672933pt;}
.yb{bottom:105.455600pt;}
.y231{bottom:107.908267pt;}
.y27c{bottom:110.601600pt;}
.ybd{bottom:112.855067pt;}
.y48{bottom:112.936667pt;}
.yad{bottom:112.946533pt;}
.y65{bottom:113.156267pt;}
.y1c3{bottom:113.219600pt;}
.y181{bottom:115.342933pt;}
.y1f7{bottom:118.457067pt;}
.y230{bottom:119.387600pt;}
.y27b{bottom:123.933600pt;}
.y144{bottom:126.933333pt;}
.yac{bottom:126.943200pt;}
.y47{bottom:126.943333pt;}
.yf5{bottom:126.960000pt;}
.y180{bottom:127.012933pt;}
.y64{bottom:127.152933pt;}
.y1c2{bottom:127.216267pt;}
.ybc{bottom:127.519067pt;}
.y1f6{bottom:134.457067pt;}
.y22f{bottom:134.720933pt;}
.y27a{bottom:137.265600pt;}
.y17f{bottom:138.682933pt;}
.y2d{bottom:139.569067pt;}
.yab{bottom:140.939867pt;}
.y46{bottom:140.940000pt;}
.yf4{bottom:140.956667pt;}
.y63{bottom:141.172933pt;}
.y1c1{bottom:141.212933pt;}
.ybb{bottom:142.183067pt;}
.y22e{bottom:150.054267pt;}
.y17e{bottom:150.352933pt;}
.y1f5{bottom:150.457067pt;}
.y2c{bottom:153.565733pt;}
.yaa{bottom:154.936533pt;}
.y45{bottom:154.936667pt;}
.yf3{bottom:154.953333pt;}
.y143{bottom:154.994000pt;}
.y62{bottom:155.169600pt;}
.y1c0{bottom:155.209600pt;}
.yba{bottom:156.847067pt;}
.y17d{bottom:162.022933pt;}
.y279{bottom:164.601600pt;}
.y22d{bottom:165.387600pt;}
.y1f4{bottom:166.457067pt;}
.y2b{bottom:167.562400pt;}
.y44{bottom:168.933333pt;}
.ya9{bottom:168.940000pt;}
.yf2{bottom:168.950000pt;}
.y142{bottom:168.990667pt;}
.y61{bottom:169.166267pt;}
.y1bf{bottom:169.206267pt;}
.yb9{bottom:171.511067pt;}
.y17c{bottom:173.692933pt;}
.y278{bottom:177.933600pt;}
.y22c{bottom:180.720933pt;}
.y2a{bottom:181.589067pt;}
.y1f3{bottom:182.457067pt;}
.ya8{bottom:182.936667pt;}
.yf1{bottom:182.946667pt;}
.y141{bottom:182.990667pt;}
.y60{bottom:183.162933pt;}
.y1be{bottom:183.202933pt;}
.y17b{bottom:185.362933pt;}
.yb8{bottom:186.175067pt;}
.y29{bottom:195.585733pt;}
.y22b{bottom:196.054267pt;}
.yf0{bottom:196.943333pt;}
.ya7{bottom:196.950000pt;}
.y140{bottom:196.994000pt;}
.y17a{bottom:197.032933pt;}
.y43{bottom:197.044800pt;}
.y5f{bottom:197.159600pt;}
.y1bd{bottom:197.199600pt;}
.y1f2{bottom:198.457067pt;}
.yb7{bottom:200.839067pt;}
.y277{bottom:205.269600pt;}
.y179{bottom:208.702933pt;}
.y28{bottom:209.582400pt;}
.yef{bottom:210.940000pt;}
.ya6{bottom:210.946667pt;}
.y13f{bottom:210.990667pt;}
.y42{bottom:211.054800pt;}
.y5e{bottom:211.156267pt;}
.y1bc{bottom:211.196267pt;}
.y22a{bottom:211.387600pt;}
.y1f1{bottom:214.457067pt;}
.yb6{bottom:215.503067pt;}
.y276{bottom:218.601600pt;}
.y178{bottom:220.372933pt;}
.y27{bottom:223.579067pt;}
.yee{bottom:224.936667pt;}
.ya5{bottom:224.943333pt;}
.y13e{bottom:225.004000pt;}
.y41{bottom:225.051467pt;}
.y5d{bottom:225.152933pt;}
.y1bb{bottom:225.192933pt;}
.y229{bottom:226.720933pt;}
.yb5{bottom:230.167067pt;}
.y1f0{bottom:230.457067pt;}
.y177{bottom:232.042933pt;}
.y26{bottom:237.575733pt;}
.yed{bottom:238.936667pt;}
.ya4{bottom:238.940000pt;}
.y13d{bottom:239.000667pt;}
.y40{bottom:239.048133pt;}
.y5c{bottom:239.152933pt;}
.y105{bottom:239.182933pt;}
.y1ba{bottom:239.189600pt;}
.y228{bottom:242.054267pt;}
.y176{bottom:243.712933pt;}
.yb4{bottom:244.831067pt;}
.y275{bottom:245.937600pt;}
.y1ef{bottom:249.123733pt;}
.y25{bottom:251.572400pt;}
.ya3{bottom:252.936667pt;}
.yec{bottom:252.950000pt;}
.y13c{bottom:252.997333pt;}
.y3f{bottom:253.044800pt;}
.y5b{bottom:253.152933pt;}
.y104{bottom:253.179600pt;}
.y1b9{bottom:253.186267pt;}
.y175{bottom:255.382933pt;}
.y227{bottom:257.387600pt;}
.yb3{bottom:259.495067pt;}
.y24{bottom:265.569067pt;}
.ya2{bottom:266.933333pt;}
.yeb{bottom:266.946667pt;}
.y13b{bottom:266.994000pt;}
.y3e{bottom:267.041467pt;}
.y174{bottom:267.052933pt;}
.y5a{bottom:267.166267pt;}
.y103{bottom:267.176267pt;}
.y1b8{bottom:267.182933pt;}
.y1ee{bottom:267.790400pt;}
.y226{bottom:272.720933pt;}
.y274{bottom:273.273600pt;}
.yb2{bottom:274.159067pt;}
.y173{bottom:278.722933pt;}
.y23{bottom:279.565733pt;}
.yea{bottom:280.943333pt;}
.y13a{bottom:280.990667pt;}
.y3d{bottom:281.041467pt;}
.y59{bottom:281.162933pt;}
.y102{bottom:281.172933pt;}
.y1b7{bottom:281.179600pt;}
.y273{bottom:286.605600pt;}
.y225{bottom:288.054267pt;}
.y172{bottom:290.392933pt;}
.y22{bottom:293.562400pt;}
.ye9{bottom:294.940000pt;}
.y139{bottom:294.990667pt;}
.ya1{bottom:295.152933pt;}
.y58{bottom:295.159600pt;}
.y101{bottom:295.169600pt;}
.y1b6{bottom:295.176267pt;}
.y272{bottom:299.937600pt;}
.y171{bottom:302.062933pt;}
.y224{bottom:303.387600pt;}
.y21{bottom:307.565733pt;}
.ye8{bottom:308.936667pt;}
.y138{bottom:308.990667pt;}
.y57{bottom:309.156267pt;}
.ya0{bottom:309.159600pt;}
.y100{bottom:309.166267pt;}
.y3c{bottom:309.172933pt;}
.y1ed{bottom:311.946667pt;}
.y170{bottom:313.732933pt;}
.y223{bottom:318.720933pt;}
.y20{bottom:321.562400pt;}
.ye7{bottom:322.983333pt;}
.y137{bottom:322.994000pt;}
.y56{bottom:323.152933pt;}
.y9f{bottom:323.156267pt;}
.yff{bottom:323.162933pt;}
.y3b{bottom:323.169600pt;}
.y16f{bottom:325.402933pt;}
.y1ec{bottom:325.943333pt;}
.y271{bottom:327.273600pt;}
.y222{bottom:334.054267pt;}
.y1f{bottom:335.559067pt;}
.ye6{bottom:336.980000pt;}
.y136{bottom:336.990667pt;}
.y16e{bottom:337.072933pt;}
.y55{bottom:337.149600pt;}
.y9e{bottom:337.152933pt;}
.yfe{bottom:337.159600pt;}
.y3a{bottom:337.166267pt;}
.y1eb{bottom:339.940000pt;}
.y270{bottom:340.605600pt;}
.y16d{bottom:348.742933pt;}
.y221{bottom:349.386933pt;}
.ye5{bottom:350.976667pt;}
.y135{bottom:350.997333pt;}
.yfd{bottom:351.156267pt;}
.y39{bottom:351.162933pt;}
.y9d{bottom:351.166267pt;}
.y1ea{bottom:353.936667pt;}
.y25d{bottom:360.348133pt;}
.y16c{bottom:360.412933pt;}
.y220{bottom:364.720933pt;}
.ye4{bottom:364.973333pt;}
.y134{bottom:364.994000pt;}
.yfc{bottom:365.152933pt;}
.y38{bottom:365.159600pt;}
.y9c{bottom:365.162933pt;}
.y1e9{bottom:367.933333pt;}
.y26f{bottom:367.941600pt;}
.y16b{bottom:372.082933pt;}
.y25c{bottom:375.681467pt;}
.y1e{bottom:378.269733pt;}
.ye3{bottom:378.970000pt;}
.y133{bottom:378.990667pt;}
.y37{bottom:379.156267pt;}
.y9b{bottom:379.159600pt;}
.y21f{bottom:380.054267pt;}
.y26e{bottom:381.273600pt;}
.y16a{bottom:383.752933pt;}
.y1e8{bottom:387.972000pt;}
.y25b{bottom:391.014800pt;}
.ye2{bottom:392.966667pt;}
.y132{bottom:392.990667pt;}
.y36{bottom:393.152933pt;}
.y9a{bottom:393.156267pt;}
.y1d{bottom:394.265733pt;}
.y26d{bottom:394.605600pt;}
.y71{bottom:395.351067pt;}
.y21e{bottom:395.387600pt;}
.y169{bottom:395.422933pt;}
.y1e7{bottom:401.968667pt;}
.y25a{bottom:406.348133pt;}
.ye1{bottom:406.963333pt;}
.y131{bottom:406.987333pt;}
.y168{bottom:407.092933pt;}
.y1b5{bottom:407.149600pt;}
.y35{bottom:407.152933pt;}
.y26c{bottom:407.937600pt;}
.y70{bottom:410.015067pt;}
.y1c{bottom:410.261733pt;}
.y21d{bottom:410.720267pt;}
.y1e6{bottom:415.965333pt;}
.y167{bottom:418.762933pt;}
.ye0{bottom:420.960000pt;}
.y1b4{bottom:421.149600pt;}
.yfb{bottom:421.152933pt;}
.y34{bottom:421.159600pt;}
.y99{bottom:421.189600pt;}
.y259{bottom:421.681467pt;}
.y6f{bottom:424.679067pt;}
.y21c{bottom:426.054267pt;}
.y1b{bottom:426.257733pt;}
.y166{bottom:430.432933pt;}
.ydf{bottom:434.956667pt;}
.y130{bottom:435.081467pt;}
.y33{bottom:435.156267pt;}
.y98{bottom:435.186267pt;}
.y26b{bottom:435.273600pt;}
.y1e5{bottom:435.966000pt;}
.y258{bottom:437.014133pt;}
.y6e{bottom:439.343067pt;}
.y165{bottom:442.102933pt;}
.y1a{bottom:442.253733pt;}
.y21b{bottom:445.241600pt;}
.y26a{bottom:448.605600pt;}
.yde{bottom:448.953333pt;}
.y12f{bottom:449.078133pt;}
.y32{bottom:449.152933pt;}
.y97{bottom:449.182933pt;}
.y1e4{bottom:449.962667pt;}
.y257{bottom:452.348133pt;}
.y164{bottom:453.772933pt;}
.y6d{bottom:454.007067pt;}
.y1b3{bottom:456.002933pt;}
.y21a{bottom:456.720933pt;}
.y19{bottom:458.249733pt;}
.ydd{bottom:462.950000pt;}
.y12e{bottom:463.074800pt;}
.yfa{bottom:463.149600pt;}
.y31{bottom:463.156267pt;}
.y96{bottom:463.179600pt;}
.y1e3{bottom:463.959333pt;}
.y163{bottom:465.442933pt;}
.y1b2{bottom:467.672933pt;}
.y256{bottom:467.680800pt;}
.y6c{bottom:468.671067pt;}
.y219{bottom:472.054267pt;}
.y18{bottom:474.245733pt;}
.y269{bottom:475.941600pt;}
.ydc{bottom:476.946667pt;}
.y12d{bottom:477.071467pt;}
.y162{bottom:477.112933pt;}
.y30{bottom:477.152933pt;}
.y95{bottom:477.176267pt;}
.y1e2{bottom:477.956000pt;}
.y1b1{bottom:479.342933pt;}
.y255{bottom:483.014800pt;}
.y6b{bottom:483.335067pt;}
.y161{bottom:488.782933pt;}
.y268{bottom:489.273600pt;}
.y17{bottom:490.241733pt;}
.ydb{bottom:490.943333pt;}
.y1b0{bottom:491.012933pt;}
.y12c{bottom:491.068133pt;}
.y2f{bottom:491.149600pt;}
.y94{bottom:491.172933pt;}
.y218{bottom:491.241600pt;}
.y1e1{bottom:491.952667pt;}
.y6a{bottom:497.999067pt;}
.y254{bottom:498.348133pt;}
.y160{bottom:500.452933pt;}
.y267{bottom:502.605600pt;}
.y1af{bottom:502.682933pt;}
.y217{bottom:502.720933pt;}
.yda{bottom:504.940000pt;}
.y12b{bottom:505.064800pt;}
.y93{bottom:505.169600pt;}
.y1e0{bottom:505.949333pt;}
.y16{bottom:506.237733pt;}
.y10d{bottom:510.599067pt;}
.y15f{bottom:512.122933pt;}
.y1ae{bottom:514.352933pt;}
.y253{bottom:517.535467pt;}
.y216{bottom:518.054267pt;}
.yd9{bottom:518.936667pt;}
.y12a{bottom:519.061467pt;}
.y92{bottom:519.166267pt;}
.y1df{bottom:519.946000pt;}
.y15{bottom:522.233733pt;}
.y15e{bottom:523.792933pt;}
.y10c{bottom:525.263067pt;}
.y1ad{bottom:526.022933pt;}
.y252{bottom:529.014800pt;}
.y266{bottom:529.941600pt;}
.yd8{bottom:532.933333pt;}
.y129{bottom:533.058133pt;}
.y91{bottom:533.162933pt;}
.y215{bottom:533.387600pt;}
.y1de{bottom:533.942667pt;}
.y15d{bottom:535.462933pt;}
.y1ac{bottom:537.692933pt;}
.y14{bottom:538.229733pt;}
.y10b{bottom:539.927067pt;}
.y54{bottom:543.191067pt;}
.y265{bottom:543.273600pt;}
.y251{bottom:544.348133pt;}
.y128{bottom:547.054800pt;}
.y15c{bottom:547.132933pt;}
.y90{bottom:547.159600pt;}
.y1dd{bottom:547.939333pt;}
.y1ab{bottom:549.362933pt;}
.y214{bottom:552.574933pt;}
.y13{bottom:554.225733pt;}
.y10a{bottom:554.591067pt;}
.y264{bottom:556.605600pt;}
.y53{bottom:557.855067pt;}
.y15b{bottom:558.802933pt;}
.y250{bottom:559.681467pt;}
.y1aa{bottom:561.032933pt;}
.y127{bottom:561.051467pt;}
.y8f{bottom:561.156267pt;}
.y1dc{bottom:561.936000pt;}
.y213{bottom:564.054267pt;}
.y109{bottom:569.255067pt;}
.y15a{bottom:570.472933pt;}
.y52{bottom:572.519067pt;}
.y1a9{bottom:572.702933pt;}
.y24f{bottom:575.014800pt;}
.y126{bottom:575.048133pt;}
.y8e{bottom:575.152933pt;}
.y1db{bottom:575.932667pt;}
.y159{bottom:582.142933pt;}
.y212{bottom:583.241600pt;}
.y108{bottom:583.919067pt;}
.y263{bottom:583.941600pt;}
.y1a8{bottom:584.372933pt;}
.y51{bottom:587.183067pt;}
.y125{bottom:589.044800pt;}
.y8d{bottom:589.152933pt;}
.yd7{bottom:589.159600pt;}
.ya{bottom:593.274933pt;}
.y158{bottom:593.812933pt;}
.y24e{bottom:594.202133pt;}
.y1da{bottom:595.933333pt;}
.y1a7{bottom:596.042933pt;}
.y211{bottom:598.574933pt;}
.y50{bottom:601.847067pt;}
.y124{bottom:603.048133pt;}
.yd6{bottom:603.156267pt;}
.y8c{bottom:603.172933pt;}
.y157{bottom:605.482933pt;}
.y24d{bottom:605.681467pt;}
.y1a6{bottom:607.712933pt;}
.y9{bottom:609.274933pt;}
.y1d9{bottom:609.933333pt;}
.y4f{bottom:616.511067pt;}
.y123{bottom:617.044800pt;}
.y156{bottom:617.149600pt;}
.yd5{bottom:617.152933pt;}
.y8b{bottom:617.169600pt;}
.y1a5{bottom:619.382933pt;}
.y24c{bottom:621.014800pt;}
.y262{bottom:625.274933pt;}
.y122{bottom:631.051467pt;}
.y1a4{bottom:631.052933pt;}
.y8a{bottom:631.166267pt;}
.y4e{bottom:631.175067pt;}
.yd4{bottom:631.182933pt;}
.y210{bottom:635.234267pt;}
.y24b{bottom:636.348133pt;}
.y1a3{bottom:642.722933pt;}
.y8{bottom:643.909600pt;}
.y1d8{bottom:644.983333pt;}
.y121{bottom:645.048133pt;}
.y89{bottom:645.162933pt;}
.yd3{bottom:645.179600pt;}
.y4d{bottom:645.839067pt;}
.y20f{bottom:651.234267pt;}
.y24a{bottom:651.681467pt;}
.y155{bottom:652.166267pt;}
.y1a2{bottom:654.392933pt;}
.y261{bottom:654.586933pt;}
.y28d{bottom:655.821600pt;}
.y1d7{bottom:658.980000pt;}
.y120{bottom:659.044800pt;}
.y88{bottom:659.159600pt;}
.yd2{bottom:659.176267pt;}
.y1a1{bottom:666.062933pt;}
.y154{bottom:666.162933pt;}
.y249{bottom:667.014800pt;}
.y20e{bottom:667.234267pt;}
.y28c{bottom:669.153600pt;}
.y11{bottom:672.933333pt;}
.y1d6{bottom:672.976667pt;}
.y11f{bottom:673.051467pt;}
.y87{bottom:673.156267pt;}
.yd1{bottom:673.172933pt;}
.y1a0{bottom:677.732933pt;}
.y153{bottom:680.159600pt;}
.y248{bottom:682.348133pt;}
.y28b{bottom:682.485600pt;}
.y20d{bottom:683.234267pt;}
.y7{bottom:686.584267pt;}
.y1d5{bottom:686.973333pt;}
.y11e{bottom:687.048133pt;}
.y86{bottom:687.152933pt;}
.yd0{bottom:687.169600pt;}
.y19f{bottom:689.402933pt;}
.y10{bottom:691.600000pt;}
.y152{bottom:694.156267pt;}
.y260{bottom:694.592267pt;}
.y28a{bottom:695.817600pt;}
.y247{bottom:697.681467pt;}
.y20c{bottom:699.234267pt;}
.y1d4{bottom:700.970000pt;}
.y11d{bottom:701.044800pt;}
.y19e{bottom:701.072933pt;}
.ycf{bottom:701.166267pt;}
.y85{bottom:701.172933pt;}
.y151{bottom:708.152933pt;}
.y289{bottom:709.149600pt;}
.yf{bottom:710.266667pt;}
.y19d{bottom:712.742933pt;}
.y246{bottom:713.014800pt;}
.y1d3{bottom:714.966667pt;}
.y11c{bottom:715.044800pt;}
.yce{bottom:715.162933pt;}
.y84{bottom:715.169600pt;}
.y20b{bottom:715.234267pt;}
.y150{bottom:722.166267pt;}
.y19c{bottom:724.412933pt;}
.y245{bottom:728.348133pt;}
.y1d2{bottom:728.963333pt;}
.y11b{bottom:729.041467pt;}
.ycd{bottom:729.159600pt;}
.y83{bottom:729.166267pt;}
.y6{bottom:729.258933pt;}
.y20a{bottom:731.234267pt;}
.y25f{bottom:734.597600pt;}
.y19b{bottom:736.082933pt;}
.y14f{bottom:736.162933pt;}
.y288{bottom:736.468267pt;}
.y1d1{bottom:742.960000pt;}
.y11a{bottom:743.041467pt;}
.ycc{bottom:743.156267pt;}
.y82{bottom:743.162933pt;}
.y244{bottom:743.681467pt;}
.y209{bottom:747.234267pt;}
.y19a{bottom:747.752933pt;}
.y14e{bottom:750.159600pt;}
.y1d0{bottom:756.956667pt;}
.ycb{bottom:757.152933pt;}
.y81{bottom:757.159600pt;}
.y243{bottom:759.014800pt;}
.y199{bottom:759.422933pt;}
.y208{bottom:763.234267pt;}
.y287{bottom:763.804267pt;}
.y14d{bottom:764.156267pt;}
.y1cf{bottom:770.953333pt;}
.y198{bottom:771.092933pt;}
.y119{bottom:771.105600pt;}
.y80{bottom:771.156267pt;}
.yca{bottom:771.159600pt;}
.y5{bottom:771.933600pt;}
.y242{bottom:774.348133pt;}
.y25e{bottom:774.602933pt;}
.y14c{bottom:778.152933pt;}
.y207{bottom:779.234267pt;}
.y197{bottom:782.762933pt;}
.y1ce{bottom:784.950000pt;}
.y118{bottom:785.102267pt;}
.y7f{bottom:785.152933pt;}
.yc9{bottom:785.156267pt;}
.y241{bottom:789.681467pt;}
.y286{bottom:791.140267pt;}
.y14b{bottom:792.162933pt;}
.y196{bottom:794.432933pt;}
.y206{bottom:795.234267pt;}
.y1cd{bottom:798.946667pt;}
.y117{bottom:799.098933pt;}
.yc8{bottom:799.152933pt;}
.y7e{bottom:799.156267pt;}
.y240{bottom:805.014800pt;}
.y195{bottom:806.102933pt;}
.y14a{bottom:806.159600pt;}
.y205{bottom:811.234267pt;}
.y1cc{bottom:812.943333pt;}
.y116{bottom:813.118933pt;}
.y7d{bottom:813.152933pt;}
.yc7{bottom:813.156267pt;}
.y4{bottom:814.608267pt;}
.y194{bottom:817.772933pt;}
.y285{bottom:818.476267pt;}
.y149{bottom:820.156267pt;}
.y23f{bottom:820.348133pt;}
.y12{bottom:823.475200pt;}
.y1cb{bottom:826.940000pt;}
.y115{bottom:827.115600pt;}
.yc6{bottom:827.152933pt;}
.y7c{bottom:827.172933pt;}
.y204{bottom:827.234267pt;}
.y193{bottom:829.442933pt;}
.y284{bottom:831.808267pt;}
.y148{bottom:834.152933pt;}
.y23e{bottom:835.681467pt;}
.y1ca{bottom:840.936667pt;}
.y114{bottom:841.112267pt;}
.y192{bottom:841.112933pt;}
.yc5{bottom:841.156267pt;}
.y7b{bottom:841.169600pt;}
.y203{bottom:843.234267pt;}
.y147{bottom:848.149600pt;}
.y191{bottom:852.782933pt;}
.y23d{bottom:854.868800pt;}
.y1c9{bottom:854.933333pt;}
.y113{bottom:855.108933pt;}
.yc4{bottom:855.152933pt;}
.y7a{bottom:855.166267pt;}
.y283{bottom:859.144267pt;}
.y202{bottom:859.234267pt;}
.y190{bottom:864.452933pt;}
.y23c{bottom:866.348133pt;}
.y1c8{bottom:868.933333pt;}
.y112{bottom:869.105600pt;}
.y79{bottom:869.162933pt;}
.yc3{bottom:869.172933pt;}
.y201{bottom:875.234267pt;}
.y18f{bottom:876.122933pt;}
.y23b{bottom:881.681467pt;}
.y111{bottom:883.102267pt;}
.y78{bottom:883.159600pt;}
.yc2{bottom:883.169600pt;}
.y282{bottom:886.480267pt;}
.y18e{bottom:887.792933pt;}
.y200{bottom:891.234267pt;}
.y23a{bottom:897.014800pt;}
.y110{bottom:897.098933pt;}
.y77{bottom:897.156267pt;}
.yc1{bottom:897.166267pt;}
.y18d{bottom:899.462933pt;}
.y1ff{bottom:907.234267pt;}
.y10f{bottom:911.095600pt;}
.y18c{bottom:911.132933pt;}
.y76{bottom:911.152933pt;}
.yc0{bottom:911.162933pt;}
.y239{bottom:912.348133pt;}
.y281{bottom:913.816267pt;}
.y18b{bottom:922.802933pt;}
.y1fe{bottom:923.234267pt;}
.y10e{bottom:925.095600pt;}
.y75{bottom:925.152933pt;}
.ybf{bottom:925.159600pt;}
.y280{bottom:927.148267pt;}
.y238{bottom:927.681467pt;}
.y18a{bottom:934.472933pt;}
.y74{bottom:939.156267pt;}
.y1fd{bottom:939.234267pt;}
.y27f{bottom:940.480267pt;}
.y237{bottom:943.014133pt;}
.y189{bottom:946.142933pt;}
.y73{bottom:953.152933pt;}
.y1fc{bottom:955.234267pt;}
.y188{bottom:957.812933pt;}
.y236{bottom:958.348133pt;}
.y72{bottom:967.149600pt;}
.y27e{bottom:967.816267pt;}
.y187{bottom:969.482933pt;}
.y1fb{bottom:971.234267pt;}
.y235{bottom:973.682133pt;}
.y2e{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h7{height:23.826562pt;}
.h23{height:32.440000pt;}
.h8{height:32.605469pt;}
.h3{height:34.500000pt;}
.hb{height:34.523438pt;}
.h9{height:36.656250pt;}
.h29{height:36.658917pt;}
.h28{height:36.661583pt;}
.h1f{height:38.359375pt;}
.h13{height:38.928000pt;}
.h27{height:39.239896pt;}
.h25{height:39.242562pt;}
.h26{height:39.245229pt;}
.h2a{height:39.318359pt;}
.h14{height:41.016000pt;}
.hc{height:41.090667pt;}
.h11{height:42.195312pt;}
.h6{height:43.066927pt;}
.h2{height:43.125000pt;}
.h1b{height:43.735600pt;}
.h24{height:43.752000pt;}
.h17{height:43.775600pt;}
.h1a{height:43.802267pt;}
.he{height:43.815600pt;}
.h1d{height:43.828933pt;}
.h1e{height:43.841733pt;}
.h16{height:43.842267pt;}
.h22{height:43.855600pt;}
.h18{height:43.868400pt;}
.h15{height:43.868933pt;}
.h12{height:43.882267pt;}
.hf{height:43.895600pt;}
.h21{height:43.896133pt;}
.h19{height:43.908400pt;}
.hd{height:43.908933pt;}
.h1c{height:43.921733pt;}
.h10{height:43.922267pt;}
.h20{height:43.922800pt;}
.h4{height:44.203125pt;}
.ha{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:65.157733pt;}
.x5{left:84.944400pt;}
.x7{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:212.437467pt;}
.x8{left:223.517333pt;}
.xc{left:266.976667pt;}
.x3{left:519.632533pt;}
.xb{left:725.336533pt;}
.xd{left:726.469467pt;}
.x9{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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