
    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_b3a55c582d02da60e8711742.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_5d7232ae26ea9c0dc8eddaee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_761cd263921801640b8b4dbc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_6397d77f67e7653db79f4f44.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_2eab99a77d9fc32792d2bd29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_1ff8df1f0cf06174d6dfbb18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_4a2a6bba354fe7c012b094ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119629;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_6151436b353a1984be5cde9e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.879395;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_46912a55178fb7acf0721fda.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_8ddb99b1c2a9102a7c5cb526.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_850487b1cb0f379f0cd15919.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_c12b3c1c942c9a51541afd8a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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_fabeff187a1123b007bf2936.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.988281;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_5d5b142750751eebb6422ea8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988281;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_6ad81ccdf5ab88075f213b32.woff2')format("woff");}.fff{font-family:fff;line-height:1.027832;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_cd415362f54dcc9ed3266ff8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942383;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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_5db20c33261c0af35a6886a2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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;}
.ma{transform:matrix(0.000000,-0.226563,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.226563,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.226563,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.213609,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.213609,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.213609,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.346622,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.346622,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.346622,0.250000,0.000000,0,0);}
.md{transform:matrix(0.180312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180312,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.292590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292590,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.295998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295998,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.327069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327069,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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v5{vertical-align:8.939252px;}
.v4{vertical-align:19.740000px;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.v6{vertical-align:35.903611px;}
.ls32{letter-spacing:-5.040000px;}
.ls3e{letter-spacing:-4.823750px;}
.ls42{letter-spacing:-4.596200px;}
.ls3a{letter-spacing:-4.514146px;}
.ls40{letter-spacing:-4.513244px;}
.ls35{letter-spacing:-4.474599px;}
.ls45{letter-spacing:-4.457430px;}
.ls33{letter-spacing:-4.386193px;}
.ls3c{letter-spacing:-4.367778px;}
.ls37{letter-spacing:-4.365850px;}
.ls6{letter-spacing:-1.842000px;}
.lsc{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.422000px;}
.ls17{letter-spacing:-0.972000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls3b{letter-spacing:-0.765210px;}
.ls41{letter-spacing:-0.765057px;}
.ls2e{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.700269px;}
.ls3f{letter-spacing:-0.681617px;}
.ls43{letter-spacing:-0.649463px;}
.ls46{letter-spacing:-0.629854px;}
.ls34{letter-spacing:-0.619788px;}
.ls3d{letter-spacing:-0.617186px;}
.ls38{letter-spacing:-0.616914px;}
.ls48{letter-spacing:-0.605938px;}
.ls16{letter-spacing:-0.507000px;}
.ls7{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.ls20{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.403200px;}
.ls49{letter-spacing:-0.328422px;}
.lsd{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.017280px;}
.ls1f{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.345600px;}
.ls1e{letter-spacing:0.423360px;}
.ls3{letter-spacing:0.466560px;}
.ls8{letter-spacing:0.466800px;}
.ls18{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.498240px;}
.ls23{letter-spacing:0.507000px;}
.ls2{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.732000px;}
.ls2f{letter-spacing:0.864000px;}
.ls4a{letter-spacing:0.900000px;}
.ls44{letter-spacing:1.138583px;}
.ls1d{letter-spacing:2.160000px;}
.ls22{letter-spacing:3.600000px;}
.ls10{letter-spacing:6.226560px;}
.ls24{letter-spacing:6.480000px;}
.ls50{letter-spacing:7.920000px;}
.ls4e{letter-spacing:9.106560px;}
.ls1b{letter-spacing:9.360000px;}
.ls1a{letter-spacing:10.800000px;}
.ls4c{letter-spacing:10.980000px;}
.ls2b{letter-spacing:12.240000px;}
.ls30{letter-spacing:13.680000px;}
.ls13{letter-spacing:14.866560px;}
.ls4d{letter-spacing:15.120000px;}
.ls4b{letter-spacing:15.300000px;}
.ls14{letter-spacing:17.746560px;}
.ls29{letter-spacing:22.066560px;}
.ls28{letter-spacing:23.506560px;}
.ls4f{letter-spacing:29.410560px;}
.ls9{letter-spacing:35.038560px;}
.ls2a{letter-spacing:35.170560px;}
.ls27{letter-spacing:37.906560px;}
.ls15{letter-spacing:37.918560px;}
.ls2d{letter-spacing:40.786560px;}
.ls11{letter-spacing:40.798560px;}
.lsf{letter-spacing:43.666560px;}
.ls21{letter-spacing:45.118560px;}
.ls31{letter-spacing:45.250560px;}
.ls2c{letter-spacing:46.558560px;}
.lsa{letter-spacing:63.838560px;}
.ls25{letter-spacing:83.338992px;}
.ls26{letter-spacing:83.412000px;}
.lse{letter-spacing:104.302560px;}
.ls47{letter-spacing:161.498045px;}
.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;}
}
.ws15{word-spacing:-60.624000px;}
.wsa{word-spacing:-60.480000px;}
.ws5b{word-spacing:-16.404216px;}
.ws13{word-spacing:-16.272000px;}
.ws53{word-spacing:-15.947809px;}
.ws10{word-spacing:-15.627000px;}
.wsc{word-spacing:-15.606600px;}
.ws4{word-spacing:-15.586800px;}
.wsf{word-spacing:-15.543360px;}
.ws42{word-spacing:-15.168269px;}
.ws5{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.099840px;}
.wse{word-spacing:-14.653200px;}
.ws7{word-spacing:-14.633400px;}
.wsb{word-spacing:-14.613000px;}
.ws4c{word-spacing:-14.452737px;}
.wsd{word-spacing:-14.184000px;}
.ws57{word-spacing:-14.016376px;}
.ws5e{word-spacing:-13.801285px;}
.ws1c{word-spacing:-13.792372px;}
.ws1f{word-spacing:-13.775711px;}
.ws35{word-spacing:-13.734467px;}
.ws27{word-spacing:-13.728403px;}
.ws45{word-spacing:-13.725660px;}
.ws14{word-spacing:-13.701024px;}
.ws8{word-spacing:-13.680000px;}
.ws12{word-spacing:-13.668480px;}
.ws2{word-spacing:-13.182000px;}
.ws0{word-spacing:-12.614400px;}
.ws11{word-spacing:-11.567520px;}
.ws5c{word-spacing:-11.219750px;}
.ws1{word-spacing:-11.175600px;}
.ws61{word-spacing:-9.954139px;}
.ws2e{word-spacing:-9.737280px;}
.ws3{word-spacing:-9.720000px;}
.ws16{word-spacing:-0.067640px;}
.ws6{word-spacing:0.000000px;}
.ws2d{word-spacing:40.427116px;}
.ws3c{word-spacing:40.444973px;}
.ws1b{word-spacing:40.466504px;}
.ws25{word-spacing:40.487998px;}
.ws4b{word-spacing:40.715573px;}
.ws34{word-spacing:40.872006px;}
.ws5a{word-spacing:41.123727px;}
.ws52{word-spacing:42.560122px;}
.ws44{word-spacing:44.667205px;}
.ws2a{word-spacing:67.120492px;}
.ws22{word-spacing:67.193163px;}
.ws3a{word-spacing:67.298500px;}
.ws48{word-spacing:67.551882px;}
.ws31{word-spacing:67.565381px;}
.ws56{word-spacing:68.528442px;}
.ws4f{word-spacing:70.818007px;}
.ws41{word-spacing:74.324093px;}
.ws38{word-spacing:92.915875px;}
.ws19{word-spacing:93.128830px;}
.ws5d{word-spacing:99.414909px;}
.ws3f{word-spacing:102.615781px;}
.ws28{word-spacing:119.404212px;}
.ws20{word-spacing:119.546563px;}
.ws36{word-spacing:119.605314px;}
.ws46{word-spacing:119.676890px;}
.ws2f{word-spacing:119.849102px;}
.ws17{word-spacing:119.960591px;}
.ws54{word-spacing:121.757482px;}
.ws60{word-spacing:122.092584px;}
.ws4d{word-spacing:125.860308px;}
.ws3d{word-spacing:132.091450px;}
.ws5f{word-spacing:148.909235px;}
.ws1e{word-spacing:188.777784px;}
.ws4a{word-spacing:214.182212px;}
.ws59{word-spacing:218.264927px;}
.ws2c{word-spacing:249.223586px;}
.ws24{word-spacing:249.424168px;}
.ws3b{word-spacing:249.778753px;}
.ws33{word-spacing:249.816179px;}
.ws1d{word-spacing:250.682701px;}
.ws2b{word-spacing:254.569082px;}
.ws23{word-spacing:254.873505px;}
.ws39{word-spacing:255.126611px;}
.ws32{word-spacing:255.162269px;}
.ws49{word-spacing:255.259557px;}
.ws1a{word-spacing:255.904267px;}
.ws58{word-spacing:260.060448px;}
.ws51{word-spacing:262.529179px;}
.ws50{word-spacing:268.156713px;}
.ws29{word-spacing:271.062919px;}
.ws21{word-spacing:271.424180px;}
.ws30{word-spacing:271.656105px;}
.ws47{word-spacing:271.750098px;}
.ws43{word-spacing:275.854278px;}
.ws55{word-spacing:276.900266px;}
.ws40{word-spacing:281.760422px;}
.ws4e{word-spacing:285.520793px;}
.ws37{word-spacing:298.481260px;}
.ws18{word-spacing:299.441702px;}
.ws3e{word-spacing:329.641058px;}
.ws26{word-spacing:384.177839px;}
._26{margin-left:-9.267840px;}
._11{margin-left:-5.365440px;}
._10{margin-left:-4.294080px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.490560px;}
._7{width:4.553280px;}
._9{width:5.757120px;}
._d{width:7.015680px;}
._f{width:8.130720px;}
._e{width:9.486240px;}
._b{width:10.593120px;}
._a{width:11.672640px;}
._c{width:12.769440px;}
._16{width:14.031360px;}
._1c{width:16.148160px;}
._15{width:17.254080px;}
._14{width:18.264960px;}
._12{width:20.260800px;}
._13{width:22.256640px;}
._27{width:23.953440px;}
._17{width:25.228800px;}
._18{width:26.913600px;}
._1b{width:28.762560px;}
._19{width:29.972160px;}
._1a{width:31.224960px;}
._20{width:33.099840px;}
._1f{width:34.171200px;}
._1e{width:35.320320px;}
._1d{width:37.013760px;}
._21{width:38.888640px;}
._23{width:40.521600px;}
._22{width:42.336000px;}
._24{width:69.491520px;}
._25{width:142.870254px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._28{width:849.336000px;}
._3{width:1591.176000px;}
.fc12{color:rgb(255,0,255);}
.fc10{color:rgb(91,155,213);}
.fcf{color:rgb(0,176,80);}
.fce{color:rgb(46,116,181);}
.fcd{color:rgb(255,0,0);}
.fc1{color:rgb(192,0,0);}
.fcb{color:rgb(0,176,240);}
.fc4{color:rgb(255,255,255);}
.fc5{color:rgb(128,128,128);}
.fc9{color:rgb(46,117,182);}
.fc0{color:rgb(0,32,96);}
.fc7{color:rgb(68,84,106);}
.fc3{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc8{color:rgb(132,60,12);}
.fca{color:rgb(31,78,121);}
.fc11{color:rgb(191,143,0);}
.fc2{color:rgb(0,0,0);}
.fcc{color:rgb(180,198,231);}
.fs18{font-size:35.806256px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:36.144000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fsb{font-size:47.520000px;}
.fs12{font-size:49.372878px;}
.fsf{font-size:49.382744px;}
.fs10{font-size:49.404556px;}
.fse{font-size:49.552918px;}
.fsd{font-size:49.612849px;}
.fs17{font-size:49.644911px;}
.fs15{font-size:50.418619px;}
.fs13{font-size:51.988264px;}
.fs11{font-size:54.562119px;}
.fs3{font-size:54.720000px;}
.fs9{font-size:54.864000px;}
.fs14{font-size:57.366218px;}
.fs2{font-size:57.600000px;}
.fs16{font-size:59.007971px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:60.624000px;}
.fsc{font-size:67.640341px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:83.520000px;}
.y1e9{bottom:-12.450000px;}
.y21e{bottom:-12.090000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.y1f0{bottom:0.870000px;}
.y1f5{bottom:0.930000px;}
.y1f2{bottom:1.950000px;}
.y173{bottom:2.055000px;}
.y17a{bottom:2.265000px;}
.y300{bottom:2.332235px;}
.y1fe{bottom:2.775000px;}
.yd{bottom:2.880000px;}
.y1f7{bottom:3.135000px;}
.y2f{bottom:3.240000px;}
.y104{bottom:3.855000px;}
.y171{bottom:3.885000px;}
.y1e8{bottom:4.830000px;}
.y21d{bottom:5.190000px;}
.y1fc{bottom:5.295000px;}
.y177{bottom:6.195000px;}
.y101{bottom:6.405000px;}
.y13e{bottom:7.125000px;}
.y1ee{bottom:7.305000px;}
.y142{bottom:7.815000px;}
.y140{bottom:7.845000px;}
.y17e{bottom:7.995000px;}
.y2b0{bottom:8.925666px;}
.y2a0{bottom:8.931392px;}
.y270{bottom:8.931394px;}
.y277{bottom:9.016280px;}
.y26a{bottom:9.024322px;}
.y2c0{bottom:9.167558px;}
.y1eb{bottom:9.465000px;}
.y2b8{bottom:9.491994px;}
.y2a8{bottom:9.920965px;}
.y1e6{bottom:13.470000px;}
.y16f{bottom:14.655000px;}
.y144{bottom:14.730000px;}
.y179{bottom:17.025000px;}
.y1f9{bottom:17.490000px;}
.y2a2{bottom:17.907234px;}
.y29a{bottom:19.100593px;}
.y103{bottom:19.335000px;}
.y2aa{bottom:19.874998px;}
.y2e{bottom:20.520000px;}
.y1fb{bottom:21.855000px;}
.y17d{bottom:22.755000px;}
.y2c1{bottom:25.216880px;}
.y16d{bottom:26.175000px;}
.y2f9{bottom:27.117201px;}
.y16a{bottom:30.885000px;}
.y2af{bottom:31.388102px;}
.y29f{bottom:31.408236px;}
.y26f{bottom:31.408242px;}
.y276{bottom:31.446278px;}
.y298{bottom:31.446279px;}
.y269{bottom:31.558536px;}
.y2bf{bottom:32.105910px;}
.y2b7{bottom:33.144467px;}
.y2a7{bottom:34.744434px;}
.y21b{bottom:36.645000px;}
.y2b9{bottom:36.657160px;}
.yff{bottom:37.365000px;}
.y2d{bottom:37.800000px;}
.y279{bottom:39.305983px;}
.y2b2{bottom:40.358227px;}
.y2c2{bottom:42.401604px;}
.ye{bottom:43.560000px;}
.y2ba{bottom:44.931565px;}
.y221{bottom:47.775000px;}
.y13b{bottom:48.420000px;}
.y13c{bottom:49.530000px;}
.y2fc{bottom:50.814769px;}
.y2ae{bottom:53.850537px;}
.y29e{bottom:53.885084px;}
.y26e{bottom:53.885089px;}
.y275{bottom:53.913202px;}
.y297{bottom:53.913203px;}
.y268{bottom:54.130148px;}
.y2be{bottom:55.006259px;}
.y278{bottom:55.025409px;}
.y2c{bottom:55.080000px;}
.y124{bottom:55.950000px;}
.y2b1{bottom:56.074506px;}
.y2b6{bottom:56.757755px;}
.y2a6{bottom:59.567740px;}
.y299{bottom:66.258889px;}
.y2a1{bottom:67.348874px;}
.y2f5{bottom:67.725546px;}
.y2de{bottom:67.725557px;}
.yc{bottom:68.400000px;}
.y271{bottom:71.836895px;}
.y2b{bottom:72.405000px;}
.y2a9{bottom:74.437116px;}
.y2fd{bottom:74.474842px;}
.y2ad{bottom:76.312963px;}
.y26d{bottom:76.324846px;}
.y29d{bottom:76.361908px;}
.y274{bottom:76.380121px;}
.y296{bottom:76.380127px;}
.y267{bottom:76.664503px;}
.y2bd{bottom:77.944460px;}
.y2b5{bottom:80.410063px;}
.y2a5{bottom:84.350073px;}
.y2a{bottom:89.685000px;}
.y2f4{bottom:90.260731px;}
.y2e9{bottom:90.260736px;}
.y2dd{bottom:90.260747px;}
.ya{bottom:94.716000px;}
.y123{bottom:95.010000px;}
.y2ac{bottom:102.148471px;}
.y26c{bottom:102.176930px;}
.y273{bottom:102.183717px;}
.y295{bottom:102.183723px;}
.y29c{bottom:102.214013px;}
.y266{bottom:103.742998px;}
.y2ff{bottom:103.796835px;}
.y2bc{bottom:104.289323px;}
.y139{bottom:104.370000px;}
.y29{bottom:106.965000px;}
.y2b4{bottom:107.575102px;}
.y2fb{bottom:110.583643px;}
.y2f3{bottom:112.833417px;}
.y2e8{bottom:112.833422px;}
.y2dc{bottom:112.833433px;}
.y2a4{bottom:112.900975px;}
.y2fa{bottom:115.083182px;}
.y301{bottom:122.957369px;}
.y28{bottom:123.885000px;}
.y35e{bottom:130.716000px;}
.y9b{bottom:131.436000px;}
.y1a9{bottom:132.516000px;}
.y6d{bottom:132.876000px;}
.y168{bottom:134.676000px;}
.y2f2{bottom:135.368607px;}
.y2e7{bottom:135.368612px;}
.y2db{bottom:135.368623px;}
.yfc{bottom:135.756000px;}
.y122{bottom:136.650000px;}
.y2fe{bottom:141.030519px;}
.y27{bottom:141.165000px;}
.ybe{bottom:141.516000px;}
.y293{bottom:143.316000px;}
.y1e4{bottom:144.036000px;}
.y302{bottom:146.654939px;}
.y219{bottom:148.716000px;}
.y9a{bottom:151.230000px;}
.y1a8{bottom:152.310000px;}
.y6c{bottom:152.670000px;}
.ye2{bottom:154.470000px;}
.yfb{bottom:155.550000px;}
.y11f{bottom:155.910000px;}
.y2ce{bottom:157.710000px;}
.y2f1{bottom:157.933794px;}
.y2e6{bottom:157.933799px;}
.y2da{bottom:157.933810px;}
.y26{bottom:158.445000px;}
.y35d{bottom:159.510000px;}
.y264{bottom:160.230000px;}
.ybd{bottom:161.310000px;}
.y38{bottom:163.470000px;}
.y1e3{bottom:163.830000px;}
.y1bf{bottom:166.350000px;}
.y137{bottom:168.150000px;}
.y218{bottom:168.510000px;}
.y23b{bottom:170.310000px;}
.y99{bottom:171.390000px;}
.y292{bottom:172.470000px;}
.y6b{bottom:173.550000px;}
.y25{bottom:175.725000px;}
.y2f0{bottom:180.476483px;}
.y2e5{bottom:180.476488px;}
.y2d9{bottom:180.476499px;}
.y328{bottom:180.750000px;}
.y1a7{bottom:181.470000px;}
.y121{bottom:182.340000px;}
.y37{bottom:183.270000px;}
.y1e2{bottom:183.630000px;}
.yfa{bottom:184.350000px;}
.y11e{bottom:184.710000px;}
.ye1{bottom:185.070000px;}
.y1be{bottom:186.150000px;}
.y2cd{bottom:186.870000px;}
.y136{bottom:187.950000px;}
.y35c{bottom:188.310000px;}
.y263{bottom:189.390000px;}
.y23a{bottom:190.110000px;}
.ybc{bottom:190.470000px;}
.y167{bottom:192.270000px;}
.y24{bottom:193.035000px;}
.y6a{bottom:194.430000px;}
.y217{bottom:197.715000px;}
.y98{bottom:200.235000px;}
.y327{bottom:200.595000px;}
.y1a6{bottom:201.315000px;}
.y2ef{bottom:203.004174px;}
.y2e4{bottom:203.004178px;}
.y2d8{bottom:203.004190px;}
.y36{bottom:203.115000px;}
.y1e1{bottom:203.475000px;}
.y2bb{bottom:204.765000px;}
.y1bd{bottom:206.355000px;}
.y135{bottom:207.795000px;}
.y239{bottom:209.955000px;}
.y23{bottom:210.315000px;}
.y304{bottom:210.923349px;}
.y291{bottom:212.115000px;}
.y34e{bottom:212.475000px;}
.yf9{bottom:213.195000px;}
.y11d{bottom:213.555000px;}
.y69{bottom:214.275000px;}
.ye0{bottom:215.715000px;}
.y176{bottom:217.080000px;}
.y216{bottom:217.515000px;}
.y262{bottom:218.235000px;}
.ybb{bottom:219.315000px;}
.y17c{bottom:220.320000px;}
.y326{bottom:220.395000px;}
.y303{bottom:221.077309px;}
.y166{bottom:221.115000px;}
.y272{bottom:222.255000px;}
.y35{bottom:222.915000px;}
.y1e0{bottom:223.275000px;}
.y13a{bottom:225.390000px;}
.y2ee{bottom:225.576860px;}
.y2e3{bottom:225.576864px;}
.y2d7{bottom:225.576876px;}
.y1bc{bottom:227.235000px;}
.y22{bottom:227.595000px;}
.y97{bottom:229.035000px;}
.yf8{bottom:229.755000px;}
.y1a5{bottom:230.115000px;}
.y238{bottom:231.195000px;}
.y290{bottom:231.915000px;}
.y34d{bottom:232.275000px;}
.y68{bottom:234.435000px;}
.y175{bottom:238.035000px;}
.yba{bottom:239.115000px;}
.y325{bottom:240.195000px;}
.y2f6{bottom:240.245354px;}
.y11c{bottom:242.355000px;}
.y34{bottom:242.715000px;}
.y1df{bottom:243.075000px;}
.y2cc{bottom:244.515000px;}
.y21{bottom:244.875000px;}
.ydf{bottom:246.315000px;}
.y1bb{bottom:247.035000px;}
.y369{bottom:248.115000px;}
.y2ed{bottom:248.119549px;}
.y2e2{bottom:248.119554px;}
.y2d6{bottom:248.119565px;}
.y96{bottom:248.835000px;}
.y165{bottom:249.915000px;}
.y237{bottom:250.995000px;}
.y28f{bottom:251.715000px;}
.y34c{bottom:252.435000px;}
.y134{bottom:256.755000px;}
.yb9{bottom:258.915000px;}
.y324{bottom:260.355000px;}
.y20{bottom:262.155000px;}
.y33{bottom:262.875000px;}
.y67{bottom:264.315000px;}
.y261{bottom:266.835000px;}
.y95{bottom:268.635000px;}
.y1a4{bottom:269.715000px;}
.y2ec{bottom:270.692235px;}
.y2e1{bottom:270.692240px;}
.y2d5{bottom:270.692251px;}
.y236{bottom:270.795000px;}
.y11b{bottom:271.155000px;}
.y28e{bottom:271.515000px;}
.y196{bottom:271.875000px;}
.y34b{bottom:272.235000px;}
.y2cb{bottom:273.315000px;}
.y215{bottom:275.115000px;}
.y133{bottom:276.555000px;}
.yde{bottom:276.915000px;}
.y164{bottom:278.715000px;}
.y1f{bottom:279.435000px;}
.y323{bottom:280.155000px;}
.y32{bottom:282.675000px;}
.y66{bottom:284.115000px;}
.y260{bottom:286.635000px;}
.yb8{bottom:287.715000px;}
.y17b{bottom:288.360000px;}
.y94{bottom:288.435000px;}
.y235{bottom:290.595000px;}
.y28d{bottom:291.315000px;}
.y1de{bottom:291.675000px;}
.y34a{bottom:292.035000px;}
.y2eb{bottom:293.219926px;}
.y2e0{bottom:293.219930px;}
.y2d4{bottom:293.219942px;}
.y132{bottom:296.355000px;}
.y1e{bottom:296.715000px;}
.y1a3{bottom:298.515000px;}
.y322{bottom:299.955000px;}
.y11a{bottom:300.315000px;}
.y195{bottom:300.675000px;}
.y2ca{bottom:302.115000px;}
.y65{bottom:303.915000px;}
.y368{bottom:305.715000px;}
.y25f{bottom:306.435000px;}
.ydd{bottom:307.515000px;}
.y163{bottom:307.875000px;}
.y93{bottom:308.235000px;}
.y234{bottom:310.395000px;}
.y28c{bottom:311.115000px;}
.y1dd{bottom:311.475000px;}
.y349{bottom:311.835000px;}
.y1d{bottom:313.995000px;}
.y2ea{bottom:315.762615px;}
.y2df{bottom:315.762619px;}
.y2d3{bottom:315.762631px;}
.y131{bottom:316.155000px;}
.yb7{bottom:316.515000px;}
.y2f7{bottom:318.042380px;}
.y321{bottom:319.755000px;}
.y31{bottom:320.475000px;}
.y64{bottom:323.745000px;}
.y367{bottom:325.545000px;}
.y25e{bottom:326.265000px;}
.y1a2{bottom:327.345000px;}
.y92{bottom:328.065000px;}
.y119{bottom:329.145000px;}
.y233{bottom:330.225000px;}
.y2c9{bottom:330.945000px;}
.y348{bottom:331.665000px;}
.y214{bottom:332.745000px;}
.ydc{bottom:336.345000px;}
.y162{bottom:336.705000px;}
.y2d2{bottom:338.335306px;}
.y320{bottom:339.585000px;}
.y28b{bottom:339.945000px;}
.y194{bottom:340.305000px;}
.y1dc{bottom:340.665000px;}
.y63{bottom:343.545000px;}
.y130{bottom:344.985000px;}
.yb6{bottom:345.345000px;}
.y1a1{bottom:347.145000px;}
.y91{bottom:347.865000px;}
.y366{bottom:354.345000px;}
.y25d{bottom:355.065000px;}
.ydb{bottom:356.145000px;}
.y2b3{bottom:357.720000px;}
.y118{bottom:357.945000px;}
.y30{bottom:358.305000px;}
.y232{bottom:359.025000px;}
.y31f{bottom:359.385000px;}
.y2c8{bottom:359.745000px;}
.y193{bottom:360.105000px;}
.y1db{bottom:360.465000px;}
.y213{bottom:361.545000px;}
.y178{bottom:362.160000px;}
.y62{bottom:363.345000px;}
.yb5{bottom:365.145000px;}
.y161{bottom:365.505000px;}
.y1a0{bottom:366.945000px;}
.y90{bottom:367.665000px;}
.y28a{bottom:368.745000px;}
.y12f{bottom:373.785000px;}
.yda{bottom:375.945000px;}
.y231{bottom:378.825000px;}
.y31e{bottom:379.185000px;}
.y192{bottom:379.905000px;}
.y347{bottom:380.265000px;}
.y365{bottom:383.145000px;}
.y1c{bottom:383.505000px;}
.y25c{bottom:383.865000px;}
.yb4{bottom:384.945000px;}
.y117{bottom:386.745000px;}
.y8f{bottom:387.825000px;}
.y2c7{bottom:388.545000px;}
.y289{bottom:388.905000px;}
.y1da{bottom:389.265000px;}
.y212{bottom:390.345000px;}
.y61{bottom:392.145000px;}
.y160{bottom:394.305000px;}
.yd9{bottom:395.745000px;}
.y2f8{bottom:395.854403px;}
.y1ea{bottom:396.360000px;}
.y230{bottom:398.625000px;}
.y31d{bottom:398.985000px;}
.y26b{bottom:399.240000px;}
.y346{bottom:400.065000px;}
.y364{bottom:402.945000px;}
.y25b{bottom:403.665000px;}
.y37b{bottom:404.025000px;}
.yb3{bottom:404.745000px;}
.y8e{bottom:407.625000px;}
.y191{bottom:408.705000px;}
.y14a{bottom:410.040000px;}
.y211{bottom:410.145000px;}
.y60{bottom:411.945000px;}
.y1ed{bottom:415.080000px;}
.y116{bottom:415.545000px;}
.yd8{bottom:415.905000px;}
.y2c6{bottom:417.345000px;}
.y1d9{bottom:418.065000px;}
.y22f{bottom:418.425000px;}
.y31c{bottom:418.785000px;}
.y345{bottom:419.865000px;}
.y37a{bottom:421.305000px;}
.y2d1{bottom:421.756765px;}
.y14b{bottom:422.895000px;}
.y15f{bottom:423.105000px;}
.y25a{bottom:423.825000px;}
.y1ba{bottom:424.905000px;}
.y288{bottom:428.505000px;}
.y210{bottom:429.945000px;}
.y5f{bottom:431.745000px;}
.y363{bottom:432.105000px;}
.yb2{bottom:433.905000px;}
.yd7{bottom:435.705000px;}
.y8d{bottom:436.425000px;}
.y190{bottom:437.505000px;}
.y31b{bottom:438.585000px;}
.y344{bottom:439.665000px;}
.y15e{bottom:442.905000px;}
.y149{bottom:443.160000px;}
.y259{bottom:443.625000px;}
.y2d0{bottom:444.329433px;}
.y115{bottom:444.345000px;}
.y1b9{bottom:444.705000px;}
.y2c5{bottom:446.145000px;}
.y1d8{bottom:446.865000px;}
.y22e{bottom:447.585000px;}
.y287{bottom:448.305000px;}
.y35b{bottom:449.790000px;}
.y20f{bottom:450.150000px;}
.y5e{bottom:451.950000px;}
.yb1{bottom:453.750000px;}
.yd6{bottom:455.550000px;}
.y8c{bottom:456.270000px;}
.y31a{bottom:458.790000px;}
.y343{bottom:459.870000px;}
.y362{bottom:460.950000px;}
.y258{bottom:463.470000px;}
.y114{bottom:464.190000px;}
.y1b8{bottom:464.550000px;}
.y18f{bottom:466.350000px;}
.y1d7{bottom:466.710000px;}
.y286{bottom:468.150000px;}
.y22d{bottom:468.510000px;}
.y5d{bottom:471.750000px;}
.yb0{bottom:473.550000px;}
.yd5{bottom:475.350000px;}
.y8b{bottom:476.070000px;}
.y148{bottom:476.280000px;}
.y319{bottom:478.590000px;}
.y20e{bottom:478.950000px;}
.y379{bottom:479.310000px;}
.y342{bottom:479.670000px;}
.y361{bottom:480.750000px;}
.y257{bottom:483.270000px;}
.y1b7{bottom:484.350000px;}
.y1e7{bottom:486.360000px;}
.y22c{bottom:489.390000px;}
.y5c{bottom:491.550000px;}
.y113{bottom:492.990000px;}
.yaf{bottom:493.350000px;}
.y18e{bottom:495.150000px;}
.y1d6{bottom:495.510000px;}
.y285{bottom:496.950000px;}
.y318{bottom:498.390000px;}
.y20d{bottom:498.750000px;}
.y341{bottom:499.470000px;}
.y1f1{bottom:500.760000px;}
.y256{bottom:503.070000px;}
.yd4{bottom:504.150000px;}
.y8a{bottom:504.870000px;}
.y378{bottom:508.110000px;}
.y147{bottom:509.400000px;}
.y22b{bottom:510.270000px;}
.y5b{bottom:511.350000px;}
.y112{bottom:512.790000px;}
.y2ab{bottom:514.635000px;}
.y19f{bottom:514.950000px;}
.y18d{bottom:515.310000px;}
.y317{bottom:518.190000px;}
.y20c{bottom:518.550000px;}
.yae{bottom:522.150000px;}
.y1b6{bottom:523.950000px;}
.y1d5{bottom:524.310000px;}
.y284{bottom:525.750000px;}
.y21c{bottom:526.680000px;}
.y340{bottom:528.270000px;}
.y1ef{bottom:529.920000px;}
.y21f{bottom:530.280000px;}
.yf7{bottom:530.790000px;}
.y5a{bottom:531.150000px;}
.y255{bottom:531.870000px;}
.yd3{bottom:532.950000px;}
.y89{bottom:533.670000px;}
.y19e{bottom:534.750000px;}
.y377{bottom:536.910000px;}
.y316{bottom:537.990000px;}
.y20b{bottom:538.350000px;}
.y360{bottom:540.150000px;}
.y111{bottom:541.590000px;}
.yad{bottom:541.950000px;}
.y146{bottom:542.520000px;}
.y1b5{bottom:543.750000px;}
.y18c{bottom:544.110000px;}
.y283{bottom:545.550000px;}
.y22a{bottom:550.950000px;}
.y1e5{bottom:551.160000px;}
.y15d{bottom:551.310000px;}
.yd2{bottom:552.750000px;}
.y1d4{bottom:553.110000px;}
.y1ec{bottom:553.320000px;}
.y19d{bottom:554.550000px;}
.yf6{bottom:557.070000px;}
.y315{bottom:557.790000px;}
.y20a{bottom:558.150000px;}
.y1f3{bottom:559.800000px;}
.y59{bottom:559.950000px;}
.y265{bottom:560.220000px;}
.y254{bottom:560.670000px;}
.yac{bottom:561.750000px;}
.y88{bottom:562.470000px;}
.y1b4{bottom:563.550000px;}
.y282{bottom:565.350000px;}
.y376{bottom:565.710000px;}
.y229{bottom:570.750000px;}
.y15c{bottom:571.110000px;}
.yd1{bottom:572.550000px;}
.y18b{bottom:572.910000px;}
.y19c{bottom:574.350000px;}
.y145{bottom:575.670000px;}
.y209{bottom:577.980000px;}
.y314{bottom:578.700000px;}
.y58{bottom:579.780000px;}
.y87{bottom:582.300000px;}
.y1b3{bottom:583.380000px;}
.y281{bottom:585.180000px;}
.yf5{bottom:585.900000px;}
.y35f{bottom:588.780000px;}
.y253{bottom:589.500000px;}
.yab{bottom:590.580000px;}
.y15b{bottom:590.940000px;}
.yd0{bottom:592.380000px;}
.y1d3{bottom:593.100000px;}
.y375{bottom:594.540000px;}
.y208{bottom:597.780000px;}
.y313{bottom:598.500000px;}
.y57{bottom:599.580000px;}
.y2c4{bottom:601.380000px;}
.y18a{bottom:601.740000px;}
.y86{bottom:602.100000px;}
.y19b{bottom:603.180000px;}
.y280{bottom:605.340000px;}
.yf4{bottom:605.700000px;}
.y35a{bottom:606.780000px;}
.y252{bottom:609.300000px;}
.yaa{bottom:610.380000px;}
.y15a{bottom:610.740000px;}
.ycf{bottom:612.180000px;}
.y12e{bottom:612.540000px;}
.y1d2{bottom:612.900000px;}
.y207{bottom:617.580000px;}
.y312{bottom:618.300000px;}
.y56{bottom:619.380000px;}
.y85{bottom:622.260000px;}
.y19a{bottom:623.340000px;}
.y27f{bottom:625.140000px;}
.yf3{bottom:625.500000px;}
.y359{bottom:626.580000px;}
.y251{bottom:629.100000px;}
.ya9{bottom:630.180000px;}
.y159{bottom:630.540000px;}
.y2c3{bottom:631.980000px;}
.yce{bottom:632.340000px;}
.y1d1{bottom:632.700000px;}
.y120{bottom:633.600000px;}
.y206{bottom:637.380000px;}
.y311{bottom:638.100000px;}
.y12d{bottom:641.340000px;}
.y84{bottom:642.060000px;}
.y1b2{bottom:643.140000px;}
.y110{bottom:644.580000px;}
.y33f{bottom:645.300000px;}
.y2cf{bottom:646.215000px;}
.y358{bottom:646.380000px;}
.y55{bottom:648.180000px;}
.y250{bottom:649.260000px;}
.y158{bottom:650.340000px;}
.ycd{bottom:652.140000px;}
.y1d0{bottom:652.500000px;}
.y27e{bottom:653.940000px;}
.yf2{bottom:656.100000px;}
.y205{bottom:657.540000px;}
.y310{bottom:658.260000px;}
.ya8{bottom:659.340000px;}
.y12c{bottom:661.140000px;}
.y83{bottom:661.860000px;}
.y1b1{bottom:662.940000px;}
.y33e{bottom:665.100000px;}
.y357{bottom:666.180000px;}
.y54{bottom:668.340000px;}
.y24f{bottom:669.060000px;}
.y157{bottom:670.140000px;}
.ycc{bottom:671.940000px;}
.y1cf{bottom:672.300000px;}
.y2a3{bottom:673.515000px;}
.y204{bottom:677.340000px;}
.y30f{bottom:678.060000px;}
.y189{bottom:679.140000px;}
.y12b{bottom:680.940000px;}
.y82{bottom:681.660000px;}
.y1b0{bottom:682.740000px;}
.yf1{bottom:684.900000px;}
.y33d{bottom:685.260000px;}
.y356{bottom:686.340000px;}
.y53{bottom:688.140000px;}
.y156{bottom:689.940000px;}
.ycb{bottom:691.740000px;}
.y203{bottom:697.140000px;}
.y24e{bottom:697.860000px;}
.y1ce{bottom:701.130000px;}
.y81{bottom:701.490000px;}
.y33c{bottom:705.090000px;}
.y355{bottom:706.170000px;}
.y52{bottom:707.970000px;}
.y12a{bottom:709.770000px;}
.yca{bottom:711.570000px;}
.yf0{bottom:713.730000px;}
.y1b{bottom:716.970000px;}
.y30e{bottom:717.690000px;}
.y155{bottom:718.770000px;}
.y1cd{bottom:720.930000px;}
.y80{bottom:721.290000px;}
.y33b{bottom:724.890000px;}
.y354{bottom:725.970000px;}
.y24d{bottom:726.690000px;}
.y51{bottom:727.770000px;}
.y228{bottom:729.570000px;}
.y129{bottom:729.930000px;}
.yc9{bottom:731.370000px;}
.y1a{bottom:734.250000px;}
.ya7{bottom:736.770000px;}
.y30d{bottom:737.490000px;}
.y374{bottom:738.570000px;}
.y1cc{bottom:740.730000px;}
.yef{bottom:744.330000px;}
.y33a{bottom:744.690000px;}
.y353{bottom:745.770000px;}
.y24c{bottom:746.490000px;}
.y154{bottom:747.570000px;}
.y227{bottom:749.370000px;}
.y7f{bottom:750.090000px;}
.y199{bottom:751.170000px;}
.y19{bottom:751.530000px;}
.y50{bottom:756.570000px;}
.y30c{bottom:757.290000px;}
.y128{bottom:758.730000px;}
.yc8{bottom:760.170000px;}
.y339{bottom:764.490000px;}
.y188{bottom:765.570000px;}
.y24b{bottom:766.290000px;}
.y373{bottom:767.370000px;}
.y18{bottom:768.450000px;}
.y226{bottom:769.170000px;}
.y1cb{bottom:769.530000px;}
.y7e{bottom:769.890000px;}
.y1af{bottom:770.970000px;}
.yee{bottom:774.930000px;}
.y4f{bottom:776.370000px;}
.y30b{bottom:777.090000px;}
.y127{bottom:778.530000px;}
.yc7{bottom:779.970000px;}
.y338{bottom:784.290000px;}
.y352{bottom:785.370000px;}
.y17{bottom:785.730000px;}
.y24a{bottom:786.090000px;}
.y225{bottom:788.970000px;}
.y7d{bottom:789.690000px;}
.y27d{bottom:790.770000px;}
.y187{bottom:794.370000px;}
.y4e{bottom:796.170000px;}
.y372{bottom:796.530000px;}
.y30a{bottom:796.890000px;}
.y1ca{bottom:798.330000px;}
.yc6{bottom:799.770000px;}
.y16{bottom:803.010000px;}
.y1f8{bottom:803.520000px;}
.y337{bottom:804.090000px;}
.y351{bottom:805.170000px;}
.yed{bottom:805.530000px;}
.y249{bottom:805.890000px;}
.y126{bottom:807.330000px;}
.y198{bottom:808.770000px;}
.y1f4{bottom:813.240000px;}
.y4d{bottom:815.970000px;}
.y309{bottom:816.690000px;}
.y7c{bottom:818.490000px;}
.yc5{bottom:819.570000px;}
.y15{bottom:820.290000px;}
.y186{bottom:823.530000px;}
.y336{bottom:823.890000px;}
.y350{bottom:824.970000px;}
.y371{bottom:825.330000px;}
.y248{bottom:825.690000px;}
.y1c9{bottom:827.535000px;}
.y220{bottom:829.080000px;}
.y153{bottom:834.375000px;}
.y4c{bottom:835.815000px;}
.yec{bottom:836.175000px;}
.y308{bottom:836.535000px;}
.y14{bottom:837.615000px;}
.y172{bottom:838.440000px;}
.y1ae{bottom:839.415000px;}
.y222{bottom:842.295000px;}
.y335{bottom:843.735000px;}
.y29b{bottom:843.870000px;}
.y34f{bottom:844.815000px;}
.y247{bottom:845.535000px;}
.y7b{bottom:847.695000px;}
.yc4{bottom:848.415000px;}
.y16e{bottom:848.520000px;}
.y138{bottom:850.320000px;}
.y185{bottom:852.375000px;}
.y370{bottom:854.175000px;}
.y13{bottom:854.895000px;}
.y4b{bottom:855.615000px;}
.y202{bottom:855.975000px;}
.y1c8{bottom:856.335000px;}
.y307{bottom:856.695000px;}
.y197{bottom:857.415000px;}
.y10f{bottom:859.575000px;}
.y125{bottom:861.735000px;}
.y152{bottom:863.175000px;}
.y334{bottom:863.535000px;}
.ya6{bottom:864.615000px;}
.y246{bottom:865.695000px;}
.y224{bottom:866.415000px;}
.yeb{bottom:866.775000px;}
.y7a{bottom:867.495000px;}
.y27c{bottom:868.575000px;}
.y12{bottom:872.175000px;}
.y4a{bottom:875.415000px;}
.y201{bottom:875.775000px;}
.y306{bottom:876.495000px;}
.y141{bottom:876.600000px;}
.yc3{bottom:877.575000px;}
.y10e{bottom:879.375000px;}
.y184{bottom:881.175000px;}
.y36f{bottom:882.975000px;}
.y333{bottom:883.695000px;}
.ya5{bottom:884.415000px;}
.y1c7{bottom:885.135000px;}
.y245{bottom:885.495000px;}
.y223{bottom:886.575000px;}
.y79{bottom:887.295000px;}
.y1ad{bottom:888.375000px;}
.y11{bottom:889.455000px;}
.y1f6{bottom:889.560000px;}
.y1fa{bottom:889.920000px;}
.y151{bottom:891.975000px;}
.y49{bottom:895.575000px;}
.y305{bottom:896.295000px;}
.yea{bottom:897.375000px;}
.y102{bottom:897.840000px;}
.yfd{bottom:898.815000px;}
.y1fd{bottom:901.080000px;}
.y332{bottom:903.495000px;}
.ya4{bottom:904.575000px;}
.y244{bottom:905.295000px;}
.yc2{bottom:906.375000px;}
.y10{bottom:906.735000px;}
.y10d{bottom:908.175000px;}
.y183{bottom:909.975000px;}
.y36e{bottom:911.775000px;}
.y1c6{bottom:913.935000px;}
.y48{bottom:915.375000px;}
.y16c{bottom:915.840000px;}
.y78{bottom:916.095000px;}
.y1ac{bottom:917.175000px;}
.y1ff{bottom:918.000000px;}
.y150{bottom:920.775000px;}
.y331{bottom:923.295000px;}
.yf{bottom:924.015000px;}
.ya3{bottom:924.375000px;}
.y243{bottom:925.095000px;}
.yc1{bottom:926.175000px;}
.y27b{bottom:927.975000px;}
.ye9{bottom:928.335000px;}
.y47{bottom:935.175000px;}
.y10c{bottom:936.975000px;}
.y182{bottom:938.775000px;}
.y36d{bottom:940.575000px;}
.y9{bottom:941.295000px;}
.y1c5{bottom:942.735000px;}
.y330{bottom:943.095000px;}
.ya2{bottom:944.175000px;}
.y77{bottom:944.895000px;}
.yc0{bottom:945.975000px;}
.y27a{bottom:947.775000px;}
.y14f{bottom:949.575000px;}
.y46{bottom:955.005000px;}
.y1ab{bottom:956.805000px;}
.y8{bottom:958.245000px;}
.ye8{bottom:958.965000px;}
.y32f{bottom:962.925000px;}
.ya1{bottom:964.005000px;}
.y242{bottom:964.725000px;}
.ybf{bottom:965.805000px;}
.y181{bottom:967.605000px;}
.y36c{bottom:969.405000px;}
.y1c4{bottom:971.565000px;}
.y21a{bottom:972.000000px;}
.y7{bottom:972.285000px;}
.y174{bottom:972.360000px;}
.y76{bottom:973.725000px;}
.y45{bottom:974.805000px;}
.y170{bottom:975.240000px;}
.y1aa{bottom:976.605000px;}
.y14e{bottom:978.405000px;}
.y32e{bottom:982.725000px;}
.ya0{bottom:983.805000px;}
.y241{bottom:984.525000px;}
.y10b{bottom:985.605000px;}
.ye7{bottom:989.565000px;}
.y75{bottom:993.525000px;}
.y44{bottom:994.605000px;}
.y180{bottom:996.405000px;}
.y36b{bottom:998.205000px;}
.y1c3{bottom:1000.365000px;}
.y13d{bottom:1001.160000px;}
.y32d{bottom:1002.525000px;}
.y9f{bottom:1003.605000px;}
.y240{bottom:1004.325000px;}
.y13f{bottom:1005.120000px;}
.y10a{bottom:1005.405000px;}
.y14d{bottom:1007.205000px;}
.y294{bottom:1009.875000px;}
.y74{bottom:1013.325000px;}
.y43{bottom:1014.405000px;}
.yfe{bottom:1017.360000px;}
.ye6{bottom:1020.165000px;}
.y32c{bottom:1022.325000px;}
.y9e{bottom:1023.405000px;}
.y23f{bottom:1024.125000px;}
.y109{bottom:1025.205000px;}
.y6{bottom:1027.005000px;}
.y73{bottom:1033.125000px;}
.y42{bottom:1034.205000px;}
.y14c{bottom:1036.005000px;}
.y100{bottom:1039.245000px;}
.y1c2{bottom:1039.965000px;}
.y169{bottom:1040.400000px;}
.y32b{bottom:1042.125000px;}
.y9d{bottom:1043.205000px;}
.y23e{bottom:1043.925000px;}
.y108{bottom:1045.005000px;}
.ye5{bottom:1050.765000px;}
.y5{bottom:1052.565000px;}
.y72{bottom:1052.925000px;}
.y41{bottom:1054.005000px;}
.y16b{bottom:1054.725000px;}
.y36a{bottom:1055.805000px;}
.y1c1{bottom:1060.845000px;}
.y32a{bottom:1061.925000px;}
.y9c{bottom:1063.005000px;}
.y200{bottom:1063.365000px;}
.y23d{bottom:1064.085000px;}
.y107{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.y17f{bottom:1073.805000px;}
.y143{bottom:1075.320000px;}
.y1c0{bottom:1081.050000px;}
.ye4{bottom:1081.410000px;}
.y329{bottom:1081.770000px;}
.y71{bottom:1082.130000px;}
.y40{bottom:1082.850000px;}
.y106{bottom:1085.010000px;}
.y23c{bottom:1092.930000px;}
.y3{bottom:1094.010000px;}
.y70{bottom:1101.930000px;}
.y3f{bottom:1103.010000px;}
.ye3{bottom:1112.010000px;}
.y105{bottom:1113.810000px;}
.y2{bottom:1114.530000px;}
.y6f{bottom:1121.730000px;}
.y3e{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y6e{bottom:1141.530000px;}
.y3d{bottom:1142.610000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h7{height:8.640000px;}
.h39{height:15.120000px;}
.h37{height:15.480000px;}
.h9{height:15.516000px;}
.h27{height:15.840000px;}
.h38{height:16.200000px;}
.h3a{height:16.920000px;}
.h26{height:18.000000px;}
.h33{height:19.080000px;}
.h35{height:19.440000px;}
.h3e{height:19.800000px;}
.h36{height:21.960000px;}
.h18{height:22.680000px;}
.h1a{height:23.400000px;}
.h34{height:23.760000px;}
.h2e{height:24.120000px;}
.h32{height:27.720000px;}
.h1b{height:28.800000px;}
.h29{height:29.160000px;}
.h2d{height:29.880000px;}
.h3b{height:31.320000px;}
.h60{height:32.099749px;}
.h61{height:32.396969px;}
.h13{height:32.584219px;}
.h11{height:33.480000px;}
.h22{height:35.806641px;}
.h3c{height:36.000000px;}
.h2c{height:37.440000px;}
.h2b{height:38.958047px;}
.h8{height:39.570469px;}
.h25{height:40.320000px;}
.h30{height:40.680000px;}
.h31{height:43.676719px;}
.h6{height:43.735781px;}
.h1c{height:43.839914px;}
.h53{height:44.262013px;}
.h4b{height:44.270858px;}
.h4d{height:44.290412px;}
.h48{height:44.423417px;}
.h43{height:44.477144px;}
.h5e{height:44.505887px;}
.h23{height:44.640000px;}
.h52{height:44.671847px;}
.h4a{height:44.680774px;}
.h4c{height:44.700509px;}
.h2{height:44.828437px;}
.h47{height:44.834745px;}
.h24{height:44.860781px;}
.h44{height:44.888969px;}
.h5f{height:44.917978px;}
.h28{height:44.978836px;}
.h5{height:45.101250px;}
.h5a{height:45.199504px;}
.h59{height:45.618018px;}
.h56{height:46.606666px;}
.h55{height:47.038209px;}
.h19{height:47.190938px;}
.h21{height:47.303297px;}
.h50{height:48.914087px;}
.h4f{height:49.366996px;}
.h5d{height:49.378263px;}
.h2f{height:49.582969px;}
.hb{height:49.715859px;}
.hf{height:49.848750px;}
.h3d{height:50.760000px;}
.h42{height:51.093558px;}
.h57{height:51.427918px;}
.h5b{height:52.899724px;}
.h10{height:53.280000px;}
.ha{height:53.298281px;}
.h3{height:53.367188px;}
.h45{height:53.416396px;}
.h40{height:53.645625px;}
.he{height:54.219375px;}
.hd{height:54.721406px;}
.h4{height:57.290625px;}
.h15{height:60.155156px;}
.h17{height:60.298383px;}
.h3f{height:61.920000px;}
.h1f{height:66.750937px;}
.h1e{height:67.043297px;}
.h1d{height:68.250937px;}
.h2a{height:68.471719px;}
.h20{height:69.323297px;}
.h16{height:71.613281px;}
.h49{height:80.327028px;}
.h51{height:117.825000px;}
.h46{height:117.900000px;}
.h58{height:120.375000px;}
.h41{height:122.925000px;}
.h54{height:124.123931px;}
.h4e{height:130.269108px;}
.h12{height:210.960000px;}
.h14{height:277.560000px;}
.hc{height:327.705000px;}
.h5c{height:458.997948px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:55.440000px;}
.w1c{width:65.520000px;}
.w1b{width:72.720000px;}
.w1d{width:76.680000px;}
.w16{width:77.400000px;}
.w9{width:90.000000px;}
.w17{width:92.880000px;}
.w28{width:96.480000px;}
.w1a{width:100.440000px;}
.w8{width:102.960000px;}
.wb{width:103.320000px;}
.w14{width:106.200000px;}
.w15{width:106.560000px;}
.w13{width:110.160000px;}
.w19{width:119.520000px;}
.w24{width:122.400000px;}
.w23{width:123.480000px;}
.w22{width:126.720000px;}
.w18{width:134.280000px;}
.w1f{width:135.720000px;}
.w20{width:151.560000px;}
.w21{width:155.160000px;}
.wd{width:167.760000px;}
.w27{width:173.160000px;}
.w26{width:174.240000px;}
.w12{width:191.520000px;}
.w11{width:192.600000px;}
.wc{width:203.760000px;}
.w25{width:225.720000px;}
.wf{width:244.080000px;}
.wa{width:253.080000px;}
.we{width:277.560000px;}
.w29{width:307.868690px;}
.w2a{width:309.074670px;}
.w2d{width:311.385000px;}
.w2c{width:311.547473px;}
.w2b{width:311.550000px;}
.w2e{width:314.015893px;}
.w2f{width:316.500000px;}
.w10{width:320.040000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w30{width:356.174239px;}
.w5{width:679.965000px;}
.w31{width:726.142220px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x69{left:2.433951px;}
.x6b{left:4.867913px;}
.x56{left:6.719664px;}
.x9{left:8.640000px;}
.x2c{left:11.370000px;}
.x20{left:15.690000px;}
.x3a{left:17.745000px;}
.x1c{left:19.950000px;}
.x37{left:25.350000px;}
.x35{left:27.930000px;}
.x1e{left:29.310000px;}
.x5c{left:43.852717px;}
.x60{left:73.541738px;}
.x58{left:78.740661px;}
.x54{left:82.054561px;}
.x55{left:85.414393px;}
.x65{left:90.726964px;}
.x4f{left:95.435987px;}
.x61{left:98.582030px;}
.x13{left:100.475987px;}
.x7{left:106.235987px;}
.xb{left:109.835987px;}
.x3d{left:111.275987px;}
.x50{left:117.035987px;}
.x10{left:118.835987px;}
.x2d{left:123.623987px;}
.xf{left:126.035987px;}
.x51{left:127.475987px;}
.xd{left:128.555987px;}
.x17{left:133.271987px;}
.x19{left:138.311987px;}
.x14{left:148.751987px;}
.x31{left:153.720000px;}
.x4c{left:157.320000px;}
.x18{left:160.274987px;}
.x64{left:164.088223px;}
.x48{left:168.120000px;}
.x41{left:173.880000px;}
.x15{left:180.794987px;}
.x59{left:182.179312px;}
.x57{left:183.222833px;}
.x3b{left:187.274987px;}
.x3e{left:191.234987px;}
.x6a{left:193.310505px;}
.x6e{left:201.423711px;}
.x6c{left:206.324079px;}
.x40{left:210.600000px;}
.x3c{left:214.274987px;}
.x2a{left:224.204987px;}
.x66{left:225.435255px;}
.x62{left:234.856949px;}
.x39{left:236.160000px;}
.x5e{left:239.847492px;}
.x42{left:249.480000px;}
.x67{left:252.104021px;}
.x2{left:254.264987px;}
.x5f{left:255.843974px;}
.x63{left:260.783723px;}
.x5d{left:264.711504px;}
.x6{left:274.064987px;}
.x46{left:276.840000px;}
.x45{left:280.440000px;}
.x6d{left:284.286522px;}
.xa{left:304.350000px;}
.x70{left:310.270396px;}
.x6f{left:315.149135px;}
.xc{left:319.469987px;}
.x11{left:330.269987px;}
.xe{left:333.869987px;}
.x68{left:338.699047px;}
.x12{left:339.984000px;}
.x22{left:342.179987px;}
.x1b{left:347.400000px;}
.x36{left:352.080000px;}
.x5{left:363.389987px;}
.x27{left:371.444987px;}
.x38{left:374.040000px;}
.x1d{left:378.149987px;}
.x4{left:379.949987px;}
.x28{left:389.774987px;}
.x49{left:391.320000px;}
.x1a{left:394.709987px;}
.x3{left:398.339987px;}
.x71{left:411.793579px;}
.x23{left:419.369987px;}
.x52{left:426.419987px;}
.x53{left:428.219987px;}
.x5a{left:432.539987px;}
.x5b{left:435.059987px;}
.x72{left:444.278831px;}
.x8{left:446.579987px;}
.x16{left:447.660000px;}
.x73{left:460.526869px;}
.x24{left:470.084987px;}
.x2b{left:474.120000px;}
.x74{left:476.785719px;}
.x34{left:481.680000px;}
.x75{left:493.012119px;}
.x33{left:495.569987px;}
.x44{left:499.680000px;}
.x47{left:507.960000px;}
.x4b{left:510.120000px;}
.x4a{left:516.600000px;}
.x76{left:525.519005px;}
.x1f{left:529.200000px;}
.x2e{left:531.720000px;}
.x29{left:539.789987px;}
.x32{left:541.080000px;}
.x2f{left:543.089987px;}
.x25{left:546.944987px;}
.x43{left:573.840000px;}
.x30{left:585.360000px;}
.x4d{left:662.760000px;}
.x4e{left:673.844987px;}
.x3f{left:703.440000px;}
.x26{left:720.644987px;}
.x1{left:786.929987px;}
.x21{left:820.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v5{vertical-align:7.946002pt;}
.v4{vertical-align:17.546667pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.v6{vertical-align:31.914321pt;}
.ls32{letter-spacing:-4.480000pt;}
.ls3e{letter-spacing:-4.287778pt;}
.ls42{letter-spacing:-4.085511pt;}
.ls3a{letter-spacing:-4.012574pt;}
.ls40{letter-spacing:-4.011773pt;}
.ls35{letter-spacing:-3.977421pt;}
.ls45{letter-spacing:-3.962160pt;}
.ls33{letter-spacing:-3.898838pt;}
.ls3c{letter-spacing:-3.882469pt;}
.ls37{letter-spacing:-3.880755pt;}
.ls6{letter-spacing:-1.637333pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.264000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls3b{letter-spacing:-0.680187pt;}
.ls41{letter-spacing:-0.680051pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.622461pt;}
.ls3f{letter-spacing:-0.605882pt;}
.ls43{letter-spacing:-0.577300pt;}
.ls46{letter-spacing:-0.559870pt;}
.ls34{letter-spacing:-0.550923pt;}
.ls3d{letter-spacing:-0.548610pt;}
.ls38{letter-spacing:-0.548368pt;}
.ls48{letter-spacing:-0.538611pt;}
.ls16{letter-spacing:-0.450667pt;}
.ls7{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls20{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.358400pt;}
.ls49{letter-spacing:-0.291931pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.015360pt;}
.ls1f{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.307200pt;}
.ls1e{letter-spacing:0.376320pt;}
.ls3{letter-spacing:0.414720pt;}
.ls8{letter-spacing:0.414933pt;}
.ls18{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.442880pt;}
.ls23{letter-spacing:0.450667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.650667pt;}
.ls2f{letter-spacing:0.768000pt;}
.ls4a{letter-spacing:0.800000pt;}
.ls44{letter-spacing:1.012073pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls10{letter-spacing:5.534720pt;}
.ls24{letter-spacing:5.760000pt;}
.ls50{letter-spacing:7.040000pt;}
.ls4e{letter-spacing:8.094720pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls1a{letter-spacing:9.600000pt;}
.ls4c{letter-spacing:9.760000pt;}
.ls2b{letter-spacing:10.880000pt;}
.ls30{letter-spacing:12.160000pt;}
.ls13{letter-spacing:13.214720pt;}
.ls4d{letter-spacing:13.440000pt;}
.ls4b{letter-spacing:13.600000pt;}
.ls14{letter-spacing:15.774720pt;}
.ls29{letter-spacing:19.614720pt;}
.ls28{letter-spacing:20.894720pt;}
.ls4f{letter-spacing:26.142720pt;}
.ls9{letter-spacing:31.145387pt;}
.ls2a{letter-spacing:31.262720pt;}
.ls27{letter-spacing:33.694720pt;}
.ls15{letter-spacing:33.705387pt;}
.ls2d{letter-spacing:36.254720pt;}
.ls11{letter-spacing:36.265387pt;}
.lsf{letter-spacing:38.814720pt;}
.ls21{letter-spacing:40.105387pt;}
.ls31{letter-spacing:40.222720pt;}
.ls2c{letter-spacing:41.385387pt;}
.lsa{letter-spacing:56.745387pt;}
.ls25{letter-spacing:74.079104pt;}
.ls26{letter-spacing:74.144000pt;}
.lse{letter-spacing:92.713387pt;}
.ls47{letter-spacing:143.553818pt;}
.ws15{word-spacing:-53.888000pt;}
.wsa{word-spacing:-53.760000pt;}
.ws5b{word-spacing:-14.581525pt;}
.ws13{word-spacing:-14.464000pt;}
.ws53{word-spacing:-14.175830pt;}
.ws10{word-spacing:-13.890667pt;}
.wsc{word-spacing:-13.872533pt;}
.ws4{word-spacing:-13.854933pt;}
.wsf{word-spacing:-13.816320pt;}
.ws42{word-spacing:-13.482906pt;}
.ws5{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.422080pt;}
.wse{word-spacing:-13.025067pt;}
.ws7{word-spacing:-13.007467pt;}
.wsb{word-spacing:-12.989333pt;}
.ws4c{word-spacing:-12.846878pt;}
.wsd{word-spacing:-12.608000pt;}
.ws57{word-spacing:-12.459001pt;}
.ws5e{word-spacing:-12.267809pt;}
.ws1c{word-spacing:-12.259886pt;}
.ws1f{word-spacing:-12.245077pt;}
.ws35{word-spacing:-12.208415pt;}
.ws27{word-spacing:-12.203025pt;}
.ws45{word-spacing:-12.200587pt;}
.ws14{word-spacing:-12.178688pt;}
.ws8{word-spacing:-12.160000pt;}
.ws12{word-spacing:-12.149760pt;}
.ws2{word-spacing:-11.717333pt;}
.ws0{word-spacing:-11.212800pt;}
.ws11{word-spacing:-10.282240pt;}
.ws5c{word-spacing:-9.973111pt;}
.ws1{word-spacing:-9.933867pt;}
.ws61{word-spacing:-8.848124pt;}
.ws2e{word-spacing:-8.655360pt;}
.ws3{word-spacing:-8.640000pt;}
.ws16{word-spacing:-0.060125pt;}
.ws6{word-spacing:0.000000pt;}
.ws2d{word-spacing:35.935215pt;}
.ws3c{word-spacing:35.951087pt;}
.ws1b{word-spacing:35.970226pt;}
.ws25{word-spacing:35.989332pt;}
.ws4b{word-spacing:36.191621pt;}
.ws34{word-spacing:36.330672pt;}
.ws5a{word-spacing:36.554424pt;}
.ws52{word-spacing:37.831219pt;}
.ws44{word-spacing:39.704182pt;}
.ws2a{word-spacing:59.662659pt;}
.ws22{word-spacing:59.727256pt;}
.ws3a{word-spacing:59.820889pt;}
.ws48{word-spacing:60.046118pt;}
.ws31{word-spacing:60.058117pt;}
.ws56{word-spacing:60.914170pt;}
.ws4f{word-spacing:62.949339pt;}
.ws41{word-spacing:66.065860pt;}
.ws38{word-spacing:82.591889pt;}
.ws19{word-spacing:82.781182pt;}
.ws5d{word-spacing:88.368808pt;}
.ws3f{word-spacing:91.214027pt;}
.ws28{word-spacing:106.137077pt;}
.ws20{word-spacing:106.263612pt;}
.ws36{word-spacing:106.315835pt;}
.ws46{word-spacing:106.379458pt;}
.ws2f{word-spacing:106.532535pt;}
.ws17{word-spacing:106.631637pt;}
.ws54{word-spacing:108.228873pt;}
.ws60{word-spacing:108.526742pt;}
.ws4d{word-spacing:111.875829pt;}
.ws3d{word-spacing:117.414622pt;}
.ws5f{word-spacing:132.363765pt;}
.ws1e{word-spacing:167.802475pt;}
.ws4a{word-spacing:190.384189pt;}
.ws59{word-spacing:194.013268pt;}
.ws2c{word-spacing:221.532076pt;}
.ws24{word-spacing:221.710371pt;}
.ws3b{word-spacing:222.025558pt;}
.ws33{word-spacing:222.058826pt;}
.ws1d{word-spacing:222.829067pt;}
.ws2b{word-spacing:226.283629pt;}
.ws23{word-spacing:226.554227pt;}
.ws39{word-spacing:226.779210pt;}
.ws32{word-spacing:226.810905pt;}
.ws49{word-spacing:226.897384pt;}
.ws1a{word-spacing:227.470460pt;}
.ws58{word-spacing:231.164842pt;}
.ws51{word-spacing:233.359270pt;}
.ws50{word-spacing:238.361523pt;}
.ws29{word-spacing:240.944817pt;}
.ws21{word-spacing:241.265938pt;}
.ws30{word-spacing:241.472093pt;}
.ws47{word-spacing:241.555643pt;}
.ws43{word-spacing:245.203802pt;}
.ws55{word-spacing:246.133570pt;}
.ws40{word-spacing:250.453709pt;}
.ws4e{word-spacing:253.796261pt;}
.ws37{word-spacing:265.316675pt;}
.ws18{word-spacing:266.170402pt;}
.ws3e{word-spacing:293.014274pt;}
.ws26{word-spacing:341.491412pt;}
._26{margin-left:-8.238080pt;}
._11{margin-left:-4.769280pt;}
._10{margin-left:-3.816960pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.102720pt;}
._7{width:4.047360pt;}
._9{width:5.117440pt;}
._d{width:6.236160pt;}
._f{width:7.227307pt;}
._e{width:8.432213pt;}
._b{width:9.416107pt;}
._a{width:10.375680pt;}
._c{width:11.350613pt;}
._16{width:12.472320pt;}
._1c{width:14.353920pt;}
._15{width:15.336960pt;}
._14{width:16.235520pt;}
._12{width:18.009600pt;}
._13{width:19.783680pt;}
._27{width:21.291947pt;}
._17{width:22.425600pt;}
._18{width:23.923200pt;}
._1b{width:25.566720pt;}
._19{width:26.641920pt;}
._1a{width:27.755520pt;}
._20{width:29.422080pt;}
._1f{width:30.374400pt;}
._1e{width:31.395840pt;}
._1d{width:32.901120pt;}
._21{width:34.567680pt;}
._23{width:36.019200pt;}
._22{width:37.632000pt;}
._24{width:61.770240pt;}
._25{width:126.995782pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._28{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs18{font-size:31.827783pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:32.128000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fsb{font-size:42.240000pt;}
.fs12{font-size:43.887002pt;}
.fsf{font-size:43.895772pt;}
.fs10{font-size:43.915161pt;}
.fse{font-size:44.047038pt;}
.fsd{font-size:44.100310pt;}
.fs17{font-size:44.128810pt;}
.fs15{font-size:44.816550pt;}
.fs13{font-size:46.211790pt;}
.fs11{font-size:48.499662pt;}
.fs3{font-size:48.640000pt;}
.fs9{font-size:48.768000pt;}
.fs14{font-size:50.992194pt;}
.fs2{font-size:51.200000pt;}
.fs16{font-size:52.451530pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:53.888000pt;}
.fsc{font-size:60.124747pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:74.240000pt;}
.y1e9{bottom:-11.066667pt;}
.y21e{bottom:-10.746667pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.y1f0{bottom:0.773333pt;}
.y1f5{bottom:0.826667pt;}
.y1f2{bottom:1.733333pt;}
.y173{bottom:1.826667pt;}
.y17a{bottom:2.013333pt;}
.y300{bottom:2.073098pt;}
.y1fe{bottom:2.466667pt;}
.yd{bottom:2.560000pt;}
.y1f7{bottom:2.786667pt;}
.y2f{bottom:2.880000pt;}
.y104{bottom:3.426667pt;}
.y171{bottom:3.453333pt;}
.y1e8{bottom:4.293333pt;}
.y21d{bottom:4.613333pt;}
.y1fc{bottom:4.706667pt;}
.y177{bottom:5.506667pt;}
.y101{bottom:5.693333pt;}
.y13e{bottom:6.333333pt;}
.y1ee{bottom:6.493333pt;}
.y142{bottom:6.946667pt;}
.y140{bottom:6.973333pt;}
.y17e{bottom:7.106667pt;}
.y2b0{bottom:7.933926pt;}
.y2a0{bottom:7.939015pt;}
.y270{bottom:7.939017pt;}
.y277{bottom:8.014471pt;}
.y26a{bottom:8.021619pt;}
.y2c0{bottom:8.148941pt;}
.y1eb{bottom:8.413333pt;}
.y2b8{bottom:8.437328pt;}
.y2a8{bottom:8.818636pt;}
.y1e6{bottom:11.973333pt;}
.y16f{bottom:13.026667pt;}
.y144{bottom:13.093333pt;}
.y179{bottom:15.133333pt;}
.y1f9{bottom:15.546667pt;}
.y2a2{bottom:15.917542pt;}
.y29a{bottom:16.978305pt;}
.y103{bottom:17.186667pt;}
.y2aa{bottom:17.666665pt;}
.y2e{bottom:18.240000pt;}
.y1fb{bottom:19.426667pt;}
.y17d{bottom:20.226667pt;}
.y2c1{bottom:22.415004pt;}
.y16d{bottom:23.266667pt;}
.y2f9{bottom:24.104178pt;}
.y16a{bottom:27.453333pt;}
.y2af{bottom:27.900535pt;}
.y29f{bottom:27.918432pt;}
.y26f{bottom:27.918437pt;}
.y276{bottom:27.952247pt;}
.y298{bottom:27.952248pt;}
.y269{bottom:28.052032pt;}
.y2bf{bottom:28.538587pt;}
.y2b7{bottom:29.461749pt;}
.y2a7{bottom:30.883941pt;}
.y21b{bottom:32.573333pt;}
.y2b9{bottom:32.584142pt;}
.yff{bottom:33.213333pt;}
.y2d{bottom:33.600000pt;}
.y279{bottom:34.938651pt;}
.y2b2{bottom:35.873979pt;}
.y2c2{bottom:37.690315pt;}
.ye{bottom:38.720000pt;}
.y2ba{bottom:39.939169pt;}
.y221{bottom:42.466667pt;}
.y13b{bottom:43.040000pt;}
.y13c{bottom:44.026667pt;}
.y2fc{bottom:45.168683pt;}
.y2ae{bottom:47.867144pt;}
.y29e{bottom:47.897852pt;}
.y26e{bottom:47.897857pt;}
.y275{bottom:47.922846pt;}
.y297{bottom:47.922847pt;}
.y268{bottom:48.115687pt;}
.y2be{bottom:48.894452pt;}
.y278{bottom:48.911475pt;}
.y2c{bottom:48.960000pt;}
.y124{bottom:49.733333pt;}
.y2b1{bottom:49.844005pt;}
.y2b6{bottom:50.451338pt;}
.y2a6{bottom:52.949103pt;}
.y299{bottom:58.896790pt;}
.y2a1{bottom:59.865666pt;}
.y2f5{bottom:60.200485pt;}
.y2de{bottom:60.200495pt;}
.yc{bottom:60.800000pt;}
.y271{bottom:63.855018pt;}
.y2b{bottom:64.360000pt;}
.y2a9{bottom:66.166325pt;}
.y2fd{bottom:66.199860pt;}
.y2ad{bottom:67.833745pt;}
.y26d{bottom:67.844308pt;}
.y29d{bottom:67.877251pt;}
.y274{bottom:67.893441pt;}
.y296{bottom:67.893446pt;}
.y267{bottom:68.146225pt;}
.y2bd{bottom:69.283964pt;}
.y2b5{bottom:71.475612pt;}
.y2a5{bottom:74.977842pt;}
.y2a{bottom:79.720000pt;}
.y2f4{bottom:80.231761pt;}
.y2e9{bottom:80.231765pt;}
.y2dd{bottom:80.231775pt;}
.ya{bottom:84.192000pt;}
.y123{bottom:84.453333pt;}
.y2ac{bottom:90.798641pt;}
.y26c{bottom:90.823938pt;}
.y273{bottom:90.829971pt;}
.y295{bottom:90.829976pt;}
.y29c{bottom:90.856900pt;}
.y266{bottom:92.215998pt;}
.y2ff{bottom:92.263853pt;}
.y2bc{bottom:92.701621pt;}
.y139{bottom:92.773333pt;}
.y29{bottom:95.080000pt;}
.y2b4{bottom:95.622313pt;}
.y2fb{bottom:98.296571pt;}
.y2f3{bottom:100.296371pt;}
.y2e8{bottom:100.296375pt;}
.y2dc{bottom:100.296385pt;}
.y2a4{bottom:100.356423pt;}
.y2fa{bottom:102.296162pt;}
.y301{bottom:109.295439pt;}
.y28{bottom:110.120000pt;}
.y35e{bottom:116.192000pt;}
.y9b{bottom:116.832000pt;}
.y1a9{bottom:117.792000pt;}
.y6d{bottom:118.112000pt;}
.y168{bottom:119.712000pt;}
.y2f2{bottom:120.327651pt;}
.y2e7{bottom:120.327655pt;}
.y2db{bottom:120.327665pt;}
.yfc{bottom:120.672000pt;}
.y122{bottom:121.466667pt;}
.y2fe{bottom:125.360461pt;}
.y27{bottom:125.480000pt;}
.ybe{bottom:125.792000pt;}
.y293{bottom:127.392000pt;}
.y1e4{bottom:128.032000pt;}
.y302{bottom:130.359945pt;}
.y219{bottom:132.192000pt;}
.y9a{bottom:134.426667pt;}
.y1a8{bottom:135.386667pt;}
.y6c{bottom:135.706667pt;}
.ye2{bottom:137.306667pt;}
.yfb{bottom:138.266667pt;}
.y11f{bottom:138.586667pt;}
.y2ce{bottom:140.186667pt;}
.y2f1{bottom:140.385595pt;}
.y2e6{bottom:140.385599pt;}
.y2da{bottom:140.385609pt;}
.y26{bottom:140.840000pt;}
.y35d{bottom:141.786667pt;}
.y264{bottom:142.426667pt;}
.ybd{bottom:143.386667pt;}
.y38{bottom:145.306667pt;}
.y1e3{bottom:145.626667pt;}
.y1bf{bottom:147.866667pt;}
.y137{bottom:149.466667pt;}
.y218{bottom:149.786667pt;}
.y23b{bottom:151.386667pt;}
.y99{bottom:152.346667pt;}
.y292{bottom:153.306667pt;}
.y6b{bottom:154.266667pt;}
.y25{bottom:156.200000pt;}
.y2f0{bottom:160.423541pt;}
.y2e5{bottom:160.423545pt;}
.y2d9{bottom:160.423555pt;}
.y328{bottom:160.666667pt;}
.y1a7{bottom:161.306667pt;}
.y121{bottom:162.080000pt;}
.y37{bottom:162.906667pt;}
.y1e2{bottom:163.226667pt;}
.yfa{bottom:163.866667pt;}
.y11e{bottom:164.186667pt;}
.ye1{bottom:164.506667pt;}
.y1be{bottom:165.466667pt;}
.y2cd{bottom:166.106667pt;}
.y136{bottom:167.066667pt;}
.y35c{bottom:167.386667pt;}
.y263{bottom:168.346667pt;}
.y23a{bottom:168.986667pt;}
.ybc{bottom:169.306667pt;}
.y167{bottom:170.906667pt;}
.y24{bottom:171.586667pt;}
.y6a{bottom:172.826667pt;}
.y217{bottom:175.746667pt;}
.y98{bottom:177.986667pt;}
.y327{bottom:178.306667pt;}
.y1a6{bottom:178.946667pt;}
.y2ef{bottom:180.448155pt;}
.y2e4{bottom:180.448158pt;}
.y2d8{bottom:180.448169pt;}
.y36{bottom:180.546667pt;}
.y1e1{bottom:180.866667pt;}
.y2bb{bottom:182.013333pt;}
.y1bd{bottom:183.426667pt;}
.y135{bottom:184.706667pt;}
.y239{bottom:186.626667pt;}
.y23{bottom:186.946667pt;}
.y304{bottom:187.487421pt;}
.y291{bottom:188.546667pt;}
.y34e{bottom:188.866667pt;}
.yf9{bottom:189.506667pt;}
.y11d{bottom:189.826667pt;}
.y69{bottom:190.466667pt;}
.ye0{bottom:191.746667pt;}
.y176{bottom:192.960000pt;}
.y216{bottom:193.346667pt;}
.y262{bottom:193.986667pt;}
.ybb{bottom:194.946667pt;}
.y17c{bottom:195.840000pt;}
.y326{bottom:195.906667pt;}
.y303{bottom:196.513163pt;}
.y166{bottom:196.546667pt;}
.y272{bottom:197.560000pt;}
.y35{bottom:198.146667pt;}
.y1e0{bottom:198.466667pt;}
.y13a{bottom:200.346667pt;}
.y2ee{bottom:200.512764pt;}
.y2e3{bottom:200.512768pt;}
.y2d7{bottom:200.512778pt;}
.y1bc{bottom:201.986667pt;}
.y22{bottom:202.306667pt;}
.y97{bottom:203.586667pt;}
.yf8{bottom:204.226667pt;}
.y1a5{bottom:204.546667pt;}
.y238{bottom:205.506667pt;}
.y290{bottom:206.146667pt;}
.y34d{bottom:206.466667pt;}
.y68{bottom:208.386667pt;}
.y175{bottom:211.586667pt;}
.yba{bottom:212.546667pt;}
.y325{bottom:213.506667pt;}
.y2f6{bottom:213.551426pt;}
.y11c{bottom:215.426667pt;}
.y34{bottom:215.746667pt;}
.y1df{bottom:216.066667pt;}
.y2cc{bottom:217.346667pt;}
.y21{bottom:217.666667pt;}
.ydf{bottom:218.946667pt;}
.y1bb{bottom:219.586667pt;}
.y369{bottom:220.546667pt;}
.y2ed{bottom:220.550710pt;}
.y2e2{bottom:220.550714pt;}
.y2d6{bottom:220.550724pt;}
.y96{bottom:221.186667pt;}
.y165{bottom:222.146667pt;}
.y237{bottom:223.106667pt;}
.y28f{bottom:223.746667pt;}
.y34c{bottom:224.386667pt;}
.y134{bottom:228.226667pt;}
.yb9{bottom:230.146667pt;}
.y324{bottom:231.426667pt;}
.y20{bottom:233.026667pt;}
.y33{bottom:233.666667pt;}
.y67{bottom:234.946667pt;}
.y261{bottom:237.186667pt;}
.y95{bottom:238.786667pt;}
.y1a4{bottom:239.746667pt;}
.y2ec{bottom:240.615320pt;}
.y2e1{bottom:240.615324pt;}
.y2d5{bottom:240.615334pt;}
.y236{bottom:240.706667pt;}
.y11b{bottom:241.026667pt;}
.y28e{bottom:241.346667pt;}
.y196{bottom:241.666667pt;}
.y34b{bottom:241.986667pt;}
.y2cb{bottom:242.946667pt;}
.y215{bottom:244.546667pt;}
.y133{bottom:245.826667pt;}
.yde{bottom:246.146667pt;}
.y164{bottom:247.746667pt;}
.y1f{bottom:248.386667pt;}
.y323{bottom:249.026667pt;}
.y32{bottom:251.266667pt;}
.y66{bottom:252.546667pt;}
.y260{bottom:254.786667pt;}
.yb8{bottom:255.746667pt;}
.y17b{bottom:256.320000pt;}
.y94{bottom:256.386667pt;}
.y235{bottom:258.306667pt;}
.y28d{bottom:258.946667pt;}
.y1de{bottom:259.266667pt;}
.y34a{bottom:259.586667pt;}
.y2eb{bottom:260.639934pt;}
.y2e0{bottom:260.639938pt;}
.y2d4{bottom:260.639948pt;}
.y132{bottom:263.426667pt;}
.y1e{bottom:263.746667pt;}
.y1a3{bottom:265.346667pt;}
.y322{bottom:266.626667pt;}
.y11a{bottom:266.946667pt;}
.y195{bottom:267.266667pt;}
.y2ca{bottom:268.546667pt;}
.y65{bottom:270.146667pt;}
.y368{bottom:271.746667pt;}
.y25f{bottom:272.386667pt;}
.ydd{bottom:273.346667pt;}
.y163{bottom:273.666667pt;}
.y93{bottom:273.986667pt;}
.y234{bottom:275.906667pt;}
.y28c{bottom:276.546667pt;}
.y1dd{bottom:276.866667pt;}
.y349{bottom:277.186667pt;}
.y1d{bottom:279.106667pt;}
.y2ea{bottom:280.677880pt;}
.y2df{bottom:280.677884pt;}
.y2d3{bottom:280.677894pt;}
.y131{bottom:281.026667pt;}
.yb7{bottom:281.346667pt;}
.y2f7{bottom:282.704337pt;}
.y321{bottom:284.226667pt;}
.y31{bottom:284.866667pt;}
.y64{bottom:287.773333pt;}
.y367{bottom:289.373333pt;}
.y25e{bottom:290.013333pt;}
.y1a2{bottom:290.973333pt;}
.y92{bottom:291.613333pt;}
.y119{bottom:292.573333pt;}
.y233{bottom:293.533333pt;}
.y2c9{bottom:294.173333pt;}
.y348{bottom:294.813333pt;}
.y214{bottom:295.773333pt;}
.ydc{bottom:298.973333pt;}
.y162{bottom:299.293333pt;}
.y2d2{bottom:300.742494pt;}
.y320{bottom:301.853333pt;}
.y28b{bottom:302.173333pt;}
.y194{bottom:302.493333pt;}
.y1dc{bottom:302.813333pt;}
.y63{bottom:305.373333pt;}
.y130{bottom:306.653333pt;}
.yb6{bottom:306.973333pt;}
.y1a1{bottom:308.573333pt;}
.y91{bottom:309.213333pt;}
.y366{bottom:314.973333pt;}
.y25d{bottom:315.613333pt;}
.ydb{bottom:316.573333pt;}
.y2b3{bottom:317.973333pt;}
.y118{bottom:318.173333pt;}
.y30{bottom:318.493333pt;}
.y232{bottom:319.133333pt;}
.y31f{bottom:319.453333pt;}
.y2c8{bottom:319.773333pt;}
.y193{bottom:320.093333pt;}
.y1db{bottom:320.413333pt;}
.y213{bottom:321.373333pt;}
.y178{bottom:321.920000pt;}
.y62{bottom:322.973333pt;}
.yb5{bottom:324.573333pt;}
.y161{bottom:324.893333pt;}
.y1a0{bottom:326.173333pt;}
.y90{bottom:326.813333pt;}
.y28a{bottom:327.773333pt;}
.y12f{bottom:332.253333pt;}
.yda{bottom:334.173333pt;}
.y231{bottom:336.733333pt;}
.y31e{bottom:337.053333pt;}
.y192{bottom:337.693333pt;}
.y347{bottom:338.013333pt;}
.y365{bottom:340.573333pt;}
.y1c{bottom:340.893333pt;}
.y25c{bottom:341.213333pt;}
.yb4{bottom:342.173333pt;}
.y117{bottom:343.773333pt;}
.y8f{bottom:344.733333pt;}
.y2c7{bottom:345.373333pt;}
.y289{bottom:345.693333pt;}
.y1da{bottom:346.013333pt;}
.y212{bottom:346.973333pt;}
.y61{bottom:348.573333pt;}
.y160{bottom:350.493333pt;}
.yd9{bottom:351.773333pt;}
.y2f8{bottom:351.870581pt;}
.y1ea{bottom:352.320000pt;}
.y230{bottom:354.333333pt;}
.y31d{bottom:354.653333pt;}
.y26b{bottom:354.880000pt;}
.y346{bottom:355.613333pt;}
.y364{bottom:358.173333pt;}
.y25b{bottom:358.813333pt;}
.y37b{bottom:359.133333pt;}
.yb3{bottom:359.773333pt;}
.y8e{bottom:362.333333pt;}
.y191{bottom:363.293333pt;}
.y14a{bottom:364.480000pt;}
.y211{bottom:364.573333pt;}
.y60{bottom:366.173333pt;}
.y1ed{bottom:368.960000pt;}
.y116{bottom:369.373333pt;}
.yd8{bottom:369.693333pt;}
.y2c6{bottom:370.973333pt;}
.y1d9{bottom:371.613333pt;}
.y22f{bottom:371.933333pt;}
.y31c{bottom:372.253333pt;}
.y345{bottom:373.213333pt;}
.y37a{bottom:374.493333pt;}
.y2d1{bottom:374.894903pt;}
.y14b{bottom:375.906667pt;}
.y15f{bottom:376.093333pt;}
.y25a{bottom:376.733333pt;}
.y1ba{bottom:377.693333pt;}
.y288{bottom:380.893333pt;}
.y210{bottom:382.173333pt;}
.y5f{bottom:383.773333pt;}
.y363{bottom:384.093333pt;}
.yb2{bottom:385.693333pt;}
.yd7{bottom:387.293333pt;}
.y8d{bottom:387.933333pt;}
.y190{bottom:388.893333pt;}
.y31b{bottom:389.853333pt;}
.y344{bottom:390.813333pt;}
.y15e{bottom:393.693333pt;}
.y149{bottom:393.920000pt;}
.y259{bottom:394.333333pt;}
.y2d0{bottom:394.959496pt;}
.y115{bottom:394.973333pt;}
.y1b9{bottom:395.293333pt;}
.y2c5{bottom:396.573333pt;}
.y1d8{bottom:397.213333pt;}
.y22e{bottom:397.853333pt;}
.y287{bottom:398.493333pt;}
.y35b{bottom:399.813333pt;}
.y20f{bottom:400.133333pt;}
.y5e{bottom:401.733333pt;}
.yb1{bottom:403.333333pt;}
.yd6{bottom:404.933333pt;}
.y8c{bottom:405.573333pt;}
.y31a{bottom:407.813333pt;}
.y343{bottom:408.773333pt;}
.y362{bottom:409.733333pt;}
.y258{bottom:411.973333pt;}
.y114{bottom:412.613333pt;}
.y1b8{bottom:412.933333pt;}
.y18f{bottom:414.533333pt;}
.y1d7{bottom:414.853333pt;}
.y286{bottom:416.133333pt;}
.y22d{bottom:416.453333pt;}
.y5d{bottom:419.333333pt;}
.yb0{bottom:420.933333pt;}
.yd5{bottom:422.533333pt;}
.y8b{bottom:423.173333pt;}
.y148{bottom:423.360000pt;}
.y319{bottom:425.413333pt;}
.y20e{bottom:425.733333pt;}
.y379{bottom:426.053333pt;}
.y342{bottom:426.373333pt;}
.y361{bottom:427.333333pt;}
.y257{bottom:429.573333pt;}
.y1b7{bottom:430.533333pt;}
.y1e7{bottom:432.320000pt;}
.y22c{bottom:435.013333pt;}
.y5c{bottom:436.933333pt;}
.y113{bottom:438.213333pt;}
.yaf{bottom:438.533333pt;}
.y18e{bottom:440.133333pt;}
.y1d6{bottom:440.453333pt;}
.y285{bottom:441.733333pt;}
.y318{bottom:443.013333pt;}
.y20d{bottom:443.333333pt;}
.y341{bottom:443.973333pt;}
.y1f1{bottom:445.120000pt;}
.y256{bottom:447.173333pt;}
.yd4{bottom:448.133333pt;}
.y8a{bottom:448.773333pt;}
.y378{bottom:451.653333pt;}
.y147{bottom:452.800000pt;}
.y22b{bottom:453.573333pt;}
.y5b{bottom:454.533333pt;}
.y112{bottom:455.813333pt;}
.y2ab{bottom:457.453333pt;}
.y19f{bottom:457.733333pt;}
.y18d{bottom:458.053333pt;}
.y317{bottom:460.613333pt;}
.y20c{bottom:460.933333pt;}
.yae{bottom:464.133333pt;}
.y1b6{bottom:465.733333pt;}
.y1d5{bottom:466.053333pt;}
.y284{bottom:467.333333pt;}
.y21c{bottom:468.160000pt;}
.y340{bottom:469.573333pt;}
.y1ef{bottom:471.040000pt;}
.y21f{bottom:471.360000pt;}
.yf7{bottom:471.813333pt;}
.y5a{bottom:472.133333pt;}
.y255{bottom:472.773333pt;}
.yd3{bottom:473.733333pt;}
.y89{bottom:474.373333pt;}
.y19e{bottom:475.333333pt;}
.y377{bottom:477.253333pt;}
.y316{bottom:478.213333pt;}
.y20b{bottom:478.533333pt;}
.y360{bottom:480.133333pt;}
.y111{bottom:481.413333pt;}
.yad{bottom:481.733333pt;}
.y146{bottom:482.240000pt;}
.y1b5{bottom:483.333333pt;}
.y18c{bottom:483.653333pt;}
.y283{bottom:484.933333pt;}
.y22a{bottom:489.733333pt;}
.y1e5{bottom:489.920000pt;}
.y15d{bottom:490.053333pt;}
.yd2{bottom:491.333333pt;}
.y1d4{bottom:491.653333pt;}
.y1ec{bottom:491.840000pt;}
.y19d{bottom:492.933333pt;}
.yf6{bottom:495.173333pt;}
.y315{bottom:495.813333pt;}
.y20a{bottom:496.133333pt;}
.y1f3{bottom:497.600000pt;}
.y59{bottom:497.733333pt;}
.y265{bottom:497.973333pt;}
.y254{bottom:498.373333pt;}
.yac{bottom:499.333333pt;}
.y88{bottom:499.973333pt;}
.y1b4{bottom:500.933333pt;}
.y282{bottom:502.533333pt;}
.y376{bottom:502.853333pt;}
.y229{bottom:507.333333pt;}
.y15c{bottom:507.653333pt;}
.yd1{bottom:508.933333pt;}
.y18b{bottom:509.253333pt;}
.y19c{bottom:510.533333pt;}
.y145{bottom:511.706667pt;}
.y209{bottom:513.760000pt;}
.y314{bottom:514.400000pt;}
.y58{bottom:515.360000pt;}
.y87{bottom:517.600000pt;}
.y1b3{bottom:518.560000pt;}
.y281{bottom:520.160000pt;}
.yf5{bottom:520.800000pt;}
.y35f{bottom:523.360000pt;}
.y253{bottom:524.000000pt;}
.yab{bottom:524.960000pt;}
.y15b{bottom:525.280000pt;}
.yd0{bottom:526.560000pt;}
.y1d3{bottom:527.200000pt;}
.y375{bottom:528.480000pt;}
.y208{bottom:531.360000pt;}
.y313{bottom:532.000000pt;}
.y57{bottom:532.960000pt;}
.y2c4{bottom:534.560000pt;}
.y18a{bottom:534.880000pt;}
.y86{bottom:535.200000pt;}
.y19b{bottom:536.160000pt;}
.y280{bottom:538.080000pt;}
.yf4{bottom:538.400000pt;}
.y35a{bottom:539.360000pt;}
.y252{bottom:541.600000pt;}
.yaa{bottom:542.560000pt;}
.y15a{bottom:542.880000pt;}
.ycf{bottom:544.160000pt;}
.y12e{bottom:544.480000pt;}
.y1d2{bottom:544.800000pt;}
.y207{bottom:548.960000pt;}
.y312{bottom:549.600000pt;}
.y56{bottom:550.560000pt;}
.y85{bottom:553.120000pt;}
.y19a{bottom:554.080000pt;}
.y27f{bottom:555.680000pt;}
.yf3{bottom:556.000000pt;}
.y359{bottom:556.960000pt;}
.y251{bottom:559.200000pt;}
.ya9{bottom:560.160000pt;}
.y159{bottom:560.480000pt;}
.y2c3{bottom:561.760000pt;}
.yce{bottom:562.080000pt;}
.y1d1{bottom:562.400000pt;}
.y120{bottom:563.200000pt;}
.y206{bottom:566.560000pt;}
.y311{bottom:567.200000pt;}
.y12d{bottom:570.080000pt;}
.y84{bottom:570.720000pt;}
.y1b2{bottom:571.680000pt;}
.y110{bottom:572.960000pt;}
.y33f{bottom:573.600000pt;}
.y2cf{bottom:574.413333pt;}
.y358{bottom:574.560000pt;}
.y55{bottom:576.160000pt;}
.y250{bottom:577.120000pt;}
.y158{bottom:578.080000pt;}
.ycd{bottom:579.680000pt;}
.y1d0{bottom:580.000000pt;}
.y27e{bottom:581.280000pt;}
.yf2{bottom:583.200000pt;}
.y205{bottom:584.480000pt;}
.y310{bottom:585.120000pt;}
.ya8{bottom:586.080000pt;}
.y12c{bottom:587.680000pt;}
.y83{bottom:588.320000pt;}
.y1b1{bottom:589.280000pt;}
.y33e{bottom:591.200000pt;}
.y357{bottom:592.160000pt;}
.y54{bottom:594.080000pt;}
.y24f{bottom:594.720000pt;}
.y157{bottom:595.680000pt;}
.ycc{bottom:597.280000pt;}
.y1cf{bottom:597.600000pt;}
.y2a3{bottom:598.680000pt;}
.y204{bottom:602.080000pt;}
.y30f{bottom:602.720000pt;}
.y189{bottom:603.680000pt;}
.y12b{bottom:605.280000pt;}
.y82{bottom:605.920000pt;}
.y1b0{bottom:606.880000pt;}
.yf1{bottom:608.800000pt;}
.y33d{bottom:609.120000pt;}
.y356{bottom:610.080000pt;}
.y53{bottom:611.680000pt;}
.y156{bottom:613.280000pt;}
.ycb{bottom:614.880000pt;}
.y203{bottom:619.680000pt;}
.y24e{bottom:620.320000pt;}
.y1ce{bottom:623.226667pt;}
.y81{bottom:623.546667pt;}
.y33c{bottom:626.746667pt;}
.y355{bottom:627.706667pt;}
.y52{bottom:629.306667pt;}
.y12a{bottom:630.906667pt;}
.yca{bottom:632.506667pt;}
.yf0{bottom:634.426667pt;}
.y1b{bottom:637.306667pt;}
.y30e{bottom:637.946667pt;}
.y155{bottom:638.906667pt;}
.y1cd{bottom:640.826667pt;}
.y80{bottom:641.146667pt;}
.y33b{bottom:644.346667pt;}
.y354{bottom:645.306667pt;}
.y24d{bottom:645.946667pt;}
.y51{bottom:646.906667pt;}
.y228{bottom:648.506667pt;}
.y129{bottom:648.826667pt;}
.yc9{bottom:650.106667pt;}
.y1a{bottom:652.666667pt;}
.ya7{bottom:654.906667pt;}
.y30d{bottom:655.546667pt;}
.y374{bottom:656.506667pt;}
.y1cc{bottom:658.426667pt;}
.yef{bottom:661.626667pt;}
.y33a{bottom:661.946667pt;}
.y353{bottom:662.906667pt;}
.y24c{bottom:663.546667pt;}
.y154{bottom:664.506667pt;}
.y227{bottom:666.106667pt;}
.y7f{bottom:666.746667pt;}
.y199{bottom:667.706667pt;}
.y19{bottom:668.026667pt;}
.y50{bottom:672.506667pt;}
.y30c{bottom:673.146667pt;}
.y128{bottom:674.426667pt;}
.yc8{bottom:675.706667pt;}
.y339{bottom:679.546667pt;}
.y188{bottom:680.506667pt;}
.y24b{bottom:681.146667pt;}
.y373{bottom:682.106667pt;}
.y18{bottom:683.066667pt;}
.y226{bottom:683.706667pt;}
.y1cb{bottom:684.026667pt;}
.y7e{bottom:684.346667pt;}
.y1af{bottom:685.306667pt;}
.yee{bottom:688.826667pt;}
.y4f{bottom:690.106667pt;}
.y30b{bottom:690.746667pt;}
.y127{bottom:692.026667pt;}
.yc7{bottom:693.306667pt;}
.y338{bottom:697.146667pt;}
.y352{bottom:698.106667pt;}
.y17{bottom:698.426667pt;}
.y24a{bottom:698.746667pt;}
.y225{bottom:701.306667pt;}
.y7d{bottom:701.946667pt;}
.y27d{bottom:702.906667pt;}
.y187{bottom:706.106667pt;}
.y4e{bottom:707.706667pt;}
.y372{bottom:708.026667pt;}
.y30a{bottom:708.346667pt;}
.y1ca{bottom:709.626667pt;}
.yc6{bottom:710.906667pt;}
.y16{bottom:713.786667pt;}
.y1f8{bottom:714.240000pt;}
.y337{bottom:714.746667pt;}
.y351{bottom:715.706667pt;}
.yed{bottom:716.026667pt;}
.y249{bottom:716.346667pt;}
.y126{bottom:717.626667pt;}
.y198{bottom:718.906667pt;}
.y1f4{bottom:722.880000pt;}
.y4d{bottom:725.306667pt;}
.y309{bottom:725.946667pt;}
.y7c{bottom:727.546667pt;}
.yc5{bottom:728.506667pt;}
.y15{bottom:729.146667pt;}
.y186{bottom:732.026667pt;}
.y336{bottom:732.346667pt;}
.y350{bottom:733.306667pt;}
.y371{bottom:733.626667pt;}
.y248{bottom:733.946667pt;}
.y1c9{bottom:735.586667pt;}
.y220{bottom:736.960000pt;}
.y153{bottom:741.666667pt;}
.y4c{bottom:742.946667pt;}
.yec{bottom:743.266667pt;}
.y308{bottom:743.586667pt;}
.y14{bottom:744.546667pt;}
.y172{bottom:745.280000pt;}
.y1ae{bottom:746.146667pt;}
.y222{bottom:748.706667pt;}
.y335{bottom:749.986667pt;}
.y29b{bottom:750.106667pt;}
.y34f{bottom:750.946667pt;}
.y247{bottom:751.586667pt;}
.y7b{bottom:753.506667pt;}
.yc4{bottom:754.146667pt;}
.y16e{bottom:754.240000pt;}
.y138{bottom:755.840000pt;}
.y185{bottom:757.666667pt;}
.y370{bottom:759.266667pt;}
.y13{bottom:759.906667pt;}
.y4b{bottom:760.546667pt;}
.y202{bottom:760.866667pt;}
.y1c8{bottom:761.186667pt;}
.y307{bottom:761.506667pt;}
.y197{bottom:762.146667pt;}
.y10f{bottom:764.066667pt;}
.y125{bottom:765.986667pt;}
.y152{bottom:767.266667pt;}
.y334{bottom:767.586667pt;}
.ya6{bottom:768.546667pt;}
.y246{bottom:769.506667pt;}
.y224{bottom:770.146667pt;}
.yeb{bottom:770.466667pt;}
.y7a{bottom:771.106667pt;}
.y27c{bottom:772.066667pt;}
.y12{bottom:775.266667pt;}
.y4a{bottom:778.146667pt;}
.y201{bottom:778.466667pt;}
.y306{bottom:779.106667pt;}
.y141{bottom:779.200000pt;}
.yc3{bottom:780.066667pt;}
.y10e{bottom:781.666667pt;}
.y184{bottom:783.266667pt;}
.y36f{bottom:784.866667pt;}
.y333{bottom:785.506667pt;}
.ya5{bottom:786.146667pt;}
.y1c7{bottom:786.786667pt;}
.y245{bottom:787.106667pt;}
.y223{bottom:788.066667pt;}
.y79{bottom:788.706667pt;}
.y1ad{bottom:789.666667pt;}
.y11{bottom:790.626667pt;}
.y1f6{bottom:790.720000pt;}
.y1fa{bottom:791.040000pt;}
.y151{bottom:792.866667pt;}
.y49{bottom:796.066667pt;}
.y305{bottom:796.706667pt;}
.yea{bottom:797.666667pt;}
.y102{bottom:798.080000pt;}
.yfd{bottom:798.946667pt;}
.y1fd{bottom:800.960000pt;}
.y332{bottom:803.106667pt;}
.ya4{bottom:804.066667pt;}
.y244{bottom:804.706667pt;}
.yc2{bottom:805.666667pt;}
.y10{bottom:805.986667pt;}
.y10d{bottom:807.266667pt;}
.y183{bottom:808.866667pt;}
.y36e{bottom:810.466667pt;}
.y1c6{bottom:812.386667pt;}
.y48{bottom:813.666667pt;}
.y16c{bottom:814.080000pt;}
.y78{bottom:814.306667pt;}
.y1ac{bottom:815.266667pt;}
.y1ff{bottom:816.000000pt;}
.y150{bottom:818.466667pt;}
.y331{bottom:820.706667pt;}
.yf{bottom:821.346667pt;}
.ya3{bottom:821.666667pt;}
.y243{bottom:822.306667pt;}
.yc1{bottom:823.266667pt;}
.y27b{bottom:824.866667pt;}
.ye9{bottom:825.186667pt;}
.y47{bottom:831.266667pt;}
.y10c{bottom:832.866667pt;}
.y182{bottom:834.466667pt;}
.y36d{bottom:836.066667pt;}
.y9{bottom:836.706667pt;}
.y1c5{bottom:837.986667pt;}
.y330{bottom:838.306667pt;}
.ya2{bottom:839.266667pt;}
.y77{bottom:839.906667pt;}
.yc0{bottom:840.866667pt;}
.y27a{bottom:842.466667pt;}
.y14f{bottom:844.066667pt;}
.y46{bottom:848.893333pt;}
.y1ab{bottom:850.493333pt;}
.y8{bottom:851.773333pt;}
.ye8{bottom:852.413333pt;}
.y32f{bottom:855.933333pt;}
.ya1{bottom:856.893333pt;}
.y242{bottom:857.533333pt;}
.ybf{bottom:858.493333pt;}
.y181{bottom:860.093333pt;}
.y36c{bottom:861.693333pt;}
.y1c4{bottom:863.613333pt;}
.y21a{bottom:864.000000pt;}
.y7{bottom:864.253333pt;}
.y174{bottom:864.320000pt;}
.y76{bottom:865.533333pt;}
.y45{bottom:866.493333pt;}
.y170{bottom:866.880000pt;}
.y1aa{bottom:868.093333pt;}
.y14e{bottom:869.693333pt;}
.y32e{bottom:873.533333pt;}
.ya0{bottom:874.493333pt;}
.y241{bottom:875.133333pt;}
.y10b{bottom:876.093333pt;}
.ye7{bottom:879.613333pt;}
.y75{bottom:883.133333pt;}
.y44{bottom:884.093333pt;}
.y180{bottom:885.693333pt;}
.y36b{bottom:887.293333pt;}
.y1c3{bottom:889.213333pt;}
.y13d{bottom:889.920000pt;}
.y32d{bottom:891.133333pt;}
.y9f{bottom:892.093333pt;}
.y240{bottom:892.733333pt;}
.y13f{bottom:893.440000pt;}
.y10a{bottom:893.693333pt;}
.y14d{bottom:895.293333pt;}
.y294{bottom:897.666667pt;}
.y74{bottom:900.733333pt;}
.y43{bottom:901.693333pt;}
.yfe{bottom:904.320000pt;}
.ye6{bottom:906.813333pt;}
.y32c{bottom:908.733333pt;}
.y9e{bottom:909.693333pt;}
.y23f{bottom:910.333333pt;}
.y109{bottom:911.293333pt;}
.y6{bottom:912.893333pt;}
.y73{bottom:918.333333pt;}
.y42{bottom:919.293333pt;}
.y14c{bottom:920.893333pt;}
.y100{bottom:923.773333pt;}
.y1c2{bottom:924.413333pt;}
.y169{bottom:924.800000pt;}
.y32b{bottom:926.333333pt;}
.y9d{bottom:927.293333pt;}
.y23e{bottom:927.933333pt;}
.y108{bottom:928.893333pt;}
.ye5{bottom:934.013333pt;}
.y5{bottom:935.613333pt;}
.y72{bottom:935.933333pt;}
.y41{bottom:936.893333pt;}
.y16b{bottom:937.533333pt;}
.y36a{bottom:938.493333pt;}
.y1c1{bottom:942.973333pt;}
.y32a{bottom:943.933333pt;}
.y9c{bottom:944.893333pt;}
.y200{bottom:945.213333pt;}
.y23d{bottom:945.853333pt;}
.y107{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.y17f{bottom:954.493333pt;}
.y143{bottom:955.840000pt;}
.y1c0{bottom:960.933333pt;}
.ye4{bottom:961.253333pt;}
.y329{bottom:961.573333pt;}
.y71{bottom:961.893333pt;}
.y40{bottom:962.533333pt;}
.y106{bottom:964.453333pt;}
.y23c{bottom:971.493333pt;}
.y3{bottom:972.453333pt;}
.y70{bottom:979.493333pt;}
.y3f{bottom:980.453333pt;}
.ye3{bottom:988.453333pt;}
.y105{bottom:990.053333pt;}
.y2{bottom:990.693333pt;}
.y6f{bottom:997.093333pt;}
.y3e{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y6e{bottom:1014.693333pt;}
.y3d{bottom:1015.653333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h7{height:7.680000pt;}
.h39{height:13.440000pt;}
.h37{height:13.760000pt;}
.h9{height:13.792000pt;}
.h27{height:14.080000pt;}
.h38{height:14.400000pt;}
.h3a{height:15.040000pt;}
.h26{height:16.000000pt;}
.h33{height:16.960000pt;}
.h35{height:17.280000pt;}
.h3e{height:17.600000pt;}
.h36{height:19.520000pt;}
.h18{height:20.160000pt;}
.h1a{height:20.800000pt;}
.h34{height:21.120000pt;}
.h2e{height:21.440000pt;}
.h32{height:24.640000pt;}
.h1b{height:25.600000pt;}
.h29{height:25.920000pt;}
.h2d{height:26.560000pt;}
.h3b{height:27.840000pt;}
.h60{height:28.533110pt;}
.h61{height:28.797306pt;}
.h13{height:28.963750pt;}
.h11{height:29.760000pt;}
.h22{height:31.828125pt;}
.h3c{height:32.000000pt;}
.h2c{height:33.280000pt;}
.h2b{height:34.629375pt;}
.h8{height:35.173750pt;}
.h25{height:35.840000pt;}
.h30{height:36.160000pt;}
.h31{height:38.823750pt;}
.h6{height:38.876250pt;}
.h1c{height:38.968812pt;}
.h53{height:39.344012pt;}
.h4b{height:39.351874pt;}
.h4d{height:39.369256pt;}
.h48{height:39.487482pt;}
.h43{height:39.535239pt;}
.h5e{height:39.560788pt;}
.h23{height:39.680000pt;}
.h52{height:39.708308pt;}
.h4a{height:39.716243pt;}
.h4c{height:39.733786pt;}
.h2{height:39.847500pt;}
.h47{height:39.853106pt;}
.h24{height:39.876250pt;}
.h44{height:39.901306pt;}
.h5f{height:39.927092pt;}
.h28{height:39.981187pt;}
.h5{height:40.090000pt;}
.h5a{height:40.177337pt;}
.h59{height:40.549349pt;}
.h56{height:41.428148pt;}
.h55{height:41.811742pt;}
.h19{height:41.947500pt;}
.h21{height:42.047375pt;}
.h50{height:43.479189pt;}
.h4f{height:43.881774pt;}
.h5d{height:43.891790pt;}
.h2f{height:44.073750pt;}
.hb{height:44.191875pt;}
.hf{height:44.310000pt;}
.h3d{height:45.120000pt;}
.h42{height:45.416496pt;}
.h57{height:45.713705pt;}
.h5b{height:47.021977pt;}
.h10{height:47.360000pt;}
.ha{height:47.376250pt;}
.h3{height:47.437500pt;}
.h45{height:47.481241pt;}
.h40{height:47.685000pt;}
.he{height:48.195000pt;}
.hd{height:48.641250pt;}
.h4{height:50.925000pt;}
.h15{height:53.471250pt;}
.h17{height:53.598562pt;}
.h3f{height:55.040000pt;}
.h1f{height:59.334167pt;}
.h1e{height:59.594042pt;}
.h1d{height:60.667500pt;}
.h2a{height:60.863750pt;}
.h20{height:61.620708pt;}
.h16{height:63.656250pt;}
.h49{height:71.401803pt;}
.h51{height:104.733333pt;}
.h46{height:104.800000pt;}
.h58{height:107.000000pt;}
.h41{height:109.266667pt;}
.h54{height:110.332383pt;}
.h4e{height:115.794763pt;}
.h12{height:187.520000pt;}
.h14{height:246.720000pt;}
.hc{height:291.293333pt;}
.h5c{height:407.998176pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:49.280000pt;}
.w1c{width:58.240000pt;}
.w1b{width:64.640000pt;}
.w1d{width:68.160000pt;}
.w16{width:68.800000pt;}
.w9{width:80.000000pt;}
.w17{width:82.560000pt;}
.w28{width:85.760000pt;}
.w1a{width:89.280000pt;}
.w8{width:91.520000pt;}
.wb{width:91.840000pt;}
.w14{width:94.400000pt;}
.w15{width:94.720000pt;}
.w13{width:97.920000pt;}
.w19{width:106.240000pt;}
.w24{width:108.800000pt;}
.w23{width:109.760000pt;}
.w22{width:112.640000pt;}
.w18{width:119.360000pt;}
.w1f{width:120.640000pt;}
.w20{width:134.720000pt;}
.w21{width:137.920000pt;}
.wd{width:149.120000pt;}
.w27{width:153.920000pt;}
.w26{width:154.880000pt;}
.w12{width:170.240000pt;}
.w11{width:171.200000pt;}
.wc{width:181.120000pt;}
.w25{width:200.640000pt;}
.wf{width:216.960000pt;}
.wa{width:224.960000pt;}
.we{width:246.720000pt;}
.w29{width:273.661058pt;}
.w2a{width:274.733040pt;}
.w2d{width:276.786667pt;}
.w2c{width:276.931087pt;}
.w2b{width:276.933333pt;}
.w2e{width:279.125239pt;}
.w2f{width:281.333333pt;}
.w10{width:284.480000pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w30{width:316.599323pt;}
.w5{width:604.413333pt;}
.w31{width:645.459751pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x69{left:2.163512pt;}
.x6b{left:4.327034pt;}
.x56{left:5.973034pt;}
.x9{left:7.680000pt;}
.x2c{left:10.106667pt;}
.x20{left:13.946667pt;}
.x3a{left:15.773333pt;}
.x1c{left:17.733333pt;}
.x37{left:22.533333pt;}
.x35{left:24.826667pt;}
.x1e{left:26.053333pt;}
.x5c{left:38.980193pt;}
.x60{left:65.370434pt;}
.x58{left:69.991699pt;}
.x54{left:72.937388pt;}
.x55{left:75.923905pt;}
.x65{left:80.646190pt;}
.x4f{left:84.831988pt;}
.x61{left:87.628471pt;}
.x13{left:89.311988pt;}
.x7{left:94.431988pt;}
.xb{left:97.631988pt;}
.x3d{left:98.911988pt;}
.x50{left:104.031988pt;}
.x10{left:105.631988pt;}
.x2d{left:109.887988pt;}
.xf{left:112.031988pt;}
.x51{left:113.311988pt;}
.xd{left:114.271988pt;}
.x17{left:118.463988pt;}
.x19{left:122.943988pt;}
.x14{left:132.223988pt;}
.x31{left:136.640000pt;}
.x4c{left:139.840000pt;}
.x18{left:142.466655pt;}
.x64{left:145.856198pt;}
.x48{left:149.440000pt;}
.x41{left:154.560000pt;}
.x15{left:160.706655pt;}
.x59{left:161.937166pt;}
.x57{left:162.864740pt;}
.x3b{left:166.466655pt;}
.x3e{left:169.986655pt;}
.x6a{left:171.831560pt;}
.x6e{left:179.043299pt;}
.x6c{left:183.399181pt;}
.x40{left:187.200000pt;}
.x3c{left:190.466655pt;}
.x2a{left:199.293322pt;}
.x66{left:200.386893pt;}
.x62{left:208.761733pt;}
.x39{left:209.920000pt;}
.x5e{left:213.197771pt;}
.x42{left:221.760000pt;}
.x67{left:224.092463pt;}
.x2{left:226.013322pt;}
.x5f{left:227.416866pt;}
.x63{left:231.807754pt;}
.x5d{left:235.299114pt;}
.x6{left:243.613322pt;}
.x46{left:246.080000pt;}
.x45{left:249.280000pt;}
.x6d{left:252.699131pt;}
.xa{left:270.533333pt;}
.x70{left:275.795907pt;}
.x6f{left:280.132564pt;}
.xc{left:283.973322pt;}
.x11{left:293.573322pt;}
.xe{left:296.773322pt;}
.x68{left:301.065820pt;}
.x12{left:302.208000pt;}
.x22{left:304.159988pt;}
.x1b{left:308.800000pt;}
.x36{left:312.960000pt;}
.x5{left:323.013322pt;}
.x27{left:330.173322pt;}
.x38{left:332.480000pt;}
.x1d{left:336.133322pt;}
.x4{left:337.733322pt;}
.x28{left:346.466655pt;}
.x49{left:347.840000pt;}
.x1a{left:350.853322pt;}
.x3{left:354.079988pt;}
.x71{left:366.038737pt;}
.x23{left:372.773322pt;}
.x52{left:379.039988pt;}
.x53{left:380.639988pt;}
.x5a{left:384.479988pt;}
.x5b{left:386.719988pt;}
.x72{left:394.914517pt;}
.x8{left:396.959988pt;}
.x16{left:397.920000pt;}
.x73{left:409.357217pt;}
.x24{left:417.853322pt;}
.x2b{left:421.440000pt;}
.x74{left:423.809528pt;}
.x34{left:428.160000pt;}
.x75{left:438.232994pt;}
.x33{left:440.506655pt;}
.x44{left:444.160000pt;}
.x47{left:451.520000pt;}
.x4b{left:453.440000pt;}
.x4a{left:459.200000pt;}
.x76{left:467.128005pt;}
.x1f{left:470.400000pt;}
.x2e{left:472.640000pt;}
.x29{left:479.813322pt;}
.x32{left:480.960000pt;}
.x2f{left:482.746655pt;}
.x25{left:486.173322pt;}
.x43{left:510.080000pt;}
.x30{left:520.320000pt;}
.x4d{left:589.120000pt;}
.x4e{left:598.973322pt;}
.x3f{left:625.280000pt;}
.x26{left:640.573322pt;}
.x1{left:699.493322pt;}
.x21{left:729.573322pt;}
}




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