
    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_096fe29c0cb898701e049fda.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8a9fcb06842dfda8474a6d1d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_383bf9acedbb1d55361d25d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9012cffc78759b30f4af3da0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677246;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_a9cfd8b659c63ad5afb40dc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677246;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_511186da6e1b6d1e1068e11c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15c{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.240631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240631,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.241346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241346,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.242858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242858,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.m192{transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.244768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244768,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244968,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.245502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245502,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.245639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245639,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.245713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245713,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.245724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245724,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.245921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245921,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.246358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246358,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.246499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246499,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.247194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247194,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247218,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247337,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247354,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247452,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.247482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247482,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.247708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247708,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247999,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.m9e{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);}
.m5{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.248387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248387,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.248433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248433,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m15f{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);}
.me2{transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m18c{transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m18a{transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248849,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);}
.m190{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m101{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);}
.mea{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.248987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248987,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.me8{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);}
.m53{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.249051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249051,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.249081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249081,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);}
.m5c{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);}
.m113{transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);}
.m191{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.249199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249199,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.me1{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);}
.m90{transform:matrix(0.249237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249237,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249246,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.249249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249249,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m188{transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);}
.m10c{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);}
.m169{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m122{transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.m185{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);}
.m111{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);}
.m138{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.med{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);}
.m183{transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.mbd{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);}
.m5d{transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);}
.m11f{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);}
.m121{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);}
.maa{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m114{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);}
.m17a{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);}
.m18f{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.md4{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);}
.m12c{transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.mc7{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m5a{transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);}
.md5{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);}
.m98{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);}
.m1a{transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249596,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.m7c{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);}
.m18b{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);}
.ma0{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249606,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m86{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);}
.m6f{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);}
.m7e{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);}
.m6d{transform:matrix(0.249649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249649,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m117{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m189{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.m119{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);}
.m1c{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);}
.m18e{transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.mec{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249796,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249801,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m103{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);}
.m81{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m10{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m107{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);}
.m118{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.m57{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);}
.m15b{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);}
.m68{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);}
.m85{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m181{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);}
.m139{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);}
.m160{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m3e{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);}
.m6c{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);}
.m84{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);}
.m62{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);}
.m16d{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);}
.m2{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);}
.m14a{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);}
.mad{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);}
.m126{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);}
.m131{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);}
.m13e{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);}
.m4f{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);}
.m1e{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);}
.m26{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);}
.m154{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);}
.m1{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);}
.m12{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);}
.m83{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);}
.m134{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);}
.m137{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);}
.m46{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);}
.mb4{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);}
.mf7{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);}
.m16c{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);}
.m16{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);}
.m93{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);}
.mc8{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);}
.m170{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);}
.m22{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);}
.m13a{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);}
.m144{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);}
.m28{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);}
.m54{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);}
.m55{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);}
.m74{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);}
.mb5{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);}
.m127{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);}
.m29{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);}
.m3b{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);}
.m91{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);}
.mde{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);}
.mf{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);}
.m50{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);}
.md0{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);}
.m14b{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);}
.m13{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);}
.m4e{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);}
.m56{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);}
.m3a{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);}
.md1{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);}
.m2f{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);}
.m4c{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);}
.mfb{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);}
.m12e{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);}
.m140{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);}
.m3{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);}
.m30{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);}
.mf8{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);}
.m4{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);}
.md{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);}
.m19{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);}
.m3c{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);}
.m47{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);}
.m15{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);}
.m31{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);}
.mb1{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);}
.m39{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m66{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);}
.mda{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);}
.mf3{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);}
.m34{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);}
.m99{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);}
.ma8{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);}
.md3{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);}
.m142{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);}
.m41{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m70{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);}
.mc4{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);}
.m130{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);}
.m40{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);}
.m92{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m14f{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);}
.mbb{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);}
.m164{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);}
.me{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);}
.m6e{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);}
.mc3{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);}
.mf1{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);}
.m10e{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:47.929210px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.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;}
}
.ws3{word-spacing:-72.000014px;}
.ws1{word-spacing:-18.000004px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:36.000007px;}
.wsa{word-spacing:265.716053px;}
.ws9{word-spacing:279.225666px;}
.ws8{word-spacing:289.800058px;}
.ws6{word-spacing:293.724059px;}
.ws4{word-spacing:331.848066px;}
.ws5{word-spacing:476.364095px;}
.ws7{word-spacing:536.340107px;}
.ws2{word-spacing:536.378633px;}
._2{width:35.748007px;}
._5{width:116.837024px;}
._8{width:199.202219px;}
._1{width:227.915458px;}
._3{width:255.816051px;}
._6{width:371.700074px;}
._4{width:373.824075px;}
._7{width:379.800076px;}
._0{width:914.256183px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000014px;}
.fs2{font-size:81.000016px;}
.fs1{font-size:84.000017px;}
.y0{bottom:0.000000px;}
.yba{bottom:19.935304px;}
.yd5{bottom:43.910859px;}
.ybd{bottom:43.911009px;}
.y120{bottom:43.960059px;}
.yd9{bottom:67.886264px;}
.ye5{bottom:67.886414px;}
.y1d{bottom:112.764685px;}
.yd2{bottom:115.944686px;}
.y13e{bottom:115.959686px;}
.y82{bottom:116.754836px;}
.y99{bottom:128.724838px;}
.y83{bottom:128.739838px;}
.ya3{bottom:128.754838px;}
.y3b{bottom:128.769688px;}
.y10d{bottom:130.959689px;}
.y65{bottom:132.759839px;}
.y75{bottom:140.724841px;}
.y81{bottom:140.739841px;}
.y1c{bottom:148.734692px;}
.y11f{bottom:150.299792px;}
.yd1{bottom:151.914693px;}
.y13d{bottom:151.929693px;}
.y98{bottom:152.694693px;}
.ya2{bottom:152.724843px;}
.ye4{bottom:159.373444px;}
.yb3{bottom:164.694695px;}
.y80{bottom:164.709695px;}
.y3a{bottom:164.754845px;}
.y10c{bottom:166.929696px;}
.y64{bottom:168.744696px;}
.y121{bottom:170.289696px;}
.y74{bottom:176.694698px;}
.y52{bottom:176.739848px;}
.ye7{bottom:179.304698px;}
.y11e{bottom:182.271999px;}
.y1b{bottom:184.704849px;}
.yd0{bottom:187.884850px;}
.y13c{bottom:187.899850px;}
.y97{bottom:188.664700px;}
.ya1{bottom:188.694700px;}
.y39{bottom:188.724850px;}
.ye3{bottom:191.302001px;}
.y63{bottom:192.714701px;}
.yb2{bottom:200.664703px;}
.y7f{bottom:200.679703px;}
.y51{bottom:200.709703px;}
.y10b{bottom:202.899853px;}
.ye1{bottom:203.284303px;}
.ye6{bottom:203.289703px;}
.y73{bottom:212.664705px;}
.ya0{bottom:212.679705px;}
.y38{bottom:212.694705px;}
.y11b{bottom:214.803855px;}
.ye2{bottom:215.272005px;}
.y1a{bottom:220.674707px;}
.ycf{bottom:223.854707px;}
.y13b{bottom:223.869707px;}
.y96{bottom:224.634857px;}
.y144{bottom:224.664707px;}
.y62{bottom:228.684858px;}
.y11c{bottom:234.744709px;}
.yb1{bottom:236.634860px;}
.y7e{bottom:236.649860px;}
.y37{bottom:236.679710px;}
.y50{bottom:236.694710px;}
.y10a{bottom:238.869710px;}
.y19{bottom:244.659711px;}
.y11d{bottom:246.727012px;}
.ydf{bottom:247.803862px;}
.y72{bottom:248.634862px;}
.yce{bottom:259.824714px;}
.y13a{bottom:259.839714px;}
.y95{bottom:260.604715px;}
.y148{bottom:260.619715px;}
.y36{bottom:260.649865px;}
.y4f{bottom:260.664715px;}
.y61{bottom:264.654715px;}
.ye0{bottom:267.744716px;}
.y18{bottom:268.629866px;}
.yb0{bottom:272.604717px;}
.y7d{bottom:272.619717px;}
.y109{bottom:274.839717px;}
.y119{bottom:279.258868px;}
.yde{bottom:279.727018px;}
.y71{bottom:284.604719px;}
.y143{bottom:284.619719px;}
.ycd{bottom:295.794872px;}
.y139{bottom:295.809872px;}
.y94{bottom:296.574722px;}
.yaf{bottom:296.589722px;}
.y35{bottom:296.634872px;}
.y11a{bottom:299.199722px;}
.y60{bottom:300.624723px;}
.y17{bottom:305.931424px;}
.y7c{bottom:308.589724px;}
.y108{bottom:310.809875px;}
.y118{bottom:311.182025px;}
.yd8{bottom:312.253475px;}
.yae{bottom:320.559877px;}
.y70{bottom:320.574727px;}
.y142{bottom:320.589727px;}
.y34{bottom:320.604727px;}
.y5f{bottom:324.594877px;}
.ycc{bottom:331.764729px;}
.y138{bottom:331.779729px;}
.ydb{bottom:332.184879px;}
.y93{bottom:332.544879px;}
.y147{bottom:332.574729px;}
.y4e{bottom:332.604729px;}
.y116{bottom:343.713881px;}
.ydd{bottom:344.182031px;}
.y7b{bottom:344.559881px;}
.y107{bottom:346.779732px;}
.y5e{bottom:348.579882px;}
.yd7{bottom:356.164334px;}
.yda{bottom:356.169884px;}
.yad{bottom:356.529734px;}
.y6f{bottom:356.544884px;}
.y141{bottom:356.559884px;}
.y33{bottom:356.589734px;}
.y117{bottom:363.654735px;}
.ycb{bottom:367.734736px;}
.y137{bottom:367.749736px;}
.ydc{bottom:368.152036px;}
.y92{bottom:368.529736px;}
.y5d{bottom:372.549737px;}
.y115{bottom:375.637038px;}
.y7a{bottom:380.529739px;}
.y16{bottom:380.559889px;}
.y106{bottom:382.749739px;}
.y91{bottom:392.499741px;}
.y6e{bottom:392.514741px;}
.y140{bottom:392.529741px;}
.yd4{bottom:400.683893px;}
.yca{bottom:403.704893px;}
.y136{bottom:403.719893px;}
.y15{bottom:404.529743px;}
.y113{bottom:408.168894px;}
.y5c{bottom:408.519894px;}
.y79{bottom:416.499746px;}
.y4d{bottom:416.529746px;}
.y32{bottom:416.544896px;}
.y105{bottom:418.719896px;}
.yd6{bottom:420.624747px;}
.y114{bottom:428.109748px;}
.y90{bottom:428.469748px;}
.y6d{bottom:428.484748px;}
.y14{bottom:428.499748px;}
.yc9{bottom:439.674750px;}
.y135{bottom:439.689750px;}
.y112{bottom:440.092050px;}
.y31{bottom:440.514751px;}
.y5b{bottom:445.821452px;}
.yac{bottom:452.454753px;}
.y78{bottom:452.469753px;}
.y13{bottom:452.484753px;}
.y4c{bottom:452.499753px;}
.y104{bottom:454.689753px;}
.y8f{bottom:464.439755px;}
.y6c{bottom:464.454755px;}
.yd3{bottom:465.129455px;}
.y110{bottom:472.623907px;}
.yc8{bottom:475.644758px;}
.y134{bottom:475.659758px;}
.y12{bottom:476.454758px;}
.y30{bottom:476.484758px;}
.yab{bottom:488.424760px;}
.y77{bottom:488.439760px;}
.y9f{bottom:488.454760px;}
.y103{bottom:490.659761px;}
.y111{bottom:492.564761px;}
.yc6{bottom:495.063911px;}
.y8e{bottom:500.409762px;}
.y6b{bottom:500.424762px;}
.y4b{bottom:500.454762px;}
.y10f{bottom:504.547063px;}
.y133{bottom:511.629765px;}
.y9e{bottom:512.424765px;}
.y11{bottom:512.439765px;}
.y2f{bottom:512.454765px;}
.yc7{bottom:515.004765px;}
.yaa{bottom:524.394767px;}
.y76{bottom:524.409767px;}
.y102{bottom:526.629768px;}
.yc5{bottom:526.987068px;}
.y8d{bottom:536.379770px;}
.y10{bottom:536.409770px;}
.y4a{bottom:536.424770px;}
.y2e{bottom:536.439770px;}
.y10e{bottom:537.069470px;}
.y132{bottom:547.599922px;}
.y9d{bottom:548.394772px;}
.y14f{bottom:548.409772px;}
.yc2{bottom:559.518924px;}
.ya9{bottom:560.364774px;}
.yf{bottom:560.379774px;}
.y2d{bottom:560.409774px;}
.y5a{bottom:560.424774px;}
.y101{bottom:562.599925px;}
.y8c{bottom:572.349927px;}
.y9c{bottom:572.364777px;}
.y13f{bottom:572.379777px;}
.yc3{bottom:579.459778px;}
.yff{bottom:582.018929px;}
.y131{bottom:583.569779px;}
.ye{bottom:584.364779px;}
.y49{bottom:584.379779px;}
.y59{bottom:584.394779px;}
.yc4{bottom:591.442081px;}
.y6a{bottom:596.349932px;}
.y2c{bottom:596.394782px;}
.y100{bottom:601.959783px;}
.y8b{bottom:608.319784px;}
.yd{bottom:608.334784px;}
.y130{bottom:619.539786px;}
.y9b{bottom:620.319786px;}
.y48{bottom:620.349936px;}
.y2b{bottom:620.364786px;}
.yc0{bottom:623.973937px;}
.y69{bottom:632.319789px;}
.y146{bottom:642.299891px;}
.yc1{bottom:643.914791px;}
.y8a{bottom:644.289791px;}
.yc{bottom:644.304941px;}
.y47{bottom:644.319791px;}
.yfa{bottom:646.468542px;}
.y12f{bottom:655.509944px;}
.ybf{bottom:655.897094px;}
.ya8{bottom:656.289794px;}
.y9a{bottom:656.304944px;}
.y14e{bottom:656.319794px;}
.y58{bottom:656.334794px;}
.y2a{bottom:656.349944px;}
.yfc{bottom:666.399796px;}
.y68{bottom:668.289796px;}
.y46{bottom:668.304946px;}
.yfe{bottom:678.397098px;}
.y89{bottom:680.259948px;}
.yb{bottom:680.274798px;}
.y29{bottom:680.319798px;}
.ybc{bottom:688.428950px;}
.yfb{bottom:690.384950px;}
.y12e{bottom:691.479801px;}
.ya7{bottom:692.259951px;}
.y45{bottom:692.274801px;}
.y14d{bottom:692.289801px;}
.y57{bottom:692.304951px;}
.yfd{bottom:702.367103px;}
.y67{bottom:704.259953px;}
.ybe{bottom:708.369804px;}
.y88{bottom:716.244806px;}
.y28{bottom:716.289806px;}
.ybb{bottom:720.352106px;}
.y12d{bottom:727.449808px;}
.y145{bottom:728.229808px;}
.y44{bottom:728.244808px;}
.y14c{bottom:728.259958px;}
.y56{bottom:728.274808px;}
.yf8{bottom:734.898959px;}
.y87{bottom:740.214960px;}
.y66{bottom:740.229810px;}
.y27{bottom:740.274810px;}
.ya6{bottom:752.214963px;}
.ya{bottom:752.229813px;}
.yb9{bottom:752.874513px;}
.yf9{bottom:754.839963px;}
.y12c{bottom:763.419965px;}
.y43{bottom:764.214965px;}
.y14b{bottom:764.229815px;}
.y26{bottom:764.244815px;}
.y9{bottom:776.199818px;}
.y12a{bottom:782.838969px;}
.ya5{bottom:788.184820px;}
.yf6{bottom:799.353972px;}
.y86{bottom:800.169972px;}
.y42{bottom:800.184822px;}
.y25{bottom:800.214972px;}
.y12b{bottom:802.779823px;}
.yb8{bottom:812.154825px;}
.y8{bottom:812.169825px;}
.y129{bottom:814.762125px;}
.yf7{bottom:819.294826px;}
.ya4{bottom:824.154827px;}
.y24{bottom:824.184827px;}
.yf5{bottom:831.277129px;}
.y85{bottom:836.154830px;}
.y41{bottom:836.169830px;}
.y127{bottom:847.293982px;}
.yb7{bottom:848.124832px;}
.y7{bottom:848.139832px;}
.y23{bottom:848.169832px;}
.y84{bottom:860.124834px;}
.y40{bottom:860.139834px;}
.yf2{bottom:863.803585px;}
.y128{bottom:867.234836px;}
.y22{bottom:872.139837px;}
.y126{bottom:879.217138px;}
.yf4{bottom:883.734839px;}
.y6{bottom:884.109839px;}
.y14a{bottom:884.124839px;}
.yf1{bottom:895.732142px;}
.y3f{bottom:896.109842px;}
.y21{bottom:896.124842px;}
.yef{bottom:907.714444px;}
.yf3{bottom:907.719844px;}
.yb6{bottom:908.079844px;}
.y149{bottom:908.094844px;}
.y55{bottom:908.109844px;}
.y123{bottom:911.748995px;}
.yf0{bottom:919.702146px;}
.y5{bottom:920.079846px;}
.y20{bottom:920.094846px;}
.y124{bottom:931.689849px;}
.y54{bottom:932.079849px;}
.y125{bottom:943.672151px;}
.y1f{bottom:944.064851px;}
.yec{bottom:952.228603px;}
.y4{bottom:956.049854px;}
.y53{bottom:956.064854px;}
.yb5{bottom:968.034856px;}
.y1e{bottom:968.049856px;}
.yee{bottom:972.159857px;}
.y122{bottom:976.204008px;}
.y3e{bottom:980.034858px;}
.yeb{bottom:984.157159px;}
.y3{bottom:992.019861px;}
.ye9{bottom:996.139462px;}
.yed{bottom:996.144862px;}
.yb4{bottom:1004.004863px;}
.yea{bottom:1008.127164px;}
.y3d{bottom:1016.004866px;}
.y2{bottom:1027.989868px;}
.y3c{bottom:1039.989930px;}
.ye8{bottom:1060.584935px;}
.y1{bottom:1063.959935px;}
.hb{height:36.620407px;}
.h15{height:36.680407px;}
.h6{height:36.875407px;}
.h4{height:48.761729px;}
.h1b{height:59.400012px;}
.h8{height:60.025962px;}
.h12{height:60.145962px;}
.h18{height:60.160962px;}
.h1d{height:60.250962px;}
.h9{height:60.355962px;}
.he{height:60.445962px;}
.h13{height:60.475962px;}
.h19{height:60.490962px;}
.hc{height:60.565962px;}
.h1e{height:60.580962px;}
.h16{height:60.625962px;}
.ha{height:60.685962px;}
.h7{height:60.820962px;}
.h1f{height:60.910962px;}
.h17{height:60.955962px;}
.h1c{height:61.045962px;}
.h3{height:70.628920px;}
.h2{height:70.664077px;}
.h1{height:72.562515px;}
.h20{height:81.632829px;}
.h11{height:84.571367px;}
.h5{height:84.656267px;}
.hf{height:84.751367px;}
.h14{height:84.781367px;}
.hd{height:84.871367px;}
.h10{height:85.021367px;}
.h1a{height:118.593286px;}
.h0{height:1188.000000px;}
.w2{width:96.225019px;}
.wa{width:100.350020px;}
.wb{width:124.425025px;}
.wc{width:124.875025px;}
.w3{width:163.800033px;}
.w8{width:167.100033px;}
.w9{width:173.925035px;}
.wd{width:174.600035px;}
.w5{width:176.325035px;}
.w1{width:193.350039px;}
.w7{width:231.750046px;}
.w4{width:239.625048px;}
.w6{width:286.125057px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x95{left:1.125000px;}
.xa0{left:51.000010px;}
.x1{left:108.000022px;}
.x94{left:110.250022px;}
.x99{left:111.375022px;}
.xc6{left:126.990025px;}
.x2b{left:135.000027px;}
.xc4{left:137.475027px;}
.x5{left:152.670031px;}
.xe{left:162.000032px;}
.x3{left:163.470033px;}
.x4{left:164.490033px;}
.x93{left:165.990033px;}
.x8{left:168.015034px;}
.x50{left:169.995034px;}
.x79{left:171.000034px;}
.x2{left:174.495035px;}
.x51{left:175.995035px;}
.xcc{left:178.989336px;}
.x41{left:181.485036px;}
.x6{left:182.670037px;}
.x43{left:184.335037px;}
.x89{left:190.980038px;}
.x7{left:195.030039px;}
.xba{left:196.185039px;}
.x30{left:197.505040px;}
.x8e{left:198.990040px;}
.x5e{left:200.535040px;}
.x4d{left:201.990040px;}
.x1f{left:205.680041px;}
.x44{left:208.335042px;}
.xa{left:214.989343px;}
.x59{left:216.000043px;}
.x58{left:217.470043px;}
.x61{left:219.495044px;}
.x8f{left:222.000044px;}
.xb{left:223.989345px;}
.x92{left:225.840045px;}
.xa8{left:229.139746px;}
.x60{left:230.505046px;}
.x16{left:232.290046px;}
.x49{left:234.975047px;}
.xb3{left:236.170997px;}
.x5d{left:238.485048px;}
.x77{left:240.480048px;}
.x82{left:243.015049px;}
.x7e{left:244.140049px;}
.x57{left:245.505049px;}
.xc{left:246.540049px;}
.x65{left:247.650050px;}
.x55{left:251.115050px;}
.x31{left:253.470051px;}
.x64{left:254.490051px;}
.x53{left:255.510051px;}
.x66{left:257.151051px;}
.x52{left:258.990052px;}
.x9d{left:261.165052px;}
.x3c{left:262.995203px;}
.x5a{left:266.010053px;}
.x48{left:269.520054px;}
.x3d{left:271.995204px;}
.x6f{left:273.165055px;}
.x8a{left:274.470055px;}
.x17{left:278.280056px;}
.xa6{left:280.725056px;}
.x42{left:283.020057px;}
.x21{left:285.975057px;}
.x81{left:287.145057px;}
.xa2{left:288.480058px;}
.x71{left:290.160058px;}
.x70{left:291.666058px;}
.x4a{left:292.965059px;}
.x75{left:294.480059px;}
.x74{left:298.110060px;}
.x36{left:300.915060px;}
.x62{left:302.475060px;}
.x96{left:304.875061px;}
.x9c{left:306.975061px;}
.x6e{left:308.100062px;}
.x4c{left:309.165062px;}
.x7a{left:310.701062px;}
.x5f{left:313.635063px;}
.x4f{left:316.530063px;}
.x7f{left:319.515064px;}
.x7d{left:320.790064px;}
.x90{left:323.775065px;}
.x5b{left:325.530065px;}
.x4b{left:329.970066px;}
.x56{left:331.440066px;}
.x4e{left:332.715067px;}
.x67{left:334.641067px;}
.x78{left:336.495067px;}
.xb4{left:337.965068px;}
.x69{left:339.975068px;}
.x68{left:343.641069px;}
.xa3{left:346.456119px;}
.x6a{left:349.476070px;}
.x5c{left:352.500071px;}
.x63{left:353.880071px;}
.xb9{left:355.438571px;}
.x6b{left:358.476072px;}
.x80{left:360.495072px;}
.xbe{left:362.460972px;}
.x87{left:363.960073px;}
.x54{left:367.515074px;}
.xb8{left:369.808724px;}
.xc1{left:370.924874px;}
.x7b{left:372.480074px;}
.x83{left:374.010075px;}
.x25{left:377.460075px;}
.xb1{left:379.432726px;}
.xbf{left:380.460976px;}
.xcd{left:381.582826px;}
.x37{left:383.895077px;}
.x8b{left:385.140077px;}
.x7c{left:389.235078px;}
.xce{left:390.582828px;}
.xb6{left:393.407329px;}
.x91{left:394.920079px;}
.x1d{left:398.325080px;}
.x14{left:401.400080px;}
.x97{left:402.750081px;}
.x9a{left:404.475081px;}
.xb5{left:411.442432px;}
.x3f{left:413.355083px;}
.x32{left:415.245083px;}
.xd1{left:417.401483px;}
.xb2{left:419.440584px;}
.x20{left:420.600084px;}
.x29{left:422.865085px;}
.xd{left:425.775085px;}
.x6d{left:427.485085px;}
.x12{left:429.105086px;}
.xb7{left:431.428736px;}
.x88{left:432.450086px;}
.xaf{left:434.944437px;}
.x26{left:436.455087px;}
.x33{left:438.570088px;}
.x40{left:441.345088px;}
.xb0{left:443.944439px;}
.x6c{left:445.335089px;}
.x2a{left:446.355089px;}
.x18{left:451.185090px;}
.xa4{left:454.500091px;}
.x3e{left:455.520091px;}
.xc5{left:458.038592px;}
.x22{left:459.525092px;}
.x11{left:463.320093px;}
.xac{left:464.932743px;}
.x1b{left:466.444443px;}
.xc9{left:471.705094px;}
.x45{left:473.190095px;}
.x1c{left:475.444445px;}
.x15{left:478.905096px;}
.xab{left:481.904346px;}
.xc2{left:483.389797px;}
.x76{left:487.408747px;}
.x19{left:492.180098px;}
.x46{left:496.350099px;}
.xc3{left:501.389800px;}
.xbc{left:503.970101px;}
.x85{left:516.045103px;}
.x27{left:519.435104px;}
.x38{left:522.358004px;}
.x23{left:525.405105px;}
.x39{left:528.352156px;}
.xad{left:534.972707px;}
.xa9{left:539.921058px;}
.xae{left:543.972709px;}
.xaa{left:548.921060px;}
.x1a{left:554.760111px;}
.xa5{left:556.875111px;}
.xa7{left:558.225112px;}
.x98{left:568.125114px;}
.x9b{left:569.925114px;}
.x9e{left:576.000115px;}
.x9f{left:577.500116px;}
.xa1{left:586.500117px;}
.x72{left:602.540971px;}
.xbd{left:604.410121px;}
.x86{left:607.035121px;}
.x24{left:608.385122px;}
.xca{left:610.168022px;}
.x73{left:611.540972px;}
.x13{left:613.005123px;}
.xcb{left:616.162173px;}
.xcf{left:618.544774px;}
.xd0{left:627.544776px;}
.x8c{left:636.045127px;}
.x34{left:659.760132px;}
.x47{left:660.825132px;}
.x8d{left:675.030135px;}
.x2e{left:679.007986px;}
.x9{left:681.829186px;}
.x35{left:683.250137px;}
.x2f{left:685.002137px;}
.xc8{left:686.328437px;}
.xf{left:687.690138px;}
.x2c{left:690.996288px;}
.x3a{left:693.072889px;}
.x1e{left:695.880139px;}
.x2d{left:696.990439px;}
.x3b{left:702.072890px;}
.xc7{left:709.013392px;}
.x84{left:721.380144px;}
.x28{left:731.998646px;}
.xbb{left:741.345148px;}
.xc0{left:742.380148px;}
.x10{left:786.675157px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:42.603742pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ws3{word-spacing:-64.000013pt;}
.ws1{word-spacing:-16.000003pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:32.000006pt;}
.wsa{word-spacing:236.192047pt;}
.ws9{word-spacing:248.200592pt;}
.ws8{word-spacing:257.600052pt;}
.ws6{word-spacing:261.088052pt;}
.ws4{word-spacing:294.976059pt;}
.ws5{word-spacing:423.434751pt;}
.ws7{word-spacing:476.746762pt;}
.ws2{word-spacing:476.781007pt;}
._2{width:31.776006pt;}
._5{width:103.855133pt;}
._8{width:177.068639pt;}
._1{width:202.591518pt;}
._3{width:227.392045pt;}
._6{width:330.400066pt;}
._4{width:332.288066pt;}
._7{width:337.600068pt;}
._0{width:812.672163pt;}
.fs0{font-size:64.000013pt;}
.fs2{font-size:72.000014pt;}
.fs1{font-size:74.666682pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:17.720270pt;}
.yd5{bottom:39.031874pt;}
.ybd{bottom:39.032008pt;}
.y120{bottom:39.075608pt;}
.yd9{bottom:60.343345pt;}
.ye5{bottom:60.343479pt;}
.y1d{bottom:100.235276pt;}
.yd2{bottom:103.061943pt;}
.y13e{bottom:103.075276pt;}
.y82{bottom:103.782076pt;}
.y99{bottom:114.422078pt;}
.y83{bottom:114.435412pt;}
.ya3{bottom:114.448745pt;}
.y3b{bottom:114.461945pt;}
.y10d{bottom:116.408612pt;}
.y65{bottom:118.008746pt;}
.y75{bottom:125.088747pt;}
.y81{bottom:125.102080pt;}
.y1c{bottom:132.208615pt;}
.y11f{bottom:133.599816pt;}
.yd1{bottom:135.035282pt;}
.y13d{bottom:135.048616pt;}
.y98{bottom:135.728616pt;}
.ya2{bottom:135.755416pt;}
.ye4{bottom:141.665284pt;}
.yb3{bottom:146.395285pt;}
.y80{bottom:146.408618pt;}
.y3a{bottom:146.448751pt;}
.y10c{bottom:148.381952pt;}
.y64{bottom:149.995285pt;}
.y121{bottom:151.368619pt;}
.y74{bottom:157.061954pt;}
.y52{bottom:157.102087pt;}
.ye7{bottom:159.381954pt;}
.y11e{bottom:162.019555pt;}
.y1b{bottom:164.182088pt;}
.yd0{bottom:167.008756pt;}
.y13c{bottom:167.022089pt;}
.y97{bottom:167.701956pt;}
.ya1{bottom:167.728622pt;}
.y39{bottom:167.755422pt;}
.ye3{bottom:170.046223pt;}
.y63{bottom:171.301956pt;}
.yb2{bottom:178.368624pt;}
.y7f{bottom:178.381958pt;}
.y51{bottom:178.408624pt;}
.y10b{bottom:180.355425pt;}
.ye1{bottom:180.697158pt;}
.ye6{bottom:180.701958pt;}
.y73{bottom:189.035293pt;}
.ya0{bottom:189.048627pt;}
.y38{bottom:189.061960pt;}
.y11b{bottom:190.936760pt;}
.ye2{bottom:191.352894pt;}
.y1a{bottom:196.155295pt;}
.ycf{bottom:198.981962pt;}
.y13b{bottom:198.995295pt;}
.y96{bottom:199.675429pt;}
.y144{bottom:199.701962pt;}
.y62{bottom:203.275429pt;}
.y11c{bottom:208.661964pt;}
.yb1{bottom:210.342098pt;}
.y7e{bottom:210.355431pt;}
.y37{bottom:210.381964pt;}
.y50{bottom:210.395298pt;}
.y10a{bottom:212.328631pt;}
.y19{bottom:217.475299pt;}
.y11d{bottom:219.312899pt;}
.ydf{bottom:220.270100pt;}
.y72{bottom:221.008766pt;}
.yce{bottom:230.955302pt;}
.y13a{bottom:230.968635pt;}
.y95{bottom:231.648635pt;}
.y148{bottom:231.661968pt;}
.y36{bottom:231.688768pt;}
.y4f{bottom:231.701968pt;}
.y61{bottom:235.248636pt;}
.ye0{bottom:237.995303pt;}
.y18{bottom:238.782103pt;}
.yb0{bottom:242.315304pt;}
.y7d{bottom:242.328637pt;}
.y109{bottom:244.301971pt;}
.y119{bottom:248.230105pt;}
.yde{bottom:248.646239pt;}
.y71{bottom:252.981973pt;}
.y143{bottom:252.995306pt;}
.ycd{bottom:262.928775pt;}
.y139{bottom:262.942108pt;}
.y94{bottom:263.621975pt;}
.yaf{bottom:263.635308pt;}
.y35{bottom:263.675442pt;}
.y11a{bottom:265.955309pt;}
.y60{bottom:267.221976pt;}
.y17{bottom:271.939043pt;}
.y7c{bottom:274.301977pt;}
.y108{bottom:276.275444pt;}
.y118{bottom:276.606244pt;}
.yd8{bottom:277.558644pt;}
.yae{bottom:284.942112pt;}
.y70{bottom:284.955312pt;}
.y142{bottom:284.968646pt;}
.y34{bottom:284.981979pt;}
.y5f{bottom:288.528780pt;}
.ycc{bottom:294.901981pt;}
.y138{bottom:294.915314pt;}
.ydb{bottom:295.275448pt;}
.y93{bottom:295.595448pt;}
.y147{bottom:295.621981pt;}
.y4e{bottom:295.648648pt;}
.y116{bottom:305.523450pt;}
.ydd{bottom:305.939583pt;}
.y7b{bottom:306.275450pt;}
.y107{bottom:308.248650pt;}
.y5e{bottom:309.848784pt;}
.yd7{bottom:316.590519pt;}
.yda{bottom:316.595452pt;}
.yad{bottom:316.915319pt;}
.y6f{bottom:316.928786pt;}
.y141{bottom:316.942119pt;}
.y33{bottom:316.968652pt;}
.y117{bottom:323.248653pt;}
.ycb{bottom:326.875321pt;}
.y137{bottom:326.888654pt;}
.ydc{bottom:327.246254pt;}
.y92{bottom:327.581988pt;}
.y5d{bottom:331.155322pt;}
.y115{bottom:333.899589pt;}
.y7a{bottom:338.248656pt;}
.y16{bottom:338.275456pt;}
.y106{bottom:340.221990pt;}
.y91{bottom:348.888659pt;}
.y6e{bottom:348.901992pt;}
.y140{bottom:348.915325pt;}
.yd4{bottom:356.163460pt;}
.yca{bottom:358.848794pt;}
.y136{bottom:358.862127pt;}
.y15{bottom:359.581994pt;}
.y113{bottom:362.816795pt;}
.y5c{bottom:363.128795pt;}
.y79{bottom:370.221996pt;}
.y4d{bottom:370.248663pt;}
.y32{bottom:370.262130pt;}
.y105{bottom:372.195463pt;}
.yd6{bottom:373.888664pt;}
.y114{bottom:380.541998pt;}
.y90{bottom:380.861998pt;}
.y6d{bottom:380.875332pt;}
.y14{bottom:380.888665pt;}
.yc9{bottom:390.822000pt;}
.y135{bottom:390.835334pt;}
.y112{bottom:391.192934pt;}
.y31{bottom:391.568667pt;}
.y5b{bottom:396.285735pt;}
.yac{bottom:402.182003pt;}
.y78{bottom:402.195336pt;}
.y13{bottom:402.208669pt;}
.y4c{bottom:402.222003pt;}
.y104{bottom:404.168670pt;}
.y8f{bottom:412.835338pt;}
.y6c{bottom:412.848671pt;}
.yd3{bottom:413.448405pt;}
.y110{bottom:420.110139pt;}
.yc8{bottom:422.795340pt;}
.y134{bottom:422.808673pt;}
.y12{bottom:423.515340pt;}
.y30{bottom:423.542007pt;}
.yab{bottom:434.155342pt;}
.y77{bottom:434.168676pt;}
.y9f{bottom:434.182009pt;}
.y103{bottom:436.142009pt;}
.y111{bottom:437.835343pt;}
.yc6{bottom:440.056810pt;}
.y8e{bottom:444.808678pt;}
.y6b{bottom:444.822011pt;}
.y4b{bottom:444.848678pt;}
.y10f{bottom:448.486278pt;}
.y133{bottom:454.782013pt;}
.y9e{bottom:455.488680pt;}
.y11{bottom:455.502013pt;}
.y2f{bottom:455.515347pt;}
.yc7{bottom:457.782014pt;}
.yaa{bottom:466.128682pt;}
.y76{bottom:466.142015pt;}
.y102{bottom:468.115349pt;}
.yc5{bottom:468.432949pt;}
.y8d{bottom:476.782017pt;}
.y10{bottom:476.808684pt;}
.y4a{bottom:476.822017pt;}
.y2e{bottom:476.835351pt;}
.y10e{bottom:477.395084pt;}
.y132{bottom:486.755486pt;}
.y9d{bottom:487.462020pt;}
.y14f{bottom:487.475353pt;}
.yc2{bottom:497.350155pt;}
.ya9{bottom:498.102022pt;}
.yf{bottom:498.115355pt;}
.y2d{bottom:498.142022pt;}
.y5a{bottom:498.155355pt;}
.y101{bottom:500.088822pt;}
.y8c{bottom:508.755491pt;}
.y9c{bottom:508.768691pt;}
.y13f{bottom:508.782024pt;}
.yc3{bottom:515.075358pt;}
.yff{bottom:517.350159pt;}
.y131{bottom:518.728693pt;}
.ye{bottom:519.435359pt;}
.y49{bottom:519.448693pt;}
.y59{bottom:519.462026pt;}
.yc4{bottom:525.726294pt;}
.y6a{bottom:530.088828pt;}
.y2c{bottom:530.128695pt;}
.y100{bottom:535.075362pt;}
.y8b{bottom:540.728697pt;}
.yd{bottom:540.742030pt;}
.y130{bottom:550.702032pt;}
.y9b{bottom:551.395366pt;}
.y48{bottom:551.422166pt;}
.y2b{bottom:551.435366pt;}
.yc0{bottom:554.643500pt;}
.y69{bottom:562.062035pt;}
.y146{bottom:570.933236pt;}
.yc1{bottom:572.368703pt;}
.y8a{bottom:572.702037pt;}
.yc{bottom:572.715503pt;}
.y47{bottom:572.728703pt;}
.yfa{bottom:574.638704pt;}
.y12f{bottom:582.675505pt;}
.ybf{bottom:583.019639pt;}
.ya8{bottom:583.368705pt;}
.y9a{bottom:583.382172pt;}
.y14e{bottom:583.395372pt;}
.y58{bottom:583.408705pt;}
.y2a{bottom:583.422172pt;}
.yfc{bottom:592.355374pt;}
.y68{bottom:594.035374pt;}
.y46{bottom:594.048841pt;}
.yfe{bottom:603.019643pt;}
.y89{bottom:604.675510pt;}
.yb{bottom:604.688710pt;}
.y29{bottom:604.728710pt;}
.ybc{bottom:611.936845pt;}
.yfb{bottom:613.675512pt;}
.y12e{bottom:614.648712pt;}
.ya7{bottom:615.342179pt;}
.y45{bottom:615.355379pt;}
.y14d{bottom:615.368712pt;}
.y57{bottom:615.382179pt;}
.yfd{bottom:624.326314pt;}
.y67{bottom:626.008847pt;}
.ybe{bottom:629.662048pt;}
.y88{bottom:636.662049pt;}
.y28{bottom:636.702049pt;}
.ybb{bottom:640.312984pt;}
.y12d{bottom:646.622051pt;}
.y145{bottom:647.315385pt;}
.y44{bottom:647.328718pt;}
.y14c{bottom:647.342185pt;}
.y56{bottom:647.355385pt;}
.yf8{bottom:653.243519pt;}
.y87{bottom:657.968854pt;}
.y66{bottom:657.982054pt;}
.y27{bottom:658.022054pt;}
.ya6{bottom:668.635523pt;}
.ya{bottom:668.648723pt;}
.yb9{bottom:669.221789pt;}
.yf9{bottom:670.968856pt;}
.y12c{bottom:678.595525pt;}
.y43{bottom:679.302191pt;}
.y14b{bottom:679.315391pt;}
.y26{bottom:679.328725pt;}
.y9{bottom:689.955393pt;}
.y12a{bottom:695.856861pt;}
.ya5{bottom:700.608729pt;}
.yf6{bottom:710.536864pt;}
.y86{bottom:711.262198pt;}
.y42{bottom:711.275398pt;}
.y25{bottom:711.302198pt;}
.y12b{bottom:713.582065pt;}
.yb8{bottom:721.915400pt;}
.y8{bottom:721.928733pt;}
.y129{bottom:724.233000pt;}
.yf7{bottom:728.262068pt;}
.ya4{bottom:732.582069pt;}
.y24{bottom:732.608735pt;}
.yf5{bottom:738.913003pt;}
.y85{bottom:743.248737pt;}
.y41{bottom:743.262071pt;}
.y127{bottom:753.150206pt;}
.yb7{bottom:753.888740pt;}
.y7{bottom:753.902073pt;}
.y23{bottom:753.928740pt;}
.y84{bottom:764.555408pt;}
.y40{bottom:764.568742pt;}
.yf2{bottom:767.825409pt;}
.y128{bottom:770.875410pt;}
.y22{bottom:775.235411pt;}
.y126{bottom:781.526345pt;}
.yf4{bottom:785.542079pt;}
.y6{bottom:785.875413pt;}
.y14a{bottom:785.888746pt;}
.yf1{bottom:796.206348pt;}
.y3f{bottom:796.542081pt;}
.y21{bottom:796.555415pt;}
.yef{bottom:806.857284pt;}
.yf3{bottom:806.862084pt;}
.yb6{bottom:807.182084pt;}
.y149{bottom:807.195417pt;}
.y55{bottom:807.208750pt;}
.y123{bottom:810.443551pt;}
.yf0{bottom:817.513019pt;}
.y5{bottom:817.848752pt;}
.y20{bottom:817.862086pt;}
.y124{bottom:828.168754pt;}
.y54{bottom:828.515421pt;}
.y125{bottom:838.819690pt;}
.y1f{bottom:839.168757pt;}
.yec{bottom:846.425425pt;}
.y4{bottom:849.822092pt;}
.y53{bottom:849.835425pt;}
.yb5{bottom:860.475428pt;}
.y1e{bottom:860.488761pt;}
.yee{bottom:864.142095pt;}
.y122{bottom:867.736896pt;}
.y3e{bottom:871.142096pt;}
.yeb{bottom:874.806364pt;}
.y3{bottom:881.795432pt;}
.ye9{bottom:885.457299pt;}
.yed{bottom:885.462099pt;}
.yb4{bottom:892.448767pt;}
.yea{bottom:896.113035pt;}
.y3d{bottom:903.115436pt;}
.y2{bottom:913.768772pt;}
.y3c{bottom:924.435494pt;}
.ye8{bottom:942.742164pt;}
.y1{bottom:945.742165pt;}
.hb{height:32.551473pt;}
.h15{height:32.604807pt;}
.h6{height:32.778140pt;}
.h4{height:43.343759pt;}
.h1b{height:52.800011pt;}
.h8{height:53.356411pt;}
.h12{height:53.463077pt;}
.h18{height:53.476411pt;}
.h1d{height:53.556411pt;}
.h9{height:53.649744pt;}
.he{height:53.729744pt;}
.h13{height:53.756411pt;}
.h19{height:53.769744pt;}
.hc{height:53.836411pt;}
.h1e{height:53.849744pt;}
.h16{height:53.889744pt;}
.ha{height:53.943077pt;}
.h7{height:54.063077pt;}
.h1f{height:54.143077pt;}
.h17{height:54.183078pt;}
.h1c{height:54.263078pt;}
.h3{height:62.781263pt;}
.h2{height:62.812513pt;}
.h1{height:64.500013pt;}
.h20{height:72.562515pt;}
.h11{height:75.174548pt;}
.h5{height:75.250015pt;}
.hf{height:75.334548pt;}
.h14{height:75.361215pt;}
.hd{height:75.441215pt;}
.h10{height:75.574548pt;}
.h1a{height:105.416254pt;}
.h0{height:1056.000000pt;}
.w2{width:85.533350pt;}
.wa{width:89.200018pt;}
.wb{width:110.600022pt;}
.wc{width:111.000022pt;}
.w3{width:145.600029pt;}
.w8{width:148.533363pt;}
.w9{width:154.600031pt;}
.wd{width:155.200031pt;}
.w5{width:156.733365pt;}
.w1{width:171.866701pt;}
.w7{width:206.000041pt;}
.w4{width:213.000043pt;}
.w6{width:254.333384pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x95{left:1.000000pt;}
.xa0{left:45.333342pt;}
.x1{left:96.000019pt;}
.x94{left:98.000020pt;}
.x99{left:99.000020pt;}
.xc6{left:112.880023pt;}
.x2b{left:120.000024pt;}
.xc4{left:122.200024pt;}
.x5{left:135.706694pt;}
.xe{left:144.000029pt;}
.x3{left:145.306696pt;}
.x4{left:146.213363pt;}
.x93{left:147.546696pt;}
.x8{left:149.346697pt;}
.x50{left:151.106697pt;}
.x79{left:152.000030pt;}
.x2{left:155.106698pt;}
.x51{left:156.440031pt;}
.xcc{left:159.101632pt;}
.x41{left:161.320032pt;}
.x6{left:162.373366pt;}
.x43{left:163.853366pt;}
.x89{left:169.760034pt;}
.x7{left:173.360035pt;}
.xba{left:174.386702pt;}
.x30{left:175.560035pt;}
.x8e{left:176.880035pt;}
.x5e{left:178.253369pt;}
.x4d{left:179.546703pt;}
.x1f{left:182.826703pt;}
.x44{left:185.186704pt;}
.xa{left:191.101638pt;}
.x59{left:192.000038pt;}
.x58{left:193.306705pt;}
.x61{left:195.106706pt;}
.x8f{left:197.333373pt;}
.xb{left:199.101640pt;}
.x92{left:200.746707pt;}
.xa8{left:203.679774pt;}
.x60{left:204.893374pt;}
.x16{left:206.480041pt;}
.x49{left:208.866708pt;}
.xb3{left:209.929775pt;}
.x5d{left:211.986709pt;}
.x77{left:213.760043pt;}
.x82{left:216.013377pt;}
.x7e{left:217.013377pt;}
.x57{left:218.226710pt;}
.xc{left:219.146710pt;}
.x65{left:220.133377pt;}
.x55{left:223.213378pt;}
.x31{left:225.306712pt;}
.x64{left:226.213379pt;}
.x53{left:227.120045pt;}
.x66{left:228.578712pt;}
.x52{left:230.213379pt;}
.x9d{left:232.146713pt;}
.x3c{left:233.773513pt;}
.x5a{left:236.453381pt;}
.x48{left:239.573381pt;}
.x3d{left:241.773515pt;}
.x6f{left:242.813382pt;}
.x8a{left:243.973382pt;}
.x17{left:247.360049pt;}
.xa6{left:249.533383pt;}
.x42{left:251.573384pt;}
.x21{left:254.200051pt;}
.x81{left:255.240051pt;}
.xa2{left:256.426718pt;}
.x71{left:257.920052pt;}
.x70{left:259.258719pt;}
.x4a{left:260.413385pt;}
.x75{left:261.760052pt;}
.x74{left:264.986720pt;}
.x36{left:267.480053pt;}
.x62{left:268.866720pt;}
.x96{left:271.000054pt;}
.x9c{left:272.866721pt;}
.x6e{left:273.866721pt;}
.x4c{left:274.813388pt;}
.x7a{left:276.178722pt;}
.x5f{left:278.786722pt;}
.x4f{left:281.360056pt;}
.x7f{left:284.013390pt;}
.x7d{left:285.146724pt;}
.x90{left:287.800058pt;}
.x5b{left:289.360058pt;}
.x4b{left:293.306725pt;}
.x56{left:294.613392pt;}
.x4e{left:295.746726pt;}
.x67{left:297.458726pt;}
.x78{left:299.106726pt;}
.xb4{left:300.413393pt;}
.x69{left:302.200060pt;}
.x68{left:305.458728pt;}
.xa3{left:307.960995pt;}
.x6a{left:310.645395pt;}
.x5c{left:313.333396pt;}
.x63{left:314.560063pt;}
.xb9{left:315.945397pt;}
.x6b{left:318.645397pt;}
.x80{left:320.440064pt;}
.xbe{left:322.187531pt;}
.x87{left:323.520065pt;}
.x54{left:326.680065pt;}
.xb8{left:328.718866pt;}
.xc1{left:329.710999pt;}
.x7b{left:331.093400pt;}
.x83{left:332.453400pt;}
.x25{left:335.520067pt;}
.xb1{left:337.273534pt;}
.xbf{left:338.187534pt;}
.xcd{left:339.184735pt;}
.x37{left:341.240068pt;}
.x8b{left:342.346735pt;}
.x7c{left:345.986736pt;}
.xce{left:347.184736pt;}
.xb6{left:349.695403pt;}
.x91{left:351.040070pt;}
.x1d{left:354.066737pt;}
.x14{left:356.800071pt;}
.x97{left:358.000072pt;}
.x9a{left:359.533405pt;}
.xb5{left:365.726606pt;}
.x3f{left:367.426740pt;}
.x32{left:369.106740pt;}
.xd1{left:371.023541pt;}
.xb2{left:372.836075pt;}
.x20{left:373.866741pt;}
.x29{left:375.880075pt;}
.xd{left:378.466742pt;}
.x6d{left:379.986743pt;}
.x12{left:381.426743pt;}
.xb7{left:383.492210pt;}
.x88{left:384.400077pt;}
.xaf{left:386.617277pt;}
.x26{left:387.960078pt;}
.x33{left:389.840078pt;}
.x40{left:392.306745pt;}
.xb0{left:394.617279pt;}
.x6c{left:395.853413pt;}
.x2a{left:396.760079pt;}
.x18{left:401.053414pt;}
.xa4{left:404.000081pt;}
.x3e{left:404.906748pt;}
.xc5{left:407.145415pt;}
.x22{left:408.466748pt;}
.x11{left:411.840082pt;}
.xac{left:413.273549pt;}
.x1b{left:414.617283pt;}
.xc9{left:419.293417pt;}
.x45{left:420.613417pt;}
.x1c{left:422.617285pt;}
.x15{left:425.693418pt;}
.xab{left:428.359419pt;}
.xc2{left:429.679819pt;}
.x76{left:433.252220pt;}
.x19{left:437.493421pt;}
.x46{left:441.200088pt;}
.xc3{left:445.679822pt;}
.xbc{left:447.973423pt;}
.x85{left:458.706758pt;}
.x27{left:461.720092pt;}
.x38{left:464.318226pt;}
.x23{left:467.026760pt;}
.x39{left:469.646361pt;}
.xad{left:475.531295pt;}
.xa9{left:479.929829pt;}
.xae{left:483.531297pt;}
.xaa{left:487.929831pt;}
.x1a{left:493.120099pt;}
.xa5{left:495.000099pt;}
.xa7{left:496.200099pt;}
.x98{left:505.000101pt;}
.x9b{left:506.600101pt;}
.x9e{left:512.000102pt;}
.x9f{left:513.333436pt;}
.xa1{left:521.333438pt;}
.x72{left:535.591974pt;}
.xbd{left:537.253441pt;}
.x86{left:539.586775pt;}
.x24{left:540.786775pt;}
.xca{left:542.371575pt;}
.x73{left:543.591975pt;}
.x13{left:544.893442pt;}
.xcb{left:547.699710pt;}
.xcf{left:549.817577pt;}
.xd0{left:557.817578pt;}
.x8c{left:565.373446pt;}
.x34{left:586.453451pt;}
.x47{left:587.400117pt;}
.x8d{left:600.026787pt;}
.x2e{left:603.562654pt;}
.x9{left:606.070388pt;}
.x35{left:607.333455pt;}
.x2f{left:608.890788pt;}
.xc8{left:610.069722pt;}
.xf{left:611.280122pt;}
.x2c{left:614.218923pt;}
.x3a{left:616.064790pt;}
.x1e{left:618.560124pt;}
.x2d{left:619.547057pt;}
.x3b{left:624.064791pt;}
.xc7{left:630.234126pt;}
.x84{left:641.226795pt;}
.x28{left:650.665463pt;}
.xbb{left:658.973465pt;}
.xc0{left:659.893465pt;}
.x10{left:699.266807pt;}
}




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