
    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_9343c15563552f089bcdab8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.194000;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_1948d1960ae43ed3fa018162.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.182000;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_77d71382e6c1a34762ab5574.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.174000;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_e6cd6d412b14f9032788a916.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_579dac1574bb7aa09566c68f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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;}
.mdd{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.243488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243488,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.244991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244991,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.245379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245379,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245415,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.245856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245856,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.246109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246109,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.246471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246471,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.246488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246488,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247109,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m5d{transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.247589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247589,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247829,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248174,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248321,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.mca{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);}
.mb9{transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m4d{transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248862,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249047,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.mb2{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);}
.m15{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m3c{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.m3d{transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m53{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.mf1{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);}
.m7d{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m88{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);}
.m39{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);}
.m9{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);}
.m65{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);}
.m67{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m6e{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);}
.m3e{transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);}
.mce{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);}
.m17{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);}
.m70{transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m9d{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m6d{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);}
.m49{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);}
.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);}
.m72{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251509,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251691,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.251712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251712,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252015,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252074,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252176,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252568,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252588,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252626,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252666,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252812,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252882,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252919,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253044,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253073,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253076,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.253314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253314,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253347,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.253382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253382,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253706,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253909,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.254059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254059,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.254071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254071,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.254156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254156,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254406,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254424,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254594,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.255524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255524,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.255878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255878,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.255962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255962,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.256715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256715,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.257056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257056,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-16.830000px;}
.v2{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.819200px;}
.v1{vertical-align:18.840000px;}
.ls9{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000120px;}
.ls22{letter-spacing:0.042000px;}
.ls1e{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.051000px;}
.ls13{letter-spacing:0.063232px;}
.ls0{letter-spacing:0.078000px;}
.ls23{letter-spacing:0.084000px;}
.ls1f{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.111000px;}
.ls16{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls18{letter-spacing:0.192000px;}
.lse{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.255000px;}
.lsf{letter-spacing:0.306000px;}
.ls1d{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.357000px;}
.lsd{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.459000px;}
.ls8{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.510000px;}
.ls17{letter-spacing:0.528000px;}
.ls4{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.561000px;}
.ls24{letter-spacing:0.570000px;}
.ls1a{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.663000px;}
.lsa{letter-spacing:0.840000px;}
.ls1b{letter-spacing:1.071000px;}
.ls20{letter-spacing:1.173000px;}
.ls11{letter-spacing:2.304000px;}
.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;}
}
.ws6{word-spacing:-14.331000px;}
.ws8{word-spacing:-14.280000px;}
.ws7{word-spacing:-14.229000px;}
.ws3{word-spacing:-14.178000px;}
.ws5{word-spacing:-12.516000px;}
.ws9{word-spacing:-11.676000px;}
.ws4{word-spacing:-8.223240px;}
.ws0{word-spacing:-6.772080px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:890.470800px;}
._12{margin-left:-15.096000px;}
._2{margin-left:-13.968000px;}
._5{margin-left:-11.607000px;}
._11{margin-left:-7.653000px;}
._e{margin-left:-6.282000px;}
._4{margin-left:-5.055000px;}
._c{margin-left:-3.936000px;}
._0{margin-left:-2.886000px;}
._1{margin-left:-1.149000px;}
._9{width:1.254000px;}
._a{width:2.274000px;}
._8{width:3.360000px;}
._d{width:5.088000px;}
._b{width:6.672000px;}
._7{width:10.272000px;}
._6{width:12.000000px;}
._14{width:31.958356px;}
._16{width:33.221880px;}
._15{width:34.524000px;}
._13{width:46.787640px;}
._3{width:48.140400px;}
._18{width:507.984000px;}
._19{width:541.272000px;}
._17{width:555.009000px;}
._f{width:786.435000px;}
._10{width:2056.568400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs9{font-size:29.580000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.846500px;}
.y22d{bottom:85.031850px;}
.y96{bottom:85.033800px;}
.y1a0{bottom:85.037550px;}
.y5{bottom:85.039350px;}
.y268{bottom:85.039500px;}
.y5f{bottom:85.040400px;}
.y13b{bottom:85.040700px;}
.y1f3{bottom:85.043250px;}
.yce{bottom:85.047600px;}
.y107{bottom:85.058850px;}
.y1f2{bottom:98.698500px;}
.y22c{bottom:99.515850px;}
.y95{bottom:100.023900px;}
.y1ba{bottom:100.042200px;}
.y13a{bottom:100.047450px;}
.y106{bottom:100.052850px;}
.ycd{bottom:100.067100px;}
.y5e{bottom:100.088100px;}
.y16c{bottom:100.276950px;}
.y19f{bottom:100.372950px;}
.y4{bottom:100.841850px;}
.y267{bottom:101.783250px;}
.y1f1{bottom:112.353750px;}
.y22b{bottom:113.999850px;}
.y94{bottom:115.017900px;}
.y1b9{bottom:115.036200px;}
.y105{bottom:115.046850px;}
.y139{bottom:115.054200px;}
.ycc{bottom:115.086600px;}
.y5d{bottom:115.133100px;}
.y16b{bottom:115.516500px;}
.y19e{bottom:115.708350px;}
.y266{bottom:118.527000px;}
.y1f0{bottom:126.011850px;}
.y22a{bottom:128.483850px;}
.y93{bottom:130.008150px;}
.y1b8{bottom:130.035450px;}
.y104{bottom:130.040850px;}
.y138{bottom:130.062600px;}
.ycb{bottom:130.106100px;}
.y16a{bottom:130.765350px;}
.y19d{bottom:131.043750px;}
.y2a{bottom:132.516150px;}
.y265{bottom:135.270750px;}
.y1ef{bottom:139.738500px;}
.y229{bottom:142.965900px;}
.y92{bottom:144.979200px;}
.y103{bottom:145.034850px;}
.y137{bottom:145.070850px;}
.yca{bottom:145.128900px;}
.y169{bottom:146.001600px;}
.y19c{bottom:146.379150px;}
.y5c{bottom:147.188850px;}
.y29{bottom:147.497550px;}
.y1ee{bottom:153.393750px;}
.y228{bottom:157.440300px;}
.y91{bottom:159.973200px;}
.y102{bottom:160.034100px;}
.y136{bottom:160.079250px;}
.yc9{bottom:160.158300px;}
.y168{bottom:161.237850px;}
.y5b{bottom:161.355300px;}
.y19b{bottom:161.714700px;}
.y28{bottom:162.478800px;}
.y1ed{bottom:167.049000px;}
.y227{bottom:171.924300px;}
.y90{bottom:174.967200px;}
.y101{bottom:175.033350px;}
.y135{bottom:175.087650px;}
.yc8{bottom:175.177800px;}
.y5a{bottom:175.521900px;}
.y167{bottom:176.474100px;}
.y19a{bottom:177.047250px;}
.y27{bottom:177.460050px;}
.y1ec{bottom:180.704250px;}
.y226{bottom:186.408300px;}
.y59{bottom:189.688350px;}
.y8f{bottom:189.961200px;}
.y100{bottom:190.032750px;}
.y134{bottom:190.095900px;}
.yc7{bottom:190.197300px;}
.y166{bottom:191.713650px;}
.y199{bottom:192.385500px;}
.y26{bottom:192.441150px;}
.y1eb{bottom:194.359500px;}
.y225{bottom:200.892300px;}
.y58{bottom:203.854950px;}
.y8e{bottom:204.955200px;}
.y1b7{bottom:205.032000px;}
.yff{bottom:205.037250px;}
.y133{bottom:205.107450px;}
.yc6{bottom:205.220250px;}
.y165{bottom:206.953050px;}
.y25{bottom:207.422400px;}
.y198{bottom:207.720900px;}
.y1ea{bottom:208.014750px;}
.y224{bottom:215.376300px;}
.y8d{bottom:219.949200px;}
.yfe{bottom:220.031250px;}
.y132{bottom:220.114200px;}
.yc5{bottom:220.256400px;}
.y1e9{bottom:221.670000px;}
.y164{bottom:222.192450px;}
.y24{bottom:222.403650px;}
.y197{bottom:223.044900px;}
.y223{bottom:229.858500px;}
.y8c{bottom:234.939450px;}
.y57{bottom:235.029300px;}
.yfd{bottom:235.030650px;}
.y1b6{bottom:235.041150px;}
.y131{bottom:235.120950px;}
.yc4{bottom:235.275900px;}
.y1e8{bottom:235.325250px;}
.y23{bottom:237.385050px;}
.y163{bottom:237.431850px;}
.y196{bottom:238.383150px;}
.y222{bottom:244.340550px;}
.y1e7{bottom:248.980500px;}
.y8b{bottom:249.925800px;}
.yfc{bottom:250.029900px;}
.y1b5{bottom:250.035150px;}
.y56{bottom:250.077000px;}
.y130{bottom:250.129200px;}
.yc3{bottom:250.295400px;}
.y22{bottom:252.366300px;}
.y162{bottom:252.690450px;}
.y195{bottom:253.721400px;}
.y221{bottom:258.809250px;}
.y1e6{bottom:262.635750px;}
.y8a{bottom:264.919800px;}
.yfb{bottom:265.029150px;}
.y55{bottom:265.124850px;}
.y12f{bottom:265.137600px;}
.yc2{bottom:265.314900px;}
.y21{bottom:267.347550px;}
.y161{bottom:267.926700px;}
.y194{bottom:269.059650px;}
.y220{bottom:273.293250px;}
.y1e5{bottom:276.291000px;}
.y89{bottom:279.910050px;}
.yfa{bottom:280.028550px;}
.y12e{bottom:280.145850px;}
.yc1{bottom:280.334400px;}
.y20{bottom:282.328650px;}
.y160{bottom:283.162950px;}
.y193{bottom:284.397900px;}
.y21f{bottom:287.777250px;}
.y1e4{bottom:289.946250px;}
.y88{bottom:294.900300px;}
.yf9{bottom:295.027800px;}
.y12d{bottom:295.155900px;}
.yc0{bottom:295.357200px;}
.y54{bottom:297.180450px;}
.y1f{bottom:297.309900px;}
.y15f{bottom:298.399200px;}
.y192{bottom:299.733300px;}
.y21e{bottom:302.261250px;}
.y1e3{bottom:303.601500px;}
.y264{bottom:307.767600px;}
.y87{bottom:309.890400px;}
.yf8{bottom:310.027200px;}
.y12c{bottom:310.162650px;}
.ybf{bottom:310.380000px;}
.y53{bottom:311.347050px;}
.y15e{bottom:313.635450px;}
.y191{bottom:315.068700px;}
.y21d{bottom:316.745250px;}
.y1e2{bottom:317.256750px;}
.y263{bottom:320.105100px;}
.y86{bottom:324.880650px;}
.yf7{bottom:325.026450px;}
.y1e{bottom:325.047150px;}
.y12b{bottom:325.170900px;}
.ybe{bottom:325.402800px;}
.y52{bottom:325.513500px;}
.y15d{bottom:328.871700px;}
.y190{bottom:330.390000px;}
.y1e1{bottom:330.912000px;}
.y21c{bottom:331.229250px;}
.y262{bottom:332.442600px;}
.y51{bottom:339.680100px;}
.y85{bottom:339.870750px;}
.yf6{bottom:340.025700px;}
.y12a{bottom:340.179300px;}
.ybd{bottom:340.435650px;}
.y15c{bottom:344.107950px;}
.y1e0{bottom:344.567250px;}
.y261{bottom:344.780100px;}
.y21b{bottom:345.713250px;}
.y18f{bottom:345.728250px;}
.y84{bottom:354.861000px;}
.yf5{bottom:355.024950px;}
.y129{bottom:355.187550px;}
.ybc{bottom:355.455150px;}
.y260{bottom:357.117600px;}
.y1df{bottom:358.222500px;}
.y15b{bottom:359.347350px;}
.y21a{bottom:360.197250px;}
.y25f{bottom:360.582600px;}
.y18e{bottom:361.066500px;}
.y19{bottom:365.729550px;}
.y25e{bottom:369.455100px;}
.y1b4{bottom:370.024350px;}
.yf4{bottom:370.029600px;}
.y128{bottom:370.195950px;}
.ybb{bottom:370.474650px;}
.y50{bottom:370.857300px;}
.y1de{bottom:371.877750px;}
.y15a{bottom:374.586750px;}
.y219{bottom:374.679300px;}
.y18d{bottom:376.404750px;}
.y25d{bottom:381.792600px;}
.y18{bottom:384.977550px;}
.yf3{bottom:385.023600px;}
.y127{bottom:385.207500px;}
.yba{bottom:385.494150px;}
.y1dd{bottom:385.533000px;}
.y4f{bottom:385.902300px;}
.y83{bottom:386.859000px;}
.y218{bottom:389.149950px;}
.y159{bottom:389.826300px;}
.y18c{bottom:391.743000px;}
.y25c{bottom:394.130100px;}
.y1dc{bottom:399.188250px;}
.y17{bottom:399.977550px;}
.yf2{bottom:400.022850px;}
.y1b3{bottom:400.028250px;}
.y126{bottom:400.214250px;}
.yb9{bottom:400.516950px;}
.y4e{bottom:400.950000px;}
.y82{bottom:400.968000px;}
.y217{bottom:403.633950px;}
.y158{bottom:405.065700px;}
.y25b{bottom:406.467600px;}
.y18b{bottom:407.081250px;}
.y1db{bottom:412.843500px;}
.y16{bottom:414.977550px;}
.yf1{bottom:415.022250px;}
.y81{bottom:415.077000px;}
.y125{bottom:415.221000px;}
.yb8{bottom:415.539750px;}
.y4d{bottom:416.003400px;}
.y216{bottom:418.117950px;}
.y25a{bottom:418.805100px;}
.y157{bottom:420.305100px;}
.y18a{bottom:422.416650px;}
.y1da{bottom:426.498750px;}
.y80{bottom:429.185850px;}
.y15{bottom:429.977550px;}
.yf0{bottom:430.021500px;}
.y124{bottom:430.229250px;}
.yb7{bottom:430.562550px;}
.y4c{bottom:431.048400px;}
.y259{bottom:431.142600px;}
.y215{bottom:432.601950px;}
.y189{bottom:437.752050px;}
.y1d9{bottom:440.154000px;}
.y14{bottom:444.977550px;}
.yef{bottom:445.020900px;}
.y123{bottom:445.237650px;}
.yb6{bottom:445.585500px;}
.y4b{bottom:446.093400px;}
.y258{bottom:446.945100px;}
.y214{bottom:447.085950px;}
.y156{bottom:452.552400px;}
.y188{bottom:453.087450px;}
.y1d8{bottom:453.809250px;}
.y257{bottom:455.817600px;}
.y13{bottom:459.977550px;}
.yee{bottom:460.020150px;}
.y122{bottom:460.245900px;}
.y7f{bottom:460.298850px;}
.y4a{bottom:461.141100px;}
.y213{bottom:461.569950px;}
.y155{bottom:466.910550px;}
.y1d7{bottom:467.464500px;}
.y256{bottom:468.155100px;}
.y12{bottom:474.977550px;}
.y1b2{bottom:475.019400px;}
.yed{bottom:475.030050px;}
.y121{bottom:475.254300px;}
.y7e{bottom:475.292850px;}
.y212{bottom:476.053950px;}
.y49{bottom:476.188950px;}
.yb5{bottom:477.644100px;}
.y255{bottom:480.492600px;}
.y1d6{bottom:481.122600px;}
.y187{bottom:481.178250px;}
.y154{bottom:481.268700px;}
.y11{bottom:489.977550px;}
.y1b1{bottom:490.018800px;}
.yec{bottom:490.024050px;}
.y120{bottom:490.262550px;}
.y7d{bottom:490.283100px;}
.y211{bottom:490.536000px;}
.y48{bottom:491.236650px;}
.yb4{bottom:491.780100px;}
.y254{bottom:492.830100px;}
.y1d5{bottom:494.783550px;}
.y153{bottom:495.627000px;}
.y210{bottom:505.016100px;}
.yeb{bottom:505.018050px;}
.y253{bottom:505.167600px;}
.y11f{bottom:505.270950px;}
.y7c{bottom:505.273200px;}
.yb3{bottom:505.916100px;}
.y47{bottom:506.284500px;}
.y1d4{bottom:508.438800px;}
.y252{bottom:508.632600px;}
.y10{bottom:509.225550px;}
.y152{bottom:509.985150px;}
.y20f{bottom:519.500100px;}
.yea{bottom:520.017450px;}
.yb2{bottom:520.052100px;}
.y7b{bottom:520.255800px;}
.y11e{bottom:520.279350px;}
.y251{bottom:520.970100px;}
.y46{bottom:521.332200px;}
.y1d3{bottom:522.096900px;}
.y186{bottom:526.275000px;}
.y250{bottom:529.842600px;}
.y20e{bottom:533.982300px;}
.yb1{bottom:534.188100px;}
.y1b0{bottom:535.021950px;}
.ye9{bottom:535.037850px;}
.y7a{bottom:535.249800px;}
.y11d{bottom:535.288650px;}
.y1d2{bottom:535.748700px;}
.y45{bottom:536.380050px;}
.yf{bottom:540.245550px;}
.y151{bottom:541.351200px;}
.y185{bottom:541.613250px;}
.y24f{bottom:542.180100px;}
.yb0{bottom:548.324100px;}
.y20d{bottom:548.458650px;}
.y1af{bottom:550.015950px;}
.ye8{bottom:550.031850px;}
.y79{bottom:550.240050px;}
.y44{bottom:551.427750px;}
.y150{bottom:556.590600px;}
.y184{bottom:556.948650px;}
.y24e{bottom:557.982600px;}
.ye{bottom:559.493550px;}
.y1d1{bottom:562.166700px;}
.y20c{bottom:562.942650px;}
.y1ae{bottom:565.015200px;}
.ye7{bottom:565.025850px;}
.y78{bottom:565.234050px;}
.y43{bottom:566.481150px;}
.y11c{bottom:567.303900px;}
.y24d{bottom:570.320100px;}
.y14f{bottom:571.830000px;}
.y183{bottom:572.281350px;}
.yd{bottom:574.493550px;}
.y20b{bottom:577.426650px;}
.y24c{bottom:579.192600px;}
.yaf{bottom:579.476850px;}
.ye6{bottom:580.019850px;}
.y1ad{bottom:580.025250px;}
.y77{bottom:580.224150px;}
.y42{bottom:581.526150px;}
.y11b{bottom:582.312150px;}
.y14e{bottom:587.069400px;}
.y182{bottom:587.619600px;}
.yc{bottom:589.493550px;}
.y24b{bottom:591.530100px;}
.y20a{bottom:591.910650px;}
.yae{bottom:594.496350px;}
.ye5{bottom:595.013850px;}
.y1ac{bottom:595.019250px;}
.y76{bottom:595.214400px;}
.y41{bottom:596.571150px;}
.y11a{bottom:597.320550px;}
.y14d{bottom:602.308800px;}
.y181{bottom:602.955000px;}
.y24a{bottom:603.867600px;}
.yb{bottom:604.493550px;}
.y209{bottom:606.392700px;}
.y1d0{bottom:607.072200px;}
.yad{bottom:609.519150px;}
.ye4{bottom:610.013250px;}
.y75{bottom:610.204500px;}
.y40{bottom:611.618850px;}
.y119{bottom:612.328800px;}
.y249{bottom:616.205100px;}
.y14c{bottom:617.548350px;}
.y180{bottom:618.279000px;}
.ya{bottom:619.493550px;}
.y208{bottom:620.867100px;}
.y1cf{bottom:622.211550px;}
.yac{bottom:624.541950px;}
.ye3{bottom:625.012500px;}
.y74{bottom:625.191000px;}
.y3f{bottom:626.666700px;}
.y118{bottom:627.337200px;}
.y248{bottom:628.542600px;}
.y14b{bottom:632.787750px;}
.y17f{bottom:633.617250px;}
.y9{bottom:634.493550px;}
.y207{bottom:635.351100px;}
.y1ce{bottom:637.350900px;}
.yab{bottom:639.564750px;}
.ye2{bottom:640.011750px;}
.y73{bottom:640.185000px;}
.y247{bottom:640.880100px;}
.y3e{bottom:641.714400px;}
.y117{bottom:642.345450px;}
.y246{bottom:644.345100px;}
.y14a{bottom:648.036750px;}
.y17e{bottom:648.955500px;}
.y8{bottom:649.493550px;}
.y206{bottom:649.835100px;}
.y1cd{bottom:652.531050px;}
.y245{bottom:653.217600px;}
.yaa{bottom:654.587700px;}
.y1ab{bottom:655.016400px;}
.ye1{bottom:655.021800px;}
.y72{bottom:655.175100px;}
.y3d{bottom:656.762250px;}
.y116{bottom:657.353850px;}
.y149{bottom:663.273000px;}
.y17d{bottom:664.293750px;}
.y205{bottom:664.319100px;}
.y7{bottom:664.493550px;}
.y244{bottom:665.555100px;}
.y1cc{bottom:667.665300px;}
.ya9{bottom:669.610500px;}
.y1aa{bottom:670.010400px;}
.ye0{bottom:670.015800px;}
.y71{bottom:670.165350px;}
.y115{bottom:672.363750px;}
.y148{bottom:678.509250px;}
.y204{bottom:678.803100px;}
.y6{bottom:679.493550px;}
.y17c{bottom:679.632000px;}
.y243{bottom:681.357600px;}
.y1cb{bottom:682.799550px;}
.y3c{bottom:684.569550px;}
.ya8{bottom:684.633300px;}
.ydf{bottom:685.009800px;}
.y70{bottom:685.155600px;}
.y114{bottom:687.370500px;}
.y242{bottom:690.230100px;}
.y203{bottom:693.285150px;}
.y147{bottom:693.745500px;}
.y17b{bottom:694.967400px;}
.y1ca{bottom:697.933800px;}
.ya7{bottom:699.656100px;}
.ydd{bottom:700.009050px;}
.y6f{bottom:700.145700px;}
.y113{bottom:702.378900px;}
.y241{bottom:702.567600px;}
.yde{bottom:704.216550px;}
.y202{bottom:707.765400px;}
.y146{bottom:708.984900px;}
.y17a{bottom:710.302800px;}
.y1c9{bottom:713.068050px;}
.ya6{bottom:714.682200px;}
.y240{bottom:714.905100px;}
.ydc{bottom:715.008300px;}
.y1a9{bottom:715.013700px;}
.y6e{bottom:715.128300px;}
.y112{bottom:717.387150px;}
.y1d{bottom:718.996050px;}
.y201{bottom:722.249400px;}
.y145{bottom:724.230150px;}
.y179{bottom:725.638200px;}
.y1c8{bottom:728.202300px;}
.y3b{bottom:729.385800px;}
.ya5{bottom:729.701700px;}
.y1a8{bottom:730.007700px;}
.ydb{bottom:730.018200px;}
.y6d{bottom:730.122300px;}
.y23f{bottom:730.707600px;}
.y111{bottom:732.395550px;}
.y1c{bottom:735.196050px;}
.y200{bottom:736.731450px;}
.y178{bottom:740.973600px;}
.y23e{bottom:743.045100px;}
.y1c7{bottom:743.336550px;}
.y3a{bottom:744.430800px;}
.ya3{bottom:744.724650px;}
.y1a7{bottom:745.006950px;}
.yda{bottom:745.012200px;}
.y6c{bottom:745.116300px;}
.ya4{bottom:748.932150px;}
.y1ff{bottom:751.207800px;}
.y23d{bottom:751.917600px;}
.y177{bottom:756.309000px;}
.y144{bottom:756.474900px;}
.y1c6{bottom:758.470800px;}
.y39{bottom:759.475800px;}
.ya2{bottom:759.747450px;}
.yd9{bottom:760.006200px;}
.y6b{bottom:760.106400px;}
.y110{bottom:760.153800px;}
.y23c{bottom:764.255100px;}
.y1fe{bottom:765.691800px;}
.y23b{bottom:767.720100px;}
.y1b{bottom:767.748900px;}
.y176{bottom:771.644400px;}
.y143{bottom:771.711150px;}
.y1c5{bottom:773.605050px;}
.y38{bottom:774.520800px;}
.ya1{bottom:774.770250px;}
.yd8{bottom:775.005450px;}
.y6a{bottom:775.096650px;}
.y23a{bottom:780.057600px;}
.y1fd{bottom:780.175800px;}
.y142{bottom:786.950550px;}
.y175{bottom:786.979950px;}
.y1c4{bottom:788.744400px;}
.y37{bottom:789.568500px;}
.ya0{bottom:789.793050px;}
.y1a6{bottom:790.004850px;}
.yd7{bottom:790.020750px;}
.y69{bottom:790.086750px;}
.y1a{bottom:791.751900px;}
.y239{bottom:792.395100px;}
.y1fc{bottom:794.659800px;}
.y238{bottom:801.267600px;}
.y141{bottom:802.189950px;}
.y174{bottom:802.315200px;}
.y1c3{bottom:803.883750px;}
.y36{bottom:804.616350px;}
.y9f{bottom:804.815850px;}
.y10f{bottom:804.931800px;}
.y1a5{bottom:805.004100px;}
.yd6{bottom:805.014750px;}
.y68{bottom:805.077000px;}
.y1fb{bottom:809.141850px;}
.y237{bottom:813.605100px;}
.y236{bottom:817.070100px;}
.y140{bottom:817.429350px;}
.y173{bottom:817.650750px;}
.y1c2{bottom:819.023100px;}
.y35{bottom:819.664050px;}
.y9e{bottom:819.838800px;}
.y10e{bottom:819.940200px;}
.yd5{bottom:820.008750px;}
.y1a4{bottom:820.014000px;}
.y67{bottom:820.067250px;}
.y1fa{bottom:823.618200px;}
.y235{bottom:825.942600px;}
.y172{bottom:832.986150px;}
.y1c1{bottom:834.162450px;}
.y34{bottom:834.711900px;}
.y9d{bottom:834.861600px;}
.y10d{bottom:834.948600px;}
.yd4{bottom:835.002750px;}
.y1a3{bottom:835.008000px;}
.y66{bottom:835.057500px;}
.y1f9{bottom:838.102200px;}
.y234{bottom:838.280100px;}
.y2b{bottom:846.950850px;}
.y171{bottom:848.321550px;}
.y1c0{bottom:849.301800px;}
.y13f{bottom:849.676650px;}
.y33{bottom:849.759750px;}
.y9b{bottom:849.884400px;}
.y10c{bottom:849.956850px;}
.yd3{bottom:850.002000px;}
.y65{bottom:850.047600px;}
.y233{bottom:850.617600px;}
.y1f8{bottom:852.586200px;}
.y9c{bottom:854.091900px;}
.y170{bottom:863.656950px;}
.y13e{bottom:864.034950px;}
.y1bf{bottom:864.441150px;}
.y32{bottom:864.807450px;}
.y9a{bottom:864.907350px;}
.y10b{bottom:864.965250px;}
.yd2{bottom:865.001250px;}
.y64{bottom:865.033950px;}
.y232{bottom:866.420100px;}
.y1f7{bottom:867.070200px;}
.y231{bottom:875.292600px;}
.y13d{bottom:878.393100px;}
.y16f{bottom:878.992350px;}
.y1be{bottom:879.580500px;}
.y31{bottom:879.855150px;}
.y99{bottom:879.933450px;}
.y10a{bottom:879.973500px;}
.yd1{bottom:880.000650px;}
.y63{bottom:880.027950px;}
.y1f6{bottom:881.552250px;}
.y3{bottom:888.218550px;}
.y230{bottom:891.095100px;}
.y16e{bottom:894.327750px;}
.y1bd{bottom:894.719850px;}
.y30{bottom:894.903000px;}
.y98{bottom:894.952950px;}
.y109{bottom:894.983550px;}
.yd0{bottom:894.999900px;}
.y1a2{bottom:895.010550px;}
.y62{bottom:895.018200px;}
.y1f5{bottom:896.030550px;}
.y2c{bottom:903.165000px;}
.y22f{bottom:903.432600px;}
.y16d{bottom:909.663150px;}
.y13c{bottom:909.762300px;}
.y1bb{bottom:909.859200px;}
.y2f{bottom:909.950850px;}
.y97{bottom:909.975750px;}
.y108{bottom:909.990300px;}
.ycf{bottom:909.999150px;}
.y1a1{bottom:910.004550px;}
.y61{bottom:910.008300px;}
.y1f4{bottom:910.514550px;}
.y1bc{bottom:914.066700px;}
.y2e{bottom:924.998550px;}
.y22e{bottom:925.060950px;}
.y2{bottom:941.158500px;}
.y2d{bottom:969.501000px;}
.y60{bottom:969.657750px;}
.h14{height:23.872800px;}
.h5{height:27.300000px;}
.h13{height:28.988400px;}
.h2{height:38.220000px;}
.hf{height:40.533000px;}
.h6{height:41.160000px;}
.h3{height:46.123200px;}
.he{height:46.896000px;}
.h4{height:47.040000px;}
.h7{height:47.328000px;}
.hc{height:49.980000px;}
.h10{height:49.995000px;}
.h12{height:49.995600px;}
.h11{height:50.010600px;}
.hd{height:50.062500px;}
.hb{height:50.286000px;}
.ha{height:52.920000px;}
.h15{height:55.689000px;}
.h9{height:65.076000px;}
.h8{height:82.320000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x13{left:67.165500px;}
.x14{left:70.217100px;}
.x3{left:76.820550px;}
.xe{left:80.775450px;}
.x4{left:81.778650px;}
.x5{left:145.120650px;}
.xf{left:149.227950px;}
.x10{left:156.924150px;}
.xc{left:158.786100px;}
.xd{left:162.990450px;}
.x6{left:209.674650px;}
.x8{left:271.522050px;}
.x7{left:296.878350px;}
.x15{left:372.259800px;}
.x9{left:424.260000px;}
.xa{left:473.151150px;}
.xb{left:477.241350px;}
.x2{left:495.633450px;}
.x11{left:647.736450px;}
.x12{left:655.540350px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v2{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.950400pt;}
.v1{vertical-align:16.746667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000107pt;}
.ls22{letter-spacing:0.037333pt;}
.ls1e{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.045333pt;}
.ls13{letter-spacing:0.056206pt;}
.ls0{letter-spacing:0.069333pt;}
.ls23{letter-spacing:0.074667pt;}
.ls1f{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.098667pt;}
.ls16{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls18{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.226667pt;}
.lsf{letter-spacing:0.272000pt;}
.ls1d{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.317333pt;}
.lsd{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.408000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.453333pt;}
.ls17{letter-spacing:0.469333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.498667pt;}
.ls24{letter-spacing:0.506667pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.589333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls1b{letter-spacing:0.952000pt;}
.ls20{letter-spacing:1.042667pt;}
.ls11{letter-spacing:2.048000pt;}
.ws6{word-spacing:-12.738667pt;}
.ws8{word-spacing:-12.693333pt;}
.ws7{word-spacing:-12.648000pt;}
.ws3{word-spacing:-12.602667pt;}
.ws5{word-spacing:-11.125333pt;}
.ws9{word-spacing:-10.378667pt;}
.ws4{word-spacing:-7.309547pt;}
.ws0{word-spacing:-6.019627pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:791.529600pt;}
._12{margin-left:-13.418667pt;}
._2{margin-left:-12.416000pt;}
._5{margin-left:-10.317333pt;}
._11{margin-left:-6.802667pt;}
._e{margin-left:-5.584000pt;}
._4{margin-left:-4.493333pt;}
._c{margin-left:-3.498667pt;}
._0{margin-left:-2.565333pt;}
._1{margin-left:-1.021333pt;}
._9{width:1.114667pt;}
._a{width:2.021333pt;}
._8{width:2.986667pt;}
._d{width:4.522667pt;}
._b{width:5.930667pt;}
._7{width:9.130667pt;}
._6{width:10.666667pt;}
._14{width:28.407428pt;}
._16{width:29.530560pt;}
._15{width:30.688000pt;}
._13{width:41.589013pt;}
._3{width:42.791467pt;}
._18{width:451.541333pt;}
._19{width:481.130667pt;}
._17{width:493.341333pt;}
._f{width:699.053333pt;}
._10{width:1828.060800pt;}
.fs4{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs9{font-size:26.293333pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.974667pt;}
.y22d{bottom:75.583867pt;}
.y96{bottom:75.585600pt;}
.y1a0{bottom:75.588933pt;}
.y5{bottom:75.590533pt;}
.y268{bottom:75.590667pt;}
.y5f{bottom:75.591467pt;}
.y13b{bottom:75.591733pt;}
.y1f3{bottom:75.594000pt;}
.yce{bottom:75.597867pt;}
.y107{bottom:75.607867pt;}
.y1f2{bottom:87.732000pt;}
.y22c{bottom:88.458533pt;}
.y95{bottom:88.910133pt;}
.y1ba{bottom:88.926400pt;}
.y13a{bottom:88.931067pt;}
.y106{bottom:88.935867pt;}
.ycd{bottom:88.948533pt;}
.y5e{bottom:88.967200pt;}
.y16c{bottom:89.135067pt;}
.y19f{bottom:89.220400pt;}
.y4{bottom:89.637200pt;}
.y267{bottom:90.474000pt;}
.y1f1{bottom:99.870000pt;}
.y22b{bottom:101.333200pt;}
.y94{bottom:102.238133pt;}
.y1b9{bottom:102.254400pt;}
.y105{bottom:102.263867pt;}
.y139{bottom:102.270400pt;}
.ycc{bottom:102.299200pt;}
.y5d{bottom:102.340533pt;}
.y16b{bottom:102.681333pt;}
.y19e{bottom:102.851867pt;}
.y266{bottom:105.357333pt;}
.y1f0{bottom:112.010533pt;}
.y22a{bottom:114.207867pt;}
.y93{bottom:115.562800pt;}
.y1b8{bottom:115.587067pt;}
.y104{bottom:115.591867pt;}
.y138{bottom:115.611200pt;}
.ycb{bottom:115.649867pt;}
.y16a{bottom:116.235867pt;}
.y19d{bottom:116.483333pt;}
.y2a{bottom:117.792133pt;}
.y265{bottom:120.240667pt;}
.y1ef{bottom:124.212000pt;}
.y229{bottom:127.080800pt;}
.y92{bottom:128.870400pt;}
.y103{bottom:128.919867pt;}
.y137{bottom:128.951867pt;}
.yca{bottom:129.003467pt;}
.y169{bottom:129.779200pt;}
.y19c{bottom:130.114800pt;}
.y5c{bottom:130.834533pt;}
.y29{bottom:131.108933pt;}
.y1ee{bottom:136.350000pt;}
.y228{bottom:139.946933pt;}
.y91{bottom:142.198400pt;}
.y102{bottom:142.252533pt;}
.y136{bottom:142.292667pt;}
.yc9{bottom:142.362933pt;}
.y168{bottom:143.322533pt;}
.y5b{bottom:143.426933pt;}
.y19b{bottom:143.746400pt;}
.y28{bottom:144.425600pt;}
.y1ed{bottom:148.488000pt;}
.y227{bottom:152.821600pt;}
.y90{bottom:155.526400pt;}
.y101{bottom:155.585200pt;}
.y135{bottom:155.633467pt;}
.yc8{bottom:155.713600pt;}
.y5a{bottom:156.019467pt;}
.y167{bottom:156.865867pt;}
.y19a{bottom:157.375333pt;}
.y27{bottom:157.742267pt;}
.y1ec{bottom:160.626000pt;}
.y226{bottom:165.696267pt;}
.y59{bottom:168.611867pt;}
.y8f{bottom:168.854400pt;}
.y100{bottom:168.918000pt;}
.y134{bottom:168.974133pt;}
.yc7{bottom:169.064267pt;}
.y166{bottom:170.412133pt;}
.y199{bottom:171.009333pt;}
.y26{bottom:171.058800pt;}
.y1eb{bottom:172.764000pt;}
.y225{bottom:178.570933pt;}
.y58{bottom:181.204400pt;}
.y8e{bottom:182.182400pt;}
.y1b7{bottom:182.250667pt;}
.yff{bottom:182.255333pt;}
.y133{bottom:182.317733pt;}
.yc6{bottom:182.418000pt;}
.y165{bottom:183.958267pt;}
.y25{bottom:184.375467pt;}
.y198{bottom:184.640800pt;}
.y1ea{bottom:184.902000pt;}
.y224{bottom:191.445600pt;}
.y8d{bottom:195.510400pt;}
.yfe{bottom:195.583333pt;}
.y132{bottom:195.657067pt;}
.yc5{bottom:195.783467pt;}
.y1e9{bottom:197.040000pt;}
.y164{bottom:197.504400pt;}
.y24{bottom:197.692133pt;}
.y197{bottom:198.262133pt;}
.y223{bottom:204.318667pt;}
.y8c{bottom:208.835067pt;}
.y57{bottom:208.914933pt;}
.yfd{bottom:208.916133pt;}
.y1b6{bottom:208.925467pt;}
.y131{bottom:208.996400pt;}
.yc4{bottom:209.134133pt;}
.y1e8{bottom:209.178000pt;}
.y23{bottom:211.008933pt;}
.y163{bottom:211.050533pt;}
.y196{bottom:211.896133pt;}
.y222{bottom:217.191600pt;}
.y1e7{bottom:221.316000pt;}
.y8b{bottom:222.156267pt;}
.yfc{bottom:222.248800pt;}
.y1b5{bottom:222.253467pt;}
.y56{bottom:222.290667pt;}
.y130{bottom:222.337067pt;}
.yc3{bottom:222.484800pt;}
.y22{bottom:224.325600pt;}
.y162{bottom:224.613733pt;}
.y195{bottom:225.530133pt;}
.y221{bottom:230.052667pt;}
.y1e6{bottom:233.454000pt;}
.y8a{bottom:235.484267pt;}
.yfb{bottom:235.581467pt;}
.y55{bottom:235.666533pt;}
.y12f{bottom:235.677867pt;}
.yc2{bottom:235.835467pt;}
.y21{bottom:237.642267pt;}
.y161{bottom:238.157067pt;}
.y194{bottom:239.164133pt;}
.y220{bottom:242.927333pt;}
.y1e5{bottom:245.592000pt;}
.y89{bottom:248.808933pt;}
.yfa{bottom:248.914267pt;}
.y12e{bottom:249.018533pt;}
.yc1{bottom:249.186133pt;}
.y20{bottom:250.958800pt;}
.y160{bottom:251.700400pt;}
.y193{bottom:252.798133pt;}
.y21f{bottom:255.802000pt;}
.y1e4{bottom:257.730000pt;}
.y88{bottom:262.133600pt;}
.yf9{bottom:262.246933pt;}
.y12d{bottom:262.360800pt;}
.yc0{bottom:262.539733pt;}
.y54{bottom:264.160400pt;}
.y1f{bottom:264.275467pt;}
.y15f{bottom:265.243733pt;}
.y192{bottom:266.429600pt;}
.y21e{bottom:268.676667pt;}
.y1e3{bottom:269.868000pt;}
.y264{bottom:273.571200pt;}
.y87{bottom:275.458133pt;}
.yf8{bottom:275.579733pt;}
.y12c{bottom:275.700133pt;}
.ybf{bottom:275.893333pt;}
.y53{bottom:276.752933pt;}
.y15e{bottom:278.787067pt;}
.y191{bottom:280.061067pt;}
.y21d{bottom:281.551333pt;}
.y1e2{bottom:282.006000pt;}
.y263{bottom:284.537867pt;}
.y86{bottom:288.782800pt;}
.yf7{bottom:288.912400pt;}
.y1e{bottom:288.930800pt;}
.y12b{bottom:289.040800pt;}
.ybe{bottom:289.246933pt;}
.y52{bottom:289.345333pt;}
.y15d{bottom:292.330400pt;}
.y190{bottom:293.680000pt;}
.y1e1{bottom:294.144000pt;}
.y21c{bottom:294.426000pt;}
.y262{bottom:295.504533pt;}
.y51{bottom:301.937867pt;}
.y85{bottom:302.107333pt;}
.yf6{bottom:302.245067pt;}
.y12a{bottom:302.381600pt;}
.ybd{bottom:302.609467pt;}
.y15c{bottom:305.873733pt;}
.y1e0{bottom:306.282000pt;}
.y261{bottom:306.471200pt;}
.y21b{bottom:307.300667pt;}
.y18f{bottom:307.314000pt;}
.y84{bottom:315.432000pt;}
.yf5{bottom:315.577733pt;}
.y129{bottom:315.722267pt;}
.ybc{bottom:315.960133pt;}
.y260{bottom:317.437867pt;}
.y1df{bottom:318.420000pt;}
.y15b{bottom:319.419867pt;}
.y21a{bottom:320.175333pt;}
.y25f{bottom:320.517867pt;}
.y18e{bottom:320.948000pt;}
.y19{bottom:325.092933pt;}
.y25e{bottom:328.404533pt;}
.y1b4{bottom:328.910533pt;}
.yf4{bottom:328.915200pt;}
.y128{bottom:329.063067pt;}
.ybb{bottom:329.310800pt;}
.y50{bottom:329.650933pt;}
.y1de{bottom:330.558000pt;}
.y15a{bottom:332.966000pt;}
.y219{bottom:333.048267pt;}
.y18d{bottom:334.582000pt;}
.y25d{bottom:339.371200pt;}
.y18{bottom:342.202267pt;}
.yf3{bottom:342.243200pt;}
.y127{bottom:342.406667pt;}
.yba{bottom:342.661467pt;}
.y1dd{bottom:342.696000pt;}
.y4f{bottom:343.024267pt;}
.y83{bottom:343.874667pt;}
.y218{bottom:345.911067pt;}
.y159{bottom:346.512267pt;}
.y18c{bottom:348.216000pt;}
.y25c{bottom:350.337867pt;}
.y1dc{bottom:354.834000pt;}
.y17{bottom:355.535600pt;}
.yf2{bottom:355.575867pt;}
.y1b3{bottom:355.580667pt;}
.y126{bottom:355.746000pt;}
.yb9{bottom:356.015067pt;}
.y4e{bottom:356.400000pt;}
.y82{bottom:356.416000pt;}
.y217{bottom:358.785733pt;}
.y158{bottom:360.058400pt;}
.y25b{bottom:361.304533pt;}
.y18b{bottom:361.850000pt;}
.y1db{bottom:366.972000pt;}
.y16{bottom:368.868933pt;}
.yf1{bottom:368.908667pt;}
.y81{bottom:368.957333pt;}
.y125{bottom:369.085333pt;}
.yb8{bottom:369.368667pt;}
.y4d{bottom:369.780800pt;}
.y216{bottom:371.660400pt;}
.y25a{bottom:372.271200pt;}
.y157{bottom:373.604533pt;}
.y18a{bottom:375.481467pt;}
.y1da{bottom:379.110000pt;}
.y80{bottom:381.498533pt;}
.y15{bottom:382.202267pt;}
.yf0{bottom:382.241333pt;}
.y124{bottom:382.426000pt;}
.yb7{bottom:382.722267pt;}
.y4c{bottom:383.154133pt;}
.y259{bottom:383.237867pt;}
.y215{bottom:384.535067pt;}
.y189{bottom:389.112933pt;}
.y1d9{bottom:391.248000pt;}
.y14{bottom:395.535600pt;}
.yef{bottom:395.574133pt;}
.y123{bottom:395.766800pt;}
.yb6{bottom:396.076000pt;}
.y4b{bottom:396.527467pt;}
.y258{bottom:397.284533pt;}
.y214{bottom:397.409733pt;}
.y156{bottom:402.268800pt;}
.y188{bottom:402.744400pt;}
.y1d8{bottom:403.386000pt;}
.y257{bottom:405.171200pt;}
.y13{bottom:408.868933pt;}
.yee{bottom:408.906800pt;}
.y122{bottom:409.107467pt;}
.y7f{bottom:409.154533pt;}
.y4a{bottom:409.903200pt;}
.y213{bottom:410.284400pt;}
.y155{bottom:415.031600pt;}
.y1d7{bottom:415.524000pt;}
.y256{bottom:416.137867pt;}
.y12{bottom:422.202267pt;}
.y1b2{bottom:422.239467pt;}
.yed{bottom:422.248933pt;}
.y121{bottom:422.448267pt;}
.y7e{bottom:422.482533pt;}
.y212{bottom:423.159067pt;}
.y49{bottom:423.279067pt;}
.yb5{bottom:424.572533pt;}
.y255{bottom:427.104533pt;}
.y1d6{bottom:427.664533pt;}
.y187{bottom:427.714000pt;}
.y154{bottom:427.794400pt;}
.y11{bottom:435.535600pt;}
.y1b1{bottom:435.572267pt;}
.yec{bottom:435.576933pt;}
.y120{bottom:435.788933pt;}
.y7d{bottom:435.807200pt;}
.y211{bottom:436.032000pt;}
.y48{bottom:436.654800pt;}
.yb4{bottom:437.137867pt;}
.y254{bottom:438.071200pt;}
.y1d5{bottom:439.807600pt;}
.y153{bottom:440.557333pt;}
.y210{bottom:448.903200pt;}
.yeb{bottom:448.904933pt;}
.y253{bottom:449.037867pt;}
.y11f{bottom:449.129733pt;}
.y7c{bottom:449.131733pt;}
.yb3{bottom:449.703200pt;}
.y47{bottom:450.030667pt;}
.y1d4{bottom:451.945600pt;}
.y252{bottom:452.117867pt;}
.y10{bottom:452.644933pt;}
.y152{bottom:453.320133pt;}
.y20f{bottom:461.777867pt;}
.yea{bottom:462.237733pt;}
.yb2{bottom:462.268533pt;}
.y7b{bottom:462.449600pt;}
.y11e{bottom:462.470533pt;}
.y251{bottom:463.084533pt;}
.y46{bottom:463.406400pt;}
.y1d3{bottom:464.086133pt;}
.y186{bottom:467.800000pt;}
.y250{bottom:470.971200pt;}
.y20e{bottom:474.650933pt;}
.yb1{bottom:474.833867pt;}
.y1b0{bottom:475.575067pt;}
.ye9{bottom:475.589200pt;}
.y7a{bottom:475.777600pt;}
.y11d{bottom:475.812133pt;}
.y1d2{bottom:476.221067pt;}
.y45{bottom:476.782267pt;}
.yf{bottom:480.218267pt;}
.y151{bottom:481.201067pt;}
.y185{bottom:481.434000pt;}
.y24f{bottom:481.937867pt;}
.yb0{bottom:487.399200pt;}
.y20d{bottom:487.518800pt;}
.y1af{bottom:488.903067pt;}
.ye8{bottom:488.917200pt;}
.y79{bottom:489.102267pt;}
.y44{bottom:490.158000pt;}
.y150{bottom:494.747200pt;}
.y184{bottom:495.065467pt;}
.y24e{bottom:495.984533pt;}
.ye{bottom:497.327600pt;}
.y1d1{bottom:499.703733pt;}
.y20c{bottom:500.393467pt;}
.y1ae{bottom:502.235733pt;}
.ye7{bottom:502.245200pt;}
.y78{bottom:502.430267pt;}
.y43{bottom:503.538800pt;}
.y11c{bottom:504.270133pt;}
.y24d{bottom:506.951200pt;}
.y14f{bottom:508.293333pt;}
.y183{bottom:508.694533pt;}
.yd{bottom:510.660933pt;}
.y20b{bottom:513.268133pt;}
.y24c{bottom:514.837867pt;}
.yaf{bottom:515.090533pt;}
.ye6{bottom:515.573200pt;}
.y1ad{bottom:515.578000pt;}
.y77{bottom:515.754800pt;}
.y42{bottom:516.912133pt;}
.y11b{bottom:517.610800pt;}
.y14e{bottom:521.839467pt;}
.y182{bottom:522.328533pt;}
.yc{bottom:523.994267pt;}
.y24b{bottom:525.804533pt;}
.y20a{bottom:526.142800pt;}
.yae{bottom:528.441200pt;}
.ye5{bottom:528.901200pt;}
.y1ac{bottom:528.906000pt;}
.y76{bottom:529.079467pt;}
.y41{bottom:530.285467pt;}
.y11a{bottom:530.951600pt;}
.y14d{bottom:535.385600pt;}
.y181{bottom:535.960000pt;}
.y24a{bottom:536.771200pt;}
.yb{bottom:537.327600pt;}
.y209{bottom:539.015733pt;}
.y1d0{bottom:539.619733pt;}
.yad{bottom:541.794800pt;}
.ye4{bottom:542.234000pt;}
.y75{bottom:542.404000pt;}
.y40{bottom:543.661200pt;}
.y119{bottom:544.292267pt;}
.y249{bottom:547.737867pt;}
.y14c{bottom:548.931867pt;}
.y180{bottom:549.581333pt;}
.ya{bottom:550.660933pt;}
.y208{bottom:551.881867pt;}
.y1cf{bottom:553.076933pt;}
.yac{bottom:555.148400pt;}
.ye3{bottom:555.566667pt;}
.y74{bottom:555.725333pt;}
.y3f{bottom:557.037067pt;}
.y118{bottom:557.633067pt;}
.y248{bottom:558.704533pt;}
.y14b{bottom:562.478000pt;}
.y17f{bottom:563.215333pt;}
.y9{bottom:563.994267pt;}
.y207{bottom:564.756533pt;}
.y1ce{bottom:566.534133pt;}
.yab{bottom:568.502000pt;}
.ye2{bottom:568.899333pt;}
.y73{bottom:569.053333pt;}
.y247{bottom:569.671200pt;}
.y3e{bottom:570.412800pt;}
.y117{bottom:570.973733pt;}
.y246{bottom:572.751200pt;}
.y14a{bottom:576.032667pt;}
.y17e{bottom:576.849333pt;}
.y8{bottom:577.327600pt;}
.y206{bottom:577.631200pt;}
.y1cd{bottom:580.027600pt;}
.y245{bottom:580.637867pt;}
.yaa{bottom:581.855733pt;}
.y1ab{bottom:582.236800pt;}
.ye1{bottom:582.241600pt;}
.y72{bottom:582.377867pt;}
.y3d{bottom:583.788667pt;}
.y116{bottom:584.314533pt;}
.y149{bottom:589.576000pt;}
.y17d{bottom:590.483333pt;}
.y205{bottom:590.505867pt;}
.y7{bottom:590.660933pt;}
.y244{bottom:591.604533pt;}
.y1cc{bottom:593.480267pt;}
.ya9{bottom:595.209333pt;}
.y1aa{bottom:595.564800pt;}
.ye0{bottom:595.569600pt;}
.y71{bottom:595.702533pt;}
.y115{bottom:597.656667pt;}
.y148{bottom:603.119333pt;}
.y204{bottom:603.380533pt;}
.y6{bottom:603.994267pt;}
.y17c{bottom:604.117333pt;}
.y243{bottom:605.651200pt;}
.y1cb{bottom:606.932933pt;}
.y3c{bottom:608.506267pt;}
.ya8{bottom:608.562933pt;}
.ydf{bottom:608.897600pt;}
.y70{bottom:609.027200pt;}
.y114{bottom:610.996000pt;}
.y242{bottom:613.537867pt;}
.y203{bottom:616.253467pt;}
.y147{bottom:616.662667pt;}
.y17b{bottom:617.748800pt;}
.y1ca{bottom:620.385600pt;}
.ya7{bottom:621.916533pt;}
.ydd{bottom:622.230267pt;}
.y6f{bottom:622.351733pt;}
.y113{bottom:624.336800pt;}
.y241{bottom:624.504533pt;}
.yde{bottom:625.970267pt;}
.y202{bottom:629.124800pt;}
.y146{bottom:630.208800pt;}
.y17a{bottom:631.380267pt;}
.y1c9{bottom:633.838267pt;}
.ya6{bottom:635.273067pt;}
.y240{bottom:635.471200pt;}
.ydc{bottom:635.562933pt;}
.y1a9{bottom:635.567733pt;}
.y6e{bottom:635.669600pt;}
.y112{bottom:637.677467pt;}
.y1d{bottom:639.107600pt;}
.y201{bottom:641.999467pt;}
.y145{bottom:643.760133pt;}
.y179{bottom:645.011733pt;}
.y1c8{bottom:647.290933pt;}
.y3b{bottom:648.342933pt;}
.ya5{bottom:648.623733pt;}
.y1a8{bottom:648.895733pt;}
.ydb{bottom:648.905067pt;}
.y6d{bottom:648.997600pt;}
.y23f{bottom:649.517867pt;}
.y111{bottom:651.018267pt;}
.y1c{bottom:653.507600pt;}
.y200{bottom:654.872400pt;}
.y178{bottom:658.643200pt;}
.y23e{bottom:660.484533pt;}
.y1c7{bottom:660.743600pt;}
.y3a{bottom:661.716267pt;}
.ya3{bottom:661.977467pt;}
.y1a7{bottom:662.228400pt;}
.yda{bottom:662.233067pt;}
.y6c{bottom:662.325600pt;}
.ya4{bottom:665.717467pt;}
.y1ff{bottom:667.740267pt;}
.y23d{bottom:668.371200pt;}
.y177{bottom:672.274667pt;}
.y144{bottom:672.422133pt;}
.y1c6{bottom:674.196267pt;}
.y39{bottom:675.089600pt;}
.ya2{bottom:675.331067pt;}
.yd9{bottom:675.561067pt;}
.y6b{bottom:675.650133pt;}
.y110{bottom:675.692267pt;}
.y23c{bottom:679.337867pt;}
.y1fe{bottom:680.614933pt;}
.y23b{bottom:682.417867pt;}
.y1b{bottom:682.443467pt;}
.y176{bottom:685.906133pt;}
.y143{bottom:685.965467pt;}
.y1c5{bottom:687.648933pt;}
.y38{bottom:688.462933pt;}
.ya1{bottom:688.684667pt;}
.yd8{bottom:688.893733pt;}
.y6a{bottom:688.974800pt;}
.y23a{bottom:693.384533pt;}
.y1fd{bottom:693.489600pt;}
.y142{bottom:699.511600pt;}
.y175{bottom:699.537733pt;}
.y1c4{bottom:701.106133pt;}
.y37{bottom:701.838667pt;}
.ya0{bottom:702.038267pt;}
.y1a6{bottom:702.226533pt;}
.yd7{bottom:702.240667pt;}
.y69{bottom:702.299333pt;}
.y1a{bottom:703.779467pt;}
.y239{bottom:704.351200pt;}
.y1fc{bottom:706.364267pt;}
.y238{bottom:712.237867pt;}
.y141{bottom:713.057733pt;}
.y174{bottom:713.169067pt;}
.y1c3{bottom:714.563333pt;}
.y36{bottom:715.214533pt;}
.y9f{bottom:715.391867pt;}
.y10f{bottom:715.494933pt;}
.y1a5{bottom:715.559200pt;}
.yd6{bottom:715.568667pt;}
.y68{bottom:715.624000pt;}
.y1fb{bottom:719.237200pt;}
.y237{bottom:723.204533pt;}
.y236{bottom:726.284533pt;}
.y140{bottom:726.603867pt;}
.y173{bottom:726.800667pt;}
.y1c2{bottom:728.020533pt;}
.y35{bottom:728.590267pt;}
.y9e{bottom:728.745600pt;}
.y10e{bottom:728.835733pt;}
.yd5{bottom:728.896667pt;}
.y1a4{bottom:728.901333pt;}
.y67{bottom:728.948667pt;}
.y1fa{bottom:732.105067pt;}
.y235{bottom:734.171200pt;}
.y172{bottom:740.432133pt;}
.y1c1{bottom:741.477733pt;}
.y34{bottom:741.966133pt;}
.y9d{bottom:742.099200pt;}
.y10d{bottom:742.176533pt;}
.yd4{bottom:742.224667pt;}
.y1a3{bottom:742.229333pt;}
.y66{bottom:742.273333pt;}
.y1f9{bottom:744.979733pt;}
.y234{bottom:745.137867pt;}
.y2b{bottom:752.845200pt;}
.y171{bottom:754.063600pt;}
.y1c0{bottom:754.934933pt;}
.y13f{bottom:755.268133pt;}
.y33{bottom:755.342000pt;}
.y9b{bottom:755.452800pt;}
.y10c{bottom:755.517200pt;}
.yd3{bottom:755.557333pt;}
.y65{bottom:755.597867pt;}
.y233{bottom:756.104533pt;}
.y1f8{bottom:757.854400pt;}
.y9c{bottom:759.192800pt;}
.y170{bottom:767.695067pt;}
.y13e{bottom:768.031067pt;}
.y1bf{bottom:768.392133pt;}
.y32{bottom:768.717733pt;}
.y9a{bottom:768.806533pt;}
.y10b{bottom:768.858000pt;}
.yd2{bottom:768.890000pt;}
.y64{bottom:768.919067pt;}
.y232{bottom:770.151200pt;}
.y1f7{bottom:770.729067pt;}
.y231{bottom:778.037867pt;}
.y13d{bottom:780.793867pt;}
.y16f{bottom:781.326533pt;}
.y1be{bottom:781.849333pt;}
.y31{bottom:782.093467pt;}
.y99{bottom:782.163067pt;}
.y10a{bottom:782.198667pt;}
.yd1{bottom:782.222800pt;}
.y63{bottom:782.247067pt;}
.y1f6{bottom:783.602000pt;}
.y3{bottom:789.527600pt;}
.y230{bottom:792.084533pt;}
.y16e{bottom:794.958000pt;}
.y1bd{bottom:795.306533pt;}
.y30{bottom:795.469333pt;}
.y98{bottom:795.513733pt;}
.y109{bottom:795.540933pt;}
.yd0{bottom:795.555467pt;}
.y1a2{bottom:795.564933pt;}
.y62{bottom:795.571733pt;}
.y1f5{bottom:796.471600pt;}
.y2c{bottom:802.813333pt;}
.y22f{bottom:803.051200pt;}
.y16d{bottom:808.589467pt;}
.y13c{bottom:808.677600pt;}
.y1bb{bottom:808.763733pt;}
.y2f{bottom:808.845200pt;}
.y97{bottom:808.867333pt;}
.y108{bottom:808.880267pt;}
.ycf{bottom:808.888133pt;}
.y1a1{bottom:808.892933pt;}
.y61{bottom:808.896267pt;}
.y1f4{bottom:809.346267pt;}
.y1bc{bottom:812.503733pt;}
.y2e{bottom:822.220933pt;}
.y22e{bottom:822.276400pt;}
.y2{bottom:836.585333pt;}
.y2d{bottom:861.778667pt;}
.y60{bottom:861.918000pt;}
.h14{height:21.220267pt;}
.h5{height:24.266667pt;}
.h13{height:25.767467pt;}
.h2{height:33.973333pt;}
.hf{height:36.029333pt;}
.h6{height:36.586667pt;}
.h3{height:40.998400pt;}
.he{height:41.685333pt;}
.h4{height:41.813333pt;}
.h7{height:42.069333pt;}
.hc{height:44.426667pt;}
.h10{height:44.440000pt;}
.h12{height:44.440533pt;}
.h11{height:44.453867pt;}
.hd{height:44.500000pt;}
.hb{height:44.698667pt;}
.ha{height:47.040000pt;}
.h15{height:49.501333pt;}
.h9{height:57.845333pt;}
.h8{height:73.173333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x13{left:59.702667pt;}
.x14{left:62.415200pt;}
.x3{left:68.284933pt;}
.xe{left:71.800400pt;}
.x4{left:72.692133pt;}
.x5{left:128.996133pt;}
.xf{left:132.647067pt;}
.x10{left:139.488133pt;}
.xc{left:141.143200pt;}
.xd{left:144.880400pt;}
.x6{left:186.377467pt;}
.x8{left:241.352933pt;}
.x7{left:263.891867pt;}
.x15{left:330.897600pt;}
.x9{left:377.120000pt;}
.xa{left:420.578800pt;}
.xb{left:424.214533pt;}
.x2{left:440.563067pt;}
.x11{left:575.765733pt;}
.x12{left:582.702533pt;}
}




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