
    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_43a50950ad351da910dca1a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8378724f465b3f67d7fe5165.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f2d0fb30626041f9fb6d40e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_743e7d3c2b585fcc4b96319f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_2b73806ee05cdeb9167b07a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_8b5fd45be22f8b15a0c63618.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a1b53129b692cd958d4fb83f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752000;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_8de1aca943c5611f65f06fcd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912109;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_f3ed15d4fb801864022b1677.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912109;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_ae292c272864ae09c5691155.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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_a976f53c23dff6143e4f5b99.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_c1febfd923b90b084dd23922.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_a1b46880b43813b06e234bf8.woff2')format("woff");}.fff{font-family:fff;line-height:0.731445;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_41a127950a3728b6ab86f96b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.731445;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_72dadb76dc2329930ce03216.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.731445;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_d62403b334fff11f091693aa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.863770;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_67ee90878d8b27c2f9e48655.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;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_ae0a9d8f95896421e8c2d92e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;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_0c38783dbd615c32dd7b2228.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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_c86d882088552923e154664f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.435059;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_c1c7ca18e128fa44ac820966.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_1b7c1efcc79426e909c20a50.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.981934;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_ac8cc4c3cd11602805710ff5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.065430;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_6281d25aecbdf3823bd3a969.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.034180;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_cd19ec8899e2606fa857c6d3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.912109;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_120ced953ca7db2cae149da8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.693848;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_0dd8904a3d4574151387e4fd.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.064941;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_11f0bd0bd6251cf54a1ecd63.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.372070;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_92d75341887bf34693354218.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284180;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_9d21bcd59b293bb05af6aab1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.758789;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_ce60d57fef4f72f256df39d2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.891602;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_98e86afa2a453183d5854e7b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.687012;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;}
