
    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_9011c4017e4465ce35eda2bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86780bab07f5a26c774d28d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a795992141f220ea62a6169d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947266;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_d2be0d97aa81d2fa37550e80.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_324bc50d6478f40ff2ca7da1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f449cd5f39b841ff260132b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_68d74453bc1f421d3c9ade2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_48b6a79dd33681f430012e7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943359;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;}
.me7{transform:matrix(0.244459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244459,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.245027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245027,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247799,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.mdd{transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.m64{transform:matrix(0.248754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248754,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248801,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249087,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249251,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249254,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.mea{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);}
.mf6{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.mac{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);}
.m46{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m99{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);}
.m5{transform:matrix(0.249396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249396,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249466,0.000000,0.000000,0.250000,0,0);}
.me0{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);}
.m6{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m5d{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.mba{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);}
.mce{transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.mf5{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);}
.m7a{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);}
.m102{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);}
.m7d{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);}
.mf{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);}
.m8c{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.mbd{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);}
.m103{transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.mc3{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);}
.m21{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);}
.mf1{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.md7{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);}
.m10{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);}
.m25{transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);}
.maf{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);}
.m47{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m9{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);}
.m59{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);}
.m85{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m48{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);}
.m30{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);}
.m3c{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m100{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);}
.m1d{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.mfe{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.me8{transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.mc0{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);}
.mf9{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.md8{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m88{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);}
.me9{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.me3{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);}
.m23{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m34{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);}
.mb0{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);}
.m53{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.mbe{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.mc8{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);}
.m66{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.mb2{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);}
.m5e{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);}
.m1c{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.md4{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.mbc{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);}
.mcc{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);}
.m1b{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);}
.m75{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);}
.m19{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);}
.m41{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);}
.m42{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);}
.mfc{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);}
.m13{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);}
.m2a{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);}
.ma4{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);}
.m1f{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);}
.m2f{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);}
.m31{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);}
.m90{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);}
.m94{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);}
.ma3{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);}
.m14{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);}
.m24{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);}
.m35{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);}
.m8a{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);}
.m16{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);}
.m49{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);}
.m7f{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);}
.m39{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);}
.mab{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);}
.m1a{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);}
.m57{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);}
.m11{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);}
.m26{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);}
.m28{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);}
.m38{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);}
.mb1{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);}
.mcd{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);}
.m36{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);}
.m55{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);}
.m105{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);}
.m18{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);}
.m40{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);}
.m51{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);}
.m65{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);}
.m37{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);}
.mb6{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.mb7{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);}
.m3b{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);}
.m68{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);}
.m78{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);}
.m32{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);}
.me{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);}
.m5b{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);}
.m22{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);}
.maa{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);}
.mcb{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);}
.mcf{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);}
.m3a{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);}
.m15{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);}
.m8{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);}
.m9d{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);}
.m5c{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);}
.m98{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);}
.m72{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);}
.md2{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);}
.mfd{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);}
.m7b{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);}
.m9b{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);}
.mae{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);}
.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);}
.mc{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);}
.v1{vertical-align:-3.969001px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.969001px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005400px;}
.ls6{letter-spacing:0.030000px;}
.ls1{letter-spacing:0.063000px;}
.ls4{letter-spacing:0.189002px;}
.ls5{letter-spacing:0.377998px;}
.ls0{letter-spacing:0.630000px;}
.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;}
}
.ws0{word-spacing:-63.000013px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-3.552001px;}
._2{margin-left:-1.260006px;}
._0{width:1.152000px;}
._1{width:2.184000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000012px;}
.fs1{font-size:63.000013px;}
.fs0{font-size:72.000014px;}
.y0{bottom:0.000000px;}
.yca{bottom:116.754836px;}
.y23{bottom:116.769686px;}
.y10b{bottom:116.799686px;}
.yb1{bottom:116.814686px;}
.y7c{bottom:116.844836px;}
.y68{bottom:119.079836px;}
.ye3{bottom:128.739838px;}
.y12b{bottom:128.754838px;}
.y94{bottom:128.769688px;}
.y45{bottom:128.829838px;}
.yf3{bottom:128.844838px;}
.yc9{bottom:140.724841px;}
.yb0{bottom:140.784691px;}
.y7b{bottom:140.814691px;}
.y67{bottom:143.049691px;}
.ye2{bottom:152.709693px;}
.y22{bottom:152.739843px;}
.y93{bottom:152.754843px;}
.yf2{bottom:152.814693px;}
.yc8{bottom:164.709695px;}
.y105{bottom:164.754845px;}
.y13f{bottom:164.769695px;}
.y44{bottom:164.814695px;}
.y12a{bottom:176.709698px;}
.y21{bottom:176.724848px;}
.yaf{bottom:176.754848px;}
.y7a{bottom:176.784698px;}
.y66{bottom:179.019698px;}
.yc7{bottom:188.679700px;}
.y11a{bottom:188.709700px;}
.y104{bottom:188.739850px;}
.y43{bottom:188.784700px;}
.y20{bottom:200.694703px;}
.yae{bottom:200.724853px;}
.yf1{bottom:200.769703px;}
.ye1{bottom:212.664705px;}
.y92{bottom:212.694705px;}
.y103{bottom:212.709705px;}
.y137{bottom:212.724855px;}
.y42{bottom:212.769705px;}
.y65{bottom:215.004855px;}
.yc6{bottom:224.664707px;}
.y1f{bottom:224.679707px;}
.yad{bottom:224.709707px;}
.yf0{bottom:224.739857px;}
.ye0{bottom:236.634860px;}
.y129{bottom:236.664710px;}
.y136{bottom:236.694710px;}
.y41{bottom:236.739860px;}
.y64{bottom:238.974860px;}
.yc5{bottom:248.634862px;}
.y1e{bottom:248.649862px;}
.y91{bottom:248.664712px;}
.yac{bottom:248.679712px;}
.y102{bottom:248.694712px;}
.ydf{bottom:260.604715px;}
.y128{bottom:260.634865px;}
.y119{bottom:260.649865px;}
.y13e{bottom:260.664715px;}
.y40{bottom:260.709715px;}
.y63{bottom:262.944715px;}
.y1d{bottom:272.619717px;}
.y101{bottom:272.664717px;}
.yde{bottom:284.589719px;}
.yc4{bottom:284.604719px;}
.y127{bottom:284.619719px;}
.y118{bottom:284.634869px;}
.y90{bottom:284.649869px;}
.y3f{bottom:284.694719px;}
.y62{bottom:286.929720px;}
.y1c{bottom:296.604722px;}
.y13d{bottom:296.634872px;}
.ydd{bottom:308.559874px;}
.y126{bottom:308.589724px;}
.y117{bottom:308.604724px;}
.y8f{bottom:308.619724px;}
.y100{bottom:308.634874px;}
.y3e{bottom:308.664724px;}
.y61{bottom:310.899875px;}
.y1b{bottom:320.574727px;}
.yc3{bottom:320.589727px;}
.yab{bottom:332.604729px;}
.yef{bottom:332.634879px;}
.ydc{bottom:344.544881px;}
.yc2{bottom:344.559881px;}
.y8e{bottom:344.589731px;}
.yff{bottom:344.604731px;}
.y135{bottom:344.619731px;}
.y3d{bottom:344.634881px;}
.y60{bottom:346.884882px;}
.y1a{bottom:356.544884px;}
.yaa{bottom:356.574734px;}
.y13c{bottom:356.589734px;}
.yee{bottom:356.619734px;}
.ydb{bottom:368.514736px;}
.y116{bottom:368.559886px;}
.y134{bottom:368.589736px;}
.y79{bottom:368.604736px;}
.y5f{bottom:370.854737px;}
.y19{bottom:380.529739px;}
.y13b{bottom:380.559889px;}
.y8d{bottom:380.574739px;}
.yed{bottom:380.589739px;}
.y3c{bottom:380.619739px;}
.yda{bottom:392.484741px;}
.ya9{bottom:392.544891px;}
.y78{bottom:392.589741px;}
.y5e{bottom:394.839741px;}
.y18{bottom:404.499743px;}
.y115{bottom:404.529743px;}
.y8c{bottom:404.544893px;}
.yfe{bottom:404.559893px;}
.y3b{bottom:404.589893px;}
.yd9{bottom:416.469896px;}
.yc1{bottom:416.499746px;}
.ya8{bottom:416.514746px;}
.y13a{bottom:416.529746px;}
.y77{bottom:416.559896px;}
.y5d{bottom:418.809896px;}
.y17{bottom:428.469748px;}
.y10a{bottom:428.514748px;}
.yfd{bottom:428.529748px;}
.y133{bottom:428.544898px;}
.y3a{bottom:428.559748px;}
.yd8{bottom:440.439750px;}
.ya7{bottom:440.499750px;}
.y8b{bottom:440.514751px;}
.yec{bottom:440.544901px;}
.y5c{bottom:442.779751px;}
.y16{bottom:452.454753px;}
.y125{bottom:452.469753px;}
.yc0{bottom:452.484753px;}
.y132{bottom:452.514753px;}
.y76{bottom:452.529753px;}
.y39{bottom:452.544903px;}
.ya6{bottom:464.469755px;}
.y109{bottom:464.484755px;}
.yfc{bottom:464.499755px;}
.yeb{bottom:464.514755px;}
.y5b{bottom:466.764756px;}
.y15{bottom:476.424758px;}
.ybf{bottom:476.454758px;}
.y114{bottom:476.469758px;}
.y8a{bottom:476.484758px;}
.y38{bottom:476.514758px;}
.y108{bottom:488.469760px;}
.yea{bottom:488.484760px;}
.y75{bottom:488.499760px;}
.y5a{bottom:490.734761px;}
.yd7{bottom:500.394762px;}
.y124{bottom:500.424762px;}
.ya5{bottom:500.439762px;}
.y139{bottom:500.454762px;}
.y131{bottom:500.469762px;}
.y14{bottom:512.409765px;}
.ybe{bottom:512.439765px;}
.y89{bottom:512.454765px;}
.y74{bottom:512.469765px;}
.y37{bottom:512.484765px;}
.y113{bottom:524.409767px;}
.ya4{bottom:524.424767px;}
.y130{bottom:524.439767px;}
.y59{bottom:526.719768px;}
.yd6{bottom:536.364770px;}
.y13{bottom:536.379770px;}
.ybd{bottom:536.409770px;}
.y88{bottom:536.439770px;}
.y73{bottom:536.454770px;}
.y36{bottom:536.469770px;}
.ya3{bottom:548.394772px;}
.y107{bottom:548.409772px;}
.yfb{bottom:548.424772px;}
.y58{bottom:550.689773px;}
.y12{bottom:560.349924px;}
.y123{bottom:560.379774px;}
.y87{bottom:560.409774px;}
.y72{bottom:560.424774px;}
.y35{bottom:560.439774px;}
.yd5{bottom:572.334777px;}
.y112{bottom:572.364777px;}
.ybc{bottom:572.379777px;}
.yfa{bottom:572.394777px;}
.ye9{bottom:572.409777px;}
.y57{bottom:574.674777px;}
.y11{bottom:584.334779px;}
.y122{bottom:584.349929px;}
.ya2{bottom:584.364779px;}
.y138{bottom:584.379779px;}
.y12f{bottom:584.394779px;}
.y34{bottom:584.409779px;}
.y106{bottom:596.364782px;}
.yf9{bottom:596.379782px;}
.y86{bottom:596.394782px;}
.y56{bottom:598.644782px;}
.y10{bottom:608.304934px;}
.yd4{bottom:608.319784px;}
.y121{bottom:608.334784px;}
.y111{bottom:608.349934px;}
.ybb{bottom:608.364784px;}
.y71{bottom:608.379784px;}
.y33{bottom:608.394784px;}
.ya1{bottom:620.334786px;}
.yf8{bottom:620.349936px;}
.y85{bottom:620.364786px;}
.y55{bottom:622.614787px;}
.yd3{bottom:632.289789px;}
.y120{bottom:632.304939px;}
.y110{bottom:632.319789px;}
.yba{bottom:632.334789px;}
.y70{bottom:632.349939px;}
.y32{bottom:632.364789px;}
.yf{bottom:644.274791px;}
.ya0{bottom:644.319791px;}
.y12e{bottom:644.334791px;}
.y54{bottom:646.599942px;}
.yf7{bottom:656.319794px;}
.y6f{bottom:656.334794px;}
.yd2{bottom:668.274796px;}
.y9f{bottom:668.289796px;}
.yb9{bottom:668.319796px;}
.y31{bottom:668.334796px;}
.y53{bottom:670.569797px;}
.ye{bottom:680.259948px;}
.y6e{bottom:680.304948px;}
.y84{bottom:680.319798px;}
.yd1{bottom:692.244801px;}
.y11f{bottom:692.259951px;}
.yb8{bottom:692.289801px;}
.yd{bottom:704.229803px;}
.y10f{bottom:704.259953px;}
.y9e{bottom:704.274803px;}
.y83{bottom:704.289803px;}
.y30{bottom:704.304953px;}
.y52{bottom:706.539804px;}
.y6d{bottom:716.274806px;}
.ye8{bottom:716.289806px;}
.yd0{bottom:728.229808px;}
.y9d{bottom:728.244808px;}
.yb7{bottom:728.259958px;}
.y2f{bottom:728.289808px;}
.yc{bottom:740.214960px;}
.y10e{bottom:740.229810px;}
.yf6{bottom:740.244810px;}
.y82{bottom:740.259960px;}
.y51{bottom:742.509961px;}
.ycf{bottom:752.199813px;}
.y12d{bottom:752.229813px;}
.yb6{bottom:752.244813px;}
.y2e{bottom:752.259963px;}
.yb{bottom:764.184815px;}
.y11e{bottom:764.199815px;}
.y9c{bottom:764.214965px;}
.ye7{bottom:764.229815px;}
.y10d{bottom:776.199818px;}
.yb5{bottom:776.214968px;}
.y2d{bottom:776.229818px;}
.yce{bottom:788.184820px;}
.y9b{bottom:788.199820px;}
.ye6{bottom:788.214970px;}
.y144{bottom:788.229820px;}
.ya{bottom:800.169972px;}
.y12c{bottom:800.184822px;}
.y6c{bottom:800.199822px;}
.y2c{bottom:800.214972px;}
.ycd{bottom:812.154825px;}
.y9a{bottom:812.169825px;}
.yb4{bottom:812.184825px;}
.y81{bottom:812.199825px;}
.y143{bottom:812.214825px;}
.y50{bottom:814.464825px;}
.y9{bottom:824.139827px;}
.yf5{bottom:824.169827px;}
.y2b{bottom:824.184827px;}
.y11d{bottom:836.154830px;}
.y80{bottom:836.169830px;}
.y142{bottom:836.184830px;}
.y4f{bottom:838.434830px;}
.y99{bottom:848.139832px;}
.y6b{bottom:848.154832px;}
.ye5{bottom:848.169832px;}
.y8{bottom:860.124834px;}
.y2a{bottom:860.154834px;}
.y4e{bottom:862.404835px;}
.ycc{bottom:872.109837px;}
.y98{bottom:872.124837px;}
.yb3{bottom:872.139837px;}
.y7{bottom:884.094839px;}
.y10c{bottom:884.109839px;}
.y7f{bottom:884.124839px;}
.y29{bottom:884.139839px;}
.y4d{bottom:886.389840px;}
.y97{bottom:896.094842px;}
.yb2{bottom:896.109842px;}
.ycb{bottom:908.094844px;}
.y28{bottom:908.109844px;}
.y4c{bottom:910.359844px;}
.y6{bottom:920.079846px;}
.y7e{bottom:920.094846px;}
.y96{bottom:932.064849px;}
.y6a{bottom:932.079849px;}
.y27{bottom:932.094849px;}
.y5{bottom:944.049851px;}
.ye4{bottom:944.064851px;}
.y141{bottom:944.079851px;}
.y4b{bottom:945.416201px;}
.yf4{bottom:956.049854px;}
.y26{bottom:956.064854px;}
.y95{bottom:968.034856px;}
.y11c{bottom:968.049856px;}
.y140{bottom:968.064856px;}
.y4a{bottom:969.011206px;}
.y4{bottom:980.034858px;}
.y11b{bottom:992.019861px;}
.y7d{bottom:992.034861px;}
.y49{bottom:992.606211px;}
.y3{bottom:1004.004863px;}
.y25{bottom:1004.019863px;}
.y69{bottom:1016.004866px;}
.y48{bottom:1016.201216px;}
.y24{bottom:1027.989868px;}
.y47{bottom:1039.811220px;}
.y2{bottom:1039.989930px;}
.y46{bottom:1063.406225px;}
.y1{bottom:1063.959935px;}
.h7{height:39.990242px;}
.h8{height:45.896494px;}
.h3{height:46.142587px;}
.h1{height:48.796885px;}
.h2{height:50.027354px;}
.h5{height:70.664077px;}
.h4{height:72.562515px;}
.h6{height:76.824015px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000022px;}
.xc{left:112.500023px;}
.x5b{left:117.000023px;}
.x57{left:121.500024px;}
.x1f{left:135.000027px;}
.x9{left:148.365030px;}
.x20{left:162.000032px;}
.xd{left:163.005033px;}
.x4{left:169.020034px;}
.x4e{left:171.000034px;}
.x30{left:172.500035px;}
.x3{left:178.500036px;}
.x42{left:188.475038px;}
.x15{left:200.985040px;}
.x54{left:202.482490px;}
.x39{left:210.960042px;}
.x50{left:214.440043px;}
.x40{left:217.980044px;}
.x18{left:219.450044px;}
.xf{left:223.515045px;}
.x2d{left:240.510048px;}
.x1a{left:243.135049px;}
.x2f{left:251.640050px;}
.x5a{left:259.500052px;}
.x48{left:266.490053px;}
.x1d{left:268.470054px;}
.x1c{left:270.525054px;}
.x2e{left:276.480055px;}
.x49{left:280.470056px;}
.x4a{left:281.520056px;}
.x4b{left:283.095057px;}
.x10{left:284.460057px;}
.x1b{left:287.505058px;}
.x53{left:294.477659px;}
.x24{left:295.500059px;}
.x27{left:296.835059px;}
.x21{left:298.515060px;}
.x4c{left:303.480061px;}
.x35{left:305.955061px;}
.x14{left:308.385062px;}
.x58{left:309.450062px;}
.x25{left:311.145062px;}
.x4d{left:312.465062px;}
.x2b{left:314.505063px;}
.x22{left:316.515063px;}
.x2c{left:317.955064px;}
.x1e{left:318.960064px;}
.x45{left:320.925064px;}
.x28{left:324.480065px;}
.x19{left:325.890065px;}
.x41{left:334.965067px;}
.x23{left:337.500068px;}
.x11{left:339.465068px;}
.x5c{left:341.925068px;}
.x2a{left:346.005069px;}
.x31{left:347.490069px;}
.x47{left:350.685070px;}
.x43{left:355.965071px;}
.x33{left:359.940072px;}
.x12{left:361.890072px;}
.x29{left:380.445076px;}
.x46{left:385.905077px;}
.x5d{left:392.925079px;}
.x3a{left:395.850079px;}
.x32{left:398.010080px;}
.x34{left:414.645083px;}
.x26{left:417.990084px;}
.x56{left:419.235084px;}
.x7{left:424.395085px;}
.x59{left:426.510085px;}
.x38{left:435.030087px;}
.x44{left:437.955088px;}
.x13{left:457.545092px;}
.x52{left:482.235096px;}
.x3b{left:485.820097px;}
.x3e{left:496.395099px;}
.x16{left:518.415104px;}
.x2{left:519.480104px;}
.x5{left:521.820104px;}
.x8{left:526.035105px;}
.xb{left:545.340109px;}
.x51{left:552.915111px;}
.x3f{left:592.050118px;}
.x17{left:593.370119px;}
.x6{left:623.460125px;}
.x36{left:641.025128px;}
.x55{left:676.830135px;}
.xe{left:678.810136px;}
.x3c{left:733.320147px;}
.xa{left:738.795148px;}
.x4f{left:747.808800px;}
.x37{left:776.985155px;}
.x3d{left:808.305162px;}
@media print{
.v1{vertical-align:-3.528001pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.528001pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004800pt;}
.ls6{letter-spacing:0.026667pt;}
.ls1{letter-spacing:0.056000pt;}
.ls4{letter-spacing:0.168002pt;}
.ls5{letter-spacing:0.335999pt;}
.ls0{letter-spacing:0.560000pt;}
.ws0{word-spacing:-56.000011pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-3.157334pt;}
._2{margin-left:-1.120006pt;}
._0{width:1.024000pt;}
._1{width:1.941334pt;}
.fs2{font-size:53.333344pt;}
.fs1{font-size:56.000011pt;}
.fs0{font-size:64.000013pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:103.782076pt;}
.y23{bottom:103.795276pt;}
.y10b{bottom:103.821943pt;}
.yb1{bottom:103.835276pt;}
.y7c{bottom:103.862076pt;}
.y68{bottom:105.848743pt;}
.ye3{bottom:114.435412pt;}
.y12b{bottom:114.448745pt;}
.y94{bottom:114.461945pt;}
.y45{bottom:114.515412pt;}
.yf3{bottom:114.528745pt;}
.yc9{bottom:125.088747pt;}
.yb0{bottom:125.141947pt;}
.y7b{bottom:125.168614pt;}
.y67{bottom:127.155281pt;}
.ye2{bottom:135.741949pt;}
.y22{bottom:135.768749pt;}
.y93{bottom:135.782083pt;}
.yf2{bottom:135.835283pt;}
.yc8{bottom:146.408618pt;}
.y105{bottom:146.448751pt;}
.y13f{bottom:146.461951pt;}
.y44{bottom:146.501951pt;}
.y12a{bottom:157.075287pt;}
.y21{bottom:157.088754pt;}
.yaf{bottom:157.115420pt;}
.y7a{bottom:157.141954pt;}
.y66{bottom:159.128621pt;}
.yc7{bottom:167.715289pt;}
.y11a{bottom:167.741956pt;}
.y104{bottom:167.768756pt;}
.y43{bottom:167.808622pt;}
.y20{bottom:178.395291pt;}
.yae{bottom:178.422091pt;}
.yf1{bottom:178.461958pt;}
.ye1{bottom:189.035293pt;}
.y92{bottom:189.061960pt;}
.y103{bottom:189.075293pt;}
.y137{bottom:189.088760pt;}
.y42{bottom:189.128627pt;}
.y65{bottom:191.115427pt;}
.yc6{bottom:199.701962pt;}
.y1f{bottom:199.715295pt;}
.yad{bottom:199.741962pt;}
.yf0{bottom:199.768762pt;}
.ye0{bottom:210.342098pt;}
.y129{bottom:210.368631pt;}
.y136{bottom:210.395298pt;}
.y41{bottom:210.435431pt;}
.y64{bottom:212.422098pt;}
.yc5{bottom:221.008766pt;}
.y1e{bottom:221.022100pt;}
.y91{bottom:221.035300pt;}
.yac{bottom:221.048633pt;}
.y102{bottom:221.061966pt;}
.ydf{bottom:231.648635pt;}
.y128{bottom:231.675435pt;}
.y119{bottom:231.688768pt;}
.y13e{bottom:231.701968pt;}
.y40{bottom:231.741968pt;}
.y63{bottom:233.728636pt;}
.y1d{bottom:242.328637pt;}
.y101{bottom:242.368637pt;}
.yde{bottom:252.968639pt;}
.yc4{bottom:252.981973pt;}
.y127{bottom:252.995306pt;}
.y118{bottom:253.008773pt;}
.y90{bottom:253.022106pt;}
.y3f{bottom:253.061973pt;}
.y62{bottom:255.048640pt;}
.y1c{bottom:263.648642pt;}
.y13d{bottom:263.675442pt;}
.ydd{bottom:274.275444pt;}
.y126{bottom:274.301977pt;}
.y117{bottom:274.315310pt;}
.y8f{bottom:274.328644pt;}
.y100{bottom:274.342110pt;}
.y3e{bottom:274.368644pt;}
.y61{bottom:276.355444pt;}
.y1b{bottom:284.955312pt;}
.yc3{bottom:284.968646pt;}
.yab{bottom:295.648648pt;}
.yef{bottom:295.675448pt;}
.ydc{bottom:306.262117pt;}
.yc2{bottom:306.275450pt;}
.y8e{bottom:306.301983pt;}
.yff{bottom:306.315317pt;}
.y135{bottom:306.328650pt;}
.y3d{bottom:306.342117pt;}
.y60{bottom:308.342117pt;}
.y1a{bottom:316.928786pt;}
.yaa{bottom:316.955319pt;}
.y13c{bottom:316.968652pt;}
.yee{bottom:316.995319pt;}
.ydb{bottom:327.568654pt;}
.y116{bottom:327.608788pt;}
.y134{bottom:327.635321pt;}
.y79{bottom:327.648654pt;}
.y5f{bottom:329.648655pt;}
.y19{bottom:338.248656pt;}
.y13b{bottom:338.275456pt;}
.y8d{bottom:338.288656pt;}
.yed{bottom:338.301990pt;}
.y3c{bottom:338.328656pt;}
.yda{bottom:348.875325pt;}
.ya9{bottom:348.928792pt;}
.y78{bottom:348.968659pt;}
.y5e{bottom:350.968659pt;}
.y18{bottom:359.555327pt;}
.y115{bottom:359.581994pt;}
.y8c{bottom:359.595461pt;}
.yfe{bottom:359.608794pt;}
.y3b{bottom:359.635461pt;}
.yd9{bottom:370.195463pt;}
.yc1{bottom:370.221996pt;}
.ya8{bottom:370.235330pt;}
.y13a{bottom:370.248663pt;}
.y77{bottom:370.275463pt;}
.y5d{bottom:372.275463pt;}
.y17{bottom:380.861998pt;}
.y10a{bottom:380.901998pt;}
.yfd{bottom:380.915332pt;}
.y133{bottom:380.928798pt;}
.y3a{bottom:380.941998pt;}
.yd8{bottom:391.502000pt;}
.ya7{bottom:391.555334pt;}
.y8b{bottom:391.568667pt;}
.yec{bottom:391.595467pt;}
.y5c{bottom:393.582001pt;}
.y16{bottom:402.182003pt;}
.y125{bottom:402.195336pt;}
.yc0{bottom:402.208669pt;}
.y132{bottom:402.235336pt;}
.y76{bottom:402.248669pt;}
.y39{bottom:402.262136pt;}
.ya6{bottom:412.862005pt;}
.y109{bottom:412.875338pt;}
.yfc{bottom:412.888671pt;}
.yeb{bottom:412.902005pt;}
.y5b{bottom:414.902005pt;}
.y15{bottom:423.488673pt;}
.ybf{bottom:423.515340pt;}
.y114{bottom:423.528674pt;}
.y8a{bottom:423.542007pt;}
.y38{bottom:423.568674pt;}
.y108{bottom:434.195342pt;}
.yea{bottom:434.208676pt;}
.y75{bottom:434.222009pt;}
.y5a{bottom:436.208676pt;}
.yd7{bottom:444.795344pt;}
.y124{bottom:444.822011pt;}
.ya5{bottom:444.835344pt;}
.y139{bottom:444.848678pt;}
.y131{bottom:444.862011pt;}
.y14{bottom:455.475347pt;}
.ybe{bottom:455.502013pt;}
.y89{bottom:455.515347pt;}
.y74{bottom:455.528680pt;}
.y37{bottom:455.542013pt;}
.y113{bottom:466.142015pt;}
.ya4{bottom:466.155349pt;}
.y130{bottom:466.168682pt;}
.y59{bottom:468.195349pt;}
.yd6{bottom:476.768684pt;}
.y13{bottom:476.782017pt;}
.ybd{bottom:476.808684pt;}
.y88{bottom:476.835351pt;}
.y73{bottom:476.848684pt;}
.y36{bottom:476.862018pt;}
.ya3{bottom:487.462020pt;}
.y107{bottom:487.475353pt;}
.yfb{bottom:487.488686pt;}
.y58{bottom:489.502020pt;}
.y12{bottom:498.088822pt;}
.y123{bottom:498.115355pt;}
.y87{bottom:498.142022pt;}
.y72{bottom:498.155355pt;}
.y35{bottom:498.168688pt;}
.yd5{bottom:508.742024pt;}
.y112{bottom:508.768691pt;}
.ybc{bottom:508.782024pt;}
.yfa{bottom:508.795357pt;}
.ye9{bottom:508.808691pt;}
.y57{bottom:510.822024pt;}
.y11{bottom:519.408693pt;}
.y122{bottom:519.422159pt;}
.ya2{bottom:519.435359pt;}
.y138{bottom:519.448693pt;}
.y12f{bottom:519.462026pt;}
.y34{bottom:519.475359pt;}
.y106{bottom:530.102028pt;}
.yf9{bottom:530.115361pt;}
.y86{bottom:530.128695pt;}
.y56{bottom:532.128695pt;}
.y10{bottom:540.715497pt;}
.yd4{bottom:540.728697pt;}
.y121{bottom:540.742030pt;}
.y111{bottom:540.755497pt;}
.ybb{bottom:540.768697pt;}
.y71{bottom:540.782030pt;}
.y33{bottom:540.795364pt;}
.ya1{bottom:551.408699pt;}
.yf8{bottom:551.422166pt;}
.y85{bottom:551.435366pt;}
.y55{bottom:553.435366pt;}
.yd3{bottom:562.035368pt;}
.y120{bottom:562.048835pt;}
.y110{bottom:562.062035pt;}
.yba{bottom:562.075368pt;}
.y70{bottom:562.088835pt;}
.y32{bottom:562.102035pt;}
.yf{bottom:572.688703pt;}
.ya0{bottom:572.728703pt;}
.y12e{bottom:572.742037pt;}
.y54{bottom:574.755504pt;}
.yf7{bottom:583.395372pt;}
.y6f{bottom:583.408705pt;}
.yd2{bottom:594.022041pt;}
.y9f{bottom:594.035374pt;}
.yb9{bottom:594.062041pt;}
.y31{bottom:594.075374pt;}
.y53{bottom:596.062041pt;}
.ye{bottom:604.675510pt;}
.y6e{bottom:604.715510pt;}
.y84{bottom:604.728710pt;}
.yd1{bottom:615.328712pt;}
.y11f{bottom:615.342179pt;}
.yb8{bottom:615.368712pt;}
.yd{bottom:625.982047pt;}
.y10f{bottom:626.008847pt;}
.y9e{bottom:626.022047pt;}
.y83{bottom:626.035381pt;}
.y30{bottom:626.048847pt;}
.y52{bottom:628.035381pt;}
.y6d{bottom:636.688716pt;}
.ye8{bottom:636.702049pt;}
.yd0{bottom:647.315385pt;}
.y9d{bottom:647.328718pt;}
.yb7{bottom:647.342185pt;}
.y2f{bottom:647.368718pt;}
.yc{bottom:657.968854pt;}
.y10e{bottom:657.982054pt;}
.yf6{bottom:657.995387pt;}
.y82{bottom:658.008854pt;}
.y51{bottom:660.008854pt;}
.ycf{bottom:668.622056pt;}
.y12d{bottom:668.648723pt;}
.yb6{bottom:668.662056pt;}
.y2e{bottom:668.675523pt;}
.yb{bottom:679.275391pt;}
.y11e{bottom:679.288725pt;}
.y9c{bottom:679.302191pt;}
.ye7{bottom:679.315391pt;}
.y10d{bottom:689.955393pt;}
.yb5{bottom:689.968860pt;}
.y2d{bottom:689.982060pt;}
.yce{bottom:700.608729pt;}
.y9b{bottom:700.622062pt;}
.ye6{bottom:700.635529pt;}
.y144{bottom:700.648729pt;}
.ya{bottom:711.262198pt;}
.y12c{bottom:711.275398pt;}
.y6c{bottom:711.288731pt;}
.y2c{bottom:711.302198pt;}
.ycd{bottom:721.915400pt;}
.y9a{bottom:721.928733pt;}
.yb4{bottom:721.942067pt;}
.y81{bottom:721.955400pt;}
.y143{bottom:721.968733pt;}
.y50{bottom:723.968734pt;}
.y9{bottom:732.568735pt;}
.yf5{bottom:732.595402pt;}
.y2b{bottom:732.608735pt;}
.y11d{bottom:743.248737pt;}
.y80{bottom:743.262071pt;}
.y142{bottom:743.275404pt;}
.y4f{bottom:745.275405pt;}
.y99{bottom:753.902073pt;}
.y6b{bottom:753.915406pt;}
.ye5{bottom:753.928740pt;}
.y8{bottom:764.555408pt;}
.y2a{bottom:764.582075pt;}
.y4e{bottom:766.582075pt;}
.ycc{bottom:775.208744pt;}
.y98{bottom:775.222077pt;}
.yb3{bottom:775.235411pt;}
.y7{bottom:785.862079pt;}
.y10c{bottom:785.875413pt;}
.y7f{bottom:785.888746pt;}
.y29{bottom:785.902079pt;}
.y4d{bottom:787.902080pt;}
.y97{bottom:796.528748pt;}
.yb2{bottom:796.542081pt;}
.ycb{bottom:807.195417pt;}
.y28{bottom:807.208750pt;}
.y4c{bottom:809.208751pt;}
.y6{bottom:817.848752pt;}
.y7e{bottom:817.862086pt;}
.y96{bottom:828.502088pt;}
.y6a{bottom:828.515421pt;}
.y27{bottom:828.528755pt;}
.y5{bottom:839.155423pt;}
.ye4{bottom:839.168757pt;}
.y141{bottom:839.182090pt;}
.y4b{bottom:840.369957pt;}
.yf4{bottom:849.822092pt;}
.y26{bottom:849.835425pt;}
.y95{bottom:860.475428pt;}
.y11c{bottom:860.488761pt;}
.y140{bottom:860.502094pt;}
.y4a{bottom:861.343294pt;}
.y4{bottom:871.142096pt;}
.y11b{bottom:881.795432pt;}
.y7d{bottom:881.808765pt;}
.y49{bottom:882.316632pt;}
.y3{bottom:892.448767pt;}
.y25{bottom:892.462101pt;}
.y69{bottom:903.115436pt;}
.y48{bottom:903.289969pt;}
.y24{bottom:913.768772pt;}
.y47{bottom:924.276640pt;}
.y2{bottom:924.435494pt;}
.y46{bottom:945.249978pt;}
.y1{bottom:945.742165pt;}
.h7{height:35.546882pt;}
.h8{height:40.796883pt;}
.h3{height:41.015633pt;}
.h1{height:43.375009pt;}
.h2{height:44.468759pt;}
.h5{height:62.812513pt;}
.h4{height:64.500013pt;}
.h6{height:68.288014pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000019pt;}
.xc{left:100.000020pt;}
.x5b{left:104.000021pt;}
.x57{left:108.000022pt;}
.x1f{left:120.000024pt;}
.x9{left:131.880026pt;}
.x20{left:144.000029pt;}
.xd{left:144.893362pt;}
.x4{left:150.240030pt;}
.x4e{left:152.000030pt;}
.x30{left:153.333364pt;}
.x3{left:158.666698pt;}
.x42{left:167.533367pt;}
.x15{left:178.653369pt;}
.x54{left:179.984436pt;}
.x39{left:187.520038pt;}
.x50{left:190.613371pt;}
.x40{left:193.760039pt;}
.x18{left:195.066706pt;}
.xf{left:198.680040pt;}
.x2d{left:213.786709pt;}
.x1a{left:216.120043pt;}
.x2f{left:223.680045pt;}
.x5a{left:230.666713pt;}
.x48{left:236.880047pt;}
.x1d{left:238.640048pt;}
.x1c{left:240.466715pt;}
.x2e{left:245.760049pt;}
.x49{left:249.306717pt;}
.x4a{left:250.240050pt;}
.x4b{left:251.640050pt;}
.x10{left:252.853384pt;}
.x1b{left:255.560051pt;}
.x53{left:261.757919pt;}
.x24{left:262.666719pt;}
.x27{left:263.853386pt;}
.x21{left:265.346720pt;}
.x4c{left:269.760054pt;}
.x35{left:271.960054pt;}
.x14{left:274.120055pt;}
.x58{left:275.066722pt;}
.x25{left:276.573389pt;}
.x4d{left:277.746722pt;}
.x2b{left:279.560056pt;}
.x22{left:281.346723pt;}
.x2c{left:282.626723pt;}
.x1e{left:283.520057pt;}
.x45{left:285.266724pt;}
.x28{left:288.426724pt;}
.x19{left:289.680058pt;}
.x41{left:297.746726pt;}
.x23{left:300.000060pt;}
.x11{left:301.746727pt;}
.x5c{left:303.933394pt;}
.x2a{left:307.560062pt;}
.x31{left:308.880062pt;}
.x47{left:311.720062pt;}
.x43{left:316.413397pt;}
.x33{left:319.946731pt;}
.x12{left:321.680064pt;}
.x29{left:338.173401pt;}
.x46{left:343.026735pt;}
.x5d{left:349.266737pt;}
.x3a{left:351.866737pt;}
.x32{left:353.786737pt;}
.x34{left:368.573407pt;}
.x26{left:371.546741pt;}
.x56{left:372.653408pt;}
.x7{left:377.240075pt;}
.x59{left:379.120076pt;}
.x38{left:386.693411pt;}
.x44{left:389.293411pt;}
.x13{left:406.706748pt;}
.x52{left:428.653419pt;}
.x3b{left:431.840086pt;}
.x3e{left:441.240088pt;}
.x16{left:460.813425pt;}
.x2{left:461.760092pt;}
.x5{left:463.840093pt;}
.x8{left:467.586760pt;}
.xb{left:484.746764pt;}
.x51{left:491.480098pt;}
.x3f{left:526.266772pt;}
.x17{left:527.440105pt;}
.x6{left:554.186778pt;}
.x36{left:569.800114pt;}
.x55{left:601.626787pt;}
.xe{left:603.386787pt;}
.x3c{left:651.840130pt;}
.xa{left:656.706798pt;}
.x4f{left:664.718933pt;}
.x37{left:690.653471pt;}
.x3d{left:718.493477pt;}
}




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