
    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_94663c587b741d8b36540495.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_ff8201acd5a000ca44048f64.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_02745492c4dadcca8555c1c4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.734863;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_a01ed49bd128f760d3d03418.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.734863;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_dd9088d76cdf1be349736aba.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_d16830ad66609c4f8c3a92da.woff')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.fff{font-family:fff;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.734863;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_8521c2ab6abf7c0e8e73a9c0.woff')format("woff");}.ff11{font-family:ff11;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000113px;}
.ls14{letter-spacing:0.000699px;}
.lsa{letter-spacing:0.000800px;}
.ls9{letter-spacing:0.002780px;}
.lsb{letter-spacing:0.003419px;}
.ls12{letter-spacing:0.004800px;}
.ls8{letter-spacing:0.723483px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.367300px;}
.ls10{letter-spacing:11.529992px;}
.ls5{letter-spacing:11.954850px;}
.ls11{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.lsd{letter-spacing:13.602072px;}
.ls13{letter-spacing:13.650501px;}
.lsf{letter-spacing:15.709224px;}
.ls7{letter-spacing:18.553200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.ws67{word-spacing:-14.943900px;}
.ws77{word-spacing:-13.449600px;}
.ws20{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws6c{word-spacing:-3.168107px;}
.ws34{word-spacing:-3.048556px;}
.ws27{word-spacing:-2.749678px;}
.wsa1{word-spacing:-2.689902px;}
.ws74{word-spacing:-2.630126px;}
.ws58{word-spacing:-2.450800px;}
.ws80{word-spacing:-2.331248px;}
.wsb6{word-spacing:-2.313331px;}
.ws73{word-spacing:-2.271473px;}
.wsb7{word-spacing:-2.259533px;}
.ws68{word-spacing:-2.211697px;}
.ws29{word-spacing:-2.151922px;}
.ws2{word-spacing:-2.094389px;}
.ws60{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws28{word-spacing:-2.032370px;}
.ws5c{word-spacing:-1.972595px;}
.wsc0{word-spacing:-1.936742px;}
.wsc1{word-spacing:-1.920018px;}
.ws48{word-spacing:-1.912819px;}
.wsa9{word-spacing:-1.853044px;}
.wsc2{word-spacing:-1.829146px;}
.ws96{word-spacing:-1.793268px;}
.ws45{word-spacing:-1.733492px;}
.ws8a{word-spacing:-1.673717px;}
.wsb4{word-spacing:-1.613952px;}
.ws66{word-spacing:-1.613941px;}
.ws5b{word-spacing:-1.494390px;}
.ws90{word-spacing:-1.434614px;}
.ws91{word-spacing:-1.374839px;}
.ws32{word-spacing:-1.315063px;}
.wsb5{word-spacing:-1.291162px;}
.ws15{word-spacing:-1.255288px;}
.wsa4{word-spacing:-1.195512px;}
.ws33{word-spacing:-1.135736px;}
.ws97{word-spacing:-1.112170px;}
.ws49{word-spacing:-1.075961px;}
.ws5d{word-spacing:-0.896634px;}
.ws5e{word-spacing:-0.836858px;}
.ws78{word-spacing:-0.777083px;}
.ws46{word-spacing:-0.717307px;}
.ws8b{word-spacing:-0.657532px;}
.wscc{word-spacing:-0.645581px;}
.ws53{word-spacing:-0.597756px;}
.wsca{word-spacing:-0.591782px;}
.wsd0{word-spacing:-0.537984px;}
.ws65{word-spacing:-0.478205px;}
.ws64{word-spacing:-0.418429px;}
.ws9e{word-spacing:-0.376589px;}
.ws23{word-spacing:-0.358654px;}
.ws9f{word-spacing:-0.322790px;}
.ws1e{word-spacing:-0.298878px;}
.wsae{word-spacing:-0.268992px;}
.wsc{word-spacing:-0.239102px;}
.wsad{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.ws52{word-spacing:-0.161395px;}
.ws1c{word-spacing:-0.119551px;}
.wsb2{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.ws8c{word-spacing:-0.056558px;}
.wsac{word-spacing:-0.053798px;}
.wscf{word-spacing:-0.028320px;}
.wsce{word-spacing:-0.024922px;}
.wsbf{word-spacing:-0.023443px;}
.ws1f{word-spacing:-0.003238px;}
.ws6{word-spacing:-0.001924px;}
.wsc6{word-spacing:-0.000086px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.059776px;}
.ws76{word-spacing:0.107597px;}
.ws16{word-spacing:0.119551px;}
.ws8{word-spacing:0.143462px;}
.ws8d{word-spacing:0.161395px;}
.ws11{word-spacing:0.179327px;}
.ws62{word-spacing:0.215194px;}
.ws25{word-spacing:0.239102px;}
.ws99{word-spacing:0.268992px;}
.ws1b{word-spacing:0.298878px;}
.wsaf{word-spacing:0.322790px;}
.ws2b{word-spacing:0.358654px;}
.wsd3{word-spacing:0.376589px;}
.ws3c{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.ws41{word-spacing:0.478205px;}
.wsa8{word-spacing:0.537980px;}
.ws7c{word-spacing:0.597756px;}
.ws51{word-spacing:0.657532px;}
.ws85{word-spacing:0.717307px;}
.wsab{word-spacing:0.777083px;}
.wsc3{word-spacing:0.806976px;}
.ws4d{word-spacing:0.836858px;}
.wsb9{word-spacing:0.860774px;}
.ws84{word-spacing:0.896634px;}
.wsa3{word-spacing:0.956410px;}
.ws94{word-spacing:0.968371px;}
.ws1d{word-spacing:1.016185px;}
.ws6a{word-spacing:1.075961px;}
.wsc7{word-spacing:1.129766px;}
.ws7d{word-spacing:1.135736px;}
.ws88{word-spacing:1.195512px;}
.ws59{word-spacing:1.255288px;}
.ws4a{word-spacing:1.315063px;}
.wsd5{word-spacing:1.344960px;}
.ws12{word-spacing:1.374839px;}
.ws38{word-spacing:1.434614px;}
.ws93{word-spacing:1.452557px;}
.ws2e{word-spacing:1.494390px;}
.ws61{word-spacing:1.554166px;}
.wsd1{word-spacing:1.560154px;}
.ws21{word-spacing:1.673717px;}
.wsbc{word-spacing:1.721549px;}
.ws4e{word-spacing:1.733492px;}
.ws3b{word-spacing:1.793268px;}
.ws22{word-spacing:1.853044px;}
.ws86{word-spacing:1.912819px;}
.ws37{word-spacing:1.972595px;}
.ws10{word-spacing:2.032370px;}
.ws30{word-spacing:2.092146px;}
.ws3f{word-spacing:2.151922px;}
.ws36{word-spacing:2.211697px;}
.wsbe{word-spacing:2.259533px;}
.wsa2{word-spacing:2.271473px;}
.wsa5{word-spacing:2.331248px;}
.ws4c{word-spacing:2.391024px;}
.ws50{word-spacing:2.450800px;}
.ws2c{word-spacing:2.510575px;}
.wsd6{word-spacing:2.528525px;}
.ws2f{word-spacing:2.570351px;}
.wsb3{word-spacing:2.612903px;}
.ws69{word-spacing:2.630126px;}
.ws7e{word-spacing:2.689902px;}
.ws42{word-spacing:2.749678px;}
.ws72{word-spacing:2.809453px;}
.ws7b{word-spacing:2.869229px;}
.ws9{word-spacing:2.869236px;}
.ws2a{word-spacing:2.929004px;}
.ws7a{word-spacing:2.988780px;}
.ws8e{word-spacing:3.048556px;}
.ws9c{word-spacing:3.108331px;}
.ws70{word-spacing:3.168107px;}
.wsd9{word-spacing:3.217882px;}
.wsd7{word-spacing:3.219149px;}
.wsc5{word-spacing:3.219955px;}
.wsc9{word-spacing:3.220426px;}
.wscd{word-spacing:3.221270px;}
.wscb{word-spacing:3.221923px;}
.wsc8{word-spacing:3.222682px;}
.wsbb{word-spacing:3.223997px;}
.wsba{word-spacing:3.227904px;}
.ws95{word-spacing:3.281702px;}
.wsa0{word-spacing:3.287658px;}
.wsd4{word-spacing:3.335501px;}
.ws6d{word-spacing:3.389299px;}
.wsb8{word-spacing:3.442925px;}
.ws54{word-spacing:3.466985px;}
.wsda{word-spacing:3.496896px;}
.ws17{word-spacing:3.515220px;}
.ws98{word-spacing:3.526760px;}
.ws75{word-spacing:3.586536px;}
.wsa6{word-spacing:3.646312px;}
.wsa{word-spacing:3.708727px;}
.ws3d{word-spacing:3.765863px;}
.ws26{word-spacing:3.945190px;}
.ws92{word-spacing:3.981082px;}
.ws13{word-spacing:4.004965px;}
.ws81{word-spacing:4.064741px;}
.ws4b{word-spacing:4.184292px;}
.ws18{word-spacing:4.303872px;}
.ws3e{word-spacing:4.363619px;}
.ws6e{word-spacing:4.483170px;}
.wsc4{word-spacing:4.519066px;}
.ws35{word-spacing:4.542946px;}
.ws87{word-spacing:4.602721px;}
.ws83{word-spacing:4.662497px;}
.ws55{word-spacing:4.680461px;}
.ws63{word-spacing:4.722272px;}
.ws5f{word-spacing:4.841824px;}
.ws79{word-spacing:4.901599px;}
.ws57{word-spacing:5.021150px;}
.wsd2{word-spacing:5.110848px;}
.ws3a{word-spacing:5.140702px;}
.ws71{word-spacing:5.260253px;}
.ws2d{word-spacing:5.320028px;}
.ws7f{word-spacing:5.379804px;}
.ws44{word-spacing:5.439580px;}
.ws56{word-spacing:5.499355px;}
.ws24{word-spacing:5.559131px;}
.ws39{word-spacing:5.618906px;}
.ws43{word-spacing:5.678682px;}
.ws9d{word-spacing:5.810227px;}
.wsa7{word-spacing:5.858009px;}
.ws1a{word-spacing:5.977560px;}
.ws31{word-spacing:6.216662px;}
.ws14{word-spacing:6.336214px;}
.ws8f{word-spacing:6.515540px;}
.ws5a{word-spacing:6.575316px;}
.ws6b{word-spacing:6.694867px;}
.ws40{word-spacing:6.874194px;}
.ws19{word-spacing:6.933970px;}
.ws89{word-spacing:7.053521px;}
.wsf{word-spacing:7.173072px;}
.ws82{word-spacing:7.292623px;}
.ws6f{word-spacing:7.370381px;}
.wsaa{word-spacing:7.471950px;}
.ws4f{word-spacing:7.531726px;}
.ws47{word-spacing:8.249033px;}
.wsbd{word-spacing:8.943746px;}
.wsb1{word-spacing:11.728051px;}
.ws1{word-spacing:22.179541px;}
.wsd8{word-spacing:24.370675px;}
.wsb0{word-spacing:26.878822px;}
.ws9b{word-spacing:129.512375px;}
.ws9a{word-spacing:129.533725px;}
._1e{margin-left:-7.651277px;}
._9{margin-left:-6.575316px;}
._17{margin-left:-5.439580px;}
._13{margin-left:-4.435345px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._5{width:3.000277px;}
._0{width:10.879128px;}
._1f{width:12.662829px;}
._e{width:13.820114px;}
._68{width:14.915387px;}
._12{width:15.948134px;}
._11{width:17.645753px;}
._7{width:18.781489px;}
._a{width:19.965050px;}
._2{width:21.761856px;}
._b{width:22.894055px;}
._8{width:23.910240px;}
._16{width:25.476356px;}
._f{width:26.910971px;}
._1a{width:28.692288px;}
._14{width:29.780200px;}
._15{width:31.812570px;}
._4{width:33.355008px;}
._18{width:34.681799px;}
._1b{width:36.273176px;}
._10{width:37.778179px;}
._1d{width:39.189049px;}
._19{width:41.567944px;}
._6{width:54.408803px;}
._69{width:61.868160px;}
._6a{width:65.604112px;}
._67{width:88.767360px;}
._59{width:141.070416px;}
._26{width:144.537401px;}
._2b{width:162.051652px;}
._2a{width:164.382900px;}
._21{width:167.730334px;}
._63{width:173.289464px;}
._65{width:185.543462px;}
._5a{width:195.167334px;}
._64{width:227.386382px;}
._66{width:239.425180px;}
._2f{width:308.501872px;}
._45{width:333.259513px;}
._51{width:337.373486px;}
._4f{width:340.780696px;}
._23{width:353.393347px;}
._2e{width:355.485493px;}
._5f{width:360.088214px;}
._35{width:364.750711px;}
._30{width:377.602465px;}
._46{width:387.493592px;}
._52{width:391.410629px;}
._50{width:394.877614px;}
._34{width:396.252452px;}
._60{width:414.125357px;}
._36{width:418.787854px;}
._61{width:421.657082px;}
._31{width:432.069988px;}
._25{width:443.654503px;}
._32{width:447.719244px;}
._44{width:454.473887px;}
._39{width:458.299525px;}
._5b{width:466.010578px;}
._27{width:468.401602px;}
._37{width:472.645669px;}
._62{width:475.694225px;}
._2c{width:477.069064px;}
._49{width:478.324351px;}
._3e{width:480.536048px;}
._40{width:487.888447px;}
._3b{width:498.648055px;}
._33{width:502.126991px;}
._5d{width:507.674171px;}
._3a{width:512.276892px;}
._54{width:517.716472px;}
._5c{width:519.342364px;}
._4b{width:524.172236px;}
._38{width:526.742587px;}
._2d{width:531.106206px;}
._4a{width:532.361494px;}
._3f{width:535.003571px;}
._4d{width:538.040176px;}
._41{width:541.865814px;}
._3d{width:543.360204px;}
._3c{width:552.685198px;}
._56{width:559.144639px;}
._5e{width:561.711313px;}
._47{width:563.863235px;}
._55{width:572.124218px;}
._4c{width:578.209379px;}
._42{width:589.303726px;}
._28{width:590.343826px;}
._4e{width:592.507698px;}
._58{width:594.050184px;}
._43{width:597.277795px;}
._57{width:613.294250px;}
._48{width:617.900377px;}
._53{width:622.383547px;}
._24{width:687.240073px;}
._22{width:754.786501px;}
._29{width:1014.511483px;}
._c{width:1719.800700px;}
._1c{width:2493.680700px;}
._d{width:2517.590700px;}
._20{width:3971.660700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fse{font-size:53.729910px;}
.fs8{font-size:53.798400px;}
.fsa{font-size:56.557800px;}
.fsf{font-size:59.385690px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.213580px;}
.fsd{font-size:62.286600px;}
.fs9{font-size:65.041470px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yb5{bottom:3.764943px;}
.yd4{bottom:3.880513px;}
.y1ff{bottom:4.728133px;}
.y106{bottom:4.738518px;}
.yc2{bottom:6.415960px;}
.y203{bottom:6.669015px;}
.y14d{bottom:7.727290px;}
.y112{bottom:7.972496px;}
.y1af{bottom:9.324682px;}
.y1fc{bottom:9.398888px;}
.y40{bottom:45.921000px;}
.y12e{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y189{bottom:101.388000px;}
.y282{bottom:101.970000px;}
.y16e{bottom:102.124500px;}
.ye3{bottom:107.668500px;}
.y251{bottom:111.573000px;}
.y71{bottom:113.299500px;}
.y3f{bottom:113.601000px;}
.y90{bottom:116.839500px;}
.y14{bottom:118.147500px;}
.y104{bottom:118.365000px;}
.y191{bottom:118.525500px;}
.yb3{bottom:118.797000px;}
.y12d{bottom:120.610500px;}
.y281{bottom:121.120500px;}
.y188{bottom:122.280000px;}
.y16d{bottom:123.015000px;}
.ye2{bottom:128.560500px;}
.y114{bottom:129.391500px;}
.y250{bottom:130.723500px;}
.y70{bottom:134.191500px;}
.y3e{bottom:134.491500px;}
.y13{bottom:136.035000px;}
.y21c{bottom:137.298000px;}
.y8f{bottom:137.731500px;}
.y190{bottom:137.758500px;}
.y1ad{bottom:138.688500px;}
.y103{bottom:139.255500px;}
.yb2{bottom:139.689000px;}
.y280{bottom:140.271000px;}
.y14b{bottom:141.502500px;}
.y1ea{bottom:141.646500px;}
.y187{bottom:143.170500px;}
.y16c{bottom:143.907000px;}
.ybb{bottom:144.547500px;}
.y1fd{bottom:148.005000px;}
.y113{bottom:148.624500px;}
.ye1{bottom:149.452500px;}
.y24f{bottom:149.874000px;}
.y12{bottom:153.922500px;}
.y6f{bottom:155.083500px;}
.y3d{bottom:155.383500px;}
.y12c{bottom:156.079500px;}
.y18f{bottom:156.991500px;}
.y21b{bottom:158.190000px;}
.y8e{bottom:158.623500px;}
.y18c{bottom:159.565500px;}
.y1ac{bottom:159.579000px;}
.y102{bottom:160.147500px;}
.yb1{bottom:160.581000px;}
.y14a{bottom:162.394500px;}
.y186{bottom:164.062500px;}
.y16b{bottom:164.799000px;}
.yba{bottom:165.439500px;}
.y1cf{bottom:166.719000px;}
.y1e9{bottom:166.780500px;}
.y206{bottom:166.878000px;}
.y24e{bottom:169.024500px;}
.ye0{bottom:170.343000px;}
.y11{bottom:171.811500px;}
.y1b3{bottom:171.978000px;}
.y1fb{bottom:173.422200px;}
.y111{bottom:174.042000px;}
.y12b{bottom:175.312500px;}
.y6e{bottom:175.974000px;}
.y3c{bottom:176.275500px;}
.y21a{bottom:179.082000px;}
.y8d{bottom:179.514000px;}
.yd2{bottom:179.998500px;}
.y1ab{bottom:180.471000px;}
.y101{bottom:181.039500px;}
.yb0{bottom:181.471500px;}
.y18d{bottom:182.409000px;}
.y27f{bottom:182.563500px;}
.y149{bottom:183.285000px;}
.y18b{bottom:183.997500px;}
.y185{bottom:184.954500px;}
.y16a{bottom:185.689500px;}
.yb9{bottom:186.330000px;}
.y1ce{bottom:187.611000px;}
.y24d{bottom:188.175000px;}
.y10{bottom:189.699000px;}
.y1b2{bottom:191.211000px;}
.ydf{bottom:191.235000px;}
.y1e8{bottom:191.916000px;}
.y6d{bottom:196.866000px;}
.y3b{bottom:197.166000px;}
.y219{bottom:199.972500px;}
.y8c{bottom:200.406000px;}
.y205{bottom:200.853000px;}
.yd1{bottom:200.890500px;}
.y1aa{bottom:201.363000px;}
.y27e{bottom:201.714000px;}
.y100{bottom:201.930000px;}
.yaf{bottom:202.363500px;}
.y148{bottom:204.177000px;}
.y184{bottom:205.845000px;}
.y169{bottom:206.581500px;}
.yb8{bottom:207.222000px;}
.y24c{bottom:207.325500px;}
.yf{bottom:207.586500px;}
.y1cd{bottom:208.503000px;}
.y1b1{bottom:210.442500px;}
.yde{bottom:212.127000px;}
.y1e7{bottom:217.051500px;}
.y6c{bottom:217.758000px;}
.y3a{bottom:218.058000px;}
.y204{bottom:220.086000px;}
.y218{bottom:220.864500px;}
.y223{bottom:221.298000px;}
.yd0{bottom:221.782500px;}
.y1a9{bottom:222.253500px;}
.yff{bottom:222.822000px;}
.yae{bottom:223.255500px;}
.y147{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y8b{bottom:225.781500px;}
.y24b{bottom:226.476000px;}
.y183{bottom:226.737000px;}
.y168{bottom:227.473500px;}
.y1cc{bottom:229.393500px;}
.y1b0{bottom:229.675500px;}
.yb7{bottom:232.596000px;}
.ydd{bottom:237.501000px;}
.y6b{bottom:238.648500px;}
.y39{bottom:238.950000px;}
.y27d{bottom:240.015000px;}
.y217{bottom:241.756500px;}
.y1e6{bottom:242.187000px;}
.y222{bottom:242.190000px;}
.ycf{bottom:242.673000px;}
.y1a8{bottom:243.145500px;}
.yfe{bottom:243.714000px;}
.yad{bottom:244.147500px;}
.y202{bottom:245.505000px;}
.y24a{bottom:245.626500px;}
.y146{bottom:245.961000px;}
.y182{bottom:247.629000px;}
.y167{bottom:248.365500px;}
.y1cb{bottom:250.285500px;}
.yd{bottom:252.330000px;}
.y1ae{bottom:255.094650px;}
.y27c{bottom:259.165500px;}
.y6a{bottom:259.540500px;}
.y38{bottom:259.840500px;}
.y216{bottom:262.647000px;}
.y221{bottom:263.080500px;}
.yce{bottom:263.565000px;}
.y1a7{bottom:264.037500px;}
.y8a{bottom:264.606000px;}
.yb6{bottom:264.742500px;}
.y249{bottom:264.777000px;}
.yac{bottom:265.038000px;}
.y145{bottom:266.851500px;}
.y1e5{bottom:267.321000px;}
.y165{bottom:269.256000px;}
.ydc{bottom:269.647500px;}
.yc{bottom:270.217500px;}
.y1ca{bottom:271.177500px;}
.y181{bottom:273.003000px;}
.y166{bottom:274.681500px;}
.y27b{bottom:278.316000px;}
.y18e{bottom:279.048007px;}
.y69{bottom:280.432500px;}
.y37{bottom:280.732500px;}
.y215{bottom:283.539000px;}
.y248{bottom:283.927500px;}
.y220{bottom:283.972500px;}
.ycd{bottom:284.457000px;}
.y1a6{bottom:284.928000px;}
.y89{bottom:285.496500px;}
.y144{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y164{bottom:290.148000px;}
.yb4{bottom:290.160000px;}
.yab{bottom:290.413500px;}
.y1c9{bottom:292.068000px;}
.y1e4{bottom:292.456500px;}
.y27a{bottom:297.466500px;}
.y68{bottom:301.323000px;}
.y36{bottom:301.624500px;}
.y247{bottom:303.078000px;}
.y214{bottom:304.431000px;}
.y21f{bottom:304.864500px;}
.ycc{bottom:305.347500px;}
.y1a5{bottom:305.820000px;}
.ya{bottom:305.994000px;}
.y88{bottom:306.388500px;}
.y180{bottom:308.346000px;}
.y143{bottom:308.635500px;}
.y163{bottom:311.040000px;}
.y1c8{bottom:312.960000px;}
.y279{bottom:316.617000px;}
.y1e3{bottom:317.592000px;}
.y67{bottom:322.215000px;}
.y246{bottom:322.228500px;}
.y9{bottom:323.881500px;}
.y213{bottom:325.323000px;}
.yaa{bottom:325.755000px;}
.ycb{bottom:326.239500px;}
.y1a4{bottom:326.712000px;}
.y35{bottom:326.998500px;}
.y87{bottom:327.280500px;}
.y17f{bottom:329.238000px;}
.y142{bottom:329.526000px;}
.y162{bottom:331.930500px;}
.y1c7{bottom:333.852000px;}
.y278{bottom:335.767500px;}
.y245{bottom:341.379000px;}
.y8{bottom:341.769000px;}
.y1e2{bottom:342.727500px;}
.y212{bottom:346.213500px;}
.ya9{bottom:346.647000px;}
.yca{bottom:347.131500px;}
.y66{bottom:347.590500px;}
.y86{bottom:348.171000px;}
.y17e{bottom:350.128500px;}
.y141{bottom:350.418000px;}
.y1a3{bottom:352.086000px;}
.y161{bottom:352.822500px;}
.y1c6{bottom:354.742500px;}
.y277{bottom:354.918000px;}
.y7{bottom:359.658000px;}
.y244{bottom:360.529500px;}
.y211{bottom:367.105500px;}
.ya8{bottom:367.539000px;}
.y1e1{bottom:367.861500px;}
.yc9{bottom:368.022000px;}
.y85{bottom:369.063000px;}
.y17d{bottom:371.020500px;}
.y140{bottom:371.310000px;}
.y160{bottom:373.714500px;}
.y276{bottom:374.070000px;}
.y1c5{bottom:375.634500px;}
.y6{bottom:377.545500px;}
.y243{bottom:379.680000px;}
.y65{bottom:382.932000px;}
.y1a2{bottom:387.429000px;}
.y210{bottom:387.997500px;}
.ya7{bottom:388.429500px;}
.yc8{bottom:388.914000px;}
.y84{bottom:389.955000px;}
.y17c{bottom:391.912500px;}
.y13f{bottom:392.200500px;}
.y1e0{bottom:392.997000px;}
.y275{bottom:393.220500px;}
.y15f{bottom:394.605000px;}
.y1c4{bottom:396.526500px;}
.y242{bottom:398.830500px;}
.y5{bottom:401.410500px;}
.y64{bottom:403.824000px;}
.y34{bottom:406.210500px;}
.y1a1{bottom:408.321000px;}
.y20f{bottom:408.888000px;}
.ya6{bottom:409.321500px;}
.yc7{bottom:409.806000px;}
.y83{bottom:410.845500px;}
.y274{bottom:412.371000px;}
.y17b{bottom:412.803000px;}
.y13e{bottom:413.092500px;}
.y15e{bottom:415.497000px;}
.y1c3{bottom:417.417000px;}
.y241{bottom:417.982500px;}
.y1df{bottom:418.132500px;}
.y4{bottom:419.299500px;}
.y63{bottom:424.716000px;}
.y33{bottom:427.102500px;}
.y1a0{bottom:429.211500px;}
.y20e{bottom:429.780000px;}
.ya5{bottom:430.213500px;}
.yc6{bottom:430.696500px;}
.y273{bottom:431.521500px;}
.y82{bottom:431.737500px;}
.y17a{bottom:433.695000px;}
.y13d{bottom:433.984500px;}
.y15d{bottom:436.389000px;}
.y240{bottom:437.133000px;}
.y3{bottom:437.187000px;}
.y1f7{bottom:437.365500px;}
.y1c2{bottom:438.309000px;}
.y1de{bottom:443.268000px;}
.y62{bottom:445.606500px;}
.y19f{bottom:450.103500px;}
.y20d{bottom:450.672000px;}
.ya4{bottom:451.104000px;}
.yc5{bottom:451.588500px;}
.y81{bottom:452.629500px;}
.y179{bottom:454.587000px;}
.y13c{bottom:454.875000px;}
.y2{bottom:455.074500px;}
.y21e{bottom:455.587500px;}
.y23f{bottom:456.283500px;}
.y15c{bottom:457.279500px;}
.y1c1{bottom:459.201000px;}
.y1f6{bottom:462.499500px;}
.y32{bottom:465.927000px;}
.y61{bottom:466.498500px;}
.y1dd{bottom:468.402000px;}
.y272{bottom:469.822500px;}
.y19e{bottom:470.995500px;}
.y20c{bottom:471.562500px;}
.ya3{bottom:471.996000px;}
.y80{bottom:473.520000px;}
.y23e{bottom:475.434000px;}
.y178{bottom:475.477500px;}
.y13b{bottom:475.767000px;}
.y1{bottom:478.941000px;}
.y110{bottom:479.112000px;}
.y1c0{bottom:480.093000px;}
.y15b{bottom:482.655000px;}
.y31{bottom:486.817500px;}
.yc4{bottom:487.216500px;}
.y60{bottom:487.390500px;}
.y1f5{bottom:487.635000px;}
.y271{bottom:488.973000px;}
.y19d{bottom:491.886000px;}
.y20b{bottom:492.454500px;}
.ya2{bottom:492.888000px;}
.y1dc{bottom:493.537500px;}
.y7f{bottom:494.412000px;}
.y23d{bottom:494.584500px;}
.y177{bottom:496.369500px;}
.y13a{bottom:496.659000px;}
.y10f{bottom:500.004000px;}
.y1bf{bottom:505.467000px;}
.yc3{bottom:506.449500px;}
.y30{bottom:507.709500px;}
.y270{bottom:508.123500px;}
.y5f{bottom:508.281000px;}
.y1f4{bottom:512.770500px;}
.y19c{bottom:512.778000px;}
.y20a{bottom:513.346500px;}
.y23c{bottom:513.735000px;}
.y7e{bottom:515.304000px;}
.y176{bottom:517.261500px;}
.y139{bottom:517.551000px;}
.y15a{bottom:517.998000px;}
.ya1{bottom:518.262000px;}
.y1db{bottom:518.673000px;}
.y10e{bottom:520.896000px;}
.y26f{bottom:527.274000px;}
.y2f{bottom:528.601500px;}
.y5e{bottom:529.173000px;}
.y12a{bottom:531.712500px;}
.yc1{bottom:531.867000px;}
.y23b{bottom:532.885500px;}
.y19b{bottom:533.670000px;}
.y209{bottom:534.237000px;}
.y7d{bottom:536.194500px;}
.y1f3{bottom:537.906000px;}
.y175{bottom:538.152000px;}
.y138{bottom:538.441500px;}
.y159{bottom:538.888500px;}
.y1be{bottom:540.810000px;}
.y10d{bottom:541.786500px;}
.y1da{bottom:543.808500px;}
.y26e{bottom:546.424500px;}
.y2e{bottom:549.492000px;}
.y5d{bottom:550.065000px;}
.y23a{bottom:552.036000px;}
.y129{bottom:552.603000px;}
.ya0{bottom:553.605000px;}
.y19a{bottom:554.560500px;}
.y208{bottom:555.129000px;}
.y7c{bottom:557.086500px;}
.y174{bottom:559.044000px;}
.y137{bottom:559.333500px;}
.y158{bottom:559.780500px;}
.y1bd{bottom:561.700500px;}
.y10c{bottom:562.678500px;}
.y1f2{bottom:563.040000px;}
.y26d{bottom:565.575000px;}
.y1d9{bottom:568.942500px;}
.y2d{bottom:570.384000px;}
.y5c{bottom:570.955500px;}
.y239{bottom:571.186500px;}
.y128{bottom:573.495000px;}
.y9f{bottom:574.497000px;}
.y199{bottom:575.452500px;}
.y207{bottom:576.021000px;}
.y7b{bottom:577.978500px;}
.y173{bottom:579.936000px;}
.y136{bottom:580.225500px;}
.y157{bottom:580.672500px;}
.y1bc{bottom:582.592500px;}
.y10b{bottom:583.570500px;}
.y26c{bottom:584.725500px;}
.y1f1{bottom:588.175500px;}
.y2c{bottom:591.276000px;}
.y5b{bottom:591.847500px;}
.ydb{bottom:592.023000px;}
.y1d8{bottom:594.078000px;}
.y127{bottom:594.387000px;}
.y238{bottom:594.820500px;}
.y9e{bottom:595.387500px;}
.y198{bottom:596.344500px;}
.y1fa{bottom:596.913000px;}
.yfd{bottom:598.870500px;}
.y172{bottom:600.828000px;}
.y135{bottom:601.116000px;}
.y156{bottom:601.563000px;}
.y7a{bottom:603.352500px;}
.y1bb{bottom:603.484500px;}
.y26b{bottom:603.876000px;}
.y2b{bottom:612.166500px;}
.y5a{bottom:612.739500px;}
.yda{bottom:612.915000px;}
.y1f0{bottom:613.311000px;}
.y126{bottom:615.277500px;}
.y9d{bottom:616.279500px;}
.y197{bottom:617.235000px;}
.y1f9{bottom:617.803500px;}
.y10a{bottom:619.198500px;}
.y1d7{bottom:619.213500px;}
.yfc{bottom:619.761000px;}
.y171{bottom:621.718500px;}
.y134{bottom:622.008000px;}
.y155{bottom:622.455000px;}
.y26a{bottom:623.026500px;}
.y1ba{bottom:624.375000px;}
.y2a{bottom:633.058500px;}
.y59{bottom:633.631500px;}
.y237{bottom:633.645000px;}
.yd9{bottom:633.805500px;}
.y125{bottom:636.169500px;}
.y9c{bottom:637.171500px;}
.y196{bottom:638.127000px;}
.y108{bottom:638.431500px;}
.y1ef{bottom:638.446500px;}
.y79{bottom:638.695500px;}
.yfa{bottom:640.653000px;}
.y269{bottom:642.177000px;}
.y133{bottom:642.900000px;}
.y109{bottom:643.312500px;}
.y154{bottom:643.347000px;}
.y1d6{bottom:644.349000px;}
.y1b9{bottom:645.267000px;}
.yfb{bottom:646.077000px;}
.y170{bottom:647.094000px;}
.y236{bottom:653.143500px;}
.y29{bottom:653.950500px;}
.y58{bottom:654.522000px;}
.yd8{bottom:654.697500px;}
.y124{bottom:657.061500px;}
.y107{bottom:657.663000px;}
.y9b{bottom:658.062000px;}
.y195{bottom:659.019000px;}
.y78{bottom:659.587500px;}
.y268{bottom:661.327500px;}
.yf8{bottom:661.545000px;}
.y1ee{bottom:663.580500px;}
.y132{bottom:663.790500px;}
.y153{bottom:664.237500px;}
.y1b8{bottom:666.159000px;}
.yf9{bottom:666.969000px;}
.y1d5{bottom:669.483000px;}
.y235{bottom:672.642000px;}
.y28{bottom:674.842500px;}
.y57{bottom:675.414000px;}
.y123{bottom:677.953500px;}
.y9a{bottom:678.954000px;}
.y194{bottom:679.911000px;}
.yd7{bottom:680.073000px;}
.y77{bottom:680.478000px;}
.yf7{bottom:682.435500px;}
.y105{bottom:683.082000px;}
.y131{bottom:684.682500px;}
.y152{bottom:685.129500px;}
.y1ed{bottom:688.716000px;}
.y1d4{bottom:694.618500px;}
.y27{bottom:695.733000px;}
.y56{bottom:696.306000px;}
.y122{bottom:698.844000px;}
.y267{bottom:699.628500px;}
.y99{bottom:699.846000px;}
.y234{bottom:701.107500px;}
.y76{bottom:701.370000px;}
.y1b7{bottom:701.787000px;}
.yf6{bottom:703.327500px;}
.y193{bottom:705.285000px;}
.y151{bottom:706.021500px;}
.y1ec{bottom:713.851500px;}
.yd6{bottom:715.701000px;}
.y26{bottom:716.625000px;}
.y55{bottom:717.196500px;}
.y130{bottom:717.499500px;}
.y266{bottom:718.779000px;}
.y121{bottom:719.736000px;}
.y1d3{bottom:719.754000px;}
.y201{bottom:720.420000px;}
.y233{bottom:720.606000px;}
.y98{bottom:720.736500px;}
.y1b5{bottom:721.018500px;}
.y75{bottom:722.262000px;}
.yf5{bottom:724.219500px;}
.y1b6{bottom:725.901000px;}
.yd5{bottom:734.932500px;}
.y12f{bottom:736.732500px;}
.y25{bottom:737.517000px;}
.y265{bottom:737.929500px;}
.y1eb{bottom:738.987000px;}
.y200{bottom:739.653000px;}
.y232{bottom:740.104500px;}
.y1b4{bottom:740.251500px;}
.y120{bottom:740.628000px;}
.y97{bottom:741.628500px;}
.y150{bottom:741.649500px;}
.y54{bottom:742.572000px;}
.y74{bottom:743.152500px;}
.yf4{bottom:745.110000px;}
.y1d2{bottom:752.419500px;}
.y264{bottom:757.081500px;}
.y24{bottom:758.407500px;}
.y231{bottom:759.603000px;}
.yd3{bottom:760.351500px;}
.y14f{bottom:760.882500px;}
.y11f{bottom:761.518500px;}
.y96{bottom:762.520500px;}
.y73{bottom:764.044500px;}
.y1fe{bottom:765.070500px;}
.yf3{bottom:766.002000px;}
.y53{bottom:767.004000px;}
.y1d1{bottom:771.652500px;}
.y263{bottom:776.232000px;}
.y230{bottom:779.101500px;}
.y23{bottom:779.299500px;}
.y14e{bottom:780.114000px;}
.y11e{bottom:782.410500px;}
.y95{bottom:783.411000px;}
.y72{bottom:784.936500px;}
.yf2{bottom:786.894000px;}
.y262{bottom:795.382500px;}
.y22{bottom:800.191500px;}
.y11d{bottom:803.302500px;}
.y94{bottom:804.303000px;}
.y14c{bottom:805.533000px;}
.y52{bottom:805.827000px;}
.y22f{bottom:807.567000px;}
.yf1{bottom:807.784500px;}
.y192{bottom:808.726500px;}
.y261{bottom:814.533000px;}
.y11c{bottom:824.193000px;}
.y93{bottom:825.195000px;}
.y51{bottom:826.719000px;}
.y22e{bottom:827.065500px;}
.yf0{bottom:828.676500px;}
.y1d0{bottom:830.275500px;}
.y260{bottom:833.683500px;}
.y21{bottom:840.211500px;}
.y11b{bottom:845.085000px;}
.y92{bottom:846.087000px;}
.y22d{bottom:846.564000px;}
.y50{bottom:847.611000px;}
.yef{bottom:849.568500px;}
.y25f{bottom:852.834000px;}
.y20{bottom:856.350000px;}
.y11a{bottom:865.977000px;}
.y22c{bottom:866.064000px;}
.y4f{bottom:868.503000px;}
.yee{bottom:870.460500px;}
.y91{bottom:871.461000px;}
.y25e{bottom:871.984500px;}
.y1f{bottom:872.490000px;}
.y1e{bottom:876.829500px;}
.y119{bottom:886.867500px;}
.y4e{bottom:889.393500px;}
.y25d{bottom:891.135000px;}
.yed{bottom:891.351000px;}
.y1d{bottom:892.969500px;}
.y22b{bottom:894.528000px;}
.y18a{bottom:895.834500px;}
.y1c{bottom:904.768500px;}
.y4d{bottom:910.285500px;}
.yec{bottom:912.243000px;}
.y22a{bottom:914.028000px;}
.y21d{bottom:917.667000px;}
.y1b{bottom:925.248000px;}
.y25c{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.yeb{bottom:933.135000px;}
.y16f{bottom:937.617000px;}
.y229{bottom:942.492000px;}
.y118{bottom:947.584500px;}
.y25b{bottom:948.586500px;}
.y4b{bottom:952.068000px;}
.yea{bottom:954.025500px;}
.y228{bottom:961.990500px;}
.y25a{bottom:967.737000px;}
.y117{bottom:968.476500px;}
.y1a{bottom:969.925500px;}
.y4a{bottom:972.960000px;}
.ye9{bottom:974.917500px;}
.y227{bottom:981.490500px;}
.y259{bottom:986.887500px;}
.y116{bottom:989.368500px;}
.y49{bottom:993.852000px;}
.ye8{bottom:995.809500px;}
.y226{bottom:1000.989000px;}
.y258{bottom:1006.038000px;}
.y19{bottom:1008.748500px;}
.y115{bottom:1010.260500px;}
.y48{bottom:1014.742500px;}
.ye7{bottom:1016.700000px;}
.y225{bottom:1020.487500px;}
.y257{bottom:1025.188500px;}
.yc0{bottom:1031.151000px;}
.y47{bottom:1035.634500px;}
.ye6{bottom:1037.592000px;}
.y224{bottom:1039.986000px;}
.y18{bottom:1040.086500px;}
.y1f8{bottom:1041.058500px;}
.y256{bottom:1044.339000px;}
.ybf{bottom:1052.043000px;}
.y46{bottom:1056.526500px;}
.ye5{bottom:1058.484000px;}
.y255{bottom:1063.489500px;}
.y17{bottom:1071.424500px;}
.ybe{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.y254{bottom:1082.640000px;}
.ye4{bottom:1083.858000px;}
.ybd{bottom:1093.825500px;}
.y44{bottom:1098.309000px;}
.y253{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.ybc{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.y252{bottom:1120.941000px;}
.y42{bottom:1140.091500px;}
.y41{bottom:1200.196500px;}
.h13{height:29.037733px;}
.h11{height:31.526842px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h16{height:38.880726px;}
.h1e{height:39.488026px;}
.h10{height:40.927080px;}
.h17{height:41.250077px;}
.h21{height:42.973434px;}
.h1d{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.875290px;}
.hb{height:45.019788px;}
.he{height:47.066142px;}
.hc{height:48.848947px;}
.h9{height:51.646464px;}
.h19{height:52.304919px;}
.h8{height:54.276245px;}
.h5{height:54.405312px;}
.h4{height:77.469696px;}
.h12{height:270.130500px;}
.h14{height:281.430000px;}
.h15{height:349.505475px;}
.h20{height:389.965275px;}
.hf{height:394.686000px;}
.h1f{height:399.849300px;}
.h22{height:453.022500px;}
.ha{height:471.132750px;}
.hd{height:475.646325px;}
.h18{height:620.670000px;}
.h1b{height:892.914000px;}
.h1c{height:893.250000px;}
.h1a{height:899.944350px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:656.512650px;}
.w7{width:660.599220px;}
.w8{width:674.801250px;}
.w5{width:686.363400px;}
.w6{width:693.327900px;}
.w4{width:694.772100px;}
.wc{width:699.361800px;}
.w2{width:708.347805px;}
.w3{width:728.276543px;}
.wd{width:732.232935px;}
.we{width:746.801400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.wa{width:1262.835000px;}
.wb{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x70{left:72.843600px;}
.x66{left:74.965500px;}
.x6f{left:80.127315px;}
.x2f{left:82.107982px;}
.x73{left:85.848000px;}
.x2e{left:92.068995px;}
.x6d{left:96.563700px;}
.x31{left:98.858400px;}
.x39{left:103.062600px;}
.x5d{left:108.843750px;}
.x4a{left:115.946355px;}
.x62{left:117.988350px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.xa{left:290.176500px;}
.x2b{left:291.781500px;}
.xb{left:297.648000px;}
.x2c{left:306.724500px;}
.x18{left:326.398500px;}
.x5e{left:328.973259px;}
.x59{left:334.923000px;}
.x19{left:341.343000px;}
.x5a{left:349.866000px;}
.x34{left:358.902000px;}
.x4c{left:371.464500px;}
.x35{left:373.845000px;}
.x6a{left:381.687000px;}
.x4d{left:386.409000px;}
.x57{left:401.986500px;}
.x60{left:410.944500px;}
.x58{left:416.931000px;}
.x50{left:419.277000px;}
.x54{left:430.213500px;}
.x51{left:434.220000px;}
.x46{left:437.928000px;}
.x10{left:439.521000px;}
.x55{left:445.156500px;}
.x11{left:446.994000px;}
.x47{left:452.872500px;}
.x72{left:457.731000px;}
.x1c{left:493.638000px;}
.x3b{left:502.146000px;}
.x1d{left:508.582500px;}
.x3c{left:511.833000px;}
.x5f{left:516.810000px;}
.x37{left:528.918000px;}
.x12{left:532.161000px;}
.x38{left:536.389500px;}
.x13{left:539.632500px;}
.x48{left:557.673000px;}
.x1e{left:565.431000px;}
.x3f{left:566.754000px;}
.x49{left:572.616000px;}
.x40{left:574.225500px;}
.x1f{left:580.374000px;}
.x61{left:587.655000px;}
.x44{left:594.792000px;}
.x20{left:598.509000px;}
.x1a{left:602.904000px;}
.x45{left:609.736500px;}
.x21{left:613.452000px;}
.x16{left:614.509500px;}
.x1b{left:617.848500px;}
.x17{left:629.452500px;}
.x14{left:633.787500px;}
.x15{left:641.259000px;}
.x33{left:644.920500px;}
.x63{left:647.964025px;}
.x52{left:652.077000px;}
.x4b{left:655.118660px;}
.x6b{left:663.664500px;}
.x53{left:667.020000px;}
.x65{left:669.381000px;}
.x24{left:671.023500px;}
.x71{left:673.554000px;}
.x6c{left:678.609000px;}
.x3a{left:684.180717px;}
.x25{left:685.968000px;}
.x22{left:688.251000px;}
.x26{left:689.692500px;}
.x32{left:691.038428px;}
.x6e{left:694.659657px;}
.x29{left:701.665500px;}
.x23{left:703.195500px;}
.x27{left:704.637000px;}
.x2a{left:716.610000px;}
.x30{left:724.446836px;}
.x8{left:728.407500px;}
.x3d{left:732.903000px;}
.x9{left:735.879000px;}
.x56{left:738.639000px;}
.x64{left:739.827000px;}
.x4e{left:741.291000px;}
.x3e{left:742.590000px;}
.xc{left:745.173000px;}
.x4f{left:747.717000px;}
.xd{left:752.644500px;}
.x36{left:756.442500px;}
.x42{left:759.130500px;}
.xe{left:760.266000px;}
.xf{left:767.737500px;}
.x41{left:772.144500px;}
.x43{left:774.075000px;}
.x5b{left:816.951000px;}
.x28{left:819.007500px;}
.x6{left:826.554000px;}
.x5c{left:831.894000px;}
.x2d{left:832.990500px;}
.x7{left:834.027000px;}
.x68{left:853.185000px;}
.x67{left:1035.486000px;}
.x69{left:1064.805000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000100pt;}
.ls14{letter-spacing:0.000621pt;}
.lsa{letter-spacing:0.000711pt;}
.ls9{letter-spacing:0.002471pt;}
.lsb{letter-spacing:0.003039pt;}
.ls12{letter-spacing:0.004267pt;}
.ls8{letter-spacing:0.643096pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.437600pt;}
.ls10{letter-spacing:10.248882pt;}
.ls5{letter-spacing:10.626533pt;}
.ls11{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.lsd{letter-spacing:12.090730pt;}
.ls13{letter-spacing:12.133779pt;}
.lsf{letter-spacing:13.963754pt;}
.ls7{letter-spacing:16.491733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ws67{word-spacing:-13.283467pt;}
.ws77{word-spacing:-11.955200pt;}
.ws20{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6c{word-spacing:-2.816095pt;}
.ws34{word-spacing:-2.709827pt;}
.ws27{word-spacing:-2.444158pt;}
.wsa1{word-spacing:-2.391024pt;}
.ws74{word-spacing:-2.337890pt;}
.ws58{word-spacing:-2.178489pt;}
.ws80{word-spacing:-2.072221pt;}
.wsb6{word-spacing:-2.056294pt;}
.ws73{word-spacing:-2.019087pt;}
.wsb7{word-spacing:-2.008474pt;}
.ws68{word-spacing:-1.965953pt;}
.ws29{word-spacing:-1.912819pt;}
.ws2{word-spacing:-1.861679pt;}
.ws60{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws28{word-spacing:-1.806551pt;}
.ws5c{word-spacing:-1.753418pt;}
.wsc0{word-spacing:-1.721549pt;}
.wsc1{word-spacing:-1.706683pt;}
.ws48{word-spacing:-1.700284pt;}
.wsa9{word-spacing:-1.647150pt;}
.wsc2{word-spacing:-1.625907pt;}
.ws96{word-spacing:-1.594016pt;}
.ws45{word-spacing:-1.540882pt;}
.ws8a{word-spacing:-1.487748pt;}
.wsb4{word-spacing:-1.434624pt;}
.ws66{word-spacing:-1.434614pt;}
.ws5b{word-spacing:-1.328347pt;}
.ws90{word-spacing:-1.275213pt;}
.ws91{word-spacing:-1.222079pt;}
.ws32{word-spacing:-1.168945pt;}
.wsb5{word-spacing:-1.147699pt;}
.ws15{word-spacing:-1.115811pt;}
.wsa4{word-spacing:-1.062677pt;}
.ws33{word-spacing:-1.009543pt;}
.ws97{word-spacing:-0.988595pt;}
.ws49{word-spacing:-0.956410pt;}
.ws5d{word-spacing:-0.797008pt;}
.ws5e{word-spacing:-0.743874pt;}
.ws78{word-spacing:-0.690740pt;}
.ws46{word-spacing:-0.637606pt;}
.ws8b{word-spacing:-0.584473pt;}
.wscc{word-spacing:-0.573850pt;}
.ws53{word-spacing:-0.531339pt;}
.wsca{word-spacing:-0.526029pt;}
.wsd0{word-spacing:-0.478208pt;}
.ws65{word-spacing:-0.425071pt;}
.ws64{word-spacing:-0.371937pt;}
.ws9e{word-spacing:-0.334746pt;}
.ws23{word-spacing:-0.318803pt;}
.ws9f{word-spacing:-0.286925pt;}
.ws1e{word-spacing:-0.265669pt;}
.wsae{word-spacing:-0.239104pt;}
.wsc{word-spacing:-0.212535pt;}
.wsad{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.ws52{word-spacing:-0.143462pt;}
.ws1c{word-spacing:-0.106268pt;}
.wsb2{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.ws8c{word-spacing:-0.050274pt;}
.wsac{word-spacing:-0.047821pt;}
.wscf{word-spacing:-0.025173pt;}
.wsce{word-spacing:-0.022153pt;}
.wsbf{word-spacing:-0.020838pt;}
.ws1f{word-spacing:-0.002878pt;}
.ws6{word-spacing:-0.001710pt;}
.wsc6{word-spacing:-0.000077pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053134pt;}
.ws76{word-spacing:0.095642pt;}
.ws16{word-spacing:0.106268pt;}
.ws8{word-spacing:0.127522pt;}
.ws8d{word-spacing:0.143462pt;}
.ws11{word-spacing:0.159402pt;}
.ws62{word-spacing:0.191283pt;}
.ws25{word-spacing:0.212535pt;}
.ws99{word-spacing:0.239104pt;}
.ws1b{word-spacing:0.265669pt;}
.wsaf{word-spacing:0.286925pt;}
.ws2b{word-spacing:0.318803pt;}
.wsd3{word-spacing:0.334746pt;}
.ws3c{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.ws41{word-spacing:0.425071pt;}
.wsa8{word-spacing:0.478205pt;}
.ws7c{word-spacing:0.531339pt;}
.ws51{word-spacing:0.584473pt;}
.ws85{word-spacing:0.637606pt;}
.wsab{word-spacing:0.690740pt;}
.wsc3{word-spacing:0.717312pt;}
.ws4d{word-spacing:0.743874pt;}
.wsb9{word-spacing:0.765133pt;}
.ws84{word-spacing:0.797008pt;}
.wsa3{word-spacing:0.850142pt;}
.ws94{word-spacing:0.860774pt;}
.ws1d{word-spacing:0.903276pt;}
.ws6a{word-spacing:0.956410pt;}
.wsc7{word-spacing:1.004237pt;}
.ws7d{word-spacing:1.009543pt;}
.ws88{word-spacing:1.062677pt;}
.ws59{word-spacing:1.115811pt;}
.ws4a{word-spacing:1.168945pt;}
.wsd5{word-spacing:1.195520pt;}
.ws12{word-spacing:1.222079pt;}
.ws38{word-spacing:1.275213pt;}
.ws93{word-spacing:1.291162pt;}
.ws2e{word-spacing:1.328347pt;}
.ws61{word-spacing:1.381481pt;}
.wsd1{word-spacing:1.386803pt;}
.ws21{word-spacing:1.487748pt;}
.wsbc{word-spacing:1.530266pt;}
.ws4e{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.594016pt;}
.ws22{word-spacing:1.647150pt;}
.ws86{word-spacing:1.700284pt;}
.ws37{word-spacing:1.753418pt;}
.ws10{word-spacing:1.806551pt;}
.ws30{word-spacing:1.859685pt;}
.ws3f{word-spacing:1.912819pt;}
.ws36{word-spacing:1.965953pt;}
.wsbe{word-spacing:2.008474pt;}
.wsa2{word-spacing:2.019087pt;}
.wsa5{word-spacing:2.072221pt;}
.ws4c{word-spacing:2.125355pt;}
.ws50{word-spacing:2.178489pt;}
.ws2c{word-spacing:2.231622pt;}
.wsd6{word-spacing:2.247578pt;}
.ws2f{word-spacing:2.284756pt;}
.wsb3{word-spacing:2.322580pt;}
.ws69{word-spacing:2.337890pt;}
.ws7e{word-spacing:2.391024pt;}
.ws42{word-spacing:2.444158pt;}
.ws72{word-spacing:2.497292pt;}
.ws7b{word-spacing:2.550426pt;}
.ws9{word-spacing:2.550432pt;}
.ws2a{word-spacing:2.603559pt;}
.ws7a{word-spacing:2.656693pt;}
.ws8e{word-spacing:2.709827pt;}
.ws9c{word-spacing:2.762961pt;}
.ws70{word-spacing:2.816095pt;}
.wsd9{word-spacing:2.860339pt;}
.wsd7{word-spacing:2.861466pt;}
.wsc5{word-spacing:2.862182pt;}
.wsc9{word-spacing:2.862601pt;}
.wscd{word-spacing:2.863351pt;}
.wscb{word-spacing:2.863932pt;}
.wsc8{word-spacing:2.864606pt;}
.wsbb{word-spacing:2.865775pt;}
.wsba{word-spacing:2.869248pt;}
.ws95{word-spacing:2.917069pt;}
.wsa0{word-spacing:2.922363pt;}
.wsd4{word-spacing:2.964890pt;}
.ws6d{word-spacing:3.012710pt;}
.wsb8{word-spacing:3.060378pt;}
.ws54{word-spacing:3.081764pt;}
.wsda{word-spacing:3.108352pt;}
.ws17{word-spacing:3.124640pt;}
.ws98{word-spacing:3.134898pt;}
.ws75{word-spacing:3.188032pt;}
.wsa6{word-spacing:3.241166pt;}
.wsa{word-spacing:3.296646pt;}
.ws3d{word-spacing:3.347434pt;}
.ws26{word-spacing:3.506835pt;}
.ws92{word-spacing:3.538739pt;}
.ws13{word-spacing:3.559969pt;}
.ws81{word-spacing:3.613103pt;}
.ws4b{word-spacing:3.719371pt;}
.ws18{word-spacing:3.825664pt;}
.ws3e{word-spacing:3.878772pt;}
.ws6e{word-spacing:3.985040pt;}
.wsc4{word-spacing:4.016947pt;}
.ws35{word-spacing:4.038174pt;}
.ws87{word-spacing:4.091308pt;}
.ws83{word-spacing:4.144442pt;}
.ws55{word-spacing:4.160410pt;}
.ws63{word-spacing:4.197575pt;}
.ws5f{word-spacing:4.303843pt;}
.ws79{word-spacing:4.356977pt;}
.ws57{word-spacing:4.463245pt;}
.wsd2{word-spacing:4.542976pt;}
.ws3a{word-spacing:4.569513pt;}
.ws71{word-spacing:4.675780pt;}
.ws2d{word-spacing:4.728914pt;}
.ws7f{word-spacing:4.782048pt;}
.ws44{word-spacing:4.835182pt;}
.ws56{word-spacing:4.888316pt;}
.ws24{word-spacing:4.941450pt;}
.ws39{word-spacing:4.994583pt;}
.ws43{word-spacing:5.047717pt;}
.ws9d{word-spacing:5.164646pt;}
.wsa7{word-spacing:5.207119pt;}
.ws1a{word-spacing:5.313387pt;}
.ws31{word-spacing:5.525922pt;}
.ws14{word-spacing:5.632190pt;}
.ws8f{word-spacing:5.791591pt;}
.ws5a{word-spacing:5.844725pt;}
.ws6b{word-spacing:5.950993pt;}
.ws40{word-spacing:6.110395pt;}
.ws19{word-spacing:6.163529pt;}
.ws89{word-spacing:6.269796pt;}
.wsf{word-spacing:6.376064pt;}
.ws82{word-spacing:6.482332pt;}
.ws6f{word-spacing:6.551450pt;}
.wsaa{word-spacing:6.641733pt;}
.ws4f{word-spacing:6.694867pt;}
.ws47{word-spacing:7.332474pt;}
.wsbd{word-spacing:7.949996pt;}
.wsb1{word-spacing:10.424934pt;}
.ws1{word-spacing:19.715148pt;}
.wsd8{word-spacing:21.662822pt;}
.wsb0{word-spacing:23.892287pt;}
.ws9b{word-spacing:115.122111pt;}
.ws9a{word-spacing:115.141089pt;}
._1e{margin-left:-6.801135pt;}
._9{margin-left:-5.844725pt;}
._17{margin-left:-4.835182pt;}
._13{margin-left:-3.942529pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._5{width:2.666913pt;}
._0{width:9.670336pt;}
._1f{width:11.255848pt;}
._e{width:12.284546pt;}
._68{width:13.258122pt;}
._12{width:14.176119pt;}
._11{width:15.685114pt;}
._7{width:16.694657pt;}
._a{width:17.746711pt;}
._2{width:19.343872pt;}
._b{width:20.350271pt;}
._8{width:21.253547pt;}
._16{width:22.645650pt;}
._f{width:23.920863pt;}
._1a{width:25.504256pt;}
._14{width:26.471289pt;}
._15{width:28.277840pt;}
._4{width:29.648896pt;}
._18{width:30.828266pt;}
._1b{width:32.242823pt;}
._10{width:33.580604pt;}
._1d{width:34.834710pt;}
._19{width:36.949283pt;}
._6{width:48.363380pt;}
._69{width:54.993920pt;}
._6a{width:58.314766pt;}
._67{width:78.904320pt;}
._59{width:125.395925pt;}
._26{width:128.477690pt;}
._2b{width:144.045913pt;}
._2a{width:146.118133pt;}
._21{width:149.093630pt;}
._63{width:154.035079pt;}
._65{width:164.927522pt;}
._5a{width:173.482075pt;}
._64{width:202.121229pt;}
._66{width:212.822382pt;}
._2f{width:274.223886pt;}
._45{width:296.230678pt;}
._51{width:299.887543pt;}
._4f{width:302.916174pt;}
._23{width:314.127420pt;}
._2e{width:315.987105pt;}
._5f{width:320.078413pt;}
._35{width:324.222854pt;}
._30{width:335.646636pt;}
._46{width:344.438749pt;}
._52{width:347.920559pt;}
._50{width:351.002323pt;}
._34{width:352.224402pt;}
._60{width:368.111428pt;}
._36{width:372.255870pt;}
._61{width:374.806295pt;}
._31{width:384.062211pt;}
._25{width:394.359558pt;}
._32{width:397.972661pt;}
._44{width:403.976788pt;}
._39{width:407.377356pt;}
._5b{width:414.231625pt;}
._27{width:416.356979pt;}
._37{width:420.129484pt;}
._62{width:422.839311pt;}
._2c{width:424.061390pt;}
._49{width:425.177201pt;}
._3e{width:427.143154pt;}
._40{width:433.678620pt;}
._3b{width:443.242716pt;}
._33{width:446.335103pt;}
._5d{width:451.265930pt;}
._3a{width:455.357237pt;}
._54{width:460.192419pt;}
._5c{width:461.637657pt;}
._4b{width:465.930877pt;}
._38{width:468.215633pt;}
._2d{width:472.094405pt;}
._4a{width:473.210217pt;}
._3f{width:475.558730pt;}
._4d{width:478.257934pt;}
._41{width:481.658501pt;}
._3d{width:482.986848pt;}
._3c{width:491.275731pt;}
._56{width:497.017457pt;}
._5e{width:499.298945pt;}
._47{width:501.211764pt;}
._55{width:508.554861pt;}
._4c{width:513.963892pt;}
._42{width:523.825534pt;}
._28{width:524.750067pt;}
._4e{width:526.673509pt;}
._58{width:528.044608pt;}
._43{width:530.913596pt;}
._57{width:545.150445pt;}
._48{width:549.244780pt;}
._53{width:553.229820pt;}
._24{width:610.880065pt;}
._22{width:670.921334pt;}
._29{width:901.787985pt;}
._c{width:1528.711733pt;}
._1c{width:2216.605067pt;}
._d{width:2237.858400pt;}
._20{width:3530.365067pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fse{font-size:47.759920pt;}
.fs8{font-size:47.820800pt;}
.fsa{font-size:50.273600pt;}
.fsf{font-size:52.787280pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.300960pt;}
.fsd{font-size:55.365867pt;}
.fs9{font-size:57.814640pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.346616pt;}
.yd4{bottom:3.449345pt;}
.y1ff{bottom:4.202785pt;}
.y106{bottom:4.212016pt;}
.yc2{bottom:5.703076pt;}
.y203{bottom:5.928013pt;}
.y14d{bottom:6.868702pt;}
.y112{bottom:7.086663pt;}
.y1af{bottom:8.288606pt;}
.y1fc{bottom:8.354567pt;}
.y40{bottom:40.818667pt;}
.y12e{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y189{bottom:90.122667pt;}
.y282{bottom:90.640000pt;}
.y16e{bottom:90.777333pt;}
.ye3{bottom:95.705333pt;}
.y251{bottom:99.176000pt;}
.y71{bottom:100.710667pt;}
.y3f{bottom:100.978667pt;}
.y90{bottom:103.857333pt;}
.y14{bottom:105.020000pt;}
.y104{bottom:105.213333pt;}
.y191{bottom:105.356000pt;}
.yb3{bottom:105.597333pt;}
.y12d{bottom:107.209333pt;}
.y281{bottom:107.662667pt;}
.y188{bottom:108.693333pt;}
.y16d{bottom:109.346667pt;}
.ye2{bottom:114.276000pt;}
.y114{bottom:115.014667pt;}
.y250{bottom:116.198667pt;}
.y70{bottom:119.281333pt;}
.y3e{bottom:119.548000pt;}
.y13{bottom:120.920000pt;}
.y21c{bottom:122.042667pt;}
.y8f{bottom:122.428000pt;}
.y190{bottom:122.452000pt;}
.y1ad{bottom:123.278667pt;}
.y103{bottom:123.782667pt;}
.yb2{bottom:124.168000pt;}
.y280{bottom:124.685333pt;}
.y14b{bottom:125.780000pt;}
.y1ea{bottom:125.908000pt;}
.y187{bottom:127.262667pt;}
.y16c{bottom:127.917333pt;}
.ybb{bottom:128.486667pt;}
.y1fd{bottom:131.560000pt;}
.y113{bottom:132.110667pt;}
.ye1{bottom:132.846667pt;}
.y24f{bottom:133.221333pt;}
.y12{bottom:136.820000pt;}
.y6f{bottom:137.852000pt;}
.y3d{bottom:138.118667pt;}
.y12c{bottom:138.737333pt;}
.y18f{bottom:139.548000pt;}
.y21b{bottom:140.613333pt;}
.y8e{bottom:140.998667pt;}
.y18c{bottom:141.836000pt;}
.y1ac{bottom:141.848000pt;}
.y102{bottom:142.353333pt;}
.yb1{bottom:142.738667pt;}
.y14a{bottom:144.350667pt;}
.y186{bottom:145.833333pt;}
.y16b{bottom:146.488000pt;}
.yba{bottom:147.057333pt;}
.y1cf{bottom:148.194667pt;}
.y1e9{bottom:148.249333pt;}
.y206{bottom:148.336000pt;}
.y24e{bottom:150.244000pt;}
.ye0{bottom:151.416000pt;}
.y11{bottom:152.721333pt;}
.y1b3{bottom:152.869333pt;}
.y1fb{bottom:154.153067pt;}
.y111{bottom:154.704000pt;}
.y12b{bottom:155.833333pt;}
.y6e{bottom:156.421333pt;}
.y3c{bottom:156.689333pt;}
.y21a{bottom:159.184000pt;}
.y8d{bottom:159.568000pt;}
.yd2{bottom:159.998667pt;}
.y1ab{bottom:160.418667pt;}
.y101{bottom:160.924000pt;}
.yb0{bottom:161.308000pt;}
.y18d{bottom:162.141333pt;}
.y27f{bottom:162.278667pt;}
.y149{bottom:162.920000pt;}
.y18b{bottom:163.553333pt;}
.y185{bottom:164.404000pt;}
.y16a{bottom:165.057333pt;}
.yb9{bottom:165.626667pt;}
.y1ce{bottom:166.765333pt;}
.y24d{bottom:167.266667pt;}
.y10{bottom:168.621333pt;}
.y1b2{bottom:169.965333pt;}
.ydf{bottom:169.986667pt;}
.y1e8{bottom:170.592000pt;}
.y6d{bottom:174.992000pt;}
.y3b{bottom:175.258667pt;}
.y219{bottom:177.753333pt;}
.y8c{bottom:178.138667pt;}
.y205{bottom:178.536000pt;}
.yd1{bottom:178.569333pt;}
.y1aa{bottom:178.989333pt;}
.y27e{bottom:179.301333pt;}
.y100{bottom:179.493333pt;}
.yaf{bottom:179.878667pt;}
.y148{bottom:181.490667pt;}
.y184{bottom:182.973333pt;}
.y169{bottom:183.628000pt;}
.yb8{bottom:184.197333pt;}
.y24c{bottom:184.289333pt;}
.yf{bottom:184.521333pt;}
.y1cd{bottom:185.336000pt;}
.y1b1{bottom:187.060000pt;}
.yde{bottom:188.557333pt;}
.y1e7{bottom:192.934667pt;}
.y6c{bottom:193.562667pt;}
.y3a{bottom:193.829333pt;}
.y204{bottom:195.632000pt;}
.y218{bottom:196.324000pt;}
.y223{bottom:196.709333pt;}
.yd0{bottom:197.140000pt;}
.y1a9{bottom:197.558667pt;}
.yff{bottom:198.064000pt;}
.yae{bottom:198.449333pt;}
.y147{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y8b{bottom:200.694667pt;}
.y24b{bottom:201.312000pt;}
.y183{bottom:201.544000pt;}
.y168{bottom:202.198667pt;}
.y1cc{bottom:203.905333pt;}
.y1b0{bottom:204.156000pt;}
.yb7{bottom:206.752000pt;}
.ydd{bottom:211.112000pt;}
.y6b{bottom:212.132000pt;}
.y39{bottom:212.400000pt;}
.y27d{bottom:213.346667pt;}
.y217{bottom:214.894667pt;}
.y1e6{bottom:215.277333pt;}
.y222{bottom:215.280000pt;}
.ycf{bottom:215.709333pt;}
.y1a8{bottom:216.129333pt;}
.yfe{bottom:216.634667pt;}
.yad{bottom:217.020000pt;}
.y202{bottom:218.226667pt;}
.y24a{bottom:218.334667pt;}
.y146{bottom:218.632000pt;}
.y182{bottom:220.114667pt;}
.y167{bottom:220.769333pt;}
.y1cb{bottom:222.476000pt;}
.yd{bottom:224.293333pt;}
.y1ae{bottom:226.750800pt;}
.y27c{bottom:230.369333pt;}
.y6a{bottom:230.702667pt;}
.y38{bottom:230.969333pt;}
.y216{bottom:233.464000pt;}
.y221{bottom:233.849333pt;}
.yce{bottom:234.280000pt;}
.y1a7{bottom:234.700000pt;}
.y8a{bottom:235.205333pt;}
.yb6{bottom:235.326667pt;}
.y249{bottom:235.357333pt;}
.yac{bottom:235.589333pt;}
.y145{bottom:237.201333pt;}
.y1e5{bottom:237.618667pt;}
.y165{bottom:239.338667pt;}
.ydc{bottom:239.686667pt;}
.yc{bottom:240.193333pt;}
.y1ca{bottom:241.046667pt;}
.y181{bottom:242.669333pt;}
.y166{bottom:244.161333pt;}
.y27b{bottom:247.392000pt;}
.y18e{bottom:248.042673pt;}
.y69{bottom:249.273333pt;}
.y37{bottom:249.540000pt;}
.y215{bottom:252.034667pt;}
.y248{bottom:252.380000pt;}
.y220{bottom:252.420000pt;}
.ycd{bottom:252.850667pt;}
.y1a6{bottom:253.269333pt;}
.y89{bottom:253.774667pt;}
.y144{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y164{bottom:257.909333pt;}
.yb4{bottom:257.920000pt;}
.yab{bottom:258.145333pt;}
.y1c9{bottom:259.616000pt;}
.y1e4{bottom:259.961333pt;}
.y27a{bottom:264.414667pt;}
.y68{bottom:267.842667pt;}
.y36{bottom:268.110667pt;}
.y247{bottom:269.402667pt;}
.y214{bottom:270.605333pt;}
.y21f{bottom:270.990667pt;}
.ycc{bottom:271.420000pt;}
.y1a5{bottom:271.840000pt;}
.ya{bottom:271.994667pt;}
.y88{bottom:272.345333pt;}
.y180{bottom:274.085333pt;}
.y143{bottom:274.342667pt;}
.y163{bottom:276.480000pt;}
.y1c8{bottom:278.186667pt;}
.y279{bottom:281.437333pt;}
.y1e3{bottom:282.304000pt;}
.y67{bottom:286.413333pt;}
.y246{bottom:286.425333pt;}
.y9{bottom:287.894667pt;}
.y213{bottom:289.176000pt;}
.yaa{bottom:289.560000pt;}
.ycb{bottom:289.990667pt;}
.y1a4{bottom:290.410667pt;}
.y35{bottom:290.665333pt;}
.y87{bottom:290.916000pt;}
.y17f{bottom:292.656000pt;}
.y142{bottom:292.912000pt;}
.y162{bottom:295.049333pt;}
.y1c7{bottom:296.757333pt;}
.y278{bottom:298.460000pt;}
.y245{bottom:303.448000pt;}
.y8{bottom:303.794667pt;}
.y1e2{bottom:304.646667pt;}
.y212{bottom:307.745333pt;}
.ya9{bottom:308.130667pt;}
.yca{bottom:308.561333pt;}
.y66{bottom:308.969333pt;}
.y86{bottom:309.485333pt;}
.y17e{bottom:311.225333pt;}
.y141{bottom:311.482667pt;}
.y1a3{bottom:312.965333pt;}
.y161{bottom:313.620000pt;}
.y1c6{bottom:315.326667pt;}
.y277{bottom:315.482667pt;}
.y7{bottom:319.696000pt;}
.y244{bottom:320.470667pt;}
.y211{bottom:326.316000pt;}
.ya8{bottom:326.701333pt;}
.y1e1{bottom:326.988000pt;}
.yc9{bottom:327.130667pt;}
.y85{bottom:328.056000pt;}
.y17d{bottom:329.796000pt;}
.y140{bottom:330.053333pt;}
.y160{bottom:332.190667pt;}
.y276{bottom:332.506667pt;}
.y1c5{bottom:333.897333pt;}
.y6{bottom:335.596000pt;}
.y243{bottom:337.493333pt;}
.y65{bottom:340.384000pt;}
.y1a2{bottom:344.381333pt;}
.y210{bottom:344.886667pt;}
.ya7{bottom:345.270667pt;}
.yc8{bottom:345.701333pt;}
.y84{bottom:346.626667pt;}
.y17c{bottom:348.366667pt;}
.y13f{bottom:348.622667pt;}
.y1e0{bottom:349.330667pt;}
.y275{bottom:349.529333pt;}
.y15f{bottom:350.760000pt;}
.y1c4{bottom:352.468000pt;}
.y242{bottom:354.516000pt;}
.y5{bottom:356.809333pt;}
.y64{bottom:358.954667pt;}
.y34{bottom:361.076000pt;}
.y1a1{bottom:362.952000pt;}
.y20f{bottom:363.456000pt;}
.ya6{bottom:363.841333pt;}
.yc7{bottom:364.272000pt;}
.y83{bottom:365.196000pt;}
.y274{bottom:366.552000pt;}
.y17b{bottom:366.936000pt;}
.y13e{bottom:367.193333pt;}
.y15e{bottom:369.330667pt;}
.y1c3{bottom:371.037333pt;}
.y241{bottom:371.540000pt;}
.y1df{bottom:371.673333pt;}
.y4{bottom:372.710667pt;}
.y63{bottom:377.525333pt;}
.y33{bottom:379.646667pt;}
.y1a0{bottom:381.521333pt;}
.y20e{bottom:382.026667pt;}
.ya5{bottom:382.412000pt;}
.yc6{bottom:382.841333pt;}
.y273{bottom:383.574667pt;}
.y82{bottom:383.766667pt;}
.y17a{bottom:385.506667pt;}
.y13d{bottom:385.764000pt;}
.y15d{bottom:387.901333pt;}
.y240{bottom:388.562667pt;}
.y3{bottom:388.610667pt;}
.y1f7{bottom:388.769333pt;}
.y1c2{bottom:389.608000pt;}
.y1de{bottom:394.016000pt;}
.y62{bottom:396.094667pt;}
.y19f{bottom:400.092000pt;}
.y20d{bottom:400.597333pt;}
.ya4{bottom:400.981333pt;}
.yc5{bottom:401.412000pt;}
.y81{bottom:402.337333pt;}
.y179{bottom:404.077333pt;}
.y13c{bottom:404.333333pt;}
.y2{bottom:404.510667pt;}
.y21e{bottom:404.966667pt;}
.y23f{bottom:405.585333pt;}
.y15c{bottom:406.470667pt;}
.y1c1{bottom:408.178667pt;}
.y1f6{bottom:411.110667pt;}
.y32{bottom:414.157333pt;}
.y61{bottom:414.665333pt;}
.y1dd{bottom:416.357333pt;}
.y272{bottom:417.620000pt;}
.y19e{bottom:418.662667pt;}
.y20c{bottom:419.166667pt;}
.ya3{bottom:419.552000pt;}
.y80{bottom:420.906667pt;}
.y23e{bottom:422.608000pt;}
.y178{bottom:422.646667pt;}
.y13b{bottom:422.904000pt;}
.y1{bottom:425.725333pt;}
.y110{bottom:425.877333pt;}
.y1c0{bottom:426.749333pt;}
.y15b{bottom:429.026667pt;}
.y31{bottom:432.726667pt;}
.yc4{bottom:433.081333pt;}
.y60{bottom:433.236000pt;}
.y1f5{bottom:433.453333pt;}
.y271{bottom:434.642667pt;}
.y19d{bottom:437.232000pt;}
.y20b{bottom:437.737333pt;}
.ya2{bottom:438.122667pt;}
.y1dc{bottom:438.700000pt;}
.y7f{bottom:439.477333pt;}
.y23d{bottom:439.630667pt;}
.y177{bottom:441.217333pt;}
.y13a{bottom:441.474667pt;}
.y10f{bottom:444.448000pt;}
.y1bf{bottom:449.304000pt;}
.yc3{bottom:450.177333pt;}
.y30{bottom:451.297333pt;}
.y270{bottom:451.665333pt;}
.y5f{bottom:451.805333pt;}
.y1f4{bottom:455.796000pt;}
.y19c{bottom:455.802667pt;}
.y20a{bottom:456.308000pt;}
.y23c{bottom:456.653333pt;}
.y7e{bottom:458.048000pt;}
.y176{bottom:459.788000pt;}
.y139{bottom:460.045333pt;}
.y15a{bottom:460.442667pt;}
.ya1{bottom:460.677333pt;}
.y1db{bottom:461.042667pt;}
.y10e{bottom:463.018667pt;}
.y26f{bottom:468.688000pt;}
.y2f{bottom:469.868000pt;}
.y5e{bottom:470.376000pt;}
.y12a{bottom:472.633333pt;}
.yc1{bottom:472.770667pt;}
.y23b{bottom:473.676000pt;}
.y19b{bottom:474.373333pt;}
.y209{bottom:474.877333pt;}
.y7d{bottom:476.617333pt;}
.y1f3{bottom:478.138667pt;}
.y175{bottom:478.357333pt;}
.y138{bottom:478.614667pt;}
.y159{bottom:479.012000pt;}
.y1be{bottom:480.720000pt;}
.y10d{bottom:481.588000pt;}
.y1da{bottom:483.385333pt;}
.y26e{bottom:485.710667pt;}
.y2e{bottom:488.437333pt;}
.y5d{bottom:488.946667pt;}
.y23a{bottom:490.698667pt;}
.y129{bottom:491.202667pt;}
.ya0{bottom:492.093333pt;}
.y19a{bottom:492.942667pt;}
.y208{bottom:493.448000pt;}
.y7c{bottom:495.188000pt;}
.y174{bottom:496.928000pt;}
.y137{bottom:497.185333pt;}
.y158{bottom:497.582667pt;}
.y1bd{bottom:499.289333pt;}
.y10c{bottom:500.158667pt;}
.y1f2{bottom:500.480000pt;}
.y26d{bottom:502.733333pt;}
.y1d9{bottom:505.726667pt;}
.y2d{bottom:507.008000pt;}
.y5c{bottom:507.516000pt;}
.y239{bottom:507.721333pt;}
.y128{bottom:509.773333pt;}
.y9f{bottom:510.664000pt;}
.y199{bottom:511.513333pt;}
.y207{bottom:512.018667pt;}
.y7b{bottom:513.758667pt;}
.y173{bottom:515.498667pt;}
.y136{bottom:515.756000pt;}
.y157{bottom:516.153333pt;}
.y1bc{bottom:517.860000pt;}
.y10b{bottom:518.729333pt;}
.y26c{bottom:519.756000pt;}
.y1f1{bottom:522.822667pt;}
.y2c{bottom:525.578667pt;}
.y5b{bottom:526.086667pt;}
.ydb{bottom:526.242667pt;}
.y1d8{bottom:528.069333pt;}
.y127{bottom:528.344000pt;}
.y238{bottom:528.729333pt;}
.y9e{bottom:529.233333pt;}
.y198{bottom:530.084000pt;}
.y1fa{bottom:530.589333pt;}
.yfd{bottom:532.329333pt;}
.y172{bottom:534.069333pt;}
.y135{bottom:534.325333pt;}
.y156{bottom:534.722667pt;}
.y7a{bottom:536.313333pt;}
.y1bb{bottom:536.430667pt;}
.y26b{bottom:536.778667pt;}
.y2b{bottom:544.148000pt;}
.y5a{bottom:544.657333pt;}
.yda{bottom:544.813333pt;}
.y1f0{bottom:545.165333pt;}
.y126{bottom:546.913333pt;}
.y9d{bottom:547.804000pt;}
.y197{bottom:548.653333pt;}
.y1f9{bottom:549.158667pt;}
.y10a{bottom:550.398667pt;}
.y1d7{bottom:550.412000pt;}
.yfc{bottom:550.898667pt;}
.y171{bottom:552.638667pt;}
.y134{bottom:552.896000pt;}
.y155{bottom:553.293333pt;}
.y26a{bottom:553.801333pt;}
.y1ba{bottom:555.000000pt;}
.y2a{bottom:562.718667pt;}
.y59{bottom:563.228000pt;}
.y237{bottom:563.240000pt;}
.yd9{bottom:563.382667pt;}
.y125{bottom:565.484000pt;}
.y9c{bottom:566.374667pt;}
.y196{bottom:567.224000pt;}
.y108{bottom:567.494667pt;}
.y1ef{bottom:567.508000pt;}
.y79{bottom:567.729333pt;}
.yfa{bottom:569.469333pt;}
.y269{bottom:570.824000pt;}
.y133{bottom:571.466667pt;}
.y109{bottom:571.833333pt;}
.y154{bottom:571.864000pt;}
.y1d6{bottom:572.754667pt;}
.y1b9{bottom:573.570667pt;}
.yfb{bottom:574.290667pt;}
.y170{bottom:575.194667pt;}
.y236{bottom:580.572000pt;}
.y29{bottom:581.289333pt;}
.y58{bottom:581.797333pt;}
.yd8{bottom:581.953333pt;}
.y124{bottom:584.054667pt;}
.y107{bottom:584.589333pt;}
.y9b{bottom:584.944000pt;}
.y195{bottom:585.794667pt;}
.y78{bottom:586.300000pt;}
.y268{bottom:587.846667pt;}
.yf8{bottom:588.040000pt;}
.y1ee{bottom:589.849333pt;}
.y132{bottom:590.036000pt;}
.y153{bottom:590.433333pt;}
.y1b8{bottom:592.141333pt;}
.yf9{bottom:592.861333pt;}
.y1d5{bottom:595.096000pt;}
.y235{bottom:597.904000pt;}
.y28{bottom:599.860000pt;}
.y57{bottom:600.368000pt;}
.y123{bottom:602.625333pt;}
.y9a{bottom:603.514667pt;}
.y194{bottom:604.365333pt;}
.yd7{bottom:604.509333pt;}
.y77{bottom:604.869333pt;}
.yf7{bottom:606.609333pt;}
.y105{bottom:607.184000pt;}
.y131{bottom:608.606667pt;}
.y152{bottom:609.004000pt;}
.y1ed{bottom:612.192000pt;}
.y1d4{bottom:617.438667pt;}
.y27{bottom:618.429333pt;}
.y56{bottom:618.938667pt;}
.y122{bottom:621.194667pt;}
.y267{bottom:621.892000pt;}
.y99{bottom:622.085333pt;}
.y234{bottom:623.206667pt;}
.y76{bottom:623.440000pt;}
.y1b7{bottom:623.810667pt;}
.yf6{bottom:625.180000pt;}
.y193{bottom:626.920000pt;}
.y151{bottom:627.574667pt;}
.y1ec{bottom:634.534667pt;}
.yd6{bottom:636.178667pt;}
.y26{bottom:637.000000pt;}
.y55{bottom:637.508000pt;}
.y130{bottom:637.777333pt;}
.y266{bottom:638.914667pt;}
.y121{bottom:639.765333pt;}
.y1d3{bottom:639.781333pt;}
.y201{bottom:640.373333pt;}
.y233{bottom:640.538667pt;}
.y98{bottom:640.654667pt;}
.y1b5{bottom:640.905333pt;}
.y75{bottom:642.010667pt;}
.yf5{bottom:643.750667pt;}
.y1b6{bottom:645.245333pt;}
.yd5{bottom:653.273333pt;}
.y12f{bottom:654.873333pt;}
.y25{bottom:655.570667pt;}
.y265{bottom:655.937333pt;}
.y1eb{bottom:656.877333pt;}
.y200{bottom:657.469333pt;}
.y232{bottom:657.870667pt;}
.y1b4{bottom:658.001333pt;}
.y120{bottom:658.336000pt;}
.y97{bottom:659.225333pt;}
.y150{bottom:659.244000pt;}
.y54{bottom:660.064000pt;}
.y74{bottom:660.580000pt;}
.yf4{bottom:662.320000pt;}
.y1d2{bottom:668.817333pt;}
.y264{bottom:672.961333pt;}
.y24{bottom:674.140000pt;}
.y231{bottom:675.202667pt;}
.yd3{bottom:675.868000pt;}
.y14f{bottom:676.340000pt;}
.y11f{bottom:676.905333pt;}
.y96{bottom:677.796000pt;}
.y73{bottom:679.150667pt;}
.y1fe{bottom:680.062667pt;}
.yf3{bottom:680.890667pt;}
.y53{bottom:681.781333pt;}
.y1d1{bottom:685.913333pt;}
.y263{bottom:689.984000pt;}
.y230{bottom:692.534667pt;}
.y23{bottom:692.710667pt;}
.y14e{bottom:693.434667pt;}
.y11e{bottom:695.476000pt;}
.y95{bottom:696.365333pt;}
.y72{bottom:697.721333pt;}
.yf2{bottom:699.461333pt;}
.y262{bottom:707.006667pt;}
.y22{bottom:711.281333pt;}
.y11d{bottom:714.046667pt;}
.y94{bottom:714.936000pt;}
.y14c{bottom:716.029333pt;}
.y52{bottom:716.290667pt;}
.y22f{bottom:717.837333pt;}
.yf1{bottom:718.030667pt;}
.y192{bottom:718.868000pt;}
.y261{bottom:724.029333pt;}
.y11c{bottom:732.616000pt;}
.y93{bottom:733.506667pt;}
.y51{bottom:734.861333pt;}
.y22e{bottom:735.169333pt;}
.yf0{bottom:736.601333pt;}
.y1d0{bottom:738.022667pt;}
.y260{bottom:741.052000pt;}
.y21{bottom:746.854667pt;}
.y11b{bottom:751.186667pt;}
.y92{bottom:752.077333pt;}
.y22d{bottom:752.501333pt;}
.y50{bottom:753.432000pt;}
.yef{bottom:755.172000pt;}
.y25f{bottom:758.074667pt;}
.y20{bottom:761.200000pt;}
.y11a{bottom:769.757333pt;}
.y22c{bottom:769.834667pt;}
.y4f{bottom:772.002667pt;}
.yee{bottom:773.742667pt;}
.y91{bottom:774.632000pt;}
.y25e{bottom:775.097333pt;}
.y1f{bottom:775.546667pt;}
.y1e{bottom:779.404000pt;}
.y119{bottom:788.326667pt;}
.y4e{bottom:790.572000pt;}
.y25d{bottom:792.120000pt;}
.yed{bottom:792.312000pt;}
.y1d{bottom:793.750667pt;}
.y22b{bottom:795.136000pt;}
.y18a{bottom:796.297333pt;}
.y1c{bottom:804.238667pt;}
.y4d{bottom:809.142667pt;}
.yec{bottom:810.882667pt;}
.y22a{bottom:812.469333pt;}
.y21d{bottom:815.704000pt;}
.y1b{bottom:822.442667pt;}
.y25c{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.yeb{bottom:829.453333pt;}
.y16f{bottom:833.437333pt;}
.y229{bottom:837.770667pt;}
.y118{bottom:842.297333pt;}
.y25b{bottom:843.188000pt;}
.y4b{bottom:846.282667pt;}
.yea{bottom:848.022667pt;}
.y228{bottom:855.102667pt;}
.y25a{bottom:860.210667pt;}
.y117{bottom:860.868000pt;}
.y1a{bottom:862.156000pt;}
.y4a{bottom:864.853333pt;}
.ye9{bottom:866.593333pt;}
.y227{bottom:872.436000pt;}
.y259{bottom:877.233333pt;}
.y116{bottom:879.438667pt;}
.y49{bottom:883.424000pt;}
.ye8{bottom:885.164000pt;}
.y226{bottom:889.768000pt;}
.y258{bottom:894.256000pt;}
.y19{bottom:896.665333pt;}
.y115{bottom:898.009333pt;}
.y48{bottom:901.993333pt;}
.ye7{bottom:903.733333pt;}
.y225{bottom:907.100000pt;}
.y257{bottom:911.278667pt;}
.yc0{bottom:916.578667pt;}
.y47{bottom:920.564000pt;}
.ye6{bottom:922.304000pt;}
.y224{bottom:924.432000pt;}
.y18{bottom:924.521333pt;}
.y1f8{bottom:925.385333pt;}
.y256{bottom:928.301333pt;}
.ybf{bottom:935.149333pt;}
.y46{bottom:939.134667pt;}
.ye5{bottom:940.874667pt;}
.y255{bottom:945.324000pt;}
.y17{bottom:952.377333pt;}
.ybe{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.y254{bottom:962.346667pt;}
.ye4{bottom:963.429333pt;}
.ybd{bottom:972.289333pt;}
.y44{bottom:976.274667pt;}
.y253{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.ybc{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.y252{bottom:996.392000pt;}
.y42{bottom:1013.414667pt;}
.y41{bottom:1066.841333pt;}
.h13{height:25.811318pt;}
.h11{height:28.023859pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h16{height:34.560645pt;}
.h1e{height:35.100467pt;}
.h10{height:36.379627pt;}
.h17{height:36.666735pt;}
.h21{height:38.198608pt;}
.h1d{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:39.000258pt;}
.hb{height:40.017589pt;}
.he{height:41.836571pt;}
.hc{height:43.421286pt;}
.h9{height:45.907968pt;}
.h19{height:46.493261pt;}
.h8{height:48.245551pt;}
.h5{height:48.360277pt;}
.h4{height:68.861952pt;}
.h12{height:240.116000pt;}
.h14{height:250.160000pt;}
.h15{height:310.671533pt;}
.h20{height:346.635800pt;}
.hf{height:350.832000pt;}
.h1f{height:355.421600pt;}
.h22{height:402.686667pt;}
.ha{height:418.784667pt;}
.hd{height:422.796733pt;}
.h18{height:551.706667pt;}
.h1b{height:793.701333pt;}
.h1c{height:794.000000pt;}
.h1a{height:799.950533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:583.566800pt;}
.w7{width:587.199307pt;}
.w8{width:599.823333pt;}
.w5{width:610.100800pt;}
.w6{width:616.291467pt;}
.w4{width:617.575200pt;}
.wc{width:621.654933pt;}
.w2{width:629.642493pt;}
.w3{width:647.356927pt;}
.wd{width:650.873720pt;}
.we{width:663.823467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.wa{width:1122.520000pt;}
.wb{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x70{left:64.749867pt;}
.x66{left:66.636000pt;}
.x6f{left:71.224280pt;}
.x2f{left:72.984873pt;}
.x73{left:76.309333pt;}
.x2e{left:81.839107pt;}
.x6d{left:85.834400pt;}
.x31{left:87.874133pt;}
.x39{left:91.611200pt;}
.x5d{left:96.750000pt;}
.x4a{left:103.063427pt;}
.x62{left:104.878533pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.xa{left:257.934667pt;}
.x2b{left:259.361333pt;}
.xb{left:264.576000pt;}
.x2c{left:272.644000pt;}
.x18{left:290.132000pt;}
.x5e{left:292.420675pt;}
.x59{left:297.709333pt;}
.x19{left:303.416000pt;}
.x5a{left:310.992000pt;}
.x34{left:319.024000pt;}
.x4c{left:330.190667pt;}
.x35{left:332.306667pt;}
.x6a{left:339.277333pt;}
.x4d{left:343.474667pt;}
.x57{left:357.321333pt;}
.x60{left:365.284000pt;}
.x58{left:370.605333pt;}
.x50{left:372.690667pt;}
.x54{left:382.412000pt;}
.x51{left:385.973333pt;}
.x46{left:389.269333pt;}
.x10{left:390.685333pt;}
.x55{left:395.694667pt;}
.x11{left:397.328000pt;}
.x47{left:402.553333pt;}
.x72{left:406.872000pt;}
.x1c{left:438.789333pt;}
.x3b{left:446.352000pt;}
.x1d{left:452.073333pt;}
.x3c{left:454.962667pt;}
.x5f{left:459.386667pt;}
.x37{left:470.149333pt;}
.x12{left:473.032000pt;}
.x38{left:476.790667pt;}
.x13{left:479.673333pt;}
.x48{left:495.709333pt;}
.x1e{left:502.605333pt;}
.x3f{left:503.781333pt;}
.x49{left:508.992000pt;}
.x40{left:510.422667pt;}
.x1f{left:515.888000pt;}
.x61{left:522.360000pt;}
.x44{left:528.704000pt;}
.x20{left:532.008000pt;}
.x1a{left:535.914667pt;}
.x45{left:541.988000pt;}
.x21{left:545.290667pt;}
.x16{left:546.230667pt;}
.x1b{left:549.198667pt;}
.x17{left:559.513333pt;}
.x14{left:563.366667pt;}
.x15{left:570.008000pt;}
.x33{left:573.262667pt;}
.x63{left:575.968022pt;}
.x52{left:579.624000pt;}
.x4b{left:582.327698pt;}
.x6b{left:589.924000pt;}
.x53{left:592.906667pt;}
.x65{left:595.005333pt;}
.x24{left:596.465333pt;}
.x71{left:598.714667pt;}
.x6c{left:603.208000pt;}
.x3a{left:608.160637pt;}
.x25{left:609.749333pt;}
.x22{left:611.778667pt;}
.x26{left:613.060000pt;}
.x32{left:614.256380pt;}
.x6e{left:617.475251pt;}
.x29{left:623.702667pt;}
.x23{left:625.062667pt;}
.x27{left:626.344000pt;}
.x2a{left:636.986667pt;}
.x30{left:643.952743pt;}
.x8{left:647.473333pt;}
.x3d{left:651.469333pt;}
.x9{left:654.114667pt;}
.x56{left:656.568000pt;}
.x64{left:657.624000pt;}
.x4e{left:658.925333pt;}
.x3e{left:660.080000pt;}
.xc{left:662.376000pt;}
.x4f{left:664.637333pt;}
.xd{left:669.017333pt;}
.x36{left:672.393333pt;}
.x42{left:674.782667pt;}
.xe{left:675.792000pt;}
.xf{left:682.433333pt;}
.x41{left:686.350667pt;}
.x43{left:688.066667pt;}
.x5b{left:726.178667pt;}
.x28{left:728.006667pt;}
.x6{left:734.714667pt;}
.x5c{left:739.461333pt;}
.x2d{left:740.436000pt;}
.x7{left:741.357333pt;}
.x68{left:758.386667pt;}
.x67{left:920.432000pt;}
.x69{left:946.493333pt;}
}




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