
    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_5ddd459a5fecbf6164e2b42d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.175000;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_0f8ad5d876145adda5cd2b15.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.175000;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_5ddd459a5fecbf6164e2b42d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_033fd6d606f111b29c735932.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_5ddd459a5fecbf6164e2b42d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.175000;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_920edc374f50824725b73a5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.154000;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;}
.m2a{transform:matrix(0.244403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244403,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.244574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244574,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.244912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244912,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245082,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245247,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.245376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245376,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.245724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245724,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246812,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246979,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247429,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247503,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247676,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248381,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.m66{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250626,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251253,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251344,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251376,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251794,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253262,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.253591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253591,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253891,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254071,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254459,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254571,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.256088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256088,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.256441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256441,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.256668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256668,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.840000px;}
.v4{vertical-align:26.415000px;}
.v3{vertical-align:28.176000px;}
.v2{vertical-align:40.896000px;}
.v6{vertical-align:52.875000px;}
.v5{vertical-align:79.290000px;}
.v7{vertical-align:105.750000px;}
.ls25{letter-spacing:-2.640000px;}
.lsb{letter-spacing:-1.440000px;}
.ls32{letter-spacing:-1.275000px;}
.ls31{letter-spacing:-1.173000px;}
.ls30{letter-spacing:-1.122000px;}
.ls2f{letter-spacing:-1.020000px;}
.ls33{letter-spacing:-0.816000px;}
.ls28{letter-spacing:-0.714000px;}
.ls26{letter-spacing:-0.663000px;}
.ls34{letter-spacing:-0.612000px;}
.ls21{letter-spacing:-0.561000px;}
.ls27{letter-spacing:-0.510000px;}
.ls23{letter-spacing:-0.459000px;}
.ls2a{letter-spacing:-0.408000px;}
.ls2c{letter-spacing:-0.357000px;}
.ls2b{letter-spacing:-0.315000px;}
.ls22{letter-spacing:-0.306000px;}
.ls24{letter-spacing:-0.255000px;}
.ls1c{letter-spacing:-0.204000px;}
.lsc{letter-spacing:-0.153000px;}
.ls1b{letter-spacing:-0.102000px;}
.ls1a{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.025500px;}
.ls20{letter-spacing:0.051000px;}
.ls0{letter-spacing:0.078000px;}
.ls7{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.111000px;}
.ls29{letter-spacing:0.127500px;}
.ls19{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls17{letter-spacing:0.204000px;}
.ls1f{letter-spacing:0.229500px;}
.ls18{letter-spacing:0.255000px;}
.ls2e{letter-spacing:0.280500px;}
.ls5{letter-spacing:0.294000px;}
.ls1d{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.357000px;}
.lse{letter-spacing:0.408000px;}
.ls6{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.561000px;}
.ls36{letter-spacing:0.570000px;}
.ls2d{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.840000px;}
.ls10{letter-spacing:0.918000px;}
.ls16{letter-spacing:0.969000px;}
.ls11{letter-spacing:1.020000px;}
.ls12{letter-spacing:1.071000px;}
.ls13{letter-spacing:1.147500px;}
.ls14{letter-spacing:1.326000px;}
.ls15{letter-spacing:1.377000px;}
.ls8{letter-spacing:4.896000px;}
.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;}
}
.ws7c{word-spacing:-14.178000px;}
.ws3{word-spacing:-13.968000px;}
.ws16{word-spacing:-13.776000px;}
.ws80{word-spacing:-13.770000px;}
.ws45{word-spacing:-13.344000px;}
.ws62{word-spacing:-12.510000px;}
.ws18{word-spacing:-12.096000px;}
.ws2{word-spacing:-4.896000px;}
.ws7f{word-spacing:-2.805000px;}
.ws6{word-spacing:-2.640000px;}
.ws4{word-spacing:-2.256000px;}
.ws3c{word-spacing:-2.193000px;}
.ws1e{word-spacing:-2.142000px;}
.ws24{word-spacing:-2.091000px;}
.ws4d{word-spacing:-2.040000px;}
.ws21{word-spacing:-1.989000px;}
.ws26{word-spacing:-1.938000px;}
.ws7e{word-spacing:-1.887000px;}
.ws1c{word-spacing:-1.785000px;}
.ws17{word-spacing:-1.764000px;}
.ws31{word-spacing:-1.734000px;}
.ws6d{word-spacing:-1.683000px;}
.ws70{word-spacing:-1.632000px;}
.ws2d{word-spacing:-1.581000px;}
.ws3b{word-spacing:-1.530000px;}
.ws4f{word-spacing:-1.479000px;}
.wse{word-spacing:-1.440000px;}
.ws7b{word-spacing:-1.428000px;}
.ws27{word-spacing:-1.377000px;}
.ws50{word-spacing:-1.326000px;}
.ws32{word-spacing:-1.224000px;}
.ws79{word-spacing:-1.071000px;}
.ws72{word-spacing:-1.020000px;}
.ws77{word-spacing:-0.969000px;}
.ws7{word-spacing:-0.960000px;}
.ws4e{word-spacing:-0.918000px;}
.ws2a{word-spacing:-0.867000px;}
.ws35{word-spacing:-0.840000px;}
.ws3a{word-spacing:-0.765000px;}
.ws1b{word-spacing:-0.714000px;}
.ws5{word-spacing:-0.672000px;}
.ws25{word-spacing:-0.612000px;}
.ws8{word-spacing:-0.576000px;}
.ws39{word-spacing:-0.561000px;}
.wsd{word-spacing:-0.528000px;}
.ws6b{word-spacing:-0.510000px;}
.ws74{word-spacing:-0.459000px;}
.ws30{word-spacing:-0.357000px;}
.ws51{word-spacing:-0.306000px;}
.ws75{word-spacing:-0.255000px;}
.ws6c{word-spacing:-0.204000px;}
.ws76{word-spacing:-0.153000px;}
.ws68{word-spacing:-0.102000px;}
.ws63{word-spacing:-0.090000px;}
.ws20{word-spacing:-0.078000px;}
.ws4a{word-spacing:-0.051000px;}
.ws0{word-spacing:0.000000px;}
.ws4c{word-spacing:0.051000px;}
.ws19{word-spacing:0.102000px;}
.ws36{word-spacing:0.153000px;}
.ws71{word-spacing:0.204000px;}
.ws1{word-spacing:0.252000px;}
.ws47{word-spacing:0.255000px;}
.ws2c{word-spacing:0.306000px;}
.ws64{word-spacing:0.315000px;}
.ws78{word-spacing:0.357000px;}
.ws6a{word-spacing:0.459000px;}
.ws28{word-spacing:0.510000px;}
.ws65{word-spacing:0.612000px;}
.ws2f{word-spacing:0.663000px;}
.ws2e{word-spacing:0.714000px;}
.ws38{word-spacing:0.816000px;}
.ws22{word-spacing:0.867000px;}
.ws6e{word-spacing:0.918000px;}
.ws29{word-spacing:0.969000px;}
.ws73{word-spacing:1.020000px;}
.ws7d{word-spacing:1.071000px;}
.ws6f{word-spacing:1.122000px;}
.ws48{word-spacing:1.173000px;}
.ws67{word-spacing:1.275000px;}
.ws34{word-spacing:1.326000px;}
.ws7a{word-spacing:1.377000px;}
.ws33{word-spacing:1.428000px;}
.ws69{word-spacing:1.530000px;}
.ws10{word-spacing:1.632000px;}
.ws49{word-spacing:1.683000px;}
.ws46{word-spacing:1.734000px;}
.ws23{word-spacing:1.785000px;}
.ws37{word-spacing:1.887000px;}
.ws81{word-spacing:1.938000px;}
.ws66{word-spacing:1.989000px;}
.ws2b{word-spacing:2.040000px;}
.ws1a{word-spacing:2.091000px;}
.wsa{word-spacing:2.112000px;}
.ws1d{word-spacing:2.142000px;}
.ws61{word-spacing:2.193000px;}
.wsb{word-spacing:2.304000px;}
.ws9{word-spacing:2.832000px;}
.ws11{word-spacing:3.744000px;}
.ws12{word-spacing:4.704000px;}
.wsf{word-spacing:6.192000px;}
.ws14{word-spacing:7.152000px;}
.wsc{word-spacing:8.544000px;}
.ws13{word-spacing:9.168000px;}
.ws15{word-spacing:16.368000px;}
.ws52{word-spacing:43.605000px;}
.ws58{word-spacing:62.550000px;}
.ws5f{word-spacing:71.730000px;}
.ws5d{word-spacing:80.010000px;}
.ws5b{word-spacing:80.055000px;}
.ws60{word-spacing:81.675000px;}
.ws5e{word-spacing:110.565000px;}
.ws5a{word-spacing:119.070000px;}
.ws54{word-spacing:136.935000px;}
.ws56{word-spacing:143.055000px;}
.ws59{word-spacing:145.035000px;}
.ws57{word-spacing:148.410000px;}
.ws53{word-spacing:158.355000px;}
.ws55{word-spacing:167.535000px;}
.ws5c{word-spacing:182.880000px;}
.ws3d{word-spacing:216.144000px;}
.ws3f{word-spacing:315.600000px;}
.ws44{word-spacing:323.520000px;}
.ws40{word-spacing:342.288000px;}
.ws43{word-spacing:362.304000px;}
.ws4b{word-spacing:439.632000px;}
.ws41{word-spacing:503.232000px;}
.ws83{word-spacing:507.984000px;}
.ws42{word-spacing:535.344000px;}
.ws84{word-spacing:541.272000px;}
.ws82{word-spacing:555.009000px;}
.ws3e{word-spacing:594.000000px;}
.ws1f{word-spacing:1202.544600px;}
._e{margin-left:-16.677000px;}
._6{margin-left:-14.965200px;}
._f{margin-left:-13.869300px;}
._2{margin-left:-12.768000px;}
._11{margin-left:-10.992900px;}
._8{margin-left:-9.642000px;}
._5{margin-left:-7.753200px;}
._a{margin-left:-5.666100px;}
._1{margin-left:-3.934800px;}
._0{margin-left:-2.886000px;}
._c{margin-left:-1.833900px;}
._d{width:1.071000px;}
._3{width:8.832000px;}
._3d{width:10.615800px;}
._9{width:12.096000px;}
._4{width:13.728000px;}
._7{width:49.770000px;}
._32{width:108.495000px;}
._30{width:115.065000px;}
._3c{width:123.075000px;}
._34{width:140.445000px;}
._39{width:155.565000px;}
._3a{width:193.905000px;}
._38{width:208.890000px;}
._36{width:217.395000px;}
._21{width:219.840000px;}
._3b{width:235.260000px;}
._33{width:236.925000px;}
._35{width:241.380000px;}
._31{width:258.795000px;}
._37{width:281.205000px;}
._16{width:328.944000px;}
._18{width:355.632000px;}
._2e{width:400.560000px;}
._28{width:468.576000px;}
._1e{width:477.504000px;}
._2a{width:515.376000px;}
._1f{width:529.104000px;}
._27{width:530.982000px;}
._2c{width:534.816000px;}
._2f{width:544.512000px;}
._29{width:575.280000px;}
._24{width:643.776000px;}
._1a{width:673.104000px;}
._20{width:688.224000px;}
._23{width:690.000000px;}
._22{width:734.448000px;}
._26{width:763.776000px;}
._2d{width:772.992000px;}
._14{width:791.280000px;}
._15{width:793.248000px;}
._b{width:795.951000px;}
._25{width:803.808000px;}
._17{width:806.592000px;}
._1c{width:812.640000px;}
._1b{width:825.120000px;}
._1d{width:828.672000px;}
._13{width:844.656000px;}
._19{width:915.744000px;}
._2b{width:1079.616000px;}
._12{width:1235.520000px;}
._10{width:1779.941400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.848300px;}
.y199{bottom:85.033200px;}
.y163{bottom:85.036950px;}
.y27{bottom:85.039350px;}
.y234{bottom:85.040100px;}
.y1ce{bottom:85.040400px;}
.y23d{bottom:85.041300px;}
.y69{bottom:85.044600px;}
.y12c{bottom:85.049400px;}
.y26{bottom:97.376850px;}
.y68{bottom:100.038600px;}
.y198{bottom:100.039950px;}
.y1cd{bottom:100.085400px;}
.y1ff{bottom:100.137750px;}
.y12b{bottom:100.260150px;}
.y162{bottom:100.311450px;}
.y25{bottom:100.841850px;}
.y233{bottom:100.888350px;}
.yde{bottom:101.124450px;}
.yeb{bottom:101.587050px;}
.y23c{bottom:101.785050px;}
.y24{bottom:109.714350px;}
.y67{bottom:115.038000px;}
.y197{bottom:115.046700px;}
.y1cc{bottom:115.131450px;}
.y1fe{bottom:115.238700px;}
.y12a{bottom:115.470900px;}
.y161{bottom:115.583400px;}
.y232{bottom:116.736600px;}
.ydd{bottom:117.209700px;}
.yea{bottom:118.134450px;}
.y23b{bottom:118.528800px;}
.yc1{bottom:119.785650px;}
.y23{bottom:122.051850px;}
.y22{bottom:125.516850px;}
.y66{bottom:130.037250px;}
.y196{bottom:130.050450px;}
.y1cb{bottom:130.168650px;}
.y1fd{bottom:130.334700px;}
.y129{bottom:130.686600px;}
.y160{bottom:130.855500px;}
.y231{bottom:132.584850px;}
.ydc{bottom:133.294800px;}
.ye9{bottom:134.680200px;}
.yc0{bottom:134.766900px;}
.y23a{bottom:135.272550px;}
.y65{bottom:145.036650px;}
.y1fc{bottom:145.433100px;}
.y128{bottom:145.902300px;}
.y15f{bottom:146.127450px;}
.y230{bottom:148.433100px;}
.ydb{bottom:149.379750px;}
.ybf{bottom:149.748150px;}
.y2f{bottom:149.824650px;}
.ye8{bottom:151.229700px;}
.y195{bottom:153.551100px;}
.y1ca{bottom:157.976400px;}
.y64{bottom:160.035900px;}
.y1fb{bottom:160.553400px;}
.y127{bottom:161.133000px;}
.y15e{bottom:161.399550px;}
.y22f{bottom:164.281350px;}
.ybe{bottom:164.729400px;}
.y2e{bottom:164.805900px;}
.yda{bottom:165.464850px;}
.ye7{bottom:167.777250px;}
.y63{bottom:175.035300px;}
.y1fa{bottom:175.649400px;}
.y126{bottom:176.343750px;}
.y15d{bottom:176.671500px;}
.ybd{bottom:179.710650px;}
.y2d{bottom:179.787150px;}
.y22e{bottom:180.129600px;}
.yd9{bottom:181.550100px;}
.ye6{bottom:184.324650px;}
.y194{bottom:189.812100px;}
.y62{bottom:190.034550px;}
.y1f9{bottom:190.745400px;}
.y125{bottom:191.554500px;}
.y15c{bottom:191.943450px;}
.ybc{bottom:194.691900px;}
.y2c{bottom:194.768400px;}
.y22d{bottom:195.977850px;}
.yd8{bottom:197.635050px;}
.ye5{bottom:200.872350px;}
.y1c9{bottom:202.792650px;}
.y193{bottom:204.818850px;}
.y61{bottom:205.033800px;}
.y1f8{bottom:205.841400px;}
.y124{bottom:206.765250px;}
.y15b{bottom:207.215550px;}
.ybb{bottom:209.673150px;}
.y2b{bottom:209.749650px;}
.y22c{bottom:211.826100px;}
.yd7{bottom:213.720300px;}
.ye4{bottom:217.419900px;}
.y1c8{bottom:217.837650px;}
.y192{bottom:219.825600px;}
.y60{bottom:220.033200px;}
.y1f7{bottom:220.937400px;}
.y123{bottom:221.980950px;}
.y15a{bottom:222.487500px;}
.yba{bottom:224.654400px;}
.y2a{bottom:224.730900px;}
.y22b{bottom:227.674350px;}
.yd6{bottom:229.800000px;}
.y1c7{bottom:232.882650px;}
.y191{bottom:234.832350px;}
.y5f{bottom:235.032450px;}
.y1f6{bottom:236.033400px;}
.y122{bottom:237.196650px;}
.y159{bottom:237.757050px;}
.yb9{bottom:239.635650px;}
.y29{bottom:239.718150px;}
.y22a{bottom:243.522600px;}
.yd5{bottom:245.890500px;}
.y1c6{bottom:247.927650px;}
.y190{bottom:249.836100px;}
.y5e{bottom:250.031700px;}
.y1f5{bottom:251.129400px;}
.y121{bottom:252.412350px;}
.y158{bottom:253.031550px;}
.yb8{bottom:254.616900px;}
.y229{bottom:259.370850px;}
.yd4{bottom:261.975600px;}
.y1c5{bottom:262.973700px;}
.y18f{bottom:264.830400px;}
.y5d{bottom:265.030950px;}
.y1f4{bottom:266.225400px;}
.y28{bottom:267.449400px;}
.y157{bottom:268.303650px;}
.yb7{bottom:269.598150px;}
.y228{bottom:275.219250px;}
.yf0{bottom:276.524550px;}
.y1c4{bottom:278.019750px;}
.yd3{bottom:278.055300px;}
.y18e{bottom:279.837150px;}
.y5c{bottom:280.030350px;}
.y1f3{bottom:281.321400px;}
.y156{bottom:283.570650px;}
.yb6{bottom:284.579400px;}
.y120{bottom:288.888000px;}
.y227{bottom:291.067500px;}
.yef{bottom:292.921050px;}
.y1c3{bottom:293.066850px;}
.yd2{bottom:294.145800px;}
.y94{bottom:294.749700px;}
.y18d{bottom:294.843900px;}
.y5b{bottom:295.029600px;}
.y1f2{bottom:296.417400px;}
.y155{bottom:298.845150px;}
.yb5{bottom:299.560650px;}
.y11f{bottom:305.913900px;}
.y1c{bottom:306.721500px;}
.y226{bottom:306.915900px;}
.y1c2{bottom:308.111850px;}
.y93{bottom:309.730950px;}
.y18c{bottom:309.850650px;}
.y5a{bottom:310.029000px;}
.y1f1{bottom:311.515800px;}
.y154{bottom:314.119650px;}
.yb4{bottom:314.541900px;}
.y11e{bottom:319.132650px;}
.y225{bottom:322.764900px;}
.y1c1{bottom:323.157900px;}
.y92{bottom:324.712350px;}
.y18b{bottom:324.854250px;}
.y59{bottom:325.033500px;}
.y1b{bottom:325.969500px;}
.y1f0{bottom:326.616750px;}
.y153{bottom:329.391750px;}
.yb3{bottom:329.523150px;}
.y11d{bottom:332.351400px;}
.y1c0{bottom:338.203950px;}
.y224{bottom:338.613150px;}
.y91{bottom:339.693450px;}
.y18a{bottom:339.858000px;}
.y58{bottom:340.027500px;}
.y1a{bottom:340.969500px;}
.y1ef{bottom:341.712750px;}
.yb2{bottom:344.504400px;}
.y152{bottom:344.661300px;}
.y11c{bottom:349.970100px;}
.y1bf{bottom:353.250000px;}
.y223{bottom:354.461400px;}
.y90{bottom:354.674850px;}
.y189{bottom:354.858450px;}
.y57{bottom:355.026900px;}
.y19{bottom:355.969500px;}
.y11a{bottom:356.585100px;}
.y1ee{bottom:356.811150px;}
.y151{bottom:359.935800px;}
.y11b{bottom:363.188850px;}
.y1be{bottom:368.299200px;}
.y8f{bottom:369.655950px;}
.y119{bottom:369.803850px;}
.y188{bottom:369.865200px;}
.y56{bottom:370.026150px;}
.y222{bottom:370.309650px;}
.y18{bottom:370.969500px;}
.y1ed{bottom:371.912100px;}
.y150{bottom:375.207750px;}
.yb1{bottom:380.273850px;}
.y1bd{bottom:383.344200px;}
.y8e{bottom:384.637200px;}
.y187{bottom:384.868950px;}
.y55{bottom:385.025550px;}
.y17{bottom:385.969500px;}
.y221{bottom:386.157900px;}
.y1ec{bottom:387.008100px;}
.y14f{bottom:390.474750px;}
.y118{bottom:394.126350px;}
.y1bc{bottom:398.389200px;}
.y8d{bottom:399.618600px;}
.y186{bottom:399.872550px;}
.y54{bottom:400.024800px;}
.yb0{bottom:400.721850px;}
.y116{bottom:400.741350px;}
.y16{bottom:400.969500px;}
.y220{bottom:402.006150px;}
.y1eb{bottom:402.106500px;}
.y14e{bottom:405.749250px;}
.y117{bottom:407.345100px;}
.yad{bottom:410.945850px;}
.y1bb{bottom:413.434200px;}
.y115{bottom:413.960100px;}
.y8c{bottom:414.599700px;}
.y185{bottom:414.876150px;}
.y53{bottom:415.024050px;}
.y15{bottom:415.969500px;}
.y1ea{bottom:417.214650px;}
.y21f{bottom:417.854400px;}
.y14d{bottom:421.023750px;}
.yaf{bottom:421.169850px;}
.y1ba{bottom:428.480400px;}
.y8b{bottom:429.581100px;}
.y184{bottom:429.873750px;}
.y52{bottom:430.039200px;}
.y14{bottom:430.969500px;}
.y1e9{bottom:432.310650px;}
.y21e{bottom:433.702650px;}
.y14c{bottom:436.295850px;}
.y113{bottom:438.293850px;}
.yae{bottom:441.617850px;}
.y1b9{bottom:443.526450px;}
.y8a{bottom:444.562200px;}
.y183{bottom:444.880500px;}
.y114{bottom:444.897600px;}
.y111{bottom:444.908850px;}
.y51{bottom:445.033200px;}
.y13{bottom:445.969500px;}
.y1e8{bottom:447.406650px;}
.y21d{bottom:449.550900px;}
.y112{bottom:451.512600px;}
.y14b{bottom:451.567800px;}
.y110{bottom:458.127600px;}
.y1b8{bottom:458.573550px;}
.y89{bottom:459.543450px;}
.y182{bottom:459.887250px;}
.y50{bottom:460.027200px;}
.y12{bottom:460.969500px;}
.yac{bottom:462.065850px;}
.y1e7{bottom:462.502650px;}
.y21c{bottom:465.399150px;}
.y14a{bottom:466.839900px;}
.y1b7{bottom:473.618550px;}
.y88{bottom:474.524850px;}
.y181{bottom:474.890850px;}
.y4f{bottom:475.021200px;}
.y11{bottom:475.969500px;}
.y1e6{bottom:477.598650px;}
.y21b{bottom:481.247400px;}
.y149{bottom:482.111850px;}
.y10f{bottom:482.450100px;}
.yab{bottom:482.513850px;}
.y1b6{bottom:488.664600px;}
.y10d{bottom:489.065100px;}
.y87{bottom:489.505950px;}
.y180{bottom:489.894450px;}
.y4e{bottom:490.020600px;}
.y1e5{bottom:492.697050px;}
.y10{bottom:495.217500px;}
.y10e{bottom:495.668850px;}
.y21a{bottom:497.095800px;}
.y148{bottom:497.383950px;}
.y10c{bottom:502.283850px;}
.ya8{bottom:502.961850px;}
.y1b5{bottom:503.710650px;}
.y86{bottom:504.487350px;}
.y17f{bottom:504.895050px;}
.y4d{bottom:505.019850px;}
.y1e4{bottom:507.797850px;}
.yf{bottom:510.217500px;}
.y147{bottom:512.655900px;}
.y219{bottom:512.944200px;}
.y1b4{bottom:518.756700px;}
.y85{bottom:519.468450px;}
.y17e{bottom:519.901800px;}
.y4c{bottom:520.035150px;}
.y1e3{bottom:522.893850px;}
.yaa{bottom:523.409850px;}
.y10b{bottom:526.606350px;}
.y146{bottom:527.927850px;}
.y218{bottom:528.792450px;}
.y109{bottom:533.221350px;}
.y1b3{bottom:533.803800px;}
.y84{bottom:534.449700px;}
.y17d{bottom:534.905400px;}
.y4b{bottom:535.029150px;}
.y1e2{bottom:537.992400px;}
.y10a{bottom:539.825100px;}
.ye{bottom:540.361500px;}
.y145{bottom:543.199950px;}
.ya9{bottom:543.857850px;}
.ye3{bottom:544.489650px;}
.y217{bottom:544.640700px;}
.y108{bottom:546.440100px;}
.y1b2{bottom:548.848800px;}
.y83{bottom:549.430350px;}
.y17c{bottom:549.909000px;}
.y4a{bottom:550.023150px;}
.y1e1{bottom:553.083750px;}
.y144{bottom:558.462000px;}
.yd{bottom:559.609500px;}
.y216{bottom:560.489250px;}
.ye2{bottom:561.039150px;}
.y1b1{bottom:563.894850px;}
.ya7{bottom:564.305850px;}
.y82{bottom:564.411600px;}
.y17b{bottom:564.909600px;}
.y49{bottom:565.017150px;}
.y143{bottom:573.736500px;}
.y107{bottom:573.755100px;}
.yc{bottom:574.609500px;}
.y215{bottom:576.337500px;}
.y1b0{bottom:578.940900px;}
.y81{bottom:579.392850px;}
.y17a{bottom:579.916350px;}
.y48{bottom:580.016400px;}
.y1e0{bottom:580.942500px;}
.ya6{bottom:584.753850px;}
.y106{bottom:586.973850px;}
.y142{bottom:589.011000px;}
.yb{bottom:589.609500px;}
.yd1{bottom:590.531400px;}
.y214{bottom:592.185750px;}
.y1af{bottom:593.986950px;}
.y179{bottom:594.919950px;}
.ya3{bottom:594.977850px;}
.y47{bottom:595.015650px;}
.y141{bottom:604.285500px;}
.ya{bottom:604.609500px;}
.ya5{bottom:605.201850px;}
.y105{bottom:607.673850px;}
.y213{bottom:608.034000px;}
.y1ae{bottom:609.034200px;}
.y178{bottom:609.923700px;}
.y46{bottom:610.015050px;}
.y80{bottom:611.382600px;}
.yee{bottom:612.556500px;}
.y103{bottom:614.288850px;}
.y140{bottom:619.560000px;}
.y9{bottom:619.609500px;}
.y104{bottom:620.892600px;}
.y212{bottom:623.882250px;}
.y1ad{bottom:624.079200px;}
.y177{bottom:624.927300px;}
.y45{bottom:625.014300px;}
.ya4{bottom:625.649850px;}
.y1df{bottom:625.809750px;}
.y7f{bottom:626.363850px;}
.y102{bottom:627.507600px;}
.yed{bottom:628.953000px;}
.y8{bottom:634.609500px;}
.y13f{bottom:634.832100px;}
.yd0{bottom:636.380400px;}
.y1ac{bottom:639.125250px;}
.y211{bottom:639.730650px;}
.y176{bottom:639.931050px;}
.y44{bottom:640.013700px;}
.y1de{bottom:640.905750px;}
.y7e{bottom:641.345100px;}
.ya2{bottom:646.097850px;}
.y7{bottom:649.609500px;}
.y13e{bottom:650.101500px;}
.y101{bottom:651.830100px;}
.ycf{bottom:652.465650px;}
.y1ab{bottom:654.171300px;}
.y175{bottom:654.934650px;}
.y43{bottom:655.012950px;}
.y210{bottom:655.578900px;}
.y1dd{bottom:656.004300px;}
.ya1{bottom:656.321850px;}
.y7d{bottom:656.326350px;}
.yff{bottom:658.445100px;}
.y6{bottom:664.609500px;}
.y100{bottom:665.048850px;}
.y13d{bottom:665.376000px;}
.yce{bottom:668.550600px;}
.y1aa{bottom:669.217350px;}
.y174{bottom:669.928950px;}
.y42{bottom:670.012200px;}
.y1dc{bottom:671.098200px;}
.y7c{bottom:671.307600px;}
.y20f{bottom:671.427300px;}
.yfe{bottom:671.663850px;}
.y5{bottom:679.609500px;}
.y13c{bottom:680.648100px;}
.y1a9{bottom:684.263400px;}
.ycd{bottom:684.635700px;}
.y173{bottom:684.935700px;}
.y41{bottom:685.011600px;}
.y7b{bottom:686.288850px;}
.ya0{bottom:686.993850px;}
.y20e{bottom:687.275550px;}
.y13b{bottom:695.917650px;}
.yfd{bottom:695.986350px;}
.y9f{bottom:697.217850px;}
.y1db{bottom:698.956950px;}
.y1a8{bottom:699.309450px;}
.y172{bottom:699.942450px;}
.y40{bottom:700.010850px;}
.ycc{bottom:700.720800px;}
.y7a{bottom:701.270100px;}
.yfb{bottom:702.601350px;}
.y20d{bottom:703.123950px;}
.yfc{bottom:709.205100px;}
.y13a{bottom:711.192150px;}
.y1a7{bottom:714.355500px;}
.y171{bottom:714.949200px;}
.y3f{bottom:715.010100px;}
.yfa{bottom:715.820100px;}
.y79{bottom:716.251350px;}
.ycb{bottom:716.805900px;}
.y20c{bottom:718.972800px;}
.y20{bottom:718.997850px;}
.y139{bottom:726.464100px;}
.y9e{bottom:727.889850px;}
.y1a6{bottom:729.404850px;}
.y170{bottom:729.952950px;}
.y3e{bottom:730.009500px;}
.y78{bottom:731.232600px;}
.yca{bottom:732.891150px;}
.y20b{bottom:734.821050px;}
.y1f{bottom:735.197850px;}
.yf9{bottom:740.941350px;}
.y138{bottom:741.726300px;}
.y1da{bottom:743.819250px;}
.y1a5{bottom:744.449850px;}
.y16f{bottom:744.956550px;}
.y3d{bottom:745.008750px;}
.y77{bottom:746.213850px;}
.y9d{bottom:748.337850px;}
.yc9{bottom:748.976100px;}
.y20a{bottom:750.669300px;}
.y137{bottom:757.000800px;}
.y1d9{bottom:758.917650px;}
.y1a4{bottom:759.494850px;}
.y16e{bottom:759.960150px;}
.y3c{bottom:760.008000px;}
.y76{bottom:761.195100px;}
.y209{bottom:766.517550px;}
.y1e{bottom:767.750700px;}
.y9c{bottom:768.785850px;}
.y136{bottom:772.275300px;}
.yf8{bottom:773.510850px;}
.y1d8{bottom:774.016050px;}
.y1a3{bottom:774.539850px;}
.y16d{bottom:774.963900px;}
.y3b{bottom:775.007400px;}
.y75{bottom:776.176350px;}
.y98{bottom:779.693850px;}
.y208{bottom:782.365800px;}
.yc8{bottom:786.292200px;}
.y135{bottom:787.549800px;}
.yf7{bottom:788.726550px;}
.y1d7{bottom:789.114600px;}
.y1a2{bottom:789.585900px;}
.y9b{bottom:789.917850px;}
.y16c{bottom:789.961350px;}
.y3a{bottom:790.006650px;}
.y74{bottom:791.157600px;}
.y1d{bottom:791.753700px;}
.y207{bottom:798.214050px;}
.y134{bottom:802.824300px;}
.y1d6{bottom:804.213000px;}
.y1a1{bottom:804.631950px;}
.y16b{bottom:804.968100px;}
.y39{bottom:805.006050px;}
.yc7{bottom:805.468200px;}
.y73{bottom:806.139000px;}
.y9a{bottom:811.049850px;}
.yc6{bottom:812.524200px;}
.y206{bottom:814.062300px;}
.y133{bottom:818.096250px;}
.y1d5{bottom:819.311400px;}
.y1a0{bottom:819.678000px;}
.y16a{bottom:819.974850px;}
.y38{bottom:820.015950px;}
.y72{bottom:821.120250px;}
.y205{bottom:829.910550px;}
.y99{bottom:831.497850px;}
.y132{bottom:833.365800px;}
.yf6{bottom:833.706000px;}
.y1d4{bottom:834.409800px;}
.y19f{bottom:834.724050px;}
.y169{bottom:834.978450px;}
.y37{bottom:835.009950px;}
.y71{bottom:836.101350px;}
.yc5{bottom:840.460200px;}
.y204{bottom:845.758800px;}
.y21{bottom:846.952650px;}
.yc4{bottom:847.516200px;}
.y131{bottom:848.640300px;}
.yf5{bottom:848.921700px;}
.y1d3{bottom:849.508200px;}
.y19e{bottom:849.770100px;}
.y168{bottom:849.982050px;}
.y36{bottom:850.003950px;}
.y239{bottom:850.094100px;}
.y70{bottom:851.082600px;}
.y97{bottom:851.945850px;}
.ye1{bottom:854.097600px;}
.y203{bottom:861.607050px;}
.y96{bottom:862.169850px;}
.y130{bottom:863.912250px;}
.yf4{bottom:864.137550px;}
.y1d2{bottom:864.606600px;}
.y19d{bottom:864.816150px;}
.y167{bottom:864.985800px;}
.y35{bottom:865.003200px;}
.y238{bottom:865.075350px;}
.y6f{bottom:866.064000px;}
.ye0{bottom:870.647100px;}
.yc3{bottom:875.440200px;}
.y202{bottom:877.455600px;}
.y12f{bottom:879.179400px;}
.yf3{bottom:879.353250px;}
.y1d1{bottom:879.705000px;}
.y19c{bottom:879.862200px;}
.y166{bottom:879.986250px;}
.y34{bottom:880.018350px;}
.y237{bottom:880.056600px;}
.y6e{bottom:881.045250px;}
.y4{bottom:888.220350px;}
.y95{bottom:892.841850px;}
.y201{bottom:893.303850px;}
.y12e{bottom:894.453900px;}
.yf2{bottom:894.568950px;}
.y1d0{bottom:894.803550px;}
.y19b{bottom:894.909300px;}
.y165{bottom:894.993000px;}
.y33{bottom:895.012350px;}
.y236{bottom:895.037850px;}
.y6d{bottom:896.026500px;}
.ydf{bottom:908.450850px;}
.y200{bottom:909.152100px;}
.yec{bottom:909.592350px;}
.y12d{bottom:909.728400px;}
.yf1{bottom:909.784650px;}
.yc2{bottom:909.898350px;}
.y1cf{bottom:909.901950px;}
.y19a{bottom:909.954300px;}
.y164{bottom:909.996750px;}
.y32{bottom:910.006350px;}
.y235{bottom:910.019100px;}
.y6c{bottom:911.007600px;}
.y31{bottom:925.000350px;}
.y6b{bottom:925.988850px;}
.y3{bottom:935.511750px;}
.y2{bottom:947.511750px;}
.y30{bottom:969.502950px;}
.y6a{bottom:969.659250px;}
.ha{height:23.872800px;}
.h11{height:33.354492px;}
.h4{height:35.280000px;}
.h6{height:35.578125px;}
.hc{height:37.801758px;}
.h2{height:38.220000px;}
.he{height:40.534800px;}
.hb{height:41.160000px;}
.h12{height:44.100000px;}
.h3{height:46.123200px;}
.h5{height:47.040000px;}
.h8{height:48.919922px;}
.hd{height:49.980000px;}
.h9{height:52.920000px;}
.h17{height:54.606000px;}
.h15{height:70.515000px;}
.h10{height:75.216000px;}
.h7{height:82.320000px;}
.hf{height:87.936000px;}
.h14{height:96.975000px;}
.h13{height:123.390000px;}
.h16{height:149.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x8{left:66.885450px;}
.x17{left:68.218950px;}
.xb{left:69.282000px;}
.x3{left:76.820550px;}
.x9{left:81.779550px;}
.x10{left:91.727550px;}
.x5{left:101.062350px;}
.x4{left:129.622350px;}
.x19{left:152.605200px;}
.xd{left:156.788550px;}
.x7{left:182.753400px;}
.x11{left:193.536300px;}
.xa{left:212.610300px;}
.x6{left:222.513150px;}
.x13{left:236.187000px;}
.x16{left:239.935500px;}
.x12{left:241.004550px;}
.x15{left:249.268500px;}
.x14{left:252.698250px;}
.xc{left:262.014000px;}
.x18{left:319.746450px;}
.xe{left:333.854550px;}
.x1d{left:372.259800px;}
.x1b{left:404.785200px;}
.x2{left:425.622000px;}
.xf{left:497.954550px;}
.x1c{left:501.310200px;}
.x1a{left:579.756450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.746667pt;}
.v4{vertical-align:23.480000pt;}
.v3{vertical-align:25.045333pt;}
.v2{vertical-align:36.352000pt;}
.v6{vertical-align:47.000000pt;}
.v5{vertical-align:70.480000pt;}
.v7{vertical-align:94.000000pt;}
.ls25{letter-spacing:-2.346667pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls32{letter-spacing:-1.133333pt;}
.ls31{letter-spacing:-1.042667pt;}
.ls30{letter-spacing:-0.997333pt;}
.ls2f{letter-spacing:-0.906667pt;}
.ls33{letter-spacing:-0.725333pt;}
.ls28{letter-spacing:-0.634667pt;}
.ls26{letter-spacing:-0.589333pt;}
.ls34{letter-spacing:-0.544000pt;}
.ls21{letter-spacing:-0.498667pt;}
.ls27{letter-spacing:-0.453333pt;}
.ls23{letter-spacing:-0.408000pt;}
.ls2a{letter-spacing:-0.362667pt;}
.ls2c{letter-spacing:-0.317333pt;}
.ls2b{letter-spacing:-0.280000pt;}
.ls22{letter-spacing:-0.272000pt;}
.ls24{letter-spacing:-0.226667pt;}
.ls1c{letter-spacing:-0.181333pt;}
.lsc{letter-spacing:-0.136000pt;}
.ls1b{letter-spacing:-0.090667pt;}
.ls1a{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.022667pt;}
.ls20{letter-spacing:0.045333pt;}
.ls0{letter-spacing:0.069333pt;}
.ls7{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.098667pt;}
.ls29{letter-spacing:0.113333pt;}
.ls19{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls17{letter-spacing:0.181333pt;}
.ls1f{letter-spacing:0.204000pt;}
.ls18{letter-spacing:0.226667pt;}
.ls2e{letter-spacing:0.249333pt;}
.ls5{letter-spacing:0.261333pt;}
.ls1d{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.317333pt;}
.lse{letter-spacing:0.362667pt;}
.ls6{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.498667pt;}
.ls36{letter-spacing:0.506667pt;}
.ls2d{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.746667pt;}
.ls10{letter-spacing:0.816000pt;}
.ls16{letter-spacing:0.861333pt;}
.ls11{letter-spacing:0.906667pt;}
.ls12{letter-spacing:0.952000pt;}
.ls13{letter-spacing:1.020000pt;}
.ls14{letter-spacing:1.178667pt;}
.ls15{letter-spacing:1.224000pt;}
.ls8{letter-spacing:4.352000pt;}
.ws7c{word-spacing:-12.602667pt;}
.ws3{word-spacing:-12.416000pt;}
.ws16{word-spacing:-12.245333pt;}
.ws80{word-spacing:-12.240000pt;}
.ws45{word-spacing:-11.861333pt;}
.ws62{word-spacing:-11.120000pt;}
.ws18{word-spacing:-10.752000pt;}
.ws2{word-spacing:-4.352000pt;}
.ws7f{word-spacing:-2.493333pt;}
.ws6{word-spacing:-2.346667pt;}
.ws4{word-spacing:-2.005333pt;}
.ws3c{word-spacing:-1.949333pt;}
.ws1e{word-spacing:-1.904000pt;}
.ws24{word-spacing:-1.858667pt;}
.ws4d{word-spacing:-1.813333pt;}
.ws21{word-spacing:-1.768000pt;}
.ws26{word-spacing:-1.722667pt;}
.ws7e{word-spacing:-1.677333pt;}
.ws1c{word-spacing:-1.586667pt;}
.ws17{word-spacing:-1.568000pt;}
.ws31{word-spacing:-1.541333pt;}
.ws6d{word-spacing:-1.496000pt;}
.ws70{word-spacing:-1.450667pt;}
.ws2d{word-spacing:-1.405333pt;}
.ws3b{word-spacing:-1.360000pt;}
.ws4f{word-spacing:-1.314667pt;}
.wse{word-spacing:-1.280000pt;}
.ws7b{word-spacing:-1.269333pt;}
.ws27{word-spacing:-1.224000pt;}
.ws50{word-spacing:-1.178667pt;}
.ws32{word-spacing:-1.088000pt;}
.ws79{word-spacing:-0.952000pt;}
.ws72{word-spacing:-0.906667pt;}
.ws77{word-spacing:-0.861333pt;}
.ws7{word-spacing:-0.853333pt;}
.ws4e{word-spacing:-0.816000pt;}
.ws2a{word-spacing:-0.770667pt;}
.ws35{word-spacing:-0.746667pt;}
.ws3a{word-spacing:-0.680000pt;}
.ws1b{word-spacing:-0.634667pt;}
.ws5{word-spacing:-0.597333pt;}
.ws25{word-spacing:-0.544000pt;}
.ws8{word-spacing:-0.512000pt;}
.ws39{word-spacing:-0.498667pt;}
.wsd{word-spacing:-0.469333pt;}
.ws6b{word-spacing:-0.453333pt;}
.ws74{word-spacing:-0.408000pt;}
.ws30{word-spacing:-0.317333pt;}
.ws51{word-spacing:-0.272000pt;}
.ws75{word-spacing:-0.226667pt;}
.ws6c{word-spacing:-0.181333pt;}
.ws76{word-spacing:-0.136000pt;}
.ws68{word-spacing:-0.090667pt;}
.ws63{word-spacing:-0.080000pt;}
.ws20{word-spacing:-0.069333pt;}
.ws4a{word-spacing:-0.045333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.045333pt;}
.ws19{word-spacing:0.090667pt;}
.ws36{word-spacing:0.136000pt;}
.ws71{word-spacing:0.181333pt;}
.ws1{word-spacing:0.224000pt;}
.ws47{word-spacing:0.226667pt;}
.ws2c{word-spacing:0.272000pt;}
.ws64{word-spacing:0.280000pt;}
.ws78{word-spacing:0.317333pt;}
.ws6a{word-spacing:0.408000pt;}
.ws28{word-spacing:0.453333pt;}
.ws65{word-spacing:0.544000pt;}
.ws2f{word-spacing:0.589333pt;}
.ws2e{word-spacing:0.634667pt;}
.ws38{word-spacing:0.725333pt;}
.ws22{word-spacing:0.770667pt;}
.ws6e{word-spacing:0.816000pt;}
.ws29{word-spacing:0.861333pt;}
.ws73{word-spacing:0.906667pt;}
.ws7d{word-spacing:0.952000pt;}
.ws6f{word-spacing:0.997333pt;}
.ws48{word-spacing:1.042667pt;}
.ws67{word-spacing:1.133333pt;}
.ws34{word-spacing:1.178667pt;}
.ws7a{word-spacing:1.224000pt;}
.ws33{word-spacing:1.269333pt;}
.ws69{word-spacing:1.360000pt;}
.ws10{word-spacing:1.450667pt;}
.ws49{word-spacing:1.496000pt;}
.ws46{word-spacing:1.541333pt;}
.ws23{word-spacing:1.586667pt;}
.ws37{word-spacing:1.677333pt;}
.ws81{word-spacing:1.722667pt;}
.ws66{word-spacing:1.768000pt;}
.ws2b{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.858667pt;}
.wsa{word-spacing:1.877333pt;}
.ws1d{word-spacing:1.904000pt;}
.ws61{word-spacing:1.949333pt;}
.wsb{word-spacing:2.048000pt;}
.ws9{word-spacing:2.517333pt;}
.ws11{word-spacing:3.328000pt;}
.ws12{word-spacing:4.181333pt;}
.wsf{word-spacing:5.504000pt;}
.ws14{word-spacing:6.357333pt;}
.wsc{word-spacing:7.594667pt;}
.ws13{word-spacing:8.149333pt;}
.ws15{word-spacing:14.549333pt;}
.ws52{word-spacing:38.760000pt;}
.ws58{word-spacing:55.600000pt;}
.ws5f{word-spacing:63.760000pt;}
.ws5d{word-spacing:71.120000pt;}
.ws5b{word-spacing:71.160000pt;}
.ws60{word-spacing:72.600000pt;}
.ws5e{word-spacing:98.280000pt;}
.ws5a{word-spacing:105.840000pt;}
.ws54{word-spacing:121.720000pt;}
.ws56{word-spacing:127.160000pt;}
.ws59{word-spacing:128.920000pt;}
.ws57{word-spacing:131.920000pt;}
.ws53{word-spacing:140.760000pt;}
.ws55{word-spacing:148.920000pt;}
.ws5c{word-spacing:162.560000pt;}
.ws3d{word-spacing:192.128000pt;}
.ws3f{word-spacing:280.533333pt;}
.ws44{word-spacing:287.573333pt;}
.ws40{word-spacing:304.256000pt;}
.ws43{word-spacing:322.048000pt;}
.ws4b{word-spacing:390.784000pt;}
.ws41{word-spacing:447.317333pt;}
.ws83{word-spacing:451.541333pt;}
.ws42{word-spacing:475.861333pt;}
.ws84{word-spacing:481.130667pt;}
.ws82{word-spacing:493.341333pt;}
.ws3e{word-spacing:528.000000pt;}
.ws1f{word-spacing:1068.928533pt;}
._e{margin-left:-14.824000pt;}
._6{margin-left:-13.302400pt;}
._f{margin-left:-12.328267pt;}
._2{margin-left:-11.349333pt;}
._11{margin-left:-9.771467pt;}
._8{margin-left:-8.570667pt;}
._5{margin-left:-6.891733pt;}
._a{margin-left:-5.036533pt;}
._1{margin-left:-3.497600pt;}
._0{margin-left:-2.565333pt;}
._c{margin-left:-1.630133pt;}
._d{width:0.952000pt;}
._3{width:7.850667pt;}
._3d{width:9.436267pt;}
._9{width:10.752000pt;}
._4{width:12.202667pt;}
._7{width:44.240000pt;}
._32{width:96.440000pt;}
._30{width:102.280000pt;}
._3c{width:109.400000pt;}
._34{width:124.840000pt;}
._39{width:138.280000pt;}
._3a{width:172.360000pt;}
._38{width:185.680000pt;}
._36{width:193.240000pt;}
._21{width:195.413333pt;}
._3b{width:209.120000pt;}
._33{width:210.600000pt;}
._35{width:214.560000pt;}
._31{width:230.040000pt;}
._37{width:249.960000pt;}
._16{width:292.394667pt;}
._18{width:316.117333pt;}
._2e{width:356.053333pt;}
._28{width:416.512000pt;}
._1e{width:424.448000pt;}
._2a{width:458.112000pt;}
._1f{width:470.314667pt;}
._27{width:471.984000pt;}
._2c{width:475.392000pt;}
._2f{width:484.010667pt;}
._29{width:511.360000pt;}
._24{width:572.245333pt;}
._1a{width:598.314667pt;}
._20{width:611.754667pt;}
._23{width:613.333333pt;}
._22{width:652.842667pt;}
._26{width:678.912000pt;}
._2d{width:687.104000pt;}
._14{width:703.360000pt;}
._15{width:705.109333pt;}
._b{width:707.512000pt;}
._25{width:714.496000pt;}
._17{width:716.970667pt;}
._1c{width:722.346667pt;}
._1b{width:733.440000pt;}
._1d{width:736.597333pt;}
._13{width:750.805333pt;}
._19{width:813.994667pt;}
._2b{width:959.658667pt;}
._12{width:1098.240000pt;}
._10{width:1582.170133pt;}
.fs8{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.976267pt;}
.y199{bottom:75.585067pt;}
.y163{bottom:75.588400pt;}
.y27{bottom:75.590533pt;}
.y234{bottom:75.591200pt;}
.y1ce{bottom:75.591467pt;}
.y23d{bottom:75.592267pt;}
.y69{bottom:75.595200pt;}
.y12c{bottom:75.599467pt;}
.y26{bottom:86.557200pt;}
.y68{bottom:88.923200pt;}
.y198{bottom:88.924400pt;}
.y1cd{bottom:88.964800pt;}
.y1ff{bottom:89.011333pt;}
.y12b{bottom:89.120133pt;}
.y162{bottom:89.165733pt;}
.y25{bottom:89.637200pt;}
.y233{bottom:89.678533pt;}
.yde{bottom:89.888400pt;}
.yeb{bottom:90.299600pt;}
.y23c{bottom:90.475600pt;}
.y24{bottom:97.523867pt;}
.y67{bottom:102.256000pt;}
.y197{bottom:102.263733pt;}
.y1cc{bottom:102.339067pt;}
.y1fe{bottom:102.434400pt;}
.y12a{bottom:102.640800pt;}
.y161{bottom:102.740800pt;}
.y232{bottom:103.765867pt;}
.ydd{bottom:104.186400pt;}
.yea{bottom:105.008400pt;}
.y23b{bottom:105.358933pt;}
.yc1{bottom:106.476133pt;}
.y23{bottom:108.490533pt;}
.y22{bottom:111.570533pt;}
.y66{bottom:115.588667pt;}
.y196{bottom:115.600400pt;}
.y1cb{bottom:115.705467pt;}
.y1fd{bottom:115.853067pt;}
.y129{bottom:116.165867pt;}
.y160{bottom:116.316000pt;}
.y231{bottom:117.853200pt;}
.ydc{bottom:118.484267pt;}
.ye9{bottom:119.715733pt;}
.yc0{bottom:119.792800pt;}
.y23a{bottom:120.242267pt;}
.y65{bottom:128.921467pt;}
.y1fc{bottom:129.273867pt;}
.y128{bottom:129.690933pt;}
.y15f{bottom:129.891067pt;}
.y230{bottom:131.940533pt;}
.ydb{bottom:132.782000pt;}
.ybf{bottom:133.109467pt;}
.y2f{bottom:133.177467pt;}
.ye8{bottom:134.426400pt;}
.y195{bottom:136.489867pt;}
.y1ca{bottom:140.423467pt;}
.y64{bottom:142.254133pt;}
.y1fb{bottom:142.714133pt;}
.y127{bottom:143.229333pt;}
.y15e{bottom:143.466267pt;}
.y22f{bottom:146.027867pt;}
.ybe{bottom:146.426133pt;}
.y2e{bottom:146.494133pt;}
.yda{bottom:147.079867pt;}
.ye7{bottom:149.135333pt;}
.y63{bottom:155.586933pt;}
.y1fa{bottom:156.132800pt;}
.y126{bottom:156.750000pt;}
.y15d{bottom:157.041333pt;}
.ybd{bottom:159.742800pt;}
.y2d{bottom:159.810800pt;}
.y22e{bottom:160.115200pt;}
.yd9{bottom:161.377867pt;}
.ye6{bottom:163.844133pt;}
.y194{bottom:168.721867pt;}
.y62{bottom:168.919600pt;}
.y1f9{bottom:169.551467pt;}
.y125{bottom:170.270667pt;}
.y15c{bottom:170.616400pt;}
.ybc{bottom:173.059467pt;}
.y2c{bottom:173.127467pt;}
.y22d{bottom:174.202533pt;}
.yd8{bottom:175.675600pt;}
.ye5{bottom:178.553200pt;}
.y1c9{bottom:180.260133pt;}
.y193{bottom:182.061200pt;}
.y61{bottom:182.252267pt;}
.y1f8{bottom:182.970133pt;}
.y124{bottom:183.791333pt;}
.y15b{bottom:184.191600pt;}
.ybb{bottom:186.376133pt;}
.y2b{bottom:186.444133pt;}
.y22c{bottom:188.289867pt;}
.yd7{bottom:189.973600pt;}
.ye4{bottom:193.262133pt;}
.y1c8{bottom:193.633467pt;}
.y192{bottom:195.400533pt;}
.y60{bottom:195.585067pt;}
.y1f7{bottom:196.388800pt;}
.y123{bottom:197.316400pt;}
.y15a{bottom:197.766667pt;}
.yba{bottom:199.692800pt;}
.y2a{bottom:199.760800pt;}
.y22b{bottom:202.377200pt;}
.yd6{bottom:204.266667pt;}
.y1c7{bottom:207.006800pt;}
.y191{bottom:208.739867pt;}
.y5f{bottom:208.917733pt;}
.y1f6{bottom:209.807467pt;}
.y122{bottom:210.841467pt;}
.y159{bottom:211.339600pt;}
.yb9{bottom:213.009467pt;}
.y29{bottom:213.082800pt;}
.y22a{bottom:216.464533pt;}
.yd5{bottom:218.569333pt;}
.y1c6{bottom:220.380133pt;}
.y190{bottom:222.076533pt;}
.y5e{bottom:222.250400pt;}
.y1f5{bottom:223.226133pt;}
.y121{bottom:224.366533pt;}
.y158{bottom:224.916933pt;}
.yb8{bottom:226.326133pt;}
.y229{bottom:230.551867pt;}
.yd4{bottom:232.867200pt;}
.y1c5{bottom:233.754400pt;}
.y18f{bottom:235.404800pt;}
.y5d{bottom:235.583067pt;}
.y1f4{bottom:236.644800pt;}
.y28{bottom:237.732800pt;}
.y157{bottom:238.492133pt;}
.yb7{bottom:239.642800pt;}
.y228{bottom:244.639333pt;}
.yf0{bottom:245.799600pt;}
.y1c4{bottom:247.128667pt;}
.yd3{bottom:247.160267pt;}
.y18e{bottom:248.744133pt;}
.y5c{bottom:248.915867pt;}
.y1f3{bottom:250.063467pt;}
.y156{bottom:252.062800pt;}
.yb6{bottom:252.959467pt;}
.y120{bottom:256.789333pt;}
.y227{bottom:258.726667pt;}
.yef{bottom:260.374267pt;}
.y1c3{bottom:260.503867pt;}
.yd2{bottom:261.462933pt;}
.y94{bottom:261.999733pt;}
.y18d{bottom:262.083467pt;}
.y5b{bottom:262.248533pt;}
.y1f2{bottom:263.482133pt;}
.y155{bottom:265.640133pt;}
.yb5{bottom:266.276133pt;}
.y11f{bottom:271.923467pt;}
.y1c{bottom:272.641333pt;}
.y226{bottom:272.814133pt;}
.y1c2{bottom:273.877200pt;}
.y93{bottom:275.316400pt;}
.y18c{bottom:275.422800pt;}
.y5a{bottom:275.581333pt;}
.y1f1{bottom:276.902933pt;}
.y154{bottom:279.217467pt;}
.yb4{bottom:279.592800pt;}
.y11e{bottom:283.673467pt;}
.y225{bottom:286.902133pt;}
.y1c1{bottom:287.251467pt;}
.y92{bottom:288.633200pt;}
.y18b{bottom:288.759333pt;}
.y59{bottom:288.918667pt;}
.y1b{bottom:289.750667pt;}
.y1f0{bottom:290.326000pt;}
.y153{bottom:292.792667pt;}
.yb3{bottom:292.909467pt;}
.y11d{bottom:295.423467pt;}
.y1c0{bottom:300.625733pt;}
.y224{bottom:300.989467pt;}
.y91{bottom:301.949733pt;}
.y18a{bottom:302.096000pt;}
.y58{bottom:302.246667pt;}
.y1a{bottom:303.084000pt;}
.y1ef{bottom:303.744667pt;}
.yb2{bottom:306.226133pt;}
.y152{bottom:306.365600pt;}
.y11c{bottom:311.084533pt;}
.y1bf{bottom:314.000000pt;}
.y223{bottom:315.076800pt;}
.y90{bottom:315.266533pt;}
.y189{bottom:315.429733pt;}
.y57{bottom:315.579467pt;}
.y19{bottom:316.417333pt;}
.y11a{bottom:316.964533pt;}
.y1ee{bottom:317.165467pt;}
.y151{bottom:319.942933pt;}
.y11b{bottom:322.834533pt;}
.y1be{bottom:327.377067pt;}
.y8f{bottom:328.583067pt;}
.y119{bottom:328.714533pt;}
.y188{bottom:328.769067pt;}
.y56{bottom:328.912133pt;}
.y222{bottom:329.164133pt;}
.y18{bottom:329.750667pt;}
.y1ed{bottom:330.588533pt;}
.y150{bottom:333.518000pt;}
.yb1{bottom:338.021200pt;}
.y1bd{bottom:340.750400pt;}
.y8e{bottom:341.899733pt;}
.y187{bottom:342.105733pt;}
.y55{bottom:342.244933pt;}
.y17{bottom:343.084000pt;}
.y221{bottom:343.251467pt;}
.y1ec{bottom:344.007200pt;}
.y14f{bottom:347.088667pt;}
.y118{bottom:350.334533pt;}
.y1bc{bottom:354.123733pt;}
.y8d{bottom:355.216533pt;}
.y186{bottom:355.442267pt;}
.y54{bottom:355.577600pt;}
.yb0{bottom:356.197200pt;}
.y116{bottom:356.214533pt;}
.y16{bottom:356.417333pt;}
.y220{bottom:357.338800pt;}
.y1eb{bottom:357.428000pt;}
.y14e{bottom:360.666000pt;}
.y117{bottom:362.084533pt;}
.yad{bottom:365.285200pt;}
.y1bb{bottom:367.497067pt;}
.y115{bottom:367.964533pt;}
.y8c{bottom:368.533067pt;}
.y185{bottom:368.778800pt;}
.y53{bottom:368.910267pt;}
.y15{bottom:369.750667pt;}
.y1ea{bottom:370.857467pt;}
.y21f{bottom:371.426133pt;}
.y14d{bottom:374.243333pt;}
.yaf{bottom:374.373200pt;}
.y1ba{bottom:380.871467pt;}
.y8b{bottom:381.849867pt;}
.y184{bottom:382.110000pt;}
.y52{bottom:382.257067pt;}
.y14{bottom:383.084000pt;}
.y1e9{bottom:384.276133pt;}
.y21e{bottom:385.513467pt;}
.y14c{bottom:387.818533pt;}
.y113{bottom:389.594533pt;}
.yae{bottom:392.549200pt;}
.y1b9{bottom:394.245733pt;}
.y8a{bottom:395.166400pt;}
.y183{bottom:395.449333pt;}
.y114{bottom:395.464533pt;}
.y111{bottom:395.474533pt;}
.y51{bottom:395.585067pt;}
.y13{bottom:396.417333pt;}
.y1e8{bottom:397.694800pt;}
.y21d{bottom:399.600800pt;}
.y112{bottom:401.344533pt;}
.y14b{bottom:401.393600pt;}
.y110{bottom:407.224533pt;}
.y1b8{bottom:407.620933pt;}
.y89{bottom:408.483067pt;}
.y182{bottom:408.788667pt;}
.y50{bottom:408.913067pt;}
.y12{bottom:409.750667pt;}
.yac{bottom:410.725200pt;}
.y1e7{bottom:411.113467pt;}
.y21c{bottom:413.688133pt;}
.y14a{bottom:414.968800pt;}
.y1b7{bottom:420.994267pt;}
.y88{bottom:421.799867pt;}
.y181{bottom:422.125200pt;}
.y4f{bottom:422.241067pt;}
.y11{bottom:423.084000pt;}
.y1e6{bottom:424.532133pt;}
.y21b{bottom:427.775467pt;}
.y149{bottom:428.543867pt;}
.y10f{bottom:428.844533pt;}
.yab{bottom:428.901200pt;}
.y1b6{bottom:434.368533pt;}
.y10d{bottom:434.724533pt;}
.y87{bottom:435.116400pt;}
.y180{bottom:435.461733pt;}
.y4e{bottom:435.573867pt;}
.y1e5{bottom:437.952933pt;}
.y10{bottom:440.193333pt;}
.y10e{bottom:440.594533pt;}
.y21a{bottom:441.862933pt;}
.y148{bottom:442.119067pt;}
.y10c{bottom:446.474533pt;}
.ya8{bottom:447.077200pt;}
.y1b5{bottom:447.742800pt;}
.y86{bottom:448.433200pt;}
.y17f{bottom:448.795600pt;}
.y4d{bottom:448.906533pt;}
.y1e4{bottom:451.375867pt;}
.yf{bottom:453.526667pt;}
.y147{bottom:455.694133pt;}
.y219{bottom:455.950400pt;}
.y1b4{bottom:461.117067pt;}
.y85{bottom:461.749733pt;}
.y17e{bottom:462.134933pt;}
.y4c{bottom:462.253467pt;}
.y1e3{bottom:464.794533pt;}
.yaa{bottom:465.253200pt;}
.y10b{bottom:468.094533pt;}
.y146{bottom:469.269200pt;}
.y218{bottom:470.037733pt;}
.y109{bottom:473.974533pt;}
.y1b3{bottom:474.492267pt;}
.y84{bottom:475.066400pt;}
.y17d{bottom:475.471467pt;}
.y4b{bottom:475.581467pt;}
.y1e2{bottom:478.215467pt;}
.y10a{bottom:479.844533pt;}
.ye{bottom:480.321333pt;}
.y145{bottom:482.844400pt;}
.ya9{bottom:483.429200pt;}
.ye3{bottom:483.990800pt;}
.y217{bottom:484.125067pt;}
.y108{bottom:485.724533pt;}
.y1b2{bottom:487.865600pt;}
.y83{bottom:488.382533pt;}
.y17c{bottom:488.808000pt;}
.y4a{bottom:488.909467pt;}
.y1e1{bottom:491.630000pt;}
.y144{bottom:496.410667pt;}
.yd{bottom:497.430667pt;}
.y216{bottom:498.212667pt;}
.ye2{bottom:498.701467pt;}
.y1b1{bottom:501.239867pt;}
.ya7{bottom:501.605200pt;}
.y82{bottom:501.699200pt;}
.y17b{bottom:502.141867pt;}
.y49{bottom:502.237467pt;}
.y143{bottom:509.988000pt;}
.y107{bottom:510.004533pt;}
.yc{bottom:510.764000pt;}
.y215{bottom:512.300000pt;}
.y1b0{bottom:514.614133pt;}
.y81{bottom:515.015867pt;}
.y17a{bottom:515.481200pt;}
.y48{bottom:515.570133pt;}
.y1e0{bottom:516.393333pt;}
.ya6{bottom:519.781200pt;}
.y106{bottom:521.754533pt;}
.y142{bottom:523.565333pt;}
.yb{bottom:524.097333pt;}
.yd1{bottom:524.916800pt;}
.y214{bottom:526.387333pt;}
.y1af{bottom:527.988400pt;}
.y179{bottom:528.817733pt;}
.ya3{bottom:528.869200pt;}
.y47{bottom:528.902800pt;}
.y141{bottom:537.142667pt;}
.ya{bottom:537.430667pt;}
.ya5{bottom:537.957200pt;}
.y105{bottom:540.154533pt;}
.y213{bottom:540.474667pt;}
.y1ae{bottom:541.363733pt;}
.y178{bottom:542.154400pt;}
.y46{bottom:542.235600pt;}
.y80{bottom:543.451200pt;}
.yee{bottom:544.494667pt;}
.y103{bottom:546.034533pt;}
.y140{bottom:550.720000pt;}
.y9{bottom:550.764000pt;}
.y104{bottom:551.904533pt;}
.y212{bottom:554.562000pt;}
.y1ad{bottom:554.737067pt;}
.y177{bottom:555.490933pt;}
.y45{bottom:555.568267pt;}
.ya4{bottom:556.133200pt;}
.y1df{bottom:556.275333pt;}
.y7f{bottom:556.767867pt;}
.y102{bottom:557.784533pt;}
.yed{bottom:559.069333pt;}
.y8{bottom:564.097333pt;}
.y13f{bottom:564.295200pt;}
.yd0{bottom:565.671467pt;}
.y1ac{bottom:568.111333pt;}
.y211{bottom:568.649467pt;}
.y176{bottom:568.827600pt;}
.y44{bottom:568.901067pt;}
.y1de{bottom:569.694000pt;}
.y7e{bottom:570.084533pt;}
.ya2{bottom:574.309200pt;}
.y7{bottom:577.430667pt;}
.y13e{bottom:577.868000pt;}
.y101{bottom:579.404533pt;}
.ycf{bottom:579.969467pt;}
.y1ab{bottom:581.485600pt;}
.y175{bottom:582.164133pt;}
.y43{bottom:582.233733pt;}
.y210{bottom:582.736800pt;}
.y1dd{bottom:583.114933pt;}
.ya1{bottom:583.397200pt;}
.y7d{bottom:583.401200pt;}
.yff{bottom:585.284533pt;}
.y6{bottom:590.764000pt;}
.y100{bottom:591.154533pt;}
.y13d{bottom:591.445333pt;}
.yce{bottom:594.267200pt;}
.y1aa{bottom:594.859867pt;}
.y174{bottom:595.492400pt;}
.y42{bottom:595.566400pt;}
.y1dc{bottom:596.531733pt;}
.y7c{bottom:596.717867pt;}
.y20f{bottom:596.824267pt;}
.yfe{bottom:597.034533pt;}
.y5{bottom:604.097333pt;}
.y13c{bottom:605.020533pt;}
.y1a9{bottom:608.234133pt;}
.ycd{bottom:608.565067pt;}
.y173{bottom:608.831733pt;}
.y41{bottom:608.899200pt;}
.y7b{bottom:610.034533pt;}
.ya0{bottom:610.661200pt;}
.y20e{bottom:610.911600pt;}
.y13b{bottom:618.593467pt;}
.yfd{bottom:618.654533pt;}
.y9f{bottom:619.749200pt;}
.y1db{bottom:621.295067pt;}
.y1a8{bottom:621.608400pt;}
.y172{bottom:622.171067pt;}
.y40{bottom:622.231867pt;}
.ycc{bottom:622.862933pt;}
.y7a{bottom:623.351200pt;}
.yfb{bottom:624.534533pt;}
.y20d{bottom:624.999067pt;}
.yfc{bottom:630.404533pt;}
.y13a{bottom:632.170800pt;}
.y1a7{bottom:634.982667pt;}
.y171{bottom:635.510400pt;}
.y3f{bottom:635.564533pt;}
.yfa{bottom:636.284533pt;}
.y79{bottom:636.667867pt;}
.ycb{bottom:637.160800pt;}
.y20c{bottom:639.086933pt;}
.y20{bottom:639.109200pt;}
.y139{bottom:645.745867pt;}
.y9e{bottom:647.013200pt;}
.y1a6{bottom:648.359867pt;}
.y170{bottom:648.847067pt;}
.y3e{bottom:648.897333pt;}
.y78{bottom:649.984533pt;}
.yca{bottom:651.458800pt;}
.y20b{bottom:653.174267pt;}
.y1f{bottom:653.509200pt;}
.yf9{bottom:658.614533pt;}
.y138{bottom:659.312267pt;}
.y1da{bottom:661.172667pt;}
.y1a5{bottom:661.733200pt;}
.y16f{bottom:662.183600pt;}
.y3d{bottom:662.230000pt;}
.y77{bottom:663.301200pt;}
.y9d{bottom:665.189200pt;}
.yc9{bottom:665.756533pt;}
.y20a{bottom:667.261600pt;}
.y137{bottom:672.889600pt;}
.y1d9{bottom:674.593467pt;}
.y1a4{bottom:675.106533pt;}
.y16e{bottom:675.520133pt;}
.y3c{bottom:675.562667pt;}
.y76{bottom:676.617867pt;}
.y209{bottom:681.348933pt;}
.y1e{bottom:682.445067pt;}
.y9c{bottom:683.365200pt;}
.y136{bottom:686.466933pt;}
.yf8{bottom:687.565200pt;}
.y1d8{bottom:688.014267pt;}
.y1a3{bottom:688.479867pt;}
.y16d{bottom:688.856800pt;}
.y3b{bottom:688.895467pt;}
.y75{bottom:689.934533pt;}
.y98{bottom:693.061200pt;}
.y208{bottom:695.436267pt;}
.yc8{bottom:698.926400pt;}
.y135{bottom:700.044267pt;}
.yf7{bottom:701.090267pt;}
.y1d7{bottom:701.435200pt;}
.y1a2{bottom:701.854133pt;}
.y9b{bottom:702.149200pt;}
.y16c{bottom:702.187867pt;}
.y3a{bottom:702.228133pt;}
.y74{bottom:703.251200pt;}
.y1d{bottom:703.781067pt;}
.y207{bottom:709.523600pt;}
.y134{bottom:713.621600pt;}
.y1d6{bottom:714.856000pt;}
.y1a1{bottom:715.228400pt;}
.y16b{bottom:715.527200pt;}
.y39{bottom:715.560933pt;}
.yc7{bottom:715.971733pt;}
.y73{bottom:716.568000pt;}
.y9a{bottom:720.933200pt;}
.yc6{bottom:722.243733pt;}
.y206{bottom:723.610933pt;}
.y133{bottom:727.196667pt;}
.y1d5{bottom:728.276800pt;}
.y1a0{bottom:728.602667pt;}
.y16a{bottom:728.866533pt;}
.y38{bottom:728.903067pt;}
.y72{bottom:729.884667pt;}
.y205{bottom:737.698267pt;}
.y99{bottom:739.109200pt;}
.y132{bottom:740.769600pt;}
.yf6{bottom:741.072000pt;}
.y1d4{bottom:741.697600pt;}
.y19f{bottom:741.976933pt;}
.y169{bottom:742.203067pt;}
.y37{bottom:742.231067pt;}
.y71{bottom:743.201200pt;}
.yc5{bottom:747.075733pt;}
.y204{bottom:751.785600pt;}
.y21{bottom:752.846800pt;}
.yc4{bottom:753.347733pt;}
.y131{bottom:754.346933pt;}
.yf5{bottom:754.597067pt;}
.y1d3{bottom:755.118400pt;}
.y19e{bottom:755.351200pt;}
.y168{bottom:755.539600pt;}
.y36{bottom:755.559067pt;}
.y239{bottom:755.639200pt;}
.y70{bottom:756.517867pt;}
.y97{bottom:757.285200pt;}
.ye1{bottom:759.197867pt;}
.y203{bottom:765.872933pt;}
.y96{bottom:766.373200pt;}
.y130{bottom:767.922000pt;}
.yf4{bottom:768.122267pt;}
.y1d2{bottom:768.539200pt;}
.y19d{bottom:768.725467pt;}
.y167{bottom:768.876267pt;}
.y35{bottom:768.891733pt;}
.y238{bottom:768.955867pt;}
.y6f{bottom:769.834667pt;}
.ye0{bottom:773.908533pt;}
.yc3{bottom:778.169067pt;}
.y202{bottom:779.960533pt;}
.y12f{bottom:781.492800pt;}
.yf3{bottom:781.647333pt;}
.y1d1{bottom:781.960000pt;}
.y19c{bottom:782.099733pt;}
.y166{bottom:782.210000pt;}
.y34{bottom:782.238533pt;}
.y237{bottom:782.272533pt;}
.y6e{bottom:783.151333pt;}
.y4{bottom:789.529200pt;}
.y95{bottom:793.637200pt;}
.y201{bottom:794.047867pt;}
.y12e{bottom:795.070133pt;}
.yf2{bottom:795.172400pt;}
.y1d0{bottom:795.380933pt;}
.y19b{bottom:795.474933pt;}
.y165{bottom:795.549333pt;}
.y33{bottom:795.566533pt;}
.y236{bottom:795.589200pt;}
.y6d{bottom:796.468000pt;}
.ydf{bottom:807.511867pt;}
.y200{bottom:808.135200pt;}
.yec{bottom:808.526533pt;}
.y12d{bottom:808.647467pt;}
.yf1{bottom:808.697467pt;}
.yc2{bottom:808.798533pt;}
.y1cf{bottom:808.801733pt;}
.y19a{bottom:808.848267pt;}
.y164{bottom:808.886000pt;}
.y32{bottom:808.894533pt;}
.y235{bottom:808.905867pt;}
.y6c{bottom:809.784533pt;}
.y31{bottom:822.222533pt;}
.y6b{bottom:823.101200pt;}
.y3{bottom:831.566000pt;}
.y2{bottom:842.232667pt;}
.y30{bottom:861.780400pt;}
.y6a{bottom:861.919333pt;}
.ha{height:21.220267pt;}
.h11{height:29.648438pt;}
.h4{height:31.360000pt;}
.h6{height:31.625000pt;}
.hc{height:33.601562pt;}
.h2{height:33.973333pt;}
.he{height:36.030933pt;}
.hb{height:36.586667pt;}
.h12{height:39.200000pt;}
.h3{height:40.998400pt;}
.h5{height:41.813333pt;}
.h8{height:43.484375pt;}
.hd{height:44.426667pt;}
.h9{height:47.040000pt;}
.h17{height:48.538667pt;}
.h15{height:62.680000pt;}
.h10{height:66.858667pt;}
.h7{height:73.173333pt;}
.hf{height:78.165333pt;}
.h14{height:86.200000pt;}
.h13{height:109.680000pt;}
.h16{height:133.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x8{left:59.453733pt;}
.x17{left:60.639067pt;}
.xb{left:61.584000pt;}
.x3{left:68.284933pt;}
.x9{left:72.692933pt;}
.x10{left:81.535600pt;}
.x5{left:89.833200pt;}
.x4{left:115.219867pt;}
.x19{left:135.649067pt;}
.xd{left:139.367600pt;}
.x7{left:162.447467pt;}
.x11{left:172.032267pt;}
.xa{left:188.986933pt;}
.x6{left:197.789467pt;}
.x13{left:209.944000pt;}
.x16{left:213.276000pt;}
.x12{left:214.226267pt;}
.x15{left:221.572000pt;}
.x14{left:224.620667pt;}
.xc{left:232.901333pt;}
.x18{left:284.219067pt;}
.xe{left:296.759600pt;}
.x1d{left:330.897600pt;}
.x1b{left:359.809067pt;}
.x2{left:378.330667pt;}
.xf{left:442.626267pt;}
.x1c{left:445.609067pt;}
.x1a{left:515.339067pt;}
}




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