
    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_77ff8e03345fbcb915797041.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_09ccc4687cf6f4bf0f79bebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987021;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_bec15b3d71d1c42e7047a457.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038574;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_09b883d7e3b18bd820d149ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_1f61470ce548145507f37aa0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_636864f40ee6f2f2d5abb15f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_01d84ccf7dd3fbbaa299b24f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.074000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_96e394aa17a83353a920564a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9eb5ca90ae7b15afc7910d5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976615;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_550bc40fd010c6913570c6cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010742;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_048e8e441713d432c6416ad3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978036;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5bdadb930ab679332aadea3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.721191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_60655c164e6292c83f087077.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989746;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;}
.m7e{transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.245124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245124,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245301,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.245526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245526,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.245624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245624,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.245737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245737,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245830,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m11{transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246151,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246452,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.246699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246699,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247270,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247876,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248699,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248904,0.000000,0.000000,0.250000,0,0);}
.mcd{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);}
.m74{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248974,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m66{transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);}
.mcc{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);}
.m2b{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.md1{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);}
.m48{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);}
.mb9{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m9f{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251409,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251438,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251708,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251847,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251907,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252486,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.252615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252615,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252658,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252689,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252858,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.meb{transform:matrix(0.252981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252981,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.253349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253349,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.253589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253589,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.253773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253773,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253947,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.253957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253957,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.254127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254127,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.254289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254289,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.254354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254354,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.254428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254428,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.254476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254476,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.254541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254541,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.254543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254543,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.254548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254548,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.254737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254737,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254821,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254859,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.254961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254961,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.062700px;}
.ls1{letter-spacing:0.125400px;}
.ls8{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.188100px;}
.ls6{letter-spacing:0.250800px;}
.ls10{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.313500px;}
.lse{letter-spacing:0.376200px;}
.ls4{letter-spacing:0.382470px;}
.ls13{letter-spacing:0.438900px;}
.lsf{letter-spacing:0.501600px;}
.ls12{letter-spacing:0.564300px;}
.lsd{letter-spacing:0.689700px;}
.lsa{letter-spacing:0.815100px;}
.ls11{letter-spacing:0.940500px;}
.lsb{letter-spacing:1.065900px;}
.ls15{letter-spacing:1.128600px;}
.ls9{letter-spacing:1.191300px;}
.lsc{letter-spacing:1.379400px;}
.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;}
}
.ws1{word-spacing:-23.925000px;}
.ws4{word-spacing:-17.242500px;}
.ws23{word-spacing:-16.740900px;}
.ws2{word-spacing:-15.990000px;}
.ws22{word-spacing:-15.675000px;}
.wsc{word-spacing:-15.612300px;}
.ws24{word-spacing:-15.361500px;}
.wsb{word-spacing:-14.734500px;}
.ws10{word-spacing:-14.671800px;}
.ws1a{word-spacing:-13.284000px;}
.ws5{word-spacing:-13.014000px;}
.ws9{word-spacing:-4.389000px;}
.ws11{word-spacing:-3.699300px;}
.wsf{word-spacing:-2.442000px;}
.ws1c{word-spacing:-1.943700px;}
.ws15{word-spacing:-1.379400px;}
.ws14{word-spacing:-1.191300px;}
.ws8{word-spacing:-1.065900px;}
.ws1d{word-spacing:-0.940500px;}
.ws16{word-spacing:-0.815100px;}
.ws17{word-spacing:-0.689700px;}
.ws1f{word-spacing:-0.627000px;}
.ws1e{word-spacing:-0.564300px;}
.ws19{word-spacing:-0.501600px;}
.ws21{word-spacing:-0.438900px;}
.ws18{word-spacing:-0.376200px;}
.wsa{word-spacing:-0.313500px;}
.ws1b{word-spacing:-0.270000px;}
.wse{word-spacing:-0.250800px;}
.wsd{word-spacing:-0.188100px;}
.ws13{word-spacing:-0.162000px;}
.ws7{word-spacing:-0.125400px;}
.ws3{word-spacing:-0.066000px;}
.ws6{word-spacing:-0.062700px;}
.ws12{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:467.874000px;}
._19{margin-left:-10.376850px;}
._18{margin-left:-9.279600px;}
._1{margin-left:-7.218000px;}
._3{margin-left:-5.304600px;}
._0{margin-left:-3.618000px;}
._2{margin-left:-1.818000px;}
._4{width:1.305000px;}
._5{width:2.679300px;}
._10{width:3.740580px;}
._8{width:4.978380px;}
._a{width:6.088170px;}
._b{width:7.254390px;}
._6{width:8.821590px;}
._7{width:10.082460px;}
._9{width:11.147760px;}
._17{width:12.259350px;}
._1b{width:14.232900px;}
._1d{width:17.016780px;}
._1e{width:18.195540px;}
._21{width:23.387100px;}
._22{width:24.628560px;}
._1f{width:27.105210px;}
._1a{width:41.914950px;}
._16{width:44.623590px;}
._20{width:69.690450px;}
._15{width:71.275800px;}
._1c{width:81.321900px;}
._23{width:462.528000px;}
._11{width:475.794000px;}
._14{width:480.612000px;}
._13{width:482.790000px;}
._12{width:496.056000px;}
._e{width:504.702000px;}
._d{width:506.880000px;}
._f{width:508.134000px;}
._c{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fs8{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:47.337000px;}
.y258{bottom:91.891350px;}
.y257{bottom:104.491350px;}
.y256{bottom:117.091350px;}
.y86{bottom:126.278700px;}
.yce{bottom:127.261200px;}
.y34{bottom:127.482600px;}
.y196{bottom:127.541850px;}
.yeb{bottom:128.814450px;}
.y6d{bottom:132.680700px;}
.y157{bottom:133.116300px;}
.y10a{bottom:134.878500px;}
.y23c{bottom:136.534125px;}
.y1ba{bottom:136.952850px;}
.y1f1{bottom:139.029750px;}
.y255{bottom:142.291350px;}
.y5b{bottom:146.492325px;}
.y210{bottom:147.076650px;}
.y6c{bottom:149.177700px;}
.y85{bottom:151.778700px;}
.ycd{bottom:152.761200px;}
.y33{bottom:152.982600px;}
.y195{bottom:153.041850px;}
.ya8{bottom:153.476100px;}
.yea{bottom:154.314450px;}
.y254{bottom:154.891350px;}
.y156{bottom:158.616300px;}
.y23b{bottom:159.027750px;}
.y109{bottom:160.378500px;}
.y1b9{bottom:162.452850px;}
.y1f0{bottom:164.532975px;}
.y20f{bottom:169.570275px;}
.y5a{bottom:171.995550px;}
.ya7{bottom:172.976100px;}
.y176{bottom:173.539800px;}
.y84{bottom:177.278700px;}
.ycc{bottom:178.261200px;}
.y32{bottom:178.482600px;}
.y194{bottom:178.535400px;}
.y23a{bottom:181.527750px;}
.y155{bottom:184.116300px;}
.ye9{bottom:185.642550px;}
.y108{bottom:185.878500px;}
.y1ef{bottom:187.026600px;}
.y1b8{bottom:187.952850px;}
.ya6{bottom:192.476100px;}
.y175{bottom:199.039950px;}
.y20e{bottom:201.719700px;}
.y83{bottom:202.778700px;}
.ycb{bottom:203.761200px;}
.y193{bottom:204.038625px;}
.y154{bottom:209.616300px;}
.y107{bottom:211.378500px;}
.y130{bottom:212.787300px;}
.y1b7{bottom:213.452850px;}
.y237{bottom:216.535650px;}
.y59{bottom:218.268150px;}
.y1ee{bottom:219.317100px;}
.y31{bottom:223.970700px;}
.y20d{bottom:224.213325px;}
.y174{bottom:224.368050px;}
.y82{bottom:228.278700px;}
.yca{bottom:229.261200px;}
.y192{bottom:229.541850px;}
.y12f{bottom:232.287300px;}
.y153{bottom:235.116300px;}
.y106{bottom:236.878500px;}
.y1b6{bottom:238.952850px;}
.y236{bottom:239.035650px;}
.ye8{bottom:243.700725px;}
.y58{bottom:243.768150px;}
.y1ed{bottom:244.817100px;}
.y30{bottom:249.470700px;}
.yc9{bottom:254.757975px;}
.y191{bottom:255.041850px;}
.y212{bottom:257.844600px;}
.y152{bottom:260.616300px;}
.y235{bottom:261.527400px;}
.y105{bottom:262.378500px;}
.y1ec{bottom:267.314250px;}
.y93{bottom:268.671525px;}
.ye7{bottom:269.203950px;}
.y57{bottom:269.268150px;}
.y2f{bottom:274.970700px;}
.y1b5{bottom:279.063150px;}
.yc8{bottom:280.261200px;}
.y211{bottom:280.361175px;}
.y173{bottom:280.911600px;}
.y151{bottom:286.116300px;}
.y190{bottom:286.369950px;}
.y104{bottom:287.875275px;}
.y92{bottom:294.174750px;}
.ye6{bottom:294.703950px;}
.y56{bottom:294.764925px;}
.y234{bottom:299.554950px;}
.y2e{bottom:300.470700px;}
.y1eb{bottom:302.614350px;}
.y1b4{bottom:304.563150px;}
.yc7{bottom:305.761200px;}
.y172{bottom:306.411600px;}
.y20c{bottom:311.272275px;}
.y150{bottom:311.616300px;}
.y126{bottom:312.378450px;}
.y103{bottom:313.378500px;}
.y91{bottom:319.677975px;}
.ye5{bottom:320.203950px;}
.y55{bottom:320.268150px;}
.y233{bottom:320.559450px;}
.y2d{bottom:325.967475px;}
.y1ea{bottom:328.120800px;}
.y1b3{bottom:330.059925px;}
.yc6{bottom:331.261200px;}
.y171{bottom:331.911600px;}
.y20b{bottom:333.765900px;}
.y14f{bottom:337.116300px;}
.y125{bottom:337.878450px;}
.y102{bottom:338.878500px;}
.y232{bottom:341.563950px;}
.y18b{bottom:344.720700px;}
.y90{bottom:345.181200px;}
.ye4{bottom:345.703950px;}
.y54{bottom:345.768150px;}
.y1e9{bottom:350.614425px;}
.y2c{bottom:351.470700px;}
.y1b2{bottom:355.563150px;}
.y20a{bottom:356.302200px;}
.yc5{bottom:356.761200px;}
.y170{bottom:357.411600px;}
.y14e{bottom:362.616300px;}
.y124{bottom:363.378450px;}
.y101{bottom:364.378500px;}
.y18a{bottom:370.220700px;}
.y8f{bottom:370.681200px;}
.ye3{bottom:371.203950px;}
.y53{bottom:371.264925px;}
.y2b{bottom:376.970700px;}
.y231{bottom:377.130525px;}
.y209{bottom:378.795825px;}
.y1b1{bottom:381.063150px;}
.yc4{bottom:382.261200px;}
.y16f{bottom:382.911600px;}
.y1e8{bottom:384.284325px;}
.y14d{bottom:388.116300px;}
.y123{bottom:388.878450px;}
.y189{bottom:395.720700px;}
.y8e{bottom:396.181200px;}
.ye2{bottom:396.703950px;}
.y52{bottom:396.768150px;}
.y230{bottom:399.624150px;}
.y2a{bottom:402.465000px;}
.y1b0{bottom:406.563150px;}
.y16e{bottom:408.411600px;}
.y6b{bottom:408.911250px;}
.y100{bottom:409.670250px;}
.y1e7{bottom:409.787550px;}
.y14c{bottom:413.616300px;}
.y208{bottom:413.939175px;}
.y122{bottom:414.378450px;}
.y3{bottom:417.619350px;}
.y188{bottom:421.207800px;}
.y8d{bottom:421.681200px;}
.y22f{bottom:422.133375px;}
.ye1{bottom:422.203950px;}
.y51{bottom:422.268150px;}
.yc3{bottom:427.591800px;}
.y1af{bottom:432.063150px;}
.y1e6{bottom:432.319500px;}
.y16d{bottom:433.911600px;}
.yff{bottom:435.170250px;}
.y207{bottom:436.432800px;}
.y14b{bottom:439.116300px;}
.y121{bottom:439.878450px;}
.y22e{bottom:444.627000px;}
.y12e{bottom:445.487850px;}
.y187{bottom:446.711025px;}
.y8c{bottom:447.181200px;}
.ye0{bottom:447.703950px;}
.y50{bottom:447.759300px;}
.y29{bottom:449.458650px;}
.yc2{bottom:453.091800px;}
.y1e5{bottom:454.813125px;}
.y1ae{bottom:457.563150px;}
.y16c{bottom:459.411600px;}
.yfe{bottom:460.670250px;}
.y14a{bottom:464.616300px;}
.y120{bottom:465.378450px;}
.y6a{bottom:466.152300px;}
.y186{bottom:472.214250px;}
.y206{bottom:472.344225px;}
.y8b{bottom:472.681200px;}
.ydf{bottom:473.203950px;}
.y4f{bottom:473.262525px;}
.y28{bottom:474.958650px;}
.yc1{bottom:478.588575px;}
.y22d{bottom:480.193575px;}
.y69{bottom:482.649300px;}
.y1ad{bottom:483.063150px;}
.yfd{bottom:486.170250px;}
.y1e4{bottom:490.113225px;}
.y149{bottom:490.116300px;}
.y11f{bottom:490.875225px;}
.y205{bottom:494.837850px;}
.y185{bottom:497.717475px;}
.y8a{bottom:498.181200px;}
.yde{bottom:498.703950px;}
.y27{bottom:500.452200px;}
.y22c{bottom:502.687200px;}
.y16b{bottom:503.465625px;}
.yc0{bottom:504.091800px;}
.y1ac{bottom:508.561050px;}
.y12c{bottom:511.585950px;}
.yfc{bottom:511.670250px;}
.y1d{bottom:514.038600px;}
.y148{bottom:515.616300px;}
.y1e3{bottom:515.616450px;}
.y11e{bottom:516.378450px;}
.y4e{bottom:518.516250px;}
.y184{bottom:523.220700px;}
.y89{bottom:523.681200px;}
.ydd{bottom:524.203950px;}
.y22b{bottom:525.187200px;}
.y26{bottom:525.955425px;}
.y204{bottom:528.147225px;}
.y16a{bottom:528.968850px;}
.ybf{bottom:529.591800px;}
.y12b{bottom:531.085950px;}
.y1c{bottom:536.532225px;}
.y1e2{bottom:538.110075px;}
.y11d{bottom:541.878450px;}
.yfb{bottom:542.998350px;}
.y4d{bottom:544.016250px;}
.y22a{bottom:547.701750px;}
.y183{bottom:548.720700px;}
.y88{bottom:549.181200px;}
.ydc{bottom:549.703950px;}
.y203{bottom:550.640850px;}
.y25{bottom:551.458650px;}
.y1ab{bottom:552.889950px;}
.y169{bottom:554.472075px;}
.ybe{bottom:555.091800px;}
.ya5{bottom:559.230150px;}
.y147{bottom:561.714525px;}
.y11c{bottom:567.378450px;}
.y4c{bottom:569.513025px;}
.y2{bottom:569.926650px;}
.y1b{bottom:571.033725px;}
.y1e1{bottom:571.779975px;}
.y202{bottom:573.134475px;}
.y182{bottom:574.220700px;}
.y87{bottom:574.681200px;}
.y24{bottom:576.958650px;}
.y1aa{bottom:578.389950px;}
.y168{bottom:579.975300px;}
.y229{bottom:583.268325px;}
.y146{bottom:587.217750px;}
.yf9{bottom:590.962800px;}
.y11b{bottom:592.878450px;}
.ydb{bottom:593.496300px;}
.y1a{bottom:593.527350px;}
.y4b{bottom:595.016250px;}
.y201{bottom:595.628100px;}
.y1e0{bottom:597.283200px;}
.y181{bottom:599.720700px;}
.ybd{bottom:600.885600px;}
.y23{bottom:602.458650px;}
.y1a9{bottom:603.889950px;}
.y167{bottom:605.475300px;}
.y228{bottom:605.761950px;}
.y145{bottom:612.717750px;}
.yf8{bottom:616.462800px;}
.y200{bottom:618.144375px;}
.y11a{bottom:618.368775px;}
.yda{bottom:618.996300px;}
.y1df{bottom:619.776825px;}
.y4a{bottom:620.516250px;}
.y81{bottom:621.083250px;}
.y1{bottom:622.441650px;}
.y9d{bottom:622.909200px;}
.y180{bottom:625.220700px;}
.ybc{bottom:626.385600px;}
.y22{bottom:627.958650px;}
.y19{bottom:628.028850px;}
.y227{bottom:628.255575px;}
.y1a8{bottom:629.389950px;}
.y166{bottom:630.975300px;}
.y144{bottom:638.217750px;}
.yf7{bottom:641.962800px;}
.y1de{bottom:642.270450px;}
.y119{bottom:643.872000px;}
.yd9{bottom:644.496300px;}
.y49{bottom:646.016250px;}
.y80{bottom:646.583250px;}
.y9c{bottom:648.409200px;}
.y1ff{bottom:650.168400px;}
.y17f{bottom:650.720700px;}
.y226{bottom:650.749200px;}
.ybb{bottom:651.882375px;}
.y1a7{bottom:654.886725px;}
.y165{bottom:656.475300px;}
.y21{bottom:659.286600px;}
.y18{bottom:662.530350px;}
.y143{bottom:663.717750px;}
.yf6{bottom:667.462800px;}
.y118{bottom:669.375225px;}
.y11{bottom:669.485175px;}
.yd8{bottom:669.996300px;}
.y48{bottom:671.513025px;}
.y7f{bottom:672.083250px;}
.y1fe{bottom:672.662025px;}
.y9b{bottom:673.909200px;}
.y1cb{bottom:674.667450px;}
.y17e{bottom:676.220700px;}
.y1dd{bottom:677.366775px;}
.yba{bottom:677.385600px;}
.y1a6{bottom:680.389950px;}
.y164{bottom:681.975300px;}
.y17{bottom:685.023975px;}
.y239{bottom:688.400175px;}
.y142{bottom:689.214525px;}
.yf5{bottom:692.962800px;}
.y117{bottom:694.878450px;}
.y10{bottom:694.988400px;}
.y1fd{bottom:695.155650px;}
.yd7{bottom:695.496300px;}
.y47{bottom:697.016250px;}
.y7e{bottom:697.583250px;}
.y9a{bottom:699.409200px;}
.y1dc{bottom:699.860400px;}
.y1ca{bottom:700.167450px;}
.y17d{bottom:701.720700px;}
.yb9{bottom:702.885600px;}
.y1a5{bottom:705.889950px;}
.y163{bottom:707.475300px;}
.y238{bottom:710.893800px;}
.y141{bottom:714.717750px;}
.yf4{bottom:718.462800px;}
.y116{bottom:720.378450px;}
.yf{bottom:720.485175px;}
.yd6{bottom:720.996300px;}
.y1db{bottom:722.385750px;}
.y46{bottom:722.516250px;}
.y16{bottom:722.523600px;}
.y7d{bottom:723.083250px;}
.y12d{bottom:724.076550px;}
.y99{bottom:724.909200px;}
.y1c9{bottom:725.667450px;}
.y17c{bottom:727.220700px;}
.yb8{bottom:728.385600px;}
.y1fc{bottom:728.950950px;}
.y1a4{bottom:731.389950px;}
.y4{bottom:732.272850px;}
.y36{bottom:733.840350px;}
.y162{bottom:738.803400px;}
.y140{bottom:740.217750px;}
.yf3{bottom:743.962800px;}
.y1da{bottom:744.879375px;}
.y15{bottom:745.017225px;}
.y115{bottom:745.878450px;}
.ye{bottom:745.988400px;}
.y225{bottom:746.460750px;}
.yd5{bottom:746.496300px;}
.y45{bottom:748.016250px;}
.y7c{bottom:748.583250px;}
.y98{bottom:750.410850px;}
.y68{bottom:750.847500px;}
.y1c7{bottom:751.161900px;}
.y1c8{bottom:751.167450px;}
.y1fb{bottom:751.455000px;}
.y17b{bottom:752.720700px;}
.y35{bottom:753.334350px;}
.yb7{bottom:753.879000px;}
.y1a3{bottom:756.889950px;}
.y13f{bottom:765.717750px;}
.y1d9{bottom:767.373000px;}
.y224{bottom:768.967125px;}
.yf2{bottom:769.462800px;}
.y253{bottom:770.073900px;}
.y114{bottom:771.378450px;}
.yd{bottom:771.472125px;}
.yd4{bottom:771.996150px;}
.y44{bottom:773.516250px;}
.y1fa{bottom:773.948625px;}
.y7b{bottom:774.083100px;}
.y17a{bottom:778.220550px;}
.yb6{bottom:779.382225px;}
.y14{bottom:779.518725px;}
.y1a2{bottom:782.389950px;}
.y12a{bottom:782.460450px;}
.y1c6{bottom:785.897700px;}
.y252{bottom:788.073900px;}
.y1d8{bottom:789.866625px;}
.y13e{bottom:791.217750px;}
.y223{bottom:791.460750px;}
.y67{bottom:791.614200px;}
.yf1{bottom:794.962800px;}
.y97{bottom:795.993750px;}
.y113{bottom:796.878450px;}
.yc{bottom:796.975350px;}
.y161{bottom:797.136000px;}
.yd3{bottom:797.496150px;}
.y43{bottom:799.016250px;}
.y7a{bottom:799.583100px;}
.y129{bottom:801.960450px;}
.y13{bottom:802.012350px;}
.y179{bottom:803.720550px;}
.yb5{bottom:804.885450px;}
.y251{bottom:806.073900px;}
.y1a1{bottom:807.889950px;}
.y216{bottom:809.100975px;}
.y1c4{bottom:811.392300px;}
.y1c5{bottom:811.397700px;}
.y1d7{bottom:812.360250px;}
.y222{bottom:813.977775px;}
.y13d{bottom:816.717750px;}
.y66{bottom:817.114200px;}
.yf0{bottom:820.462800px;}
.y128{bottom:821.460450px;}
.y96{bottom:821.493750px;}
.y112{bottom:822.378450px;}
.yb{bottom:822.478575px;}
.y160{bottom:822.636000px;}
.yd2{bottom:822.989700px;}
.y250{bottom:824.073900px;}
.y42{bottom:824.516250px;}
.y79{bottom:825.083100px;}
.y178{bottom:829.220550px;}
.yb4{bottom:830.385450px;}
.y215{bottom:831.594600px;}
.y1a0{bottom:833.389950px;}
.y240{bottom:834.722700px;}
.y12{bottom:836.512350px;}
.y1d6{bottom:837.854100px;}
.y65{bottom:842.614200px;}
.yef{bottom:845.962800px;}
.y221{bottom:846.001800px;}
.y1c3{bottom:846.128100px;}
.y95{bottom:846.993750px;}
.y111{bottom:847.878450px;}
.ya{bottom:847.981800px;}
.y15f{bottom:848.136000px;}
.yd1{bottom:848.492925px;}
.y41{bottom:850.016250px;}
.y78{bottom:850.583100px;}
.y214{bottom:854.094600px;}
.y177{bottom:854.720550px;}
.y23f{bottom:855.727200px;}
.yb3{bottom:855.885450px;}
.y19f{bottom:858.889950px;}
.y13c{bottom:862.819350px;}
.y1e{bottom:863.087250px;}
.y64{bottom:868.114200px;}
.y220{bottom:868.495425px;}
.yee{bottom:871.462800px;}
.y1c2{bottom:871.622550px;}
.y1d5{bottom:871.994250px;}
.y94{bottom:872.493750px;}
.y110{bottom:873.378450px;}
.y9{bottom:873.485025px;}
.y15e{bottom:873.636000px;}
.yd0{bottom:873.996150px;}
.y40{bottom:875.516250px;}
.y213{bottom:876.599550px;}
.y23e{bottom:876.731700px;}
.yb2{bottom:881.385450px;}
.y77{bottom:881.911200px;}
.y19e{bottom:884.389950px;}
.y13b{bottom:888.319350px;}
.y21f{bottom:890.989050px;}
.y63{bottom:893.607750px;}
.y18f{bottom:893.614350px;}
.yed{bottom:896.962800px;}
.y1d4{bottom:897.502125px;}
.y23d{bottom:897.736200px;}
.y10f{bottom:898.878450px;}
.y8{bottom:898.988250px;}
.y15d{bottom:899.136000px;}
.ycf{bottom:899.496150px;}
.y3f{bottom:901.016250px;}
.y24f{bottom:904.053900px;}
.y1c1{bottom:906.358350px;}
.y19d{bottom:909.889950px;}
.y1f9{bottom:911.888625px;}
.yb1{bottom:912.713550px;}
.y13a{bottom:913.816125px;}
.ya4{bottom:919.107750px;}
.y62{bottom:919.110975px;}
.y18e{bottom:919.114350px;}
.y1d3{bottom:919.995750px;}
.y24e{bottom:922.053900px;}
.yec{bottom:922.462800px;}
.y10e{bottom:924.378450px;}
.y7{bottom:924.485025px;}
.y15c{bottom:924.629550px;}
.y3e{bottom:926.516250px;}
.y21e{bottom:926.555625px;}
.y1bf{bottom:931.852950px;}
.y1c0{bottom:931.858350px;}
.y24a{bottom:932.456325px;}
.y19c{bottom:935.397075px;}
.y1f8{bottom:937.391850px;}
.y139{bottom:939.319350px;}
.y24d{bottom:940.053900px;}
.y1d2{bottom:942.489375px;}
.ya3{bottom:944.610975px;}
.y61{bottom:944.614200px;}
.y18d{bottom:944.614350px;}
.y76{bottom:944.626050px;}
.y21d{bottom:949.049250px;}
.y10d{bottom:949.878450px;}
.y6{bottom:949.988250px;}
.y15b{bottom:950.132775px;}
.y3d{bottom:952.016250px;}
.y249{bottom:954.949950px;}
.y24c{bottom:958.053900px;}
.y1f7{bottom:959.899725px;}
.y138{bottom:964.819350px;}
.y1be{bottom:966.588750px;}
.yfa{bottom:970.110975px;}
.y60{bottom:970.114200px;}
.yb0{bottom:970.114350px;}
.y75{bottom:970.126050px;}
.y21c{bottom:971.557200px;}
.y10c{bottom:975.371475px;}
.y15a{bottom:975.636000px;}
.y24b{bottom:976.053900px;}
.y248{bottom:977.443575px;}
.y3c{bottom:977.516250px;}
.y19b{bottom:979.208700px;}
.y1d1{bottom:979.905600px;}
.y137{bottom:990.319350px;}
.y1bd{bottom:992.089275px;}
.y21b{bottom:994.050825px;}
.y1f6{bottom:994.823625px;}
.y5f{bottom:995.614200px;}
.yaf{bottom:995.614350px;}
.y74{bottom:995.626050px;}
.y5{bottom:997.802550px;}
.y247{bottom:999.937200px;}
.y159{bottom:1001.136000px;}
.y3b{bottom:1003.016250px;}
.y19a{bottom:1004.708700px;}
.y1d0{bottom:1005.399525px;}
.y136{bottom:1015.819350px;}
.y1f5{bottom:1020.326850px;}
.y10b{bottom:1021.111125px;}
.y5e{bottom:1021.114200px;}
.yae{bottom:1021.114350px;}
.y73{bottom:1021.126050px;}
.y246{bottom:1022.430825px;}
.y21a{bottom:1026.074850px;}
.y158{bottom:1026.636000px;}
.y1bc{bottom:1029.819000px;}
.y199{bottom:1030.208700px;}
.y3a{bottom:1034.344350px;}
.y1cf{bottom:1040.699625px;}
.y135{bottom:1041.319350px;}
.y1f4{bottom:1042.820475px;}
.y5d{bottom:1046.607750px;}
.ya2{bottom:1046.614200px;}
.yad{bottom:1046.614350px;}
.y72{bottom:1046.626050px;}
.y219{bottom:1048.579275px;}
.y1bb{bottom:1055.319000px;}
.y198{bottom:1055.708700px;}
.y245{bottom:1058.624400px;}
.y1f3{bottom:1065.314100px;}
.y1ce{bottom:1066.202850px;}
.y134{bottom:1066.816125px;}
.y218{bottom:1071.072900px;}
.y5c{bottom:1072.110975px;}
.ya1{bottom:1072.114200px;}
.yac{bottom:1072.114350px;}
.y71{bottom:1072.126050px;}
.y244{bottom:1081.118025px;}
.y197{bottom:1081.208700px;}
.y1cd{bottom:1088.704350px;}
.y133{bottom:1092.319350px;}
.ya0{bottom:1097.610900px;}
.y39{bottom:1097.614200px;}
.yab{bottom:1097.614350px;}
.y70{bottom:1097.626050px;}
.y1f2{bottom:1100.614200px;}
.y243{bottom:1103.611650px;}
.y217{bottom:1103.614200px;}
.y132{bottom:1117.819350px;}
.y9f{bottom:1123.114125px;}
.y38{bottom:1123.114200px;}
.yaa{bottom:1123.114350px;}
.y6f{bottom:1123.126050px;}
.y242{bottom:1126.105275px;}
.y1cc{bottom:1126.120575px;}
.y127{bottom:1147.755000px;}
.y241{bottom:1148.598900px;}
.y18c{bottom:1148.613075px;}
.y37{bottom:1148.614200px;}
.ya9{bottom:1148.614350px;}
.y9e{bottom:1148.617350px;}
.y6e{bottom:1148.626050px;}
.y131{bottom:1149.147600px;}
.y1f{bottom:1194.940800px;}
.h1c{height:34.125000px;}
.h10{height:41.133998px;}
.hf{height:43.875000px;}
.h18{height:44.575781px;}
.h9{height:45.325500px;}
.ha{height:47.145996px;}
.h8{height:48.642000px;}
.h1b{height:48.750000px;}
.hb{height:49.434000px;}
.h17{height:50.941650px;}
.h5{height:50.943750px;}
.h16{height:50.952150px;}
.h6{height:50.956650px;}
.h19{height:50.965950px;}
.he{height:50.966550px;}
.h15{height:50.969550px;}
.h13{height:50.970150px;}
.h14{height:50.971650px;}
.h11{height:50.979150px;}
.h7{height:51.008850px;}
.h1a{height:51.770361px;}
.h12{height:52.110352px;}
.hc{height:52.921080px;}
.hd{height:55.704000px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:34.015800px;}
.xd{left:35.109375px;}
.x8{left:40.859625px;}
.xb{left:44.949375px;}
.x4{left:54.757800px;}
.xa{left:64.614000px;}
.xe{left:68.934375px;}
.x23{left:77.598450px;}
.xc{left:87.584250px;}
.x7{left:91.581750px;}
.xf{left:95.610000px;}
.x6{left:100.541400px;}
.x9{left:102.897750px;}
.x1{left:106.019250px;}
.x2{left:121.139250px;}
.x25{left:162.588450px;}
.x12{left:170.078700px;}
.x20{left:191.334000px;}
.x24{left:198.693450px;}
.x26{left:209.565300px;}
.x5{left:213.874050px;}
.x19{left:216.713550px;}
.x21{left:218.338500px;}
.x1b{left:236.107800px;}
.x16{left:238.768050px;}
.x17{left:277.135050px;}
.x13{left:279.801900px;}
.x15{left:286.630800px;}
.x18{left:308.390550px;}
.x1f{left:327.867900px;}
.x1e{left:367.761000px;}
.x14{left:373.329900px;}
.x1d{left:376.050300px;}
.x1c{left:468.666000px;}
.x10{left:573.462300px;}
.x3{left:647.713800px;}
.x22{left:808.218750px;}
.x1a{left:829.339050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.055733pt;}
.ls1{letter-spacing:0.111467pt;}
.ls8{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.167200pt;}
.ls6{letter-spacing:0.222933pt;}
.ls10{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.278667pt;}
.lse{letter-spacing:0.334400pt;}
.ls4{letter-spacing:0.339973pt;}
.ls13{letter-spacing:0.390133pt;}
.lsf{letter-spacing:0.445867pt;}
.ls12{letter-spacing:0.501600pt;}
.lsd{letter-spacing:0.613067pt;}
.lsa{letter-spacing:0.724533pt;}
.ls11{letter-spacing:0.836000pt;}
.lsb{letter-spacing:0.947467pt;}
.ls15{letter-spacing:1.003200pt;}
.ls9{letter-spacing:1.058933pt;}
.lsc{letter-spacing:1.226133pt;}
.ws1{word-spacing:-21.266667pt;}
.ws4{word-spacing:-15.326667pt;}
.ws23{word-spacing:-14.880800pt;}
.ws2{word-spacing:-14.213333pt;}
.ws22{word-spacing:-13.933333pt;}
.wsc{word-spacing:-13.877600pt;}
.ws24{word-spacing:-13.654667pt;}
.wsb{word-spacing:-13.097333pt;}
.ws10{word-spacing:-13.041600pt;}
.ws1a{word-spacing:-11.808000pt;}
.ws5{word-spacing:-11.568000pt;}
.ws9{word-spacing:-3.901333pt;}
.ws11{word-spacing:-3.288267pt;}
.wsf{word-spacing:-2.170667pt;}
.ws1c{word-spacing:-1.727733pt;}
.ws15{word-spacing:-1.226133pt;}
.ws14{word-spacing:-1.058933pt;}
.ws8{word-spacing:-0.947467pt;}
.ws1d{word-spacing:-0.836000pt;}
.ws16{word-spacing:-0.724533pt;}
.ws17{word-spacing:-0.613067pt;}
.ws1f{word-spacing:-0.557333pt;}
.ws1e{word-spacing:-0.501600pt;}
.ws19{word-spacing:-0.445867pt;}
.ws21{word-spacing:-0.390133pt;}
.ws18{word-spacing:-0.334400pt;}
.wsa{word-spacing:-0.278667pt;}
.ws1b{word-spacing:-0.240000pt;}
.wse{word-spacing:-0.222933pt;}
.wsd{word-spacing:-0.167200pt;}
.ws13{word-spacing:-0.144000pt;}
.ws7{word-spacing:-0.111467pt;}
.ws3{word-spacing:-0.058667pt;}
.ws6{word-spacing:-0.055733pt;}
.ws12{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:415.888000pt;}
._19{margin-left:-9.223867pt;}
._18{margin-left:-8.248533pt;}
._1{margin-left:-6.416000pt;}
._3{margin-left:-4.715200pt;}
._0{margin-left:-3.216000pt;}
._2{margin-left:-1.616000pt;}
._4{width:1.160000pt;}
._5{width:2.381600pt;}
._10{width:3.324960pt;}
._8{width:4.425227pt;}
._a{width:5.411707pt;}
._b{width:6.448347pt;}
._6{width:7.841413pt;}
._7{width:8.962187pt;}
._9{width:9.909120pt;}
._17{width:10.897200pt;}
._1b{width:12.651467pt;}
._1d{width:15.126027pt;}
._1e{width:16.173813pt;}
._21{width:20.788533pt;}
._22{width:21.892053pt;}
._1f{width:24.093520pt;}
._1a{width:37.257733pt;}
._16{width:39.665413pt;}
._20{width:61.947067pt;}
._15{width:63.356267pt;}
._1c{width:72.286133pt;}
._23{width:411.136000pt;}
._11{width:422.928000pt;}
._14{width:427.210667pt;}
._13{width:429.146667pt;}
._12{width:440.938667pt;}
._e{width:448.624000pt;}
._d{width:450.560000pt;}
._f{width:451.674667pt;}
._c{width:462.352000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:42.077333pt;}
.y258{bottom:81.681200pt;}
.y257{bottom:92.881200pt;}
.y256{bottom:104.081200pt;}
.y86{bottom:112.247733pt;}
.yce{bottom:113.121067pt;}
.y34{bottom:113.317867pt;}
.y196{bottom:113.370533pt;}
.yeb{bottom:114.501733pt;}
.y6d{bottom:117.938400pt;}
.y157{bottom:118.325600pt;}
.y10a{bottom:119.892000pt;}
.y23c{bottom:121.363667pt;}
.y1ba{bottom:121.735867pt;}
.y1f1{bottom:123.582000pt;}
.y255{bottom:126.481200pt;}
.y5b{bottom:130.215400pt;}
.y210{bottom:130.734800pt;}
.y6c{bottom:132.602400pt;}
.y85{bottom:134.914400pt;}
.ycd{bottom:135.787733pt;}
.y33{bottom:135.984533pt;}
.y195{bottom:136.037200pt;}
.ya8{bottom:136.423200pt;}
.yea{bottom:137.168400pt;}
.y254{bottom:137.681200pt;}
.y156{bottom:140.992267pt;}
.y23b{bottom:141.358000pt;}
.y109{bottom:142.558667pt;}
.y1b9{bottom:144.402533pt;}
.y1f0{bottom:146.251533pt;}
.y20f{bottom:150.729133pt;}
.y5a{bottom:152.884933pt;}
.ya7{bottom:153.756533pt;}
.y176{bottom:154.257600pt;}
.y84{bottom:157.581067pt;}
.ycc{bottom:158.454400pt;}
.y32{bottom:158.651200pt;}
.y194{bottom:158.698133pt;}
.y23a{bottom:161.358000pt;}
.y155{bottom:163.658933pt;}
.ye9{bottom:165.015600pt;}
.y108{bottom:165.225333pt;}
.y1ef{bottom:166.245867pt;}
.y1b8{bottom:167.069200pt;}
.ya6{bottom:171.089867pt;}
.y175{bottom:176.924400pt;}
.y20e{bottom:179.306400pt;}
.y83{bottom:180.247733pt;}
.ycb{bottom:181.121067pt;}
.y193{bottom:181.367667pt;}
.y154{bottom:186.325600pt;}
.y107{bottom:187.892000pt;}
.y130{bottom:189.144267pt;}
.y1b7{bottom:189.735867pt;}
.y237{bottom:192.476133pt;}
.y59{bottom:194.016133pt;}
.y1ee{bottom:194.948533pt;}
.y31{bottom:199.085067pt;}
.y20d{bottom:199.300733pt;}
.y174{bottom:199.438267pt;}
.y82{bottom:202.914400pt;}
.yca{bottom:203.787733pt;}
.y192{bottom:204.037200pt;}
.y12f{bottom:206.477600pt;}
.y153{bottom:208.992267pt;}
.y106{bottom:210.558667pt;}
.y1b6{bottom:212.402533pt;}
.y236{bottom:212.476133pt;}
.ye8{bottom:216.622867pt;}
.y58{bottom:216.682800pt;}
.y1ed{bottom:217.615200pt;}
.y30{bottom:221.751733pt;}
.yc9{bottom:226.451533pt;}
.y191{bottom:226.703867pt;}
.y212{bottom:229.195200pt;}
.y152{bottom:231.658933pt;}
.y235{bottom:232.468800pt;}
.y105{bottom:233.225333pt;}
.y1ec{bottom:237.612667pt;}
.y93{bottom:238.819133pt;}
.ye7{bottom:239.292400pt;}
.y57{bottom:239.349467pt;}
.y2f{bottom:244.418400pt;}
.y1b5{bottom:248.056133pt;}
.yc8{bottom:249.121067pt;}
.y211{bottom:249.209933pt;}
.y173{bottom:249.699200pt;}
.y151{bottom:254.325600pt;}
.y190{bottom:254.551067pt;}
.y104{bottom:255.889133pt;}
.y92{bottom:261.488667pt;}
.ye6{bottom:261.959067pt;}
.y56{bottom:262.013267pt;}
.y234{bottom:266.271067pt;}
.y2e{bottom:267.085067pt;}
.y1eb{bottom:268.990533pt;}
.y1b4{bottom:270.722800pt;}
.yc7{bottom:271.787733pt;}
.y172{bottom:272.365867pt;}
.y20c{bottom:276.686467pt;}
.y150{bottom:276.992267pt;}
.y126{bottom:277.669733pt;}
.y103{bottom:278.558667pt;}
.y91{bottom:284.158200pt;}
.ye5{bottom:284.625733pt;}
.y55{bottom:284.682800pt;}
.y233{bottom:284.941733pt;}
.y2d{bottom:289.748867pt;}
.y1ea{bottom:291.662933pt;}
.y1b3{bottom:293.386600pt;}
.yc6{bottom:294.454400pt;}
.y171{bottom:295.032533pt;}
.y20b{bottom:296.680800pt;}
.y14f{bottom:299.658933pt;}
.y125{bottom:300.336400pt;}
.y102{bottom:301.225333pt;}
.y232{bottom:303.612400pt;}
.y18b{bottom:306.418400pt;}
.y90{bottom:306.827733pt;}
.ye4{bottom:307.292400pt;}
.y54{bottom:307.349467pt;}
.y1e9{bottom:311.657267pt;}
.y2c{bottom:312.418400pt;}
.y1b2{bottom:316.056133pt;}
.y20a{bottom:316.713067pt;}
.yc5{bottom:317.121067pt;}
.y170{bottom:317.699200pt;}
.y14e{bottom:322.325600pt;}
.y124{bottom:323.003067pt;}
.y101{bottom:323.892000pt;}
.y18a{bottom:329.085067pt;}
.y8f{bottom:329.494400pt;}
.ye3{bottom:329.959067pt;}
.y53{bottom:330.013267pt;}
.y2b{bottom:335.085067pt;}
.y231{bottom:335.227133pt;}
.y209{bottom:336.707400pt;}
.y1b1{bottom:338.722800pt;}
.yc4{bottom:339.787733pt;}
.y16f{bottom:340.365867pt;}
.y1e8{bottom:341.586067pt;}
.y14d{bottom:344.992267pt;}
.y123{bottom:345.669733pt;}
.y189{bottom:351.751733pt;}
.y8e{bottom:352.161067pt;}
.ye2{bottom:352.625733pt;}
.y52{bottom:352.682800pt;}
.y230{bottom:355.221467pt;}
.y2a{bottom:357.746667pt;}
.y1b0{bottom:361.389467pt;}
.y16e{bottom:363.032533pt;}
.y6b{bottom:363.476667pt;}
.y100{bottom:364.151333pt;}
.y1e7{bottom:364.255600pt;}
.y14c{bottom:367.658933pt;}
.y208{bottom:367.945933pt;}
.y122{bottom:368.336400pt;}
.y3{bottom:371.217200pt;}
.y188{bottom:374.406933pt;}
.y8d{bottom:374.827733pt;}
.y22f{bottom:375.229667pt;}
.ye1{bottom:375.292400pt;}
.y51{bottom:375.349467pt;}
.yc3{bottom:380.081600pt;}
.y1af{bottom:384.056133pt;}
.y1e6{bottom:384.284000pt;}
.y16d{bottom:385.699200pt;}
.yff{bottom:386.818000pt;}
.y207{bottom:387.940267pt;}
.y14b{bottom:390.325600pt;}
.y121{bottom:391.003067pt;}
.y22e{bottom:395.224000pt;}
.y12e{bottom:395.989200pt;}
.y187{bottom:397.076467pt;}
.y8c{bottom:397.494400pt;}
.ye0{bottom:397.959067pt;}
.y50{bottom:398.008267pt;}
.y29{bottom:399.518800pt;}
.yc2{bottom:402.748267pt;}
.y1e5{bottom:404.278333pt;}
.y1ae{bottom:406.722800pt;}
.y16c{bottom:408.365867pt;}
.yfe{bottom:409.484667pt;}
.y14a{bottom:412.992267pt;}
.y120{bottom:413.669733pt;}
.y6a{bottom:414.357600pt;}
.y186{bottom:419.746000pt;}
.y206{bottom:419.861533pt;}
.y8b{bottom:420.161067pt;}
.ydf{bottom:420.625733pt;}
.y4f{bottom:420.677800pt;}
.y28{bottom:422.185467pt;}
.yc1{bottom:425.412067pt;}
.y22d{bottom:426.838733pt;}
.y69{bottom:429.021600pt;}
.y1ad{bottom:429.389467pt;}
.yfd{bottom:432.151333pt;}
.y1e4{bottom:435.656200pt;}
.y149{bottom:435.658933pt;}
.y11f{bottom:436.333533pt;}
.y205{bottom:439.855867pt;}
.y185{bottom:442.415533pt;}
.y8a{bottom:442.827733pt;}
.yde{bottom:443.292400pt;}
.y27{bottom:444.846400pt;}
.y22c{bottom:446.833067pt;}
.y16b{bottom:447.525000pt;}
.yc0{bottom:448.081600pt;}
.y1ac{bottom:452.054267pt;}
.y12c{bottom:454.743067pt;}
.yfc{bottom:454.818000pt;}
.y1d{bottom:456.923200pt;}
.y148{bottom:458.325600pt;}
.y1e3{bottom:458.325733pt;}
.y11e{bottom:459.003067pt;}
.y4e{bottom:460.903333pt;}
.y184{bottom:465.085067pt;}
.y89{bottom:465.494400pt;}
.ydd{bottom:465.959067pt;}
.y22b{bottom:466.833067pt;}
.y26{bottom:467.515933pt;}
.y204{bottom:469.464200pt;}
.y16a{bottom:470.194533pt;}
.ybf{bottom:470.748267pt;}
.y12b{bottom:472.076400pt;}
.y1c{bottom:476.917533pt;}
.y1e2{bottom:478.320067pt;}
.y11d{bottom:481.669733pt;}
.yfb{bottom:482.665200pt;}
.y4d{bottom:483.570000pt;}
.y22a{bottom:486.846000pt;}
.y183{bottom:487.751733pt;}
.y88{bottom:488.161067pt;}
.ydc{bottom:488.625733pt;}
.y203{bottom:489.458533pt;}
.y25{bottom:490.185467pt;}
.y1ab{bottom:491.457733pt;}
.y169{bottom:492.864067pt;}
.ybe{bottom:493.414933pt;}
.ya5{bottom:497.093467pt;}
.y147{bottom:499.301800pt;}
.y11c{bottom:504.336400pt;}
.y4c{bottom:506.233800pt;}
.y2{bottom:506.601467pt;}
.y1b{bottom:507.585533pt;}
.y1e1{bottom:508.248867pt;}
.y202{bottom:509.452867pt;}
.y182{bottom:510.418400pt;}
.y87{bottom:510.827733pt;}
.y24{bottom:512.852133pt;}
.y1aa{bottom:514.124400pt;}
.y168{bottom:515.533600pt;}
.y229{bottom:518.460733pt;}
.y146{bottom:521.971333pt;}
.yf9{bottom:525.300267pt;}
.y11b{bottom:527.003067pt;}
.ydb{bottom:527.552267pt;}
.y1a{bottom:527.579867pt;}
.y4b{bottom:528.903333pt;}
.y201{bottom:529.447200pt;}
.y1e0{bottom:530.918400pt;}
.y181{bottom:533.085067pt;}
.ybd{bottom:534.120533pt;}
.y23{bottom:535.518800pt;}
.y1a9{bottom:536.791067pt;}
.y167{bottom:538.200267pt;}
.y228{bottom:538.455067pt;}
.y145{bottom:544.638000pt;}
.yf8{bottom:547.966933pt;}
.y200{bottom:549.461667pt;}
.y11a{bottom:549.661133pt;}
.yda{bottom:550.218933pt;}
.y1df{bottom:550.912733pt;}
.y4a{bottom:551.570000pt;}
.y81{bottom:552.074000pt;}
.y1{bottom:553.281467pt;}
.y9d{bottom:553.697067pt;}
.y180{bottom:555.751733pt;}
.ybc{bottom:556.787200pt;}
.y22{bottom:558.185467pt;}
.y19{bottom:558.247867pt;}
.y227{bottom:558.449400pt;}
.y1a8{bottom:559.457733pt;}
.y166{bottom:560.866933pt;}
.y144{bottom:567.304667pt;}
.yf7{bottom:570.633600pt;}
.y1de{bottom:570.907067pt;}
.y119{bottom:572.330667pt;}
.yd9{bottom:572.885600pt;}
.y49{bottom:574.236667pt;}
.y80{bottom:574.740667pt;}
.y9c{bottom:576.363733pt;}
.y1ff{bottom:577.927467pt;}
.y17f{bottom:578.418400pt;}
.y226{bottom:578.443733pt;}
.ybb{bottom:579.451000pt;}
.y1a7{bottom:582.121533pt;}
.y165{bottom:583.533600pt;}
.y21{bottom:586.032533pt;}
.y18{bottom:588.915867pt;}
.y143{bottom:589.971333pt;}
.yf6{bottom:593.300267pt;}
.y118{bottom:595.000200pt;}
.y11{bottom:595.097933pt;}
.yd8{bottom:595.552267pt;}
.y48{bottom:596.900467pt;}
.y7f{bottom:597.407333pt;}
.y1fe{bottom:597.921800pt;}
.y9b{bottom:599.030400pt;}
.y1cb{bottom:599.704400pt;}
.y17e{bottom:601.085067pt;}
.y1dd{bottom:602.103800pt;}
.yba{bottom:602.120533pt;}
.y1a6{bottom:604.791067pt;}
.y164{bottom:606.200267pt;}
.y17{bottom:608.910200pt;}
.y239{bottom:611.911267pt;}
.y142{bottom:612.635133pt;}
.yf5{bottom:615.966933pt;}
.y117{bottom:617.669733pt;}
.y10{bottom:617.767467pt;}
.y1fd{bottom:617.916133pt;}
.yd7{bottom:618.218933pt;}
.y47{bottom:619.570000pt;}
.y7e{bottom:620.074000pt;}
.y9a{bottom:621.697067pt;}
.y1dc{bottom:622.098133pt;}
.y1ca{bottom:622.371067pt;}
.y17d{bottom:623.751733pt;}
.yb9{bottom:624.787200pt;}
.y1a5{bottom:627.457733pt;}
.y163{bottom:628.866933pt;}
.y238{bottom:631.905600pt;}
.y141{bottom:635.304667pt;}
.yf4{bottom:638.633600pt;}
.y116{bottom:640.336400pt;}
.yf{bottom:640.431267pt;}
.yd6{bottom:640.885600pt;}
.y1db{bottom:642.120667pt;}
.y46{bottom:642.236667pt;}
.y16{bottom:642.243200pt;}
.y7d{bottom:642.740667pt;}
.y12d{bottom:643.623600pt;}
.y99{bottom:644.363733pt;}
.y1c9{bottom:645.037733pt;}
.y17c{bottom:646.418400pt;}
.yb8{bottom:647.453867pt;}
.y1fc{bottom:647.956400pt;}
.y1a4{bottom:650.124400pt;}
.y4{bottom:650.909200pt;}
.y36{bottom:652.302533pt;}
.y162{bottom:656.714133pt;}
.y140{bottom:657.971333pt;}
.yf3{bottom:661.300267pt;}
.y1da{bottom:662.115000pt;}
.y15{bottom:662.237533pt;}
.y115{bottom:663.003067pt;}
.ye{bottom:663.100800pt;}
.y225{bottom:663.520667pt;}
.yd5{bottom:663.552267pt;}
.y45{bottom:664.903333pt;}
.y7c{bottom:665.407333pt;}
.y98{bottom:667.031867pt;}
.y68{bottom:667.420000pt;}
.y1c7{bottom:667.699467pt;}
.y1c8{bottom:667.704400pt;}
.y1fb{bottom:667.960000pt;}
.y17b{bottom:669.085067pt;}
.y35{bottom:669.630533pt;}
.yb7{bottom:670.114667pt;}
.y1a3{bottom:672.791067pt;}
.y13f{bottom:680.638000pt;}
.y1d9{bottom:682.109333pt;}
.y224{bottom:683.526333pt;}
.yf2{bottom:683.966933pt;}
.y253{bottom:684.510133pt;}
.y114{bottom:685.669733pt;}
.yd{bottom:685.753000pt;}
.yd4{bottom:686.218800pt;}
.y44{bottom:687.570000pt;}
.y1fa{bottom:687.954333pt;}
.y7b{bottom:688.073867pt;}
.y17a{bottom:691.751600pt;}
.yb6{bottom:692.784200pt;}
.y14{bottom:692.905533pt;}
.y1a2{bottom:695.457733pt;}
.y12a{bottom:695.520400pt;}
.y1c6{bottom:698.575733pt;}
.y252{bottom:700.510133pt;}
.y1d8{bottom:702.103667pt;}
.y13e{bottom:703.304667pt;}
.y223{bottom:703.520667pt;}
.y67{bottom:703.657067pt;}
.yf1{bottom:706.633600pt;}
.y97{bottom:707.550000pt;}
.y113{bottom:708.336400pt;}
.yc{bottom:708.422533pt;}
.y161{bottom:708.565333pt;}
.yd3{bottom:708.885467pt;}
.y43{bottom:710.236667pt;}
.y7a{bottom:710.740533pt;}
.y129{bottom:712.853733pt;}
.y13{bottom:712.899867pt;}
.y179{bottom:714.418267pt;}
.yb5{bottom:715.453733pt;}
.y251{bottom:716.510133pt;}
.y1a1{bottom:718.124400pt;}
.y216{bottom:719.200867pt;}
.y1c4{bottom:721.237600pt;}
.y1c5{bottom:721.242400pt;}
.y1d7{bottom:722.098000pt;}
.y222{bottom:723.535800pt;}
.y13d{bottom:725.971333pt;}
.y66{bottom:726.323733pt;}
.yf0{bottom:729.300267pt;}
.y128{bottom:730.187067pt;}
.y96{bottom:730.216667pt;}
.y112{bottom:731.003067pt;}
.yb{bottom:731.092067pt;}
.y160{bottom:731.232000pt;}
.yd2{bottom:731.546400pt;}
.y250{bottom:732.510133pt;}
.y42{bottom:732.903333pt;}
.y79{bottom:733.407200pt;}
.y178{bottom:737.084933pt;}
.yb4{bottom:738.120400pt;}
.y215{bottom:739.195200pt;}
.y1a0{bottom:740.791067pt;}
.y240{bottom:741.975733pt;}
.y12{bottom:743.566533pt;}
.y1d6{bottom:744.759200pt;}
.y65{bottom:748.990400pt;}
.yef{bottom:751.966933pt;}
.y221{bottom:752.001600pt;}
.y1c3{bottom:752.113867pt;}
.y95{bottom:752.883333pt;}
.y111{bottom:753.669733pt;}
.ya{bottom:753.761600pt;}
.y15f{bottom:753.898667pt;}
.yd1{bottom:754.215933pt;}
.y41{bottom:755.570000pt;}
.y78{bottom:756.073867pt;}
.y214{bottom:759.195200pt;}
.y177{bottom:759.751600pt;}
.y23f{bottom:760.646400pt;}
.yb3{bottom:760.787067pt;}
.y19f{bottom:763.457733pt;}
.y13c{bottom:766.950533pt;}
.y1e{bottom:767.188667pt;}
.y64{bottom:771.657067pt;}
.y220{bottom:771.995933pt;}
.yee{bottom:774.633600pt;}
.y1c2{bottom:774.775600pt;}
.y1d5{bottom:775.106000pt;}
.y94{bottom:775.550000pt;}
.y110{bottom:776.336400pt;}
.y9{bottom:776.431133pt;}
.y15e{bottom:776.565333pt;}
.yd0{bottom:776.885467pt;}
.y40{bottom:778.236667pt;}
.y213{bottom:779.199600pt;}
.y23e{bottom:779.317067pt;}
.yb2{bottom:783.453733pt;}
.y77{bottom:783.921067pt;}
.y19e{bottom:786.124400pt;}
.y13b{bottom:789.617200pt;}
.y21f{bottom:791.990267pt;}
.y63{bottom:794.318000pt;}
.y18f{bottom:794.323867pt;}
.yed{bottom:797.300267pt;}
.y1d4{bottom:797.779667pt;}
.y23d{bottom:797.987733pt;}
.y10f{bottom:799.003067pt;}
.y8{bottom:799.100667pt;}
.y15d{bottom:799.232000pt;}
.ycf{bottom:799.552133pt;}
.y3f{bottom:800.903333pt;}
.y24f{bottom:803.603467pt;}
.y1c1{bottom:805.651867pt;}
.y19d{bottom:808.791067pt;}
.y1f9{bottom:810.567667pt;}
.yb1{bottom:811.300933pt;}
.y13a{bottom:812.281000pt;}
.ya4{bottom:816.984667pt;}
.y62{bottom:816.987533pt;}
.y18e{bottom:816.990533pt;}
.y1d3{bottom:817.774000pt;}
.y24e{bottom:819.603467pt;}
.yec{bottom:819.966933pt;}
.y10e{bottom:821.669733pt;}
.y7{bottom:821.764467pt;}
.y15c{bottom:821.892933pt;}
.y3e{bottom:823.570000pt;}
.y21e{bottom:823.605000pt;}
.y1bf{bottom:828.313733pt;}
.y1c0{bottom:828.318533pt;}
.y24a{bottom:828.850067pt;}
.y19c{bottom:831.464067pt;}
.y1f8{bottom:833.237200pt;}
.y139{bottom:834.950533pt;}
.y24d{bottom:835.603467pt;}
.y1d2{bottom:837.768333pt;}
.ya3{bottom:839.654200pt;}
.y61{bottom:839.657067pt;}
.y18d{bottom:839.657200pt;}
.y76{bottom:839.667600pt;}
.y21d{bottom:843.599333pt;}
.y10d{bottom:844.336400pt;}
.y6{bottom:844.434000pt;}
.y15b{bottom:844.562467pt;}
.y3d{bottom:846.236667pt;}
.y249{bottom:848.844400pt;}
.y24c{bottom:851.603467pt;}
.y1f7{bottom:853.244200pt;}
.y138{bottom:857.617200pt;}
.y1be{bottom:859.190000pt;}
.yfa{bottom:862.320867pt;}
.y60{bottom:862.323733pt;}
.yb0{bottom:862.323867pt;}
.y75{bottom:862.334267pt;}
.y21c{bottom:863.606400pt;}
.y10c{bottom:866.996867pt;}
.y15a{bottom:867.232000pt;}
.y24b{bottom:867.603467pt;}
.y248{bottom:868.838733pt;}
.y3c{bottom:868.903333pt;}
.y19b{bottom:870.407733pt;}
.y1d1{bottom:871.027200pt;}
.y137{bottom:880.283867pt;}
.y1bd{bottom:881.857133pt;}
.y21b{bottom:883.600733pt;}
.y1f6{bottom:884.287667pt;}
.y5f{bottom:884.990400pt;}
.yaf{bottom:884.990533pt;}
.y74{bottom:885.000933pt;}
.y5{bottom:886.935600pt;}
.y247{bottom:888.833067pt;}
.y159{bottom:889.898667pt;}
.y3b{bottom:891.570000pt;}
.y19a{bottom:893.074400pt;}
.y1d0{bottom:893.688467pt;}
.y136{bottom:902.950533pt;}
.y1f5{bottom:906.957200pt;}
.y10b{bottom:907.654333pt;}
.y5e{bottom:907.657067pt;}
.yae{bottom:907.657200pt;}
.y73{bottom:907.667600pt;}
.y246{bottom:908.827400pt;}
.y21a{bottom:912.066533pt;}
.y158{bottom:912.565333pt;}
.y1bc{bottom:915.394667pt;}
.y199{bottom:915.741067pt;}
.y3a{bottom:919.417200pt;}
.y1cf{bottom:925.066333pt;}
.y135{bottom:925.617200pt;}
.y1f4{bottom:926.951533pt;}
.y5d{bottom:930.318000pt;}
.ya2{bottom:930.323733pt;}
.yad{bottom:930.323867pt;}
.y72{bottom:930.334267pt;}
.y219{bottom:932.070467pt;}
.y1bb{bottom:938.061333pt;}
.y198{bottom:938.407733pt;}
.y245{bottom:940.999467pt;}
.y1f3{bottom:946.945867pt;}
.y1ce{bottom:947.735867pt;}
.y134{bottom:948.281000pt;}
.y218{bottom:952.064800pt;}
.y5c{bottom:952.987533pt;}
.ya1{bottom:952.990400pt;}
.yac{bottom:952.990533pt;}
.y71{bottom:953.000933pt;}
.y244{bottom:960.993800pt;}
.y197{bottom:961.074400pt;}
.y1cd{bottom:967.737200pt;}
.y133{bottom:970.950533pt;}
.ya0{bottom:975.654133pt;}
.y39{bottom:975.657067pt;}
.yab{bottom:975.657200pt;}
.y70{bottom:975.667600pt;}
.y1f2{bottom:978.323733pt;}
.y243{bottom:980.988133pt;}
.y217{bottom:980.990400pt;}
.y132{bottom:993.617200pt;}
.y9f{bottom:998.323667pt;}
.y38{bottom:998.323733pt;}
.yaa{bottom:998.323867pt;}
.y6f{bottom:998.334267pt;}
.y242{bottom:1000.982467pt;}
.y1cc{bottom:1000.996067pt;}
.y127{bottom:1020.226667pt;}
.y241{bottom:1020.976800pt;}
.y18c{bottom:1020.989400pt;}
.y37{bottom:1020.990400pt;}
.ya9{bottom:1020.990533pt;}
.y9e{bottom:1020.993200pt;}
.y6e{bottom:1021.000933pt;}
.y131{bottom:1021.464533pt;}
.y1f{bottom:1062.169600pt;}
.h1c{height:30.333333pt;}
.h10{height:36.563553pt;}
.hf{height:39.000000pt;}
.h18{height:39.622917pt;}
.h9{height:40.289333pt;}
.ha{height:41.907552pt;}
.h8{height:43.237333pt;}
.h1b{height:43.333333pt;}
.hb{height:43.941333pt;}
.h17{height:45.281467pt;}
.h5{height:45.283333pt;}
.h16{height:45.290800pt;}
.h6{height:45.294800pt;}
.h19{height:45.303067pt;}
.he{height:45.303600pt;}
.h15{height:45.306267pt;}
.h13{height:45.306800pt;}
.h14{height:45.308133pt;}
.h11{height:45.314800pt;}
.h7{height:45.341200pt;}
.h1a{height:46.018099pt;}
.h12{height:46.320312pt;}
.hc{height:47.040960pt;}
.hd{height:49.514667pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:30.236267pt;}
.xd{left:31.208333pt;}
.x8{left:36.319667pt;}
.xb{left:39.955000pt;}
.x4{left:48.673600pt;}
.xa{left:57.434667pt;}
.xe{left:61.275000pt;}
.x23{left:68.976400pt;}
.xc{left:77.852667pt;}
.x7{left:81.406000pt;}
.xf{left:84.986667pt;}
.x6{left:89.370133pt;}
.x9{left:91.464667pt;}
.x1{left:94.239333pt;}
.x2{left:107.679333pt;}
.x25{left:144.523067pt;}
.x12{left:151.181067pt;}
.x20{left:170.074667pt;}
.x24{left:176.616400pt;}
.x26{left:186.280267pt;}
.x5{left:190.110267pt;}
.x19{left:192.634267pt;}
.x21{left:194.078667pt;}
.x1b{left:209.873600pt;}
.x16{left:212.238267pt;}
.x17{left:246.342267pt;}
.x13{left:248.712800pt;}
.x15{left:254.782933pt;}
.x18{left:274.124933pt;}
.x1f{left:291.438133pt;}
.x1e{left:326.898667pt;}
.x14{left:331.848800pt;}
.x1d{left:334.266933pt;}
.x1c{left:416.592000pt;}
.x10{left:509.744267pt;}
.x3{left:575.745600pt;}
.x22{left:718.416667pt;}
.x1a{left:737.190267pt;}
}




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