.m6{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m3{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.m4{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251894,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:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.813021px;}
.v1{vertical-align:30.240000px;}
.ls1d{letter-spacing:-1.176000px;}
.ls3a{letter-spacing:-1.134000px;}
.ls15{letter-spacing:-1.055463px;}
.ls2d{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-1.003797px;}
.ls2a{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.963202px;}
.ls2e{letter-spacing:-0.923068px;}
.ls46{letter-spacing:-0.912640px;}
.ls16{letter-spacing:-0.911536px;}
.ls44{letter-spacing:-0.877347px;}
.ls33{letter-spacing:-0.875387px;}
.ls45{letter-spacing:-0.867965px;}
.ls2f{letter-spacing:-0.838227px;}
.ls43{letter-spacing:-0.834400px;}
.ls34{letter-spacing:-0.832536px;}
.ls21{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls40{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.262200px;}
.ls3f{letter-spacing:-0.206400px;}
.ls29{letter-spacing:-0.158400px;}
.ls9{letter-spacing:-0.126252px;}
.lsc{letter-spacing:-0.114228px;}
.ls39{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.081000px;}
.ls6{letter-spacing:-0.078156px;}
.lsd{letter-spacing:-0.066132px;}
.lse{letter-spacing:-0.064800px;}
.ls3e{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.036072px;}
.ls7{letter-spacing:-0.018036px;}
.ls24{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.024048px;}
.ls42{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.078156px;}
.ls4{letter-spacing:0.090180px;}
.ls3{letter-spacing:0.096192px;}
.lsa{letter-spacing:0.102204px;}
.ls27{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.108216px;}
.ls1e{letter-spacing:0.109200px;}
.ls36{letter-spacing:0.109440px;}
.ls11{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.162324px;}
.ls12{letter-spacing:0.174240px;}
.ls22{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.256200px;}
.ls23{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.262200px;}
.ls37{letter-spacing:0.289440px;}
.ls1a{letter-spacing:0.305400px;}
.ls26{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.414600px;}
.ls31{letter-spacing:0.700922px;}
.ls1b{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.777441px;}
.ls19{letter-spacing:48.942720px;}
.ls28{letter-spacing:49.961280px;}
.ls30{letter-spacing:59.321280px;}
.ls10{letter-spacing:64.421280px;}
.ls41{letter-spacing:129.941280px;}
.ls3b{letter-spacing:133.541280px;}
.ls38{letter-spacing:134.261280px;}
.ls3d{letter-spacing:138.581280px;}
.ls3c{letter-spacing:847.560000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws33{word-spacing:-66.240000px;}
.ws10{word-spacing:-21.060000px;}
.ws17{word-spacing:-17.280000px;}
.ws2a{word-spacing:-17.028901px;}
.ws2b{word-spacing:-17.005315px;}
.ws18{word-spacing:-16.974600px;}
.ws1c{word-spacing:-16.865400px;}
.ws14{word-spacing:-16.822200px;}
.ws15{word-spacing:-16.712400px;}
.ws1a{word-spacing:-16.669200px;}
.ws1b{word-spacing:-16.560000px;}
.ws34{word-spacing:-16.450800px;}
.ws1e{word-spacing:-16.297800px;}
.ws31{word-spacing:-16.254600px;}
.ws37{word-spacing:-15.990186px;}
.ws1d{word-spacing:-15.948000px;}
.ws29{word-spacing:-15.840000px;}
.ws28{word-spacing:-15.534000px;}
.ws35{word-spacing:-15.426000px;}
.ws36{word-spacing:-15.371828px;}
.ws21{word-spacing:-15.300000px;}
.ws27{word-spacing:-15.226440px;}
.ws32{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.126192px;}
.ws22{word-spacing:-15.046800px;}
.ws26{word-spacing:-14.993280px;}
.ws12{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.572800px;}
.ws24{word-spacing:-14.414400px;}
.ws25{word-spacing:-13.600800px;}
.ws30{word-spacing:-13.422954px;}
.ws16{word-spacing:-11.892488px;}
.wsf{word-spacing:-10.440000px;}
.ws20{word-spacing:-9.728640px;}
.ws13{word-spacing:-9.720000px;}
.ws1f{word-spacing:-9.715680px;}
.ws11{word-spacing:-8.786880px;}
.ws1{word-spacing:-1.296000px;}
.ws19{word-spacing:-0.077760px;}
.wsb{word-spacing:-0.018036px;}
.ws9{word-spacing:-0.012024px;}
.ws7{word-spacing:-0.006012px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.012024px;}
.ws4{word-spacing:0.108216px;}
.ws5{word-spacing:0.126252px;}
.wsc{word-spacing:0.156312px;}
.ws3{word-spacing:0.168336px;}
.wsd{word-spacing:0.183600px;}
.wse{word-spacing:0.199800px;}
.wsa{word-spacing:0.204408px;}
.ws8{word-spacing:0.216432px;}
.ws2e{word-spacing:103.289402px;}
.ws2f{word-spacing:103.543924px;}
.ws2d{word-spacing:103.611797px;}
.ws2c{word-spacing:119.547949px;}
._3{margin-left:-12.960000px;}
._0{margin-left:-6.600000px;}
._b{margin-left:-5.139315px;}
._6{margin-left:-3.105345px;}
._4{margin-left:-1.322640px;}
._1{width:1.296000px;}
._5{width:3.252480px;}
._d{width:4.380480px;}
._2{width:5.760000px;}
._e{width:7.958880px;}
._f{width:9.570240px;}
._a{width:10.848767px;}
._9{width:151.773699px;}
._8{width:493.666722px;}
._7{width:832.369367px;}
._c{width:847.962240px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,154);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(107,108,111);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:42.710938px;}
.fs13{font-size:42.778733px;}
.fs15{font-size:48.240000px;}
.fs1b{font-size:48.284006px;}
.fs22{font-size:48.392138px;}
.fs12{font-size:48.880296px;}
.fs25{font-size:50.338794px;}
.fs1a{font-size:53.534529px;}
.fs19{font-size:53.619370px;}
.fsa{font-size:54.000000px;}
.fs1d{font-size:55.170790px;}
.fs1c{font-size:55.247310px;}
.fs20{font-size:55.294345px;}
.fs21{font-size:55.371036px;}
.fs23{font-size:57.518653px;}
.fs24{font-size:57.598430px;}
.fsf{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.120000px;}
.fs18{font-size:61.170199px;}
.fs17{font-size:61.255040px;}
.fs1e{font-size:62.991941px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.240000px;}
.fs11{font-size:66.520000px;}
.fs10{font-size:66.612261px;}
.fs0{font-size:72.000000px;}
.fs16{font-size:77.760000px;}
.fsc{font-size:84.240000px;}
.fs1f{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs7{font-size:174.000000px;}
.fs8{font-size:288.000000px;}
.y1f9{bottom:-0.139480px;}
.y0{bottom:0.000000px;}
.y2fe{bottom:0.947183px;}
.y91{bottom:1.489365px;}
.y2ea{bottom:2.877990px;}
.y15e{bottom:3.420000px;}
.y2ba{bottom:3.600000px;}
.y1c9{bottom:3.627537px;}
.y15f{bottom:3.780000px;}
.yfe{bottom:4.320000px;}
.y2ce{bottom:4.680000px;}
.y163{bottom:5.400000px;}
.y14f{bottom:5.610000px;}
.y2a0{bottom:6.120000px;}
.y101{bottom:6.300000px;}
.yb6{bottom:6.372743px;}
.y108{bottom:6.480000px;}
.y290{bottom:6.660000px;}
.y292{bottom:6.840000px;}
.y113{bottom:7.020000px;}
.y150{bottom:7.050000px;}
.y161{bottom:7.380000px;}
.y106{bottom:7.560000px;}
.y104{bottom:7.740000px;}
.y1fd{bottom:7.785892px;}
.y155{bottom:8.460000px;}
.y157{bottom:8.640000px;}
.y152{bottom:10.440000px;}
.y153{bottom:10.800000px;}
.y2a9{bottom:12.060000px;}
.yff{bottom:12.960000px;}
.ybb{bottom:14.055966px;}
.y1fb{bottom:14.596156px;}
.yb9{bottom:14.886457px;}
.y2ad{bottom:14.940000px;}
.y1f8{bottom:15.375127px;}
.y2b4{bottom:15.480000px;}
.y2fd{bottom:17.141516px;}
.y2b1{bottom:18.360000px;}
.y2e9{bottom:18.427358px;}
.y2a7{bottom:20.700000px;}
.yb0{bottom:20.848361px;}
.y2b8{bottom:20.880000px;}
.y2cb{bottom:20.910000px;}
.y2c3{bottom:20.925000px;}
.y28e{bottom:21.060000px;}
.y8c{bottom:21.578867px;}
.yfd{bottom:21.630000px;}
.y1c8{bottom:23.777476px;}
.yba{bottom:26.784504px;}
.yb8{bottom:27.614994px;}
.y2a8{bottom:29.340000px;}
.yb2{bottom:29.829862px;}
.yb4{bottom:29.965452px;}
.y1f1{bottom:32.037318px;}
.y2ac{bottom:32.220000px;}
.y2b3{bottom:32.760000px;}
.y2f3{bottom:34.512788px;}
.y2df{bottom:35.126864px;}
.y2b0{bottom:35.640000px;}
.y2aa{bottom:37.800000px;}
.y2b7{bottom:38.160000px;}
.y1c1{bottom:42.251554px;}
.y302{bottom:43.576164px;}
.y304{bottom:43.876920px;}
.y300{bottom:43.879313px;}
.y2ec{bottom:48.642918px;}
.y2ee{bottom:48.658256px;}
.y2f0{bottom:48.698903px;}
.ybc{bottom:51.936501px;}
.y1cd{bottom:52.112598px;}
.y1cf{bottom:52.222891px;}
.y1d1{bottom:52.346758px;}
.y1cb{bottom:52.647095px;}
.y2af{bottom:52.965000px;}
.y2b6{bottom:55.440000px;}
.y1eb{bottom:57.059299px;}
.y44{bottom:57.636000px;}
.y2f4{bottom:66.802212px;}
.y2e0{bottom:67.375507px;}
.y43{bottom:77.796000px;}
.y1f2{bottom:79.442876px;}
.y1c2{bottom:88.573769px;}
.y8d{bottom:95.157737px;}
.y4{bottom:97.125005px;}
.y2f5{bottom:99.090041px;}
.y2e1{bottom:99.644857px;}
.y70{bottom:109.836000px;}
.y117{bottom:116.676000px;}
.y1f3{bottom:126.823949px;}
.y8a{bottom:127.116000px;}
.y1ec{bottom:127.627407px;}
.y168{bottom:128.016000px;}
.ye5{bottom:130.356000px;}
.y23e{bottom:130.536000px;}
.y2f6{bottom:131.383454px;}
.y2e2{bottom:131.893500px;}
.y6f{bottom:133.956000px;}
.y1c3{bottom:134.879864px;}
.y1f{bottom:139.264499px;}
.y6e{bottom:144.396000px;}
.y1bf{bottom:145.296000px;}
.yae{bottom:151.230000px;}
.ye4{bottom:152.130000px;}
.y23d{bottom:152.310000px;}
.y1e9{bottom:156.345295px;}
.y1ee{bottom:156.500087px;}
.y1f0{bottom:156.538125px;}
.y1e7{bottom:156.727894px;}
.y266{bottom:160.770000px;}
.y89{bottom:161.490000px;}
.yad{bottom:162.570000px;}
.y2f7{bottom:163.692823px;}
.y2e3{bottom:164.142144px;}
.y1be{bottom:167.250000px;}
.y116{bottom:168.330000px;}
.y8e{bottom:168.708007px;}
.y6d{bottom:169.410000px;}
.y23c{bottom:171.390000px;}
.ye3{bottom:173.910000px;}
.y1f4{bottom:174.227977px;}
.y141{bottom:178.770000px;}
.y115{bottom:179.670000px;}
.y6c{bottom:179.850000px;}
.y1c4{bottom:181.177475px;}
.y265{bottom:182.550000px;}
.y88{bottom:185.610000px;}
.yac{bottom:187.050000px;}
.y1bd{bottom:189.030000px;}
.y2dd{bottom:189.210000px;}
.y23b{bottom:190.290000px;}
.y2f8{bottom:195.978258px;}
.y140{bottom:196.050000px;}
.y2e4{bottom:196.390787px;}
.y16{bottom:196.933500px;}
.y87{bottom:196.950000px;}
.y6b{bottom:197.130000px;}
.y264{bottom:201.270000px;}
.y18f{bottom:202.890000px;}
.y2dc{bottom:206.310000px;}
.yab{bottom:208.830000px;}
.y23a{bottom:209.370000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.ye2{bottom:210.810000px;}
.y13f{bottom:213.330000px;}
.y2db{bottom:217.650000px;}
.y2f2{bottom:217.740000px;}
.y263{bottom:218.730000px;}
.y18e{bottom:220.170000px;}
.y1f5{bottom:221.616701px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y6a{bottom:222.330000px;}
.y1c5{bottom:227.483571px;}
.y2a4{bottom:227.775000px;}
.y2f9{bottom:228.271671px;}
.y2e5{bottom:228.639430px;}
.yaa{bottom:230.610000px;}
.ye1{bottom:232.590000px;}
.y1bc{bottom:232.770000px;}
.y69{bottom:233.670000px;}
.y114{bottom:234.390000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y262{bottom:237.810000px;}
.y1e5{bottom:238.890000px;}
.y8f{bottom:242.267502px;}
.y303{bottom:243.178243px;}
.y167{bottom:245.910000px;}
.y239{bottom:246.090000px;}
.y1aa{bottom:247.530000px;}
.y18d{bottom:247.890000px;}
.y112{bottom:249.510000px;}
.ya9{bottom:252.390000px;}
.ye0{bottom:254.370000px;}
.y1bb{bottom:254.550000px;}
.y13e{bottom:254.730000px;}
.y261{bottom:256.710000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y2fa{bottom:260.557107px;}
.y305{bottom:260.756547px;}
.y2e6{bottom:260.888074px;}
.y1e4{bottom:261.750000px;}
.y2d0{bottom:261.975000px;}
.y301{bottom:262.922857px;}
.y166{bottom:263.190000px;}
.y2f1{bottom:263.840684px;}
.y13d{bottom:264.990000px;}
.y68{bottom:265.170000px;}
.y238{bottom:267.870000px;}
.y1f6{bottom:269.020729px;}
.y1a9{bottom:269.310000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y2a3{bottom:273.135000px;}
.y111{bottom:273.495000px;}
.y1c6{bottom:273.806634px;}
.y260{bottom:275.655000px;}
.ydf{bottom:276.375000px;}
.y165{bottom:280.515000px;}
.y2ff{bottom:282.069149px;}
.y13c{bottom:282.315000px;}
.y1e3{bottom:283.755000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y67{bottom:287.175000px;}
.y18c{bottom:289.155000px;}
.ya8{bottom:289.335000px;}
.y110{bottom:290.595000px;}
.y1a8{bottom:291.135000px;}
.y2fb{bottom:292.866475px;}
.y2e7{bottom:293.136717px;}
.y25f{bottom:294.735000px;}
.y2cf{bottom:295.635000px;}
.y2a2{bottom:296.715000px;}
.y164{bottom:297.795000px;}
.yde{bottom:298.155000px;}
.y18b{bottom:299.595000px;}
.y237{bottom:304.815000px;}
.y1e2{bottom:305.535000px;}
.y13b{bottom:306.435000px;}
.y10f{bottom:307.875000px;}
.y66{bottom:308.955000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.ya7{bottom:311.115000px;}
.y162{bottom:312.735000px;}
.y1a7{bottom:312.915000px;}
.y2a1{bottom:313.995000px;}
.y90{bottom:315.845450px;}
.y1f7{bottom:316.401801px;}
.y18a{bottom:316.875000px;}
.y2cd{bottom:317.235000px;}
.y13a{bottom:317.775000px;}
.ydd{bottom:319.935000px;}
.y1c7{bottom:320.104245px;}
.y86{bottom:322.455000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y2fc{bottom:325.159889px;}
.y2e8{bottom:325.385361px;}
.y10e{bottom:326.235000px;}
.y236{bottom:326.595000px;}
.y29f{bottom:328.935000px;}
.y65{bottom:330.735000px;}
.y25e{bottom:331.455000px;}
.ya6{bottom:332.895000px;}
.y1ba{bottom:335.055000px;}
.y160{bottom:335.235000px;}
.y2cc{bottom:337.395000px;}
.y189{bottom:340.995000px;}
.y10d{bottom:343.335000px;}
.y1e1{bottom:343.515000px;}
.y85{bottom:344.235000px;}
.yd{bottom:348.133500px;}
.y1a6{bottom:349.815000px;}
.y29e{bottom:351.795000px;}
.y188{bottom:352.335000px;}
.y64{bottom:352.515000px;}
.y25d{bottom:353.415000px;}
.ya5{bottom:354.855000px;}
.y15d{bottom:356.115000px;}
.ydc{bottom:356.835000px;}
.y10c{bottom:360.615000px;}
.y235{bottom:363.495000px;}
.y84{bottom:366.015000px;}
.y1a5{bottom:371.595000px;}
.y2ca{bottom:371.955000px;}
.y29d{bottom:372.135000px;}
.y15c{bottom:373.395000px;}
.y63{bottom:374.295000px;}
.y2bc{bottom:374.835000px;}
.y25c{bottom:375.195000px;}
.ya4{bottom:376.635000px;}
.ydb{bottom:378.615000px;}
.y10b{bottom:378.975000px;}
.y1e0{bottom:380.235000px;}
.yc{bottom:386.785499px;}
.y139{bottom:387.075000px;}
.y83{bottom:387.975000px;}
.y29c{bottom:392.505000px;}
.y1a4{bottom:393.375000px;}
.y2bb{bottom:393.585000px;}
.y15b{bottom:395.355000px;}
.y62{bottom:396.255000px;}
.ya3{bottom:398.415000px;}
.y234{bottom:400.215000px;}
.yda{bottom:400.395000px;}
.y1df{bottom:402.195000px;}
.y2c9{bottom:406.365000px;}
.yb{bottom:408.044999px;}
.y2b9{bottom:408.525000px;}
.y138{bottom:408.855000px;}
.y82{bottom:409.755000px;}
.y25b{bottom:411.915000px;}
.y29b{bottom:412.845000px;}
.y10a{bottom:413.355000px;}
.y1a3{bottom:415.335000px;}
.y187{bottom:416.055000px;}
.y15a{bottom:417.495000px;}
.y61{bottom:418.035000px;}
.ya2{bottom:420.195000px;}
.yd9{bottom:422.175000px;}
.y1b9{bottom:422.355000px;}
.y1de{bottom:423.975000px;}
.y2b5{bottom:429.045000px;}
.y137{bottom:430.635000px;}
.y25a{bottom:430.995000px;}
.y81{bottom:431.535000px;}
.y109{bottom:431.895000px;}
.y21b{bottom:432.075000px;}
.y29a{bottom:433.185000px;}
.y1a2{bottom:437.115000px;}
.y186{bottom:438.015000px;}
.y159{bottom:439.455000px;}
.y60{bottom:439.815000px;}
.y2c8{bottom:440.925000px;}
.ya1{bottom:441.975000px;}
.y1b8{bottom:444.135000px;}
.yd8{bottom:444.855000px;}
.y1dd{bottom:445.755000px;}
.y107{bottom:450.255000px;}
.y136{bottom:452.415000px;}
.y21a{bottom:453.855000px;}
.y299{bottom:454.245000px;}
.y1a1{bottom:458.895000px;}
.y185{bottom:459.795000px;}
.y158{bottom:461.595000px;}
.ya0{bottom:463.935000px;}
.y1b7{bottom:465.915000px;}
.y105{bottom:467.535000px;}
.y259{bottom:467.715000px;}
.y80{bottom:468.435000px;}
.y298{bottom:471.525000px;}
.y135{bottom:474.375000px;}
.y2c7{bottom:475.485000px;}
.y219{bottom:475.815000px;}
.y5f{bottom:476.715000px;}
.y1a0{bottom:480.675000px;}
.y184{bottom:481.575000px;}
.y156{bottom:483.555000px;}
.yd7{bottom:485.355000px;}
.y103{bottom:485.895000px;}
.y258{bottom:489.675000px;}
.y7f{bottom:490.215000px;}
.y297{bottom:491.865000px;}
.y2c6{bottom:492.585000px;}
.y233{bottom:495.795000px;}
.y134{bottom:496.155000px;}
.y218{bottom:497.595000px;}
.y2b2{bottom:497.985000px;}
.y5e{bottom:498.495000px;}
.y9f{bottom:500.655000px;}
.y19f{bottom:502.455000px;}
.y1b6{bottom:502.815000px;}
.y183{bottom:503.355000px;}
.y102{bottom:504.435000px;}
.y154{bottom:505.695000px;}
.yd6{bottom:507.135000px;}
.y2c5{bottom:509.865000px;}
.y257{bottom:511.455000px;}
.y7e{bottom:511.995000px;}
.y296{bottom:512.205000px;}
.y232{bottom:517.575000px;}
.y133{bottom:517.935000px;}
.y217{bottom:519.375000px;}
.y5d{bottom:520.275000px;}
.ya{bottom:520.864502px;}
.y100{bottom:521.535000px;}
.y9e{bottom:522.435000px;}
.y289{bottom:522.795000px;}
.y1b5{bottom:524.595000px;}
.y182{bottom:525.135000px;}
.y1dc{bottom:526.215000px;}
.y151{bottom:527.655000px;}
.yd5{bottom:528.915000px;}
.y295{bottom:532.545000px;}
.y7d{bottom:533.775000px;}
.y9{bottom:538.864499px;}
.y132{bottom:539.715000px;}
.yfc{bottom:540.255000px;}
.y216{bottom:541.155000px;}
.y5c{bottom:542.055000px;}
.y2ae{bottom:544.245000px;}
.y9d{bottom:544.395000px;}
.y2c4{bottom:544.425000px;}
.y288{bottom:544.575000px;}
.y1b4{bottom:546.375000px;}
.y181{bottom:547.095000px;}
.y1db{bottom:547.995000px;}
.y256{bottom:548.175000px;}
.yd4{bottom:550.695000px;}
.y294{bottom:552.885000px;}
.y14e{bottom:553.575000px;}
.y231{bottom:554.295000px;}
.y7c{bottom:555.585000px;}
.y8{bottom:556.864499px;}
.y131{bottom:561.705000px;}
.y215{bottom:562.965000px;}
.y5b{bottom:563.865000px;}
.y19e{bottom:565.665000px;}
.y9c{bottom:566.205000px;}
.y287{bottom:566.385000px;}
.y1b3{bottom:568.185000px;}
.y1da{bottom:569.985000px;}
.y255{bottom:570.165000px;}
.yd3{bottom:572.685000px;}
.y293{bottom:573.225000px;}
.y230{bottom:573.405000px;}
.y2da{bottom:576.105000px;}
.y7b{bottom:577.545000px;}
.y2c2{bottom:578.985000px;}
.y130{bottom:583.485000px;}
.y180{bottom:583.845000px;}
.y214{bottom:584.925000px;}
.y5a{bottom:585.825000px;}
.y19d{bottom:587.445000px;}
.y9b{bottom:587.985000px;}
.y286{bottom:588.165000px;}
.y254{bottom:589.065000px;}
.y1b2{bottom:590.145000px;}
.y1d9{bottom:591.765000px;}
.y2d9{bottom:593.385000px;}
.y14d{bottom:594.105000px;}
.y291{bottom:594.330000px;}
.yd2{bottom:596.085000px;}
.yfb{bottom:596.985000px;}
.y7a{bottom:599.325000px;}
.y12f{bottom:605.265000px;}
.y17f{bottom:605.625000px;}
.y213{bottom:606.705000px;}
.y59{bottom:607.605000px;}
.y253{bottom:607.965000px;}
.y19c{bottom:609.225000px;}
.y9a{bottom:609.765000px;}
.y22f{bottom:610.125000px;}
.y2d8{bottom:610.665000px;}
.y2ab{bottom:610.710000px;}
.y1b1{bottom:611.925000px;}
.y2c1{bottom:613.410000px;}
.y1d8{bottom:613.545000px;}
.y28f{bottom:614.670000px;}
.y79{bottom:621.105000px;}
.y12e{bottom:627.045000px;}
.y17e{bottom:627.585000px;}
.y212{bottom:628.485000px;}
.y58{bottom:629.385000px;}
.y14c{bottom:630.105000px;}
.y19b{bottom:631.185000px;}
.yfa{bottom:631.545000px;}
.y285{bottom:631.905000px;}
.y22e{bottom:632.085000px;}
.y1b0{bottom:633.705000px;}
.y28d{bottom:634.830000px;}
.y1d7{bottom:635.325000px;}
.y78{bottom:642.885000px;}
.y2d7{bottom:643.065000px;}
.y7{bottom:645.510000px;}
.y252{bottom:645.945000px;}
.y99{bottom:646.665000px;}
.y42{bottom:647.589450px;}
.y2c0{bottom:647.970000px;}
.y12d{bottom:648.825000px;}
.y17d{bottom:649.365000px;}
.y57{bottom:651.165000px;}
.y14b{bottom:651.885000px;}
.y19a{bottom:652.965000px;}
.yf9{bottom:653.325000px;}
.y1af{bottom:656.925000px;}
.y2a6{bottom:657.870000px;}
.yd1{bottom:658.185000px;}
.y2d6{bottom:660.525000px;}
.y41{bottom:663.154950px;}
.y77{bottom:664.845000px;}
.y251{bottom:665.025000px;}
.y211{bottom:665.385000px;}
.y6{bottom:666.771000px;}
.y98{bottom:668.445000px;}
.y284{bottom:668.625000px;}
.y22d{bottom:668.805000px;}
.y1d6{bottom:669.345000px;}
.y28c{bottom:670.830000px;}
.y17c{bottom:671.145000px;}
.y56{bottom:673.125000px;}
.y14a{bottom:673.665000px;}
.y199{bottom:674.745000px;}
.yf8{bottom:675.285000px;}
.y2d5{bottom:677.805000px;}
.y40{bottom:678.639450px;}
.yd0{bottom:679.965000px;}
.y2bf{bottom:682.350000px;}
.y250{bottom:683.925000px;}
.y12c{bottom:685.725000px;}
.y76{bottom:686.625000px;}
.y210{bottom:687.165000px;}
.y1d5{bottom:688.065000px;}
.y97{bottom:690.225000px;}
.y22c{bottom:690.585000px;}
.y274{bottom:690.945000px;}
.y17b{bottom:692.925000px;}
.y3f{bottom:694.445190px;}
.y55{bottom:694.905000px;}
.y149{bottom:695.625000px;}
.y198{bottom:696.525000px;}
.yf7{bottom:697.065000px;}
.ycf{bottom:701.925000px;}
.y24f{bottom:702.825000px;}
.y2d4{bottom:706.245000px;}
.y2de{bottom:706.395000px;}
.y12b{bottom:707.505000px;}
.y75{bottom:708.405000px;}
.y20f{bottom:708.945000px;}
.y273{bottom:709.845000px;}
.y3e{bottom:711.729690px;}
.y96{bottom:712.005000px;}
.y28b{bottom:712.050000px;}
.y283{bottom:712.365000px;}
.y17a{bottom:714.885000px;}
.y1ae{bottom:716.145000px;}
.y1d4{bottom:716.505000px;}
.y1ea{bottom:716.595000px;}
.y1ed{bottom:717.335490px;}
.y148{bottom:717.405000px;}
.y54{bottom:718.305000px;}
.y2be{bottom:718.350000px;}
.y24e{bottom:721.905000px;}
.y23{bottom:722.563950px;}
.yce{bottom:723.705000px;}
.y2ef{bottom:724.458075px;}
.y5{bottom:726.298500px;}
.y22b{bottom:727.485000px;}
.y3d{bottom:728.924010px;}
.y272{bottom:728.925000px;}
.y12a{bottom:729.285000px;}
.y2a5{bottom:729.330000px;}
.y28a{bottom:729.510000px;}
.y74{bottom:730.185000px;}
.y20e{bottom:730.725000px;}
.y197{bottom:733.425000px;}
.yf6{bottom:733.785000px;}
.y95{bottom:733.965000px;}
.y282{bottom:734.145000px;}
.y179{bottom:736.665000px;}
.y24d{bottom:740.805000px;}
.y2ed{bottom:745.164695px;}
.ycd{bottom:745.485000px;}
.y3c{bottom:746.208510px;}
.y271{bottom:747.825000px;}
.y22a{bottom:749.265000px;}
.y147{bottom:750.885000px;}
.y129{bottom:751.245000px;}
.y3{bottom:752.599495px;}
.y20d{bottom:754.125000px;}
.y196{bottom:755.205000px;}
.yf5{bottom:755.745000px;}
.y281{bottom:755.925000px;}
.y178{bottom:758.445000px;}
.y1ef{bottom:759.230313px;}
.y1fc{bottom:759.804212px;}
.y24c{bottom:759.885000px;}
.y3b{bottom:763.493010px;}
.y73{bottom:763.665000px;}
.y1c0{bottom:764.820000px;}
.y1ad{bottom:764.925000px;}
.y2eb{bottom:765.871315px;}
.yb7{bottom:766.950000px;}
.y94{bottom:767.085000px;}
.y146{bottom:768.345000px;}
.y2bd{bottom:772.710000px;}
.y128{bottom:773.025000px;}
.y195{bottom:776.985000px;}
.yf4{bottom:777.525000px;}
.y280{bottom:777.885000px;}
.y1fa{bottom:778.168968px;}
.y24b{bottom:778.785000px;}
.y177{bottom:780.225000px;}
.y53{bottom:780.405000px;}
.y3a{bottom:780.687330px;}
.ycc{bottom:782.925000px;}
.y270{bottom:784.725000px;}
.y145{bottom:785.625000px;}
.y229{bottom:786.165000px;}
.y72{bottom:792.285000px;}
.y8b{bottom:792.480000px;}
.y1d0{bottom:793.178878px;}
.y127{bottom:794.805000px;}
.y22{bottom:797.767950px;}
.y39{bottom:797.971830px;}
.y194{bottom:798.945000px;}
.yf3{bottom:799.305000px;}
.y27f{bottom:799.665000px;}
.y176{bottom:802.005000px;}
.y52{bottom:802.365000px;}
.y144{bottom:802.905000px;}
.ycb{bottom:806.145000px;}
.y26f{bottom:806.505000px;}
.y228{bottom:807.945000px;}
.y1ce{bottom:809.722829px;}
.y38{bottom:815.256330px;}
.y24a{bottom:815.685000px;}
.y20c{bottom:816.405000px;}
.y126{bottom:816.585000px;}
.y143{bottom:820.005000px;}
.y193{bottom:820.725000px;}
.yf2{bottom:821.085000px;}
.y27e{bottom:821.445000px;}
.y175{bottom:823.965000px;}
.y51{bottom:824.145000px;}
.yaf{bottom:825.937195px;}
.y1cc{bottom:826.266780px;}
.yca{bottom:827.925000px;}
.y37{bottom:832.450650px;}
.y142{bottom:833.505000px;}
.y249{bottom:837.465000px;}
.y20b{bottom:838.185000px;}
.y125{bottom:838.590000px;}
.y1ca{bottom:842.174425px;}
.y192{bottom:842.370000px;}
.yf1{bottom:842.910000px;}
.y26e{bottom:843.270000px;}
.y227{bottom:844.710000px;}
.y174{bottom:845.790000px;}
.y50{bottom:845.970000px;}
.y36{bottom:849.735150px;}
.yc9{bottom:849.750000px;}
.y1e8{bottom:856.794613px;}
.y1e6{bottom:857.368512px;}
.y248{bottom:859.290000px;}
.y20a{bottom:860.010000px;}
.y124{bottom:860.370000px;}
.yf0{bottom:864.870000px;}
.y27d{bottom:865.050000px;}
.y26d{bottom:865.230000px;}
.y226{bottom:866.670000px;}
.y35{bottom:866.929470px;}
.y173{bottom:867.570000px;}
.y4f{bottom:867.750000px;}
.yc8{bottom:871.530000px;}
.y247{bottom:878.010000px;}
.y2{bottom:879.369000px;}
.y191{bottom:879.810000px;}
.y123{bottom:882.150000px;}
.y34{bottom:884.213970px;}
.yef{bottom:886.650000px;}
.y26c{bottom:887.010000px;}
.y172{bottom:889.350000px;}
.y4e{bottom:889.530000px;}
.yc7{bottom:893.490000px;}
.yb5{bottom:894.581131px;}
.y246{bottom:895.470000px;}
.y21{bottom:896.767950px;}
.y209{bottom:896.910000px;}
.y33{bottom:901.408290px;}
.y190{bottom:901.590000px;}
.y225{bottom:903.390000px;}
.y122{bottom:903.930000px;}
.y26b{bottom:908.790000px;}
.y4d{bottom:911.490000px;}
.y245{bottom:914.550000px;}
.yc6{bottom:915.270000px;}
.y208{bottom:918.690000px;}
.y32{bottom:918.692790px;}
.yee{bottom:923.370000px;}
.y224{bottom:925.170000px;}
.y121{bottom:925.710000px;}
.y171{bottom:926.250000px;}
.y26a{bottom:930.570000px;}
.y4c{bottom:933.270000px;}
.y244{bottom:933.450000px;}
.y31{bottom:935.977290px;}
.y207{bottom:940.650000px;}
.yed{bottom:945.330000px;}
.y27c{bottom:945.510000px;}
.y223{bottom:947.130000px;}
.y170{bottom:948.030000px;}
.yc5{bottom:951.990000px;}
.y243{bottom:952.350000px;}
.y30{bottom:953.171610px;}
.y4b{bottom:955.050000px;}
.y120{bottom:962.610000px;}
.y206{bottom:963.510000px;}
.y222{bottom:966.030000px;}
.y1{bottom:966.726000px;}
.yec{bottom:967.110000px;}
.y27b{bottom:967.470000px;}
.y16f{bottom:969.810000px;}
.y2f{bottom:970.456110px;}
.y242{bottom:971.430000px;}
.yc4{bottom:973.950000px;}
.y4a{bottom:976.830000px;}
.y11f{bottom:984.390000px;}
.y221{bottom:985.110000px;}
.y205{bottom:985.290000px;}
.y2e{bottom:987.740610px;}
.yeb{bottom:988.890000px;}
.y269{bottom:989.250000px;}
.y241{bottom:990.330000px;}
.y16e{bottom:991.770000px;}
.yc3{bottom:995.730000px;}
.y49{bottom:998.610000px;}
.y2d{bottom:1004.934930px;}
.y11e{bottom:1006.170000px;}
.y204{bottom:1007.250000px;}
.y268{bottom:1008.150000px;}
.y240{bottom:1009.410000px;}
.yea{bottom:1010.670000px;}
.y27a{bottom:1011.030000px;}
.y16d{bottom:1013.550000px;}
.yc2{bottom:1017.510000px;}
.y220{bottom:1018.950000px;}
.y48{bottom:1020.570000px;}
.y2c{bottom:1022.219430px;}
.y24{bottom:1024.796250px;}
.y267{bottom:1027.230000px;}
.yb3{bottom:1027.798581px;}
.y11d{bottom:1028.130000px;}
.y203{bottom:1029.030000px;}
.ye9{bottom:1032.450000px;}
.y279{bottom:1032.810000px;}
.y16c{bottom:1035.330000px;}
.y21f{bottom:1038.030000px;}
.yc1{bottom:1039.290000px;}
.y2b{bottom:1039.503990px;}
.y23f{bottom:1046.130000px;}
.yb1{bottom:1048.137123px;}
.y11c{bottom:1049.910000px;}
.y202{bottom:1052.070000px;}
.ye8{bottom:1054.410000px;}
.y278{bottom:1054.770000px;}
.y2a{bottom:1056.698310px;}
.y16b{bottom:1056.930000px;}
.y47{bottom:1057.290000px;}
.yc0{bottom:1061.250000px;}
.y2d3{bottom:1064.670000px;}
.y1d3{bottom:1066.650000px;}
.y11b{bottom:1071.690000px;}
.y201{bottom:1073.850000px;}
.y29{bottom:1073.982810px;}
.y21e{bottom:1075.830000px;}
.ye7{bottom:1076.190000px;}
.y277{bottom:1076.550000px;}
.y46{bottom:1076.910000px;}
.y2d2{bottom:1082.130000px;}
.ybf{bottom:1083.030000px;}
.y1d2{bottom:1084.110000px;}
.y28{bottom:1091.177130px;}
.y11a{bottom:1093.470000px;}
.y21d{bottom:1094.910000px;}
.y16a{bottom:1095.270000px;}
.y200{bottom:1096.890000px;}
.ye6{bottom:1097.970000px;}
.y276{bottom:1098.330000px;}
.y2d1{bottom:1099.410000px;}
.y45{bottom:1101.210000px;}
.y27{bottom:1108.461630px;}
.y21c{bottom:1113.810000px;}
.y119{bottom:1115.430000px;}
.y1ff{bottom:1118.670000px;}
.ybe{bottom:1119.750000px;}
.y1ac{bottom:1123.920000px;}
.y93{bottom:1125.360000px;}
.y26{bottom:1125.746130px;}
.y275{bottom:1136.880000px;}
.y169{bottom:1137.240000px;}
.y118{bottom:1138.140000px;}
.y1fe{bottom:1140.660000px;}
.ybd{bottom:1141.740000px;}
.y1ab{bottom:1142.460000px;}
.y71{bottom:1142.640000px;}
.y92{bottom:1142.820000px;}
.y25{bottom:1142.940450px;}
.y20{bottom:1168.334700px;}
.h2b{height:17.100000px;}
.h2f{height:17.280000px;}
.h2e{height:18.360000px;}
.h1e{height:18.419213px;}
.h2d{height:18.540000px;}
.h61{height:18.900000px;}
.h23{height:19.830078px;}
.h3f{height:20.086902px;}
.h55{height:20.160000px;}
.h57{height:20.196000px;}
.h56{height:20.340000px;}
.h58{height:20.376000px;}
.h37{height:20.880000px;}
.h32{height:20.916000px;}
.h59{height:21.420000px;}
.h52{height:21.600000px;}
.h35{height:21.960000px;}
.h36{height:22.140000px;}
.h30{height:22.320000px;}
.h4e{height:22.955946px;}
.h33{height:24.300000px;}
.h4d{height:26.399338px;}
.h17{height:28.685391px;}
.h4c{height:28.861516px;}
.h70{height:31.421778px;}
.h7{height:32.130000px;}
.h69{height:32.442442px;}
.h1f{height:34.067058px;}
.h62{height:34.380000px;}
.h63{height:34.416000px;}
.h54{height:34.560000px;}
.h65{height:35.591133px;}
.h2a{height:36.396000px;}
.h64{height:36.492188px;}
.h19{height:38.158594px;}
.hf{height:39.313477px;}
.h21{height:40.168620px;}
.he{height:41.860898px;}
.h24{height:44.546174px;}
.h22{height:44.616882px;}
.h5d{height:45.720000px;}
.h6{height:45.900000px;}
.h3a{height:46.122187px;}
.h29{height:46.221680px;}
.h5f{height:46.260000px;}
.h53{height:46.659558px;}
.h2c{height:47.344922px;}
.h3{height:48.195000px;}
.h11{height:48.871406px;}
.hc{height:49.992188px;}
.h46{height:50.358709px;}
.h6c{height:50.471488px;}
.h20{height:50.980621px;}
.h3b{height:51.151992px;}
.h5c{height:51.660000px;}
.h73{height:52.501789px;}
.h2{height:55.080000px;}
.h42{height:55.834841px;}
.h41{height:55.923327px;}
.h38{height:56.698594px;}
.h4b{height:57.541410px;}
.h4a{height:57.621217px;}
.h67{height:57.670273px;}
.h68{height:57.750260px;}
.h71{height:58.037199px;}
.h34{height:58.621992px;}
.h18{height:58.651172px;}
.h6e{height:59.990158px;}
.h6f{height:60.073362px;}
.h1a{height:60.226875px;}
.h6a{height:62.119860px;}
.h3e{height:63.798606px;}
.h3d{height:63.887092px;}
.h14{height:64.978594px;}
.h16{height:65.010937px;}
.h40{height:65.539499px;}
.h5e{height:66.456000px;}
.h31{height:66.757500px;}
.h60{height:68.940000px;}
.h39{height:68.956875px;}
.h44{height:69.086250px;}
.h1d{height:69.378282px;}
.h26{height:69.429903px;}
.h1c{height:69.474507px;}
.h47{height:70.182218px;}
.h27{height:70.664062px;}
.h13{height:71.225156px;}
.h5a{height:71.324297px;}
.h43{height:71.345156px;}
.ha{height:75.041016px;}
.h5{height:78.030000px;}
.h28{height:81.101250px;}
.h9{height:83.378906px;}
.h4f{height:84.034336px;}
.h12{height:84.898125px;}
.h15{height:87.695156px;}
.h5b{height:93.936445px;}
.h4{height:119.055004px;}
.hb{height:120.899414px;}
.h48{height:140.771752px;}
.h45{height:169.300100px;}
.hd{height:212.256000px;}
.h1b{height:331.183154px;}
.h49{height:331.306102px;}
.h3c{height:339.512421px;}
.h6d{height:339.557103px;}
.h66{height:339.590869px;}
.h72{height:340.080000px;}
.h6b{height:340.125000px;}
.h25{height:340.168894px;}
.h50{height:892.980000px;}
.h51{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h10{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:27.755811px;}
.w18{width:28.334057px;}
.w8{width:56.256980px;}
.wc{width:76.263775px;}
.w1c{width:86.736908px;}
.wa{width:88.465979px;}
.wb{width:92.024955px;}
.w39{width:97.615556px;}
.w42{width:101.395533px;}
.w35{width:106.279658px;}
.w37{width:109.745299px;}
.w3e{width:110.395137px;}
.w40{width:113.994978px;}
.w38{width:119.564615px;}
.w25{width:120.096000px;}
.w36{width:121.875043px;}
.w41{width:124.194529px;}
.w3b{width:125.340684px;}
.w27{width:125.496000px;}
.w26{width:125.640000px;}
.w28{width:125.820000px;}
.w29{width:126.000000px;}
.w3f{width:126.594423px;}
.w2b{width:128.880000px;}
.w44{width:130.194265px;}
.w14{width:134.593493px;}
.wf{width:140.976000px;}
.w2e{width:144.180000px;}
.w9{width:151.002274px;}
.w1d{width:161.908895px;}
.w16{width:164.574034px;}
.w15{width:167.763453px;}
.w17{width:168.401337px;}
.w3a{width:177.902906px;}
.w43{width:184.791860px;}
.w2a{width:189.030000px;}
.we{width:199.650000px;}
.w31{width:201.990000px;}
.w11{width:205.050000px;}
.w2f{width:210.270000px;}
.w30{width:212.610000px;}
.w32{width:212.760000px;}
.w33{width:229.170000px;}
.w2d{width:239.790000px;}
.w1b{width:244.598081px;}
.w21{width:246.450000px;}
.w23{width:251.850000px;}
.w22{width:252.030000px;}
.w24{width:284.430000px;}
.w20{width:284.790000px;}
.w13{width:321.493461px;}
.w2c{width:364.935000px;}
.w10{width:435.705000px;}
.wd{width:489.111789px;}
.w1a{width:529.095140px;}
.w34{width:543.528034px;}
.w3c{width:544.690949px;}
.w3d{width:564.575129px;}
.w45{width:565.783076px;}
.w12{width:566.440860px;}
.w7{width:566.736979px;}
.w2{width:637.794021px;}
.w5{width:892.500000px;}
.w4{width:892.830000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w6{width:892.980000px;}
.w1{width:893.250000px;}
.w1e{width:1262.880000px;}
.w1f{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:1.643722px;}
.x1c{left:6.440052px;}
.x48{left:7.478649px;}
.x1a{left:8.656786px;}
.xd{left:10.441110px;}
.x29{left:13.860000px;}
.x24{left:15.876000px;}
.x6b{left:17.039402px;}
.x53{left:18.180000px;}
.x36{left:19.980000px;}
.x54{left:21.420000px;}
.x5e{left:23.760000px;}
.x6d{left:24.875601px;}
.x2b{left:26.100000px;}
.x37{left:27.540000px;}
.x27{left:29.025000px;}
.x2c{left:32.580000px;}
.x33{left:35.136000px;}
.x7{left:38.250000px;}
.x6{left:41.455350px;}
.x1f{left:42.961927px;}
.x3a{left:44.077774px;}
.x70{left:45.222765px;}
.x77{left:46.973931px;}
.x20{left:50.079879px;}
.x5{left:57.401550px;}
.x5f{left:58.860000px;}
.x30{left:59.940000px;}
.x59{left:61.560000px;}
.x2f{left:63.045000px;}
.x25{left:65.010000px;}
.x2e{left:70.425000px;}
.x57{left:73.305000px;}
.x58{left:76.500000px;}
.x46{left:81.440174px;}
.x64{left:82.800000px;}
.x32{left:83.925000px;}
.x31{left:89.310000px;}
.x2d{left:92.370000px;}
.x23{left:98.100000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x52{left:112.905000px;}
.x65{left:114.525000px;}
.x4f{left:117.945000px;}
.x66{left:128.025000px;}
.x9{left:138.636000px;}
.x3d{left:143.136000px;}
.x3e{left:162.570000px;}
.xb{left:164.269531px;}
.xf{left:171.909367px;}
.x68{left:174.742607px;}
.x4b{left:178.050000px;}
.x43{left:181.973246px;}
.x1e{left:201.960000px;}
.x4{left:203.484001px;}
.x74{left:206.818097px;}
.x45{left:212.042041px;}
.x6a{left:215.752692px;}
.x22{left:217.165336px;}
.x78{left:224.817304px;}
.x10{left:226.082755px;}
.x71{left:233.080897px;}
.x21{left:249.216458px;}
.x72{left:250.889306px;}
.x79{left:256.068720px;}
.x4c{left:261.750000px;}
.x4d{left:276.510000px;}
.x11{left:280.256143px;}
.x3b{left:283.872932px;}
.x5a{left:287.130000px;}
.x26{left:297.750000px;}
.x60{left:308.370000px;}
.x75{left:323.212970px;}
.x6c{left:327.808419px;}
.x12{left:334.429531px;}
.x19{left:357.538101px;}
.x3f{left:359.494785px;}
.x41{left:363.542507px;}
.x4e{left:382.890000px;}
.x13{left:388.602918px;}
.x5b{left:416.010000px;}
.x28{left:438.735000px;}
.x8{left:442.335000px;}
.x67{left:446.475000px;}
.x6e{left:453.726709px;}
.x3{left:454.959000px;}
.x14{left:496.949694px;}
.x1d{left:502.439273px;}
.x44{left:511.130963px;}
.x47{left:516.777712px;}
.x49{left:518.512450px;}
.x61{left:520.995000px;}
.x69{left:525.945682px;}
.x39{left:527.674532px;}
.x35{left:533.805000px;}
.x1b{left:538.537460px;}
.x73{left:546.111943px;}
.xc{left:547.243820px;}
.x15{left:551.123081px;}
.x6f{left:568.670470px;}
.x76{left:573.401948px;}
.x2a{left:579.705000px;}
.x40{left:590.793207px;}
.x42{left:594.262683px;}
.x16{left:605.296469px;}
.x4a{left:623.055000px;}
.x50{left:629.355000px;}
.x17{left:659.469857px;}
.x18{left:690.945000px;}
.x3c{left:711.510000px;}
.x34{left:718.350000px;}
.x62{left:722.985000px;}
.x38{left:730.230000px;}
.xa{left:731.670000px;}
.x55{left:755.205000px;}
.x5c{left:780.945000px;}
.x51{left:881.385000px;}
.x63{left:935.745000px;}
.x56{left:1007.250000px;}
.x5d{left:1020.750000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:22.056019pt;}
.v1{vertical-align:26.880000pt;}
.ls1d{letter-spacing:-1.045333pt;}
.ls3a{letter-spacing:-1.008000pt;}
.ls15{letter-spacing:-0.938189pt;}
.ls2d{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.892264pt;}
.ls2a{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.856180pt;}
.ls2e{letter-spacing:-0.820505pt;}
.ls46{letter-spacing:-0.811236pt;}
.ls16{letter-spacing:-0.810254pt;}
.ls44{letter-spacing:-0.779864pt;}
.ls33{letter-spacing:-0.778122pt;}
.ls45{letter-spacing:-0.771525pt;}
.ls2f{letter-spacing:-0.745091pt;}
.ls43{letter-spacing:-0.741689pt;}
.ls34{letter-spacing:-0.740032pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.233067pt;}
.ls3f{letter-spacing:-0.183467pt;}
.ls29{letter-spacing:-0.140800pt;}
.ls9{letter-spacing:-0.112224pt;}
.lsc{letter-spacing:-0.101536pt;}
.ls39{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.072000pt;}
.ls6{letter-spacing:-0.069472pt;}
.lsd{letter-spacing:-0.058784pt;}
.lse{letter-spacing:-0.057600pt;}
.ls3e{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.032064pt;}
.ls7{letter-spacing:-0.016032pt;}
.ls24{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.021376pt;}
.ls42{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.069472pt;}
.ls4{letter-spacing:0.080160pt;}
.ls3{letter-spacing:0.085504pt;}
.lsa{letter-spacing:0.090848pt;}
.ls27{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.096192pt;}
.ls1e{letter-spacing:0.097067pt;}
.ls36{letter-spacing:0.097280pt;}
.ls11{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.144288pt;}
.ls12{letter-spacing:0.154880pt;}
.ls22{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.227733pt;}
.ls23{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.233067pt;}
.ls37{letter-spacing:0.257280pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls26{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.368533pt;}
.ls31{letter-spacing:0.623041pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.691059pt;}
.ls19{letter-spacing:43.504640pt;}
.ls28{letter-spacing:44.410027pt;}
.ls30{letter-spacing:52.730027pt;}
.ls10{letter-spacing:57.263360pt;}
.ls41{letter-spacing:115.503360pt;}
.ls3b{letter-spacing:118.703360pt;}
.ls38{letter-spacing:119.343360pt;}
.ls3d{letter-spacing:123.183360pt;}
.ls3c{letter-spacing:753.386667pt;}
.ws33{word-spacing:-58.880000pt;}
.ws10{word-spacing:-18.720000pt;}
.ws17{word-spacing:-15.360000pt;}
.ws2a{word-spacing:-15.136801pt;}
.ws2b{word-spacing:-15.115836pt;}
.ws18{word-spacing:-15.088533pt;}
.ws1c{word-spacing:-14.991467pt;}
.ws14{word-spacing:-14.953067pt;}
.ws15{word-spacing:-14.855467pt;}
.ws1a{word-spacing:-14.817067pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws34{word-spacing:-14.622933pt;}
.ws1e{word-spacing:-14.486933pt;}
.ws31{word-spacing:-14.448533pt;}
.ws37{word-spacing:-14.213498pt;}
.ws1d{word-spacing:-14.176000pt;}
.ws29{word-spacing:-14.080000pt;}
.ws28{word-spacing:-13.808000pt;}
.ws35{word-spacing:-13.712000pt;}
.ws36{word-spacing:-13.663847pt;}
.ws21{word-spacing:-13.600000pt;}
.ws27{word-spacing:-13.534613pt;}
.ws32{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.445504pt;}
.ws22{word-spacing:-13.374933pt;}
.ws26{word-spacing:-13.327360pt;}
.ws12{word-spacing:-13.280000pt;}
.ws23{word-spacing:-12.953600pt;}
.ws24{word-spacing:-12.812800pt;}
.ws25{word-spacing:-12.089600pt;}
.ws30{word-spacing:-11.931514pt;}
.ws16{word-spacing:-10.571100pt;}
.wsf{word-spacing:-9.280000pt;}
.ws20{word-spacing:-8.647680pt;}
.ws13{word-spacing:-8.640000pt;}
.ws1f{word-spacing:-8.636160pt;}
.ws11{word-spacing:-7.810560pt;}
.ws1{word-spacing:-1.152000pt;}
.ws19{word-spacing:-0.069120pt;}
.wsb{word-spacing:-0.016032pt;}
.ws9{word-spacing:-0.010688pt;}
.ws7{word-spacing:-0.005344pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.010688pt;}
.ws4{word-spacing:0.096192pt;}
.ws5{word-spacing:0.112224pt;}
.wsc{word-spacing:0.138944pt;}
.ws3{word-spacing:0.149632pt;}
.wsd{word-spacing:0.163200pt;}
.wse{word-spacing:0.177600pt;}
.wsa{word-spacing:0.181696pt;}
.ws8{word-spacing:0.192384pt;}
.ws2e{word-spacing:91.812802pt;}
.ws2f{word-spacing:92.039044pt;}
.ws2d{word-spacing:92.099375pt;}
.ws2c{word-spacing:106.264843pt;}
._3{margin-left:-11.520000pt;}
._0{margin-left:-5.866667pt;}
._b{margin-left:-4.568280pt;}
._6{margin-left:-2.760306pt;}
._4{margin-left:-1.175680pt;}
._1{width:1.152000pt;}
._5{width:2.891093pt;}
._d{width:3.893760pt;}
._2{width:5.120000pt;}
._e{width:7.074560pt;}
._f{width:8.506880pt;}
._a{width:9.643348pt;}
._9{width:134.909955pt;}
._8{width:438.814864pt;}
._7{width:739.883882pt;}
._c{width:753.744213pt;}
.fse{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:37.965278pt;}
.fs13{font-size:38.025541pt;}
.fs15{font-size:42.880000pt;}
.fs1b{font-size:42.919116pt;}
.fs22{font-size:43.015234pt;}
.fs12{font-size:43.449152pt;}
.fs25{font-size:44.745594pt;}
.fs1a{font-size:47.586248pt;}
.fs19{font-size:47.661662pt;}
.fsa{font-size:48.000000pt;}
.fs1d{font-size:49.040702pt;}
.fs1c{font-size:49.108720pt;}
.fs20{font-size:49.150528pt;}
.fs21{font-size:49.218698pt;}
.fs23{font-size:51.127692pt;}
.fs24{font-size:51.198604pt;}
.fsf{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.440000pt;}
.fs18{font-size:54.373510pt;}
.fs17{font-size:54.448924pt;}
.fs1e{font-size:55.992837pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.880000pt;}
.fs11{font-size:59.128889pt;}
.fs10{font-size:59.210899pt;}
.fs0{font-size:64.000000pt;}
.fs16{font-size:69.120000pt;}
.fsc{font-size:74.880000pt;}
.fs1f{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs7{font-size:154.666667pt;}
.fs8{font-size:256.000000pt;}
.y1f9{bottom:-0.123983pt;}
.y0{bottom:0.000000pt;}
.y2fe{bottom:0.841940pt;}
.y91{bottom:1.323880pt;}
.y2ea{bottom:2.558213pt;}
.y15e{bottom:3.040000pt;}
.y2ba{bottom:3.200000pt;}
.y1c9{bottom:3.224477pt;}
.y15f{bottom:3.360000pt;}
.yfe{bottom:3.840000pt;}
.y2ce{bottom:4.160000pt;}
.y163{bottom:4.800000pt;}
.y14f{bottom:4.986667pt;}
.y2a0{bottom:5.440000pt;}
.y101{bottom:5.600000pt;}
.yb6{bottom:5.664661pt;}
.y108{bottom:5.760000pt;}
.y290{bottom:5.920000pt;}
.y292{bottom:6.080000pt;}
.y113{bottom:6.240000pt;}
.y150{bottom:6.266667pt;}
.y161{bottom:6.560000pt;}
.y106{bottom:6.720000pt;}
.y104{bottom:6.880000pt;}
.y1fd{bottom:6.920793pt;}
.y155{bottom:7.520000pt;}
.y157{bottom:7.680000pt;}
.y152{bottom:9.280000pt;}
.y153{bottom:9.600000pt;}
.y2a9{bottom:10.720000pt;}
.yff{bottom:11.520000pt;}
.ybb{bottom:12.494192pt;}
.y1fb{bottom:12.974360pt;}
.yb9{bottom:13.232406pt;}
.y2ad{bottom:13.280000pt;}
.y1f8{bottom:13.666780pt;}
.y2b4{bottom:13.760000pt;}
.y2fd{bottom:15.236903pt;}
.y2b1{bottom:16.320000pt;}
.y2e9{bottom:16.379874pt;}
.y2a7{bottom:18.400000pt;}
.yb0{bottom:18.531877pt;}
.y2b8{bottom:18.560000pt;}
.y2cb{bottom:18.586667pt;}
.y2c3{bottom:18.600000pt;}
.y28e{bottom:18.720000pt;}
.y8c{bottom:19.181215pt;}
.yfd{bottom:19.226667pt;}
.y1c8{bottom:21.135534pt;}
.yba{bottom:23.808448pt;}
.yb8{bottom:24.546662pt;}
.y2a8{bottom:26.080000pt;}
.yb2{bottom:26.515433pt;}
.yb4{bottom:26.635957pt;}
.y1f1{bottom:28.477616pt;}
.y2ac{bottom:28.640000pt;}
.y2b3{bottom:29.120000pt;}
.y2f3{bottom:30.678033pt;}
.y2df{bottom:31.223879pt;}
.y2b0{bottom:31.680000pt;}
.y2aa{bottom:33.600000pt;}
.y2b7{bottom:33.920000pt;}
.y1c1{bottom:37.556937pt;}
.y302{bottom:38.734368pt;}
.y304{bottom:39.001707pt;}
.y300{bottom:39.003834pt;}
.y2ec{bottom:43.238149pt;}
.y2ee{bottom:43.251783pt;}
.y2f0{bottom:43.287913pt;}
.ybc{bottom:46.165779pt;}
.y1cd{bottom:46.322309pt;}
.y1cf{bottom:46.420347pt;}
.y1d1{bottom:46.530452pt;}
.y1cb{bottom:46.797417pt;}
.y2af{bottom:47.080000pt;}
.y2b6{bottom:49.280000pt;}
.y1eb{bottom:50.719377pt;}
.y44{bottom:51.232000pt;}
.y2f4{bottom:59.379744pt;}
.y2e0{bottom:59.889339pt;}
.y43{bottom:69.152000pt;}
.y1f2{bottom:70.615890pt;}
.y1c2{bottom:78.732239pt;}
.y8d{bottom:84.584655pt;}
.y4{bottom:86.333337pt;}
.y2f5{bottom:88.080036pt;}
.y2e1{bottom:88.573206pt;}
.y70{bottom:97.632000pt;}
.y117{bottom:103.712000pt;}
.y1f3{bottom:112.732399pt;}
.y8a{bottom:112.992000pt;}
.y1ec{bottom:113.446584pt;}
.y168{bottom:113.792000pt;}
.ye5{bottom:115.872000pt;}
.y23e{bottom:116.032000pt;}
.y2f6{bottom:116.785293pt;}
.y2e2{bottom:117.238667pt;}
.y6f{bottom:119.072000pt;}
.y1c3{bottom:119.893213pt;}
.y1f{bottom:123.790666pt;}
.y6e{bottom:128.352000pt;}
.y1bf{bottom:129.152000pt;}
.yae{bottom:134.426667pt;}
.ye4{bottom:135.226667pt;}
.y23d{bottom:135.386667pt;}
.y1e9{bottom:138.973595pt;}
.y1ee{bottom:139.111188pt;}
.y1f0{bottom:139.145000pt;}
.y1e7{bottom:139.313684pt;}
.y266{bottom:142.906667pt;}
.y89{bottom:143.546667pt;}
.yad{bottom:144.506667pt;}
.y2f7{bottom:145.504731pt;}
.y2e3{bottom:145.904128pt;}
.y1be{bottom:148.666667pt;}
.y116{bottom:149.626667pt;}
.y8e{bottom:149.962673pt;}
.y6d{bottom:150.586667pt;}
.y23c{bottom:152.346667pt;}
.ye3{bottom:154.586667pt;}
.y1f4{bottom:154.869313pt;}
.y141{bottom:158.906667pt;}
.y115{bottom:159.706667pt;}
.y6c{bottom:159.866667pt;}
.y1c4{bottom:161.046645pt;}
.y265{bottom:162.266667pt;}
.y88{bottom:164.986667pt;}
.yac{bottom:166.266667pt;}
.y1bd{bottom:168.026667pt;}
.y2dd{bottom:168.186667pt;}
.y23b{bottom:169.146667pt;}
.y2f8{bottom:174.202896pt;}
.y140{bottom:174.266667pt;}
.y2e4{bottom:174.569588pt;}
.y16{bottom:175.052000pt;}
.y87{bottom:175.066667pt;}
.y6b{bottom:175.226667pt;}
.y264{bottom:178.906667pt;}
.y18f{bottom:180.346667pt;}
.y2dc{bottom:183.386667pt;}
.yab{bottom:185.626667pt;}
.y23a{bottom:186.106667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.ye2{bottom:187.386667pt;}
.y13f{bottom:189.626667pt;}
.y2db{bottom:193.466667pt;}
.y2f2{bottom:193.546667pt;}
.y263{bottom:194.426667pt;}
.y18e{bottom:195.706667pt;}
.y1f5{bottom:196.992623pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y6a{bottom:197.626667pt;}
.y1c5{bottom:202.207618pt;}
.y2a4{bottom:202.466667pt;}
.y2f9{bottom:202.908152pt;}
.y2e5{bottom:203.235049pt;}
.yaa{bottom:204.986667pt;}
.ye1{bottom:206.746667pt;}
.y1bc{bottom:206.906667pt;}
.y69{bottom:207.706667pt;}
.y114{bottom:208.346667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y262{bottom:211.386667pt;}
.y1e5{bottom:212.346667pt;}
.y8f{bottom:215.348891pt;}
.y303{bottom:216.158438pt;}
.y167{bottom:218.586667pt;}
.y239{bottom:218.746667pt;}
.y1aa{bottom:220.026667pt;}
.y18d{bottom:220.346667pt;}
.y112{bottom:221.786667pt;}
.ya9{bottom:224.346667pt;}
.ye0{bottom:226.106667pt;}
.y1bb{bottom:226.266667pt;}
.y13e{bottom:226.426667pt;}
.y261{bottom:228.186667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y2fa{bottom:231.606317pt;}
.y305{bottom:231.783598pt;}
.y2e6{bottom:231.900510pt;}
.y1e4{bottom:232.666667pt;}
.y2d0{bottom:232.866667pt;}
.y301{bottom:233.709206pt;}
.y166{bottom:233.946667pt;}
.y2f1{bottom:234.525053pt;}
.y13d{bottom:235.546667pt;}
.y68{bottom:235.706667pt;}
.y238{bottom:238.106667pt;}
.y1f6{bottom:239.129537pt;}
.y1a9{bottom:239.386667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y2a3{bottom:242.786667pt;}
.y111{bottom:243.106667pt;}
.y1c6{bottom:243.383674pt;}
.y260{bottom:245.026667pt;}
.ydf{bottom:245.666667pt;}
.y165{bottom:249.346667pt;}
.y2ff{bottom:250.728133pt;}
.y13c{bottom:250.946667pt;}
.y1e3{bottom:252.226667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y67{bottom:255.266667pt;}
.y18c{bottom:257.026667pt;}
.ya8{bottom:257.186667pt;}
.y110{bottom:258.306667pt;}
.y1a8{bottom:258.786667pt;}
.y2fb{bottom:260.325756pt;}
.y2e7{bottom:260.565971pt;}
.y25f{bottom:261.986667pt;}
.y2cf{bottom:262.786667pt;}
.y2a2{bottom:263.746667pt;}
.y164{bottom:264.706667pt;}
.yde{bottom:265.026667pt;}
.y18b{bottom:266.306667pt;}
.y237{bottom:270.946667pt;}
.y1e2{bottom:271.586667pt;}
.y13b{bottom:272.386667pt;}
.y10f{bottom:273.666667pt;}
.y66{bottom:274.626667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.ya7{bottom:276.546667pt;}
.y162{bottom:277.986667pt;}
.y1a7{bottom:278.146667pt;}
.y2a1{bottom:279.106667pt;}
.y90{bottom:280.751511pt;}
.y1f7{bottom:281.246045pt;}
.y18a{bottom:281.666667pt;}
.y2cd{bottom:281.986667pt;}
.y13a{bottom:282.466667pt;}
.ydd{bottom:284.386667pt;}
.y1c7{bottom:284.537107pt;}
.y86{bottom:286.626667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y2fc{bottom:289.031012pt;}
.y2e8{bottom:289.231432pt;}
.y10e{bottom:289.986667pt;}
.y236{bottom:290.306667pt;}
.y29f{bottom:292.386667pt;}
.y65{bottom:293.986667pt;}
.y25e{bottom:294.626667pt;}
.ya6{bottom:295.906667pt;}
.y1ba{bottom:297.826667pt;}
.y160{bottom:297.986667pt;}
.y2cc{bottom:299.906667pt;}
.y189{bottom:303.106667pt;}
.y10d{bottom:305.186667pt;}
.y1e1{bottom:305.346667pt;}
.y85{bottom:305.986667pt;}
.yd{bottom:309.452000pt;}
.y1a6{bottom:310.946667pt;}
.y29e{bottom:312.706667pt;}
.y188{bottom:313.186667pt;}
.y64{bottom:313.346667pt;}
.y25d{bottom:314.146667pt;}
.ya5{bottom:315.426667pt;}
.y15d{bottom:316.546667pt;}
.ydc{bottom:317.186667pt;}
.y10c{bottom:320.546667pt;}
.y235{bottom:323.106667pt;}
.y84{bottom:325.346667pt;}
.y1a5{bottom:330.306667pt;}
.y2ca{bottom:330.626667pt;}
.y29d{bottom:330.786667pt;}
.y15c{bottom:331.906667pt;}
.y63{bottom:332.706667pt;}
.y2bc{bottom:333.186667pt;}
.y25c{bottom:333.506667pt;}
.ya4{bottom:334.786667pt;}
.ydb{bottom:336.546667pt;}
.y10b{bottom:336.866667pt;}
.y1e0{bottom:337.986667pt;}
.yc{bottom:343.809333pt;}
.y139{bottom:344.066667pt;}
.y83{bottom:344.866667pt;}
.y29c{bottom:348.893333pt;}
.y1a4{bottom:349.666667pt;}
.y2bb{bottom:349.853333pt;}
.y15b{bottom:351.426667pt;}
.y62{bottom:352.226667pt;}
.ya3{bottom:354.146667pt;}
.y234{bottom:355.746667pt;}
.yda{bottom:355.906667pt;}
.y1df{bottom:357.506667pt;}
.y2c9{bottom:361.213333pt;}
.yb{bottom:362.706666pt;}
.y2b9{bottom:363.133333pt;}
.y138{bottom:363.426667pt;}
.y82{bottom:364.226667pt;}
.y25b{bottom:366.146667pt;}
.y29b{bottom:366.973333pt;}
.y10a{bottom:367.426667pt;}
.y1a3{bottom:369.186667pt;}
.y187{bottom:369.826667pt;}
.y15a{bottom:371.106667pt;}
.y61{bottom:371.586667pt;}
.ya2{bottom:373.506667pt;}
.yd9{bottom:375.266667pt;}
.y1b9{bottom:375.426667pt;}
.y1de{bottom:376.866667pt;}
.y2b5{bottom:381.373333pt;}
.y137{bottom:382.786667pt;}
.y25a{bottom:383.106667pt;}
.y81{bottom:383.586667pt;}
.y109{bottom:383.906667pt;}
.y21b{bottom:384.066667pt;}
.y29a{bottom:385.053333pt;}
.y1a2{bottom:388.546667pt;}
.y186{bottom:389.346667pt;}
.y159{bottom:390.626667pt;}
.y60{bottom:390.946667pt;}
.y2c8{bottom:391.933333pt;}
.ya1{bottom:392.866667pt;}
.y1b8{bottom:394.786667pt;}
.yd8{bottom:395.426667pt;}
.y1dd{bottom:396.226667pt;}
.y107{bottom:400.226667pt;}
.y136{bottom:402.146667pt;}
.y21a{bottom:403.426667pt;}
.y299{bottom:403.773333pt;}
.y1a1{bottom:407.906667pt;}
.y185{bottom:408.706667pt;}
.y158{bottom:410.306667pt;}
.ya0{bottom:412.386667pt;}
.y1b7{bottom:414.146667pt;}
.y105{bottom:415.586667pt;}
.y259{bottom:415.746667pt;}
.y80{bottom:416.386667pt;}
.y298{bottom:419.133333pt;}
.y135{bottom:421.666667pt;}
.y2c7{bottom:422.653333pt;}
.y219{bottom:422.946667pt;}
.y5f{bottom:423.746667pt;}
.y1a0{bottom:427.266667pt;}
.y184{bottom:428.066667pt;}
.y156{bottom:429.826667pt;}
.yd7{bottom:431.426667pt;}
.y103{bottom:431.906667pt;}
.y258{bottom:435.266667pt;}
.y7f{bottom:435.746667pt;}
.y297{bottom:437.213333pt;}
.y2c6{bottom:437.853333pt;}
.y233{bottom:440.706667pt;}
.y134{bottom:441.026667pt;}
.y218{bottom:442.306667pt;}
.y2b2{bottom:442.653333pt;}
.y5e{bottom:443.106667pt;}
.y9f{bottom:445.026667pt;}
.y19f{bottom:446.626667pt;}
.y1b6{bottom:446.946667pt;}
.y183{bottom:447.426667pt;}
.y102{bottom:448.386667pt;}
.y154{bottom:449.506667pt;}
.yd6{bottom:450.786667pt;}
.y2c5{bottom:453.213333pt;}
.y257{bottom:454.626667pt;}
.y7e{bottom:455.106667pt;}
.y296{bottom:455.293333pt;}
.y232{bottom:460.066667pt;}
.y133{bottom:460.386667pt;}
.y217{bottom:461.666667pt;}
.y5d{bottom:462.466667pt;}
.ya{bottom:462.990669pt;}
.y100{bottom:463.586667pt;}
.y9e{bottom:464.386667pt;}
.y289{bottom:464.706667pt;}
.y1b5{bottom:466.306667pt;}
.y182{bottom:466.786667pt;}
.y1dc{bottom:467.746667pt;}
.y151{bottom:469.026667pt;}
.yd5{bottom:470.146667pt;}
.y295{bottom:473.373333pt;}
.y7d{bottom:474.466667pt;}
.y9{bottom:478.990666pt;}
.y132{bottom:479.746667pt;}
.yfc{bottom:480.226667pt;}
.y216{bottom:481.026667pt;}
.y5c{bottom:481.826667pt;}
.y2ae{bottom:483.773333pt;}
.y9d{bottom:483.906667pt;}
.y2c4{bottom:483.933333pt;}
.y288{bottom:484.066667pt;}
.y1b4{bottom:485.666667pt;}
.y181{bottom:486.306667pt;}
.y1db{bottom:487.106667pt;}
.y256{bottom:487.266667pt;}
.yd4{bottom:489.506667pt;}
.y294{bottom:491.453333pt;}
.y14e{bottom:492.066667pt;}
.y231{bottom:492.706667pt;}
.y7c{bottom:493.853333pt;}
.y8{bottom:494.990666pt;}
.y131{bottom:499.293333pt;}
.y215{bottom:500.413333pt;}
.y5b{bottom:501.213333pt;}
.y19e{bottom:502.813333pt;}
.y9c{bottom:503.293333pt;}
.y287{bottom:503.453333pt;}
.y1b3{bottom:505.053333pt;}
.y1da{bottom:506.653333pt;}
.y255{bottom:506.813333pt;}
.yd3{bottom:509.053333pt;}
.y293{bottom:509.533333pt;}
.y230{bottom:509.693333pt;}
.y2da{bottom:512.093333pt;}
.y7b{bottom:513.373333pt;}
.y2c2{bottom:514.653333pt;}
.y130{bottom:518.653333pt;}
.y180{bottom:518.973333pt;}
.y214{bottom:519.933333pt;}
.y5a{bottom:520.733333pt;}
.y19d{bottom:522.173333pt;}
.y9b{bottom:522.653333pt;}
.y286{bottom:522.813333pt;}
.y254{bottom:523.613333pt;}
.y1b2{bottom:524.573333pt;}
.y1d9{bottom:526.013333pt;}
.y2d9{bottom:527.453333pt;}
.y14d{bottom:528.093333pt;}
.y291{bottom:528.293333pt;}
.yd2{bottom:529.853333pt;}
.yfb{bottom:530.653333pt;}
.y7a{bottom:532.733333pt;}
.y12f{bottom:538.013333pt;}
.y17f{bottom:538.333333pt;}
.y213{bottom:539.293333pt;}
.y59{bottom:540.093333pt;}
.y253{bottom:540.413333pt;}
.y19c{bottom:541.533333pt;}
.y9a{bottom:542.013333pt;}
.y22f{bottom:542.333333pt;}
.y2d8{bottom:542.813333pt;}
.y2ab{bottom:542.853333pt;}
.y1b1{bottom:543.933333pt;}
.y2c1{bottom:545.253333pt;}
.y1d8{bottom:545.373333pt;}
.y28f{bottom:546.373333pt;}
.y79{bottom:552.093333pt;}
.y12e{bottom:557.373333pt;}
.y17e{bottom:557.853333pt;}
.y212{bottom:558.653333pt;}
.y58{bottom:559.453333pt;}
.y14c{bottom:560.093333pt;}
.y19b{bottom:561.053333pt;}
.yfa{bottom:561.373333pt;}
.y285{bottom:561.693333pt;}
.y22e{bottom:561.853333pt;}
.y1b0{bottom:563.293333pt;}
.y28d{bottom:564.293333pt;}
.y1d7{bottom:564.733333pt;}
.y78{bottom:571.453333pt;}
.y2d7{bottom:571.613333pt;}
.y7{bottom:573.786667pt;}
.y252{bottom:574.173333pt;}
.y99{bottom:574.813333pt;}
.y42{bottom:575.635067pt;}
.y2c0{bottom:575.973333pt;}
.y12d{bottom:576.733333pt;}
.y17d{bottom:577.213333pt;}
.y57{bottom:578.813333pt;}
.y14b{bottom:579.453333pt;}
.y19a{bottom:580.413333pt;}
.yf9{bottom:580.733333pt;}
.y1af{bottom:583.933333pt;}
.y2a6{bottom:584.773333pt;}
.yd1{bottom:585.053333pt;}
.y2d6{bottom:587.133333pt;}
.y41{bottom:589.471067pt;}
.y77{bottom:590.973333pt;}
.y251{bottom:591.133333pt;}
.y211{bottom:591.453333pt;}
.y6{bottom:592.685334pt;}
.y98{bottom:594.173333pt;}
.y284{bottom:594.333333pt;}
.y22d{bottom:594.493333pt;}
.y1d6{bottom:594.973333pt;}
.y28c{bottom:596.293333pt;}
.y17c{bottom:596.573333pt;}
.y56{bottom:598.333333pt;}
.y14a{bottom:598.813333pt;}
.y199{bottom:599.773333pt;}
.yf8{bottom:600.253333pt;}
.y2d5{bottom:602.493333pt;}
.y40{bottom:603.235067pt;}
.yd0{bottom:604.413333pt;}
.y2bf{bottom:606.533333pt;}
.y250{bottom:607.933333pt;}
.y12c{bottom:609.533333pt;}
.y76{bottom:610.333333pt;}
.y210{bottom:610.813333pt;}
.y1d5{bottom:611.613333pt;}
.y97{bottom:613.533333pt;}
.y22c{bottom:613.853333pt;}
.y274{bottom:614.173333pt;}
.y17b{bottom:615.933333pt;}
.y3f{bottom:617.284613pt;}
.y55{bottom:617.693333pt;}
.y149{bottom:618.333333pt;}
.y198{bottom:619.133333pt;}
.yf7{bottom:619.613333pt;}
.ycf{bottom:623.933333pt;}
.y24f{bottom:624.733333pt;}
.y2d4{bottom:627.773333pt;}
.y2de{bottom:627.906667pt;}
.y12b{bottom:628.893333pt;}
.y75{bottom:629.693333pt;}
.y20f{bottom:630.173333pt;}
.y273{bottom:630.973333pt;}
.y3e{bottom:632.648613pt;}
.y96{bottom:632.893333pt;}
.y28b{bottom:632.933333pt;}
.y283{bottom:633.213333pt;}
.y17a{bottom:635.453333pt;}
.y1ae{bottom:636.573333pt;}
.y1d4{bottom:636.893333pt;}
.y1ea{bottom:636.973333pt;}
.y1ed{bottom:637.631547pt;}
.y148{bottom:637.693333pt;}
.y54{bottom:638.493333pt;}
.y2be{bottom:638.533333pt;}
.y24e{bottom:641.693333pt;}
.y23{bottom:642.279067pt;}
.yce{bottom:643.293333pt;}
.y2ef{bottom:643.962733pt;}
.y5{bottom:645.598667pt;}
.y22b{bottom:646.653333pt;}
.y3d{bottom:647.932453pt;}
.y272{bottom:647.933333pt;}
.y12a{bottom:648.253333pt;}
.y2a5{bottom:648.293333pt;}
.y28a{bottom:648.453333pt;}
.y74{bottom:649.053333pt;}
.y20e{bottom:649.533333pt;}
.y197{bottom:651.933333pt;}
.yf6{bottom:652.253333pt;}
.y95{bottom:652.413333pt;}
.y282{bottom:652.573333pt;}
.y179{bottom:654.813333pt;}
.y24d{bottom:658.493333pt;}
.y2ed{bottom:662.368618pt;}
.ycd{bottom:662.653333pt;}
.y3c{bottom:663.296453pt;}
.y271{bottom:664.733333pt;}
.y22a{bottom:666.013333pt;}
.y147{bottom:667.453333pt;}
.y129{bottom:667.773333pt;}
.y3{bottom:668.977329pt;}
.y20d{bottom:670.333333pt;}
.y196{bottom:671.293333pt;}
.yf5{bottom:671.773333pt;}
.y281{bottom:671.933333pt;}
.y178{bottom:674.173333pt;}
.y1ef{bottom:674.871389pt;}
.y1fc{bottom:675.381521pt;}
.y24c{bottom:675.453333pt;}
.y3b{bottom:678.660453pt;}
.y73{bottom:678.813333pt;}
.y1c0{bottom:679.840000pt;}
.y1ad{bottom:679.933333pt;}
.y2eb{bottom:680.774502pt;}
.yb7{bottom:681.733333pt;}
.y94{bottom:681.853333pt;}
.y146{bottom:682.973333pt;}
.y2bd{bottom:686.853333pt;}
.y128{bottom:687.133333pt;}
.y195{bottom:690.653333pt;}
.yf4{bottom:691.133333pt;}
.y280{bottom:691.453333pt;}
.y1fa{bottom:691.705750pt;}
.y24b{bottom:692.253333pt;}
.y177{bottom:693.533333pt;}
.y53{bottom:693.693333pt;}
.y3a{bottom:693.944293pt;}
.ycc{bottom:695.933333pt;}
.y270{bottom:697.533333pt;}
.y145{bottom:698.333333pt;}
.y229{bottom:698.813333pt;}
.y72{bottom:704.253333pt;}
.y8b{bottom:704.426667pt;}
.y1d0{bottom:705.047891pt;}
.y127{bottom:706.493333pt;}
.y22{bottom:709.127067pt;}
.y39{bottom:709.308293pt;}
.y194{bottom:710.173333pt;}
.yf3{bottom:710.493333pt;}
.y27f{bottom:710.813333pt;}
.y176{bottom:712.893333pt;}
.y52{bottom:713.213333pt;}
.y144{bottom:713.693333pt;}
.ycb{bottom:716.573333pt;}
.y26f{bottom:716.893333pt;}
.y228{bottom:718.173333pt;}
.y1ce{bottom:719.753625pt;}
.y38{bottom:724.672293pt;}
.y24a{bottom:725.053333pt;}
.y20c{bottom:725.693333pt;}
.y126{bottom:725.853333pt;}
.y143{bottom:728.893333pt;}
.y193{bottom:729.533333pt;}
.yf2{bottom:729.853333pt;}
.y27e{bottom:730.173333pt;}
.y175{bottom:732.413333pt;}
.y51{bottom:732.573333pt;}
.yaf{bottom:734.166396pt;}
.y1cc{bottom:734.459360pt;}
.yca{bottom:735.933333pt;}
.y37{bottom:739.956133pt;}
.y142{bottom:740.893333pt;}
.y249{bottom:744.413333pt;}
.y20b{bottom:745.053333pt;}
.y125{bottom:745.413333pt;}
.y1ca{bottom:748.599489pt;}
.y192{bottom:748.773333pt;}
.yf1{bottom:749.253333pt;}
.y26e{bottom:749.573333pt;}
.y227{bottom:750.853333pt;}
.y174{bottom:751.813333pt;}
.y50{bottom:751.973333pt;}
.y36{bottom:755.320133pt;}
.yc9{bottom:755.333333pt;}
.y1e8{bottom:761.595212pt;}
.y1e6{bottom:762.105344pt;}
.y248{bottom:763.813333pt;}
.y20a{bottom:764.453333pt;}
.y124{bottom:764.773333pt;}
.yf0{bottom:768.773333pt;}
.y27d{bottom:768.933333pt;}
.y26d{bottom:769.093333pt;}
.y226{bottom:770.373333pt;}
.y35{bottom:770.603973pt;}
.y173{bottom:771.173333pt;}
.y4f{bottom:771.333333pt;}
.yc8{bottom:774.693333pt;}
.y247{bottom:780.453333pt;}
.y2{bottom:781.661334pt;}
.y191{bottom:782.053333pt;}
.y123{bottom:784.133333pt;}
.y34{bottom:785.967973pt;}
.yef{bottom:788.133333pt;}
.y26c{bottom:788.453333pt;}
.y172{bottom:790.533333pt;}
.y4e{bottom:790.693333pt;}
.yc7{bottom:794.213333pt;}
.yb5{bottom:795.183227pt;}
.y246{bottom:795.973333pt;}
.y21{bottom:797.127067pt;}
.y209{bottom:797.253333pt;}
.y33{bottom:801.251813pt;}
.y190{bottom:801.413333pt;}
.y225{bottom:803.013333pt;}
.y122{bottom:803.493333pt;}
.y26b{bottom:807.813333pt;}
.y4d{bottom:810.213333pt;}
.y245{bottom:812.933333pt;}
.yc6{bottom:813.573333pt;}
.y208{bottom:816.613333pt;}
.y32{bottom:816.615813pt;}
.yee{bottom:820.773333pt;}
.y224{bottom:822.373333pt;}
.y121{bottom:822.853333pt;}
.y171{bottom:823.333333pt;}
.y26a{bottom:827.173333pt;}
.y4c{bottom:829.573333pt;}
.y244{bottom:829.733333pt;}
.y31{bottom:831.979813pt;}
.y207{bottom:836.133333pt;}
.yed{bottom:840.293333pt;}
.y27c{bottom:840.453333pt;}
.y223{bottom:841.893333pt;}
.y170{bottom:842.693333pt;}
.yc5{bottom:846.213333pt;}
.y243{bottom:846.533333pt;}
.y30{bottom:847.263653pt;}
.y4b{bottom:848.933333pt;}
.y120{bottom:855.653333pt;}
.y206{bottom:856.453333pt;}
.y222{bottom:858.693333pt;}
.y1{bottom:859.312000pt;}
.yec{bottom:859.653333pt;}
.y27b{bottom:859.973333pt;}
.y16f{bottom:862.053333pt;}
.y2f{bottom:862.627653pt;}
.y242{bottom:863.493333pt;}
.yc4{bottom:865.733333pt;}
.y4a{bottom:868.293333pt;}
.y11f{bottom:875.013333pt;}
.y221{bottom:875.653333pt;}
.y205{bottom:875.813333pt;}
.y2e{bottom:877.991653pt;}
.yeb{bottom:879.013333pt;}
.y269{bottom:879.333333pt;}
.y241{bottom:880.293333pt;}
.y16e{bottom:881.573333pt;}
.yc3{bottom:885.093333pt;}
.y49{bottom:887.653333pt;}
.y2d{bottom:893.275493pt;}
.y11e{bottom:894.373333pt;}
.y204{bottom:895.333333pt;}
.y268{bottom:896.133333pt;}
.y240{bottom:897.253333pt;}
.yea{bottom:898.373333pt;}
.y27a{bottom:898.693333pt;}
.y16d{bottom:900.933333pt;}
.yc2{bottom:904.453333pt;}
.y220{bottom:905.733333pt;}
.y48{bottom:907.173333pt;}
.y2c{bottom:908.639493pt;}
.y24{bottom:910.930000pt;}
.y267{bottom:913.093333pt;}
.yb3{bottom:913.598738pt;}
.y11d{bottom:913.893333pt;}
.y203{bottom:914.693333pt;}
.ye9{bottom:917.733333pt;}
.y279{bottom:918.053333pt;}
.y16c{bottom:920.293333pt;}
.y21f{bottom:922.693333pt;}
.yc1{bottom:923.813333pt;}
.y2b{bottom:924.003547pt;}
.y23f{bottom:929.893333pt;}
.yb1{bottom:931.677442pt;}
.y11c{bottom:933.253333pt;}
.y202{bottom:935.173333pt;}
.ye8{bottom:937.253333pt;}
.y278{bottom:937.573333pt;}
.y2a{bottom:939.287387pt;}
.y16b{bottom:939.493333pt;}
.y47{bottom:939.813333pt;}
.yc0{bottom:943.333333pt;}
.y2d3{bottom:946.373333pt;}
.y1d3{bottom:948.133333pt;}
.y11b{bottom:952.613333pt;}
.y201{bottom:954.533333pt;}
.y29{bottom:954.651387pt;}
.y21e{bottom:956.293333pt;}
.ye7{bottom:956.613333pt;}
.y277{bottom:956.933333pt;}
.y46{bottom:957.253333pt;}
.y2d2{bottom:961.893333pt;}
.ybf{bottom:962.693333pt;}
.y1d2{bottom:963.653333pt;}
.y28{bottom:969.935227pt;}
.y11a{bottom:971.973333pt;}
.y21d{bottom:973.253333pt;}
.y16a{bottom:973.573333pt;}
.y200{bottom:975.013333pt;}
.ye6{bottom:975.973333pt;}
.y276{bottom:976.293333pt;}
.y2d1{bottom:977.253333pt;}
.y45{bottom:978.853333pt;}
.y27{bottom:985.299227pt;}
.y21c{bottom:990.053333pt;}
.y119{bottom:991.493333pt;}
.y1ff{bottom:994.373333pt;}
.ybe{bottom:995.333333pt;}
.y1ac{bottom:999.040000pt;}
.y93{bottom:1000.320000pt;}
.y26{bottom:1000.663227pt;}
.y275{bottom:1010.560000pt;}
.y169{bottom:1010.880000pt;}
.y118{bottom:1011.680000pt;}
.y1fe{bottom:1013.920000pt;}
.ybd{bottom:1014.880000pt;}
.y1ab{bottom:1015.520000pt;}
.y71{bottom:1015.680000pt;}
.y92{bottom:1015.840000pt;}
.y25{bottom:1015.947067pt;}
.y20{bottom:1038.519733pt;}
.h2b{height:15.200000pt;}
.h2f{height:15.360000pt;}
.h2e{height:16.320000pt;}
.h1e{height:16.372634pt;}
.h2d{height:16.480000pt;}
.h61{height:16.800000pt;}
.h23{height:17.626736pt;}
.h3f{height:17.855024pt;}
.h55{height:17.920000pt;}
.h57{height:17.952000pt;}
.h56{height:18.080000pt;}
.h58{height:18.112000pt;}
.h37{height:18.560000pt;}
.h32{height:18.592000pt;}
.h59{height:19.040000pt;}
.h52{height:19.200000pt;}
.h35{height:19.520000pt;}
.h36{height:19.680000pt;}
.h30{height:19.840000pt;}
.h4e{height:20.405285pt;}
.h33{height:21.600000pt;}
.h4d{height:23.466078pt;}
.h17{height:25.498125pt;}
.h4c{height:25.654681pt;}
.h70{height:27.930470pt;}
.h7{height:28.560000pt;}
.h69{height:28.837726pt;}
.h1f{height:30.281829pt;}
.h62{height:30.560000pt;}
.h63{height:30.592000pt;}
.h54{height:30.720000pt;}
.h65{height:31.636562pt;}
.h2a{height:32.352000pt;}
.h64{height:32.437500pt;}
.h19{height:33.918750pt;}
.hf{height:34.945312pt;}
.h21{height:35.705440pt;}
.he{height:37.209687pt;}
.h24{height:39.596599pt;}
.h22{height:39.659451pt;}
.h5d{height:40.640000pt;}
.h6{height:40.800000pt;}
.h3a{height:40.997500pt;}
.h29{height:41.085938pt;}
.h5f{height:41.120000pt;}
.h53{height:41.475163pt;}
.h2c{height:42.084375pt;}
.h3{height:42.840000pt;}
.h11{height:43.441250pt;}
.hc{height:44.437500pt;}
.h46{height:44.763297pt;}
.h6c{height:44.863544pt;}
.h20{height:45.316108pt;}
.h3b{height:45.468438pt;}
.h5c{height:45.920000pt;}
.h73{height:46.668257pt;}
.h2{height:48.960000pt;}
.h42{height:49.630970pt;}
.h41{height:49.709624pt;}
.h38{height:50.398750pt;}
.h4b{height:51.147920pt;}
.h4a{height:51.218860pt;}
.h67{height:51.262465pt;}
.h68{height:51.333564pt;}
.h71{height:51.588621pt;}
.h34{height:52.108438pt;}
.h18{height:52.134375pt;}
.h6e{height:53.324585pt;}
.h6f{height:53.398544pt;}
.h1a{height:53.535000pt;}
.h6a{height:55.217653pt;}
.h3e{height:56.709872pt;}
.h3d{height:56.788526pt;}
.h14{height:57.758750pt;}
.h16{height:57.787500pt;}
.h40{height:58.257332pt;}
.h5e{height:59.072000pt;}
.h31{height:59.340000pt;}
.h60{height:61.280000pt;}
.h39{height:61.295000pt;}
.h44{height:61.410000pt;}
.h1d{height:61.669584pt;}
.h26{height:61.715470pt;}
.h1c{height:61.755117pt;}
.h47{height:62.384194pt;}
.h27{height:62.812500pt;}
.h13{height:63.311250pt;}
.h5a{height:63.399375pt;}
.h43{height:63.417917pt;}
.ha{height:66.703125pt;}
.h5{height:69.360000pt;}
.h28{height:72.090000pt;}
.h9{height:74.114583pt;}
.h4f{height:74.697187pt;}
.h12{height:75.465000pt;}
.h15{height:77.951250pt;}
.h5b{height:83.499062pt;}
.h4{height:105.826671pt;}
.hb{height:107.466146pt;}
.h48{height:125.130446pt;}
.h45{height:150.488978pt;}
.hd{height:188.672000pt;}
.h1b{height:294.385026pt;}
.h49{height:294.494313pt;}
.h3c{height:301.788818pt;}
.h6d{height:301.828536pt;}
.h66{height:301.858550pt;}
.h72{height:302.293333pt;}
.h6b{height:302.333333pt;}
.h25{height:302.372351pt;}
.h50{height:793.760000pt;}
.h51{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h10{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:24.671832pt;}
.w18{width:25.185828pt;}
.w8{width:50.006204pt;}
.wc{width:67.790022pt;}
.w1c{width:77.099474pt;}
.wa{width:78.636426pt;}
.wb{width:81.799960pt;}
.w39{width:86.769383pt;}
.w42{width:90.129363pt;}
.w35{width:94.470807pt;}
.w37{width:97.551377pt;}
.w3e{width:98.129011pt;}
.w40{width:101.328870pt;}
.w38{width:106.279658pt;}
.w25{width:106.752000pt;}
.w36{width:108.333371pt;}
.w41{width:110.395137pt;}
.w3b{width:111.413941pt;}
.w27{width:111.552000pt;}
.w26{width:111.680000pt;}
.w28{width:111.840000pt;}
.w29{width:112.000000pt;}
.w3f{width:112.528376pt;}
.w2b{width:114.560000pt;}
.w44{width:115.728235pt;}
.w14{width:119.638660pt;}
.wf{width:125.312000pt;}
.w2e{width:128.160000pt;}
.w9{width:134.224244pt;}
.w1d{width:143.919018pt;}
.w16{width:146.288030pt;}
.w15{width:149.123069pt;}
.w17{width:149.690077pt;}
.w3a{width:158.135916pt;}
.w43{width:164.259431pt;}
.w2a{width:168.026667pt;}
.we{width:177.466667pt;}
.w31{width:179.546667pt;}
.w11{width:182.266667pt;}
.w2f{width:186.906667pt;}
.w30{width:188.986667pt;}
.w32{width:189.120000pt;}
.w33{width:203.706667pt;}
.w2d{width:213.146667pt;}
.w1b{width:217.420517pt;}
.w21{width:219.066667pt;}
.w23{width:223.866667pt;}
.w22{width:224.026667pt;}
.w24{width:252.826667pt;}
.w20{width:253.146667pt;}
.w13{width:285.771965pt;}
.w2c{width:324.386667pt;}
.w10{width:387.293333pt;}
.wd{width:434.766034pt;}
.w1a{width:470.306791pt;}
.w34{width:483.136030pt;}
.w3c{width:484.169733pt;}
.w3d{width:501.844559pt;}
.w45{width:502.918290pt;}
.w12{width:503.502987pt;}
.w7{width:503.766204pt;}
.w2{width:566.928019pt;}
.w5{width:793.333333pt;}
.w4{width:793.626667pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w6{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1e{width:1122.560000pt;}
.w1f{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:1.461087pt;}
.x1c{left:5.724491pt;}
.x48{left:6.647688pt;}
.x1a{left:7.694921pt;}
.xd{left:9.280987pt;}
.x29{left:12.320000pt;}
.x24{left:14.112000pt;}
.x6b{left:15.146135pt;}
.x53{left:16.160000pt;}
.x36{left:17.760000pt;}
.x54{left:19.040000pt;}
.x5e{left:21.120000pt;}
.x6d{left:22.111645pt;}
.x2b{left:23.200000pt;}
.x37{left:24.480000pt;}
.x27{left:25.800000pt;}
.x2c{left:28.960000pt;}
.x33{left:31.232000pt;}
.x7{left:34.000000pt;}
.x6{left:36.849200pt;}
.x1f{left:38.188379pt;}
.x3a{left:39.180244pt;}
.x70{left:40.198013pt;}
.x77{left:41.754605pt;}
.x20{left:44.515448pt;}
.x5{left:51.023600pt;}
.x5f{left:52.320000pt;}
.x30{left:53.280000pt;}
.x59{left:54.720000pt;}
.x2f{left:56.040000pt;}
.x25{left:57.786667pt;}
.x2e{left:62.600000pt;}
.x57{left:65.160000pt;}
.x58{left:68.000000pt;}
.x46{left:72.391266pt;}
.x64{left:73.600000pt;}
.x32{left:74.600000pt;}
.x31{left:79.386667pt;}
.x2d{left:82.106667pt;}
.x23{left:87.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x52{left:100.360000pt;}
.x65{left:101.800000pt;}
.x4f{left:104.840000pt;}
.x66{left:113.800000pt;}
.x9{left:123.232000pt;}
.x3d{left:127.232000pt;}
.x3e{left:144.506667pt;}
.xb{left:146.017361pt;}
.xf{left:152.808327pt;}
.x68{left:155.326762pt;}
.x4b{left:158.266667pt;}
.x43{left:161.753996pt;}
.x1e{left:179.520000pt;}
.x4{left:180.874667pt;}
.x74{left:183.838308pt;}
.x45{left:188.481814pt;}
.x6a{left:191.780171pt;}
.x22{left:193.035854pt;}
.x78{left:199.837604pt;}
.x10{left:200.962449pt;}
.x71{left:207.183020pt;}
.x21{left:221.525741pt;}
.x72{left:223.012716pt;}
.x79{left:227.616640pt;}
.x4c{left:232.666667pt;}
.x4d{left:245.786667pt;}
.x11{left:249.116571pt;}
.x3b{left:252.331495pt;}
.x5a{left:255.226667pt;}
.x26{left:264.666667pt;}
.x60{left:274.106667pt;}
.x75{left:287.300417pt;}
.x6c{left:291.385261pt;}
.x12{left:297.270694pt;}
.x19{left:317.811645pt;}
.x3f{left:319.550920pt;}
.x41{left:323.148895pt;}
.x4e{left:340.346667pt;}
.x13{left:345.424816pt;}
.x5b{left:369.786667pt;}
.x28{left:389.986667pt;}
.x8{left:393.186667pt;}
.x67{left:396.866667pt;}
.x6e{left:403.312631pt;}
.x3{left:404.408000pt;}
.x14{left:441.733061pt;}
.x1d{left:446.612687pt;}
.x44{left:454.338633pt;}
.x47{left:459.357966pt;}
.x49{left:460.899955pt;}
.x61{left:463.106667pt;}
.x69{left:467.507273pt;}
.x39{left:469.044029pt;}
.x35{left:474.493333pt;}
.x1b{left:478.699964pt;}
.x73{left:485.432838pt;}
.xc{left:486.438951pt;}
.x15{left:489.887184pt;}
.x6f{left:505.484862pt;}
.x76{left:509.690621pt;}
.x2a{left:515.293333pt;}
.x40{left:525.149517pt;}
.x42{left:528.233496pt;}
.x16{left:538.041306pt;}
.x4a{left:553.826667pt;}
.x50{left:559.426667pt;}
.x17{left:586.195428pt;}
.x18{left:614.173333pt;}
.x3c{left:632.453333pt;}
.x34{left:638.533333pt;}
.x62{left:642.653333pt;}
.x38{left:649.093333pt;}
.xa{left:650.373333pt;}
.x55{left:671.293333pt;}
.x5c{left:694.173333pt;}
.x51{left:783.453333pt;}
.x63{left:831.773333pt;}
.x56{left:895.333333pt;}
.x5d{left:907.333333pt;}
}




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