
    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_a94bbb632912ebf7a17bfe35.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_071e06b20172c8e2d4b999a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e9fded8f8969348f84f87790.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9d02ebc2230dd643e96686da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.579000;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_5c4ff27a2690acbf167e8cb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_ec44ef8c8e06ffd0c2b963f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3dc3314d3f2a994caebc1930.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_7ff1348e350d0a06ff2d6f9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1be8729cd90207916406b41e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5e4d92779228eb09e28c144c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_5e4d92779228eb09e28c144c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_3806c09892a9ce3c1c895a24.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_14ffcd07fdc583db5b7d2f8f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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_8a62cd91f95a74ecb21d038b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.678000;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_f8ff49d93a183125f3831b9e.woff2')format("woff");}.fff{font-family:fff;line-height:0.959000;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_70f9683b716f33d582f52d75.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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_5219d3a40d741cd7dcd6f195.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959000;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_254f3060e55422ef2125087f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9dd87f897bc44bb9116b846c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.566000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_91524eda7ed2459e0e37e7c3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a3534836305135411fa6cef8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.316000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8e44ae0aaa82ed2cc2886453.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d87f6b3269e6a9592c686bc1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9c2f3ea9b4dea7027df055c0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c1e07bb83d300e08dfb0110c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6914700a4e23985124372162.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_2064a2df64939802adf9297f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_82d51765de714735c67a3d1f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_b64cee79195c99e3837dbe2c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_d68eccf8a232befc1ffc9272.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_82d51765de714735c67a3d1f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.959000;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:ff20;src:url('chunks/assets/font_b64cee79195c99e3837dbe2c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.732000;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:ff21;src:url('chunks/assets/font_47d236b5b955f82be099b207.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_943a055c20d367690b7e91a0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v6{vertical-align:-10.200000px;}
.v4{vertical-align:-8.964000px;}
.v3{vertical-align:-7.470000px;}
.v5{vertical-align:-6.232075px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:7.974000px;}
.v7{vertical-align:15.054000px;}
.v1{vertical-align:23.754000px;}
.v8{vertical-align:28.392000px;}
.v9{vertical-align:44.280000px;}
.ls2{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000334px;}
.ls26{letter-spacing:0.000421px;}
.ls1d{letter-spacing:0.000607px;}
.ls29{letter-spacing:0.002612px;}
.lsd{letter-spacing:0.002700px;}
.ls38{letter-spacing:0.002706px;}
.ls18{letter-spacing:0.002712px;}
.ls2a{letter-spacing:0.003427px;}
.ls25{letter-spacing:0.004361px;}
.ls27{letter-spacing:0.004546px;}
.ls19{letter-spacing:0.005418px;}
.ls5{letter-spacing:0.005823px;}
.ls28{letter-spacing:0.006421px;}
.ls2d{letter-spacing:0.007363px;}
.ls49{letter-spacing:0.009777px;}
.ls8{letter-spacing:2.323947px;}
.ls1{letter-spacing:2.986920px;}
.lse{letter-spacing:4.929619px;}
.ls37{letter-spacing:5.296338px;}
.ls11{letter-spacing:5.302338px;}
.ls3a{letter-spacing:5.423418px;}
.ls3c{letter-spacing:5.429418px;}
.ls16{letter-spacing:7.844694px;}
.ls12{letter-spacing:8.753418px;}
.ls13{letter-spacing:10.904712px;}
.ls39{letter-spacing:10.910712px;}
.ls43{letter-spacing:12.729427px;}
.ls42{letter-spacing:14.182132px;}
.ls40{letter-spacing:14.530921px;}
.lsc{letter-spacing:14.540700px;}
.ls9{letter-spacing:14.543412px;}
.ls15{letter-spacing:14.543418px;}
.ls1c{letter-spacing:15.598800px;}
.ls36{letter-spacing:18.179412px;}
.ls3b{letter-spacing:18.182706px;}
.ls3d{letter-spacing:18.182712px;}
.ls17{letter-spacing:18.196379px;}
.ls3e{letter-spacing:21.815418px;}
.ls6{letter-spacing:24.091040px;}
.ls7{letter-spacing:24.607040px;}
.ls14{letter-spacing:25.841418px;}
.lsb{letter-spacing:27.114507px;}
.lsa{letter-spacing:27.120507px;}
.ls3f{letter-spacing:27.245418px;}
.ls34{letter-spacing:32.723604px;}
.ls4{letter-spacing:32.724538px;}
.ls35{letter-spacing:32.727300px;}
.ls3{letter-spacing:32.729412px;}
.ls0{letter-spacing:90.260915px;}
.ls1b{letter-spacing:107.091677px;}
.ls23{letter-spacing:112.843590px;}
.ls20{letter-spacing:147.379590px;}
.ls41{letter-spacing:165.998103px;}
.ls1a{letter-spacing:180.908147px;}
.lsf{letter-spacing:219.294031px;}
.ls10{letter-spacing:221.227129px;}
.ls33{letter-spacing:350.348612px;}
.ls32{letter-spacing:375.008612px;}
.ls48{letter-spacing:402.698612px;}
.ls2b{letter-spacing:418.886612px;}
.ls31{letter-spacing:427.682612px;}
.ls2c{letter-spacing:427.688612px;}
.ls24{letter-spacing:430.370612px;}
.ls30{letter-spacing:452.342612px;}
.ls2f{letter-spacing:453.566612px;}
.ls2e{letter-spacing:478.226612px;}
.ls21{letter-spacing:483.242612px;}
.ls1f{letter-spacing:504.128612px;}
.ls22{letter-spacing:520.316612px;}
.ls1e{letter-spacing:597.656612px;}
.ls47{letter-spacing:783.674612px;}
.ls45{letter-spacing:836.546612px;}
.ls46{letter-spacing:857.432612px;}
.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;}
}
.ws33{word-spacing:-190.364906px;}
.ws6b{word-spacing:-175.454862px;}
.ws37{word-spacing:-116.548436px;}
.ws5d{word-spacing:-65.454600px;}
.ws1f{word-spacing:-33.833483px;}
.ws60{word-spacing:-30.168025px;}
.ws6{word-spacing:-19.823579px;}
.ws7{word-spacing:-15.637104px;}
.ws31{word-spacing:-9.456759px;}
.ws3b{word-spacing:-9.091930px;}
.ws4e{word-spacing:-7.576557px;}
.ws4{word-spacing:-2.743718px;}
.ws10{word-spacing:-1.102709px;}
.ws12{word-spacing:-0.065455px;}
.wsf{word-spacing:-0.059776px;}
.ws2b{word-spacing:-0.035866px;}
.ws4d{word-spacing:-0.029888px;}
.ws5{word-spacing:0.000000px;}
.ws1d{word-spacing:2.493820px;}
.ws1e{word-spacing:2.559275px;}
.ws38{word-spacing:2.923046px;}
.ws79{word-spacing:2.994778px;}
.ws7d{word-spacing:3.102374px;}
.ws81{word-spacing:3.281702px;}
.ws7c{word-spacing:3.317568px;}
.ws7b{word-spacing:3.353434px;}
.ws2a{word-spacing:3.604493px;}
.ws80{word-spacing:3.609372px;}
.ws83{word-spacing:3.612735px;}
.ws3a{word-spacing:3.640358px;}
.ws5c{word-spacing:4.064731px;}
.ws5b{word-spacing:4.336151px;}
.ws28{word-spacing:4.392004px;}
.ws25{word-spacing:4.668474px;}
.ws17{word-spacing:5.046550px;}
.ws58{word-spacing:5.086904px;}
.ws70{word-spacing:5.112004px;}
.wse{word-spacing:5.146679px;}
.wsd{word-spacing:5.177459px;}
.ws59{word-spacing:5.196925px;}
.ws5a{word-spacing:5.250724px;}
.ws27{word-spacing:5.308368px;}
.ws71{word-spacing:5.373823px;}
.ws13{word-spacing:5.439277px;}
.ws26{word-spacing:5.505333px;}
.ws2{word-spacing:5.624884px;}
.ws23{word-spacing:5.684660px;}
.ws19{word-spacing:5.701096px;}
.ws1{word-spacing:6.159278px;}
.ws9{word-spacing:6.170632px;}
.wsb{word-spacing:6.176079px;}
.ws5f{word-spacing:6.176632px;}
.ws5e{word-spacing:6.176682px;}
.ws11{word-spacing:6.187491px;}
.ws3{word-spacing:6.224732px;}
.ws77{word-spacing:7.800179px;}
.ws82{word-spacing:7.800768px;}
.ws7f{word-spacing:7.802110px;}
.ws78{word-spacing:7.804881px;}
.ws7a{word-spacing:7.807271px;}
.ws7e{word-spacing:7.820358px;}
.ws29{word-spacing:7.836634px;}
.ws0{word-spacing:8.237588px;}
.ws20{word-spacing:8.323665px;}
.ws21{word-spacing:17.096103px;}
.ws24{word-spacing:19.883493px;}
.ws8{word-spacing:21.725009px;}
.ws16{word-spacing:21.729391px;}
.wsa{word-spacing:21.730927px;}
.wsc{word-spacing:21.751451px;}
.ws14{word-spacing:21.759101px;}
.ws15{word-spacing:21.766177px;}
.ws18{word-spacing:21.779250px;}
.ws22{word-spacing:23.956384px;}
.ws2f{word-spacing:62.639270px;}
.ws3c{word-spacing:68.812883px;}
.ws49{word-spacing:90.813293px;}
.ws30{word-spacing:98.684198px;}
.ws3d{word-spacing:103.348883px;}
.ws6a{word-spacing:108.066948px;}
.ws35{word-spacing:117.988721px;}
.ws6f{word-spacing:119.156869px;}
.ws62{word-spacing:120.835737px;}
.ws41{word-spacing:124.571284px;}
.ws4a{word-spacing:125.349293px;}
.ws3e{word-spacing:125.747618px;}
.ws63{word-spacing:137.003023px;}
.ws45{word-spacing:143.627284px;}
.ws6d{word-spacing:143.711106px;}
.ws2c{word-spacing:144.233510px;}
.ws67{word-spacing:146.590996px;}
.ws6e{word-spacing:156.717212px;}
.ws39{word-spacing:157.079494px;}
.ws40{word-spacing:159.117734px;}
.ws44{word-spacing:160.301299px;}
.ws64{word-spacing:165.737593px;}
.ws47{word-spacing:178.162368px;}
.ws6c{word-spacing:187.434331px;}
.ws32{word-spacing:187.672111px;}
.ws1b{word-spacing:200.043843px;}
.ws1a{word-spacing:201.988482px;}
.ws43{word-spacing:210.835930px;}
.ws50{word-spacing:212.155639px;}
.ws51{word-spacing:212.161639px;}
.ws34{word-spacing:225.289263px;}
.ws72{word-spacing:229.880563px;}
.ws48{word-spacing:229.916429px;}
.ws36{word-spacing:236.571721px;}
.ws61{word-spacing:238.784926px;}
.ws66{word-spacing:248.789990px;}
.ws69{word-spacing:251.993722px;}
.ws56{word-spacing:313.841933px;}
.ws55{word-spacing:313.877798px;}
.ws54{word-spacing:315.373639px;}
.ws65{word-spacing:324.792271px;}
.ws2e{word-spacing:333.759551px;}
.ws2d{word-spacing:336.443189px;}
.ws73{word-spacing:638.399522px;}
.ws53{word-spacing:648.560246px;}
.ws57{word-spacing:648.566246px;}
.ws42{word-spacing:671.242637px;}
.ws75{word-spacing:671.852352px;}
.ws4c{word-spacing:674.597103px;}
.ws74{word-spacing:686.792976px;}
.ws76{word-spacing:686.798976px;}
.ws4f{word-spacing:688.063603px;}
.ws46{word-spacing:690.287270px;}
.ws52{word-spacing:736.446298px;}
.ws3f{word-spacing:753.876979px;}
.ws4b{word-spacing:772.921613px;}
.ws1c{word-spacing:951.574408px;}
.ws68{word-spacing:1619.353419px;}
._45{margin-left:-180.906786px;}
._8c{margin-left:-165.970549px;}
._48{margin-left:-107.120591px;}
._8{margin-left:-42.091751px;}
._6{margin-left:-32.923664px;}
._3{margin-left:-29.887800px;}
._c{margin-left:-18.233612px;}
._a3{margin-left:-17.064868px;}
._a{margin-left:-4.875922px;}
._a2{margin-left:-3.744382px;}
._0{margin-left:-2.324084px;}
._5{margin-left:-1.210464px;}
._9{width:1.420286px;}
._2{width:2.496239px;}
._87{width:4.124516px;}
._90{width:6.956082px;}
._3c{width:12.696422px;}
._8a{width:15.160211px;}
._17{width:16.928563px;}
._8b{width:18.240427px;}
._88{width:19.399684px;}
._b{width:20.928624px;}
._7{width:22.844548px;}
._89{width:25.220675px;}
._d{width:26.540366px;}
._4{width:29.618653px;}
._e{width:32.236837px;}
._1{width:37.529659px;}
._2b{width:71.738242px;}
._42{width:73.807810px;}
._3a{width:86.113306px;}
._21{width:100.737504px;}
._3f{width:106.520832px;}
._44{width:108.242381px;}
._64{width:109.883835px;}
._9c{width:112.398468px;}
._3e{width:114.447130px;}
._3b{width:116.670797px;}
._47{width:118.015254px;}
._11{width:131.555021px;}
._41{width:133.491763px;}
._40{width:136.468608px;}
._43{width:141.525658px;}
._12{width:144.645965px;}
._3d{width:155.513242px;}
._39{width:161.804059px;}
._93{width:174.685431px;}
._13{width:177.606451px;}
._22{width:186.032450px;}
._91{width:194.543909px;}
._16{width:205.073497px;}
._8e{width:206.348190px;}
._2a{width:207.939782px;}
._24{width:214.969440px;}
._70{width:220.126907px;}
._49{width:222.129998px;}
._29{width:224.118131px;}
._66{width:229.876968px;}
._18{width:234.223874px;}
._46{width:236.884547px;}
._9d{width:238.972493px;}
._25{width:240.936134px;}
._94{width:244.345653px;}
._10{width:248.225818px;}
._92{width:263.258152px;}
._6d{width:265.092411px;}
._19{width:267.664973px;}
._8f{width:272.466246px;}
._15{width:286.709606px;}
._23{width:288.610483px;}
._8d{width:292.213913px;}
._2f{width:294.028319px;}
._26{width:302.239411px;}
._1c{width:304.920365px;}
._14{width:314.489300px;}
._86{width:316.746682px;}
._79{width:322.969728px;}
._20{width:323.988302px;}
._27{width:328.098509px;}
._1e{width:330.026285px;}
._9f{width:334.899426px;}
._6c{width:339.381814px;}
._85{width:341.404282px;}
._32{width:348.480290px;}
._2d{width:352.080293px;}
._30{width:353.913022px;}
._34{width:356.662115px;}
._1d{width:358.252512px;}
._28{width:359.803699px;}
._1b{width:363.067469px;}
._a1{width:375.232777px;}
._1f{width:379.350451px;}
._77{width:382.060510px;}
._6a{width:384.538402px;}
._68{width:386.169310px;}
._74{width:393.934833px;}
._71{width:395.940078px;}
._1a{width:398.359219px;}
._72{width:408.688512px;}
._63{width:411.875251px;}
._80{width:414.697787px;}
._73{width:418.592433px;}
._67{width:421.440520px;}
._51{width:425.470107px;}
._6b{width:427.760045px;}
._76{width:431.606630px;}
._7f{width:435.829805px;}
._9b{width:437.449217px;}
._52{width:442.249828px;}
._4a{width:450.170733px;}
._53{width:458.389267px;}
._a0{width:460.517526px;}
._7c{width:469.615200px;}
._6f{width:471.932913px;}
._9e{width:476.705526px;}
._84{width:478.877491px;}
._62{width:485.487602px;}
._7b{width:494.254867px;}
._61{width:501.819003px;}
._83{width:503.517158px;}
._69{width:510.143328px;}
._6e{width:512.289871px;}
._75{width:517.811387px;}
._5b{width:520.015334px;}
._9a{width:525.004320px;}
._60{width:533.680128px;}
._81{width:551.039078px;}
._58{width:555.983281px;}
._82{width:560.328269px;}
._5d{width:575.039281px;}
._f{width:578.261069px;}
._7a{width:582.062822px;}
._78{width:606.738355px;}
._5a{width:648.532620px;}
._4b{width:650.028215px;}
._4f{width:652.578259px;}
._50{width:653.639881px;}
._31{width:667.767829px;}
._7d{width:671.404032px;}
._4e{width:682.450637px;}
._4c{width:684.566707px;}
._4d{width:685.606810px;}
._5f{width:688.189133px;}
._59{width:706.731648px;}
._5e{width:725.812147px;}
._65{width:731.873434px;}
._7e{width:753.708404px;}
._98{width:765.179251px;}
._2e{width:768.240640px;}
._35{width:772.298825px;}
._57{width:818.986654px;}
._97{width:838.791602px;}
._95{width:886.956288px;}
._33{width:900.576383px;}
._5c{width:912.851251px;}
._37{width:997.103095px;}
._54{width:1002.120730px;}
._36{width:1067.237253px;}
._2c{width:1109.717288px;}
._55{width:1144.057217px;}
._38{width:1150.102777px;}
._56{width:1186.297928px;}
._99{width:1231.612320px;}
._96{width:1355.432145px;}
.fc3{color:rgb(0,0,139);}
.fc2{color:rgb(38,38,134);}
.fc4{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,178);}
.fs8{font-size:29.887800px;}
.fs7{font-size:34.017120px;}
.fs5{font-size:35.865600px;}
.fsa{font-size:39.686640px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs6{font-size:69.245280px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.230500px;}
.y149{bottom:6.990000px;}
.ycd{bottom:7.780500px;}
.y23b{bottom:8.100398px;}
.yc8{bottom:13.266606px;}
.y237{bottom:13.266677px;}
.y59{bottom:13.863482px;}
.y57{bottom:15.551336px;}
.yd1{bottom:17.046000px;}
.y23a{bottom:17.441003px;}
.y148{bottom:17.451000px;}
.y233{bottom:19.675500px;}
.y23d{bottom:20.175000px;}
.y128{bottom:21.828000px;}
.y5b{bottom:24.462000px;}
.y8f{bottom:24.597000px;}
.y34b{bottom:24.885000px;}
.yd0{bottom:27.507000px;}
.y147{bottom:27.912000px;}
.ycc{bottom:28.104000px;}
.y368{bottom:29.943000px;}
.y232{bottom:30.136500px;}
.y23c{bottom:30.634500px;}
.y2f3{bottom:30.892500px;}
.y1e5{bottom:31.473000px;}
.y227{bottom:32.004000px;}
.y2f2{bottom:32.139000px;}
.y127{bottom:32.289000px;}
.yca{bottom:33.676878px;}
.y16d{bottom:33.838500px;}
.y316{bottom:33.936000px;}
.y25d{bottom:35.095500px;}
.y34a{bottom:35.346000px;}
.y23e{bottom:35.874100px;}
.y1a9{bottom:36.924000px;}
.ycf{bottom:37.968000px;}
.y146{bottom:38.373000px;}
.y2f1{bottom:39.237000px;}
.y367{bottom:40.404000px;}
.y6b{bottom:40.785000px;}
.y16c{bottom:40.936500px;}
.y28{bottom:41.944500px;}
.y315{bottom:42.279000px;}
.y126{bottom:42.750000px;}
.yce{bottom:43.402500px;}
.y1f7{bottom:43.408500px;}
.y1a8{bottom:44.023500px;}
.y1d3{bottom:46.213500px;}
.y8e{bottom:46.788000px;}
.y18{bottom:46.887000px;}
.y145{bottom:48.834000px;}
.y27a{bottom:49.144500px;}
.y5a{bottom:49.269000px;}
.y7b{bottom:49.308000px;}
.y1e4{bottom:49.405500px;}
.y2f0{bottom:49.708500px;}
.y297{bottom:50.041500px;}
.y349{bottom:50.347500px;}
.y24d{bottom:50.992500px;}
.y16b{bottom:51.408000px;}
.y226{bottom:52.327500px;}
.y314{bottom:52.750500px;}
.y125{bottom:53.211000px;}
.y231{bottom:53.479500px;}
.y234{bottom:53.728500px;}
.y212{bottom:53.764500px;}
.yb0{bottom:53.844000px;}
.y1a7{bottom:54.495000px;}
.y25c{bottom:55.420500px;}
.y366{bottom:55.467000px;}
.y2ce{bottom:55.719000px;}
.y2ef{bottom:56.806500px;}
.yc7{bottom:57.394500px;}
.ycb{bottom:57.541447px;}
.y16a{bottom:58.507500px;}
.y279{bottom:59.605500px;}
.y313{bottom:59.848500px;}
.y27{bottom:59.878500px;}
.y144{bottom:59.892000px;}
.y296{bottom:60.501000px;}
.y6a{bottom:61.108500px;}
.y1f6{bottom:61.341000px;}
.y1a6{bottom:61.593000px;}
.yec{bottom:62.503500px;}
.y41{bottom:63.390000px;}
.y107{bottom:63.400500px;}
.y124{bottom:63.670500px;}
.y1d2{bottom:64.146000px;}
.yaf{bottom:64.305000px;}
.y348{bottom:65.349000px;}
.y2b2{bottom:65.881500px;}
.y365{bottom:65.928000px;}
.y2cd{bottom:66.180000px;}
.y7a{bottom:67.240500px;}
.y2ee{bottom:67.278000px;}
.y8d{bottom:67.753500px;}
.y4e{bottom:68.505000px;}
.y235{bottom:68.506511px;}
.y9b{bottom:68.949000px;}
.y169{bottom:68.977500px;}
.y17{bottom:69.079500px;}
.ybb{bottom:70.014000px;}
.y278{bottom:70.066500px;}
.y312{bottom:70.320000px;}
.y143{bottom:70.353000px;}
.y295{bottom:70.962000px;}
.y24c{bottom:71.316000px;}
.y1e3{bottom:71.947500px;}
.y1a5{bottom:72.064500px;}
.y225{bottom:72.651000px;}
.yeb{bottom:72.964500px;}
.y106{bottom:73.861500px;}
.y211{bottom:74.088000px;}
.y2ed{bottom:74.376000px;}
.y123{bottom:74.730000px;}
.y25b{bottom:75.744000px;}
.y347{bottom:75.810000px;}
.y168{bottom:76.077000px;}
.y2b1{bottom:76.342500px;}
.y2cc{bottom:76.641000px;}
.y311{bottom:77.419500px;}
.y26{bottom:77.811000px;}
.y8{bottom:78.123000px;}
.y34{bottom:78.729000px;}
.y1a4{bottom:79.162500px;}
.y277{bottom:80.526000px;}
.y364{bottom:80.991000px;}
.y294{bottom:81.423000px;}
.y1f5{bottom:81.516000px;}
.y330{bottom:81.997500px;}
.y1d1{bottom:82.080000px;}
.y142{bottom:82.156500px;}
.y1c3{bottom:82.744500px;}
.yea{bottom:83.425500px;}
.y40{bottom:83.715000px;}
.y105{bottom:84.321000px;}
.y2ec{bottom:84.847500px;}
.y79{bottom:85.173000px;}
.y122{bottom:85.191000px;}
.y69{bottom:86.194500px;}
.y167{bottom:86.548500px;}
.y2b0{bottom:86.803500px;}
.y2cb{bottom:87.102000px;}
.y310{bottom:87.891000px;}
.y8c{bottom:88.077000px;}
.yc6{bottom:88.389000px;}
.y4d{bottom:88.828500px;}
.y9a{bottom:89.274000px;}
.y1a3{bottom:89.634000px;}
.y346{bottom:90.811500px;}
.y276{bottom:90.987000px;}
.y186{bottom:91.275000px;}
.y363{bottom:91.452000px;}
.y293{bottom:91.884000px;}
.y2eb{bottom:91.945500px;}
.y16{bottom:92.017500px;}
.y1e2{bottom:92.122500px;}
.y32f{bottom:92.457000px;}
.y141{bottom:92.617500px;}
.y224{bottom:92.974500px;}
.y1c2{bottom:93.205500px;}
.y24b{bottom:93.508500px;}
.y166{bottom:93.646500px;}
.ye9{bottom:93.886500px;}
.y104{bottom:94.782000px;}
.y30f{bottom:94.989000px;}
.y25a{bottom:96.067500px;}
.y1a2{bottom:96.732000px;}
.y121{bottom:96.994500px;}
.y2af{bottom:97.264500px;}
.y55{bottom:97.387500px;}
.y2ca{bottom:97.563000px;}
.y25{bottom:97.984500px;}
.y7{bottom:98.446500px;}
.yc5{bottom:98.850000px;}
.y1f4{bottom:100.393500px;}
.y33{bottom:100.921500px;}
.yae{bottom:101.215500px;}
.y345{bottom:101.271000px;}
.y185{bottom:101.736000px;}
.y275{bottom:102.045000px;}
.y1d0{bottom:102.253500px;}
.yba{bottom:102.361500px;}
.y2ea{bottom:102.417000px;}
.y292{bottom:102.942000px;}
.y210{bottom:103.378500px;}
.y32e{bottom:103.527000px;}
.y165{bottom:104.118000px;}
.y1c1{bottom:104.274000px;}
.ye8{bottom:104.346000px;}
.y140{bottom:104.422500px;}
.y103{bottom:105.243000px;}
.y78{bottom:105.348000px;}
.y30e{bottom:105.460500px;}
.y239{bottom:105.774552px;}
.y3f{bottom:105.906000px;}
.y68{bottom:106.369500px;}
.y362{bottom:106.515000px;}
.y1a1{bottom:107.203500px;}
.y120{bottom:107.455500px;}
.y1e1{bottom:107.940000px;}
.y2ae{bottom:108.322500px;}
.y2c9{bottom:108.621000px;}
.yc4{bottom:109.311000px;}
.y8b{bottom:110.269500px;}
.y32d{bottom:110.625000px;}
.y2e9{bottom:110.761500px;}
.y4c{bottom:111.021000px;}
.y1c0{bottom:111.372000px;}
.y99{bottom:111.465000px;}
.yad{bottom:111.676500px;}
.y15{bottom:112.342500px;}
.y164{bottom:112.461000px;}
.y274{bottom:112.506000px;}
.y184{bottom:112.794000px;}
.y291{bottom:113.403000px;}
.y30d{bottom:113.803500px;}
.y13f{bottom:114.883500px;}
.y223{bottom:115.167000px;}
.ye7{bottom:115.405500px;}
.y1a0{bottom:115.548000px;}
.y344{bottom:116.272500px;}
.y102{bottom:116.301000px;}
.y24{bottom:116.665500px;}
.y24a{bottom:116.800500px;}
.y361{bottom:116.976000px;}
.y259{bottom:118.258500px;}
.y1cf{bottom:118.290000px;}
.y1f3{bottom:118.326000px;}
.y6{bottom:118.771500px;}
.y2ad{bottom:118.783500px;}
.y2c8{bottom:119.082000px;}
.y11f{bottom:119.260500px;}
.y2e8{bottom:121.233000px;}
.yac{bottom:122.137500px;}
.y67{bottom:122.340000px;}
.y32c{bottom:122.440500px;}
.yb9{bottom:122.686500px;}
.y163{bottom:122.932500px;}
.y273{bottom:122.967000px;}
.y1bf{bottom:123.187500px;}
.y32{bottom:123.859500px;}
.y290{bottom:123.864000px;}
.y30c{bottom:124.275000px;}
.y77{bottom:124.411500px;}
.y183{bottom:124.599000px;}
.y13e{bottom:125.343000px;}
.ye6{bottom:125.866500px;}
.y1e0{bottom:125.872500px;}
.y19f{bottom:126.019500px;}
.y343{bottom:126.733500px;}
.y101{bottom:126.762000px;}
.y360{bottom:127.437000px;}
.y1ff{bottom:128.122500px;}
.y20f{bottom:128.185500px;}
.y2e7{bottom:128.331000px;}
.y2ac{bottom:129.244500px;}
.y2c7{bottom:129.543000px;}
.y11e{bottom:129.720000px;}
.y162{bottom:130.030500px;}
.y3e{bottom:130.713000px;}
.y32b{bottom:130.783500px;}
.y30b{bottom:131.373000px;}
.y1be{bottom:131.530500px;}
.yab{bottom:132.598500px;}
.y14{bottom:132.666000px;}
.y8a{bottom:133.102500px;}
.y19e{bottom:133.117500px;}
.y272{bottom:133.428000px;}
.y28f{bottom:134.325000px;}
.y98{bottom:134.404500px;}
.y4b{bottom:134.577000px;}
.y182{bottom:135.060000px;}
.y13d{bottom:135.804000px;}
.y1ce{bottom:136.222500px;}
.y23{bottom:136.465500px;}
.y374{bottom:136.750500px;}
.y249{bottom:137.124000px;}
.ye5{bottom:137.670000px;}
.y35f{bottom:137.898000px;}
.y222{bottom:138.105000px;}
.y100{bottom:138.567000px;}
.y2e6{bottom:138.802500px;}
.y2ab{bottom:139.705500px;}
.y2c6{bottom:140.004000px;}
.y11d{bottom:140.181000px;}
.y161{bottom:140.502000px;}
.y1f2{bottom:140.940000px;}
.y32a{bottom:141.255000px;}
.y258{bottom:141.297000px;}
.y342{bottom:141.735000px;}
.y30a{bottom:141.844500px;}
.y1bd{bottom:142.002000px;}
.y76{bottom:142.344000px;}
.y66{bottom:142.513500px;}
.yb8{bottom:143.010000px;}
.yaa{bottom:143.059500px;}
.y19d{bottom:143.589000px;}
.y271{bottom:143.889000px;}
.yc9{bottom:144.002973px;}
.y28e{bottom:144.786000px;}
.y1df{bottom:146.046000px;}
.y31{bottom:146.052000px;}
.y218{bottom:146.256000px;}
.y13c{bottom:146.265000px;}
.y181{bottom:146.863500px;}
.y2e5{bottom:147.145500px;}
.ye4{bottom:148.131000px;}
.y329{bottom:148.354500px;}
.y1fe{bottom:148.446000px;}
.y205{bottom:148.548000px;}
.y160{bottom:148.846500px;}
.yff{bottom:149.028000px;}
.y1bc{bottom:149.101500px;}
.y238{bottom:149.441460px;}
.y2aa{bottom:150.165000px;}
.y309{bottom:150.189000px;}
.y2c5{bottom:150.465000px;}
.y11c{bottom:150.642000px;}
.y19c{bottom:151.932000px;}
.y341{bottom:152.196000px;}
.y4a{bottom:152.509500px;}
.y35e{bottom:152.961000px;}
.y20e{bottom:152.992500px;}
.y373{bottom:153.117000px;}
.ya9{bottom:153.520500px;}
.y3d{bottom:153.652500px;}
.y13{bottom:154.857000px;}
.y270{bottom:155.692500px;}
.y89{bottom:155.935500px;}
.y1cd{bottom:156.397500px;}
.y28d{bottom:156.589500px;}
.y97{bottom:156.595500px;}
.y13b{bottom:156.726000px;}
.y22{bottom:157.014000px;}
.y180{bottom:157.335000px;}
.y1f1{bottom:157.378500px;}
.y248{bottom:157.447500px;}
.y2e4{bottom:157.617000px;}
.y65{bottom:158.484000px;}
.ye3{bottom:158.592000px;}
.y15f{bottom:159.318000px;}
.yfe{bottom:159.487500px;}
.y328{bottom:160.168500px;}
.y221{bottom:160.297500px;}
.y308{bottom:160.660500px;}
.y1bb{bottom:160.915500px;}
.y11b{bottom:161.103000px;}
.y257{bottom:161.620500px;}
.y2a9{bottom:161.970000px;}
.y2c4{bottom:162.268500px;}
.y19b{bottom:162.403500px;}
.y340{bottom:162.657000px;}
.yb7{bottom:163.333500px;}
.y35d{bottom:163.422000px;}
.y372{bottom:163.578000px;}
.y54{bottom:163.810500px;}
.ya8{bottom:163.981500px;}
.y17f{bottom:164.433000px;}
.y2e3{bottom:164.716500px;}
.y1de{bottom:164.853000px;}
.y75{bottom:165.142500px;}
.y26f{bottom:166.153500px;}
.y15e{bottom:166.416000px;}
.y217{bottom:166.581000px;}
.y28c{bottom:167.050500px;}
.y307{bottom:167.758500px;}
.y327{bottom:168.513000px;}
.y13a{bottom:168.531000px;}
.y30{bottom:168.991500px;}
.ye2{bottom:169.053000px;}
.y1ba{bottom:169.260000px;}
.y19a{bottom:169.501500px;}
.yfd{bottom:169.948500px;}
.y1fd{bottom:170.638500px;}
.y204{bottom:170.740500px;}
.y11a{bottom:171.564000px;}
.y230{bottom:171.742500px;}
.y2a8{bottom:172.431000px;}
.y49{bottom:172.684500px;}
.y2c3{bottom:172.729500px;}
.y3c{bottom:173.976000px;}
.ya7{bottom:174.441000px;}
.y17e{bottom:174.904500px;}
.y2e2{bottom:175.186500px;}
.y1cc{bottom:175.422000px;}
.y1f0{bottom:176.058000px;}
.y64{bottom:176.416500px;}
.y26e{bottom:176.614500px;}
.y15d{bottom:176.887500px;}
.y88{bottom:176.901000px;}
.y28b{bottom:177.511500px;}
.y33f{bottom:177.658500px;}
.y247{bottom:177.771000px;}
.y12{bottom:177.796500px;}
.y20d{bottom:177.799500px;}
.y306{bottom:178.230000px;}
.y35c{bottom:178.485000px;}
.y326{bottom:178.984500px;}
.y139{bottom:178.990500px;}
.y21{bottom:179.205000px;}
.ye1{bottom:179.514000px;}
.y1b9{bottom:179.731500px;}
.y371{bottom:179.944500px;}
.y199{bottom:179.973000px;}
.yfc{bottom:180.409500px;}
.yc3{bottom:181.221000px;}
.y96{bottom:181.402500px;}
.y256{bottom:181.944000px;}
.y17d{bottom:182.004000px;}
.y2e1{bottom:182.286000px;}
.y1dd{bottom:182.785500px;}
.y74{bottom:183.075000px;}
.y119{bottom:183.367500px;}
.yb6{bottom:183.657000px;}
.y15c{bottom:183.985500px;}
.y2a7{bottom:184.234500px;}
.y2c2{bottom:184.534500px;}
.ya6{bottom:184.902000px;}
.y220{bottom:185.104500px;}
.y305{bottom:185.328000px;}
.y53{bottom:186.001500px;}
.y325{bottom:186.082500px;}
.y1b8{bottom:186.829500px;}
.y198{bottom:187.072500px;}
.y33e{bottom:188.119500px;}
.y26d{bottom:188.419500px;}
.y35b{bottom:188.946000px;}
.y48{bottom:188.992500px;}
.y5{bottom:189.273000px;}
.y28a{bottom:189.316500px;}
.ye0{bottom:189.973500px;}
.y370{bottom:190.405500px;}
.y1ef{bottom:190.453500px;}
.y138{bottom:190.795500px;}
.yfb{bottom:190.870500px;}
.y2f{bottom:191.182500px;}
.yc2{bottom:191.680500px;}
.y22f{bottom:192.066000px;}
.y17c{bottom:192.475500px;}
.y2e0{bottom:192.757500px;}
.y1fc{bottom:193.578000px;}
.y7f{bottom:193.621500px;}
.y118{bottom:193.828500px;}
.y216{bottom:194.152500px;}
.y15b{bottom:194.457000px;}
.y2a6{bottom:194.695500px;}
.y2c1{bottom:194.994000px;}
.ya5{bottom:195.363000px;}
.y203{bottom:195.547500px;}
.y304{bottom:195.799500px;}
.y3b{bottom:196.167000px;}
.y324{bottom:196.554000px;}
.y63{bottom:196.591500px;}
.y1b7{bottom:197.301000px;}
.y197{bottom:197.542500px;}
.y246{bottom:198.096000px;}
.y20c{bottom:198.123000px;}
.y1cb{bottom:198.183000px;}
.y26c{bottom:198.880500px;}
.y87{bottom:199.092000px;}
.y289{bottom:199.776000px;}
.y11{bottom:199.989000px;}
.y17b{bottom:200.818500px;}
.y36f{bottom:200.865000px;}
.y2df{bottom:201.100500px;}
.y137{bottom:201.256500px;}
.y15a{bottom:201.555000px;}
.ydf{bottom:201.778500px;}
.y20{bottom:202.144500px;}
.yfa{bottom:202.675500px;}
.yc1{bottom:202.740000px;}
.y33d{bottom:203.121000px;}
.y73{bottom:203.250000px;}
.y323{bottom:203.652000px;}
.yb5{bottom:203.980500px;}
.y35a{bottom:204.009000px;}
.y255{bottom:204.135000px;}
.y303{bottom:204.144000px;}
.y95{bottom:204.342000px;}
.y1b6{bottom:204.399000px;}
.y196{bottom:204.642000px;}
.y1dc{bottom:205.327500px;}
.y215{bottom:205.377000px;}
.y117{bottom:205.633500px;}
.ya4{bottom:205.824000px;}
.y2a5{bottom:206.500500px;}
.y2c0{bottom:206.799000px;}
.y1ee{bottom:206.892000px;}
.y47{bottom:209.166000px;}
.y4{bottom:209.596500px;}
.y21f{bottom:209.911500px;}
.y52{bottom:210.543000px;}
.y26b{bottom:210.684000px;}
.y17a{bottom:211.290000px;}
.y2de{bottom:211.572000px;}
.y288{bottom:211.581000px;}
.y159{bottom:212.026500px;}
.yde{bottom:212.239500px;}
.y22e{bottom:212.389500px;}
.y136{bottom:213.060000px;}
.yf9{bottom:213.135000px;}
.yc0{bottom:213.201000px;}
.y33c{bottom:213.582000px;}
.y7e{bottom:213.795000px;}
.y322{bottom:214.113000px;}
.y2e{bottom:214.122000px;}
.y359{bottom:214.470000px;}
.y302{bottom:214.614000px;}
.y1b5{bottom:214.860000px;}
.y195{bottom:215.113500px;}
.y62{bottom:215.550000px;}
.y1fb{bottom:215.769000px;}
.y116{bottom:216.094500px;}
.ya3{bottom:216.285000px;}
.y2a4{bottom:216.961500px;}
.y36e{bottom:217.233000px;}
.y2bf{bottom:217.260000px;}
.y1ca{bottom:218.358000px;}
.y179{bottom:218.388000px;}
.y245{bottom:218.419500px;}
.y202{bottom:218.487000px;}
.y3a{bottom:219.106500px;}
.y158{bottom:219.126000px;}
.y72{bottom:219.324000px;}
.y2dd{bottom:219.915000px;}
.y86{bottom:220.057500px;}
.y26a{bottom:221.145000px;}
.y287{bottom:222.042000px;}
.y194{bottom:222.211500px;}
.ydd{bottom:222.700500px;}
.y10{bottom:222.927000px;}
.y20b{bottom:222.930000px;}
.y301{bottom:222.958500px;}
.y135{bottom:223.521000px;}
.yf8{bottom:223.596000px;}
.y33b{bottom:224.041500px;}
.yb4{bottom:224.304000px;}
.y1f{bottom:224.335500px;}
.y321{bottom:224.574000px;}
.y358{bottom:224.931000px;}
.y1b4{bottom:225.321000px;}
.y1db{bottom:225.502500px;}
.y1ed{bottom:225.571500px;}
.y94{bottom:226.534500px;}
.ya2{bottom:226.746000px;}
.y254{bottom:227.173500px;}
.y2a3{bottom:227.421000px;}
.y36d{bottom:227.692500px;}
.y2be{bottom:227.721000px;}
.y115{bottom:227.898000px;}
.y46{bottom:228.463500px;}
.y178{bottom:228.859500px;}
.y156{bottom:229.597500px;}
.y2dc{bottom:230.386500px;}
.y157{bottom:230.842500px;}
.y51{bottom:230.868000px;}
.y269{bottom:231.606000px;}
.y286{bottom:232.503000px;}
.y193{bottom:232.683000px;}
.y22d{bottom:232.713000px;}
.y21e{bottom:232.849500px;}
.ydc{bottom:233.160000px;}
.y300{bottom:233.430000px;}
.y134{bottom:233.982000px;}
.yf7{bottom:234.057000px;}
.y2d{bottom:234.295500px;}
.y1c9{bottom:234.394500px;}
.y7d{bottom:234.429000px;}
.y320{bottom:235.045500px;}
.y1b3{bottom:235.792500px;}
.y177{bottom:235.957500px;}
.ya1{bottom:237.205500px;}
.y2db{bottom:237.486000px;}
.y2a2{bottom:237.882000px;}
.y155{bottom:237.940500px;}
.y2bd{bottom:238.182000px;}
.y61{bottom:238.245000px;}
.y114{bottom:238.359000px;}
.y1fa{bottom:238.708500px;}
.y244{bottom:238.743000px;}
.y33a{bottom:239.043000px;}
.y39{bottom:239.281500px;}
.y58{bottom:239.437195px;}
.y71{bottom:239.497500px;}
.y192{bottom:239.781000px;}
.y206{bottom:239.892000px;}
.y357{bottom:239.994000px;}
.y2ff{bottom:240.528000px;}
.y201{bottom:240.678000px;}
.y56{bottom:241.125048px;}
.y1da{bottom:241.320000px;}
.y268{bottom:242.067000px;}
.y31f{bottom:242.143500px;}
.y85{bottom:242.250000px;}
.y3{bottom:242.430000px;}
.y1b2{bottom:242.890500px;}
.y285{bottom:242.964000px;}
.y1ec{bottom:243.054000px;}
.ydb{bottom:243.621000px;}
.y36c{bottom:244.059000px;}
.y133{bottom:244.443000px;}
.yf6{bottom:244.518000px;}
.yb3{bottom:244.629000px;}
.yf{bottom:245.119500px;}
.y176{bottom:246.429000px;}
.y1e{bottom:247.275000px;}
.y253{bottom:247.497000px;}
.ya0{bottom:247.666500px;}
.y20a{bottom:247.737000px;}
.y2da{bottom:247.957500px;}
.y45{bottom:248.265000px;}
.y2a1{bottom:248.343000px;}
.y154{bottom:248.412000px;}
.y2bc{bottom:248.641500px;}
.y113{bottom:248.820000px;}
.y339{bottom:249.504000px;}
.y2c{bottom:249.987000px;}
.y191{bottom:250.252500px;}
.y356{bottom:250.455000px;}
.y214{bottom:250.537500px;}
.y2fe{bottom:250.999500px;}
.y50{bottom:251.191500px;}
.y93{bottom:251.341500px;}
.y1c8{bottom:252.327000px;}
.y7c{bottom:252.361500px;}
.y267{bottom:252.528000px;}
.y31e{bottom:252.615000px;}
.y1b1{bottom:253.362000px;}
.y284{bottom:253.423500px;}
.y175{bottom:253.528500px;}
.y22c{bottom:253.635000px;}
.yda{bottom:254.082000px;}
.y36b{bottom:254.520000px;}
.y132{bottom:254.904000px;}
.yf5{bottom:254.979000px;}
.y21d{bottom:255.042000px;}
.y2d9{bottom:255.055500px;}
.y153{bottom:255.510000px;}
.y60{bottom:256.177500px;}
.y38{bottom:257.214000px;}
.y190{bottom:257.350500px;}
.y2fd{bottom:258.097500px;}
.y9f{bottom:258.127500px;}
.y70{bottom:258.561000px;}
.y2a0{bottom:258.804000px;}
.y1f9{bottom:259.032000px;}
.y2bb{bottom:259.102500px;}
.y112{bottom:259.281000px;}
.y31d{bottom:259.713000px;}
.y1b0{bottom:260.460000px;}
.y243{bottom:260.935500px;}
.y1d9{bottom:261.495000px;}
.y1eb{bottom:261.733500px;}
.y266{bottom:262.987500px;}
.y84{bottom:263.215500px;}
.y283{bottom:263.884500px;}
.y338{bottom:264.505500px;}
.yd9{bottom:264.543000px;}
.yb2{bottom:264.952500px;}
.y174{bottom:265.342500px;}
.y131{bottom:265.365000px;}
.yf4{bottom:265.440000px;}
.y200{bottom:265.485000px;}
.y355{bottom:265.518000px;}
.y2d8{bottom:265.527000px;}
.y152{bottom:265.981500px;}
.y1d{bottom:267.450000px;}
.y252{bottom:267.820500px;}
.y18f{bottom:267.822000px;}
.ye{bottom:268.057500px;}
.y2fc{bottom:268.569000px;}
.y9e{bottom:268.588500px;}
.ybf{bottom:268.870500px;}
.y29f{bottom:269.265000px;}
.y44{bottom:269.430000px;}
.y2ba{bottom:269.563500px;}
.y111{bottom:269.742000px;}
.y2b{bottom:270.162000px;}
.y213{bottom:270.861000px;}
.y36a{bottom:270.886500px;}
.y31c{bottom:271.528500px;}
.y1af{bottom:272.275500px;}
.y1c7{bottom:272.500500px;}
.y209{bottom:272.544000px;}
.y4f{bottom:273.382500px;}
.y265{bottom:273.448500px;}
.y173{bottom:273.687000px;}
.y2d7{bottom:273.870000px;}
.y354{bottom:273.985500px;}
.y5f{bottom:274.110000px;}
.y151{bottom:274.326000px;}
.y282{bottom:274.345500px;}
.y337{bottom:274.966500px;}
.yd8{bottom:275.004000px;}
.y130{bottom:275.826000px;}
.yf3{bottom:275.901000px;}
.y352{bottom:275.979000px;}
.y1ea{bottom:276.127500px;}
.y92{bottom:276.148500px;}
.y18e{bottom:276.166500px;}
.y6f{bottom:276.493500px;}
.y2fb{bottom:276.913500px;}
.y353{bottom:277.017000px;}
.y1d8{bottom:277.312500px;}
.y37{bottom:277.761000px;}
.y21c{bottom:277.981500px;}
.y9d{bottom:279.049500px;}
.ybe{bottom:279.331500px;}
.y29e{bottom:279.726000px;}
.y31b{bottom:279.871500px;}
.y2b9{bottom:280.024500px;}
.y110{bottom:280.201500px;}
.y1ae{bottom:280.618500px;}
.y1f8{bottom:281.223000px;}
.y369{bottom:281.347500px;}
.y236{bottom:281.668840px;}
.y1c{bottom:283.140000px;}
.y83{bottom:283.539000px;}
.y264{bottom:283.909500px;}
.y171{bottom:284.158500px;}
.y242{bottom:284.227500px;}
.y2d6{bottom:284.341500px;}
.y150{bottom:284.796000px;}
.y281{bottom:284.806500px;}
.y172{bottom:285.403500px;}
.yd7{bottom:285.465000px;}
.yb1{bottom:285.874500px;}
.y12f{bottom:286.285500px;}
.yf2{bottom:286.360500px;}
.y18d{bottom:286.638000px;}
.y2fa{bottom:287.385000px;}
.y22b{bottom:287.737500px;}
.y1c6{bottom:288.537000px;}
.y43{bottom:289.753500px;}
.y336{bottom:289.968000px;}
.y251{bottom:290.013000px;}
.y29d{bottom:290.187000px;}
.yd{bottom:290.250000px;}
.y31a{bottom:290.343000px;}
.ybd{bottom:290.389500px;}
.y2b8{bottom:290.485500px;}
.y10f{bottom:290.662500px;}
.y2a{bottom:290.709000px;}
.y351{bottom:291.042000px;}
.y1ad{bottom:291.090000px;}
.y14f{bottom:291.895500px;}
.y170{bottom:292.501500px;}
.y2d5{bottom:292.686000px;}
.y9c{bottom:293.395500px;}
.y18c{bottom:293.736000px;}
.y5e{bottom:294.285000px;}
.y263{bottom:294.370500px;}
.y1d7{bottom:295.245000px;}
.y280{bottom:295.267500px;}
.y2f9{bottom:295.728000px;}
.yd6{bottom:295.926000px;}
.y1e9{bottom:296.302500px;}
.y12e{bottom:296.746500px;}
.yf1{bottom:296.821500px;}
.y208{bottom:297.351000px;}
.y1ac{bottom:298.188000px;}
.y319{bottom:298.686000px;}
.y91{bottom:299.086500px;}
.y21b{bottom:300.172500px;}
.y36{bottom:300.177000px;}
.y335{bottom:300.429000px;}
.y29c{bottom:300.646500px;}
.ybc{bottom:300.850500px;}
.y2b7{bottom:300.946500px;}
.y10e{bottom:301.123500px;}
.y350{bottom:301.503000px;}
.y2{bottom:302.166000px;}
.y6e{bottom:302.281500px;}
.y14e{bottom:302.367000px;}
.y2d3{bottom:303.156000px;}
.y1b{bottom:303.315000px;}
.y18b{bottom:304.207500px;}
.y16f{bottom:304.317000px;}
.y2d4{bottom:304.402500px;}
.y241{bottom:304.551000px;}
.y262{bottom:304.831500px;}
.y27f{bottom:305.728500px;}
.y82{bottom:305.730000px;}
.y2f8{bottom:306.199500px;}
.yd5{bottom:306.385500px;}
.y12d{bottom:307.207500px;}
.yf0{bottom:307.282500px;}
.y1c5{bottom:308.712000px;}
.y14d{bottom:309.465000px;}
.y22a{bottom:309.928500px;}
.y1ab{bottom:310.003500px;}
.y318{bottom:310.501500px;}
.y29b{bottom:311.107500px;}
.y18a{bottom:311.305500px;}
.y2b6{bottom:311.407500px;}
.y2d2{bottom:311.500500px;}
.y10d{bottom:311.584500px;}
.y42{bottom:311.944500px;}
.y5d{bottom:312.496500px;}
.y16e{bottom:312.660000px;}
.y250{bottom:313.050000px;}
.yc{bottom:313.189500px;}
.y2f7{bottom:313.297500px;}
.y1e8{bottom:314.433000px;}
.y261{bottom:315.292500px;}
.y1d6{bottom:315.418500px;}
.y334{bottom:315.430500px;}
.y27e{bottom:316.189500px;}
.y34f{bottom:316.566000px;}
.yd4{bottom:316.846500px;}
.y12c{bottom:317.668500px;}
.yef{bottom:317.743500px;}
.y1aa{bottom:318.348000px;}
.y317{bottom:318.846000px;}
.y14c{bottom:319.936500px;}
.y6d{bottom:320.214000px;}
.y90{bottom:321.279000px;}
.y29a{bottom:321.568500px;}
.y189{bottom:321.777000px;}
.y2b5{bottom:321.867000px;}
.y2d1{bottom:321.972000px;}
.y1a{bottom:321.994500px;}
.y10c{bottom:322.045500px;}
.y207{bottom:322.158000px;}
.y23f{bottom:322.806000px;}
.y21a{bottom:323.112000px;}
.y2f6{bottom:323.769000px;}
.y35{bottom:324.984000px;}
.y260{bottom:325.753500px;}
.y333{bottom:325.891500px;}
.y27d{bottom:326.649000px;}
.y81{bottom:326.695500px;}
.y240{bottom:326.743500px;}
.y34e{bottom:327.027000px;}
.yd3{bottom:327.307500px;}
.y1c4{bottom:327.736500px;}
.y12b{bottom:328.129500px;}
.yee{bottom:328.204500px;}
.y14b{bottom:328.279500px;}
.y229{bottom:328.956000px;}
.y1{bottom:329.065500px;}
.y188{bottom:330.120000px;}
.y2d0{bottom:330.315000px;}
.y1e7{bottom:330.322500px;}
.y5c{bottom:331.455000px;}
.y299{bottom:332.029500px;}
.y2f5{bottom:332.113500px;}
.y2b4{bottom:332.328000px;}
.y10b{bottom:332.506500px;}
.y24f{bottom:333.373500px;}
.y1d5{bottom:334.225500px;}
.yb{bottom:335.380500px;}
.y25f{bottom:336.213000px;}
.y27c{bottom:337.110000px;}
.yd2{bottom:338.367000px;}
.y12a{bottom:338.590500px;}
.yed{bottom:339.262500px;}
.y14a{bottom:339.339000px;}
.y6c{bottom:340.389000px;}
.y332{bottom:340.893000px;}
.y187{bottom:341.179500px;}
.y2cf{bottom:341.374500px;}
.y19{bottom:341.796000px;}
.y34d{bottom:342.090000px;}
.y10a{bottom:342.967500px;}
.y298{bottom:343.087500px;}
.y2f4{bottom:343.171500px;}
.y2b3{bottom:343.387500px;}
.y219{bottom:345.303000px;}
.y25e{bottom:347.272500px;}
.y27b{bottom:348.169500px;}
.y80{bottom:348.888000px;}
.y129{bottom:349.648500px;}
.y29{bottom:349.704000px;}
.y1e6{bottom:350.496000px;}
.y228{bottom:351.148500px;}
.y331{bottom:351.354000px;}
.y1d4{bottom:352.158000px;}
.y34c{bottom:352.551000px;}
.y109{bottom:353.427000px;}
.y24e{bottom:355.564500px;}
.y108{bottom:364.486500px;}
.ya{bottom:376.603500px;}
.h16{height:22.415850px;}
.h11{height:24.798480px;}
.h1d{height:24.890726px;}
.h10{height:25.206686px;}
.h6{height:26.899200px;}
.h13{height:28.945827px;}
.h12{height:28.951827px;}
.h1f{height:29.407800px;}
.h19{height:31.378800px;}
.h4{height:31.382100px;}
.h1b{height:31.384800px;}
.h21{height:34.873200px;}
.hb{height:35.861700px;}
.h9{height:35.867700px;}
.h15{height:37.463850px;}
.h14{height:37.469850px;}
.h1c{height:37.955492px;}
.h1a{height:40.348800px;}
.h8{height:41.614950px;}
.h7{height:41.620950px;}
.ha{height:44.831700px;}
.he{height:45.425492px;}
.h5{height:49.090950px;}
.h17{height:55.291200px;}
.h18{height:55.297200px;}
.h3{height:59.619450px;}
.h2{height:64.557900px;}
.hd{height:72.220663px;}
.h1e{height:93.370950px;}
.h20{height:212.266829px;}
.hc{height:266.161545px;}
.hf{height:306.154080px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w2{width:275.538510px;}
.w4{width:395.959277px;}
.w3{width:459.231120px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x1f{left:9.184764px;}
.x8{left:12.756000px;}
.xe{left:29.111870px;}
.x3e{left:30.615550px;}
.x14{left:42.519000px;}
.x12{left:47.292000px;}
.x15{left:51.486000px;}
.x9{left:54.337500px;}
.x5{left:56.319000px;}
.x1{left:57.687000px;}
.x44{left:58.884000px;}
.x24{left:62.431500px;}
.x4{left:67.171500px;}
.xa{left:75.247500px;}
.x20{left:81.145005px;}
.x3d{left:84.359916px;}
.xb{left:88.170000px;}
.xf{left:95.825369px;}
.x19{left:97.978500px;}
.x2{left:99.462000px;}
.xc{left:107.974500px;}
.x36{left:116.650500px;}
.x16{left:118.480500px;}
.x18{left:121.525500px;}
.x6{left:125.125500px;}
.xd{left:134.361000px;}
.x37{left:135.741000px;}
.x35{left:140.701500px;}
.x1d{left:145.741500px;}
.x3{left:152.292000px;}
.x10{left:153.762000px;}
.x1a{left:166.242000px;}
.x3b{left:167.324544px;}
.x1c{left:169.287000px;}
.x11{left:199.009500px;}
.x22{left:202.727861px;}
.x38{left:208.086000px;}
.x21{left:214.300769px;}
.x3a{left:217.846345px;}
.x3c{left:220.554604px;}
.x1e{left:223.754694px;}
.x25{left:228.952500px;}
.x2d{left:236.892000px;}
.x31{left:244.987500px;}
.x2a{left:253.081500px;}
.x23{left:270.030000px;}
.x39{left:283.924500px;}
.x1b{left:290.863500px;}
.x17{left:299.992500px;}
.x45{left:305.626500px;}
.x46{left:309.490500px;}
.x47{left:314.409000px;}
.x27{left:319.219500px;}
.x2e{left:327.159000px;}
.x40{left:335.253000px;}
.x26{left:337.459500px;}
.x2b{left:343.348500px;}
.x3f{left:352.174500px;}
.x30{left:356.223000px;}
.x34{left:382.026000px;}
.x29{left:409.486500px;}
.x33{left:413.455500px;}
.x2f{left:417.426000px;}
.x42{left:425.520000px;}
.x28{left:427.725000px;}
.x32{left:432.091500px;}
.x2c{left:433.615500px;}
.x41{left:438.124500px;}
.x43{left:446.488500px;}
.x13{left:507.732000px;}
.x7{left:512.494500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v6{vertical-align:-9.066667pt;}
.v4{vertical-align:-7.968000pt;}
.v3{vertical-align:-6.640000pt;}
.v5{vertical-align:-5.539622pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.088000pt;}
.v7{vertical-align:13.381333pt;}
.v1{vertical-align:21.114667pt;}
.v8{vertical-align:25.237333pt;}
.v9{vertical-align:39.360000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000297pt;}
.ls26{letter-spacing:0.000374pt;}
.ls1d{letter-spacing:0.000539pt;}
.ls29{letter-spacing:0.002322pt;}
.lsd{letter-spacing:0.002400pt;}
.ls38{letter-spacing:0.002405pt;}
.ls18{letter-spacing:0.002411pt;}
.ls2a{letter-spacing:0.003046pt;}
.ls25{letter-spacing:0.003876pt;}
.ls27{letter-spacing:0.004041pt;}
.ls19{letter-spacing:0.004816pt;}
.ls5{letter-spacing:0.005176pt;}
.ls28{letter-spacing:0.005708pt;}
.ls2d{letter-spacing:0.006545pt;}
.ls49{letter-spacing:0.008690pt;}
.ls8{letter-spacing:2.065731pt;}
.ls1{letter-spacing:2.655040pt;}
.lse{letter-spacing:4.381883pt;}
.ls37{letter-spacing:4.707856pt;}
.ls11{letter-spacing:4.713189pt;}
.ls3a{letter-spacing:4.820816pt;}
.ls3c{letter-spacing:4.826149pt;}
.ls16{letter-spacing:6.973061pt;}
.ls12{letter-spacing:7.780816pt;}
.ls13{letter-spacing:9.693077pt;}
.ls39{letter-spacing:9.698411pt;}
.ls43{letter-spacing:11.315046pt;}
.ls42{letter-spacing:12.606339pt;}
.ls40{letter-spacing:12.916374pt;}
.lsc{letter-spacing:12.925067pt;}
.ls9{letter-spacing:12.927477pt;}
.ls15{letter-spacing:12.927483pt;}
.ls1c{letter-spacing:13.865600pt;}
.ls36{letter-spacing:16.159477pt;}
.ls3b{letter-spacing:16.162405pt;}
.ls3d{letter-spacing:16.162411pt;}
.ls17{letter-spacing:16.174559pt;}
.ls3e{letter-spacing:19.391483pt;}
.ls6{letter-spacing:21.414258pt;}
.ls7{letter-spacing:21.872924pt;}
.ls14{letter-spacing:22.970149pt;}
.lsb{letter-spacing:24.101784pt;}
.lsa{letter-spacing:24.107117pt;}
.ls3f{letter-spacing:24.218149pt;}
.ls34{letter-spacing:29.087648pt;}
.ls4{letter-spacing:29.088479pt;}
.ls35{letter-spacing:29.090933pt;}
.ls3{letter-spacing:29.092811pt;}
.ls0{letter-spacing:80.231925pt;}
.ls1b{letter-spacing:95.192601pt;}
.ls23{letter-spacing:100.305414pt;}
.ls20{letter-spacing:131.004080pt;}
.ls41{letter-spacing:147.553869pt;}
.ls1a{letter-spacing:160.807242pt;}
.lsf{letter-spacing:194.928028pt;}
.ls10{letter-spacing:196.646337pt;}
.ls33{letter-spacing:311.420988pt;}
.ls32{letter-spacing:333.340988pt;}
.ls48{letter-spacing:357.954322pt;}
.ls2b{letter-spacing:372.343655pt;}
.ls31{letter-spacing:380.162322pt;}
.ls2c{letter-spacing:380.167655pt;}
.ls24{letter-spacing:382.551655pt;}
.ls30{letter-spacing:402.082322pt;}
.ls2f{letter-spacing:403.170322pt;}
.ls2e{letter-spacing:425.090322pt;}
.ls21{letter-spacing:429.548988pt;}
.ls1f{letter-spacing:448.114322pt;}
.ls22{letter-spacing:462.503655pt;}
.ls1e{letter-spacing:531.250322pt;}
.ls47{letter-spacing:696.599655pt;}
.ls45{letter-spacing:743.596988pt;}
.ls46{letter-spacing:762.162322pt;}
.ws33{word-spacing:-169.213250pt;}
.ws6b{word-spacing:-155.959878pt;}
.ws37{word-spacing:-103.598610pt;}
.ws5d{word-spacing:-58.181867pt;}
.ws1f{word-spacing:-30.074207pt;}
.ws60{word-spacing:-26.816022pt;}
.ws6{word-spacing:-17.620959pt;}
.ws7{word-spacing:-13.899648pt;}
.ws31{word-spacing:-8.406008pt;}
.ws3b{word-spacing:-8.081715pt;}
.ws4e{word-spacing:-6.734718pt;}
.ws4{word-spacing:-2.438861pt;}
.ws10{word-spacing:-0.980186pt;}
.ws12{word-spacing:-0.058182pt;}
.wsf{word-spacing:-0.053134pt;}
.ws2b{word-spacing:-0.031881pt;}
.ws4d{word-spacing:-0.026567pt;}
.ws5{word-spacing:0.000000pt;}
.ws1d{word-spacing:2.216729pt;}
.ws1e{word-spacing:2.274911pt;}
.ws38{word-spacing:2.598263pt;}
.ws79{word-spacing:2.662025pt;}
.ws7d{word-spacing:2.757666pt;}
.ws81{word-spacing:2.917069pt;}
.ws7c{word-spacing:2.948949pt;}
.ws7b{word-spacing:2.980830pt;}
.ws2a{word-spacing:3.203994pt;}
.ws80{word-spacing:3.208330pt;}
.ws83{word-spacing:3.211320pt;}
.ws3a{word-spacing:3.235874pt;}
.ws5c{word-spacing:3.613094pt;}
.ws5b{word-spacing:3.854356pt;}
.ws28{word-spacing:3.904003pt;}
.ws25{word-spacing:4.149755pt;}
.ws17{word-spacing:4.485822pt;}
.ws58{word-spacing:4.521692pt;}
.ws70{word-spacing:4.544004pt;}
.wse{word-spacing:4.574826pt;}
.wsd{word-spacing:4.602186pt;}
.ws59{word-spacing:4.619489pt;}
.ws5a{word-spacing:4.667310pt;}
.ws27{word-spacing:4.718549pt;}
.ws71{word-spacing:4.776731pt;}
.ws13{word-spacing:4.834913pt;}
.ws26{word-spacing:4.893629pt;}
.ws2{word-spacing:4.999897pt;}
.ws23{word-spacing:5.053031pt;}
.ws19{word-spacing:5.067641pt;}
.ws1{word-spacing:5.474914pt;}
.ws9{word-spacing:5.485006pt;}
.wsb{word-spacing:5.489848pt;}
.ws5f{word-spacing:5.490339pt;}
.ws5e{word-spacing:5.490384pt;}
.ws11{word-spacing:5.499992pt;}
.ws3{word-spacing:5.533096pt;}
.ws77{word-spacing:6.933492pt;}
.ws82{word-spacing:6.934016pt;}
.ws7f{word-spacing:6.935209pt;}
.ws78{word-spacing:6.937672pt;}
.ws7a{word-spacing:6.939796pt;}
.ws7e{word-spacing:6.951429pt;}
.ws29{word-spacing:6.965897pt;}
.ws0{word-spacing:7.322300pt;}
.ws20{word-spacing:7.398814pt;}
.ws21{word-spacing:15.196536pt;}
.ws24{word-spacing:17.674216pt;}
.ws8{word-spacing:19.311119pt;}
.ws16{word-spacing:19.315014pt;}
.wsa{word-spacing:19.316380pt;}
.wsc{word-spacing:19.334624pt;}
.ws14{word-spacing:19.341423pt;}
.ws15{word-spacing:19.347713pt;}
.ws18{word-spacing:19.359333pt;}
.ws22{word-spacing:21.294563pt;}
.ws2f{word-spacing:55.679351pt;}
.ws3c{word-spacing:61.167008pt;}
.ws49{word-spacing:80.722927pt;}
.ws30{word-spacing:87.719287pt;}
.ws3d{word-spacing:91.865674pt;}
.ws6a{word-spacing:96.059509pt;}
.ws35{word-spacing:104.878863pt;}
.ws6f{word-spacing:105.917217pt;}
.ws62{word-spacing:107.409544pt;}
.ws41{word-spacing:110.730030pt;}
.ws4a{word-spacing:111.421594pt;}
.ws3e{word-spacing:111.775660pt;}
.ws63{word-spacing:121.780465pt;}
.ws45{word-spacing:127.668697pt;}
.ws6d{word-spacing:127.743206pt;}
.ws2c{word-spacing:128.207565pt;}
.ws67{word-spacing:130.303107pt;}
.ws6e{word-spacing:139.304188pt;}
.ws39{word-spacing:139.626217pt;}
.ws40{word-spacing:141.437986pt;}
.ws44{word-spacing:142.490044pt;}
.ws64{word-spacing:147.322305pt;}
.ws47{word-spacing:158.366549pt;}
.ws6c{word-spacing:166.608294pt;}
.ws32{word-spacing:166.819654pt;}
.ws1b{word-spacing:177.816750pt;}
.ws1a{word-spacing:179.545317pt;}
.ws43{word-spacing:187.409715pt;}
.ws50{word-spacing:188.582791pt;}
.ws51{word-spacing:188.588124pt;}
.ws34{word-spacing:200.257122pt;}
.ws72{word-spacing:204.338278pt;}
.ws48{word-spacing:204.370159pt;}
.ws36{word-spacing:210.285974pt;}
.ws61{word-spacing:212.253268pt;}
.ws66{word-spacing:221.146658pt;}
.ws69{word-spacing:223.994420pt;}
.ws56{word-spacing:278.970607pt;}
.ws55{word-spacing:279.002487pt;}
.ws54{word-spacing:280.332124pt;}
.ws65{word-spacing:288.704241pt;}
.ws2e{word-spacing:296.675156pt;}
.ws2d{word-spacing:299.060613pt;}
.ws73{word-spacing:567.466242pt;}
.ws53{word-spacing:576.497997pt;}
.ws57{word-spacing:576.503330pt;}
.ws42{word-spacing:596.660122pt;}
.ws75{word-spacing:597.202091pt;}
.ws4c{word-spacing:599.641870pt;}
.ws74{word-spacing:610.482645pt;}
.ws76{word-spacing:610.487979pt;}
.ws4f{word-spacing:611.612092pt;}
.ws46{word-spacing:613.588685pt;}
.ws52{word-spacing:654.618931pt;}
.ws3f{word-spacing:670.112870pt;}
.ws4b{word-spacing:687.041434pt;}
.ws1c{word-spacing:845.843918pt;}
.ws68{word-spacing:1439.425262pt;}
._45{margin-left:-160.806032pt;}
._8c{margin-left:-147.529377pt;}
._48{margin-left:-95.218303pt;}
._8{margin-left:-37.414890pt;}
._6{margin-left:-29.265479pt;}
._3{margin-left:-26.566933pt;}
._c{margin-left:-16.207655pt;}
._a3{margin-left:-15.168771pt;}
._a{margin-left:-4.334153pt;}
._a2{margin-left:-3.328339pt;}
._0{margin-left:-2.065853pt;}
._5{margin-left:-1.075968pt;}
._9{width:1.262477pt;}
._2{width:2.218879pt;}
._87{width:3.666237pt;}
._90{width:6.183184pt;}
._3c{width:11.285709pt;}
._8a{width:13.475743pt;}
._17{width:15.047612pt;}
._8b{width:16.213713pt;}
._88{width:17.244163pt;}
._b{width:18.603221pt;}
._7{width:20.306265pt;}
._89{width:22.418378pt;}
._d{width:23.591437pt;}
._4{width:26.327691pt;}
._e{width:28.654966pt;}
._1{width:33.359697pt;}
._2b{width:63.767326pt;}
._42{width:65.606942pt;}
._3a{width:76.545161pt;}
._21{width:89.544448pt;}
._3f{width:94.685184pt;}
._44{width:96.215450pt;}
._64{width:97.674520pt;}
._9c{width:99.909750pt;}
._3e{width:101.730782pt;}
._3b{width:103.707375pt;}
._47{width:104.902448pt;}
._11{width:116.937796pt;}
._41{width:118.659345pt;}
._40{width:121.305429pt;}
._43{width:125.800585pt;}
._12{width:128.574191pt;}
._3d{width:138.233993pt;}
._39{width:143.825830pt;}
._93{width:155.275938pt;}
._13{width:157.872401pt;}
._22{width:165.362178pt;}
._91{width:172.927919pt;}
._16{width:182.287553pt;}
._8e{width:183.420613pt;}
._2a{width:184.835362pt;}
._24{width:191.083947pt;}
._70{width:195.668362pt;}
._49{width:197.448887pt;}
._29{width:199.216116pt;}
._66{width:204.335083pt;}
._18{width:208.198999pt;}
._46{width:210.564042pt;}
._9d{width:212.419994pt;}
._25{width:214.165453pt;}
._94{width:217.196136pt;}
._10{width:220.645171pt;}
._92{width:234.007246pt;}
._6d{width:235.637699pt;}
._19{width:237.924420pt;}
._8f{width:242.192218pt;}
._15{width:254.852983pt;}
._23{width:256.542652pt;}
._8d{width:259.745701pt;}
._2f{width:261.358506pt;}
._26{width:268.657254pt;}
._1c{width:271.040324pt;}
._14{width:279.546045pt;}
._86{width:281.552606pt;}
._79{width:287.084203pt;}
._20{width:287.989602pt;}
._27{width:291.643119pt;}
._1e{width:293.356698pt;}
._9f{width:297.688379pt;}
._6c{width:301.672723pt;}
._85{width:303.470473pt;}
._32{width:309.760258pt;}
._2d{width:312.960261pt;}
._30{width:314.589353pt;}
._34{width:317.032991pt;}
._1d{width:318.446677pt;}
._28{width:319.825510pt;}
._1b{width:322.726639pt;}
._a1{width:333.540246pt;}
._1f{width:337.200401pt;}
._77{width:339.609342pt;}
._6a{width:341.811913pt;}
._68{width:343.261609pt;}
._74{width:350.164296pt;}
._71{width:351.946736pt;}
._1a{width:354.097084pt;}
._72{width:363.278677pt;}
._63{width:366.111334pt;}
._80{width:368.620255pt;}
._73{width:372.082162pt;}
._67{width:374.613795pt;}
._51{width:378.195651pt;}
._6b{width:380.231151pt;}
._76{width:383.650338pt;}
._7f{width:387.404271pt;}
._9b{width:388.843749pt;}
._52{width:393.110958pt;}
._4a{width:400.151762pt;}
._53{width:407.457126pt;}
._a0{width:409.348912pt;}
._7c{width:417.435733pt;}
._6f{width:419.495923pt;}
._9e{width:423.738245pt;}
._84{width:425.668881pt;}
._62{width:431.544535pt;}
._7b{width:439.337660pt;}
._61{width:446.061336pt;}
._83{width:447.570807pt;}
._69{width:453.460736pt;}
._6e{width:455.368774pt;}
._75{width:460.276788pt;}
._5b{width:462.235853pt;}
._9a{width:466.670507pt;}
._60{width:474.382336pt;}
._81{width:489.812514pt;}
._58{width:494.207361pt;}
._82{width:498.069572pt;}
._5d{width:511.146028pt;}
._f{width:514.009839pt;}
._7a{width:517.389175pt;}
._78{width:539.322982pt;}
._5a{width:576.473440pt;}
._4b{width:577.802858pt;}
._4f{width:580.069564pt;}
._50{width:581.013228pt;}
._31{width:593.571404pt;}
._7d{width:596.803584pt;}
._4e{width:606.622788pt;}
._4c{width:608.503740pt;}
._4d{width:609.428275pt;}
._5f{width:611.723674pt;}
._59{width:628.205909pt;}
._5e{width:645.166353pt;}
._65{width:650.554163pt;}
._7e{width:669.963026pt;}
._98{width:680.159334pt;}
._2e{width:682.880569pt;}
._35{width:686.487845pt;}
._57{width:727.988137pt;}
._97{width:745.592535pt;}
._95{width:788.405589pt;}
._33{width:800.512340pt;}
._5c{width:811.423334pt;}
._37{width:886.313862pt;}
._54{width:890.773982pt;}
._36{width:948.655336pt;}
._2c{width:986.415367pt;}
._55{width:1016.939749pt;}
._38{width:1022.313579pt;}
._56{width:1054.487047pt;}
._99{width:1094.766507pt;}
._96{width:1204.828573pt;}
.fs8{font-size:26.566933pt;}
.fs7{font-size:30.237440pt;}
.fs5{font-size:31.880533pt;}
.fsa{font-size:35.277013pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs6{font-size:61.551360pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.649333pt;}
.y149{bottom:6.213333pt;}
.ycd{bottom:6.916000pt;}
.y23b{bottom:7.200353pt;}
.yc8{bottom:11.792539pt;}
.y237{bottom:11.792602pt;}
.y59{bottom:12.323095pt;}
.y57{bottom:13.823410pt;}
.yd1{bottom:15.152000pt;}
.y23a{bottom:15.503113pt;}
.y148{bottom:15.512000pt;}
.y233{bottom:17.489333pt;}
.y23d{bottom:17.933333pt;}
.y128{bottom:19.402667pt;}
.y5b{bottom:21.744000pt;}
.y8f{bottom:21.864000pt;}
.y34b{bottom:22.120000pt;}
.yd0{bottom:24.450667pt;}
.y147{bottom:24.810667pt;}
.ycc{bottom:24.981333pt;}
.y368{bottom:26.616000pt;}
.y232{bottom:26.788000pt;}
.y23c{bottom:27.230667pt;}
.y2f3{bottom:27.460000pt;}
.y1e5{bottom:27.976000pt;}
.y227{bottom:28.448000pt;}
.y2f2{bottom:28.568000pt;}
.y127{bottom:28.701333pt;}
.yca{bottom:29.935003pt;}
.y16d{bottom:30.078667pt;}
.y316{bottom:30.165333pt;}
.y25d{bottom:31.196000pt;}
.y34a{bottom:31.418667pt;}
.y23e{bottom:31.888089pt;}
.y1a9{bottom:32.821333pt;}
.ycf{bottom:33.749333pt;}
.y146{bottom:34.109333pt;}
.y2f1{bottom:34.877333pt;}
.y367{bottom:35.914667pt;}
.y6b{bottom:36.253333pt;}
.y16c{bottom:36.388000pt;}
.y28{bottom:37.284000pt;}
.y315{bottom:37.581333pt;}
.y126{bottom:38.000000pt;}
.yce{bottom:38.580000pt;}
.y1f7{bottom:38.585333pt;}
.y1a8{bottom:39.132000pt;}
.y1d3{bottom:41.078667pt;}
.y8e{bottom:41.589333pt;}
.y18{bottom:41.677333pt;}
.y145{bottom:43.408000pt;}
.y27a{bottom:43.684000pt;}
.y5a{bottom:43.794667pt;}
.y7b{bottom:43.829333pt;}
.y1e4{bottom:43.916000pt;}
.y2f0{bottom:44.185333pt;}
.y297{bottom:44.481333pt;}
.y349{bottom:44.753333pt;}
.y24d{bottom:45.326667pt;}
.y16b{bottom:45.696000pt;}
.y226{bottom:46.513333pt;}
.y314{bottom:46.889333pt;}
.y125{bottom:47.298667pt;}
.y231{bottom:47.537333pt;}
.y234{bottom:47.758667pt;}
.y212{bottom:47.790667pt;}
.yb0{bottom:47.861333pt;}
.y1a7{bottom:48.440000pt;}
.y25c{bottom:49.262667pt;}
.y366{bottom:49.304000pt;}
.y2ce{bottom:49.528000pt;}
.y2ef{bottom:50.494667pt;}
.yc7{bottom:51.017333pt;}
.ycb{bottom:51.147953pt;}
.y16a{bottom:52.006667pt;}
.y279{bottom:52.982667pt;}
.y313{bottom:53.198667pt;}
.y27{bottom:53.225333pt;}
.y144{bottom:53.237333pt;}
.y296{bottom:53.778667pt;}
.y6a{bottom:54.318667pt;}
.y1f6{bottom:54.525333pt;}
.y1a6{bottom:54.749333pt;}
.yec{bottom:55.558667pt;}
.y41{bottom:56.346667pt;}
.y107{bottom:56.356000pt;}
.y124{bottom:56.596000pt;}
.y1d2{bottom:57.018667pt;}
.yaf{bottom:57.160000pt;}
.y348{bottom:58.088000pt;}
.y2b2{bottom:58.561333pt;}
.y365{bottom:58.602667pt;}
.y2cd{bottom:58.826667pt;}
.y7a{bottom:59.769333pt;}
.y2ee{bottom:59.802667pt;}
.y8d{bottom:60.225333pt;}
.y4e{bottom:60.893333pt;}
.y235{bottom:60.894676pt;}
.y9b{bottom:61.288000pt;}
.y169{bottom:61.313333pt;}
.y17{bottom:61.404000pt;}
.ybb{bottom:62.234667pt;}
.y278{bottom:62.281333pt;}
.y312{bottom:62.506667pt;}
.y143{bottom:62.536000pt;}
.y295{bottom:63.077333pt;}
.y24c{bottom:63.392000pt;}
.y1e3{bottom:63.953333pt;}
.y1a5{bottom:64.057333pt;}
.y225{bottom:64.578667pt;}
.yeb{bottom:64.857333pt;}
.y106{bottom:65.654667pt;}
.y211{bottom:65.856000pt;}
.y2ed{bottom:66.112000pt;}
.y123{bottom:66.426667pt;}
.y25b{bottom:67.328000pt;}
.y347{bottom:67.386667pt;}
.y168{bottom:67.624000pt;}
.y2b1{bottom:67.860000pt;}
.y2cc{bottom:68.125333pt;}
.y311{bottom:68.817333pt;}
.y26{bottom:69.165333pt;}
.y8{bottom:69.442667pt;}
.y34{bottom:69.981333pt;}
.y1a4{bottom:70.366667pt;}
.y277{bottom:71.578667pt;}
.y364{bottom:71.992000pt;}
.y294{bottom:72.376000pt;}
.y1f5{bottom:72.458667pt;}
.y330{bottom:72.886667pt;}
.y1d1{bottom:72.960000pt;}
.y142{bottom:73.028000pt;}
.y1c3{bottom:73.550667pt;}
.yea{bottom:74.156000pt;}
.y40{bottom:74.413333pt;}
.y105{bottom:74.952000pt;}
.y2ec{bottom:75.420000pt;}
.y79{bottom:75.709333pt;}
.y122{bottom:75.725333pt;}
.y69{bottom:76.617333pt;}
.y167{bottom:76.932000pt;}
.y2b0{bottom:77.158667pt;}
.y2cb{bottom:77.424000pt;}
.y310{bottom:78.125333pt;}
.y8c{bottom:78.290667pt;}
.yc6{bottom:78.568000pt;}
.y4d{bottom:78.958667pt;}
.y9a{bottom:79.354667pt;}
.y1a3{bottom:79.674667pt;}
.y346{bottom:80.721333pt;}
.y276{bottom:80.877333pt;}
.y186{bottom:81.133333pt;}
.y363{bottom:81.290667pt;}
.y293{bottom:81.674667pt;}
.y2eb{bottom:81.729333pt;}
.y16{bottom:81.793333pt;}
.y1e2{bottom:81.886667pt;}
.y32f{bottom:82.184000pt;}
.y141{bottom:82.326667pt;}
.y224{bottom:82.644000pt;}
.y1c2{bottom:82.849333pt;}
.y24b{bottom:83.118667pt;}
.y166{bottom:83.241333pt;}
.ye9{bottom:83.454667pt;}
.y104{bottom:84.250667pt;}
.y30f{bottom:84.434667pt;}
.y25a{bottom:85.393333pt;}
.y1a2{bottom:85.984000pt;}
.y121{bottom:86.217333pt;}
.y2af{bottom:86.457333pt;}
.y55{bottom:86.566667pt;}
.y2ca{bottom:86.722667pt;}
.y25{bottom:87.097333pt;}
.y7{bottom:87.508000pt;}
.yc5{bottom:87.866667pt;}
.y1f4{bottom:89.238667pt;}
.y33{bottom:89.708000pt;}
.yae{bottom:89.969333pt;}
.y345{bottom:90.018667pt;}
.y185{bottom:90.432000pt;}
.y275{bottom:90.706667pt;}
.y1d0{bottom:90.892000pt;}
.yba{bottom:90.988000pt;}
.y2ea{bottom:91.037333pt;}
.y292{bottom:91.504000pt;}
.y210{bottom:91.892000pt;}
.y32e{bottom:92.024000pt;}
.y165{bottom:92.549333pt;}
.y1c1{bottom:92.688000pt;}
.ye8{bottom:92.752000pt;}
.y140{bottom:92.820000pt;}
.y103{bottom:93.549333pt;}
.y78{bottom:93.642667pt;}
.y30e{bottom:93.742667pt;}
.y239{bottom:94.021824pt;}
.y3f{bottom:94.138667pt;}
.y68{bottom:94.550667pt;}
.y362{bottom:94.680000pt;}
.y1a1{bottom:95.292000pt;}
.y120{bottom:95.516000pt;}
.y1e1{bottom:95.946667pt;}
.y2ae{bottom:96.286667pt;}
.y2c9{bottom:96.552000pt;}
.yc4{bottom:97.165333pt;}
.y8b{bottom:98.017333pt;}
.y32d{bottom:98.333333pt;}
.y2e9{bottom:98.454667pt;}
.y4c{bottom:98.685333pt;}
.y1c0{bottom:98.997333pt;}
.y99{bottom:99.080000pt;}
.yad{bottom:99.268000pt;}
.y15{bottom:99.860000pt;}
.y164{bottom:99.965333pt;}
.y274{bottom:100.005333pt;}
.y184{bottom:100.261333pt;}
.y291{bottom:100.802667pt;}
.y30d{bottom:101.158667pt;}
.y13f{bottom:102.118667pt;}
.y223{bottom:102.370667pt;}
.ye7{bottom:102.582667pt;}
.y1a0{bottom:102.709333pt;}
.y344{bottom:103.353333pt;}
.y102{bottom:103.378667pt;}
.y24{bottom:103.702667pt;}
.y24a{bottom:103.822667pt;}
.y361{bottom:103.978667pt;}
.y259{bottom:105.118667pt;}
.y1cf{bottom:105.146667pt;}
.y1f3{bottom:105.178667pt;}
.y6{bottom:105.574667pt;}
.y2ad{bottom:105.585333pt;}
.y2c8{bottom:105.850667pt;}
.y11f{bottom:106.009333pt;}
.y2e8{bottom:107.762667pt;}
.yac{bottom:108.566667pt;}
.y67{bottom:108.746667pt;}
.y32c{bottom:108.836000pt;}
.yb9{bottom:109.054667pt;}
.y163{bottom:109.273333pt;}
.y273{bottom:109.304000pt;}
.y1bf{bottom:109.500000pt;}
.y32{bottom:110.097333pt;}
.y290{bottom:110.101333pt;}
.y30c{bottom:110.466667pt;}
.y77{bottom:110.588000pt;}
.y183{bottom:110.754667pt;}
.y13e{bottom:111.416000pt;}
.ye6{bottom:111.881333pt;}
.y1e0{bottom:111.886667pt;}
.y19f{bottom:112.017333pt;}
.y343{bottom:112.652000pt;}
.y101{bottom:112.677333pt;}
.y360{bottom:113.277333pt;}
.y1ff{bottom:113.886667pt;}
.y20f{bottom:113.942667pt;}
.y2e7{bottom:114.072000pt;}
.y2ac{bottom:114.884000pt;}
.y2c7{bottom:115.149333pt;}
.y11e{bottom:115.306667pt;}
.y162{bottom:115.582667pt;}
.y3e{bottom:116.189333pt;}
.y32b{bottom:116.252000pt;}
.y30b{bottom:116.776000pt;}
.y1be{bottom:116.916000pt;}
.yab{bottom:117.865333pt;}
.y14{bottom:117.925333pt;}
.y8a{bottom:118.313333pt;}
.y19e{bottom:118.326667pt;}
.y272{bottom:118.602667pt;}
.y28f{bottom:119.400000pt;}
.y98{bottom:119.470667pt;}
.y4b{bottom:119.624000pt;}
.y182{bottom:120.053333pt;}
.y13d{bottom:120.714667pt;}
.y1ce{bottom:121.086667pt;}
.y23{bottom:121.302667pt;}
.y374{bottom:121.556000pt;}
.y249{bottom:121.888000pt;}
.ye5{bottom:122.373333pt;}
.y35f{bottom:122.576000pt;}
.y222{bottom:122.760000pt;}
.y100{bottom:123.170667pt;}
.y2e6{bottom:123.380000pt;}
.y2ab{bottom:124.182667pt;}
.y2c6{bottom:124.448000pt;}
.y11d{bottom:124.605333pt;}
.y161{bottom:124.890667pt;}
.y1f2{bottom:125.280000pt;}
.y32a{bottom:125.560000pt;}
.y258{bottom:125.597333pt;}
.y342{bottom:125.986667pt;}
.y30a{bottom:126.084000pt;}
.y1bd{bottom:126.224000pt;}
.y76{bottom:126.528000pt;}
.y66{bottom:126.678667pt;}
.yb8{bottom:127.120000pt;}
.yaa{bottom:127.164000pt;}
.y19d{bottom:127.634667pt;}
.y271{bottom:127.901333pt;}
.yc9{bottom:128.002643pt;}
.y28e{bottom:128.698667pt;}
.y1df{bottom:129.818667pt;}
.y31{bottom:129.824000pt;}
.y218{bottom:130.005333pt;}
.y13c{bottom:130.013333pt;}
.y181{bottom:130.545333pt;}
.y2e5{bottom:130.796000pt;}
.ye4{bottom:131.672000pt;}
.y329{bottom:131.870667pt;}
.y1fe{bottom:131.952000pt;}
.y205{bottom:132.042667pt;}
.y160{bottom:132.308000pt;}
.yff{bottom:132.469333pt;}
.y1bc{bottom:132.534667pt;}
.y238{bottom:132.836854pt;}
.y2aa{bottom:133.480000pt;}
.y309{bottom:133.501333pt;}
.y2c5{bottom:133.746667pt;}
.y11c{bottom:133.904000pt;}
.y19c{bottom:135.050667pt;}
.y341{bottom:135.285333pt;}
.y4a{bottom:135.564000pt;}
.y35e{bottom:135.965333pt;}
.y20e{bottom:135.993333pt;}
.y373{bottom:136.104000pt;}
.ya9{bottom:136.462667pt;}
.y3d{bottom:136.580000pt;}
.y13{bottom:137.650667pt;}
.y270{bottom:138.393333pt;}
.y89{bottom:138.609333pt;}
.y1cd{bottom:139.020000pt;}
.y28d{bottom:139.190667pt;}
.y97{bottom:139.196000pt;}
.y13b{bottom:139.312000pt;}
.y22{bottom:139.568000pt;}
.y180{bottom:139.853333pt;}
.y1f1{bottom:139.892000pt;}
.y248{bottom:139.953333pt;}
.y2e4{bottom:140.104000pt;}
.y65{bottom:140.874667pt;}
.ye3{bottom:140.970667pt;}
.y15f{bottom:141.616000pt;}
.yfe{bottom:141.766667pt;}
.y328{bottom:142.372000pt;}
.y221{bottom:142.486667pt;}
.y308{bottom:142.809333pt;}
.y1bb{bottom:143.036000pt;}
.y11b{bottom:143.202667pt;}
.y257{bottom:143.662667pt;}
.y2a9{bottom:143.973333pt;}
.y2c4{bottom:144.238667pt;}
.y19b{bottom:144.358667pt;}
.y340{bottom:144.584000pt;}
.yb7{bottom:145.185333pt;}
.y35d{bottom:145.264000pt;}
.y372{bottom:145.402667pt;}
.y54{bottom:145.609333pt;}
.ya8{bottom:145.761333pt;}
.y17f{bottom:146.162667pt;}
.y2e3{bottom:146.414667pt;}
.y1de{bottom:146.536000pt;}
.y75{bottom:146.793333pt;}
.y26f{bottom:147.692000pt;}
.y15e{bottom:147.925333pt;}
.y217{bottom:148.072000pt;}
.y28c{bottom:148.489333pt;}
.y307{bottom:149.118667pt;}
.y327{bottom:149.789333pt;}
.y13a{bottom:149.805333pt;}
.y30{bottom:150.214667pt;}
.ye2{bottom:150.269333pt;}
.y1ba{bottom:150.453333pt;}
.y19a{bottom:150.668000pt;}
.yfd{bottom:151.065333pt;}
.y1fd{bottom:151.678667pt;}
.y204{bottom:151.769333pt;}
.y11a{bottom:152.501333pt;}
.y230{bottom:152.660000pt;}
.y2a8{bottom:153.272000pt;}
.y49{bottom:153.497333pt;}
.y2c3{bottom:153.537333pt;}
.y3c{bottom:154.645333pt;}
.ya7{bottom:155.058667pt;}
.y17e{bottom:155.470667pt;}
.y2e2{bottom:155.721333pt;}
.y1cc{bottom:155.930667pt;}
.y1f0{bottom:156.496000pt;}
.y64{bottom:156.814667pt;}
.y26e{bottom:156.990667pt;}
.y15d{bottom:157.233333pt;}
.y88{bottom:157.245333pt;}
.y28b{bottom:157.788000pt;}
.y33f{bottom:157.918667pt;}
.y247{bottom:158.018667pt;}
.y12{bottom:158.041333pt;}
.y20d{bottom:158.044000pt;}
.y306{bottom:158.426667pt;}
.y35c{bottom:158.653333pt;}
.y326{bottom:159.097333pt;}
.y139{bottom:159.102667pt;}
.y21{bottom:159.293333pt;}
.ye1{bottom:159.568000pt;}
.y1b9{bottom:159.761333pt;}
.y371{bottom:159.950667pt;}
.y199{bottom:159.976000pt;}
.yfc{bottom:160.364000pt;}
.yc3{bottom:161.085333pt;}
.y96{bottom:161.246667pt;}
.y256{bottom:161.728000pt;}
.y17d{bottom:161.781333pt;}
.y2e1{bottom:162.032000pt;}
.y1dd{bottom:162.476000pt;}
.y74{bottom:162.733333pt;}
.y119{bottom:162.993333pt;}
.yb6{bottom:163.250667pt;}
.y15c{bottom:163.542667pt;}
.y2a7{bottom:163.764000pt;}
.y2c2{bottom:164.030667pt;}
.ya6{bottom:164.357333pt;}
.y220{bottom:164.537333pt;}
.y305{bottom:164.736000pt;}
.y53{bottom:165.334667pt;}
.y325{bottom:165.406667pt;}
.y1b8{bottom:166.070667pt;}
.y198{bottom:166.286667pt;}
.y33e{bottom:167.217333pt;}
.y26d{bottom:167.484000pt;}
.y35b{bottom:167.952000pt;}
.y48{bottom:167.993333pt;}
.y5{bottom:168.242667pt;}
.y28a{bottom:168.281333pt;}
.ye0{bottom:168.865333pt;}
.y370{bottom:169.249333pt;}
.y1ef{bottom:169.292000pt;}
.y138{bottom:169.596000pt;}
.yfb{bottom:169.662667pt;}
.y2f{bottom:169.940000pt;}
.yc2{bottom:170.382667pt;}
.y22f{bottom:170.725333pt;}
.y17c{bottom:171.089333pt;}
.y2e0{bottom:171.340000pt;}
.y1fc{bottom:172.069333pt;}
.y7f{bottom:172.108000pt;}
.y118{bottom:172.292000pt;}
.y216{bottom:172.580000pt;}
.y15b{bottom:172.850667pt;}
.y2a6{bottom:173.062667pt;}
.y2c1{bottom:173.328000pt;}
.ya5{bottom:173.656000pt;}
.y203{bottom:173.820000pt;}
.y304{bottom:174.044000pt;}
.y3b{bottom:174.370667pt;}
.y324{bottom:174.714667pt;}
.y63{bottom:174.748000pt;}
.y1b7{bottom:175.378667pt;}
.y197{bottom:175.593333pt;}
.y246{bottom:176.085333pt;}
.y20c{bottom:176.109333pt;}
.y1cb{bottom:176.162667pt;}
.y26c{bottom:176.782667pt;}
.y87{bottom:176.970667pt;}
.y289{bottom:177.578667pt;}
.y11{bottom:177.768000pt;}
.y17b{bottom:178.505333pt;}
.y36f{bottom:178.546667pt;}
.y2df{bottom:178.756000pt;}
.y137{bottom:178.894667pt;}
.y15a{bottom:179.160000pt;}
.ydf{bottom:179.358667pt;}
.y20{bottom:179.684000pt;}
.yfa{bottom:180.156000pt;}
.yc1{bottom:180.213333pt;}
.y33d{bottom:180.552000pt;}
.y73{bottom:180.666667pt;}
.y323{bottom:181.024000pt;}
.yb5{bottom:181.316000pt;}
.y35a{bottom:181.341333pt;}
.y255{bottom:181.453333pt;}
.y303{bottom:181.461333pt;}
.y95{bottom:181.637333pt;}
.y1b6{bottom:181.688000pt;}
.y196{bottom:181.904000pt;}
.y1dc{bottom:182.513333pt;}
.y215{bottom:182.557333pt;}
.y117{bottom:182.785333pt;}
.ya4{bottom:182.954667pt;}
.y2a5{bottom:183.556000pt;}
.y2c0{bottom:183.821333pt;}
.y1ee{bottom:183.904000pt;}
.y47{bottom:185.925333pt;}
.y4{bottom:186.308000pt;}
.y21f{bottom:186.588000pt;}
.y52{bottom:187.149333pt;}
.y26b{bottom:187.274667pt;}
.y17a{bottom:187.813333pt;}
.y2de{bottom:188.064000pt;}
.y288{bottom:188.072000pt;}
.y159{bottom:188.468000pt;}
.yde{bottom:188.657333pt;}
.y22e{bottom:188.790667pt;}
.y136{bottom:189.386667pt;}
.yf9{bottom:189.453333pt;}
.yc0{bottom:189.512000pt;}
.y33c{bottom:189.850667pt;}
.y7e{bottom:190.040000pt;}
.y322{bottom:190.322667pt;}
.y2e{bottom:190.330667pt;}
.y359{bottom:190.640000pt;}
.y302{bottom:190.768000pt;}
.y1b5{bottom:190.986667pt;}
.y195{bottom:191.212000pt;}
.y62{bottom:191.600000pt;}
.y1fb{bottom:191.794667pt;}
.y116{bottom:192.084000pt;}
.ya3{bottom:192.253333pt;}
.y2a4{bottom:192.854667pt;}
.y36e{bottom:193.096000pt;}
.y2bf{bottom:193.120000pt;}
.y1ca{bottom:194.096000pt;}
.y179{bottom:194.122667pt;}
.y245{bottom:194.150667pt;}
.y202{bottom:194.210667pt;}
.y3a{bottom:194.761333pt;}
.y158{bottom:194.778667pt;}
.y72{bottom:194.954667pt;}
.y2dd{bottom:195.480000pt;}
.y86{bottom:195.606667pt;}
.y26a{bottom:196.573333pt;}
.y287{bottom:197.370667pt;}
.y194{bottom:197.521333pt;}
.ydd{bottom:197.956000pt;}
.y10{bottom:198.157333pt;}
.y20b{bottom:198.160000pt;}
.y301{bottom:198.185333pt;}
.y135{bottom:198.685333pt;}
.yf8{bottom:198.752000pt;}
.y33b{bottom:199.148000pt;}
.yb4{bottom:199.381333pt;}
.y1f{bottom:199.409333pt;}
.y321{bottom:199.621333pt;}
.y358{bottom:199.938667pt;}
.y1b4{bottom:200.285333pt;}
.y1db{bottom:200.446667pt;}
.y1ed{bottom:200.508000pt;}
.y94{bottom:201.364000pt;}
.ya2{bottom:201.552000pt;}
.y254{bottom:201.932000pt;}
.y2a3{bottom:202.152000pt;}
.y36d{bottom:202.393333pt;}
.y2be{bottom:202.418667pt;}
.y115{bottom:202.576000pt;}
.y46{bottom:203.078667pt;}
.y178{bottom:203.430667pt;}
.y156{bottom:204.086667pt;}
.y2dc{bottom:204.788000pt;}
.y157{bottom:205.193333pt;}
.y51{bottom:205.216000pt;}
.y269{bottom:205.872000pt;}
.y286{bottom:206.669333pt;}
.y193{bottom:206.829333pt;}
.y22d{bottom:206.856000pt;}
.y21e{bottom:206.977333pt;}
.ydc{bottom:207.253333pt;}
.y300{bottom:207.493333pt;}
.y134{bottom:207.984000pt;}
.yf7{bottom:208.050667pt;}
.y2d{bottom:208.262667pt;}
.y1c9{bottom:208.350667pt;}
.y7d{bottom:208.381333pt;}
.y320{bottom:208.929333pt;}
.y1b3{bottom:209.593333pt;}
.y177{bottom:209.740000pt;}
.ya1{bottom:210.849333pt;}
.y2db{bottom:211.098667pt;}
.y2a2{bottom:211.450667pt;}
.y155{bottom:211.502667pt;}
.y2bd{bottom:211.717333pt;}
.y61{bottom:211.773333pt;}
.y114{bottom:211.874667pt;}
.y1fa{bottom:212.185333pt;}
.y244{bottom:212.216000pt;}
.y33a{bottom:212.482667pt;}
.y39{bottom:212.694667pt;}
.y58{bottom:212.833062pt;}
.y71{bottom:212.886667pt;}
.y192{bottom:213.138667pt;}
.y206{bottom:213.237333pt;}
.y357{bottom:213.328000pt;}
.y2ff{bottom:213.802667pt;}
.y201{bottom:213.936000pt;}
.y56{bottom:214.333376pt;}
.y1da{bottom:214.506667pt;}
.y268{bottom:215.170667pt;}
.y31f{bottom:215.238667pt;}
.y85{bottom:215.333333pt;}
.y3{bottom:215.493333pt;}
.y1b2{bottom:215.902667pt;}
.y285{bottom:215.968000pt;}
.y1ec{bottom:216.048000pt;}
.ydb{bottom:216.552000pt;}
.y36c{bottom:216.941333pt;}
.y133{bottom:217.282667pt;}
.yf6{bottom:217.349333pt;}
.yb3{bottom:217.448000pt;}
.yf{bottom:217.884000pt;}
.y176{bottom:219.048000pt;}
.y1e{bottom:219.800000pt;}
.y253{bottom:219.997333pt;}
.ya0{bottom:220.148000pt;}
.y20a{bottom:220.210667pt;}
.y2da{bottom:220.406667pt;}
.y45{bottom:220.680000pt;}
.y2a1{bottom:220.749333pt;}
.y154{bottom:220.810667pt;}
.y2bc{bottom:221.014667pt;}
.y113{bottom:221.173333pt;}
.y339{bottom:221.781333pt;}
.y2c{bottom:222.210667pt;}
.y191{bottom:222.446667pt;}
.y356{bottom:222.626667pt;}
.y214{bottom:222.700000pt;}
.y2fe{bottom:223.110667pt;}
.y50{bottom:223.281333pt;}
.y93{bottom:223.414667pt;}
.y1c8{bottom:224.290667pt;}
.y7c{bottom:224.321333pt;}
.y267{bottom:224.469333pt;}
.y31e{bottom:224.546667pt;}
.y1b1{bottom:225.210667pt;}
.y284{bottom:225.265333pt;}
.y175{bottom:225.358667pt;}
.y22c{bottom:225.453333pt;}
.yda{bottom:225.850667pt;}
.y36b{bottom:226.240000pt;}
.y132{bottom:226.581333pt;}
.yf5{bottom:226.648000pt;}
.y21d{bottom:226.704000pt;}
.y2d9{bottom:226.716000pt;}
.y153{bottom:227.120000pt;}
.y60{bottom:227.713333pt;}
.y38{bottom:228.634667pt;}
.y190{bottom:228.756000pt;}
.y2fd{bottom:229.420000pt;}
.y9f{bottom:229.446667pt;}
.y70{bottom:229.832000pt;}
.y2a0{bottom:230.048000pt;}
.y1f9{bottom:230.250667pt;}
.y2bb{bottom:230.313333pt;}
.y112{bottom:230.472000pt;}
.y31d{bottom:230.856000pt;}
.y1b0{bottom:231.520000pt;}
.y243{bottom:231.942667pt;}
.y1d9{bottom:232.440000pt;}
.y1eb{bottom:232.652000pt;}
.y266{bottom:233.766667pt;}
.y84{bottom:233.969333pt;}
.y283{bottom:234.564000pt;}
.y338{bottom:235.116000pt;}
.yd9{bottom:235.149333pt;}
.yb2{bottom:235.513333pt;}
.y174{bottom:235.860000pt;}
.y131{bottom:235.880000pt;}
.yf4{bottom:235.946667pt;}
.y200{bottom:235.986667pt;}
.y355{bottom:236.016000pt;}
.y2d8{bottom:236.024000pt;}
.y152{bottom:236.428000pt;}
.y1d{bottom:237.733333pt;}
.y252{bottom:238.062667pt;}
.y18f{bottom:238.064000pt;}
.ye{bottom:238.273333pt;}
.y2fc{bottom:238.728000pt;}
.y9e{bottom:238.745333pt;}
.ybf{bottom:238.996000pt;}
.y29f{bottom:239.346667pt;}
.y44{bottom:239.493333pt;}
.y2ba{bottom:239.612000pt;}
.y111{bottom:239.770667pt;}
.y2b{bottom:240.144000pt;}
.y213{bottom:240.765333pt;}
.y36a{bottom:240.788000pt;}
.y31c{bottom:241.358667pt;}
.y1af{bottom:242.022667pt;}
.y1c7{bottom:242.222667pt;}
.y209{bottom:242.261333pt;}
.y4f{bottom:243.006667pt;}
.y265{bottom:243.065333pt;}
.y173{bottom:243.277333pt;}
.y2d7{bottom:243.440000pt;}
.y354{bottom:243.542667pt;}
.y5f{bottom:243.653333pt;}
.y151{bottom:243.845333pt;}
.y282{bottom:243.862667pt;}
.y337{bottom:244.414667pt;}
.yd8{bottom:244.448000pt;}
.y130{bottom:245.178667pt;}
.yf3{bottom:245.245333pt;}
.y352{bottom:245.314667pt;}
.y1ea{bottom:245.446667pt;}
.y92{bottom:245.465333pt;}
.y18e{bottom:245.481333pt;}
.y6f{bottom:245.772000pt;}
.y2fb{bottom:246.145333pt;}
.y353{bottom:246.237333pt;}
.y1d8{bottom:246.500000pt;}
.y37{bottom:246.898667pt;}
.y21c{bottom:247.094667pt;}
.y9d{bottom:248.044000pt;}
.ybe{bottom:248.294667pt;}
.y29e{bottom:248.645333pt;}
.y31b{bottom:248.774667pt;}
.y2b9{bottom:248.910667pt;}
.y110{bottom:249.068000pt;}
.y1ae{bottom:249.438667pt;}
.y1f8{bottom:249.976000pt;}
.y369{bottom:250.086667pt;}
.y236{bottom:250.372303pt;}
.y1c{bottom:251.680000pt;}
.y83{bottom:252.034667pt;}
.y264{bottom:252.364000pt;}
.y171{bottom:252.585333pt;}
.y242{bottom:252.646667pt;}
.y2d6{bottom:252.748000pt;}
.y150{bottom:253.152000pt;}
.y281{bottom:253.161333pt;}
.y172{bottom:253.692000pt;}
.yd7{bottom:253.746667pt;}
.yb1{bottom:254.110667pt;}
.y12f{bottom:254.476000pt;}
.yf2{bottom:254.542667pt;}
.y18d{bottom:254.789333pt;}
.y2fa{bottom:255.453333pt;}
.y22b{bottom:255.766667pt;}
.y1c6{bottom:256.477333pt;}
.y43{bottom:257.558667pt;}
.y336{bottom:257.749333pt;}
.y251{bottom:257.789333pt;}
.y29d{bottom:257.944000pt;}
.yd{bottom:258.000000pt;}
.y31a{bottom:258.082667pt;}
.ybd{bottom:258.124000pt;}
.y2b8{bottom:258.209333pt;}
.y10f{bottom:258.366667pt;}
.y2a{bottom:258.408000pt;}
.y351{bottom:258.704000pt;}
.y1ad{bottom:258.746667pt;}
.y14f{bottom:259.462667pt;}
.y170{bottom:260.001333pt;}
.y2d5{bottom:260.165333pt;}
.y9c{bottom:260.796000pt;}
.y18c{bottom:261.098667pt;}
.y5e{bottom:261.586667pt;}
.y263{bottom:261.662667pt;}
.y1d7{bottom:262.440000pt;}
.y280{bottom:262.460000pt;}
.y2f9{bottom:262.869333pt;}
.yd6{bottom:263.045333pt;}
.y1e9{bottom:263.380000pt;}
.y12e{bottom:263.774667pt;}
.yf1{bottom:263.841333pt;}
.y208{bottom:264.312000pt;}
.y1ac{bottom:265.056000pt;}
.y319{bottom:265.498667pt;}
.y91{bottom:265.854667pt;}
.y21b{bottom:266.820000pt;}
.y36{bottom:266.824000pt;}
.y335{bottom:267.048000pt;}
.y29c{bottom:267.241333pt;}
.ybc{bottom:267.422667pt;}
.y2b7{bottom:267.508000pt;}
.y10e{bottom:267.665333pt;}
.y350{bottom:268.002667pt;}
.y2{bottom:268.592000pt;}
.y6e{bottom:268.694667pt;}
.y14e{bottom:268.770667pt;}
.y2d3{bottom:269.472000pt;}
.y1b{bottom:269.613333pt;}
.y18b{bottom:270.406667pt;}
.y16f{bottom:270.504000pt;}
.y2d4{bottom:270.580000pt;}
.y241{bottom:270.712000pt;}
.y262{bottom:270.961333pt;}
.y27f{bottom:271.758667pt;}
.y82{bottom:271.760000pt;}
.y2f8{bottom:272.177333pt;}
.yd5{bottom:272.342667pt;}
.y12d{bottom:273.073333pt;}
.yf0{bottom:273.140000pt;}
.y1c5{bottom:274.410667pt;}
.y14d{bottom:275.080000pt;}
.y22a{bottom:275.492000pt;}
.y1ab{bottom:275.558667pt;}
.y318{bottom:276.001333pt;}
.y29b{bottom:276.540000pt;}
.y18a{bottom:276.716000pt;}
.y2b6{bottom:276.806667pt;}
.y2d2{bottom:276.889333pt;}
.y10d{bottom:276.964000pt;}
.y42{bottom:277.284000pt;}
.y5d{bottom:277.774667pt;}
.y16e{bottom:277.920000pt;}
.y250{bottom:278.266667pt;}
.yc{bottom:278.390667pt;}
.y2f7{bottom:278.486667pt;}
.y1e8{bottom:279.496000pt;}
.y261{bottom:280.260000pt;}
.y1d6{bottom:280.372000pt;}
.y334{bottom:280.382667pt;}
.y27e{bottom:281.057333pt;}
.y34f{bottom:281.392000pt;}
.yd4{bottom:281.641333pt;}
.y12c{bottom:282.372000pt;}
.yef{bottom:282.438667pt;}
.y1aa{bottom:282.976000pt;}
.y317{bottom:283.418667pt;}
.y14c{bottom:284.388000pt;}
.y6d{bottom:284.634667pt;}
.y90{bottom:285.581333pt;}
.y29a{bottom:285.838667pt;}
.y189{bottom:286.024000pt;}
.y2b5{bottom:286.104000pt;}
.y2d1{bottom:286.197333pt;}
.y1a{bottom:286.217333pt;}
.y10c{bottom:286.262667pt;}
.y207{bottom:286.362667pt;}
.y23f{bottom:286.938667pt;}
.y21a{bottom:287.210667pt;}
.y2f6{bottom:287.794667pt;}
.y35{bottom:288.874667pt;}
.y260{bottom:289.558667pt;}
.y333{bottom:289.681333pt;}
.y27d{bottom:290.354667pt;}
.y81{bottom:290.396000pt;}
.y240{bottom:290.438667pt;}
.y34e{bottom:290.690667pt;}
.yd3{bottom:290.940000pt;}
.y1c4{bottom:291.321333pt;}
.y12b{bottom:291.670667pt;}
.yee{bottom:291.737333pt;}
.y14b{bottom:291.804000pt;}
.y229{bottom:292.405333pt;}
.y1{bottom:292.502667pt;}
.y188{bottom:293.440000pt;}
.y2d0{bottom:293.613333pt;}
.y1e7{bottom:293.620000pt;}
.y5c{bottom:294.626667pt;}
.y299{bottom:295.137333pt;}
.y2f5{bottom:295.212000pt;}
.y2b4{bottom:295.402667pt;}
.y10b{bottom:295.561333pt;}
.y24f{bottom:296.332000pt;}
.y1d5{bottom:297.089333pt;}
.yb{bottom:298.116000pt;}
.y25f{bottom:298.856000pt;}
.y27c{bottom:299.653333pt;}
.yd2{bottom:300.770667pt;}
.y12a{bottom:300.969333pt;}
.yed{bottom:301.566667pt;}
.y14a{bottom:301.634667pt;}
.y6c{bottom:302.568000pt;}
.y332{bottom:303.016000pt;}
.y187{bottom:303.270667pt;}
.y2cf{bottom:303.444000pt;}
.y19{bottom:303.818667pt;}
.y34d{bottom:304.080000pt;}
.y10a{bottom:304.860000pt;}
.y298{bottom:304.966667pt;}
.y2f4{bottom:305.041333pt;}
.y2b3{bottom:305.233333pt;}
.y219{bottom:306.936000pt;}
.y25e{bottom:308.686667pt;}
.y27b{bottom:309.484000pt;}
.y80{bottom:310.122667pt;}
.y129{bottom:310.798667pt;}
.y29{bottom:310.848000pt;}
.y1e6{bottom:311.552000pt;}
.y228{bottom:312.132000pt;}
.y331{bottom:312.314667pt;}
.y1d4{bottom:313.029333pt;}
.y34c{bottom:313.378667pt;}
.y109{bottom:314.157333pt;}
.y24e{bottom:316.057333pt;}
.y108{bottom:323.988000pt;}
.ya{bottom:334.758667pt;}
.h16{height:19.925200pt;}
.h11{height:22.043094pt;}
.h1d{height:22.125090pt;}
.h10{height:22.405943pt;}
.h6{height:23.910400pt;}
.h13{height:25.729624pt;}
.h12{height:25.734957pt;}
.h1f{height:26.140267pt;}
.h19{height:27.892267pt;}
.h4{height:27.895200pt;}
.h1b{height:27.897600pt;}
.h21{height:30.998400pt;}
.hb{height:31.877067pt;}
.h9{height:31.882400pt;}
.h15{height:33.301200pt;}
.h14{height:33.306533pt;}
.h1c{height:33.738215pt;}
.h1a{height:35.865600pt;}
.h8{height:36.991067pt;}
.h7{height:36.996400pt;}
.ha{height:39.850400pt;}
.he{height:40.378215pt;}
.h5{height:43.636400pt;}
.h17{height:49.147733pt;}
.h18{height:49.153067pt;}
.h3{height:52.995067pt;}
.h2{height:57.384800pt;}
.hd{height:64.196145pt;}
.h1e{height:82.996400pt;}
.h20{height:188.681626pt;}
.hc{height:236.588040pt;}
.hf{height:272.136960pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w2{width:244.923120pt;}
.w4{width:351.963802pt;}
.w3{width:408.205440pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:8.164235pt;}
.x8{left:11.338667pt;}
.xe{left:25.877218pt;}
.x3e{left:27.213822pt;}
.x14{left:37.794667pt;}
.x12{left:42.037333pt;}
.x15{left:45.765333pt;}
.x9{left:48.300000pt;}
.x5{left:50.061333pt;}
.x1{left:51.277333pt;}
.x44{left:52.341333pt;}
.x24{left:55.494667pt;}
.x4{left:59.708000pt;}
.xa{left:66.886667pt;}
.x20{left:72.128893pt;}
.x3d{left:74.986592pt;}
.xb{left:78.373333pt;}
.xf{left:85.178106pt;}
.x19{left:87.092000pt;}
.x2{left:88.410667pt;}
.xc{left:95.977333pt;}
.x36{left:103.689333pt;}
.x16{left:105.316000pt;}
.x18{left:108.022667pt;}
.x6{left:111.222667pt;}
.xd{left:119.432000pt;}
.x37{left:120.658667pt;}
.x35{left:125.068000pt;}
.x1d{left:129.548000pt;}
.x3{left:135.370667pt;}
.x10{left:136.677333pt;}
.x1a{left:147.770667pt;}
.x3b{left:148.732928pt;}
.x1c{left:150.477333pt;}
.x11{left:176.897333pt;}
.x22{left:180.202543pt;}
.x38{left:184.965333pt;}
.x21{left:190.489573pt;}
.x3a{left:193.641196pt;}
.x3c{left:196.048537pt;}
.x1e{left:198.893061pt;}
.x25{left:203.513333pt;}
.x2d{left:210.570667pt;}
.x31{left:217.766667pt;}
.x2a{left:224.961333pt;}
.x23{left:240.026667pt;}
.x39{left:252.377333pt;}
.x1b{left:258.545333pt;}
.x17{left:266.660000pt;}
.x45{left:271.668000pt;}
.x46{left:275.102667pt;}
.x47{left:279.474667pt;}
.x27{left:283.750667pt;}
.x2e{left:290.808000pt;}
.x40{left:298.002667pt;}
.x26{left:299.964000pt;}
.x2b{left:305.198667pt;}
.x3f{left:313.044000pt;}
.x30{left:316.642667pt;}
.x34{left:339.578667pt;}
.x29{left:363.988000pt;}
.x33{left:367.516000pt;}
.x2f{left:371.045333pt;}
.x42{left:378.240000pt;}
.x28{left:380.200000pt;}
.x32{left:384.081333pt;}
.x2c{left:385.436000pt;}
.x41{left:389.444000pt;}
.x43{left:396.878667pt;}
.x13{left:451.317333pt;}
.x7{left:455.550667pt;}
}




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