
    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_a6e0ac40fc45a70ee2380733.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;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_2fcfccddeea0a7bf9b6e9edd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_5ded73d915aabbc07bd8b77e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;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_617cc0cb897fce27688517f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711000;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_a6e0ac40fc45a70ee2380733.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050000;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_2fcfccddeea0a7bf9b6e9edd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_354441d36d259e3bb84fb5d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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;}
.m11c{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.240329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240329,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.240597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240597,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.240629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240629,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.241833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241833,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.242304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242304,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.242331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242331,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.243392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243392,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.243664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243664,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.243782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243782,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.243949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243949,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.244220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244220,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.244288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244288,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.244344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244344,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.244524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244524,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.244758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244758,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.244927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244927,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.245008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245008,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245024,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245263,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245363,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245366,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.245527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245527,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245683,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.245688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245688,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.245866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245866,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.245987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245987,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246046,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246048,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246129,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246206,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246262,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.246347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246347,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246511,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.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);}
.m61{transform:matrix(0.246903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246903,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247012,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247112,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247433,0.000000,0.000000,0.250000,0,0);}
.mc8{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);}
.m8f{transform:matrix(0.247506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247506,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247522,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.247634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247634,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247667,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.247798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247798,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.247801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247801,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248013,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248046,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m110{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);}
.m91{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248124,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248274,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m83{transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248599,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248862,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248901,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249392,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.249401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249401,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.mba{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,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);}
.m3c{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m11e{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);}
.mea{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250804,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250876,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251059,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.251352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251352,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251384,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251401,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251427,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251581,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m21{transform:matrix(0.251796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251796,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252213,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252820,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252828,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252833,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.252903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252903,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252930,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252944,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252946,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.252978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252978,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);}
.m128{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);}
.m129{transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.253726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253726,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.254019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254019,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.254024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254024,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.254103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254103,0.000000,0.000000,0.250000,0,0);}
.mca{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);}
.m125{transform:matrix(0.254288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254288,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.254376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254376,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.254562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254562,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.254798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254798,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.254844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254844,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254887,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.254903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254903,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.255511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255511,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.255774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255774,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.256339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256339,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.256699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256699,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.257366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257366,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.257616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257616,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.257723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257723,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.258355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258355,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.258556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258556,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.582000px;}
.v1{vertical-align:19.980000px;}
.ls5{letter-spacing:-1.020000px;}
.ls39{letter-spacing:-0.948600px;}
.ls24{letter-spacing:-0.781200px;}
.ls23{letter-spacing:-0.725400px;}
.ls3{letter-spacing:-0.675000px;}
.ls26{letter-spacing:-0.669600px;}
.ls6{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.613800px;}
.ls22{letter-spacing:-0.558000px;}
.ls33{letter-spacing:-0.510000px;}
.ls1e{letter-spacing:-0.502200px;}
.ls7{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.468000px;}
.ls34{letter-spacing:-0.459000px;}
.ls20{letter-spacing:-0.446400px;}
.ls1c{letter-spacing:-0.390600px;}
.ls27{letter-spacing:-0.390377px;}
.ls1b{letter-spacing:-0.334800px;}
.ls25{letter-spacing:-0.325314px;}
.ls19{letter-spacing:-0.279000px;}
.ls21{letter-spacing:-0.260251px;}
.ls15{letter-spacing:-0.223200px;}
.ls2e{letter-spacing:-0.204000px;}
.ls16{letter-spacing:-0.167400px;}
.ls29{letter-spacing:-0.162657px;}
.ls2d{letter-spacing:-0.153000px;}
.ls28{letter-spacing:-0.130126px;}
.ls1a{letter-spacing:-0.111600px;}
.ls2f{letter-spacing:-0.102000px;}
.ls1d{letter-spacing:-0.097594px;}
.ls17{letter-spacing:-0.055800px;}
.ls30{letter-spacing:-0.051000px;}
.ls18{letter-spacing:-0.032531px;}
.ls2{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.027900px;}
.ls2a{letter-spacing:0.051000px;}
.lsb{letter-spacing:0.055800px;}
.ls14{letter-spacing:0.065063px;}
.ls13{letter-spacing:0.083700px;}
.ls38{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.111600px;}
.ls11{letter-spacing:0.139500px;}
.ls37{letter-spacing:0.153000px;}
.lse{letter-spacing:0.167400px;}
.ls36{letter-spacing:0.178500px;}
.ls2b{letter-spacing:0.204000px;}
.lsd{letter-spacing:0.223200px;}
.ls31{letter-spacing:0.255000px;}
.lsc{letter-spacing:0.279000px;}
.ls12{letter-spacing:0.334800px;}
.ls8{letter-spacing:0.390000px;}
.lsa{letter-spacing:0.390600px;}
.ls10{letter-spacing:0.446400px;}
.ls32{letter-spacing:0.502200px;}
.ls35{letter-spacing:0.669600px;}
.ls0{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.116000px;}
.ls1{letter-spacing:1.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws33{word-spacing:-12.387600px;}
.ws5e{word-spacing:-11.829600px;}
.ws36{word-spacing:-11.662200px;}
.ws3a{word-spacing:-11.606400px;}
.ws1{word-spacing:-11.322000px;}
.ws38{word-spacing:-11.271600px;}
.ws90{word-spacing:-10.990500px;}
.ws8f{word-spacing:-10.267200px;}
.wsab{word-spacing:-10.176000px;}
.ws2{word-spacing:-9.453600px;}
.ws3{word-spacing:-8.985600px;}
.ws0{word-spacing:-8.865000px;}
.wsae{word-spacing:-8.736000px;}
.ws3b{word-spacing:-6.961720px;}
.ws34{word-spacing:-6.896657px;}
.ws35{word-spacing:-6.864125px;}
.ws91{word-spacing:-6.799063px;}
.ws92{word-spacing:-6.766531px;}
.ws37{word-spacing:-6.636406px;}
.ws93{word-spacing:-6.571343px;}
.ws39{word-spacing:-6.506280px;}
.ws4{word-spacing:-5.093088px;}
.wsa0{word-spacing:-4.687200px;}
.ws1b{word-spacing:-3.884400px;}
.wse{word-spacing:-3.135600px;}
.wsf{word-spacing:-2.995200px;}
.ws22{word-spacing:-2.620800px;}
.ws51{word-spacing:-2.455200px;}
.ws3d{word-spacing:-2.399400px;}
.ws3e{word-spacing:-2.343600px;}
.ws87{word-spacing:-2.287800px;}
.ws42{word-spacing:-2.232000px;}
.ws85{word-spacing:-2.193000px;}
.ws49{word-spacing:-2.120400px;}
.ws6e{word-spacing:-2.064600px;}
.ws67{word-spacing:-2.008800px;}
.ws20{word-spacing:-1.965600px;}
.ws72{word-spacing:-1.953000px;}
.ws8d{word-spacing:-1.938000px;}
.ws10{word-spacing:-1.918800px;}
.ws9e{word-spacing:-1.897200px;}
.ws77{word-spacing:-1.887000px;}
.wsa9{word-spacing:-1.841400px;}
.ws7c{word-spacing:-1.836000px;}
.ws9c{word-spacing:-1.734000px;}
.wsa7{word-spacing:-1.729800px;}
.ws55{word-spacing:-1.674000px;}
.ws40{word-spacing:-1.562400px;}
.ws5d{word-spacing:-1.506600px;}
.ws5f{word-spacing:-1.395000px;}
.ws94{word-spacing:-1.377000px;}
.ws18{word-spacing:-1.357200px;}
.ws6a{word-spacing:-1.339200px;}
.ws86{word-spacing:-1.283400px;}
.ws83{word-spacing:-1.275000px;}
.wsa1{word-spacing:-1.227600px;}
.ws80{word-spacing:-1.173000px;}
.ws6f{word-spacing:-1.171800px;}
.ws46{word-spacing:-1.116000px;}
.wsa8{word-spacing:-1.060200px;}
.ws13{word-spacing:-1.020000px;}
.ws66{word-spacing:-0.948600px;}
.ws9b{word-spacing:-0.918000px;}
.ws70{word-spacing:-0.892800px;}
.ws9d{word-spacing:-0.867000px;}
.ws69{word-spacing:-0.837000px;}
.ws81{word-spacing:-0.816000px;}
.wsa6{word-spacing:-0.781200px;}
.ws4d{word-spacing:-0.725400px;}
.ws31{word-spacing:-0.660000px;}
.ws48{word-spacing:-0.558000px;}
.ws7b{word-spacing:-0.459000px;}
.ws4b{word-spacing:-0.390600px;}
.ws9a{word-spacing:-0.306000px;}
.wsa3{word-spacing:-0.279000px;}
.ws84{word-spacing:-0.255000px;}
.wsa4{word-spacing:-0.223200px;}
.ws47{word-spacing:-0.167400px;}
.wsad{word-spacing:-0.111600px;}
.ws98{word-spacing:-0.102000px;}
.ws4f{word-spacing:-0.065063px;}
.wsac{word-spacing:-0.055800px;}
.ws74{word-spacing:-0.051000px;}
.ws5{word-spacing:0.000000px;}
.wsa2{word-spacing:0.032531px;}
.ws89{word-spacing:0.051000px;}
.ws56{word-spacing:0.055800px;}
.ws54{word-spacing:0.097594px;}
.ws97{word-spacing:0.102000px;}
.ws5a{word-spacing:0.111600px;}
.ws5c{word-spacing:0.130126px;}
.ws7e{word-spacing:0.153000px;}
.ws6d{word-spacing:0.162657px;}
.ws60{word-spacing:0.167400px;}
.ws79{word-spacing:0.204000px;}
.ws5b{word-spacing:0.223200px;}
.ws58{word-spacing:0.279000px;}
.ws11{word-spacing:0.280800px;}
.ws59{word-spacing:0.325314px;}
.ws45{word-spacing:0.334800px;}
.ws7d{word-spacing:0.390600px;}
.ws63{word-spacing:0.446400px;}
.ws78{word-spacing:0.459000px;}
.ws19{word-spacing:0.468000px;}
.ws32{word-spacing:0.480000px;}
.ws61{word-spacing:0.502200px;}
.ws8c{word-spacing:0.510000px;}
.ws4e{word-spacing:0.558000px;}
.ws7f{word-spacing:0.612000px;}
.ws7a{word-spacing:0.613800px;}
.ws68{word-spacing:0.669600px;}
.ws44{word-spacing:0.725400px;}
.ws88{word-spacing:0.781200px;}
.ws95{word-spacing:0.892800px;}
.wsa5{word-spacing:0.948600px;}
.ws71{word-spacing:1.060200px;}
.ws12{word-spacing:1.170000px;}
.ws52{word-spacing:1.171800px;}
.ws8b{word-spacing:1.227600px;}
.ws4c{word-spacing:1.283400px;}
.ws1c{word-spacing:1.310400px;}
.ws9f{word-spacing:1.366319px;}
.ws8a{word-spacing:1.395000px;}
.ws76{word-spacing:1.479000px;}
.ws6c{word-spacing:1.506600px;}
.ws9{word-spacing:1.544400px;}
.ws73{word-spacing:1.562400px;}
.ws2e{word-spacing:1.591200px;}
.ws6b{word-spacing:1.618200px;}
.ws82{word-spacing:1.632000px;}
.ws23{word-spacing:1.638000px;}
.ws43{word-spacing:1.674000px;}
.ws99{word-spacing:1.785000px;}
.ws62{word-spacing:1.785600px;}
.ws75{word-spacing:1.836000px;}
.ws8e{word-spacing:1.841400px;}
.ws65{word-spacing:1.897200px;}
.wsaa{word-spacing:1.953000px;}
.ws64{word-spacing:2.008800px;}
.ws4a{word-spacing:2.064600px;}
.ws2d{word-spacing:2.106000px;}
.ws53{word-spacing:2.120400px;}
.ws57{word-spacing:2.176200px;}
.ws41{word-spacing:2.232000px;}
.ws3c{word-spacing:2.287800px;}
.ws3f{word-spacing:2.343600px;}
.ws50{word-spacing:2.399400px;}
.ws96{word-spacing:2.678400px;}
.ws2f{word-spacing:2.761200px;}
.ws1a{word-spacing:2.901600px;}
.ws2c{word-spacing:2.948400px;}
.ws7{word-spacing:3.182400px;}
.ws26{word-spacing:3.276000px;}
.ws25{word-spacing:3.416400px;}
.ws15{word-spacing:3.556800px;}
.wsa{word-spacing:4.165200px;}
.wsc{word-spacing:4.633200px;}
.ws1d{word-spacing:4.820400px;}
.ws24{word-spacing:5.335200px;}
.wsb{word-spacing:5.803200px;}
.ws2b{word-spacing:6.552000px;}
.ws27{word-spacing:6.832800px;}
.ws16{word-spacing:7.020000px;}
.ws6{word-spacing:7.441200px;}
.ws21{word-spacing:7.581600px;}
.ws14{word-spacing:7.815600px;}
.ws1f{word-spacing:9.032400px;}
.ws28{word-spacing:9.126000px;}
.ws1e{word-spacing:9.500400px;}
.ws30{word-spacing:10.108800px;}
.ws8{word-spacing:10.202400px;}
.ws29{word-spacing:11.232000px;}
.ws17{word-spacing:11.278800px;}
.wsd{word-spacing:21.574800px;}
.ws2a{word-spacing:22.370400px;}
._0{margin-left:-2388.375000px;}
._5{margin-left:-13.469760px;}
._6{margin-left:-11.156040px;}
._8{margin-left:-9.383940px;}
._7{margin-left:-7.940520px;}
._b{margin-left:-6.169440px;}
._4{margin-left:-5.140800px;}
._2{margin-left:-3.327480px;}
._1{margin-left:-1.848600px;}
._3{width:1.755000px;}
._a{width:38.640000px;}
._9{width:63.264000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs7{font-size:27.984000px;}
.fsb{font-size:32.531400px;}
.fs6{font-size:34.980000px;}
.fs9{font-size:39.000000px;}
.fs1{font-size:45.000000px;}
.fs3{font-size:46.800000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fsa{font-size:55.800000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.423500px;}
.y2{bottom:47.674050px;}
.y1ec{bottom:85.669800px;}
.y1b3{bottom:85.693500px;}
.y221{bottom:86.836650px;}
.y250{bottom:87.101100px;}
.y125{bottom:87.297300px;}
.yf1{bottom:87.403500px;}
.y183{bottom:87.797850px;}
.yc3{bottom:88.037250px;}
.y87{bottom:88.041450px;}
.y156{bottom:90.182250px;}
.y280{bottom:101.887500px;}
.y1b2{bottom:102.193500px;}
.y1eb{bottom:103.669800px;}
.y220{bottom:104.836650px;}
.y24f{bottom:105.096600px;}
.y124{bottom:105.297300px;}
.yf0{bottom:105.403500px;}
.y182{bottom:105.793350px;}
.yc2{bottom:106.037250px;}
.y86{bottom:106.041450px;}
.y155{bottom:106.680750px;}
.y27f{bottom:118.087500px;}
.y1ea{bottom:121.669800px;}
.y21f{bottom:122.836650px;}
.y24e{bottom:123.096600px;}
.y154{bottom:123.179250px;}
.yef{bottom:123.403500px;}
.y181{bottom:123.793350px;}
.y85{bottom:124.041450px;}
.y1b1{bottom:135.488850px;}
.y1e9{bottom:139.669800px;}
.y153{bottom:139.679250px;}
.y123{bottom:140.096850px;}
.y27e{bottom:140.239500px;}
.yc1{bottom:140.832150px;}
.y21e{bottom:140.836650px;}
.y24d{bottom:141.096600px;}
.yee{bottom:141.403500px;}
.y180{bottom:141.793350px;}
.y84{bottom:142.041450px;}
.y27d{bottom:156.439500px;}
.y1e8{bottom:157.674300px;}
.y122{bottom:158.092350px;}
.y33{bottom:158.413800px;}
.y21d{bottom:158.836650px;}
.y24c{bottom:159.096600px;}
.yed{bottom:159.403500px;}
.y17f{bottom:159.793350px;}
.y83{bottom:160.041450px;}
.y1b0{bottom:170.284050px;}
.y27c{bottom:172.639500px;}
.y32{bottom:172.664400px;}
.y152{bottom:172.974450px;}
.y1e7{bottom:175.669800px;}
.y21c{bottom:176.836650px;}
.yc0{bottom:176.837100px;}
.y24b{bottom:177.096600px;}
.yec{bottom:177.404700px;}
.y17e{bottom:177.793350px;}
.y81{bottom:178.041450px;}
.y82{bottom:182.686800px;}
.y1af{bottom:186.784050px;}
.y31{bottom:186.915000px;}
.y151{bottom:190.974450px;}
.y121{bottom:192.883650px;}
.y1e6{bottom:193.669800px;}
.y27b{bottom:194.791500px;}
.ybf{bottom:194.832600px;}
.y21b{bottom:194.836650px;}
.y24a{bottom:195.096600px;}
.y80{bottom:196.041450px;}
.y30{bottom:201.165600px;}
.y1ae{bottom:203.284050px;}
.y150{bottom:208.974450px;}
.y27a{bottom:210.991500px;}
.yeb{bottom:211.135800px;}
.y1e5{bottom:211.669800px;}
.y17d{bottom:212.588700px;}
.ybe{bottom:212.832600px;}
.y21a{bottom:212.836650px;}
.y249{bottom:213.096600px;}
.y7f{bottom:214.041450px;}
.y2f{bottom:215.416200px;}
.y14f{bottom:226.974450px;}
.y279{bottom:227.191500px;}
.y17c{bottom:229.088700px;}
.y2e{bottom:229.666800px;}
.y1e4{bottom:229.669800px;}
.ybd{bottom:230.832600px;}
.y219{bottom:230.836650px;}
.y248{bottom:231.096600px;}
.y120{bottom:231.887850px;}
.y7e{bottom:232.041450px;}
.y1ad{bottom:236.579250px;}
.y2d{bottom:243.917400px;}
.y14e{bottom:244.974450px;}
.y17b{bottom:245.588700px;}
.yea{bottom:245.931150px;}
.y1e3{bottom:247.669800px;}
.ybc{bottom:248.832600px;}
.y217{bottom:248.836650px;}
.y247{bottom:249.096600px;}
.y278{bottom:249.343500px;}
.y11f{bottom:249.887850px;}
.y7d{bottom:250.041450px;}
.y218{bottom:253.482000px;}
.y1ac{bottom:254.579250px;}
.y2c{bottom:258.168000px;}
.y14d{bottom:262.974450px;}
.ye9{bottom:263.931150px;}
.y277{bottom:265.543500px;}
.y1e2{bottom:265.669800px;}
.ybb{bottom:266.832600px;}
.y216{bottom:266.836650px;}
.y246{bottom:267.096600px;}
.y11e{bottom:267.887850px;}
.y7c{bottom:268.041450px;}
.y2b{bottom:272.418600px;}
.y17a{bottom:278.888550px;}
.ye8{bottom:281.931150px;}
.y1e0{bottom:283.669800px;}
.yba{bottom:284.832600px;}
.y215{bottom:284.836650px;}
.y245{bottom:285.101100px;}
.y11d{bottom:285.887850px;}
.y7b{bottom:286.041450px;}
.y2a{bottom:286.669200px;}
.y276{bottom:287.695500px;}
.y1e1{bottom:288.315150px;}
.y1ab{bottom:289.374600px;}
.y179{bottom:296.884050px;}
.y14c{bottom:297.769800px;}
.ye7{bottom:299.931150px;}
.y29{bottom:300.919800px;}
.y1df{bottom:301.669800px;}
.yb9{bottom:302.832600px;}
.y214{bottom:302.836650px;}
.y244{bottom:303.096600px;}
.y11c{bottom:303.887850px;}
.y275{bottom:303.895500px;}
.y7a{bottom:304.041450px;}
.y1aa{bottom:305.874600px;}
.y178{bottom:314.884050px;}
.y28{bottom:315.170400px;}
.y14b{bottom:315.769800px;}
.ye6{bottom:317.931150px;}
.y1de{bottom:319.669800px;}
.yb8{bottom:320.832600px;}
.y213{bottom:320.836650px;}
.y243{bottom:321.096600px;}
.y11b{bottom:321.887850px;}
.y79{bottom:322.041450px;}
.y1a9{bottom:322.374600px;}
.y274{bottom:326.047500px;}
.y27{bottom:329.421000px;}
.y177{bottom:332.884050px;}
.y14a{bottom:333.769800px;}
.ye5{bottom:335.931150px;}
.y1dd{bottom:337.669650px;}
.yb7{bottom:338.832600px;}
.y212{bottom:338.836650px;}
.y1a8{bottom:338.874600px;}
.y242{bottom:339.096600px;}
.y11a{bottom:339.892350px;}
.y78{bottom:340.041600px;}
.y273{bottom:342.247500px;}
.y26{bottom:343.671600px;}
.y176{bottom:350.883900px;}
.y149{bottom:351.769800px;}
.ye4{bottom:353.931150px;}
.y1dc{bottom:355.674150px;}
.yb6{bottom:356.832600px;}
.y211{bottom:356.836650px;}
.y241{bottom:357.096600px;}
.y119{bottom:357.887850px;}
.y25{bottom:357.922200px;}
.y77{bottom:358.046100px;}
.y272{bottom:358.447500px;}
.y175{bottom:368.883900px;}
.y148{bottom:369.769800px;}
.ye3{bottom:371.931150px;}
.y1a7{bottom:372.169950px;}
.y24{bottom:372.172800px;}
.y1db{bottom:373.669650px;}
.yb5{bottom:374.832600px;}
.y210{bottom:374.836650px;}
.y240{bottom:375.090300px;}
.y118{bottom:375.887850px;}
.y76{bottom:376.041600px;}
.y271{bottom:380.599500px;}
.y23{bottom:386.423400px;}
.y147{bottom:387.769800px;}
.ye2{bottom:389.931150px;}
.y1d9{bottom:391.669650px;}
.yb3{bottom:392.832600px;}
.y20f{bottom:392.836650px;}
.y23f{bottom:393.085800px;}
.y117{bottom:393.887850px;}
.y75{bottom:394.046100px;}
.y1da{bottom:396.315000px;}
.y270{bottom:396.799500px;}
.yb4{bottom:397.477950px;}
.y22{bottom:400.673400px;}
.y174{bottom:403.680750px;}
.y146{bottom:405.769800px;}
.y1a6{bottom:406.966650px;}
.ye1{bottom:407.932350px;}
.y1d8{bottom:409.669650px;}
.yb2{bottom:410.832600px;}
.y20e{bottom:410.836650px;}
.y116{bottom:411.887850px;}
.y74{bottom:412.046100px;}
.y26f{bottom:418.951500px;}
.y173{bottom:420.179250px;}
.y4c{bottom:422.473950px;}
.y1a5{bottom:423.465150px;}
.y145{bottom:423.769800px;}
.y1d7{bottom:427.669650px;}
.y23e{bottom:428.100300px;}
.yb1{bottom:428.832600px;}
.y20d{bottom:428.836650px;}
.y115{bottom:429.887850px;}
.y73{bottom:430.041600px;}
.y21{bottom:433.965000px;}
.y26e{bottom:435.151500px;}
.y172{bottom:436.679250px;}
.y1a4{bottom:439.965150px;}
.ye0{bottom:441.663450px;}
.y1d6{bottom:445.669650px;}
.y20c{bottom:446.836650px;}
.yb0{bottom:446.837100px;}
.y114{bottom:447.887850px;}
.y72{bottom:448.041600px;}
.y20{bottom:448.215600px;}
.y26d{bottom:451.351500px;}
.y1a3{bottom:456.465150px;}
.y144{bottom:458.565150px;}
.ydf{bottom:459.663450px;}
.y1f{bottom:462.466200px;}
.y1d5{bottom:463.669650px;}
.yaf{bottom:464.832600px;}
.y20b{bottom:464.836650px;}
.y113{bottom:465.887850px;}
.y71{bottom:466.041600px;}
.y23d{bottom:467.104500px;}
.y4b{bottom:469.741950px;}
.y171{bottom:469.987950px;}
.y1a2{bottom:472.965150px;}
.y26c{bottom:473.503500px;}
.y143{bottom:475.065150px;}
.y1e{bottom:476.716800px;}
.yde{bottom:477.663450px;}
.y1d4{bottom:481.669650px;}
.yae{bottom:482.832600px;}
.y20a{bottom:482.836650px;}
.y112{bottom:483.887850px;}
.y70{bottom:484.041600px;}
.y23c{bottom:485.104500px;}
.y4a{bottom:485.485950px;}
.y170{bottom:487.983450px;}
.y1d{bottom:490.967400px;}
.y142{bottom:491.565150px;}
.y26b{bottom:495.655500px;}
.ydd{bottom:495.663450px;}
.y1d3{bottom:499.678650px;}
.yac{bottom:500.832600px;}
.y209{bottom:500.836650px;}
.y49{bottom:501.229950px;}
.y111{bottom:501.887850px;}
.y6f{bottom:502.041600px;}
.y23b{bottom:503.104500px;}
.y1c{bottom:505.218000px;}
.yad{bottom:505.477950px;}
.y16f{bottom:505.978950px;}
.y1a1{bottom:506.260500px;}
.y141{bottom:508.065150px;}
.ydc{bottom:513.663450px;}
.y1d2{bottom:517.674150px;}
.y26a{bottom:517.807500px;}
.yab{bottom:518.832600px;}
.y208{bottom:518.836650px;}
.y1b{bottom:519.468600px;}
.y110{bottom:519.892350px;}
.y6e{bottom:520.041600px;}
.y23a{bottom:521.104500px;}
.y16e{bottom:523.974450px;}
.y140{bottom:524.565150px;}
.ydb{bottom:531.664650px;}
.y1a{bottom:533.719200px;}
.y1d1{bottom:535.669650px;}
.y48{bottom:535.741950px;}
.yaa{bottom:536.832600px;}
.y207{bottom:536.836650px;}
.y10f{bottom:537.887850px;}
.y6d{bottom:538.041600px;}
.y239{bottom:539.104500px;}
.y269{bottom:539.959500px;}
.y1a0{bottom:541.058700px;}
.y16d{bottom:541.974450px;}
.y19{bottom:547.969800px;}
.y47{bottom:551.485950px;}
.y1d0{bottom:553.669650px;}
.ya9{bottom:554.832600px;}
.y206{bottom:554.836650px;}
.y10e{bottom:555.887850px;}
.y6c{bottom:556.046100px;}
.y268{bottom:556.159500px;}
.y238{bottom:557.109000px;}
.y19f{bottom:557.557200px;}
.y13f{bottom:557.860350px;}
.y16c{bottom:559.974450px;}
.y18{bottom:562.220400px;}
.yda{bottom:565.395750px;}
.y46{bottom:567.229950px;}
.y1cf{bottom:571.669650px;}
.y267{bottom:572.359500px;}
.ya8{bottom:572.832600px;}
.y205{bottom:572.836650px;}
.y10d{bottom:573.887850px;}
.y6b{bottom:574.041600px;}
.y19e{bottom:574.055700px;}
.y13e{bottom:574.360350px;}
.y237{bottom:575.104500px;}
.y17{bottom:576.471000px;}
.y16b{bottom:577.974450px;}
.y45{bottom:582.973950px;}
.yd9{bottom:583.395750px;}
.y1cd{bottom:589.669650px;}
.y19d{bottom:590.555700px;}
.y16{bottom:590.721600px;}
.ya7{bottom:590.832600px;}
.y204{bottom:590.836650px;}
.y13d{bottom:590.860350px;}
.y10b{bottom:591.887850px;}
.y6a{bottom:592.041600px;}
.y236{bottom:593.104500px;}
.y1ce{bottom:594.315000px;}
.y266{bottom:594.511500px;}
.y10c{bottom:596.533200px;}
.y44{bottom:598.717950px;}
.yd8{bottom:601.395750px;}
.y15{bottom:604.972200px;}
.y1cc{bottom:607.669650px;}
.ya6{bottom:608.832600px;}
.y203{bottom:608.836650px;}
.y10a{bottom:609.887850px;}
.y69{bottom:610.046100px;}
.y235{bottom:611.104500px;}
.y16a{bottom:612.769800px;}
.y43{bottom:614.461950px;}
.y265{bottom:616.663500px;}
.y14{bottom:619.222800px;}
.yd7{bottom:619.395750px;}
.y19c{bottom:623.851050px;}
.y13c{bottom:624.155700px;}
.y1cb{bottom:625.669650px;}
.ya5{bottom:626.832600px;}
.y202{bottom:626.836650px;}
.y109{bottom:627.887850px;}
.y68{bottom:628.041600px;}
.y169{bottom:630.769800px;}
.y264{bottom:632.863500px;}
.y13{bottom:633.473400px;}
.yd6{bottom:637.395750px;}
.y19b{bottom:641.851050px;}
.y13b{bottom:642.155700px;}
.y1ca{bottom:643.669650px;}
.ya4{bottom:644.832600px;}
.y201{bottom:644.836650px;}
.y67{bottom:646.041600px;}
.y234{bottom:646.112250px;}
.y12{bottom:647.723400px;}
.y42{bottom:648.217950px;}
.y263{bottom:655.015500px;}
.yd5{bottom:655.395750px;}
.y19a{bottom:659.851050px;}
.y13a{bottom:660.155700px;}
.y1c9{bottom:661.669650px;}
.y108{bottom:662.683050px;}
.ya3{bottom:662.832600px;}
.y200{bottom:662.836650px;}
.y66{bottom:664.041600px;}
.y168{bottom:665.565150px;}
.y41{bottom:667.957950px;}
.yd4{bottom:673.395750px;}
.y262{bottom:677.167500px;}
.y199{bottom:677.851050px;}
.y139{bottom:678.155700px;}
.y11{bottom:678.315600px;}
.y1c8{bottom:679.669650px;}
.y40{bottom:679.717950px;}
.y107{bottom:680.683050px;}
.ya1{bottom:680.832600px;}
.y1ff{bottom:680.836650px;}
.y233{bottom:681.984000px;}
.y65{bottom:682.041600px;}
.y167{bottom:682.065150px;}
.ya2{bottom:685.477950px;}
.y10{bottom:692.566200px;}
.y261{bottom:693.367500px;}
.y198{bottom:695.851050px;}
.y138{bottom:696.155700px;}
.y1c7{bottom:697.669650px;}
.y166{bottom:698.565150px;}
.ya0{bottom:698.832600px;}
.y1fe{bottom:698.841150px;}
.y3f{bottom:699.457950px;}
.y232{bottom:699.979500px;}
.y64{bottom:700.041600px;}
.y106{bottom:700.196550px;}
.yf{bottom:706.816800px;}
.yd3{bottom:707.136000px;}
.y197{bottom:713.851050px;}
.y137{bottom:714.155700px;}
.y260{bottom:715.519500px;}
.y1c6{bottom:715.669650px;}
.y9f{bottom:716.832600px;}
.y1fd{bottom:716.836650px;}
.y231{bottom:717.975000px;}
.y63{bottom:718.050600px;}
.y105{bottom:718.192050px;}
.ye{bottom:721.067400px;}
.y196{bottom:731.851050px;}
.y165{bottom:731.864850px;}
.y136{bottom:732.155700px;}
.y1c5{bottom:733.669650px;}
.y9e{bottom:734.832600px;}
.y1fc{bottom:734.836650px;}
.yd{bottom:735.318000px;}
.y230{bottom:735.970500px;}
.y62{bottom:736.046100px;}
.y104{bottom:736.187550px;}
.y25f{bottom:737.671500px;}
.yd2{bottom:741.927300px;}
.yc{bottom:749.568600px;}
.y195{bottom:749.851050px;}
.y164{bottom:749.860350px;}
.y135{bottom:750.155700px;}
.y3e{bottom:751.233600px;}
.y1c4{bottom:751.669650px;}
.y9d{bottom:752.832600px;}
.y1fb{bottom:752.836650px;}
.y22f{bottom:753.970500px;}
.y61{bottom:754.041600px;}
.y103{bottom:754.183050px;}
.y25e{bottom:759.823500px;}
.yb{bottom:763.819200px;}
.y194{bottom:767.851050px;}
.y163{bottom:767.860350px;}
.y134{bottom:768.155700px;}
.y3d{bottom:768.985500px;}
.y1c3{bottom:769.669800px;}
.y9c{bottom:770.832600px;}
.y1fa{bottom:770.836650px;}
.y22e{bottom:771.970500px;}
.y60{bottom:772.041450px;}
.y102{bottom:772.183050px;}
.y25d{bottom:776.023500px;}
.yd1{bottom:776.731050px;}
.ya{bottom:778.069800px;}
.y193{bottom:785.855400px;}
.y133{bottom:786.155700px;}
.y1c2{bottom:787.669800px;}
.y9b{bottom:788.832600px;}
.y1f9{bottom:788.836650px;}
.y22d{bottom:789.970500px;}
.y5f{bottom:790.041450px;}
.y101{bottom:790.183050px;}
.y9{bottom:792.320400px;}
.y3c{bottom:795.489600px;}
.y25c{bottom:798.175500px;}
.y162{bottom:802.655700px;}
.y192{bottom:803.850900px;}
.y1c1{bottom:805.669800px;}
.y8{bottom:806.571000px;}
.y9a{bottom:806.832600px;}
.y1f8{bottom:806.836650px;}
.y22c{bottom:807.970500px;}
.y5e{bottom:808.041450px;}
.y100{bottom:808.183050px;}
.yd0{bottom:811.522350px;}
.y3b{bottom:813.241500px;}
.y25b{bottom:814.375500px;}
.y161{bottom:819.155700px;}
.y7{bottom:820.821600px;}
.y132{bottom:820.950900px;}
.y191{bottom:821.850900px;}
.y1c0{bottom:823.669800px;}
.y98{bottom:824.832600px;}
.y1f7{bottom:824.836650px;}
.y22b{bottom:825.970500px;}
.y5d{bottom:826.041450px;}
.yff{bottom:826.183050px;}
.y99{bottom:829.478100px;}
.y25a{bottom:830.575500px;}
.y6{bottom:835.072200px;}
.y3a{bottom:839.745450px;}
.y190{bottom:839.850900px;}
.y1bf{bottom:841.669800px;}
.y97{bottom:842.832600px;}
.y1f6{bottom:842.836650px;}
.y22a{bottom:843.970500px;}
.y5c{bottom:844.041450px;}
.yfe{bottom:844.183050px;}
.ycf{bottom:846.313650px;}
.y5{bottom:849.322800px;}
.y160{bottom:852.450900px;}
.y259{bottom:852.727500px;}
.y131{bottom:855.746100px;}
.y39{bottom:857.497350px;}
.y18f{bottom:857.850900px;}
.y1be{bottom:859.669800px;}
.y96{bottom:860.832600px;}
.y1f5{bottom:860.836650px;}
.y229{bottom:861.970500px;}
.y5b{bottom:862.041450px;}
.yfd{bottom:862.183050px;}
.y4{bottom:863.573400px;}
.yce{bottom:864.309150px;}
.y258{bottom:868.927500px;}
.y15f{bottom:870.450900px;}
.y130{bottom:872.246100px;}
.y18e{bottom:875.850900px;}
.y1bd{bottom:877.669800px;}
.y3{bottom:877.823400px;}
.y95{bottom:878.832600px;}
.y1f4{bottom:878.836650px;}
.y228{bottom:879.970500px;}
.y5a{bottom:880.045950px;}
.yfc{bottom:880.183050px;}
.ycd{bottom:882.309150px;}
.y257{bottom:885.127500px;}
.y15e{bottom:888.450900px;}
.y12f{bottom:888.751200px;}
.y18d{bottom:893.854950px;}
.y1bc{bottom:895.669800px;}
.y94{bottom:896.832600px;}
.y1f3{bottom:896.836650px;}
.y227{bottom:897.970500px;}
.y59{bottom:898.041450px;}
.ycc{bottom:900.309150px;}
.y15d{bottom:906.450900px;}
.y93{bottom:914.832750px;}
.y1f2{bottom:914.836800px;}
.yfb{bottom:914.989650px;}
.y226{bottom:915.970500px;}
.y58{bottom:916.041450px;}
.ycb{bottom:918.309150px;}
.y256{bottom:921.099300px;}
.y12e{bottom:922.041450px;}
.y18c{bottom:928.646250px;}
.y1bb{bottom:928.976850px;}
.y289{bottom:931.088250px;}
.y37{bottom:932.614350px;}
.y92{bottom:932.832750px;}
.y1f1{bottom:932.836800px;}
.y225{bottom:933.970500px;}
.y57{bottom:934.041450px;}
.yca{bottom:936.309150px;}
.y12d{bottom:938.541450px;}
.y15c{bottom:941.246100px;}
.y288{bottom:947.288250px;}
.y91{bottom:950.832750px;}
.yfa{bottom:950.841150px;}
.y1f0{bottom:950.841300px;}
.y224{bottom:951.970500px;}
.y56{bottom:952.041450px;}
.yc9{bottom:954.309150px;}
.y12c{bottom:955.041450px;}
.y36{bottom:957.859350px;}
.y15b{bottom:959.246100px;}
.y18b{bottom:963.441450px;}
.y1ba{bottom:963.773550px;}
.y90{bottom:968.832750px;}
.yf9{bottom:968.836650px;}
.y1ef{bottom:968.836800px;}
.y287{bottom:969.440250px;}
.y223{bottom:969.970500px;}
.y55{bottom:970.041450px;}
.y12b{bottom:971.541450px;}
.yc8{bottom:972.309150px;}
.y18a{bottom:979.941450px;}
.y1b9{bottom:980.272050px;}
.y8e{bottom:986.832750px;}
.yf8{bottom:986.836650px;}
.y1ee{bottom:986.836800px;}
.y252{bottom:986.841300px;}
.y54{bottom:988.041450px;}
.yc7{bottom:990.309150px;}
.y8f{bottom:991.478100px;}
.y286{bottom:991.592250px;}
.y15a{bottom:994.045950px;}
.y189{bottom:996.441450px;}
.y1b8{bottom:996.772050px;}
.y35{bottom:996.871350px;}
.yf7{bottom:1004.836650px;}
.y1ed{bottom:1004.836800px;}
.y8d{bottom:1004.837250px;}
.y12a{bottom:1004.841300px;}
.y222{bottom:1004.985300px;}
.y53{bottom:1006.041450px;}
.yc6{bottom:1008.309150px;}
.y159{bottom:1010.544450px;}
.y1b7{bottom:1013.272050px;}
.y285{bottom:1013.744250px;}
.y8c{bottom:1022.832750px;}
.yf6{bottom:1022.836650px;}
.y129{bottom:1022.836800px;}
.y52{bottom:1024.041450px;}
.yc5{bottom:1026.314400px;}
.y34{bottom:1026.859350px;}
.y158{bottom:1027.042950px;}
.y188{bottom:1029.736650px;}
.y284{bottom:1035.896250px;}
.y8b{bottom:1040.832750px;}
.yf5{bottom:1040.836650px;}
.y128{bottom:1040.836800px;}
.y255{bottom:1040.841750px;}
.y51{bottom:1042.041450px;}
.y157{bottom:1043.541450px;}
.y1b6{bottom:1045.504350px;}
.y187{bottom:1046.236650px;}
.y283{bottom:1052.096250px;}
.y8a{bottom:1058.832750px;}
.yf4{bottom:1058.836650px;}
.y127{bottom:1058.836800px;}
.y50{bottom:1060.041450px;}
.yc4{bottom:1060.045500px;}
.y186{bottom:1062.736650px;}
.y282{bottom:1074.248250px;}
.y89{bottom:1076.832750px;}
.yf3{bottom:1076.836650px;}
.y126{bottom:1076.836800px;}
.y251{bottom:1076.841300px;}
.y254{bottom:1076.846700px;}
.y185{bottom:1079.236650px;}
.y1b5{bottom:1079.237250px;}
.y88{bottom:1094.832750px;}
.yf2{bottom:1094.836650px;}
.y4f{bottom:1094.836800px;}
.y253{bottom:1094.842200px;}
.y1b4{bottom:1095.735750px;}
.y184{bottom:1095.736650px;}
.y281{bottom:1096.400250px;}
.y38{bottom:1112.678850px;}
.y4e{bottom:1135.192650px;}
.y4d{bottom:1149.222900px;}
.hc{height:23.760000px;}
.h14{height:26.968531px;}
.h11{height:32.331000px;}
.h10{height:32.994000px;}
.h3{height:37.305000px;}
.h6{height:38.797200px;}
.h5{height:39.592800px;}
.hd{height:39.744000px;}
.hf{height:39.792000px;}
.h15{height:40.231800px;}
.he{height:40.608000px;}
.h16{height:42.228000px;}
.hb{height:42.279000px;}
.h4{height:43.146000px;}
.h9{height:46.200000px;}
.h13{height:46.258200px;}
.h12{height:47.206800px;}
.h2{height:49.740000px;}
.ha{height:50.760000px;}
.h8{height:54.648000px;}
.h7{height:86.292000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:72.300000px;}
.x1b{left:89.447250px;}
.x35{left:99.337650px;}
.xd{left:103.272600px;}
.x15{left:114.119550px;}
.x9{left:118.925700px;}
.x6{left:120.685200px;}
.x36{left:126.337650px;}
.xf{left:127.491600px;}
.x7{left:131.014200px;}
.x17{left:133.487550px;}
.xc{left:156.093900px;}
.x13{left:158.579550px;}
.x18{left:160.679550px;}
.x12{left:175.175550px;}
.x16{left:199.175550px;}
.x4{left:205.012650px;}
.x14{left:206.519550px;}
.x1d{left:208.619550px;}
.xa{left:218.837250px;}
.xb{left:242.403150px;}
.x11{left:253.715550px;}
.x5{left:262.260150px;}
.x10{left:279.971550px;}
.xe{left:297.875700px;}
.x3{left:401.938500px;}
.x33{left:420.250650px;}
.x34{left:433.159350px;}
.x1f{left:456.628800px;}
.x1e{left:473.653800px;}
.x19{left:477.242400px;}
.x28{left:493.800150px;}
.x24{left:497.888700px;}
.x2c{left:499.393650px;}
.x29{left:502.350300px;}
.x25{left:506.447250px;}
.x20{left:520.099500px;}
.x21{left:528.708600px;}
.x2{left:563.174100px;}
.x2f{left:594.940050px;}
.x30{left:607.832550px;}
.x2a{left:635.682750px;}
.x2b{left:648.246000px;}
.x1a{left:654.594900px;}
.x8{left:682.609200px;}
.x2d{left:698.855400px;}
.x2e{left:711.462000px;}
.x26{left:735.927150px;}
.x22{left:741.790950px;}
.x27{left:744.853800px;}
.x23{left:750.422400px;}
.x1{left:796.630200px;}
.x31{left:809.125500px;}
.x32{left:817.756350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.517333pt;}
.v1{vertical-align:17.760000pt;}
.ls5{letter-spacing:-0.906667pt;}
.ls39{letter-spacing:-0.843200pt;}
.ls24{letter-spacing:-0.694400pt;}
.ls23{letter-spacing:-0.644800pt;}
.ls3{letter-spacing:-0.600000pt;}
.ls26{letter-spacing:-0.595200pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.545600pt;}
.ls22{letter-spacing:-0.496000pt;}
.ls33{letter-spacing:-0.453333pt;}
.ls1e{letter-spacing:-0.446400pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.416000pt;}
.ls34{letter-spacing:-0.408000pt;}
.ls20{letter-spacing:-0.396800pt;}
.ls1c{letter-spacing:-0.347200pt;}
.ls27{letter-spacing:-0.347002pt;}
.ls1b{letter-spacing:-0.297600pt;}
.ls25{letter-spacing:-0.289168pt;}
.ls19{letter-spacing:-0.248000pt;}
.ls21{letter-spacing:-0.231334pt;}
.ls15{letter-spacing:-0.198400pt;}
.ls2e{letter-spacing:-0.181333pt;}
.ls16{letter-spacing:-0.148800pt;}
.ls29{letter-spacing:-0.144584pt;}
.ls2d{letter-spacing:-0.136000pt;}
.ls28{letter-spacing:-0.115667pt;}
.ls1a{letter-spacing:-0.099200pt;}
.ls2f{letter-spacing:-0.090667pt;}
.ls1d{letter-spacing:-0.086750pt;}
.ls17{letter-spacing:-0.049600pt;}
.ls30{letter-spacing:-0.045333pt;}
.ls18{letter-spacing:-0.028917pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.024800pt;}
.ls2a{letter-spacing:0.045333pt;}
.lsb{letter-spacing:0.049600pt;}
.ls14{letter-spacing:0.057834pt;}
.ls13{letter-spacing:0.074400pt;}
.ls38{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.099200pt;}
.ls11{letter-spacing:0.124000pt;}
.ls37{letter-spacing:0.136000pt;}
.lse{letter-spacing:0.148800pt;}
.ls36{letter-spacing:0.158667pt;}
.ls2b{letter-spacing:0.181333pt;}
.lsd{letter-spacing:0.198400pt;}
.ls31{letter-spacing:0.226667pt;}
.lsc{letter-spacing:0.248000pt;}
.ls12{letter-spacing:0.297600pt;}
.ls8{letter-spacing:0.346667pt;}
.lsa{letter-spacing:0.347200pt;}
.ls10{letter-spacing:0.396800pt;}
.ls32{letter-spacing:0.446400pt;}
.ls35{letter-spacing:0.595200pt;}
.ls0{letter-spacing:0.906667pt;}
.ls9{letter-spacing:0.992000pt;}
.ls1{letter-spacing:1.173333pt;}
.ws33{word-spacing:-11.011200pt;}
.ws5e{word-spacing:-10.515200pt;}
.ws36{word-spacing:-10.366400pt;}
.ws3a{word-spacing:-10.316800pt;}
.ws1{word-spacing:-10.064000pt;}
.ws38{word-spacing:-10.019200pt;}
.ws90{word-spacing:-9.769333pt;}
.ws8f{word-spacing:-9.126400pt;}
.wsab{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.403200pt;}
.ws3{word-spacing:-7.987200pt;}
.ws0{word-spacing:-7.880000pt;}
.wsae{word-spacing:-7.765333pt;}
.ws3b{word-spacing:-6.188195pt;}
.ws34{word-spacing:-6.130362pt;}
.ws35{word-spacing:-6.101445pt;}
.ws91{word-spacing:-6.043611pt;}
.ws92{word-spacing:-6.014694pt;}
.ws37{word-spacing:-5.899027pt;}
.ws93{word-spacing:-5.841194pt;}
.ws39{word-spacing:-5.783360pt;}
.ws4{word-spacing:-4.527189pt;}
.wsa0{word-spacing:-4.166400pt;}
.ws1b{word-spacing:-3.452800pt;}
.wse{word-spacing:-2.787200pt;}
.wsf{word-spacing:-2.662400pt;}
.ws22{word-spacing:-2.329600pt;}
.ws51{word-spacing:-2.182400pt;}
.ws3d{word-spacing:-2.132800pt;}
.ws3e{word-spacing:-2.083200pt;}
.ws87{word-spacing:-2.033600pt;}
.ws42{word-spacing:-1.984000pt;}
.ws85{word-spacing:-1.949333pt;}
.ws49{word-spacing:-1.884800pt;}
.ws6e{word-spacing:-1.835200pt;}
.ws67{word-spacing:-1.785600pt;}
.ws20{word-spacing:-1.747200pt;}
.ws72{word-spacing:-1.736000pt;}
.ws8d{word-spacing:-1.722667pt;}
.ws10{word-spacing:-1.705600pt;}
.ws9e{word-spacing:-1.686400pt;}
.ws77{word-spacing:-1.677333pt;}
.wsa9{word-spacing:-1.636800pt;}
.ws7c{word-spacing:-1.632000pt;}
.ws9c{word-spacing:-1.541333pt;}
.wsa7{word-spacing:-1.537600pt;}
.ws55{word-spacing:-1.488000pt;}
.ws40{word-spacing:-1.388800pt;}
.ws5d{word-spacing:-1.339200pt;}
.ws5f{word-spacing:-1.240000pt;}
.ws94{word-spacing:-1.224000pt;}
.ws18{word-spacing:-1.206400pt;}
.ws6a{word-spacing:-1.190400pt;}
.ws86{word-spacing:-1.140800pt;}
.ws83{word-spacing:-1.133333pt;}
.wsa1{word-spacing:-1.091200pt;}
.ws80{word-spacing:-1.042667pt;}
.ws6f{word-spacing:-1.041600pt;}
.ws46{word-spacing:-0.992000pt;}
.wsa8{word-spacing:-0.942400pt;}
.ws13{word-spacing:-0.906667pt;}
.ws66{word-spacing:-0.843200pt;}
.ws9b{word-spacing:-0.816000pt;}
.ws70{word-spacing:-0.793600pt;}
.ws9d{word-spacing:-0.770667pt;}
.ws69{word-spacing:-0.744000pt;}
.ws81{word-spacing:-0.725333pt;}
.wsa6{word-spacing:-0.694400pt;}
.ws4d{word-spacing:-0.644800pt;}
.ws31{word-spacing:-0.586667pt;}
.ws48{word-spacing:-0.496000pt;}
.ws7b{word-spacing:-0.408000pt;}
.ws4b{word-spacing:-0.347200pt;}
.ws9a{word-spacing:-0.272000pt;}
.wsa3{word-spacing:-0.248000pt;}
.ws84{word-spacing:-0.226667pt;}
.wsa4{word-spacing:-0.198400pt;}
.ws47{word-spacing:-0.148800pt;}
.wsad{word-spacing:-0.099200pt;}
.ws98{word-spacing:-0.090667pt;}
.ws4f{word-spacing:-0.057834pt;}
.wsac{word-spacing:-0.049600pt;}
.ws74{word-spacing:-0.045333pt;}
.ws5{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.028917pt;}
.ws89{word-spacing:0.045333pt;}
.ws56{word-spacing:0.049600pt;}
.ws54{word-spacing:0.086750pt;}
.ws97{word-spacing:0.090667pt;}
.ws5a{word-spacing:0.099200pt;}
.ws5c{word-spacing:0.115667pt;}
.ws7e{word-spacing:0.136000pt;}
.ws6d{word-spacing:0.144584pt;}
.ws60{word-spacing:0.148800pt;}
.ws79{word-spacing:0.181333pt;}
.ws5b{word-spacing:0.198400pt;}
.ws58{word-spacing:0.248000pt;}
.ws11{word-spacing:0.249600pt;}
.ws59{word-spacing:0.289168pt;}
.ws45{word-spacing:0.297600pt;}
.ws7d{word-spacing:0.347200pt;}
.ws63{word-spacing:0.396800pt;}
.ws78{word-spacing:0.408000pt;}
.ws19{word-spacing:0.416000pt;}
.ws32{word-spacing:0.426667pt;}
.ws61{word-spacing:0.446400pt;}
.ws8c{word-spacing:0.453333pt;}
.ws4e{word-spacing:0.496000pt;}
.ws7f{word-spacing:0.544000pt;}
.ws7a{word-spacing:0.545600pt;}
.ws68{word-spacing:0.595200pt;}
.ws44{word-spacing:0.644800pt;}
.ws88{word-spacing:0.694400pt;}
.ws95{word-spacing:0.793600pt;}
.wsa5{word-spacing:0.843200pt;}
.ws71{word-spacing:0.942400pt;}
.ws12{word-spacing:1.040000pt;}
.ws52{word-spacing:1.041600pt;}
.ws8b{word-spacing:1.091200pt;}
.ws4c{word-spacing:1.140800pt;}
.ws1c{word-spacing:1.164800pt;}
.ws9f{word-spacing:1.214506pt;}
.ws8a{word-spacing:1.240000pt;}
.ws76{word-spacing:1.314667pt;}
.ws6c{word-spacing:1.339200pt;}
.ws9{word-spacing:1.372800pt;}
.ws73{word-spacing:1.388800pt;}
.ws2e{word-spacing:1.414400pt;}
.ws6b{word-spacing:1.438400pt;}
.ws82{word-spacing:1.450667pt;}
.ws23{word-spacing:1.456000pt;}
.ws43{word-spacing:1.488000pt;}
.ws99{word-spacing:1.586667pt;}
.ws62{word-spacing:1.587200pt;}
.ws75{word-spacing:1.632000pt;}
.ws8e{word-spacing:1.636800pt;}
.ws65{word-spacing:1.686400pt;}
.wsaa{word-spacing:1.736000pt;}
.ws64{word-spacing:1.785600pt;}
.ws4a{word-spacing:1.835200pt;}
.ws2d{word-spacing:1.872000pt;}
.ws53{word-spacing:1.884800pt;}
.ws57{word-spacing:1.934400pt;}
.ws41{word-spacing:1.984000pt;}
.ws3c{word-spacing:2.033600pt;}
.ws3f{word-spacing:2.083200pt;}
.ws50{word-spacing:2.132800pt;}
.ws96{word-spacing:2.380800pt;}
.ws2f{word-spacing:2.454400pt;}
.ws1a{word-spacing:2.579200pt;}
.ws2c{word-spacing:2.620800pt;}
.ws7{word-spacing:2.828800pt;}
.ws26{word-spacing:2.912000pt;}
.ws25{word-spacing:3.036800pt;}
.ws15{word-spacing:3.161600pt;}
.wsa{word-spacing:3.702400pt;}
.wsc{word-spacing:4.118400pt;}
.ws1d{word-spacing:4.284800pt;}
.ws24{word-spacing:4.742400pt;}
.wsb{word-spacing:5.158400pt;}
.ws2b{word-spacing:5.824000pt;}
.ws27{word-spacing:6.073600pt;}
.ws16{word-spacing:6.240000pt;}
.ws6{word-spacing:6.614400pt;}
.ws21{word-spacing:6.739200pt;}
.ws14{word-spacing:6.947200pt;}
.ws1f{word-spacing:8.028800pt;}
.ws28{word-spacing:8.112000pt;}
.ws1e{word-spacing:8.444800pt;}
.ws30{word-spacing:8.985600pt;}
.ws8{word-spacing:9.068800pt;}
.ws29{word-spacing:9.984000pt;}
.ws17{word-spacing:10.025600pt;}
.wsd{word-spacing:19.177600pt;}
.ws2a{word-spacing:19.884800pt;}
._0{margin-left:-2123.000000pt;}
._5{margin-left:-11.973120pt;}
._6{margin-left:-9.916480pt;}
._8{margin-left:-8.341280pt;}
._7{margin-left:-7.058240pt;}
._b{margin-left:-5.483947pt;}
._4{margin-left:-4.569600pt;}
._2{margin-left:-2.957760pt;}
._1{margin-left:-1.643200pt;}
._3{width:1.560000pt;}
._a{width:34.346667pt;}
._9{width:56.234667pt;}
.fs7{font-size:24.874667pt;}
.fsb{font-size:28.916800pt;}
.fs6{font-size:31.093333pt;}
.fs9{font-size:34.666667pt;}
.fs1{font-size:40.000000pt;}
.fs3{font-size:41.600000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fsa{font-size:49.600000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.265333pt;}
.y2{bottom:42.376933pt;}
.y1ec{bottom:76.150933pt;}
.y1b3{bottom:76.172000pt;}
.y221{bottom:77.188133pt;}
.y250{bottom:77.423200pt;}
.y125{bottom:77.597600pt;}
.yf1{bottom:77.692000pt;}
.y183{bottom:78.042533pt;}
.yc3{bottom:78.255333pt;}
.y87{bottom:78.259067pt;}
.y156{bottom:80.162000pt;}
.y280{bottom:90.566667pt;}
.y1b2{bottom:90.838667pt;}
.y1eb{bottom:92.150933pt;}
.y220{bottom:93.188133pt;}
.y24f{bottom:93.419200pt;}
.y124{bottom:93.597600pt;}
.yf0{bottom:93.692000pt;}
.y182{bottom:94.038533pt;}
.yc2{bottom:94.255333pt;}
.y86{bottom:94.259067pt;}
.y155{bottom:94.827333pt;}
.y27f{bottom:104.966667pt;}
.y1ea{bottom:108.150933pt;}
.y21f{bottom:109.188133pt;}
.y24e{bottom:109.419200pt;}
.y154{bottom:109.492667pt;}
.yef{bottom:109.692000pt;}
.y181{bottom:110.038533pt;}
.y85{bottom:110.259067pt;}
.y1b1{bottom:120.434533pt;}
.y1e9{bottom:124.150933pt;}
.y153{bottom:124.159333pt;}
.y123{bottom:124.530533pt;}
.y27e{bottom:124.657333pt;}
.yc1{bottom:125.184133pt;}
.y21e{bottom:125.188133pt;}
.y24d{bottom:125.419200pt;}
.yee{bottom:125.692000pt;}
.y180{bottom:126.038533pt;}
.y84{bottom:126.259067pt;}
.y27d{bottom:139.057333pt;}
.y1e8{bottom:140.154933pt;}
.y122{bottom:140.526533pt;}
.y33{bottom:140.812267pt;}
.y21d{bottom:141.188133pt;}
.y24c{bottom:141.419200pt;}
.yed{bottom:141.692000pt;}
.y17f{bottom:142.038533pt;}
.y83{bottom:142.259067pt;}
.y1b0{bottom:151.363600pt;}
.y27c{bottom:153.457333pt;}
.y32{bottom:153.479467pt;}
.y152{bottom:153.755067pt;}
.y1e7{bottom:156.150933pt;}
.y21c{bottom:157.188133pt;}
.yc0{bottom:157.188533pt;}
.y24b{bottom:157.419200pt;}
.yec{bottom:157.693067pt;}
.y17e{bottom:158.038533pt;}
.y81{bottom:158.259067pt;}
.y82{bottom:162.388267pt;}
.y1af{bottom:166.030267pt;}
.y31{bottom:166.146667pt;}
.y151{bottom:169.755067pt;}
.y121{bottom:171.452133pt;}
.y1e6{bottom:172.150933pt;}
.y27b{bottom:173.148000pt;}
.ybf{bottom:173.184533pt;}
.y21b{bottom:173.188133pt;}
.y24a{bottom:173.419200pt;}
.y80{bottom:174.259067pt;}
.y30{bottom:178.813867pt;}
.y1ae{bottom:180.696933pt;}
.y150{bottom:185.755067pt;}
.y27a{bottom:187.548000pt;}
.yeb{bottom:187.676267pt;}
.y1e5{bottom:188.150933pt;}
.y17d{bottom:188.967733pt;}
.ybe{bottom:189.184533pt;}
.y21a{bottom:189.188133pt;}
.y249{bottom:189.419200pt;}
.y7f{bottom:190.259067pt;}
.y2f{bottom:191.481067pt;}
.y14f{bottom:201.755067pt;}
.y279{bottom:201.948000pt;}
.y17c{bottom:203.634400pt;}
.y2e{bottom:204.148267pt;}
.y1e4{bottom:204.150933pt;}
.ybd{bottom:205.184533pt;}
.y219{bottom:205.188133pt;}
.y248{bottom:205.419200pt;}
.y120{bottom:206.122533pt;}
.y7e{bottom:206.259067pt;}
.y1ad{bottom:210.292667pt;}
.y2d{bottom:216.815467pt;}
.y14e{bottom:217.755067pt;}
.y17b{bottom:218.301067pt;}
.yea{bottom:218.605467pt;}
.y1e3{bottom:220.150933pt;}
.ybc{bottom:221.184533pt;}
.y217{bottom:221.188133pt;}
.y247{bottom:221.419200pt;}
.y278{bottom:221.638667pt;}
.y11f{bottom:222.122533pt;}
.y7d{bottom:222.259067pt;}
.y218{bottom:225.317333pt;}
.y1ac{bottom:226.292667pt;}
.y2c{bottom:229.482667pt;}
.y14d{bottom:233.755067pt;}
.ye9{bottom:234.605467pt;}
.y277{bottom:236.038667pt;}
.y1e2{bottom:236.150933pt;}
.ybb{bottom:237.184533pt;}
.y216{bottom:237.188133pt;}
.y246{bottom:237.419200pt;}
.y11e{bottom:238.122533pt;}
.y7c{bottom:238.259067pt;}
.y2b{bottom:242.149867pt;}
.y17a{bottom:247.900933pt;}
.ye8{bottom:250.605467pt;}
.y1e0{bottom:252.150933pt;}
.yba{bottom:253.184533pt;}
.y215{bottom:253.188133pt;}
.y245{bottom:253.423200pt;}
.y11d{bottom:254.122533pt;}
.y7b{bottom:254.259067pt;}
.y2a{bottom:254.817067pt;}
.y276{bottom:255.729333pt;}
.y1e1{bottom:256.280133pt;}
.y1ab{bottom:257.221867pt;}
.y179{bottom:263.896933pt;}
.y14c{bottom:264.684267pt;}
.ye7{bottom:266.605467pt;}
.y29{bottom:267.484267pt;}
.y1df{bottom:268.150933pt;}
.yb9{bottom:269.184533pt;}
.y214{bottom:269.188133pt;}
.y244{bottom:269.419200pt;}
.y11c{bottom:270.122533pt;}
.y275{bottom:270.129333pt;}
.y7a{bottom:270.259067pt;}
.y1aa{bottom:271.888533pt;}
.y178{bottom:279.896933pt;}
.y28{bottom:280.151467pt;}
.y14b{bottom:280.684267pt;}
.ye6{bottom:282.605467pt;}
.y1de{bottom:284.150933pt;}
.yb8{bottom:285.184533pt;}
.y213{bottom:285.188133pt;}
.y243{bottom:285.419200pt;}
.y11b{bottom:286.122533pt;}
.y79{bottom:286.259067pt;}
.y1a9{bottom:286.555200pt;}
.y274{bottom:289.820000pt;}
.y27{bottom:292.818667pt;}
.y177{bottom:295.896933pt;}
.y14a{bottom:296.684267pt;}
.ye5{bottom:298.605467pt;}
.y1dd{bottom:300.150800pt;}
.yb7{bottom:301.184533pt;}
.y212{bottom:301.188133pt;}
.y1a8{bottom:301.221867pt;}
.y242{bottom:301.419200pt;}
.y11a{bottom:302.126533pt;}
.y78{bottom:302.259200pt;}
.y273{bottom:304.220000pt;}
.y26{bottom:305.485867pt;}
.y176{bottom:311.896800pt;}
.y149{bottom:312.684267pt;}
.ye4{bottom:314.605467pt;}
.y1dc{bottom:316.154800pt;}
.yb6{bottom:317.184533pt;}
.y211{bottom:317.188133pt;}
.y241{bottom:317.419200pt;}
.y119{bottom:318.122533pt;}
.y25{bottom:318.153067pt;}
.y77{bottom:318.263200pt;}
.y272{bottom:318.620000pt;}
.y175{bottom:327.896800pt;}
.y148{bottom:328.684267pt;}
.ye3{bottom:330.605467pt;}
.y1a7{bottom:330.817733pt;}
.y24{bottom:330.820267pt;}
.y1db{bottom:332.150800pt;}
.yb5{bottom:333.184533pt;}
.y210{bottom:333.188133pt;}
.y240{bottom:333.413600pt;}
.y118{bottom:334.122533pt;}
.y76{bottom:334.259200pt;}
.y271{bottom:338.310667pt;}
.y23{bottom:343.487467pt;}
.y147{bottom:344.684267pt;}
.ye2{bottom:346.605467pt;}
.y1d9{bottom:348.150800pt;}
.yb3{bottom:349.184533pt;}
.y20f{bottom:349.188133pt;}
.y23f{bottom:349.409600pt;}
.y117{bottom:350.122533pt;}
.y75{bottom:350.263200pt;}
.y1da{bottom:352.280000pt;}
.y270{bottom:352.710667pt;}
.yb4{bottom:353.313733pt;}
.y22{bottom:356.154133pt;}
.y174{bottom:358.827333pt;}
.y146{bottom:360.684267pt;}
.y1a6{bottom:361.748133pt;}
.ye1{bottom:362.606533pt;}
.y1d8{bottom:364.150800pt;}
.yb2{bottom:365.184533pt;}
.y20e{bottom:365.188133pt;}
.y116{bottom:366.122533pt;}
.y74{bottom:366.263200pt;}
.y26f{bottom:372.401333pt;}
.y173{bottom:373.492667pt;}
.y4c{bottom:375.532400pt;}
.y1a5{bottom:376.413467pt;}
.y145{bottom:376.684267pt;}
.y1d7{bottom:380.150800pt;}
.y23e{bottom:380.533600pt;}
.yb1{bottom:381.184533pt;}
.y20d{bottom:381.188133pt;}
.y115{bottom:382.122533pt;}
.y73{bottom:382.259200pt;}
.y21{bottom:385.746667pt;}
.y26e{bottom:386.801333pt;}
.y172{bottom:388.159333pt;}
.y1a4{bottom:391.080133pt;}
.ye0{bottom:392.589733pt;}
.y1d6{bottom:396.150800pt;}
.y20c{bottom:397.188133pt;}
.yb0{bottom:397.188533pt;}
.y114{bottom:398.122533pt;}
.y72{bottom:398.259200pt;}
.y20{bottom:398.413867pt;}
.y26d{bottom:401.201333pt;}
.y1a3{bottom:405.746800pt;}
.y144{bottom:407.613467pt;}
.ydf{bottom:408.589733pt;}
.y1f{bottom:411.081067pt;}
.y1d5{bottom:412.150800pt;}
.yaf{bottom:413.184533pt;}
.y20b{bottom:413.188133pt;}
.y113{bottom:414.122533pt;}
.y71{bottom:414.259200pt;}
.y23d{bottom:415.204000pt;}
.y4b{bottom:417.548400pt;}
.y171{bottom:417.767067pt;}
.y1a2{bottom:420.413467pt;}
.y26c{bottom:420.892000pt;}
.y143{bottom:422.280133pt;}
.y1e{bottom:423.748267pt;}
.yde{bottom:424.589733pt;}
.y1d4{bottom:428.150800pt;}
.yae{bottom:429.184533pt;}
.y20a{bottom:429.188133pt;}
.y112{bottom:430.122533pt;}
.y70{bottom:430.259200pt;}
.y23c{bottom:431.204000pt;}
.y4a{bottom:431.543067pt;}
.y170{bottom:433.763067pt;}
.y1d{bottom:436.415467pt;}
.y142{bottom:436.946800pt;}
.y26b{bottom:440.582667pt;}
.ydd{bottom:440.589733pt;}
.y1d3{bottom:444.158800pt;}
.yac{bottom:445.184533pt;}
.y209{bottom:445.188133pt;}
.y49{bottom:445.537733pt;}
.y111{bottom:446.122533pt;}
.y6f{bottom:446.259200pt;}
.y23b{bottom:447.204000pt;}
.y1c{bottom:449.082667pt;}
.yad{bottom:449.313733pt;}
.y16f{bottom:449.759067pt;}
.y1a1{bottom:450.009333pt;}
.y141{bottom:451.613467pt;}
.ydc{bottom:456.589733pt;}
.y1d2{bottom:460.154800pt;}
.y26a{bottom:460.273333pt;}
.yab{bottom:461.184533pt;}
.y208{bottom:461.188133pt;}
.y1b{bottom:461.749867pt;}
.y110{bottom:462.126533pt;}
.y6e{bottom:462.259200pt;}
.y23a{bottom:463.204000pt;}
.y16e{bottom:465.755067pt;}
.y140{bottom:466.280133pt;}
.ydb{bottom:472.590800pt;}
.y1a{bottom:474.417067pt;}
.y1d1{bottom:476.150800pt;}
.y48{bottom:476.215067pt;}
.yaa{bottom:477.184533pt;}
.y207{bottom:477.188133pt;}
.y10f{bottom:478.122533pt;}
.y6d{bottom:478.259200pt;}
.y239{bottom:479.204000pt;}
.y269{bottom:479.964000pt;}
.y1a0{bottom:480.941067pt;}
.y16d{bottom:481.755067pt;}
.y19{bottom:487.084267pt;}
.y47{bottom:490.209733pt;}
.y1d0{bottom:492.150800pt;}
.ya9{bottom:493.184533pt;}
.y206{bottom:493.188133pt;}
.y10e{bottom:494.122533pt;}
.y6c{bottom:494.263200pt;}
.y268{bottom:494.364000pt;}
.y238{bottom:495.208000pt;}
.y19f{bottom:495.606400pt;}
.y13f{bottom:495.875867pt;}
.y16c{bottom:497.755067pt;}
.y18{bottom:499.751467pt;}
.yda{bottom:502.574000pt;}
.y46{bottom:504.204400pt;}
.y1cf{bottom:508.150800pt;}
.y267{bottom:508.764000pt;}
.ya8{bottom:509.184533pt;}
.y205{bottom:509.188133pt;}
.y10d{bottom:510.122533pt;}
.y6b{bottom:510.259200pt;}
.y19e{bottom:510.271733pt;}
.y13e{bottom:510.542533pt;}
.y237{bottom:511.204000pt;}
.y17{bottom:512.418667pt;}
.y16b{bottom:513.755067pt;}
.y45{bottom:518.199067pt;}
.yd9{bottom:518.574000pt;}
.y1cd{bottom:524.150800pt;}
.y19d{bottom:524.938400pt;}
.y16{bottom:525.085867pt;}
.ya7{bottom:525.184533pt;}
.y204{bottom:525.188133pt;}
.y13d{bottom:525.209200pt;}
.y10b{bottom:526.122533pt;}
.y6a{bottom:526.259200pt;}
.y236{bottom:527.204000pt;}
.y1ce{bottom:528.280000pt;}
.y266{bottom:528.454667pt;}
.y10c{bottom:530.251733pt;}
.y44{bottom:532.193733pt;}
.yd8{bottom:534.574000pt;}
.y15{bottom:537.753067pt;}
.y1cc{bottom:540.150800pt;}
.ya6{bottom:541.184533pt;}
.y203{bottom:541.188133pt;}
.y10a{bottom:542.122533pt;}
.y69{bottom:542.263200pt;}
.y235{bottom:543.204000pt;}
.y16a{bottom:544.684267pt;}
.y43{bottom:546.188400pt;}
.y265{bottom:548.145333pt;}
.y14{bottom:550.420267pt;}
.yd7{bottom:550.574000pt;}
.y19c{bottom:554.534267pt;}
.y13c{bottom:554.805067pt;}
.y1cb{bottom:556.150800pt;}
.ya5{bottom:557.184533pt;}
.y202{bottom:557.188133pt;}
.y109{bottom:558.122533pt;}
.y68{bottom:558.259200pt;}
.y169{bottom:560.684267pt;}
.y264{bottom:562.545333pt;}
.y13{bottom:563.087467pt;}
.yd6{bottom:566.574000pt;}
.y19b{bottom:570.534267pt;}
.y13b{bottom:570.805067pt;}
.y1ca{bottom:572.150800pt;}
.ya4{bottom:573.184533pt;}
.y201{bottom:573.188133pt;}
.y67{bottom:574.259200pt;}
.y234{bottom:574.322000pt;}
.y12{bottom:575.754133pt;}
.y42{bottom:576.193733pt;}
.y263{bottom:582.236000pt;}
.yd5{bottom:582.574000pt;}
.y19a{bottom:586.534267pt;}
.y13a{bottom:586.805067pt;}
.y1c9{bottom:588.150800pt;}
.y108{bottom:589.051600pt;}
.ya3{bottom:589.184533pt;}
.y200{bottom:589.188133pt;}
.y66{bottom:590.259200pt;}
.y168{bottom:591.613467pt;}
.y41{bottom:593.740400pt;}
.yd4{bottom:598.574000pt;}
.y262{bottom:601.926667pt;}
.y199{bottom:602.534267pt;}
.y139{bottom:602.805067pt;}
.y11{bottom:602.947200pt;}
.y1c8{bottom:604.150800pt;}
.y40{bottom:604.193733pt;}
.y107{bottom:605.051600pt;}
.ya1{bottom:605.184533pt;}
.y1ff{bottom:605.188133pt;}
.y233{bottom:606.208000pt;}
.y65{bottom:606.259200pt;}
.y167{bottom:606.280133pt;}
.ya2{bottom:609.313733pt;}
.y10{bottom:615.614400pt;}
.y261{bottom:616.326667pt;}
.y198{bottom:618.534267pt;}
.y138{bottom:618.805067pt;}
.y1c7{bottom:620.150800pt;}
.y166{bottom:620.946800pt;}
.ya0{bottom:621.184533pt;}
.y1fe{bottom:621.192133pt;}
.y3f{bottom:621.740400pt;}
.y232{bottom:622.204000pt;}
.y64{bottom:622.259200pt;}
.y106{bottom:622.396933pt;}
.yf{bottom:628.281600pt;}
.yd3{bottom:628.565333pt;}
.y197{bottom:634.534267pt;}
.y137{bottom:634.805067pt;}
.y260{bottom:636.017333pt;}
.y1c6{bottom:636.150800pt;}
.y9f{bottom:637.184533pt;}
.y1fd{bottom:637.188133pt;}
.y231{bottom:638.200000pt;}
.y63{bottom:638.267200pt;}
.y105{bottom:638.392933pt;}
.ye{bottom:640.948800pt;}
.y196{bottom:650.534267pt;}
.y165{bottom:650.546533pt;}
.y136{bottom:650.805067pt;}
.y1c5{bottom:652.150800pt;}
.y9e{bottom:653.184533pt;}
.y1fc{bottom:653.188133pt;}
.yd{bottom:653.616000pt;}
.y230{bottom:654.196000pt;}
.y62{bottom:654.263200pt;}
.y104{bottom:654.388933pt;}
.y25f{bottom:655.708000pt;}
.yd2{bottom:659.490933pt;}
.yc{bottom:666.283200pt;}
.y195{bottom:666.534267pt;}
.y164{bottom:666.542533pt;}
.y135{bottom:666.805067pt;}
.y3e{bottom:667.763200pt;}
.y1c4{bottom:668.150800pt;}
.y9d{bottom:669.184533pt;}
.y1fb{bottom:669.188133pt;}
.y22f{bottom:670.196000pt;}
.y61{bottom:670.259200pt;}
.y103{bottom:670.384933pt;}
.y25e{bottom:675.398667pt;}
.yb{bottom:678.950400pt;}
.y194{bottom:682.534267pt;}
.y163{bottom:682.542533pt;}
.y134{bottom:682.805067pt;}
.y3d{bottom:683.542667pt;}
.y1c3{bottom:684.150933pt;}
.y9c{bottom:685.184533pt;}
.y1fa{bottom:685.188133pt;}
.y22e{bottom:686.196000pt;}
.y60{bottom:686.259067pt;}
.y102{bottom:686.384933pt;}
.y25d{bottom:689.798667pt;}
.yd1{bottom:690.427600pt;}
.ya{bottom:691.617600pt;}
.y193{bottom:698.538133pt;}
.y133{bottom:698.805067pt;}
.y1c2{bottom:700.150933pt;}
.y9b{bottom:701.184533pt;}
.y1f9{bottom:701.188133pt;}
.y22d{bottom:702.196000pt;}
.y5f{bottom:702.259067pt;}
.y101{bottom:702.384933pt;}
.y9{bottom:704.284800pt;}
.y3c{bottom:707.101867pt;}
.y25c{bottom:709.489333pt;}
.y162{bottom:713.471733pt;}
.y192{bottom:714.534133pt;}
.y1c1{bottom:716.150933pt;}
.y8{bottom:716.952000pt;}
.y9a{bottom:717.184533pt;}
.y1f8{bottom:717.188133pt;}
.y22c{bottom:718.196000pt;}
.y5e{bottom:718.259067pt;}
.y100{bottom:718.384933pt;}
.yd0{bottom:721.353200pt;}
.y3b{bottom:722.881333pt;}
.y25b{bottom:723.889333pt;}
.y161{bottom:728.138400pt;}
.y7{bottom:729.619200pt;}
.y132{bottom:729.734133pt;}
.y191{bottom:730.534133pt;}
.y1c0{bottom:732.150933pt;}
.y98{bottom:733.184533pt;}
.y1f7{bottom:733.188133pt;}
.y22b{bottom:734.196000pt;}
.y5d{bottom:734.259067pt;}
.yff{bottom:734.384933pt;}
.y99{bottom:737.313867pt;}
.y25a{bottom:738.289333pt;}
.y6{bottom:742.286400pt;}
.y3a{bottom:746.440400pt;}
.y190{bottom:746.534133pt;}
.y1bf{bottom:748.150933pt;}
.y97{bottom:749.184533pt;}
.y1f6{bottom:749.188133pt;}
.y22a{bottom:750.196000pt;}
.y5c{bottom:750.259067pt;}
.yfe{bottom:750.384933pt;}
.ycf{bottom:752.278800pt;}
.y5{bottom:754.953600pt;}
.y160{bottom:757.734133pt;}
.y259{bottom:757.980000pt;}
.y131{bottom:760.663200pt;}
.y39{bottom:762.219867pt;}
.y18f{bottom:762.534133pt;}
.y1be{bottom:764.150933pt;}
.y96{bottom:765.184533pt;}
.y1f5{bottom:765.188133pt;}
.y229{bottom:766.196000pt;}
.y5b{bottom:766.259067pt;}
.yfd{bottom:766.384933pt;}
.y4{bottom:767.620800pt;}
.yce{bottom:768.274800pt;}
.y258{bottom:772.380000pt;}
.y15f{bottom:773.734133pt;}
.y130{bottom:775.329867pt;}
.y18e{bottom:778.534133pt;}
.y1bd{bottom:780.150933pt;}
.y3{bottom:780.287467pt;}
.y95{bottom:781.184533pt;}
.y1f4{bottom:781.188133pt;}
.y228{bottom:782.196000pt;}
.y5a{bottom:782.263067pt;}
.yfc{bottom:782.384933pt;}
.ycd{bottom:784.274800pt;}
.y257{bottom:786.780000pt;}
.y15e{bottom:789.734133pt;}
.y12f{bottom:790.001067pt;}
.y18d{bottom:794.537733pt;}
.y1bc{bottom:796.150933pt;}
.y94{bottom:797.184533pt;}
.y1f3{bottom:797.188133pt;}
.y227{bottom:798.196000pt;}
.y59{bottom:798.259067pt;}
.ycc{bottom:800.274800pt;}
.y15d{bottom:805.734133pt;}
.y93{bottom:813.184667pt;}
.y1f2{bottom:813.188267pt;}
.yfb{bottom:813.324133pt;}
.y226{bottom:814.196000pt;}
.y58{bottom:814.259067pt;}
.ycb{bottom:816.274800pt;}
.y256{bottom:818.754933pt;}
.y12e{bottom:819.592400pt;}
.y18c{bottom:825.463333pt;}
.y1bb{bottom:825.757200pt;}
.y289{bottom:827.634000pt;}
.y37{bottom:828.990533pt;}
.y92{bottom:829.184667pt;}
.y1f1{bottom:829.188267pt;}
.y225{bottom:830.196000pt;}
.y57{bottom:830.259067pt;}
.yca{bottom:832.274800pt;}
.y12d{bottom:834.259067pt;}
.y15c{bottom:836.663200pt;}
.y288{bottom:842.034000pt;}
.y91{bottom:845.184667pt;}
.yfa{bottom:845.192133pt;}
.y1f0{bottom:845.192267pt;}
.y224{bottom:846.196000pt;}
.y56{bottom:846.259067pt;}
.yc9{bottom:848.274800pt;}
.y12c{bottom:848.925733pt;}
.y36{bottom:851.430533pt;}
.y15b{bottom:852.663200pt;}
.y18b{bottom:856.392400pt;}
.y1ba{bottom:856.687600pt;}
.y90{bottom:861.184667pt;}
.yf9{bottom:861.188133pt;}
.y1ef{bottom:861.188267pt;}
.y287{bottom:861.724667pt;}
.y223{bottom:862.196000pt;}
.y55{bottom:862.259067pt;}
.y12b{bottom:863.592400pt;}
.yc8{bottom:864.274800pt;}
.y18a{bottom:871.059067pt;}
.y1b9{bottom:871.352933pt;}
.y8e{bottom:877.184667pt;}
.yf8{bottom:877.188133pt;}
.y1ee{bottom:877.188267pt;}
.y252{bottom:877.192267pt;}
.y54{bottom:878.259067pt;}
.yc7{bottom:880.274800pt;}
.y8f{bottom:881.313867pt;}
.y286{bottom:881.415333pt;}
.y15a{bottom:883.596400pt;}
.y189{bottom:885.725733pt;}
.y1b8{bottom:886.019600pt;}
.y35{bottom:886.107867pt;}
.yf7{bottom:893.188133pt;}
.y1ed{bottom:893.188267pt;}
.y8d{bottom:893.188667pt;}
.y12a{bottom:893.192267pt;}
.y222{bottom:893.320267pt;}
.y53{bottom:894.259067pt;}
.yc6{bottom:896.274800pt;}
.y159{bottom:898.261733pt;}
.y1b7{bottom:900.686267pt;}
.y285{bottom:901.106000pt;}
.y8c{bottom:909.184667pt;}
.yf6{bottom:909.188133pt;}
.y129{bottom:909.188267pt;}
.y52{bottom:910.259067pt;}
.yc5{bottom:912.279467pt;}
.y34{bottom:912.763867pt;}
.y158{bottom:912.927067pt;}
.y188{bottom:915.321467pt;}
.y284{bottom:920.796667pt;}
.y8b{bottom:925.184667pt;}
.yf5{bottom:925.188133pt;}
.y128{bottom:925.188267pt;}
.y255{bottom:925.192667pt;}
.y51{bottom:926.259067pt;}
.y157{bottom:927.592400pt;}
.y1b6{bottom:929.337200pt;}
.y187{bottom:929.988133pt;}
.y283{bottom:935.196667pt;}
.y8a{bottom:941.184667pt;}
.yf4{bottom:941.188133pt;}
.y127{bottom:941.188267pt;}
.y50{bottom:942.259067pt;}
.yc4{bottom:942.262667pt;}
.y186{bottom:944.654800pt;}
.y282{bottom:954.887333pt;}
.y89{bottom:957.184667pt;}
.yf3{bottom:957.188133pt;}
.y126{bottom:957.188267pt;}
.y251{bottom:957.192267pt;}
.y254{bottom:957.197067pt;}
.y185{bottom:959.321467pt;}
.y1b5{bottom:959.322000pt;}
.y88{bottom:973.184667pt;}
.yf2{bottom:973.188133pt;}
.y4f{bottom:973.188267pt;}
.y253{bottom:973.193067pt;}
.y1b4{bottom:973.987333pt;}
.y184{bottom:973.988133pt;}
.y281{bottom:974.578000pt;}
.y38{bottom:989.047867pt;}
.y4e{bottom:1009.060133pt;}
.y4d{bottom:1021.531467pt;}
.hc{height:21.120000pt;}
.h14{height:23.972027pt;}
.h11{height:28.738667pt;}
.h10{height:29.328000pt;}
.h3{height:33.160000pt;}
.h6{height:34.486400pt;}
.h5{height:35.193600pt;}
.hd{height:35.328000pt;}
.hf{height:35.370667pt;}
.h15{height:35.761600pt;}
.he{height:36.096000pt;}
.h16{height:37.536000pt;}
.hb{height:37.581333pt;}
.h4{height:38.352000pt;}
.h9{height:41.066667pt;}
.h13{height:41.118400pt;}
.h12{height:41.961600pt;}
.h2{height:44.213333pt;}
.ha{height:45.120000pt;}
.h8{height:48.576000pt;}
.h7{height:76.704000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:64.266667pt;}
.x1b{left:79.508667pt;}
.x35{left:88.300133pt;}
.xd{left:91.797867pt;}
.x15{left:101.439600pt;}
.x9{left:105.711733pt;}
.x6{left:107.275733pt;}
.x36{left:112.300133pt;}
.xf{left:113.325867pt;}
.x7{left:116.457067pt;}
.x17{left:118.655600pt;}
.xc{left:138.750133pt;}
.x13{left:140.959600pt;}
.x18{left:142.826267pt;}
.x12{left:155.711600pt;}
.x16{left:177.044933pt;}
.x4{left:182.233467pt;}
.x14{left:183.572933pt;}
.x1d{left:185.439600pt;}
.xa{left:194.522000pt;}
.xb{left:215.469467pt;}
.x11{left:225.524933pt;}
.x5{left:233.120133pt;}
.x10{left:248.863600pt;}
.xe{left:264.778400pt;}
.x3{left:357.278667pt;}
.x33{left:373.556133pt;}
.x34{left:385.030533pt;}
.x1f{left:405.892267pt;}
.x1e{left:421.025600pt;}
.x19{left:424.215467pt;}
.x28{left:438.933467pt;}
.x24{left:442.567733pt;}
.x2c{left:443.905467pt;}
.x29{left:446.533600pt;}
.x25{left:450.175333pt;}
.x20{left:462.310667pt;}
.x21{left:469.963200pt;}
.x2{left:500.599200pt;}
.x2f{left:528.835600pt;}
.x30{left:540.295600pt;}
.x2a{left:565.051333pt;}
.x2b{left:576.218667pt;}
.x1a{left:581.862133pt;}
.x8{left:606.763733pt;}
.x2d{left:621.204800pt;}
.x2e{left:632.410667pt;}
.x26{left:654.157467pt;}
.x22{left:659.369733pt;}
.x27{left:662.092267pt;}
.x23{left:667.042133pt;}
.x1{left:708.115733pt;}
.x31{left:719.222667pt;}
.x32{left:726.894533pt;}
}




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