
    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_1c7b4a174b2b16c132f61232.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1fd0ed1df41c1bc561116fd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_048e4f2b1fc549ac7dc4645d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e4de0271012a657f1779cef2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3feb23917130140959b9ab51.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_5a7d55f4b82fa662114c54f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.m15c{transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.239627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239627,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.240753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240753,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.240941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240941,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.241138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241138,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.242027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242027,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.242323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242323,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.242578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242578,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.242976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242976,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.244054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244054,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.244684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244684,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246143,0.000000,0.000000,0.250000,0,0);}
.m11c{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);}
.mc8{transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.246374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246374,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.246723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246723,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.247073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247073,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.247123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247123,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.247236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247236,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.247436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247436,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.247537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247537,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.247551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247551,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.mb1{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);}
.meb{transform:matrix(0.247754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247754,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247903,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248046,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248349,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.mcc{transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248474,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248496,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248851,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.mfe{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);}
.m117{transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248949,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m44{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249251,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249349,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);}
.m101{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);}
.m143{transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249466,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m170{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);}
.m14a{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.m8e{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.249599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249599,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m34{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249699,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m93{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);}
.m166{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m139{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);}
.md0{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.mf2{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m20{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.874802px;}
.v5{vertical-align:-5.212801px;}
.v1{vertical-align:-3.969001px;}
.v3{vertical-align:-1.827000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.827000px;}
.v6{vertical-align:3.969001px;}
.v7{vertical-align:47.950810px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.007020px;}
.ls4{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.567000px;}
.ls2{letter-spacing:0.945000px;}
.ls1{letter-spacing:1.260000px;}
.ls5{letter-spacing:80.460016px;}
.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;}
}
.ws2{word-spacing:-63.000013px;}
.ws1{word-spacing:-18.000004px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:336.300067px;}
.ws3{word-spacing:350.700070px;}
._0{margin-left:-1.050000px;}
._1{width:1.068000px;}
._2{width:54.000011px;}
._4{width:204.324041px;}
._5{width:218.724044px;}
._3{width:254.724051px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000012px;}
.fs1{font-size:63.000013px;}
.fs0{font-size:72.000014px;}
.y0{bottom:0.000000px;}
.y128{bottom:31.910856px;}
.y12e{bottom:43.910859px;}
.y106{bottom:43.911009px;}
.y118{bottom:67.886264px;}
.y10c{bottom:91.861818px;}
.ybc{bottom:116.769686px;}
.yfe{bottom:116.799686px;}
.y163{bottom:116.829836px;}
.y3d{bottom:116.844836px;}
.y127{bottom:118.998836px;}
.y129{bottom:126.939688px;}
.y18f{bottom:128.694688px;}
.y1e{bottom:128.739838px;}
.y86{bottom:128.754838px;}
.yee{bottom:128.784688px;}
.yf9{bottom:128.799688px;}
.y9b{bottom:128.814688px;}
.y1a2{bottom:140.739841px;}
.y1b2{bottom:140.769691px;}
.y1a9{bottom:140.784691px;}
.y162{bottom:140.814691px;}
.ycd{bottom:140.829841px;}
.y12a{bottom:144.921991px;}
.y18e{bottom:152.664693px;}
.ybb{bottom:152.739843px;}
.yfd{bottom:152.769693px;}
.y9a{bottom:152.784693px;}
.ydc{bottom:152.799693px;}
.y3c{bottom:152.814693px;}
.yb1{bottom:152.829843px;}
.y74{bottom:155.694694px;}
.y151{bottom:156.519694px;}
.y1d{bottom:164.724845px;}
.yed{bottom:164.754845px;}
.yf8{bottom:164.769695px;}
.y103{bottom:164.784695px;}
.y16d{bottom:164.799695px;}
.y121{bottom:171.442897px;}
.y1a1{bottom:176.709698px;}
.ydb{bottom:176.769698px;}
.yb0{bottom:176.799698px;}
.ycc{bottom:176.814698px;}
.y73{bottom:179.664698px;}
.y150{bottom:180.489848px;}
.y18d{bottom:188.634850px;}
.y1c{bottom:188.694700px;}
.yba{bottom:188.709700px;}
.y58{bottom:188.724850px;}
.yf7{bottom:188.739850px;}
.y99{bottom:188.754850px;}
.y16c{bottom:188.769700px;}
.y3b{bottom:188.784700px;}
.y124{bottom:191.379851px;}
.y85{bottom:200.694703px;}
.yec{bottom:200.724853px;}
.yda{bottom:200.754853px;}
.yaf{bottom:200.769703px;}
.ycb{bottom:200.784703px;}
.y120{bottom:203.362003px;}
.y14f{bottom:204.474853px;}
.yb9{bottom:212.679705px;}
.y57{bottom:212.694705px;}
.y1a8{bottom:212.709705px;}
.yf6{bottom:212.724855px;}
.y16b{bottom:212.754855px;}
.y175{bottom:212.949705px;}
.y123{bottom:215.349855px;}
.y126{bottom:215.359305px;}
.y72{bottom:215.634856px;}
.y18c{bottom:224.604707px;}
.y1b{bottom:224.664707px;}
.yfc{bottom:224.709707px;}
.y98{bottom:224.724857px;}
.y161{bottom:224.739857px;}
.y3a{bottom:224.754857px;}
.y11f{bottom:227.347008px;}
.y14e{bottom:228.444708px;}
.y1a0{bottom:236.649860px;}
.y56{bottom:236.664710px;}
.y1b1{bottom:236.679710px;}
.yeb{bottom:236.694710px;}
.y102{bottom:236.709710px;}
.y16a{bottom:236.724860px;}
.y125{bottom:239.329310px;}
.y122{bottom:239.334710px;}
.y71{bottom:239.604710px;}
.y1b7{bottom:248.664712px;}
.y1a7{bottom:248.679712px;}
.y97{bottom:248.709712px;}
.yae{bottom:248.724862px;}
.yca{bottom:248.739862px;}
.y11e{bottom:251.317013px;}
.y14d{bottom:252.414713px;}
.y18b{bottom:260.574715px;}
.y1a{bottom:260.634865px;}
.y55{bottom:260.649865px;}
.yea{bottom:260.679715px;}
.y39{bottom:260.724865px;}
.y70{bottom:263.589715px;}
.y1b6{bottom:272.649867px;}
.yf5{bottom:272.664717px;}
.y96{bottom:272.679717px;}
.y160{bottom:272.694717px;}
.yc9{bottom:272.709717px;}
.y14c{bottom:276.399868px;}
.y117{bottom:283.843469px;}
.y19f{bottom:284.604719px;}
.y54{bottom:284.619719px;}
.ye9{bottom:284.649869px;}
.yad{bottom:284.694719px;}
.y6f{bottom:287.559870px;}
.y18a{bottom:296.544872px;}
.y19{bottom:296.604722px;}
.y1b5{bottom:296.619722px;}
.y1b0{bottom:296.634872px;}
.yd9{bottom:296.649872px;}
.y15f{bottom:296.664722px;}
.y169{bottom:296.679722px;}
.y38{bottom:296.694722px;}
.y174{bottom:299.619722px;}
.y14b{bottom:300.369722px;}
.y11a{bottom:303.774873px;}
.yf4{bottom:308.634874px;}
.y95{bottom:308.649874px;}
.yc8{bottom:308.679724px;}
.y11c{bottom:315.772026px;}
.y53{bottom:320.589727px;}
.y1af{bottom:320.604727px;}
.ye8{bottom:320.619727px;}
.yd8{bottom:320.634877px;}
.y15e{bottom:320.649877px;}
.yac{bottom:320.664727px;}
.y37{bottom:320.679727px;}
.y6e{bottom:323.529727px;}
.y11d{bottom:327.754328px;}
.y119{bottom:327.759878px;}
.y189{bottom:332.529729px;}
.y18{bottom:332.574729px;}
.y1b4{bottom:332.604729px;}
.y94{bottom:332.619729px;}
.yc7{bottom:332.664729px;}
.y14a{bottom:336.354730px;}
.y11b{bottom:339.742030px;}
.yb8{bottom:344.559881px;}
.y84{bottom:344.574731px;}
.y173{bottom:344.589731px;}
.yd7{bottom:344.604731px;}
.y15d{bottom:344.619731px;}
.yab{bottom:344.634881px;}
.y36{bottom:344.649881px;}
.y188{bottom:356.499734px;}
.y52{bottom:356.559884px;}
.y1ae{bottom:356.574734px;}
.y93{bottom:356.604734px;}
.yc6{bottom:356.634884px;}
.y6d{bottom:359.514734px;}
.y149{bottom:360.324734px;}
.y19e{bottom:368.529736px;}
.y17{bottom:368.544886px;}
.ye7{bottom:368.574736px;}
.yf3{bottom:368.589736px;}
.y168{bottom:368.604736px;}
.y35{bottom:368.619736px;}
.y110{bottom:372.262937px;}
.yb7{bottom:380.544889px;}
.y1bd{bottom:380.559889px;}
.y92{bottom:380.574739px;}
.yc5{bottom:380.604739px;}
.y6c{bottom:383.484739px;}
.y148{bottom:384.309889px;}
.y113{bottom:392.199741px;}
.y187{bottom:392.484741px;}
.y19d{bottom:392.514741px;}
.y51{bottom:392.529741px;}
.y1ad{bottom:392.544891px;}
.yf2{bottom:392.559891px;}
.yaa{bottom:392.589741px;}
.y34{bottom:392.604741px;}
.y16{bottom:404.514743px;}
.y1bc{bottom:404.529743px;}
.ye6{bottom:404.544893px;}
.yd6{bottom:404.559893px;}
.y15c{bottom:404.574893px;}
.yc4{bottom:404.589893px;}
.y147{bottom:408.279744px;}
.y112{bottom:416.169896px;}
.y116{bottom:416.179346px;}
.y186{bottom:416.454896px;}
.y19c{bottom:416.484896px;}
.y91{bottom:416.544896px;}
.y167{bottom:416.559896px;}
.y33{bottom:416.574896px;}
.y6b{bottom:419.454896px;}
.y114{bottom:428.161648px;}
.y1bb{bottom:428.499748px;}
.y50{bottom:428.514748px;}
.yd5{bottom:428.529748px;}
.ya9{bottom:428.559748px;}
.y146{bottom:432.249749px;}
.y115{bottom:440.149350px;}
.y111{bottom:440.154750px;}
.y15{bottom:440.484750px;}
.y83{bottom:440.499750px;}
.y90{bottom:440.514751px;}
.y1a6{bottom:440.529751px;}
.y6a{bottom:443.424751px;}
.y185{bottom:452.439753px;}
.y19b{bottom:452.454753px;}
.y4f{bottom:452.484753px;}
.ye5{bottom:452.499753px;}
.yd4{bottom:452.514753px;}
.y15b{bottom:452.529753px;}
.y32{bottom:452.544903px;}
.y145{bottom:456.234754px;}
.y82{bottom:464.469755px;}
.y1ac{bottom:464.484755px;}
.y8f{bottom:464.499755px;}
.yc3{bottom:464.529755px;}
.y69{bottom:467.409756px;}
.y184{bottom:476.409758px;}
.y14{bottom:476.454758px;}
.y172{bottom:476.469758px;}
.yd3{bottom:476.484758px;}
.y15a{bottom:476.499758px;}
.ya8{bottom:476.514758px;}
.y31{bottom:476.529758px;}
.y144{bottom:480.204758px;}
.y10b{bottom:484.657959px;}
.y19a{bottom:488.424760px;}
.yb6{bottom:488.439760px;}
.y4e{bottom:488.454760px;}
.y8e{bottom:488.469760px;}
.y68{bottom:491.379761px;}
.y81{bottom:500.454762px;}
.y1ab{bottom:500.469762px;}
.ya7{bottom:500.484762px;}
.y30{bottom:500.499762px;}
.y10f{bottom:504.594763px;}
.y183{bottom:512.394765px;}
.y199{bottom:512.409765px;}
.y13{bottom:512.424765px;}
.y4d{bottom:512.439765px;}
.ye4{bottom:512.454765px;}
.y101{bottom:512.469765px;}
.y143{bottom:516.189766px;}
.y80{bottom:524.424767px;}
.y8d{bottom:524.439767px;}
.y159{bottom:524.454767px;}
.ya6{bottom:524.469767px;}
.y67{bottom:527.364768px;}
.y10e{bottom:528.564768px;}
.y109{bottom:528.574368px;}
.y182{bottom:536.364770px;}
.y198{bottom:536.379770px;}
.y4c{bottom:536.409770px;}
.ye3{bottom:536.424770px;}
.yf1{bottom:536.439770px;}
.y2f{bottom:536.469770px;}
.y142{bottom:540.159770px;}
.y10a{bottom:540.556671px;}
.y12{bottom:548.394772px;}
.y8c{bottom:548.409772px;}
.ya5{bottom:548.439772px;}
.yc2{bottom:548.454772px;}
.y66{bottom:551.334773px;}
.y108{bottom:552.544373px;}
.y10d{bottom:552.549773px;}
.y1ba{bottom:560.379774px;}
.y171{bottom:560.394774px;}
.y7f{bottom:560.409774px;}
.y1a5{bottom:560.424774px;}
.y2e{bottom:560.439774px;}
.y141{bottom:564.144775px;}
.y181{bottom:572.334777px;}
.y197{bottom:572.349927px;}
.y4b{bottom:572.379777px;}
.y8b{bottom:572.394777px;}
.yc1{bottom:572.424777px;}
.y11{bottom:584.364779px;}
.y7e{bottom:584.379779px;}
.yd2{bottom:584.394779px;}
.y158{bottom:584.409779px;}
.y2d{bottom:584.424779px;}
.y65{bottom:587.304930px;}
.y140{bottom:588.114780px;}
.y8a{bottom:596.364782px;}
.yf0{bottom:596.379782px;}
.y166{bottom:596.394782px;}
.y105{bottom:597.063932px;}
.y180{bottom:608.319784px;}
.y196{bottom:608.334784px;}
.y4a{bottom:608.349934px;}
.yd1{bottom:608.364784px;}
.ye2{bottom:608.379784px;}
.y2c{bottom:608.394784px;}
.y13f{bottom:612.084785px;}
.y107{bottom:617.004786px;}
.y10{bottom:620.334786px;}
.y7d{bottom:620.364786px;}
.y1a4{bottom:620.379786px;}
.y64{bottom:623.289787px;}
.y17f{bottom:632.289789px;}
.y195{bottom:632.304939px;}
.y89{bottom:632.334789px;}
.ye1{bottom:632.349939px;}
.yc0{bottom:632.364789px;}
.ya4{bottom:632.379789px;}
.y13e{bottom:636.069790px;}
.yb5{bottom:644.319791px;}
.y49{bottom:644.334791px;}
.y1a3{bottom:644.349941px;}
.y2b{bottom:644.364791px;}
.y63{bottom:647.259942px;}
.yf{bottom:656.304944px;}
.yd0{bottom:656.319794px;}
.y157{bottom:656.334794px;}
.ya3{bottom:656.349944px;}
.y13d{bottom:660.039794px;}
.y17e{bottom:668.259946px;}
.y194{bottom:668.274796px;}
.yb4{bottom:668.289796px;}
.y48{bottom:668.304946px;}
.y1b3{bottom:668.319796px;}
.y2a{bottom:668.349946px;}
.ye{bottom:680.289798px;}
.y7c{bottom:680.304948px;}
.ya2{bottom:680.319798px;}
.y165{bottom:680.334798px;}
.y62{bottom:683.229799px;}
.y1b9{bottom:692.259951px;}
.y47{bottom:692.274801px;}
.y170{bottom:692.289801px;}
.y1aa{bottom:692.304951px;}
.y29{bottom:692.319801px;}
.y13c{bottom:696.009952px;}
.y17d{bottom:704.244803px;}
.yd{bottom:704.259953px;}
.ye0{bottom:704.274803px;}
.y156{bottom:704.289803px;}
.ya1{bottom:704.304953px;}
.yb3{bottom:716.244806px;}
.y46{bottom:716.259956px;}
.y100{bottom:716.274806px;}
.y28{bottom:716.289806px;}
.y1be{bottom:716.304956px;}
.y61{bottom:719.214956px;}
.y17c{bottom:728.214958px;}
.ya0{bottom:728.274808px;}
.y13b{bottom:731.979809px;}
.y193{bottom:740.214960px;}
.yc{bottom:740.229810px;}
.ydf{bottom:740.244810px;}
.y7b{bottom:740.259960px;}
.y27{bottom:740.274810px;}
.y60{bottom:743.184811px;}
.y136{bottom:751.393563px;}
.yb2{bottom:752.229813px;}
.ycf{bottom:752.244813px;}
.yff{bottom:752.259963px;}
.y17b{bottom:764.199815px;}
.yfb{bottom:764.214965px;}
.y7a{bottom:764.229815px;}
.y26{bottom:764.244815px;}
.y138{bottom:771.324817px;}
.y192{bottom:776.184818px;}
.y45{bottom:776.199818px;}
.yb{bottom:776.214968px;}
.yde{bottom:776.229818px;}
.y5f{bottom:779.154818px;}
.y13a{bottom:783.322119px;}
.y17a{bottom:788.169970px;}
.yfa{bottom:788.199820px;}
.y79{bottom:788.214970px;}
.y155{bottom:788.229820px;}
.y137{bottom:795.309821px;}
.y1b8{bottom:800.169972px;}
.ya{bottom:800.184822px;}
.ydd{bottom:800.199822px;}
.y25{bottom:800.214972px;}
.y139{bottom:807.292124px;}
.y191{bottom:812.154825px;}
.y44{bottom:812.169825px;}
.y78{bottom:812.184825px;}
.y154{bottom:812.199825px;}
.y164{bottom:812.214825px;}
.y5e{bottom:815.124825px;}
.y179{bottom:824.139827px;}
.yce{bottom:824.169827px;}
.ybf{bottom:824.184827px;}
.y24{bottom:824.199827px;}
.y9{bottom:836.154830px;}
.y88{bottom:836.169830px;}
.y9f{bottom:836.184830px;}
.y130{bottom:839.813030px;}
.y43{bottom:848.139832px;}
.y77{bottom:848.154832px;}
.y23{bottom:848.169832px;}
.y5d{bottom:851.094833px;}
.y133{bottom:859.749834px;}
.y178{bottom:860.124834px;}
.y87{bottom:860.139834px;}
.ybe{bottom:860.154834px;}
.y9e{bottom:860.169834px;}
.y190{bottom:872.109837px;}
.y8{bottom:872.124837px;}
.y22{bottom:872.139837px;}
.y132{bottom:883.719839px;}
.y135{bottom:883.729439px;}
.y177{bottom:884.094839px;}
.y42{bottom:884.109839px;}
.ybd{bottom:884.124839px;}
.y9d{bottom:884.139839px;}
.y5c{bottom:888.598590px;}
.y76{bottom:896.109842px;}
.y21{bottom:896.124842px;}
.y134{bottom:907.699444px;}
.y131{bottom:907.704844px;}
.y5b{bottom:908.094844px;}
.y7{bottom:908.109844px;}
.y41{bottom:920.079846px;}
.y20{bottom:920.094846px;}
.y153{bottom:920.109846px;}
.y16f{bottom:932.064849px;}
.y6{bottom:932.079849px;}
.y9c{bottom:932.094849px;}
.y176{bottom:944.049851px;}
.y5a{bottom:944.064851px;}
.y152{bottom:944.079851px;}
.y12d{bottom:952.219003px;}
.y40{bottom:956.049854px;}
.y1f{bottom:956.064854px;}
.y16e{bottom:968.034856px;}
.yef{bottom:968.049856px;}
.y5{bottom:968.064856px;}
.y12f{bottom:972.159857px;}
.y59{bottom:980.034858px;}
.y3f{bottom:992.019861px;}
.y4{bottom:992.034861px;}
.y75{bottom:1004.004863px;}
.y104{bottom:1004.019863px;}
.y3{bottom:1016.004866px;}
.y3e{bottom:1027.989868px;}
.y12c{bottom:1036.614870px;}
.y2{bottom:1039.989930px;}
.y12b{bottom:1060.584935px;}
.y1{bottom:1063.959935px;}
.h11{height:39.990242px;}
.h5{height:46.142587px;}
.hd{height:48.625960px;}
.h4{height:48.796885px;}
.h3{height:50.027354px;}
.he{height:60.280962px;}
.h6{height:61.060962px;}
.h1{height:70.664077px;}
.h2{height:72.562515px;}
.ha{height:84.031367px;}
.h10{height:84.481367px;}
.h8{height:108.111922px;}
.h7{height:108.216922px;}
.hf{height:108.561922px;}
.hc{height:108.681922px;}
.hb{height:118.593286px;}
.h9{height:118.614886px;}
.h0{height:1188.000000px;}
.w3{width:140.325028px;}
.w2{width:144.000029px;}
.w4{width:178.874886px;}
.w1{width:228.450046px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4b{left:28.200006px;}
.x49{left:55.125011px;}
.x1{left:108.000022px;}
.x48{left:110.250022px;}
.x5{left:112.500023px;}
.x53{left:114.450023px;}
.x88{left:118.800024px;}
.xa{left:135.000027px;}
.x78{left:145.801784px;}
.x2{left:160.485032px;}
.xb{left:162.000032px;}
.x4a{left:165.375033px;}
.x34{left:166.500033px;}
.x6{left:169.497034px;}
.x25{left:172.485034px;}
.x57{left:175.500035px;}
.x7{left:178.497036px;}
.x3a{left:180.632886px;}
.x4{left:186.510037px;}
.x3b{left:189.632888px;}
.x38{left:194.493189px;}
.x89{left:196.785039px;}
.x59{left:201.495040px;}
.x39{left:203.493191px;}
.x11{left:208.965042px;}
.x62{left:211.500042px;}
.x24{left:214.950043px;}
.x85{left:216.990043px;}
.x5f{left:219.990344px;}
.x8e{left:220.995044px;}
.x23{left:222.825045px;}
.x26{left:224.460045px;}
.x8d{left:227.469795px;}
.x60{left:228.990346px;}
.x2a{left:230.490046px;}
.x43{left:232.655297px;}
.x56{left:236.370047px;}
.x5d{left:237.975048px;}
.x66{left:239.985348px;}
.x64{left:245.733499px;}
.x67{left:248.985350px;}
.x44{left:254.654301px;}
.x3e{left:255.963951px;}
.x46{left:257.370051px;}
.x79{left:258.990052px;}
.xe{left:261.975652px;}
.x3f{left:264.963953px;}
.xf{left:270.975654px;}
.x8b{left:273.795055px;}
.x22{left:279.096806px;}
.x30{left:280.455056px;}
.x8f{left:282.489356px;}
.x1d{left:285.990057px;}
.x36{left:289.634758px;}
.x5a{left:291.495058px;}
.x35{left:295.593809px;}
.x31{left:298.830060px;}
.x21{left:306.105061px;}
.x12{left:308.926862px;}
.x86{left:312.645063px;}
.x95{left:313.954113px;}
.x13{left:317.926864px;}
.x96{left:321.943414px;}
.x87{left:329.940066px;}
.x1a{left:337.410067px;}
.x45{left:340.980068px;}
.x47{left:349.455070px;}
.x14{left:354.946421px;}
.x16{left:356.440571px;}
.x2d{left:360.420072px;}
.x7a{left:361.965072px;}
.x15{left:363.946423px;}
.x17{left:365.440573px;}
.x40{left:366.960973px;}
.x32{left:369.825074px;}
.x41{left:375.960975px;}
.x37{left:378.422026px;}
.x1e{left:382.948277px;}
.x68{left:387.439577px;}
.x27{left:393.925879px;}
.x4c{left:396.075079px;}
.x8a{left:400.230080px;}
.x8{left:402.055730px;}
.x5e{left:404.437581px;}
.x1f{left:405.450081px;}
.x9{left:411.055732px;}
.x33{left:412.680083px;}
.x3{left:415.485083px;}
.x20{left:423.945085px;}
.x71{left:435.972687px;}
.xc{left:441.184588px;}
.x72{left:444.972689px;}
.xd{left:447.178739px;}
.x50{left:454.065241px;}
.x65{left:459.435092px;}
.x93{left:461.715842px;}
.x94{left:467.709994px;}
.x77{left:472.695095px;}
.x42{left:485.463997px;}
.x18{left:487.905098px;}
.x8c{left:494.400099px;}
.x61{left:498.234550px;}
.x2e{left:503.367251px;}
.x28{left:507.902502px;}
.x2f{left:509.361402px;}
.x6f{left:510.372102px;}
.x6a{left:512.921053px;}
.x3c{left:514.080103px;}
.x51{left:515.250103px;}
.x29{left:516.902503px;}
.x70{left:519.372104px;}
.x83{left:524.340105px;}
.x7d{left:525.420105px;}
.x4d{left:542.250108px;}
.x7f{left:545.633959px;}
.x6c{left:547.380109px;}
.x80{left:553.623111px;}
.x19{left:555.855111px;}
.x54{left:560.250112px;}
.x5b{left:568.394514px;}
.x6b{left:571.421064px;}
.x52{left:573.750115px;}
.x69{left:574.800115px;}
.x58{left:577.318465px;}
.x90{left:585.571467px;}
.x84{left:592.830119px;}
.x7b{left:595.365119px;}
.x3d{left:598.065120px;}
.x91{left:599.352720px;}
.x92{left:605.346871px;}
.x75{left:613.515123px;}
.x7e{left:618.405124px;}
.x4e{left:628.875126px;}
.x5c{left:635.894527px;}
.x6d{left:645.855129px;}
.x6e{left:647.323329px;}
.x73{left:653.607581px;}
.x55{left:657.825132px;}
.x74{left:659.601732px;}
.x4f{left:684.825137px;}
.x7c{left:692.325138px;}
.x1b{left:693.852739px;}
.x76{left:697.485139px;}
.x1c{left:702.852741px;}
.x81{left:706.588041px;}
.x82{left:714.577343px;}
.x63{left:723.032395px;}
.x2b{left:726.363445px;}
.x2c{left:735.360147px;}
.x10{left:746.894699px;}
@media print{
.v2{vertical-align:-8.777602pt;}
.v5{vertical-align:-4.633601pt;}
.v1{vertical-align:-3.528001pt;}
.v3{vertical-align:-1.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.624000pt;}
.v6{vertical-align:3.528001pt;}
.v7{vertical-align:42.622942pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.006240pt;}
.ls4{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.504000pt;}
.ls2{letter-spacing:0.840000pt;}
.ls1{letter-spacing:1.120000pt;}
.ls5{letter-spacing:71.520014pt;}
.ws2{word-spacing:-56.000011pt;}
.ws1{word-spacing:-16.000003pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:298.933393pt;}
.ws3{word-spacing:311.733396pt;}
._0{margin-left:-0.933334pt;}
._1{width:0.949334pt;}
._2{width:48.000010pt;}
._4{width:181.621370pt;}
._5{width:194.421372pt;}
._3{width:226.421379pt;}
.fs2{font-size:53.333344pt;}
.fs1{font-size:56.000011pt;}
.fs0{font-size:64.000013pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:28.365206pt;}
.y12e{bottom:39.031874pt;}
.y106{bottom:39.032008pt;}
.y118{bottom:60.343345pt;}
.y10c{bottom:81.654950pt;}
.ybc{bottom:103.795276pt;}
.yfe{bottom:103.821943pt;}
.y163{bottom:103.848743pt;}
.y3d{bottom:103.862076pt;}
.y127{bottom:105.776743pt;}
.y129{bottom:112.835278pt;}
.y18f{bottom:114.395278pt;}
.y1e{bottom:114.435412pt;}
.y86{bottom:114.448745pt;}
.yee{bottom:114.475278pt;}
.yf9{bottom:114.488612pt;}
.y9b{bottom:114.501945pt;}
.y1a2{bottom:125.102080pt;}
.y1b2{bottom:125.128614pt;}
.y1a9{bottom:125.141947pt;}
.y162{bottom:125.168614pt;}
.ycd{bottom:125.182081pt;}
.y12a{bottom:128.819548pt;}
.y18e{bottom:135.701949pt;}
.ybb{bottom:135.768749pt;}
.yfd{bottom:135.795283pt;}
.y9a{bottom:135.808616pt;}
.ydc{bottom:135.821949pt;}
.y3c{bottom:135.835283pt;}
.yb1{bottom:135.848749pt;}
.y74{bottom:138.395283pt;}
.y151{bottom:139.128617pt;}
.y1d{bottom:146.422085pt;}
.yed{bottom:146.448751pt;}
.yf8{bottom:146.461951pt;}
.y103{bottom:146.475285pt;}
.y16d{bottom:146.488618pt;}
.y121{bottom:152.393686pt;}
.y1a1{bottom:157.075287pt;}
.ydb{bottom:157.128620pt;}
.yb0{bottom:157.155287pt;}
.ycc{bottom:157.168620pt;}
.y73{bottom:159.701954pt;}
.y150{bottom:160.435421pt;}
.y18d{bottom:167.675422pt;}
.y1c{bottom:167.728622pt;}
.yba{bottom:167.741956pt;}
.y58{bottom:167.755422pt;}
.yf7{bottom:167.768756pt;}
.y99{bottom:167.782089pt;}
.y16c{bottom:167.795289pt;}
.y3b{bottom:167.808622pt;}
.y124{bottom:170.115423pt;}
.y85{bottom:178.395291pt;}
.yec{bottom:178.422091pt;}
.yda{bottom:178.448758pt;}
.yaf{bottom:178.461958pt;}
.ycb{bottom:178.475291pt;}
.y120{bottom:180.766225pt;}
.y14f{bottom:181.755425pt;}
.yb9{bottom:189.048627pt;}
.y57{bottom:189.061960pt;}
.y1a8{bottom:189.075293pt;}
.yf6{bottom:189.088760pt;}
.y16b{bottom:189.115427pt;}
.y175{bottom:189.288627pt;}
.y123{bottom:191.422094pt;}
.y126{bottom:191.430494pt;}
.y72{bottom:191.675427pt;}
.y18c{bottom:199.648629pt;}
.y1b{bottom:199.701962pt;}
.yfc{bottom:199.741962pt;}
.y98{bottom:199.755429pt;}
.y161{bottom:199.768762pt;}
.y3a{bottom:199.782095pt;}
.y11f{bottom:202.086229pt;}
.y14e{bottom:203.061963pt;}
.y1a0{bottom:210.355431pt;}
.y56{bottom:210.368631pt;}
.y1b1{bottom:210.381964pt;}
.yeb{bottom:210.395298pt;}
.y102{bottom:210.408631pt;}
.y16a{bottom:210.422098pt;}
.y125{bottom:212.737165pt;}
.y122{bottom:212.741965pt;}
.y71{bottom:212.981965pt;}
.y1b7{bottom:221.035300pt;}
.y1a7{bottom:221.048633pt;}
.y97{bottom:221.075300pt;}
.yae{bottom:221.088766pt;}
.yca{bottom:221.102100pt;}
.y11e{bottom:223.392900pt;}
.y14d{bottom:224.368634pt;}
.y18b{bottom:231.621968pt;}
.y1a{bottom:231.675435pt;}
.y55{bottom:231.688768pt;}
.yea{bottom:231.715302pt;}
.y39{bottom:231.755435pt;}
.y70{bottom:234.301969pt;}
.y1b6{bottom:242.355437pt;}
.yf5{bottom:242.368637pt;}
.y96{bottom:242.381971pt;}
.y160{bottom:242.395304pt;}
.yc9{bottom:242.408637pt;}
.y14c{bottom:245.688771pt;}
.y117{bottom:252.305306pt;}
.y19f{bottom:252.981973pt;}
.y54{bottom:252.995306pt;}
.ye9{bottom:253.022106pt;}
.yad{bottom:253.061973pt;}
.y6f{bottom:255.608773pt;}
.y18a{bottom:263.595442pt;}
.y19{bottom:263.648642pt;}
.y1b5{bottom:263.661975pt;}
.y1b0{bottom:263.675442pt;}
.yd9{bottom:263.688775pt;}
.y15f{bottom:263.701975pt;}
.y169{bottom:263.715308pt;}
.y38{bottom:263.728642pt;}
.y174{bottom:266.328642pt;}
.y14b{bottom:266.995309pt;}
.y11a{bottom:270.022109pt;}
.yf4{bottom:274.342110pt;}
.y95{bottom:274.355444pt;}
.yc8{bottom:274.381977pt;}
.y11c{bottom:280.686245pt;}
.y53{bottom:284.968646pt;}
.y1af{bottom:284.981979pt;}
.ye8{bottom:284.995312pt;}
.yd8{bottom:285.008779pt;}
.y15e{bottom:285.022112pt;}
.yac{bottom:285.035312pt;}
.y37{bottom:285.048646pt;}
.y6e{bottom:287.581980pt;}
.y11d{bottom:291.337180pt;}
.y119{bottom:291.342114pt;}
.y189{bottom:295.581981pt;}
.y18{bottom:295.621981pt;}
.y1b4{bottom:295.648648pt;}
.y94{bottom:295.661981pt;}
.yc7{bottom:295.701981pt;}
.y14a{bottom:298.981982pt;}
.y11b{bottom:301.992916pt;}
.yb8{bottom:306.275450pt;}
.y84{bottom:306.288650pt;}
.y173{bottom:306.301983pt;}
.yd7{bottom:306.315317pt;}
.y15d{bottom:306.328650pt;}
.yab{bottom:306.342117pt;}
.y36{bottom:306.355450pt;}
.y188{bottom:316.888652pt;}
.y52{bottom:316.942119pt;}
.y1ae{bottom:316.955319pt;}
.y93{bottom:316.981986pt;}
.yc6{bottom:317.008786pt;}
.y6d{bottom:319.568653pt;}
.y149{bottom:320.288653pt;}
.y19e{bottom:327.581988pt;}
.y17{bottom:327.595454pt;}
.ye7{bottom:327.621988pt;}
.yf3{bottom:327.635321pt;}
.y168{bottom:327.648654pt;}
.y35{bottom:327.661988pt;}
.y110{bottom:330.900388pt;}
.yb7{bottom:338.262123pt;}
.y1bd{bottom:338.275456pt;}
.y92{bottom:338.288656pt;}
.yc5{bottom:338.315323pt;}
.y6c{bottom:340.875324pt;}
.y148{bottom:341.608790pt;}
.y113{bottom:348.621992pt;}
.y187{bottom:348.875325pt;}
.y19d{bottom:348.901992pt;}
.y51{bottom:348.915325pt;}
.y1ad{bottom:348.928792pt;}
.yf2{bottom:348.942125pt;}
.yaa{bottom:348.968659pt;}
.y34{bottom:348.981992pt;}
.y16{bottom:359.568661pt;}
.y1bc{bottom:359.581994pt;}
.ye6{bottom:359.595461pt;}
.yd6{bottom:359.608794pt;}
.y15c{bottom:359.622127pt;}
.yc4{bottom:359.635461pt;}
.y147{bottom:362.915328pt;}
.y112{bottom:369.928796pt;}
.y116{bottom:369.937196pt;}
.y186{bottom:370.182130pt;}
.y19c{bottom:370.208796pt;}
.y91{bottom:370.262130pt;}
.y167{bottom:370.275463pt;}
.y33{bottom:370.288796pt;}
.y6b{bottom:372.848797pt;}
.y114{bottom:380.588132pt;}
.y1bb{bottom:380.888665pt;}
.y50{bottom:380.901998pt;}
.yd5{bottom:380.915332pt;}
.ya9{bottom:380.941998pt;}
.y146{bottom:384.221999pt;}
.y115{bottom:391.243867pt;}
.y111{bottom:391.248667pt;}
.y15{bottom:391.542000pt;}
.y83{bottom:391.555334pt;}
.y90{bottom:391.568667pt;}
.y1a6{bottom:391.582000pt;}
.y6a{bottom:394.155334pt;}
.y185{bottom:402.168669pt;}
.y19b{bottom:402.182003pt;}
.y4f{bottom:402.208669pt;}
.ye5{bottom:402.222003pt;}
.yd4{bottom:402.235336pt;}
.y15b{bottom:402.248669pt;}
.y32{bottom:402.262136pt;}
.y145{bottom:405.542003pt;}
.y82{bottom:412.862005pt;}
.y1ac{bottom:412.875338pt;}
.y8f{bottom:412.888671pt;}
.yc3{bottom:412.915338pt;}
.y69{bottom:415.475339pt;}
.y184{bottom:423.475340pt;}
.y14{bottom:423.515340pt;}
.y172{bottom:423.528674pt;}
.yd3{bottom:423.542007pt;}
.y15a{bottom:423.555340pt;}
.ya8{bottom:423.568674pt;}
.y31{bottom:423.582007pt;}
.y144{bottom:426.848674pt;}
.y10b{bottom:430.807075pt;}
.y19a{bottom:434.155342pt;}
.yb6{bottom:434.168676pt;}
.y4e{bottom:434.182009pt;}
.y8e{bottom:434.195342pt;}
.y68{bottom:436.782009pt;}
.y81{bottom:444.848678pt;}
.y1ab{bottom:444.862011pt;}
.ya7{bottom:444.875344pt;}
.y30{bottom:444.888678pt;}
.y10f{bottom:448.528679pt;}
.y183{bottom:455.462013pt;}
.y199{bottom:455.475347pt;}
.y13{bottom:455.488680pt;}
.y4d{bottom:455.502013pt;}
.ye4{bottom:455.515347pt;}
.y101{bottom:455.528680pt;}
.y143{bottom:458.835347pt;}
.y80{bottom:466.155349pt;}
.y8d{bottom:466.168682pt;}
.y159{bottom:466.182015pt;}
.ya6{bottom:466.195349pt;}
.y67{bottom:468.768683pt;}
.y10e{bottom:469.835349pt;}
.y109{bottom:469.843883pt;}
.y182{bottom:476.768684pt;}
.y198{bottom:476.782017pt;}
.y4c{bottom:476.808684pt;}
.ye3{bottom:476.822017pt;}
.yf1{bottom:476.835351pt;}
.y2f{bottom:476.862018pt;}
.y142{bottom:480.142018pt;}
.y10a{bottom:480.494818pt;}
.y12{bottom:487.462020pt;}
.y8c{bottom:487.475353pt;}
.ya5{bottom:487.502020pt;}
.yc2{bottom:487.515353pt;}
.y66{bottom:490.075353pt;}
.y108{bottom:491.150554pt;}
.y10d{bottom:491.155354pt;}
.y1ba{bottom:498.115355pt;}
.y171{bottom:498.128688pt;}
.y7f{bottom:498.142022pt;}
.y1a5{bottom:498.155355pt;}
.y2e{bottom:498.168688pt;}
.y141{bottom:501.462022pt;}
.y181{bottom:508.742024pt;}
.y197{bottom:508.755491pt;}
.y4b{bottom:508.782024pt;}
.y8b{bottom:508.795357pt;}
.yc1{bottom:508.822024pt;}
.y11{bottom:519.435359pt;}
.y7e{bottom:519.448693pt;}
.yd2{bottom:519.462026pt;}
.y158{bottom:519.475359pt;}
.y2d{bottom:519.488693pt;}
.y65{bottom:522.048827pt;}
.y140{bottom:522.768693pt;}
.y8a{bottom:530.102028pt;}
.yf0{bottom:530.115361pt;}
.y166{bottom:530.128695pt;}
.y105{bottom:530.723495pt;}
.y180{bottom:540.728697pt;}
.y196{bottom:540.742030pt;}
.y4a{bottom:540.755497pt;}
.yd1{bottom:540.768697pt;}
.ye2{bottom:540.782030pt;}
.y2c{bottom:540.795364pt;}
.y13f{bottom:544.075364pt;}
.y107{bottom:548.448698pt;}
.y10{bottom:551.408699pt;}
.y7d{bottom:551.435366pt;}
.y1a4{bottom:551.448699pt;}
.y64{bottom:554.035366pt;}
.y17f{bottom:562.035368pt;}
.y195{bottom:562.048835pt;}
.y89{bottom:562.075368pt;}
.ye1{bottom:562.088835pt;}
.yc0{bottom:562.102035pt;}
.ya4{bottom:562.115368pt;}
.y13e{bottom:565.395369pt;}
.yb5{bottom:572.728703pt;}
.y49{bottom:572.742037pt;}
.y1a3{bottom:572.755503pt;}
.y2b{bottom:572.768703pt;}
.y63{bottom:575.342171pt;}
.yf{bottom:583.382172pt;}
.yd0{bottom:583.395372pt;}
.y157{bottom:583.408705pt;}
.ya3{bottom:583.422172pt;}
.y13d{bottom:586.702039pt;}
.y17e{bottom:594.008841pt;}
.y194{bottom:594.022041pt;}
.yb4{bottom:594.035374pt;}
.y48{bottom:594.048841pt;}
.y1b3{bottom:594.062041pt;}
.y2a{bottom:594.088841pt;}
.ye{bottom:604.702043pt;}
.y7c{bottom:604.715510pt;}
.ya2{bottom:604.728710pt;}
.y165{bottom:604.742043pt;}
.y62{bottom:607.315377pt;}
.y1b9{bottom:615.342179pt;}
.y47{bottom:615.355379pt;}
.y170{bottom:615.368712pt;}
.y1aa{bottom:615.382179pt;}
.y29{bottom:615.395379pt;}
.y13c{bottom:618.675513pt;}
.y17d{bottom:625.995381pt;}
.yd{bottom:626.008847pt;}
.ye0{bottom:626.022047pt;}
.y156{bottom:626.035381pt;}
.ya1{bottom:626.048847pt;}
.yb3{bottom:636.662049pt;}
.y46{bottom:636.675516pt;}
.y100{bottom:636.688716pt;}
.y28{bottom:636.702049pt;}
.y1be{bottom:636.715516pt;}
.y61{bottom:639.302183pt;}
.y17c{bottom:647.302185pt;}
.ya0{bottom:647.355385pt;}
.y13b{bottom:650.648719pt;}
.y193{bottom:657.968854pt;}
.yc{bottom:657.982054pt;}
.ydf{bottom:657.995387pt;}
.y7b{bottom:658.008854pt;}
.y27{bottom:658.022054pt;}
.y60{bottom:660.608721pt;}
.y136{bottom:667.905389pt;}
.yb2{bottom:668.648723pt;}
.ycf{bottom:668.662056pt;}
.yff{bottom:668.675523pt;}
.y17b{bottom:679.288725pt;}
.yfb{bottom:679.302191pt;}
.y7a{bottom:679.315391pt;}
.y26{bottom:679.328725pt;}
.y138{bottom:685.622059pt;}
.y192{bottom:689.942060pt;}
.y45{bottom:689.955393pt;}
.yb{bottom:689.968860pt;}
.yde{bottom:689.982060pt;}
.y5f{bottom:692.582061pt;}
.y13a{bottom:696.286328pt;}
.y17a{bottom:700.595529pt;}
.yfa{bottom:700.622062pt;}
.y79{bottom:700.635529pt;}
.y155{bottom:700.648729pt;}
.y137{bottom:706.942064pt;}
.y1b8{bottom:711.262198pt;}
.ya{bottom:711.275398pt;}
.ydd{bottom:711.288731pt;}
.y25{bottom:711.302198pt;}
.y139{bottom:717.592999pt;}
.y191{bottom:721.915400pt;}
.y44{bottom:721.928733pt;}
.y78{bottom:721.942067pt;}
.y154{bottom:721.955400pt;}
.y164{bottom:721.968733pt;}
.y5e{bottom:724.555400pt;}
.y179{bottom:732.568735pt;}
.yce{bottom:732.595402pt;}
.ybf{bottom:732.608735pt;}
.y24{bottom:732.622069pt;}
.y9{bottom:743.248737pt;}
.y88{bottom:743.262071pt;}
.y9f{bottom:743.275404pt;}
.y130{bottom:746.500471pt;}
.y43{bottom:753.902073pt;}
.y77{bottom:753.915406pt;}
.y23{bottom:753.928740pt;}
.y5d{bottom:756.528740pt;}
.y133{bottom:764.222075pt;}
.y178{bottom:764.555408pt;}
.y87{bottom:764.568742pt;}
.ybe{bottom:764.582075pt;}
.y9e{bottom:764.595408pt;}
.y190{bottom:775.208744pt;}
.y8{bottom:775.222077pt;}
.y22{bottom:775.235411pt;}
.y132{bottom:785.528746pt;}
.y135{bottom:785.537279pt;}
.y177{bottom:785.862079pt;}
.y42{bottom:785.875413pt;}
.ybd{bottom:785.888746pt;}
.y9d{bottom:785.902079pt;}
.y5c{bottom:789.865413pt;}
.y76{bottom:796.542081pt;}
.y21{bottom:796.555415pt;}
.y134{bottom:806.843950pt;}
.y131{bottom:806.848750pt;}
.y5b{bottom:807.195417pt;}
.y7{bottom:807.208750pt;}
.y41{bottom:817.848752pt;}
.y20{bottom:817.862086pt;}
.y153{bottom:817.875419pt;}
.y16f{bottom:828.502088pt;}
.y6{bottom:828.515421pt;}
.y9c{bottom:828.528755pt;}
.y176{bottom:839.155423pt;}
.y5a{bottom:839.168757pt;}
.y152{bottom:839.182090pt;}
.y12d{bottom:846.416891pt;}
.y40{bottom:849.822092pt;}
.y1f{bottom:849.835425pt;}
.y16e{bottom:860.475428pt;}
.yef{bottom:860.488761pt;}
.y5{bottom:860.502094pt;}
.y12f{bottom:864.142095pt;}
.y59{bottom:871.142096pt;}
.y3f{bottom:881.795432pt;}
.y4{bottom:881.808765pt;}
.y75{bottom:892.448767pt;}
.y104{bottom:892.462101pt;}
.y3{bottom:903.115436pt;}
.y3e{bottom:913.768772pt;}
.y12c{bottom:921.435440pt;}
.y2{bottom:924.435494pt;}
.y12b{bottom:942.742164pt;}
.y1{bottom:945.742165pt;}
.h11{height:35.546882pt;}
.h5{height:41.015633pt;}
.hd{height:43.223075pt;}
.h4{height:43.375009pt;}
.h3{height:44.468759pt;}
.he{height:53.583077pt;}
.h6{height:54.276411pt;}
.h1{height:62.812513pt;}
.h2{height:64.500013pt;}
.ha{height:74.694548pt;}
.h10{height:75.094548pt;}
.h8{height:96.099486pt;}
.h7{height:96.192819pt;}
.hf{height:96.499486pt;}
.hc{height:96.606153pt;}
.hb{height:105.416254pt;}
.h9{height:105.435454pt;}
.h0{height:1056.000000pt;}
.w3{width:124.733358pt;}
.w2{width:128.000026pt;}
.w4{width:158.999898pt;}
.w1{width:203.066707pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:25.066672pt;}
.x49{left:49.000010pt;}
.x1{left:96.000019pt;}
.x48{left:98.000020pt;}
.x5{left:100.000020pt;}
.x53{left:101.733354pt;}
.x88{left:105.600021pt;}
.xa{left:120.000024pt;}
.x78{left:129.601586pt;}
.x2{left:142.653362pt;}
.xb{left:144.000029pt;}
.x4a{left:147.000029pt;}
.x34{left:148.000030pt;}
.x6{left:150.664030pt;}
.x25{left:153.320031pt;}
.x57{left:156.000031pt;}
.x7{left:158.664032pt;}
.x3a{left:160.562565pt;}
.x4{left:165.786700pt;}
.x3b{left:168.562567pt;}
.x38{left:172.882835pt;}
.x89{left:174.920035pt;}
.x59{left:179.106702pt;}
.x39{left:180.882836pt;}
.x11{left:185.746704pt;}
.x62{left:188.000038pt;}
.x24{left:191.066705pt;}
.x85{left:192.880039pt;}
.x5f{left:195.546972pt;}
.x8e{left:196.440039pt;}
.x23{left:198.066706pt;}
.x26{left:199.520040pt;}
.x8d{left:202.195374pt;}
.x60{left:203.546974pt;}
.x2a{left:204.880041pt;}
.x43{left:206.804708pt;}
.x56{left:210.106709pt;}
.x5d{left:211.533376pt;}
.x66{left:213.320309pt;}
.x64{left:218.429777pt;}
.x67{left:221.320311pt;}
.x44{left:226.359379pt;}
.x3e{left:227.523512pt;}
.x46{left:228.773379pt;}
.x79{left:230.213379pt;}
.xe{left:232.867247pt;}
.x3f{left:235.523514pt;}
.xf{left:240.867248pt;}
.x8b{left:243.373382pt;}
.x22{left:248.086050pt;}
.x30{left:249.293383pt;}
.x8f{left:251.101650pt;}
.x1d{left:254.213384pt;}
.x36{left:257.453118pt;}
.x5a{left:259.106718pt;}
.x35{left:262.750053pt;}
.x31{left:265.626720pt;}
.x21{left:272.093388pt;}
.x12{left:274.601655pt;}
.x86{left:277.906722pt;}
.x95{left:279.070322pt;}
.x13{left:282.601657pt;}
.x96{left:286.171924pt;}
.x87{left:293.280059pt;}
.x1a{left:299.920060pt;}
.x45{left:303.093394pt;}
.x47{left:310.626729pt;}
.x14{left:315.507930pt;}
.x16{left:316.836063pt;}
.x2d{left:320.373397pt;}
.x7a{left:321.746731pt;}
.x15{left:323.507931pt;}
.x17{left:324.836065pt;}
.x40{left:326.187532pt;}
.x32{left:328.733399pt;}
.x41{left:334.187534pt;}
.x37{left:336.375134pt;}
.x1e{left:340.398468pt;}
.x68{left:344.390736pt;}
.x27{left:350.156337pt;}
.x4c{left:352.066737pt;}
.x8a{left:355.760071pt;}
.x8{left:357.382871pt;}
.x5e{left:359.500072pt;}
.x1f{left:360.400072pt;}
.x9{left:365.382873pt;}
.x33{left:366.826740pt;}
.x3{left:369.320074pt;}
.x20{left:376.840075pt;}
.x71{left:387.531278pt;}
.xc{left:392.164078pt;}
.x72{left:395.531279pt;}
.xd{left:397.492213pt;}
.x50{left:403.613547pt;}
.x65{left:408.386748pt;}
.x93{left:410.414082pt;}
.x94{left:415.742216pt;}
.x77{left:420.173417pt;}
.x42{left:431.523553pt;}
.x18{left:433.693420pt;}
.x8c{left:439.466755pt;}
.x61{left:442.875155pt;}
.x2e{left:447.437556pt;}
.x28{left:451.468890pt;}
.x2f{left:452.765691pt;}
.x6f{left:453.664091pt;}
.x6a{left:455.929825pt;}
.x3c{left:456.960091pt;}
.x51{left:458.000092pt;}
.x29{left:459.468892pt;}
.x70{left:461.664092pt;}
.x83{left:466.080093pt;}
.x7d{left:467.040093pt;}
.x4d{left:482.000096pt;}
.x7f{left:485.007964pt;}
.x6c{left:486.560097pt;}
.x80{left:492.109432pt;}
.x19{left:494.093432pt;}
.x54{left:498.000100pt;}
.x5b{left:505.239568pt;}
.x6b{left:507.929835pt;}
.x52{left:510.000102pt;}
.x69{left:510.933436pt;}
.x58{left:513.171969pt;}
.x90{left:520.507971pt;}
.x84{left:526.960105pt;}
.x7b{left:529.213439pt;}
.x3d{left:531.613440pt;}
.x91{left:532.757973pt;}
.x92{left:538.086108pt;}
.x75{left:545.346776pt;}
.x7e{left:549.693443pt;}
.x4e{left:559.000112pt;}
.x5c{left:565.239580pt;}
.x6d{left:574.093448pt;}
.x6e{left:575.398515pt;}
.x73{left:580.984516pt;}
.x55{left:584.733450pt;}
.x74{left:586.312651pt;}
.x4f{left:608.733455pt;}
.x7c{left:615.400123pt;}
.x1b{left:616.757990pt;}
.x76{left:619.986791pt;}
.x1c{left:624.757992pt;}
.x81{left:628.078259pt;}
.x82{left:635.179860pt;}
.x63{left:642.695462pt;}
.x2b{left:645.656396pt;}
.x2c{left:653.653464pt;}
.x10{left:663.906399pt;}
}




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