
    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_b29fb06b029bd70a1227424a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a43c8502be775cdfb2557d1b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2927b4f358a7493b912e1e7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6271f8c2fd6b90f7dba9ed69.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bf1ede8d6396f0f1a892eefa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.852539;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_3091b6a4953db1b36b07bd68.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62eeaaf8f57238d3dbfadf70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_128fad5779c2524476226ae4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710449;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;}
.m3f{transform:matrix(0.147484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147484,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.147817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147817,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.151048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151048,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.156731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156731,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.158783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158783,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.164234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164234,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.164469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164469,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.168818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168818,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.169129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169129,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.176474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176474,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.176544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176544,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.185881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185881,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.188431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188431,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.188561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188561,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.188811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188811,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.192653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192653,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.193702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193702,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.194343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194343,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.194536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194536,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.194604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194604,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.195508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195508,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.195741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195741,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.196396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196396,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.197184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197184,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.198156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198156,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.198680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198680,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.198758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198758,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.234548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234548,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.235322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235322,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.239119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239119,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.239606,0.000000,-0.079861,0.236901,0,0);-ms-transform:matrix(0.239606,0.000000,-0.079861,0.236901,0,0);-webkit-transform:matrix(0.239606,0.000000,-0.079861,0.236901,0,0);}
.m3{transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.242632,0.000000,-0.080869,0.236559,0,0);-ms-transform:matrix(0.242632,0.000000,-0.080869,0.236559,0,0);-webkit-transform:matrix(0.242632,0.000000,-0.080869,0.236559,0,0);}
.m3c{transform:matrix(0.244437,0.000000,-0.081471,0.236352,0,0);-ms-transform:matrix(0.244437,0.000000,-0.081471,0.236352,0,0);-webkit-transform:matrix(0.244437,0.000000,-0.081471,0.236352,0,0);}
.m2c{transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249923,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);}
.m24{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252854,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253398,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254423,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254611,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255508,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.257103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257103,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.257698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257698,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.258010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258010,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.258552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258552,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.258809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258809,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.258899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258899,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.259326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259326,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.259904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259904,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.260412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260412,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.261182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261182,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.262331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262331,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262678,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262832,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.263728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263728,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.264002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264002,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.264321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264321,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.264426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264426,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-25.312456px;}
.v3{vertical-align:-16.174472px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.v5{vertical-align:42.526706px;}
.v6{vertical-align:45.497038px;}
.lsd{letter-spacing:-1.600774px;}
.ls3b{letter-spacing:-0.720000px;}
.ls3c{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.264000px;}
.ls3a{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls2d{letter-spacing:1.170000px;}
.ls2e{letter-spacing:1.185840px;}
.ls2f{letter-spacing:1.260000px;}
.ls23{letter-spacing:7.560000px;}
.ls21{letter-spacing:8.280000px;}
.ls36{letter-spacing:12.600000px;}
.ls11{letter-spacing:14.459950px;}
.ls20{letter-spacing:14.942637px;}
.ls2b{letter-spacing:26.167970px;}
.ls1e{letter-spacing:26.227356px;}
.ls25{letter-spacing:26.593833px;}
.ls22{letter-spacing:52.337640px;}
.ls26{letter-spacing:56.704634px;}
.ls14{letter-spacing:62.037060px;}
.ls13{letter-spacing:62.203082px;}
.ls27{letter-spacing:66.575007px;}
.ls12{letter-spacing:69.452730px;}
.ls24{letter-spacing:78.063296px;}
.lse{letter-spacing:79.303396px;}
.lsf{letter-spacing:79.580100px;}
.ls16{letter-spacing:97.453631px;}
.ls19{letter-spacing:101.466982px;}
.ls15{letter-spacing:102.203280px;}
.ls18{letter-spacing:106.317766px;}
.lsc{letter-spacing:113.014564px;}
.lsa{letter-spacing:113.242403px;}
.ls31{letter-spacing:115.371925px;}
.ls32{letter-spacing:117.482736px;}
.ls34{letter-spacing:119.249847px;}
.ls10{letter-spacing:124.533100px;}
.ls30{letter-spacing:127.624332px;}
.ls1f{letter-spacing:152.141128px;}
.ls33{letter-spacing:200.705689px;}
.lsb{letter-spacing:202.888424px;}
.ls1d{letter-spacing:235.419850px;}
.ls1b{letter-spacing:344.641723px;}
.ls1c{letter-spacing:498.538341px;}
.ls37{letter-spacing:558.740247px;}
.ls2c{letter-spacing:664.517906px;}
.ls29{letter-spacing:713.507944px;}
.ls38{letter-spacing:775.147937px;}
.ls28{letter-spacing:822.883252px;}
.ls9{letter-spacing:846.120000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3a{word-spacing:-252.872962px;}
.wsd{word-spacing:-220.487437px;}
.ws29{word-spacing:-119.536151px;}
.ws1b{word-spacing:-117.907132px;}
.ws26{word-spacing:-115.572396px;}
.ws1e{word-spacing:-79.656193px;}
.ws21{word-spacing:-79.490171px;}
.ws45{word-spacing:-78.865678px;}
.ws7a{word-spacing:-72.000000px;}
.ws17{word-spacing:-57.603734px;}
.wsb{word-spacing:-39.656399px;}
.ws11{word-spacing:-39.576612px;}
.ws37{word-spacing:-25.156878px;}
.ws79{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws78{word-spacing:-17.856000px;}
.ws41{word-spacing:-17.829300px;}
.ws5{word-spacing:-17.784000px;}
.ws3d{word-spacing:-17.782184px;}
.ws1{word-spacing:-17.712000px;}
.ws6a{word-spacing:-17.640000px;}
.ws2{word-spacing:-12.150000px;}
.ws9{word-spacing:-10.417060px;}
.wsf{word-spacing:-10.396101px;}
.ws40{word-spacing:-10.303688px;}
.ws3c{word-spacing:-10.276460px;}
.ws23{word-spacing:-10.091814px;}
.ws51{word-spacing:-3.106057px;}
.ws58{word-spacing:-2.142827px;}
.ws6{word-spacing:0.000000px;}
.ws2f{word-spacing:1.731573px;}
.ws2a{word-spacing:6.938561px;}
.ws27{word-spacing:6.957606px;}
.ws4c{word-spacing:7.110545px;}
.ws4a{word-spacing:7.264119px;}
.ws22{word-spacing:7.558045px;}
.ws46{word-spacing:10.650287px;}
.ws43{word-spacing:11.062586px;}
.ws3f{word-spacing:12.527050px;}
.ws60{word-spacing:13.194552px;}
.ws42{word-spacing:13.263968px;}
.ws49{word-spacing:17.313486px;}
.ws5d{word-spacing:17.772845px;}
.ws61{word-spacing:17.941798px;}
.ws69{word-spacing:18.467096px;}
.ws70{word-spacing:19.550628px;}
.ws13{word-spacing:23.598802px;}
.ws2b{word-spacing:26.301260px;}
.ws71{word-spacing:30.830569px;}
.ws14{word-spacing:33.312002px;}
.ws18{word-spacing:33.496064px;}
.ws3b{word-spacing:33.937226px;}
.ws25{word-spacing:34.353178px;}
.ws28{word-spacing:34.403699px;}
.ws12{word-spacing:34.695419px;}
.ws1f{word-spacing:35.329321px;}
.ws24{word-spacing:35.394910px;}
.ws1c{word-spacing:35.513383px;}
.ws53{word-spacing:36.499494px;}
.ws34{word-spacing:40.494689px;}
.ws68{word-spacing:45.404064px;}
.ws2e{word-spacing:45.511731px;}
.ws48{word-spacing:46.006401px;}
.ws5c{word-spacing:46.514867px;}
.wsc{word-spacing:53.289811px;}
.ws39{word-spacing:53.476333px;}
.ws16{word-spacing:56.548080px;}
.ws36{word-spacing:57.409285px;}
.ws44{word-spacing:58.502829px;}
.ws59{word-spacing:60.609068px;}
.ws2d{word-spacing:60.704488px;}
.ws6e{word-spacing:63.192377px;}
.ws6c{word-spacing:64.104603px;}
.ws4f{word-spacing:65.877296px;}
.ws66{word-spacing:70.005264px;}
.ws1a{word-spacing:70.440757px;}
.ws2c{word-spacing:73.535489px;}
.ws30{word-spacing:75.831895px;}
.ws76{word-spacing:81.676329px;}
.ws35{word-spacing:88.527378px;}
.ws15{word-spacing:100.433730px;}
.ws19{word-spacing:100.716300px;}
.ws10{word-spacing:123.048257px;}
.wsa{word-spacing:123.296324px;}
.ws56{word-spacing:130.141054px;}
.ws62{word-spacing:141.539103px;}
.ws73{word-spacing:147.002557px;}
.ws50{word-spacing:148.729553px;}
.ws64{word-spacing:160.663933px;}
.ws54{word-spacing:163.017671px;}
.ws38{word-spacing:167.727043px;}
.ws1d{word-spacing:171.668802px;}
.ws74{word-spacing:172.784867px;}
.ws5b{word-spacing:176.701003px;}
.ws20{word-spacing:176.834923px;}
.ws6f{word-spacing:187.322858px;}
.ws77{word-spacing:187.468795px;}
.ws72{word-spacing:196.597094px;}
.ws67{word-spacing:196.995296px;}
.ws32{word-spacing:212.099366px;}
.ws57{word-spacing:220.212091px;}
.ws31{word-spacing:231.416192px;}
.wse{word-spacing:256.152425px;}
.ws8{word-spacing:256.668831px;}
.ws3e{word-spacing:257.839490px;}
.ws47{word-spacing:321.488663px;}
.ws55{word-spacing:346.066633px;}
.ws75{word-spacing:350.028643px;}
.ws5f{word-spacing:380.784313px;}
.ws6d{word-spacing:392.596016px;}
.ws5e{word-spacing:397.819295px;}
.ws4d{word-spacing:399.981317px;}
.ws33{word-spacing:409.931099px;}
.ws6b{word-spacing:431.567441px;}
.ws5a{word-spacing:479.662713px;}
.ws4e{word-spacing:596.579593px;}
.ws52{word-spacing:621.956577px;}
.ws4b{word-spacing:729.352620px;}
.ws63{word-spacing:810.574854px;}
.ws65{word-spacing:874.828350px;}
._72{margin-left:-1044.374708px;}
._68{margin-left:-846.598771px;}
._52{margin-left:-689.432983px;}
._40{margin-left:-545.579275px;}
._76{margin-left:-515.014580px;}
._46{margin-left:-483.648306px;}
._1e{margin-left:-424.727090px;}
._3a{margin-left:-357.604395px;}
._62{margin-left:-302.998475px;}
._4d{margin-left:-276.672779px;}
._21{margin-left:-259.228901px;}
._45{margin-left:-250.437519px;}
._49{margin-left:-244.535808px;}
._1d{margin-left:-214.610842px;}
._39{margin-left:-207.024549px;}
._23{margin-left:-197.028558px;}
._30{margin-left:-190.848208px;}
._4b{margin-left:-185.022791px;}
._2c{margin-left:-183.786333px;}
._19{margin-left:-181.886519px;}
._1b{margin-left:-112.036879px;}
._2a{margin-left:-86.896931px;}
._84{margin-left:-25.488000px;}
._85{margin-left:-24.432000px;}
._86{margin-left:-22.944000px;}
._0{margin-left:-20.244000px;}
._1c{margin-left:-7.813962px;}
._36{margin-left:-3.655273px;}
._28{margin-left:-2.443436px;}
._d{margin-left:-1.248000px;}
._7{width:1.344000px;}
._9{width:2.376000px;}
._16{width:3.792000px;}
._5{width:5.472000px;}
._6{width:6.480000px;}
._4{width:8.112000px;}
._18{width:9.456000px;}
._b{width:11.352000px;}
._a{width:12.384000px;}
._12{width:13.392000px;}
._8{width:15.264000px;}
._f{width:16.992000px;}
._11{width:19.920000px;}
._15{width:21.312000px;}
._14{width:22.320000px;}
._17{width:23.544000px;}
._82{width:25.200000px;}
._83{width:26.424000px;}
._24{width:27.648000px;}
._10{width:30.240000px;}
._3{width:31.320000px;}
._c{width:32.400000px;}
._e{width:33.552000px;}
._66{width:36.511909px;}
._87{width:40.680000px;}
._1{width:43.200000px;}
._2{width:49.410000px;}
._31{width:57.423354px;}
._2e{width:58.632322px;}
._2b{width:60.009348px;}
._2f{width:65.410393px;}
._69{width:67.249023px;}
._6f{width:68.507417px;}
._79{width:70.671898px;}
._4c{width:76.338652px;}
._50{width:82.248947px;}
._4e{width:85.310808px;}
._20{width:87.396557px;}
._48{width:90.504206px;}
._4f{width:92.182837px;}
._2d{width:94.072626px;}
._29{width:97.248736px;}
._26{width:99.185444px;}
._3e{width:100.770855px;}
._61{width:102.060433px;}
._3c{width:104.501610px;}
._63{width:111.427404px;}
._6a{width:114.122328px;}
._5b{width:119.689828px;}
._27{width:124.203152px;}
._33{width:130.723712px;}
._1a{width:138.338559px;}
._65{width:142.557013px;}
._4a{width:146.039011px;}
._67{width:148.482447px;}
._38{width:150.511235px;}
._37{width:154.166179px;}
._70{width:155.651240px;}
._47{width:164.346110px;}
._73{width:165.370764px;}
._71{width:168.555494px;}
._35{width:173.374608px;}
._5f{width:175.069003px;}
._75{width:177.127590px;}
._44{width:179.892149px;}
._22{width:183.388438px;}
._41{width:187.852356px;}
._53{width:191.636477px;}
._42{width:192.726053px;}
._3f{width:200.824991px;}
._43{width:202.545119px;}
._56{width:203.627300px;}
._60{width:207.001789px;}
._7b{width:210.639909px;}
._59{width:213.089938px;}
._55{width:223.130447px;}
._25{width:224.252635px;}
._32{width:229.247459px;}
._1f{width:231.223635px;}
._5c{width:242.782350px;}
._7d{width:255.250371px;}
._34{width:259.739388px;}
._6b{width:267.949134px;}
._7f{width:295.918213px;}
._78{width:298.906122px;}
._3d{width:304.299993px;}
._7e{width:308.180358px;}
._6d{width:314.541449px;}
._6c{width:320.573881px;}
._57{width:329.386481px;}
._6e{width:344.440368px;}
._5e{width:346.995192px;}
._74{width:349.139200px;}
._58{width:355.535144px;}
._5a{width:364.781081px;}
._54{width:380.817001px;}
._5d{width:382.616918px;}
._3b{width:407.813775px;}
._80{width:449.302385px;}
._7c{width:453.162954px;}
._64{width:459.397374px;}
._81{width:478.193867px;}
._7a{width:559.218896px;}
._51{width:818.269281px;}
._77{width:846.120000px;}
._13{width:2185.848000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(44,101,143);}
.fc1{color:rgb(0,128,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3c{font-size:40.186719px;}
.fs12{font-size:40.263880px;}
.fs15{font-size:40.367255px;}
.fs22{font-size:40.404168px;}
.fs25{font-size:40.597646px;}
.fs2a{font-size:41.105840px;}
.fs2c{font-size:41.214752px;}
.fs36{font-size:41.270296px;}
.fs1d{font-size:41.464814px;}
.fsf{font-size:41.584406px;}
.fs7{font-size:41.668241px;}
.fs1a{font-size:41.769243px;}
.fs43{font-size:41.775838px;}
.fs18{font-size:41.883888px;}
.fs9{font-size:41.911913px;}
.fsc{font-size:42.026950px;}
.fs45{font-size:44.149497px;}
.fs4{font-size:47.880000px;}
.fs5{font-size:60.120000px;}
.fs40{font-size:65.880000px;}
.fs3d{font-size:69.425174px;}
.fs13{font-size:69.633665px;}
.fs16{font-size:69.812445px;}
.fs23{font-size:70.005137px;}
.fs26{font-size:70.263407px;}
.fsb{font-size:70.396052px;}
.fs2b{font-size:71.128738px;}
.fs2d{font-size:71.176422px;}
.fs30{font-size:71.205792px;}
.fs2e{font-size:71.317198px;}
.fs37{font-size:71.427582px;}
.fs28{font-size:71.508649px;}
.fs1c{font-size:71.672017px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:72.088546px;}
.fs1f{font-size:72.152136px;}
.fs8{font-size:72.233877px;}
.fs19{font-size:72.276678px;}
.fs2f{font-size:72.352184px;}
.fs44{font-size:72.409732px;}
.fsa{font-size:72.419348px;}
.fs17{font-size:72.475058px;}
.fs29{font-size:72.591016px;}
.fsd{font-size:72.618120px;}
.fs38{font-size:75.551980px;}
.fs34{font-size:76.227790px;}
.fs46{font-size:76.523975px;}
.fs1{font-size:83.880000px;}
.fs11{font-size:91.282752px;}
.fs14{font-size:91.517115px;}
.fs35{font-size:93.650138px;}
.fs1b{font-size:93.758292px;}
.fse{font-size:94.391930px;}
.fs6{font-size:94.582225px;}
.fs1e{font-size:94.584215px;}
.fs20{font-size:97.180752px;}
.fs31{font-size:103.127619px;}
.fs24{font-size:104.937504px;}
.fs27{font-size:105.466142px;}
.fs33{font-size:106.547134px;}
.fs21{font-size:106.866314px;}
.fs39{font-size:107.213580px;}
.fs3{font-size:108.000000px;}
.fs47{font-size:108.467900px;}
.fs3a{font-size:108.922356px;}
.fs3e{font-size:109.610229px;}
.fs41{font-size:112.992517px;}
.fs42{font-size:113.135120px;}
.fs32{font-size:118.950697px;}
.fs3b{font-size:121.115447px;}
.fs3f{font-size:122.086235px;}
.fs2{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:2.905431px;}
.ydd{bottom:2.917789px;}
.y25{bottom:3.240000px;}
.yd4{bottom:3.699412px;}
.yca{bottom:3.761688px;}
.y11b{bottom:3.833059px;}
.y107{bottom:4.227255px;}
.y5d{bottom:4.322619px;}
.y64{bottom:4.334483px;}
.y9e{bottom:4.358287px;}
.y9a{bottom:4.370249px;}
.y158{bottom:4.500000px;}
.y179{bottom:5.326135px;}
.y6d{bottom:5.597741px;}
.y71{bottom:5.612113px;}
.ye5{bottom:5.695354px;}
.yef{bottom:5.710444px;}
.ye8{bottom:5.745638px;}
.y69{bottom:5.769244px;}
.y58{bottom:5.780875px;}
.yac{bottom:5.784528px;}
.y176{bottom:6.868949px;}
.y60{bottom:7.284047px;}
.yaa{bottom:7.284136px;}
.yf3{bottom:7.477942px;}
.ydf{bottom:7.502626px;}
.yfd{bottom:8.314267px;}
.y12b{bottom:8.473033px;}
.y6c{bottom:8.845794px;}
.y70{bottom:8.868505px;}
.y5e{bottom:9.002341px;}
.y65{bottom:9.027050px;}
.y9d{bottom:9.038151px;}
.y99{bottom:9.062959px;}
.y68{bottom:9.122672px;}
.y57{bottom:9.141063px;}
.yb0{bottom:9.165724px;}
.y16b{bottom:9.640785px;}
.y169{bottom:9.676578px;}
.yb4{bottom:9.890767px;}
.y12a{bottom:9.931572px;}
.y6e{bottom:10.124205px;}
.y72{bottom:10.150198px;}
.y11f{bottom:10.161173px;}
.ye6{bottom:10.300750px;}
.yf0{bottom:10.328042px;}
.ye9{bottom:10.363377px;}
.y6a{bottom:10.420726px;}
.y59{bottom:10.441735px;}
.yb3{bottom:10.462032px;}
.yb1{bottom:10.490372px;}
.ya8{bottom:10.604920px;}
.y145{bottom:10.799595px;}
.y129{bottom:10.938556px;}
.yab{bottom:11.854688px;}
.y16c{bottom:11.890339px;}
.ya9{bottom:11.926132px;}
.y103{bottom:12.248159px;}
.y12c{bottom:12.987334px;}
.y104{bottom:13.079296px;}
.y172{bottom:13.297073px;}
.y102{bottom:13.657340px;}
.yec{bottom:14.400000px;}
.yfa{bottom:14.850000px;}
.y75{bottom:14.940000px;}
.y105{bottom:14.957578px;}
.yce{bottom:15.570000px;}
.yc9{bottom:15.855756px;}
.y106{bottom:16.005157px;}
.yd3{bottom:16.007442px;}
.y11e{bottom:16.164353px;}
.y121{bottom:16.669805px;}
.y6b{bottom:16.730418px;}
.y5a{bottom:16.764147px;}
.y12f{bottom:17.730000px;}
.y96{bottom:17.978849px;}
.y10a{bottom:19.080000px;}
.y175{bottom:19.394835px;}
.y11a{bottom:19.490227px;}
.yeb{bottom:19.530000px;}
.y74{bottom:19.620000px;}
.y17a{bottom:19.908275px;}
.y16d{bottom:19.924421px;}
.y16a{bottom:19.960072px;}
.ycb{bottom:20.390786px;}
.yd5{bottom:20.418438px;}
.yd8{bottom:20.700000px;}
.y146{bottom:20.766531px;}
.y11c{bottom:20.792849px;}
.y178{bottom:20.936623px;}
.ycd{bottom:20.970000px;}
.y120{bottom:21.805197px;}
.y12e{bottom:22.590000px;}
.y109{bottom:24.030000px;}
.y173{bottom:24.059806px;}
.y17d{bottom:28.980000px;}
.yd7{bottom:29.970000px;}
.y17c{bottom:33.120000px;}
.y177{bottom:36.584812px;}
.y11d{bottom:38.980455px;}
.y174{bottom:42.462968px;}
.y28{bottom:46.110000px;}
.y52{bottom:80.760000px;}
.y18e{bottom:83.640000px;}
.yd1{bottom:84.540000px;}
.y156{bottom:86.520000px;}
.y1ae{bottom:89.760000px;}
.y23{bottom:91.290000px;}
.y125{bottom:92.550000px;}
.yd0{bottom:106.050000px;}
.y51{bottom:106.320000px;}
.y155{bottom:107.310000px;}
.y8e{bottom:107.940000px;}
.y18d{bottom:109.200000px;}
.y1ad{bottom:115.320000px;}
.ycf{bottom:116.580000px;}
.y22{bottom:116.850000px;}
.y124{bottom:118.110000px;}
.y8d{bottom:128.730000px;}
.y50{bottom:131.790000px;}
.y154{bottom:132.870000px;}
.y18c{bottom:134.670000px;}
.y1ac{bottom:140.790000px;}
.y21{bottom:142.320000px;}
.ycc{bottom:143.580000px;}
.yc8{bottom:143.625000px;}
.y8c{bottom:154.200000px;}
.y4f{bottom:157.260000px;}
.y153{bottom:158.340000px;}
.y18b{bottom:160.140000px;}
.y1ab{bottom:166.260000px;}
.y20{bottom:167.790000px;}
.y123{bottom:169.050000px;}
.y8b{bottom:179.760000px;}
.y4e{bottom:182.820000px;}
.y152{bottom:183.810000px;}
.y18a{bottom:185.700000px;}
.y119{bottom:190.500000px;}
.y1aa{bottom:191.820000px;}
.y1f{bottom:193.350000px;}
.yc7{bottom:196.140000px;}
.y8a{bottom:205.230000px;}
.y4d{bottom:208.290000px;}
.y151{bottom:209.370000px;}
.y189{bottom:211.170000px;}
.y122{bottom:211.440000px;}
.y1a9{bottom:217.290000px;}
.yc6{bottom:221.610000px;}
.y89{bottom:230.700000px;}
.y4c{bottom:233.760000px;}
.y150{bottom:234.840000px;}
.y1e{bottom:236.640000px;}
.y1a8{bottom:242.760000px;}
.y118{bottom:245.190000px;}
.yc5{bottom:247.080000px;}
.y88{bottom:256.260000px;}
.y4b{bottom:259.320000px;}
.y14f{bottom:260.310000px;}
.y188{bottom:262.200000px;}
.y117{bottom:266.700000px;}
.y1a7{bottom:268.320000px;}
.yc4{bottom:272.640000px;}
.y116{bottom:277.230000px;}
.y87{bottom:281.730000px;}
.y4a{bottom:284.790000px;}
.y14e{bottom:285.870000px;}
.y187{bottom:287.670000px;}
.y1a6{bottom:293.790000px;}
.yc3{bottom:298.110000px;}
.y115{bottom:299.820000px;}
.y1d{bottom:300.810000px;}
.y86{bottom:307.200000px;}
.y49{bottom:310.260000px;}
.y14d{bottom:311.340000px;}
.y186{bottom:313.140000px;}
.y1a5{bottom:319.260000px;}
.yc2{bottom:323.580000px;}
.y114{bottom:325.380000px;}
.y1c{bottom:326.460000px;}
.y85{bottom:328.620000px;}
.y48{bottom:335.820000px;}
.y14c{bottom:336.810000px;}
.y84{bottom:337.725000px;}
.y185{bottom:338.700000px;}
.y1a4{bottom:344.820000px;}
.yc1{bottom:349.140000px;}
.y113{bottom:350.850000px;}
.y47{bottom:361.290000px;}
.y14b{bottom:362.370000px;}
.y184{bottom:364.170000px;}
.y1b{bottom:369.930000px;}
.y1a3{bottom:370.290000px;}
.yc0{bottom:370.575000px;}
.y112{bottom:376.320000px;}
.y83{bottom:379.830000px;}
.ybf{bottom:381.090000px;}
.y46{bottom:386.760000px;}
.y183{bottom:389.640000px;}
.y1a{bottom:395.400000px;}
.y1a2{bottom:395.760000px;}
.y111{bottom:401.880000px;}
.ybe{bottom:403.680000px;}
.y82{bottom:405.300000px;}
.y14a{bottom:405.660000px;}
.y45{bottom:412.320000px;}
.y182{bottom:415.200000px;}
.y19{bottom:420.960000px;}
.y1a1{bottom:421.320000px;}
.y110{bottom:427.350000px;}
.ybd{bottom:429.240000px;}
.y81{bottom:430.860000px;}
.y44{bottom:437.790000px;}
.y181{bottom:440.670000px;}
.y18{bottom:446.430000px;}
.y1a0{bottom:446.790000px;}
.y149{bottom:449.310000px;}
.y10f{bottom:452.820000px;}
.ybc{bottom:454.740000px;}
.y80{bottom:456.360000px;}
.y43{bottom:463.290000px;}
.y180{bottom:466.170000px;}
.y17{bottom:471.930000px;}
.y19f{bottom:472.290000px;}
.y148{bottom:474.900000px;}
.y10e{bottom:478.410000px;}
.ybb{bottom:480.210000px;}
.y7f{bottom:481.830000px;}
.y42{bottom:488.850000px;}
.y17f{bottom:491.730000px;}
.y16{bottom:497.490000px;}
.y19e{bottom:497.850000px;}
.y10d{bottom:503.880000px;}
.y144{bottom:505.425000px;}
.yba{bottom:505.770000px;}
.y7e{bottom:507.390000px;}
.y41{bottom:514.320000px;}
.y17e{bottom:517.200000px;}
.y147{bottom:518.910000px;}
.y15{bottom:522.960000px;}
.y10c{bottom:529.350000px;}
.yb9{bottom:531.240000px;}
.y7d{bottom:532.860000px;}
.y17b{bottom:538.620000px;}
.y40{bottom:539.790000px;}
.y19d{bottom:541.140000px;}
.y171{bottom:547.725000px;}
.y143{bottom:553.110000px;}
.y10b{bottom:554.910000px;}
.yb8{bottom:556.710000px;}
.y7c{bottom:558.330000px;}
.y3f{bottom:565.350000px;}
.y14{bottom:569.040000px;}
.y1b1{bottom:572.820000px;}
.y108{bottom:576.330000px;}
.yb7{bottom:582.270000px;}
.y142{bottom:583.530000px;}
.y7b{bottom:583.890000px;}
.y19c{bottom:584.790000px;}
.y101{bottom:585.300000px;}
.y3e{bottom:590.820000px;}
.y141{bottom:592.500000px;}
.y13{bottom:594.510000px;}
.y1b0{bottom:598.290000px;}
.yb6{bottom:607.740000px;}
.y7a{bottom:609.360000px;}
.y3d{bottom:616.290000px;}
.y170{bottom:618.000000px;}
.y12{bottom:619.980000px;}
.y1af{bottom:623.850000px;}
.y19b{bottom:628.170000px;}
.yb5{bottom:633.210000px;}
.y140{bottom:634.740000px;}
.y79{bottom:634.830000px;}
.y100{bottom:636.000000px;}
.y3c{bottom:641.850000px;}
.y16f{bottom:643.470000px;}
.yb2{bottom:654.600000px;}
.yaf{bottom:656.025000px;}
.y13f{bottom:660.210000px;}
.y78{bottom:660.390000px;}
.yff{bottom:661.470000px;}
.y11{bottom:663.630000px;}
.yae{bottom:666.600000px;}
.y3b{bottom:667.320000px;}
.y16e{bottom:669.030000px;}
.y19a{bottom:671.820000px;}
.yfe{bottom:682.890000px;}
.y13e{bottom:685.680000px;}
.y77{bottom:685.860000px;}
.y10{bottom:689.100000px;}
.y168{bottom:690.450000px;}
.yfc{bottom:691.875000px;}
.y3a{bottom:692.790000px;}
.ya7{bottom:696.525000px;}
.y167{bottom:702.420000px;}
.yad{bottom:708.540000px;}
.y13d{bottom:711.240000px;}
.y76{bottom:711.330000px;}
.y199{bottom:715.110000px;}
.y39{bottom:718.350000px;}
.yf{bottom:732.570000px;}
.y73{bottom:732.750000px;}
.yfb{bottom:734.100000px;}
.y13c{bottom:736.710000px;}
.y6f{bottom:741.825000px;}
.y166{bottom:742.020000px;}
.ya6{bottom:742.380000px;}
.y38{bottom:743.820000px;}
.yf9{bottom:755.520000px;}
.y198{bottom:758.850000px;}
.y13b{bottom:762.180000px;}
.yf8{bottom:764.475000px;}
.y165{bottom:764.520000px;}
.ye{bottom:766.410000px;}
.ya5{bottom:767.940000px;}
.y37{bottom:769.290000px;}
.y67{bottom:779.925000px;}
.yd{bottom:783.600000px;}
.y197{bottom:784.320000px;}
.y164{bottom:787.020000px;}
.y13a{bottom:787.740000px;}
.y66{bottom:790.440000px;}
.ya4{bottom:793.410000px;}
.y36{bottom:794.850000px;}
.yf5{bottom:802.575000px;}
.y163{bottom:809.520000px;}
.y196{bottom:809.790000px;}
.yf6{bottom:810.150000px;}
.yf4{bottom:813.120000px;}
.y139{bottom:813.210000px;}
.yc{bottom:817.350000px;}
.y63{bottom:817.500000px;}
.ya3{bottom:818.880000px;}
.y35{bottom:820.320000px;}
.y62{bottom:826.530000px;}
.yf2{bottom:831.750000px;}
.y162{bottom:832.020000px;}
.yb{bottom:834.630000px;}
.y195{bottom:835.350000px;}
.y138{bottom:838.680000px;}
.yf1{bottom:839.220000px;}
.ya2{bottom:844.440000px;}
.y34{bottom:845.790000px;}
.y61{bottom:848.760000px;}
.y161{bottom:854.520000px;}
.yee{bottom:857.175000px;}
.y194{bottom:860.820000px;}
.y137{bottom:864.240000px;}
.yed{bottom:867.750000px;}
.ya{bottom:868.380000px;}
.ya1{bottom:869.910000px;}
.y56{bottom:870.150000px;}
.y33{bottom:871.350000px;}
.y5c{bottom:871.725000px;}
.y5f{bottom:873.225000px;}
.y160{bottom:877.740000px;}
.y5b{bottom:880.710000px;}
.yea{bottom:885.390000px;}
.y136{bottom:885.675000px;}
.y193{bottom:886.290000px;}
.ye7{bottom:894.375000px;}
.ya0{bottom:895.380000px;}
.y135{bottom:896.190000px;}
.y32{bottom:896.820000px;}
.y9{bottom:903.390000px;}
.y55{bottom:911.850000px;}
.y15f{bottom:914.100000px;}
.y134{bottom:917.880000px;}
.y9f{bottom:920.940000px;}
.y31{bottom:922.290000px;}
.ye4{bottom:931.575000px;}
.y54{bottom:937.320000px;}
.ye3{bottom:942.090000px;}
.y9c{bottom:942.375000px;}
.y133{bottom:943.350000px;}
.y30{bottom:947.850000px;}
.y8{bottom:948.930000px;}
.y9b{bottom:951.360000px;}
.y15e{bottom:954.240000px;}
.y192{bottom:962.790000px;}
.ye2{bottom:963.870000px;}
.y132{bottom:968.910000px;}
.y95{bottom:969.525000px;}
.y98{bottom:971.025000px;}
.y2f{bottom:973.320000px;}
.y15d{bottom:976.740000px;}
.y7{bottom:979.980000px;}
.y97{bottom:980.070000px;}
.y53{bottom:980.610000px;}
.y191{bottom:988.350000px;}
.ye1{bottom:989.340000px;}
.y131{bottom:994.410000px;}
.y2e{bottom:998.820000px;}
.y15c{bottom:999.270000px;}
.y94{bottom:1002.780000px;}
.y190{bottom:1013.850000px;}
.ye0{bottom:1014.840000px;}
.y130{bottom:1019.880000px;}
.y15b{bottom:1021.770000px;}
.y93{bottom:1024.125000px;}
.y2d{bottom:1024.380000px;}
.y6{bottom:1027.080000px;}
.y92{bottom:1034.730000px;}
.yde{bottom:1036.275000px;}
.ydc{bottom:1040.775000px;}
.y12d{bottom:1041.300000px;}
.ydb{bottom:1043.820000px;}
.y15a{bottom:1044.270000px;}
.y2c{bottom:1049.850000px;}
.y128{bottom:1050.375000px;}
.y5{bottom:1052.730000px;}
.y18f{bottom:1057.140000px;}
.y91{bottom:1057.320000px;}
.yda{bottom:1061.775000px;}
.y159{bottom:1066.770000px;}
.yd9{bottom:1070.820000px;}
.y4{bottom:1073.250000px;}
.y2b{bottom:1075.320000px;}
.y90{bottom:1082.880000px;}
.yd6{bottom:1089.000000px;}
.y157{bottom:1089.990000px;}
.y127{bottom:1094.100000px;}
.yd2{bottom:1097.925000px;}
.y3{bottom:1099.170000px;}
.y2a{bottom:1100.880000px;}
.y126{bottom:1104.660000px;}
.y8f{bottom:1126.170000px;}
.y29{bottom:1126.350000px;}
.y2{bottom:1138.320000px;}
.y24{bottom:1138.410000px;}
.y27{bottom:1151.640000px;}
.y1{bottom:1166.580000px;}
.y26{bottom:1177.380000px;}
.h9{height:17.190000px;}
.h58{height:17.774145px;}
.h4a{height:17.849743px;}
.h76{height:22.500000px;}
.h79{height:22.530000px;}
.h56{height:22.574839px;}
.h4c{height:22.649358px;}
.h15{height:23.475001px;}
.h12{height:27.150122px;}
.h17{height:27.224642px;}
.h4e{height:28.124353px;}
.h51{height:28.198871px;}
.h20{height:29.025067px;}
.h24{height:29.099587px;}
.h38{height:30.074829px;}
.h32{height:32.849912px;}
.h6e{height:34.725069px;}
.h40{height:37.425150px;}
.h1a{height:37.500156px;}
.hc{height:37.575757px;}
.h47{height:37.604362px;}
.h69{height:38.227418px;}
.h83{height:38.695686px;}
.h3d{height:39.374731px;}
.h71{height:39.421445px;}
.h22{height:39.497136px;}
.h26{height:39.598542px;}
.h2b{height:39.618253px;}
.h3e{height:39.634753px;}
.h45{height:39.824546px;}
.h4f{height:40.323062px;}
.h52{height:40.429901px;}
.h66{height:40.484387px;}
.h64{height:40.504539px;}
.h35{height:40.675201px;}
.h1c{height:40.812820px;}
.he{height:40.895099px;}
.h30{height:40.973832px;}
.h80{height:40.980302px;}
.h7e{height:41.000701px;}
.h2d{height:41.086295px;}
.h13{height:41.113786px;}
.h18{height:41.226632px;}
.h60{height:41.993774px;}
.h54{height:46.170000px;}
.h8{height:46.991602px;}
.h5a{height:47.070000px;}
.h28{height:47.160000px;}
.h43{height:48.420000px;}
.h44{height:49.799510px;}
.hb{height:49.992188px;}
.h62{height:50.624623px;}
.h73{height:52.740000px;}
.h61{height:55.530000px;}
.h7d{height:57.301388px;}
.h49{height:58.770000px;}
.ha{height:60.589687px;}
.h78{height:64.657617px;}
.h6a{height:66.161193px;}
.h37{height:66.387605px;}
.h77{height:66.394687px;}
.h1e{height:66.773424px;}
.h10{height:66.908040px;}
.h84{height:67.070928px;}
.h2a{height:68.483009px;}
.h29{height:68.517097px;}
.h3f{height:68.672031px;}
.h46{height:68.925384px;}
.h16{height:69.089875px;}
.h50{height:69.774235px;}
.h53{height:69.821012px;}
.h55{height:69.959107px;}
.h72{height:69.967558px;}
.h68{height:69.981498px;}
.h67{height:70.067389px;}
.h65{height:70.102265px;}
.h23{height:70.177678px;}
.h36{height:70.307169px;}
.h34{height:70.342165px;}
.h27{height:70.357855px;}
.h42{height:70.552052px;}
.h5f{height:70.607479px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h1d{height:70.715766px;}
.h3a{height:70.813376px;}
.hf{height:70.858330px;}
.h5e{height:70.893600px;}
.h31{height:70.900315px;}
.h2f{height:70.935606px;}
.h57{height:70.974384px;}
.h81{height:71.030835px;}
.h14{height:71.040268px;}
.h7f{height:71.066192px;}
.h2e{height:71.094918px;}
.h2c{height:71.130306px;}
.h4d{height:71.208668px;}
.h19{height:71.235255px;}
.h6d{height:71.684431px;}
.h59{height:71.762088px;}
.h4b{height:72.067310px;}
.h7b{height:72.231954px;}
.h2{height:72.562500px;}
.h1f{height:72.651738px;}
.h11{height:72.798205px;}
.h86{height:72.975433px;}
.h87{height:75.330000px;}
.h41{height:81.025941px;}
.h48{height:81.608760px;}
.h3{height:82.323633px;}
.h21{height:84.552432px;}
.h25{height:84.769515px;}
.h63{height:86.745269px;}
.h33{height:86.845449px;}
.h1b{height:87.432369px;}
.hd{height:87.608633px;}
.h39{height:87.610477px;}
.h3b{height:90.015569px;}
.h5b{height:95.523971px;}
.h5d{height:98.691363px;}
.h3c{height:98.987010px;}
.h6b{height:99.308672px;}
.h85{height:100.470511px;}
.h6f{height:100.891460px;}
.h74{height:101.528615px;}
.h7a{height:104.661526px;}
.h7c{height:104.793614px;}
.h7{height:108.843750px;}
.h5c{height:110.180407px;}
.h70{height:112.185549px;}
.h75{height:113.084760px;}
.h6c{height:114.512315px;}
.h82{height:116.378865px;}
.h4{height:164.918496px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1d{width:14.999629px;}
.w18{width:15.074147px;}
.w19{width:15.900281px;}
.w6{width:17.774880px;}
.w4{width:17.850481px;}
.w23{width:22.574442px;}
.w1c{width:44.175617px;}
.wa{width:48.150000px;}
.w1a{width:55.423530px;}
.w7{width:60.073820px;}
.w5{width:72.373911px;}
.we{width:81.603326px;}
.w15{width:85.425377px;}
.w17{width:86.397069px;}
.w2f{width:87.378392px;}
.w14{width:89.173842px;}
.w2e{width:95.778176px;}
.w12{width:100.578319px;}
.w28{width:102.780000px;}
.w29{width:102.810000px;}
.w2a{width:102.870000px;}
.w2b{width:106.110000px;}
.w2d{width:106.200000px;}
.w2c{width:106.230000px;}
.wc{width:108.000473px;}
.w3{width:109.878396px;}
.w16{width:109.953996px;}
.wd{width:114.599022px;}
.w2{width:118.920000px;}
.wb{width:119.177275px;}
.w10{width:130.571738px;}
.w8{width:131.478320px;}
.wf{width:136.198638px;}
.w1e{width:139.945613px;}
.w1b{width:160.570688px;}
.w27{width:169.290000px;}
.w21{width:191.477309px;}
.w1f{width:191.552910px;}
.w24{width:205.579889px;}
.w11{width:219.898605px;}
.w22{width:293.990114px;}
.w25{width:310.946088px;}
.w30{width:327.754556px;}
.w13{width:357.906514px;}
.w20{width:374.779045px;}
.w26{width:422.468674px;}
.w9{width:706.770000px;}
.w1{width:893.250000px;}
.w0{width:893.430000px;}
.x0{left:0.000000px;}
.x1d{left:2.109677px;}
.x4c{left:3.151979px;}
.x12{left:4.359557px;}
.x2f{left:5.905585px;}
.x9{left:7.200000px;}
.x2a{left:10.151967px;}
.x11{left:12.083223px;}
.x63{left:15.531147px;}
.x2d{left:16.571400px;}
.x29{left:18.504238px;}
.x3d{left:19.684054px;}
.xe{left:20.783425px;}
.x15{left:23.448620px;}
.x28{left:26.208572px;}
.x40{left:27.291505px;}
.x1b{left:29.321899px;}
.x44{left:32.287008px;}
.xa{left:33.976356px;}
.x48{left:35.782016px;}
.x86{left:37.830000px;}
.x8b{left:39.060000px;}
.x96{left:40.966864px;}
.xc{left:42.071822px;}
.x93{left:44.587945px;}
.x1c{left:45.734947px;}
.x67{left:46.810895px;}
.x90{left:50.850000px;}
.xb{left:52.192962px;}
.x8c{left:56.070000px;}
.x91{left:59.490000px;}
.x43{left:60.557339px;}
.x8a{left:61.830000px;}
.x88{left:64.530000px;}
.x2e{left:66.321418px;}
.x53{left:67.484280px;}
.x21{left:69.300000px;}
.x34{left:70.654426px;}
.x68{left:73.204505px;}
.x1{left:74.520000px;}
.x3c{left:77.167516px;}
.x72{left:79.991478px;}
.x98{left:81.111842px;}
.x8d{left:86.220000px;}
.x25{left:88.402236px;}
.x80{left:89.611286px;}
.x64{left:92.052914px;}
.x6c{left:94.056226px;}
.x6{left:95.850000px;}
.x20{left:100.306298px;}
.xd{left:103.336913px;}
.x70{left:108.159805px;}
.x60{left:109.518803px;}
.x5c{left:112.357402px;}
.x3b{left:115.368967px;}
.x7{left:117.090000px;}
.x3a{left:121.541432px;}
.x49{left:123.045000px;}
.x97{left:124.899719px;}
.x73{left:127.635680px;}
.x6e{left:130.507774px;}
.x6d{left:134.612045px;}
.x66{left:139.046236px;}
.x4a{left:140.850000px;}
.x6b{left:148.715625px;}
.x30{left:156.180000px;}
.x5f{left:157.412884px;}
.x7e{left:158.577684px;}
.x78{left:163.852489px;}
.x46{left:172.545000px;}
.x75{left:180.045000px;}
.xf{left:184.440000px;}
.x76{left:202.620000px;}
.x71{left:206.288938px;}
.x33{left:208.845000px;}
.x18{left:220.020000px;}
.x59{left:221.520000px;}
.x38{left:235.470000px;}
.x77{left:237.645000px;}
.x6f{left:245.643945px;}
.x4b{left:258.495000px;}
.x62{left:259.620000px;}
.x5a{left:265.710000px;}
.x82{left:267.698576px;}
.x4d{left:273.540000px;}
.x57{left:277.170000px;}
.x47{left:282.450000px;}
.x58{left:293.070000px;}
.x65{left:300.071337px;}
.x4e{left:308.595000px;}
.x8e{left:318.990000px;}
.x4f{left:324.480000px;}
.x84{left:325.740000px;}
.x27{left:326.820000px;}
.x19{left:329.880000px;}
.x3f{left:335.595000px;}
.x36{left:336.795000px;}
.x35{left:339.420000px;}
.x5b{left:345.180000px;}
.x5e{left:351.195000px;}
.x81{left:363.919668px;}
.x52{left:366.720000px;}
.x50{left:377.445000px;}
.x1f{left:381.195000px;}
.x24{left:387.420000px;}
.x74{left:389.910000px;}
.x42{left:404.220000px;}
.x39{left:409.995000px;}
.x45{left:420.360000px;}
.x41{left:424.740000px;}
.x85{left:428.520000px;}
.x51{left:432.840000px;}
.x2b{left:435.750000px;}
.x26{left:437.280000px;}
.x22{left:443.400000px;}
.x5d{left:447.630000px;}
.x54{left:457.980000px;}
.x10{left:470.370000px;}
.x61{left:473.460000px;}
.x79{left:480.480000px;}
.x13{left:488.220000px;}
.x2c{left:496.845000px;}
.x92{left:511.620000px;}
.x87{left:531.330000px;}
.x7f{left:535.380000px;}
.x99{left:541.590000px;}
.x55{left:544.395000px;}
.x5{left:546.000000px;}
.x37{left:556.710000px;}
.x69{left:565.080000px;}
.x14{left:570.120000px;}
.x3{left:587.940000px;}
.x56{left:599.820000px;}
.x6a{left:604.590000px;}
.x94{left:607.560000px;}
.x1a{left:612.870000px;}
.x89{left:634.200000px;}
.x8f{left:637.530000px;}
.x16{left:642.480000px;}
.x17{left:660.750000px;}
.x7a{left:671.370000px;}
.x1e{left:672.990000px;}
.x31{left:678.195000px;}
.x83{left:682.350000px;}
.x7b{left:693.960000px;}
.x4{left:696.480000px;}
.x8{left:699.720000px;}
.x7c{left:728.970000px;}
.x95{left:731.595000px;}
.x7d{left:751.590000px;}
.x3e{left:767.970000px;}
.x23{left:776.070000px;}
.x32{left:814.410000px;}
.x2{left:819.000000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-22.499961pt;}
.v3{vertical-align:-14.377309pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.v5{vertical-align:37.801516pt;}
.v6{vertical-align:40.441812pt;}
.lsd{letter-spacing:-1.422910pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls3c{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.234667pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:1.040000pt;}
.ls2e{letter-spacing:1.054080pt;}
.ls2f{letter-spacing:1.120000pt;}
.ls23{letter-spacing:6.720000pt;}
.ls21{letter-spacing:7.360000pt;}
.ls36{letter-spacing:11.200000pt;}
.ls11{letter-spacing:12.853289pt;}
.ls20{letter-spacing:13.282344pt;}
.ls2b{letter-spacing:23.260417pt;}
.ls1e{letter-spacing:23.313205pt;}
.ls25{letter-spacing:23.638963pt;}
.ls22{letter-spacing:46.522347pt;}
.ls26{letter-spacing:50.404119pt;}
.ls14{letter-spacing:55.144053pt;}
.ls13{letter-spacing:55.291629pt;}
.ls27{letter-spacing:59.177784pt;}
.ls12{letter-spacing:61.735760pt;}
.ls24{letter-spacing:69.389596pt;}
.lse{letter-spacing:70.491907pt;}
.lsf{letter-spacing:70.737867pt;}
.ls16{letter-spacing:86.625450pt;}
.ls19{letter-spacing:90.192873pt;}
.ls15{letter-spacing:90.847360pt;}
.ls18{letter-spacing:94.504681pt;}
.lsc{letter-spacing:100.457390pt;}
.lsa{letter-spacing:100.659914pt;}
.ls31{letter-spacing:102.552823pt;}
.ls32{letter-spacing:104.429098pt;}
.ls34{letter-spacing:105.999864pt;}
.ls10{letter-spacing:110.696089pt;}
.ls30{letter-spacing:113.443851pt;}
.ls1f{letter-spacing:135.236559pt;}
.ls33{letter-spacing:178.405057pt;}
.lsb{letter-spacing:180.345266pt;}
.ls1d{letter-spacing:209.262089pt;}
.ls1b{letter-spacing:306.348198pt;}
.ls1c{letter-spacing:443.145192pt;}
.ls37{letter-spacing:496.657997pt;}
.ls2c{letter-spacing:590.682583pt;}
.ls29{letter-spacing:634.229284pt;}
.ls38{letter-spacing:689.020389pt;}
.ls28{letter-spacing:731.451779pt;}
.ls9{letter-spacing:752.106667pt;}
.ws3a{word-spacing:-224.775966pt;}
.wsd{word-spacing:-195.988833pt;}
.ws29{word-spacing:-106.254357pt;}
.ws1b{word-spacing:-104.806340pt;}
.ws26{word-spacing:-102.731019pt;}
.ws1e{word-spacing:-70.805505pt;}
.ws21{word-spacing:-70.657930pt;}
.ws45{word-spacing:-70.102824pt;}
.ws7a{word-spacing:-64.000000pt;}
.ws17{word-spacing:-51.203319pt;}
.wsb{word-spacing:-35.250132pt;}
.ws11{word-spacing:-35.179210pt;}
.ws37{word-spacing:-22.361669pt;}
.ws79{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws78{word-spacing:-15.872000pt;}
.ws41{word-spacing:-15.848266pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3d{word-spacing:-15.806386pt;}
.ws1{word-spacing:-15.744000pt;}
.ws6a{word-spacing:-15.680000pt;}
.ws2{word-spacing:-10.800000pt;}
.ws9{word-spacing:-9.259609pt;}
.wsf{word-spacing:-9.240979pt;}
.ws40{word-spacing:-9.158834pt;}
.ws3c{word-spacing:-9.134631pt;}
.ws23{word-spacing:-8.970501pt;}
.ws51{word-spacing:-2.760939pt;}
.ws58{word-spacing:-1.904736pt;}
.ws6{word-spacing:0.000000pt;}
.ws2f{word-spacing:1.539176pt;}
.ws2a{word-spacing:6.167610pt;}
.ws27{word-spacing:6.184538pt;}
.ws4c{word-spacing:6.320484pt;}
.ws4a{word-spacing:6.456995pt;}
.ws22{word-spacing:6.718262pt;}
.ws46{word-spacing:9.466922pt;}
.ws43{word-spacing:9.833410pt;}
.ws3f{word-spacing:11.135156pt;}
.ws60{word-spacing:11.728491pt;}
.ws42{word-spacing:11.790193pt;}
.ws49{word-spacing:15.389766pt;}
.ws5d{word-spacing:15.798084pt;}
.ws61{word-spacing:15.948265pt;}
.ws69{word-spacing:16.415197pt;}
.ws70{word-spacing:17.378336pt;}
.ws13{word-spacing:20.976713pt;}
.ws2b{word-spacing:23.378898pt;}
.ws71{word-spacing:27.404950pt;}
.ws14{word-spacing:29.610668pt;}
.ws18{word-spacing:29.774279pt;}
.ws3b{word-spacing:30.166423pt;}
.ws25{word-spacing:30.536158pt;}
.ws28{word-spacing:30.581065pt;}
.ws12{word-spacing:30.840373pt;}
.ws1f{word-spacing:31.403841pt;}
.ws24{word-spacing:31.462142pt;}
.ws1c{word-spacing:31.567452pt;}
.ws53{word-spacing:32.443995pt;}
.ws34{word-spacing:35.995279pt;}
.ws68{word-spacing:40.359168pt;}
.ws2e{word-spacing:40.454872pt;}
.ws48{word-spacing:40.894579pt;}
.ws5c{word-spacing:41.346548pt;}
.wsc{word-spacing:47.368721pt;}
.ws39{word-spacing:47.534518pt;}
.ws16{word-spacing:50.264960pt;}
.ws36{word-spacing:51.030476pt;}
.ws44{word-spacing:52.002515pt;}
.ws59{word-spacing:53.874727pt;}
.ws2d{word-spacing:53.959545pt;}
.ws6e{word-spacing:56.171002pt;}
.ws6c{word-spacing:56.981869pt;}
.ws4f{word-spacing:58.557597pt;}
.ws66{word-spacing:62.226902pt;}
.ws1a{word-spacing:62.614006pt;}
.ws2c{word-spacing:65.364879pt;}
.ws30{word-spacing:67.406129pt;}
.ws76{word-spacing:72.601181pt;}
.ws35{word-spacing:78.691003pt;}
.ws15{word-spacing:89.274426pt;}
.ws19{word-spacing:89.525600pt;}
.ws10{word-spacing:109.376228pt;}
.wsa{word-spacing:109.596732pt;}
.ws56{word-spacing:115.680937pt;}
.ws62{word-spacing:125.812536pt;}
.ws73{word-spacing:130.668939pt;}
.ws50{word-spacing:132.204048pt;}
.ws64{word-spacing:142.812385pt;}
.ws54{word-spacing:144.904596pt;}
.ws38{word-spacing:149.090705pt;}
.ws1d{word-spacing:152.594491pt;}
.ws74{word-spacing:153.586548pt;}
.ws5b{word-spacing:157.067558pt;}
.ws20{word-spacing:157.186598pt;}
.ws6f{word-spacing:166.509207pt;}
.ws77{word-spacing:166.638929pt;}
.ws72{word-spacing:174.752973pt;}
.ws67{word-spacing:175.106930pt;}
.ws32{word-spacing:188.532769pt;}
.ws57{word-spacing:195.744080pt;}
.ws31{word-spacing:205.703281pt;}
.wse{word-spacing:227.691044pt;}
.ws8{word-spacing:228.150072pt;}
.ws3e{word-spacing:229.190657pt;}
.ws47{word-spacing:285.767701pt;}
.ws55{word-spacing:307.614785pt;}
.ws75{word-spacing:311.136571pt;}
.ws5f{word-spacing:338.474945pt;}
.ws6d{word-spacing:348.974236pt;}
.ws5e{word-spacing:353.617151pt;}
.ws4d{word-spacing:355.538948pt;}
.ws33{word-spacing:364.383199pt;}
.ws6b{word-spacing:383.615503pt;}
.ws5a{word-spacing:426.366856pt;}
.ws4e{word-spacing:530.292972pt;}
.ws52{word-spacing:552.850291pt;}
.ws4b{word-spacing:648.313440pt;}
.ws63{word-spacing:720.510981pt;}
.ws65{word-spacing:777.625200pt;}
._72{margin-left:-928.333074pt;}
._68{margin-left:-752.532241pt;}
._52{margin-left:-612.829318pt;}
._40{margin-left:-484.959355pt;}
._76{margin-left:-457.790738pt;}
._46{margin-left:-429.909605pt;}
._1e{margin-left:-377.535192pt;}
._3a{margin-left:-317.870573pt;}
._62{margin-left:-269.331978pt;}
._4d{margin-left:-245.931360pt;}
._21{margin-left:-230.425690pt;}
._45{margin-left:-222.611128pt;}
._49{margin-left:-217.365163pt;}
._1d{margin-left:-190.765193pt;}
._39{margin-left:-184.021821pt;}
._23{margin-left:-175.136496pt;}
._30{margin-left:-169.642851pt;}
._4b{margin-left:-164.464703pt;}
._2c{margin-left:-163.365629pt;}
._19{margin-left:-161.676906pt;}
._1b{margin-left:-99.588337pt;}
._2a{margin-left:-77.241717pt;}
._84{margin-left:-22.656000pt;}
._85{margin-left:-21.717333pt;}
._86{margin-left:-20.394667pt;}
._0{margin-left:-17.994667pt;}
._1c{margin-left:-6.945744pt;}
._36{margin-left:-3.249131pt;}
._28{margin-left:-2.171943pt;}
._d{margin-left:-1.109333pt;}
._7{width:1.194667pt;}
._9{width:2.112000pt;}
._16{width:3.370667pt;}
._5{width:4.864000pt;}
._6{width:5.760000pt;}
._4{width:7.210667pt;}
._18{width:8.405333pt;}
._b{width:10.090667pt;}
._a{width:11.008000pt;}
._12{width:11.904000pt;}
._8{width:13.568000pt;}
._f{width:15.104000pt;}
._11{width:17.706667pt;}
._15{width:18.944000pt;}
._14{width:19.840000pt;}
._17{width:20.928000pt;}
._82{width:22.400000pt;}
._83{width:23.488000pt;}
._24{width:24.576000pt;}
._10{width:26.880000pt;}
._3{width:27.840000pt;}
._c{width:28.800000pt;}
._e{width:29.824000pt;}
._66{width:32.455030pt;}
._87{width:36.160000pt;}
._1{width:38.400000pt;}
._2{width:43.920000pt;}
._31{width:51.042981pt;}
._2e{width:52.117620pt;}
._2b{width:53.341643pt;}
._2f{width:58.142572pt;}
._69{width:59.776909pt;}
._6f{width:60.895482pt;}
._79{width:62.819465pt;}
._4c{width:67.856580pt;}
._50{width:73.110175pt;}
._4e{width:75.831829pt;}
._20{width:77.685829pt;}
._48{width:80.448184pt;}
._4f{width:81.940300pt;}
._2d{width:83.620112pt;}
._29{width:86.443321pt;}
._26{width:88.164839pt;}
._3e{width:89.574094pt;}
._61{width:90.720385pt;}
._3c{width:92.890320pt;}
._63{width:99.046582pt;}
._6a{width:101.442069pt;}
._5b{width:106.390958pt;}
._27{width:110.402802pt;}
._33{width:116.198855pt;}
._1a{width:122.967608pt;}
._65{width:126.717345pt;}
._4a{width:129.812454pt;}
._67{width:131.984397pt;}
._38{width:133.787764pt;}
._37{width:137.036604pt;}
._70{width:138.356658pt;}
._47{width:146.085431pt;}
._73{width:146.996235pt;}
._71{width:149.827106pt;}
._35{width:154.110763pt;}
._5f{width:155.616891pt;}
._75{width:157.446746pt;}
._44{width:159.904133pt;}
._22{width:163.011945pt;}
._41{width:166.979872pt;}
._53{width:170.343535pt;}
._42{width:171.312047pt;}
._3f{width:178.511103pt;}
._43{width:180.040106pt;}
._56{width:181.002045pt;}
._60{width:184.001591pt;}
._7b{width:187.235475pt;}
._59{width:189.413278pt;}
._55{width:198.338175pt;}
._25{width:199.335676pt;}
._32{width:203.775519pt;}
._1f{width:205.532120pt;}
._5c{width:215.806534pt;}
._7d{width:226.889219pt;}
._34{width:230.879456pt;}
._6b{width:238.177008pt;}
._7f{width:263.038411pt;}
._78{width:265.694331pt;}
._3d{width:270.488883pt;}
._7e{width:273.938096pt;}
._6d{width:279.592399pt;}
._6c{width:284.954561pt;}
._57{width:292.787983pt;}
._6e{width:306.169216pt;}
._5e{width:308.440171pt;}
._74{width:310.345956pt;}
._58{width:316.031239pt;}
._5a{width:324.249849pt;}
._54{width:338.504001pt;}
._5d{width:340.103927pt;}
._3b{width:362.501133pt;}
._80{width:399.379897pt;}
._7c{width:402.811514pt;}
._64{width:408.353221pt;}
._81{width:425.061216pt;}
._7a{width:497.083463pt;}
._51{width:727.350472pt;}
._77{width:752.106667pt;}
._13{width:1942.976000pt;}
.fs3c{font-size:35.721528pt;}
.fs12{font-size:35.790115pt;}
.fs15{font-size:35.882004pt;}
.fs22{font-size:35.914816pt;}
.fs25{font-size:36.086796pt;}
.fs2a{font-size:36.538524pt;}
.fs2c{font-size:36.635335pt;}
.fs36{font-size:36.684708pt;}
.fs1d{font-size:36.857613pt;}
.fsf{font-size:36.963916pt;}
.fs7{font-size:37.038436pt;}
.fs1a{font-size:37.128216pt;}
.fs43{font-size:37.134078pt;}
.fs18{font-size:37.230123pt;}
.fs9{font-size:37.255034pt;}
.fsc{font-size:37.357289pt;}
.fs45{font-size:39.243997pt;}
.fs4{font-size:42.560000pt;}
.fs5{font-size:53.440000pt;}
.fs40{font-size:58.560000pt;}
.fs3d{font-size:61.711266pt;}
.fs13{font-size:61.896591pt;}
.fs16{font-size:62.055507pt;}
.fs23{font-size:62.226789pt;}
.fs26{font-size:62.456362pt;}
.fsb{font-size:62.574268pt;}
.fs2b{font-size:63.225545pt;}
.fs2d{font-size:63.267931pt;}
.fs30{font-size:63.294038pt;}
.fs2e{font-size:63.393065pt;}
.fs37{font-size:63.491184pt;}
.fs28{font-size:63.563243pt;}
.fs1c{font-size:63.708459pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:64.078707pt;}
.fs1f{font-size:64.135232pt;}
.fs8{font-size:64.207891pt;}
.fs19{font-size:64.245936pt;}
.fs2f{font-size:64.313053pt;}
.fs44{font-size:64.364206pt;}
.fsa{font-size:64.372754pt;}
.fs17{font-size:64.422274pt;}
.fs29{font-size:64.525348pt;}
.fsd{font-size:64.549440pt;}
.fs38{font-size:67.157316pt;}
.fs34{font-size:67.758035pt;}
.fs46{font-size:68.021311pt;}
.fs1{font-size:74.560000pt;}
.fs11{font-size:81.140224pt;}
.fs14{font-size:81.348547pt;}
.fs35{font-size:83.244567pt;}
.fs1b{font-size:83.340704pt;}
.fse{font-size:83.903938pt;}
.fs6{font-size:84.073089pt;}
.fs1e{font-size:84.074858pt;}
.fs20{font-size:86.382891pt;}
.fs31{font-size:91.668995pt;}
.fs24{font-size:93.277781pt;}
.fs27{font-size:93.747681pt;}
.fs33{font-size:94.708563pt;}
.fs21{font-size:94.992279pt;}
.fs39{font-size:95.300960pt;}
.fs3{font-size:96.000000pt;}
.fs47{font-size:96.415911pt;}
.fs3a{font-size:96.819872pt;}
.fs3e{font-size:97.431314pt;}
.fs41{font-size:100.437793pt;}
.fs42{font-size:100.564551pt;}
.fs32{font-size:105.733953pt;}
.fs3b{font-size:107.658175pt;}
.fs3f{font-size:108.521098pt;}
.fs2{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:2.582605pt;}
.ydd{bottom:2.593590pt;}
.y25{bottom:2.880000pt;}
.yd4{bottom:3.288367pt;}
.yca{bottom:3.343723pt;}
.y11b{bottom:3.407163pt;}
.y107{bottom:3.757560pt;}
.y5d{bottom:3.842328pt;}
.y64{bottom:3.852874pt;}
.y9e{bottom:3.874032pt;}
.y9a{bottom:3.884666pt;}
.y158{bottom:4.000000pt;}
.y179{bottom:4.734342pt;}
.y6d{bottom:4.975770pt;}
.y71{bottom:4.988545pt;}
.ye5{bottom:5.062537pt;}
.yef{bottom:5.075950pt;}
.ye8{bottom:5.107234pt;}
.y69{bottom:5.128217pt;}
.y58{bottom:5.138555pt;}
.yac{bottom:5.141803pt;}
.y176{bottom:6.105733pt;}
.y60{bottom:6.474709pt;}
.yaa{bottom:6.474787pt;}
.yf3{bottom:6.647060pt;}
.ydf{bottom:6.669001pt;}
.yfd{bottom:7.390459pt;}
.y12b{bottom:7.531585pt;}
.y6c{bottom:7.862928pt;}
.y70{bottom:7.883115pt;}
.y5e{bottom:8.002081pt;}
.y65{bottom:8.024045pt;}
.y9d{bottom:8.033912pt;}
.y99{bottom:8.055963pt;}
.y68{bottom:8.109041pt;}
.y57{bottom:8.125389pt;}
.yb0{bottom:8.147310pt;}
.y16b{bottom:8.569586pt;}
.y169{bottom:8.601403pt;}
.yb4{bottom:8.791793pt;}
.y12a{bottom:8.828064pt;}
.y6e{bottom:8.999293pt;}
.y72{bottom:9.022398pt;}
.y11f{bottom:9.032154pt;}
.ye6{bottom:9.156222pt;}
.yf0{bottom:9.180482pt;}
.ye9{bottom:9.211891pt;}
.y6a{bottom:9.262868pt;}
.y59{bottom:9.281542pt;}
.yb3{bottom:9.299584pt;}
.yb1{bottom:9.324775pt;}
.ya8{bottom:9.426596pt;}
.y145{bottom:9.599640pt;}
.y129{bottom:9.723161pt;}
.yab{bottom:10.537501pt;}
.y16c{bottom:10.569190pt;}
.ya9{bottom:10.601006pt;}
.y103{bottom:10.887252pt;}
.y12c{bottom:11.544297pt;}
.y104{bottom:11.626040pt;}
.y172{bottom:11.819621pt;}
.y102{bottom:12.139858pt;}
.yec{bottom:12.800000pt;}
.yfa{bottom:13.200000pt;}
.y75{bottom:13.280000pt;}
.y105{bottom:13.295625pt;}
.yce{bottom:13.840000pt;}
.yc9{bottom:14.094006pt;}
.y106{bottom:14.226806pt;}
.yd3{bottom:14.228837pt;}
.y11e{bottom:14.368314pt;}
.y121{bottom:14.817605pt;}
.y6b{bottom:14.871483pt;}
.y5a{bottom:14.901464pt;}
.y12f{bottom:15.760000pt;}
.y96{bottom:15.981199pt;}
.y10a{bottom:16.960000pt;}
.y175{bottom:17.239853pt;}
.y11a{bottom:17.324646pt;}
.yeb{bottom:17.360000pt;}
.y74{bottom:17.440000pt;}
.y17a{bottom:17.696245pt;}
.y16d{bottom:17.710597pt;}
.y16a{bottom:17.742286pt;}
.ycb{bottom:18.125143pt;}
.yd5{bottom:18.149723pt;}
.yd8{bottom:18.400000pt;}
.y146{bottom:18.459139pt;}
.y11c{bottom:18.482533pt;}
.y178{bottom:18.610331pt;}
.ycd{bottom:18.640000pt;}
.y120{bottom:19.382398pt;}
.y12e{bottom:20.080000pt;}
.y109{bottom:21.360000pt;}
.y173{bottom:21.386494pt;}
.y17d{bottom:25.760000pt;}
.yd7{bottom:26.640000pt;}
.y17c{bottom:29.440000pt;}
.y177{bottom:32.519832pt;}
.y11d{bottom:34.649293pt;}
.y174{bottom:37.744860pt;}
.y28{bottom:40.986667pt;}
.y52{bottom:71.786667pt;}
.y18e{bottom:74.346667pt;}
.yd1{bottom:75.146667pt;}
.y156{bottom:76.906667pt;}
.y1ae{bottom:79.786667pt;}
.y23{bottom:81.146667pt;}
.y125{bottom:82.266667pt;}
.yd0{bottom:94.266667pt;}
.y51{bottom:94.506667pt;}
.y155{bottom:95.386667pt;}
.y8e{bottom:95.946667pt;}
.y18d{bottom:97.066667pt;}
.y1ad{bottom:102.506667pt;}
.ycf{bottom:103.626667pt;}
.y22{bottom:103.866667pt;}
.y124{bottom:104.986667pt;}
.y8d{bottom:114.426667pt;}
.y50{bottom:117.146667pt;}
.y154{bottom:118.106667pt;}
.y18c{bottom:119.706667pt;}
.y1ac{bottom:125.146667pt;}
.y21{bottom:126.506667pt;}
.ycc{bottom:127.626667pt;}
.yc8{bottom:127.666667pt;}
.y8c{bottom:137.066667pt;}
.y4f{bottom:139.786667pt;}
.y153{bottom:140.746667pt;}
.y18b{bottom:142.346667pt;}
.y1ab{bottom:147.786667pt;}
.y20{bottom:149.146667pt;}
.y123{bottom:150.266667pt;}
.y8b{bottom:159.786667pt;}
.y4e{bottom:162.506667pt;}
.y152{bottom:163.386667pt;}
.y18a{bottom:165.066667pt;}
.y119{bottom:169.333333pt;}
.y1aa{bottom:170.506667pt;}
.y1f{bottom:171.866667pt;}
.yc7{bottom:174.346667pt;}
.y8a{bottom:182.426667pt;}
.y4d{bottom:185.146667pt;}
.y151{bottom:186.106667pt;}
.y189{bottom:187.706667pt;}
.y122{bottom:187.946667pt;}
.y1a9{bottom:193.146667pt;}
.yc6{bottom:196.986667pt;}
.y89{bottom:205.066667pt;}
.y4c{bottom:207.786667pt;}
.y150{bottom:208.746667pt;}
.y1e{bottom:210.346667pt;}
.y1a8{bottom:215.786667pt;}
.y118{bottom:217.946667pt;}
.yc5{bottom:219.626667pt;}
.y88{bottom:227.786667pt;}
.y4b{bottom:230.506667pt;}
.y14f{bottom:231.386667pt;}
.y188{bottom:233.066667pt;}
.y117{bottom:237.066667pt;}
.y1a7{bottom:238.506667pt;}
.yc4{bottom:242.346667pt;}
.y116{bottom:246.426667pt;}
.y87{bottom:250.426667pt;}
.y4a{bottom:253.146667pt;}
.y14e{bottom:254.106667pt;}
.y187{bottom:255.706667pt;}
.y1a6{bottom:261.146667pt;}
.yc3{bottom:264.986667pt;}
.y115{bottom:266.506667pt;}
.y1d{bottom:267.386667pt;}
.y86{bottom:273.066667pt;}
.y49{bottom:275.786667pt;}
.y14d{bottom:276.746667pt;}
.y186{bottom:278.346667pt;}
.y1a5{bottom:283.786667pt;}
.yc2{bottom:287.626667pt;}
.y114{bottom:289.226667pt;}
.y1c{bottom:290.186667pt;}
.y85{bottom:292.106667pt;}
.y48{bottom:298.506667pt;}
.y14c{bottom:299.386667pt;}
.y84{bottom:300.200000pt;}
.y185{bottom:301.066667pt;}
.y1a4{bottom:306.506667pt;}
.yc1{bottom:310.346667pt;}
.y113{bottom:311.866667pt;}
.y47{bottom:321.146667pt;}
.y14b{bottom:322.106667pt;}
.y184{bottom:323.706667pt;}
.y1b{bottom:328.826667pt;}
.y1a3{bottom:329.146667pt;}
.yc0{bottom:329.400000pt;}
.y112{bottom:334.506667pt;}
.y83{bottom:337.626667pt;}
.ybf{bottom:338.746667pt;}
.y46{bottom:343.786667pt;}
.y183{bottom:346.346667pt;}
.y1a{bottom:351.466667pt;}
.y1a2{bottom:351.786667pt;}
.y111{bottom:357.226667pt;}
.ybe{bottom:358.826667pt;}
.y82{bottom:360.266667pt;}
.y14a{bottom:360.586667pt;}
.y45{bottom:366.506667pt;}
.y182{bottom:369.066667pt;}
.y19{bottom:374.186667pt;}
.y1a1{bottom:374.506667pt;}
.y110{bottom:379.866667pt;}
.ybd{bottom:381.546667pt;}
.y81{bottom:382.986667pt;}
.y44{bottom:389.146667pt;}
.y181{bottom:391.706667pt;}
.y18{bottom:396.826667pt;}
.y1a0{bottom:397.146667pt;}
.y149{bottom:399.386667pt;}
.y10f{bottom:402.506667pt;}
.ybc{bottom:404.213333pt;}
.y80{bottom:405.653333pt;}
.y43{bottom:411.813333pt;}
.y180{bottom:414.373333pt;}
.y17{bottom:419.493333pt;}
.y19f{bottom:419.813333pt;}
.y148{bottom:422.133333pt;}
.y10e{bottom:425.253333pt;}
.ybb{bottom:426.853333pt;}
.y7f{bottom:428.293333pt;}
.y42{bottom:434.533333pt;}
.y17f{bottom:437.093333pt;}
.y16{bottom:442.213333pt;}
.y19e{bottom:442.533333pt;}
.y10d{bottom:447.893333pt;}
.y144{bottom:449.266667pt;}
.yba{bottom:449.573333pt;}
.y7e{bottom:451.013333pt;}
.y41{bottom:457.173333pt;}
.y17e{bottom:459.733333pt;}
.y147{bottom:461.253333pt;}
.y15{bottom:464.853333pt;}
.y10c{bottom:470.533333pt;}
.yb9{bottom:472.213333pt;}
.y7d{bottom:473.653333pt;}
.y17b{bottom:478.773333pt;}
.y40{bottom:479.813333pt;}
.y19d{bottom:481.013333pt;}
.y171{bottom:486.866667pt;}
.y143{bottom:491.653333pt;}
.y10b{bottom:493.253333pt;}
.yb8{bottom:494.853333pt;}
.y7c{bottom:496.293333pt;}
.y3f{bottom:502.533333pt;}
.y14{bottom:505.813333pt;}
.y1b1{bottom:509.173333pt;}
.y108{bottom:512.293333pt;}
.yb7{bottom:517.573333pt;}
.y142{bottom:518.693333pt;}
.y7b{bottom:519.013333pt;}
.y19c{bottom:519.813333pt;}
.y101{bottom:520.266667pt;}
.y3e{bottom:525.173333pt;}
.y141{bottom:526.666667pt;}
.y13{bottom:528.453333pt;}
.y1b0{bottom:531.813333pt;}
.yb6{bottom:540.213333pt;}
.y7a{bottom:541.653333pt;}
.y3d{bottom:547.813333pt;}
.y170{bottom:549.333333pt;}
.y12{bottom:551.093333pt;}
.y1af{bottom:554.533333pt;}
.y19b{bottom:558.373333pt;}
.yb5{bottom:562.853333pt;}
.y140{bottom:564.213333pt;}
.y79{bottom:564.293333pt;}
.y100{bottom:565.333333pt;}
.y3c{bottom:570.533333pt;}
.y16f{bottom:571.973333pt;}
.yb2{bottom:581.866667pt;}
.yaf{bottom:583.133333pt;}
.y13f{bottom:586.853333pt;}
.y78{bottom:587.013333pt;}
.yff{bottom:587.973333pt;}
.y11{bottom:589.893333pt;}
.yae{bottom:592.533333pt;}
.y3b{bottom:593.173333pt;}
.y16e{bottom:594.693333pt;}
.y19a{bottom:597.173333pt;}
.yfe{bottom:607.013333pt;}
.y13e{bottom:609.493333pt;}
.y77{bottom:609.653333pt;}
.y10{bottom:612.533333pt;}
.y168{bottom:613.733333pt;}
.yfc{bottom:615.000000pt;}
.y3a{bottom:615.813333pt;}
.ya7{bottom:619.133333pt;}
.y167{bottom:624.373333pt;}
.yad{bottom:629.813333pt;}
.y13d{bottom:632.213333pt;}
.y76{bottom:632.293333pt;}
.y199{bottom:635.653333pt;}
.y39{bottom:638.533333pt;}
.yf{bottom:651.173333pt;}
.y73{bottom:651.333333pt;}
.yfb{bottom:652.533333pt;}
.y13c{bottom:654.853333pt;}
.y6f{bottom:659.400000pt;}
.y166{bottom:659.573333pt;}
.ya6{bottom:659.893333pt;}
.y38{bottom:661.173333pt;}
.yf9{bottom:671.573333pt;}
.y198{bottom:674.533333pt;}
.y13b{bottom:677.493333pt;}
.yf8{bottom:679.533333pt;}
.y165{bottom:679.573333pt;}
.ye{bottom:681.253333pt;}
.ya5{bottom:682.613333pt;}
.y37{bottom:683.813333pt;}
.y67{bottom:693.266667pt;}
.yd{bottom:696.533333pt;}
.y197{bottom:697.173333pt;}
.y164{bottom:699.573333pt;}
.y13a{bottom:700.213333pt;}
.y66{bottom:702.613333pt;}
.ya4{bottom:705.253333pt;}
.y36{bottom:706.533333pt;}
.yf5{bottom:713.400000pt;}
.y163{bottom:719.573333pt;}
.y196{bottom:719.813333pt;}
.yf6{bottom:720.133333pt;}
.yf4{bottom:722.773333pt;}
.y139{bottom:722.853333pt;}
.yc{bottom:726.533333pt;}
.y63{bottom:726.666667pt;}
.ya3{bottom:727.893333pt;}
.y35{bottom:729.173333pt;}
.y62{bottom:734.693333pt;}
.yf2{bottom:739.333333pt;}
.y162{bottom:739.573333pt;}
.yb{bottom:741.893333pt;}
.y195{bottom:742.533333pt;}
.y138{bottom:745.493333pt;}
.yf1{bottom:745.973333pt;}
.ya2{bottom:750.613333pt;}
.y34{bottom:751.813333pt;}
.y61{bottom:754.453333pt;}
.y161{bottom:759.573333pt;}
.yee{bottom:761.933333pt;}
.y194{bottom:765.173333pt;}
.y137{bottom:768.213333pt;}
.yed{bottom:771.333333pt;}
.ya{bottom:771.893333pt;}
.ya1{bottom:773.253333pt;}
.y56{bottom:773.466667pt;}
.y33{bottom:774.533333pt;}
.y5c{bottom:774.866667pt;}
.y5f{bottom:776.200000pt;}
.y160{bottom:780.213333pt;}
.y5b{bottom:782.853333pt;}
.yea{bottom:787.013333pt;}
.y136{bottom:787.266667pt;}
.y193{bottom:787.813333pt;}
.ye7{bottom:795.000000pt;}
.ya0{bottom:795.893333pt;}
.y135{bottom:796.613333pt;}
.y32{bottom:797.173333pt;}
.y9{bottom:803.013333pt;}
.y55{bottom:810.533333pt;}
.y15f{bottom:812.533333pt;}
.y134{bottom:815.893333pt;}
.y9f{bottom:818.613333pt;}
.y31{bottom:819.813333pt;}
.ye4{bottom:828.066667pt;}
.y54{bottom:833.173333pt;}
.ye3{bottom:837.413333pt;}
.y9c{bottom:837.666667pt;}
.y133{bottom:838.533333pt;}
.y30{bottom:842.533333pt;}
.y8{bottom:843.493333pt;}
.y9b{bottom:845.653333pt;}
.y15e{bottom:848.213333pt;}
.y192{bottom:855.813333pt;}
.ye2{bottom:856.773333pt;}
.y132{bottom:861.253333pt;}
.y95{bottom:861.800000pt;}
.y98{bottom:863.133333pt;}
.y2f{bottom:865.173333pt;}
.y15d{bottom:868.213333pt;}
.y7{bottom:871.093333pt;}
.y97{bottom:871.173333pt;}
.y53{bottom:871.653333pt;}
.y191{bottom:878.533333pt;}
.ye1{bottom:879.413333pt;}
.y131{bottom:883.920000pt;}
.y2e{bottom:887.840000pt;}
.y15c{bottom:888.240000pt;}
.y94{bottom:891.360000pt;}
.y190{bottom:901.200000pt;}
.ye0{bottom:902.080000pt;}
.y130{bottom:906.560000pt;}
.y15b{bottom:908.240000pt;}
.y93{bottom:910.333333pt;}
.y2d{bottom:910.560000pt;}
.y6{bottom:912.960000pt;}
.y92{bottom:919.760000pt;}
.yde{bottom:921.133333pt;}
.ydc{bottom:925.133333pt;}
.y12d{bottom:925.600000pt;}
.ydb{bottom:927.840000pt;}
.y15a{bottom:928.240000pt;}
.y2c{bottom:933.200000pt;}
.y128{bottom:933.666667pt;}
.y5{bottom:935.760000pt;}
.y18f{bottom:939.680000pt;}
.y91{bottom:939.840000pt;}
.yda{bottom:943.800000pt;}
.y159{bottom:948.240000pt;}
.yd9{bottom:951.840000pt;}
.y4{bottom:954.000000pt;}
.y2b{bottom:955.840000pt;}
.y90{bottom:962.560000pt;}
.yd6{bottom:968.000000pt;}
.y157{bottom:968.880000pt;}
.y127{bottom:972.533333pt;}
.yd2{bottom:975.933333pt;}
.y3{bottom:977.040000pt;}
.y2a{bottom:978.560000pt;}
.y126{bottom:981.920000pt;}
.y8f{bottom:1001.040000pt;}
.y29{bottom:1001.200000pt;}
.y2{bottom:1011.840000pt;}
.y24{bottom:1011.920000pt;}
.y27{bottom:1023.680000pt;}
.y1{bottom:1036.960000pt;}
.y26{bottom:1046.560000pt;}
.h9{height:15.280000pt;}
.h58{height:15.799240pt;}
.h4a{height:15.866438pt;}
.h76{height:20.000000pt;}
.h79{height:20.026667pt;}
.h56{height:20.066524pt;}
.h4c{height:20.132763pt;}
.h15{height:20.866668pt;}
.h12{height:24.133442pt;}
.h17{height:24.199682pt;}
.h4e{height:24.999425pt;}
.h51{height:25.065663pt;}
.h20{height:25.800059pt;}
.h24{height:25.866299pt;}
.h38{height:26.733181pt;}
.h32{height:29.199922pt;}
.h6e{height:30.866728pt;}
.h40{height:33.266800pt;}
.h1a{height:33.333472pt;}
.hc{height:33.400673pt;}
.h47{height:33.426100pt;}
.h69{height:33.979927pt;}
.h83{height:34.396165pt;}
.h3d{height:34.999760pt;}
.h71{height:35.041284pt;}
.h22{height:35.108565pt;}
.h26{height:35.198704pt;}
.h2b{height:35.216225pt;}
.h3e{height:35.230892pt;}
.h45{height:35.399596pt;}
.h4f{height:35.842722pt;}
.h52{height:35.937690pt;}
.h66{height:35.986122pt;}
.h64{height:36.004035pt;}
.h35{height:36.155734pt;}
.h1c{height:36.278062pt;}
.he{height:36.351199pt;}
.h30{height:36.421184pt;}
.h80{height:36.426935pt;}
.h7e{height:36.445067pt;}
.h2d{height:36.521151pt;}
.h13{height:36.545587pt;}
.h18{height:36.645895pt;}
.h60{height:37.327799pt;}
.h54{height:41.040000pt;}
.h8{height:41.770312pt;}
.h5a{height:41.840000pt;}
.h28{height:41.920000pt;}
.h43{height:43.040000pt;}
.h44{height:44.266231pt;}
.hb{height:44.437500pt;}
.h62{height:44.999665pt;}
.h73{height:46.880000pt;}
.h61{height:49.360000pt;}
.h7d{height:50.934567pt;}
.h49{height:52.240000pt;}
.ha{height:53.857500pt;}
.h78{height:57.473437pt;}
.h6a{height:58.809949pt;}
.h37{height:59.011205pt;}
.h77{height:59.017500pt;}
.h1e{height:59.354154pt;}
.h10{height:59.473813pt;}
.h84{height:59.618603pt;}
.h2a{height:60.873786pt;}
.h29{height:60.904086pt;}
.h3f{height:61.041806pt;}
.h46{height:61.267008pt;}
.h16{height:61.413222pt;}
.h50{height:62.021543pt;}
.h53{height:62.063121pt;}
.h55{height:62.185873pt;}
.h72{height:62.193385pt;}
.h68{height:62.205776pt;}
.h67{height:62.282123pt;}
.h65{height:62.313125pt;}
.h23{height:62.380158pt;}
.h36{height:62.495261pt;}
.h34{height:62.526369pt;}
.h27{height:62.540315pt;}
.h42{height:62.712935pt;}
.h5f{height:62.762204pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h1d{height:62.858459pt;}
.h3a{height:62.945223pt;}
.hf{height:62.985182pt;}
.h5e{height:63.016534pt;}
.h31{height:63.022502pt;}
.h2f{height:63.053872pt;}
.h57{height:63.088341pt;}
.h81{height:63.138520pt;}
.h14{height:63.146905pt;}
.h7f{height:63.169948pt;}
.h2e{height:63.195483pt;}
.h2c{height:63.226939pt;}
.h4d{height:63.296593pt;}
.h19{height:63.320227pt;}
.h6d{height:63.719494pt;}
.h59{height:63.788522pt;}
.h4b{height:64.059831pt;}
.h7b{height:64.206182pt;}
.h2{height:64.500000pt;}
.h1f{height:64.579322pt;}
.h11{height:64.709515pt;}
.h86{height:64.867051pt;}
.h87{height:66.960000pt;}
.h41{height:72.023058pt;}
.h48{height:72.541120pt;}
.h3{height:73.176562pt;}
.h21{height:75.157717pt;}
.h25{height:75.350680pt;}
.h63{height:77.106906pt;}
.h33{height:77.195955pt;}
.h1b{height:77.717661pt;}
.hd{height:77.874341pt;}
.h39{height:77.875979pt;}
.h3b{height:80.013840pt;}
.h5b{height:84.910197pt;}
.h5d{height:87.725656pt;}
.h3c{height:87.988454pt;}
.h6b{height:88.274376pt;}
.h85{height:89.307121pt;}
.h6f{height:89.681298pt;}
.h74{height:90.247658pt;}
.h7a{height:93.032467pt;}
.h7c{height:93.149879pt;}
.h7{height:96.750000pt;}
.h5c{height:97.938139pt;}
.h70{height:99.720488pt;}
.h75{height:100.519786pt;}
.h6c{height:101.788725pt;}
.h82{height:103.447880pt;}
.h4{height:146.594219pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1d{width:13.333004pt;}
.w18{width:13.399242pt;}
.w19{width:14.133583pt;}
.w6{width:15.799893pt;}
.w4{width:15.867094pt;}
.w23{width:20.066171pt;}
.w1c{width:39.267215pt;}
.wa{width:42.800000pt;}
.w1a{width:49.265360pt;}
.w7{width:53.398951pt;}
.w5{width:64.332365pt;}
.we{width:72.536290pt;}
.w15{width:75.933669pt;}
.w17{width:76.797395pt;}
.w2f{width:77.669682pt;}
.w14{width:79.265637pt;}
.w2e{width:85.136156pt;}
.w12{width:89.402950pt;}
.w28{width:91.360000pt;}
.w29{width:91.386667pt;}
.w2a{width:91.440000pt;}
.w2b{width:94.320000pt;}
.w2d{width:94.400000pt;}
.w2c{width:94.426667pt;}
.wc{width:96.000420pt;}
.w3{width:97.669686pt;}
.w16{width:97.736885pt;}
.wd{width:101.865797pt;}
.w2{width:105.706667pt;}
.wb{width:105.935355pt;}
.w10{width:116.063767pt;}
.w8{width:116.869618pt;}
.wf{width:121.065456pt;}
.w1e{width:124.396101pt;}
.w1b{width:142.729500pt;}
.w27{width:150.480000pt;}
.w21{width:170.202052pt;}
.w1f{width:170.269254pt;}
.w24{width:182.737679pt;}
.w11{width:195.465426pt;}
.w22{width:261.324546pt;}
.w25{width:276.396523pt;}
.w30{width:291.337384pt;}
.w13{width:318.139124pt;}
.w20{width:333.136929pt;}
.w26{width:375.527710pt;}
.w9{width:628.240000pt;}
.w1{width:794.000000pt;}
.w0{width:794.160000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.875268pt;}
.x4c{left:2.801759pt;}
.x12{left:3.875162pt;}
.x2f{left:5.249409pt;}
.x9{left:6.400000pt;}
.x2a{left:9.023970pt;}
.x11{left:10.740642pt;}
.x63{left:13.805464pt;}
.x2d{left:14.730133pt;}
.x29{left:16.448211pt;}
.x3d{left:17.496937pt;}
.xe{left:18.474155pt;}
.x15{left:20.843218pt;}
.x28{left:23.296508pt;}
.x40{left:24.259116pt;}
.x1b{left:26.063910pt;}
.x44{left:28.699562pt;}
.xa{left:30.201206pt;}
.x48{left:31.806237pt;}
.x86{left:33.626667pt;}
.x8b{left:34.720000pt;}
.x96{left:36.414991pt;}
.xc{left:37.397175pt;}
.x93{left:39.633728pt;}
.x1c{left:40.653287pt;}
.x67{left:41.609685pt;}
.x90{left:45.200000pt;}
.xb{left:46.393744pt;}
.x8c{left:49.840000pt;}
.x91{left:52.880000pt;}
.x43{left:53.828746pt;}
.x8a{left:54.960000pt;}
.x88{left:57.360000pt;}
.x2e{left:58.952371pt;}
.x53{left:59.986027pt;}
.x21{left:61.600000pt;}
.x34{left:62.803934pt;}
.x68{left:65.070671pt;}
.x1{left:66.240000pt;}
.x3c{left:68.593347pt;}
.x72{left:71.103536pt;}
.x98{left:72.099415pt;}
.x8d{left:76.640000pt;}
.x25{left:78.579766pt;}
.x80{left:79.654477pt;}
.x64{left:81.824812pt;}
.x6c{left:83.605534pt;}
.x6{left:85.200000pt;}
.x20{left:89.161154pt;}
.xd{left:91.855034pt;}
.x70{left:96.142049pt;}
.x60{left:97.350047pt;}
.x5c{left:99.873246pt;}
.x3b{left:102.550193pt;}
.x7{left:104.080000pt;}
.x3a{left:108.036829pt;}
.x49{left:109.373333pt;}
.x97{left:111.021972pt;}
.x73{left:113.453938pt;}
.x6e{left:116.006910pt;}
.x6d{left:119.655152pt;}
.x66{left:123.596655pt;}
.x4a{left:125.200000pt;}
.x6b{left:132.191667pt;}
.x30{left:138.826667pt;}
.x5f{left:139.922564pt;}
.x7e{left:140.957941pt;}
.x78{left:145.646657pt;}
.x46{left:153.373333pt;}
.x75{left:160.040000pt;}
.xf{left:163.946667pt;}
.x76{left:180.106667pt;}
.x71{left:183.367945pt;}
.x33{left:185.640000pt;}
.x18{left:195.573333pt;}
.x59{left:196.906667pt;}
.x38{left:209.306667pt;}
.x77{left:211.240000pt;}
.x6f{left:218.350173pt;}
.x4b{left:229.773333pt;}
.x62{left:230.773333pt;}
.x5a{left:236.186667pt;}
.x82{left:237.954290pt;}
.x4d{left:243.146667pt;}
.x57{left:246.373333pt;}
.x47{left:251.066667pt;}
.x58{left:260.506667pt;}
.x65{left:266.730078pt;}
.x4e{left:274.306667pt;}
.x8e{left:283.546667pt;}
.x4f{left:288.426667pt;}
.x84{left:289.546667pt;}
.x27{left:290.506667pt;}
.x19{left:293.226667pt;}
.x3f{left:298.306667pt;}
.x36{left:299.373333pt;}
.x35{left:301.706667pt;}
.x5b{left:306.826667pt;}
.x5e{left:312.173333pt;}
.x81{left:323.484150pt;}
.x52{left:325.973333pt;}
.x50{left:335.506667pt;}
.x1f{left:338.840000pt;}
.x24{left:344.373333pt;}
.x74{left:346.586667pt;}
.x42{left:359.306667pt;}
.x39{left:364.440000pt;}
.x45{left:373.653333pt;}
.x41{left:377.546667pt;}
.x85{left:380.906667pt;}
.x51{left:384.746667pt;}
.x2b{left:387.333333pt;}
.x26{left:388.693333pt;}
.x22{left:394.133333pt;}
.x5d{left:397.893333pt;}
.x54{left:407.093333pt;}
.x10{left:418.106667pt;}
.x61{left:420.853333pt;}
.x79{left:427.093333pt;}
.x13{left:433.973333pt;}
.x2c{left:441.640000pt;}
.x92{left:454.773333pt;}
.x87{left:472.293333pt;}
.x7f{left:475.893333pt;}
.x99{left:481.413333pt;}
.x55{left:483.906667pt;}
.x5{left:485.333333pt;}
.x37{left:494.853333pt;}
.x69{left:502.293333pt;}
.x14{left:506.773333pt;}
.x3{left:522.613333pt;}
.x56{left:533.173333pt;}
.x6a{left:537.413333pt;}
.x94{left:540.053333pt;}
.x1a{left:544.773333pt;}
.x89{left:563.733333pt;}
.x8f{left:566.693333pt;}
.x16{left:571.093333pt;}
.x17{left:587.333333pt;}
.x7a{left:596.773333pt;}
.x1e{left:598.213333pt;}
.x31{left:602.840000pt;}
.x83{left:606.533333pt;}
.x7b{left:616.853333pt;}
.x4{left:619.093333pt;}
.x8{left:621.973333pt;}
.x7c{left:647.973333pt;}
.x95{left:650.306667pt;}
.x7d{left:668.080000pt;}
.x3e{left:682.640000pt;}
.x23{left:689.840000pt;}
.x32{left:723.920000pt;}
.x2{left:728.000000pt;}
}




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