
    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_4d3a9437e05d0e21b4c4ef41.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1a251dc3366b30126257026e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9fb213810e3efb9366a893f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5282e97985e296814963cdc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ba0cf307c170724815d9248.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cc2e51bcfc508e09af6977ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4203f12cea2665cdd1358154.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2735c3ea7510e99199b96078.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8443a83f00e92310c4f8a456.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6abc024c97be0de10f83d273.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_98f329191eeaffc7a3eb7077.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffc719b2362a88433e4e7fe9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_80128ae121ad54ed7de3f219.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6abbbf35a101fb1119dd436a.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3536776c5357a8962fc80c6a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_daaa10471dbfcdcab8024c23.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_859e4aa2390c78691bd97e34.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_49976c34dd33a7df7127b6c0.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_2571c02601fe0d2df475ab4d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5170de6097dc07ba44562412.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96{transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032500,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m37{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8d{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);}
.m69{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(1.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.010000,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(1.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.432500,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(1.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.702500,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(2.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.075000,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(2.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.097500,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(2.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.247500,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(2.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.272500,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(2.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.397500,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(2.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.512500,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(2.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.570000,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(2.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.572500,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(2.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.635000,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(2.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.750000,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(2.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.762500,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(3.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.062500,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(3.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.112500,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(3.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.237500,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(3.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.300000,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(3.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.472500,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(3.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.485000,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(4.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.135000,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(4.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.137500,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(4.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.150000,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(4.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.322500,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(4.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.375000,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(4.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.450000,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(4.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.735000,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(4.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.912500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.500000px;}
.v1{vertical-align:3.000000px;}
.v3{vertical-align:24.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.723379px;}
.ls2{letter-spacing:65.592892px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-7.500000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:14.039792px;}
._1{margin-left:-5.507603px;}
._0{width:3.460021px;}
.fc0{color:transparent;}
.fsd{font-size:18.000000px;}
.fsc{font-size:24.000000px;}
.fs9{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fse{font-size:114.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y245{bottom:86.473500px;}
.y136{bottom:88.875000px;}
.y71{bottom:90.375000px;}
.y30{bottom:91.198500px;}
.y242{bottom:105.973500px;}
.y243{bottom:106.348500px;}
.y244{bottom:106.650000px;}
.y135{bottom:108.375000px;}
.y70{bottom:110.923500px;}
.y2f{bottom:111.073500px;}
.y23e{bottom:126.150000px;}
.y23f{bottom:126.448500px;}
.y240{bottom:126.525000px;}
.y241{bottom:126.823500px;}
.y133{bottom:128.848500px;}
.y134{bottom:129.223500px;}
.y6f{bottom:131.025000px;}
.y2e{bottom:131.250000px;}
.y132{bottom:148.650000px;}
.y6e{bottom:150.823500px;}
.y2d{bottom:151.048500px;}
.y23d{bottom:160.348500px;}
.y23c{bottom:160.650000px;}
.y23b{bottom:161.400000px;}
.y23a{bottom:162.150000px;}
.y239{bottom:162.525000px;}
.y237{bottom:163.500000px;}
.y238{bottom:163.573500px;}
.y130{bottom:168.823500px;}
.y131{bottom:169.198500px;}
.y2b{bottom:170.848500px;}
.y6d{bottom:171.000000px;}
.y2c{bottom:171.223500px;}
.y232{bottom:174.000000px;}
.y236{bottom:179.698500px;}
.y235{bottom:179.775000px;}
.y234{bottom:180.073500px;}
.y233{bottom:180.150000px;}
.y6c{bottom:189.673500px;}
.y29{bottom:190.948500px;}
.y2a{bottom:191.698500px;}
.y22a{bottom:195.223500px;}
.y22b{bottom:195.298500px;}
.y22c{bottom:195.598500px;}
.y22d{bottom:195.900000px;}
.y22e{bottom:197.025000px;}
.y22f{bottom:197.098500px;}
.y230{bottom:197.400000px;}
.y231{bottom:197.698500px;}
.y126{bottom:204.448500px;}
.y127{bottom:204.525000px;}
.y128{bottom:204.823500px;}
.y129{bottom:205.198500px;}
.y12a{bottom:205.948500px;}
.y12b{bottom:206.250000px;}
.y12c{bottom:206.323500px;}
.y12e{bottom:206.548500px;}
.y12f{bottom:206.625000px;}
.y12d{bottom:206.698500px;}
.y26{bottom:211.125000px;}
.y6b{bottom:211.275000px;}
.y28{bottom:211.500000px;}
.y27{bottom:211.875000px;}
.y125{bottom:213.150000px;}
.y224{bottom:216.150000px;}
.y228{bottom:216.525000px;}
.y225{bottom:217.125000px;}
.y226{bottom:217.198500px;}
.y227{bottom:217.573500px;}
.y120{bottom:219.598500px;}
.y122{bottom:219.973500px;}
.y121{bottom:220.275000px;}
.y123{bottom:221.025000px;}
.y124{bottom:221.400000px;}
.y229{bottom:221.473500px;}
.y11f{bottom:222.823500px;}
.y11b{bottom:228.598500px;}
.y68{bottom:230.400000px;}
.y69{bottom:231.073500px;}
.y25{bottom:231.298500px;}
.y6a{bottom:231.448500px;}
.y11e{bottom:235.125000px;}
.y11c{bottom:236.548500px;}
.y11d{bottom:236.923500px;}
.y221{bottom:237.375000px;}
.y220{bottom:237.673500px;}
.y21f{bottom:238.048500px;}
.y223{bottom:239.473500px;}
.y222{bottom:239.848500px;}
.y113{bottom:244.048500px;}
.y114{bottom:244.125000px;}
.y116{bottom:244.423500px;}
.y115{bottom:244.500000px;}
.y117{bottom:244.798500px;}
.y118{bottom:245.173500px;}
.y119{bottom:247.723500px;}
.y11a{bottom:248.025000px;}
.y22{bottom:250.798500px;}
.y67{bottom:250.875000px;}
.y21{bottom:251.098500px;}
.y24{bottom:251.473500px;}
.y23{bottom:251.773500px;}
.y10d{bottom:254.473500px;}
.y10c{bottom:254.548500px;}
.y10f{bottom:255.973500px;}
.y112{bottom:256.348500px;}
.y213{bottom:258.223500px;}
.y214{bottom:259.348500px;}
.y21b{bottom:260.023500px;}
.y21c{bottom:260.098500px;}
.y21d{bottom:260.398500px;}
.y21e{bottom:260.773500px;}
.y212{bottom:261.148500px;}
.y10e{bottom:261.298500px;}
.y110{bottom:263.473500px;}
.y215{bottom:263.548500px;}
.y216{bottom:263.625000px;}
.y111{bottom:264.598500px;}
.y21a{bottom:267.898500px;}
.y219{bottom:268.273500px;}
.y10b{bottom:268.875000px;}
.y65{bottom:270.673500px;}
.y20{bottom:271.573500px;}
.y66{bottom:271.798500px;}
.y217{bottom:275.098500px;}
.y218{bottom:275.173500px;}
.y20b{bottom:282.000000px;}
.y20d{bottom:282.375000px;}
.y20c{bottom:282.673500px;}
.y20e{bottom:283.048500px;}
.y20f{bottom:283.423500px;}
.y210{bottom:283.500000px;}
.y211{bottom:284.173500px;}
.yfe{bottom:290.548500px;}
.yff{bottom:290.848500px;}
.y1e{bottom:291.073500px;}
.y64{bottom:291.223500px;}
.y1f{bottom:291.448500px;}
.y209{bottom:297.448500px;}
.y208{bottom:297.823500px;}
.y207{bottom:297.898500px;}
.y20a{bottom:299.625000px;}
.y202{bottom:303.598500px;}
.y201{bottom:303.973500px;}
.y203{bottom:304.648500px;}
.y62{bottom:310.348500px;}
.y1c{bottom:311.250000px;}
.y63{bottom:311.398500px;}
.y1d{bottom:311.548500px;}
.yf8{bottom:312.448500px;}
.yf9{bottom:312.898500px;}
.yfa{bottom:313.948500px;}
.yfb{bottom:315.375000px;}
.yfc{bottom:316.048500px;}
.y204{bottom:319.348500px;}
.y205{bottom:319.423500px;}
.y206{bottom:319.500000px;}
.yfd{bottom:324.673500px;}
.y1fa{bottom:327.375000px;}
.y1fb{bottom:327.750000px;}
.y1fc{bottom:328.048500px;}
.y1fd{bottom:328.423500px;}
.y1fe{bottom:328.798500px;}
.y1ff{bottom:329.473500px;}
.y200{bottom:329.548500px;}
.y61{bottom:331.198500px;}
.y19{bottom:331.348500px;}
.y1b{bottom:331.723500px;}
.y1a{bottom:332.098500px;}
.yf3{bottom:333.000000px;}
.yf4{bottom:333.375000px;}
.yf5{bottom:335.473500px;}
.yf6{bottom:336.973500px;}
.yf7{bottom:338.098500px;}
.y1f9{bottom:349.648500px;}
.y5e{bottom:349.948500px;}
.y1f7{bottom:350.023500px;}
.y1f8{bottom:350.098500px;}
.y1f6{bottom:350.323500px;}
.y1f5{bottom:350.398500px;}
.y5f{bottom:350.625000px;}
.y60{bottom:351.673500px;}
.y18{bottom:351.898500px;}
.y1f2{bottom:353.323500px;}
.yf0{bottom:354.223500px;}
.yf1{bottom:355.273500px;}
.y293{bottom:355.500000px;}
.y1f4{bottom:355.798500px;}
.yf2{bottom:356.398500px;}
.y1f3{bottom:358.723500px;}
.y1f1{bottom:359.023500px;}
.y1f0{bottom:369.073500px;}
.y5d{bottom:371.098500px;}
.y1ee{bottom:371.250000px;}
.y1ef{bottom:371.323500px;}
.y292{bottom:371.398500px;}
.y1ed{bottom:371.625000px;}
.y17{bottom:371.698500px;}
.y1ec{bottom:372.000000px;}
.yec{bottom:375.073500px;}
.yed{bottom:376.500000px;}
.yee{bottom:378.298500px;}
.yef{bottom:379.423500px;}
.y1ea{bottom:384.823500px;}
.y1eb{bottom:384.898500px;}
.y291{bottom:389.773500px;}
.y1e4{bottom:391.048500px;}
.y1e5{bottom:391.125000px;}
.y5c{bottom:391.273500px;}
.y1e6{bottom:391.423500px;}
.y1e7{bottom:391.798500px;}
.y16{bottom:391.875000px;}
.y1e9{bottom:392.098500px;}
.y1e8{bottom:392.173500px;}
.y1e1{bottom:396.073500px;}
.y1e2{bottom:396.148500px;}
.ye7{bottom:397.048500px;}
.ye8{bottom:397.798500px;}
.yea{bottom:399.223500px;}
.ye9{bottom:399.973500px;}
.yeb{bottom:400.723500px;}
.y1e0{bottom:401.098500px;}
.y1df{bottom:401.173500px;}
.y1e3{bottom:402.598500px;}
.y5b{bottom:411.448500px;}
.y15{bottom:411.973500px;}
.y1d1{bottom:412.348500px;}
.y1d2{bottom:412.723500px;}
.y1d3{bottom:413.023500px;}
.y1d4{bottom:413.398500px;}
.y1d5{bottom:413.773500px;}
.y290{bottom:413.923500px;}
.y1d6{bottom:414.073500px;}
.y1d7{bottom:414.148500px;}
.y1d8{bottom:414.523500px;}
.y1d9{bottom:415.198500px;}
.y1da{bottom:415.500000px;}
.y1db{bottom:415.573500px;}
.yde{bottom:416.548500px;}
.y1dd{bottom:416.625000px;}
.ydf{bottom:416.848500px;}
.ye0{bottom:416.923500px;}
.y1de{bottom:417.000000px;}
.ye1{bottom:417.598500px;}
.ye2{bottom:418.648500px;}
.ye3{bottom:419.773500px;}
.ye4{bottom:420.448500px;}
.ye5{bottom:421.573500px;}
.ye6{bottom:421.875000px;}
.y1dc{bottom:425.250000px;}
.y14{bottom:431.473500px;}
.y5a{bottom:431.625000px;}
.y1d0{bottom:433.198500px;}
.y28f{bottom:433.648500px;}
.y1cd{bottom:433.948500px;}
.yd8{bottom:434.473500px;}
.yd7{bottom:434.548500px;}
.yd9{bottom:435.223500px;}
.yda{bottom:435.598500px;}
.ydb{bottom:436.273500px;}
.y1c8{bottom:437.173500px;}
.y1c9{bottom:437.473500px;}
.ydc{bottom:437.773500px;}
.y1ca{bottom:437.923500px;}
.y1cb{bottom:438.223500px;}
.y1cc{bottom:438.598500px;}
.y1ce{bottom:438.973500px;}
.y1cf{bottom:439.348500px;}
.ydd{bottom:443.098500px;}
.y59{bottom:451.423500px;}
.y13{bottom:451.948500px;}
.y28e{bottom:452.773500px;}
.y28d{bottom:453.823500px;}
.y28c{bottom:454.198500px;}
.yd3{bottom:458.250000px;}
.ycf{bottom:458.625000px;}
.y1c5{bottom:458.773500px;}
.yd0{bottom:459.000000px;}
.y1c3{bottom:459.073500px;}
.y1c4{bottom:459.148500px;}
.y1c6{bottom:459.448500px;}
.y1c7{bottom:459.523500px;}
.yd4{bottom:460.423500px;}
.yd2{bottom:461.473500px;}
.yd1{bottom:461.548500px;}
.y1c1{bottom:462.298500px;}
.yd5{bottom:462.598500px;}
.y1c2{bottom:462.750000px;}
.y1c0{bottom:463.048500px;}
.yd6{bottom:464.023500px;}
.y58{bottom:471.298500px;}
.y12{bottom:471.823500px;}
.y28b{bottom:473.625000px;}
.yc6{bottom:475.198500px;}
.yc7{bottom:475.875000px;}
.yc8{bottom:475.948500px;}
.yc9{bottom:476.250000px;}
.yca{bottom:476.323500px;}
.ycb{bottom:477.000000px;}
.ycc{bottom:478.423500px;}
.y1bf{bottom:479.250000px;}
.y1be{bottom:479.323500px;}
.y1bd{bottom:479.625000px;}
.y1bc{bottom:480.000000px;}
.yce{bottom:480.223500px;}
.ycd{bottom:480.298500px;}
.y1ba{bottom:484.648500px;}
.y1bb{bottom:485.098500px;}
.y57{bottom:491.773500px;}
.y11{bottom:491.923500px;}
.yc4{bottom:492.823500px;}
.y28a{bottom:493.798500px;}
.yc5{bottom:498.598500px;}
.y10a{bottom:498.973500px;}
.y109{bottom:499.348500px;}
.y1b5{bottom:503.398500px;}
.y1b6{bottom:503.773500px;}
.y1b7{bottom:504.148500px;}
.y1b8{bottom:504.448500px;}
.y1b9{bottom:504.823500px;}
.y1b4{bottom:507.000000px;}
.y55{bottom:510.823500px;}
.y56{bottom:511.500000px;}
.y10{bottom:512.098500px;}
.y289{bottom:513.598500px;}
.y105{bottom:518.023500px;}
.y106{bottom:518.398500px;}
.y107{bottom:518.773500px;}
.y108{bottom:520.198500px;}
.yb9{bottom:520.500000px;}
.yba{bottom:520.573500px;}
.ybb{bottom:520.875000px;}
.ybc{bottom:520.948500px;}
.ybd{bottom:521.323500px;}
.ybe{bottom:521.698500px;}
.ybf{bottom:523.125000px;}
.yc0{bottom:523.423500px;}
.yc1{bottom:524.098500px;}
.yc2{bottom:524.173500px;}
.yc3{bottom:524.473500px;}
.y1b3{bottom:524.698500px;}
.y1af{bottom:525.000000px;}
.y1b2{bottom:525.298500px;}
.y1ae{bottom:525.375000px;}
.y1b1{bottom:525.750000px;}
.y1b0{bottom:526.048500px;}
.y1ad{bottom:526.125000px;}
.y1ac{bottom:526.423500px;}
.y1ab{bottom:526.798500px;}
.y54{bottom:531.673500px;}
.yf{bottom:532.198500px;}
.y288{bottom:532.723500px;}
.y287{bottom:534.073500px;}
.y286{bottom:534.448500px;}
.y1a9{bottom:536.098500px;}
.y1aa{bottom:536.173500px;}
.y1a4{bottom:537.223500px;}
.y104{bottom:541.348500px;}
.y1a8{bottom:541.500000px;}
.y1a7{bottom:541.575000px;}
.y1a5{bottom:541.950000px;}
.y1a6{bottom:546.598500px;}
.y4f{bottom:550.798500px;}
.y50{bottom:551.173500px;}
.y51{bottom:551.848500px;}
.y52{bottom:551.923500px;}
.y1a3{bottom:552.000000px;}
.ye{bottom:552.075000px;}
.y53{bottom:552.223500px;}
.y1a1{bottom:552.673500px;}
.y1a0{bottom:552.750000px;}
.y1a2{bottom:553.048500px;}
.y285{bottom:553.875000px;}
.y19e{bottom:559.125000px;}
.y19f{bottom:559.200000px;}
.y100{bottom:560.848500px;}
.y101{bottom:560.923500px;}
.y102{bottom:561.598500px;}
.y103{bottom:563.023500px;}
.yb5{bottom:564.825000px;}
.yb6{bottom:565.200000px;}
.yb7{bottom:565.500000px;}
.yb8{bottom:565.575000px;}
.y19d{bottom:568.200000px;}
.y19c{bottom:568.575000px;}
.y19b{bottom:568.950000px;}
.y19a{bottom:569.325000px;}
.y199{bottom:569.625000px;}
.y198{bottom:570.000000px;}
.y4e{bottom:571.723500px;}
.yd{bottom:572.250000px;}
.y284{bottom:574.048500px;}
.yb3{bottom:578.848500px;}
.y197{bottom:579.750000px;}
.yb1{bottom:584.625000px;}
.y196{bottom:585.375000px;}
.y195{bottom:585.450000px;}
.y193{bottom:585.523500px;}
.yb4{bottom:585.673500px;}
.y4d{bottom:592.200000px;}
.y18d{bottom:592.273500px;}
.yc{bottom:592.348500px;}
.y283{bottom:592.798500px;}
.y18f{bottom:593.325000px;}
.y18e{bottom:593.398500px;}
.y282{bottom:593.548500px;}
.y194{bottom:593.625000px;}
.y190{bottom:593.773500px;}
.y281{bottom:593.848500px;}
.y191{bottom:594.075000px;}
.y192{bottom:594.148500px;}
.y280{bottom:594.223500px;}
.y27f{bottom:594.298500px;}
.y27e{bottom:594.898500px;}
.y189{bottom:599.473500px;}
.y188{bottom:599.548500px;}
.y186{bottom:599.848500px;}
.y187{bottom:599.923500px;}
.y184{bottom:600.223500px;}
.y185{bottom:600.298500px;}
.y183{bottom:600.598500px;}
.y182{bottom:600.898500px;}
.y181{bottom:600.973500px;}
.y180{bottom:601.348500px;}
.y17f{bottom:605.250000px;}
.y17e{bottom:605.325000px;}
.y18c{bottom:608.098500px;}
.yad{bottom:608.398500px;}
.yae{bottom:609.148500px;}
.yaf{bottom:610.200000px;}
.y18b{bottom:610.273500px;}
.y18a{bottom:610.348500px;}
.y4a{bottom:611.625000px;}
.yb0{bottom:612.000000px;}
.y4b{bottom:612.298500px;}
.yb{bottom:612.523500px;}
.y4c{bottom:612.673500px;}
.y27d{bottom:613.648500px;}
.y27c{bottom:614.023500px;}
.y17b{bottom:614.625000px;}
.y27b{bottom:614.700000px;}
.y17a{bottom:615.000000px;}
.y179{bottom:615.298500px;}
.y178{bottom:615.375000px;}
.y177{bottom:615.673500px;}
.y176{bottom:615.750000px;}
.y175{bottom:616.125000px;}
.y174{bottom:617.173500px;}
.y17c{bottom:623.250000px;}
.y17d{bottom:623.323500px;}
.yaa{bottom:632.173500px;}
.ya{bottom:632.400000px;}
.y49{bottom:632.473500px;}
.y27a{bottom:633.823500px;}
.y279{bottom:634.875000px;}
.yab{bottom:635.400000px;}
.yac{bottom:635.775000px;}
.y278{bottom:636.375000px;}
.y173{bottom:637.348500px;}
.ya5{bottom:650.848500px;}
.ya6{bottom:651.223500px;}
.y277{bottom:652.198500px;}
.ya7{bottom:652.275000px;}
.y48{bottom:652.723500px;}
.y9{bottom:652.798500px;}
.y276{bottom:652.948500px;}
.ya8{bottom:653.098500px;}
.y275{bottom:654.000000px;}
.ya9{bottom:654.073500px;}
.y274{bottom:654.673500px;}
.y273{bottom:654.750000px;}
.y272{bottom:655.423500px;}
.y172{bottom:658.198500px;}
.y171{bottom:658.573500px;}
.y170{bottom:658.948500px;}
.y16e{bottom:659.173500px;}
.y16f{bottom:659.250000px;}
.y16d{bottom:659.323500px;}
.y16b{bottom:659.548500px;}
.y16c{bottom:659.625000px;}
.y4{bottom:672.298500px;}
.ya3{bottom:672.448500px;}
.ya2{bottom:672.525000px;}
.y5{bottom:672.598500px;}
.y6{bottom:672.673500px;}
.y7{bottom:672.973500px;}
.y8{bottom:673.048500px;}
.y47{bottom:673.198500px;}
.y271{bottom:673.423500px;}
.ya1{bottom:673.500000px;}
.y26f{bottom:673.798500px;}
.y270{bottom:674.173500px;}
.y26e{bottom:674.548500px;}
.y26d{bottom:675.223500px;}
.ya4{bottom:675.375000px;}
.y26c{bottom:675.598500px;}
.y166{bottom:684.073500px;}
.y165{bottom:684.150000px;}
.y16a{bottom:684.448500px;}
.y169{bottom:684.525000px;}
.y167{bottom:684.823500px;}
.y168{bottom:684.900000px;}
.y3{bottom:692.775000px;}
.y45{bottom:693.000000px;}
.y46{bottom:693.375000px;}
.y26b{bottom:693.598500px;}
.y26a{bottom:693.973500px;}
.y9b{bottom:694.423500px;}
.y269{bottom:694.650000px;}
.y9c{bottom:694.798500px;}
.y9d{bottom:695.173500px;}
.y268{bottom:695.400000px;}
.y9e{bottom:695.548500px;}
.y267{bottom:695.775000px;}
.y9f{bottom:695.923500px;}
.ya0{bottom:696.598500px;}
.y42{bottom:713.098500px;}
.y266{bottom:713.400000px;}
.y43{bottom:713.473500px;}
.y44{bottom:713.548500px;}
.y265{bottom:713.698500px;}
.y164{bottom:714.000000px;}
.y97{bottom:714.598500px;}
.y264{bottom:714.823500px;}
.y96{bottom:714.973500px;}
.y263{bottom:715.573500px;}
.y262{bottom:715.948500px;}
.y98{bottom:716.025000px;}
.y99{bottom:716.400000px;}
.y9a{bottom:717.448500px;}
.y163{bottom:719.698500px;}
.y162{bottom:719.775000px;}
.y161{bottom:729.448500px;}
.y15e{bottom:730.198500px;}
.y160{bottom:730.573500px;}
.y15f{bottom:730.875000px;}
.y41{bottom:733.275000px;}
.y261{bottom:733.573500px;}
.y260{bottom:734.250000px;}
.y25f{bottom:735.000000px;}
.y25e{bottom:735.375000px;}
.y25d{bottom:736.048500px;}
.y94{bottom:736.948500px;}
.y92{bottom:737.323500px;}
.y95{bottom:738.298500px;}
.y93{bottom:738.750000px;}
.y15d{bottom:747.150000px;}
.y15b{bottom:749.323500px;}
.y40{bottom:753.823500px;}
.y25c{bottom:755.548500px;}
.y8d{bottom:757.500000px;}
.y15a{bottom:757.573500px;}
.y8c{bottom:757.798500px;}
.y159{bottom:757.875000px;}
.y158{bottom:757.948500px;}
.y8e{bottom:758.098500px;}
.y8b{bottom:758.173500px;}
.y8f{bottom:758.848500px;}
.y90{bottom:759.223500px;}
.y91{bottom:759.973500px;}
.y15c{bottom:761.848500px;}
.y2{bottom:763.348500px;}
.y3e{bottom:773.250000px;}
.y3f{bottom:774.000000px;}
.y25b{bottom:775.275000px;}
.y25a{bottom:776.698500px;}
.y87{bottom:779.400000px;}
.y88{bottom:780.525000px;}
.y89{bottom:780.823500px;}
.y8a{bottom:781.198500px;}
.y1{bottom:785.025000px;}
.y155{bottom:790.650000px;}
.y157{bottom:791.025000px;}
.y154{bottom:791.400000px;}
.y156{bottom:791.698500px;}
.y153{bottom:792.448500px;}
.y152{bottom:792.525000px;}
.y14c{bottom:792.823500px;}
.y151{bottom:792.900000px;}
.y14d{bottom:793.198500px;}
.y150{bottom:793.573500px;}
.y3d{bottom:793.800000px;}
.y14f{bottom:793.875000px;}
.y14e{bottom:793.948500px;}
.y259{bottom:794.400000px;}
.y258{bottom:795.448500px;}
.y257{bottom:796.198500px;}
.y14b{bottom:801.525000px;}
.y85{bottom:801.675000px;}
.y83{bottom:801.750000px;}
.y82{bottom:802.050000px;}
.y84{bottom:802.425000px;}
.y3c{bottom:813.900000px;}
.y256{bottom:814.875000px;}
.y255{bottom:815.625000px;}
.y254{bottom:816.000000px;}
.y86{bottom:816.150000px;}
.y253{bottom:816.375000px;}
.y14a{bottom:816.598500px;}
.y252{bottom:816.675000px;}
.y251{bottom:817.125000px;}
.y7f{bottom:824.400000px;}
.y7e{bottom:824.775000px;}
.y7d{bottom:825.150000px;}
.y7c{bottom:825.448500px;}
.y80{bottom:826.198500px;}
.y149{bottom:826.348500px;}
.y81{bottom:826.875000px;}
.y148{bottom:827.025000px;}
.y147{bottom:827.400000px;}
.y146{bottom:827.775000px;}
.y145{bottom:828.150000px;}
.y144{bottom:828.525000px;}
.y142{bottom:829.198500px;}
.y3b{bottom:830.098500px;}
.y143{bottom:835.275000px;}
.y250{bottom:835.425000px;}
.y24f{bottom:835.800000px;}
.y24e{bottom:836.550000px;}
.y39{bottom:850.275000px;}
.y3a{bottom:851.025000px;}
.y24d{bottom:855.300000px;}
.y24c{bottom:855.598500px;}
.y24b{bottom:856.650000px;}
.y78{bottom:867.223500px;}
.y141{bottom:867.675000px;}
.y79{bottom:868.650000px;}
.y13e{bottom:868.800000px;}
.y7a{bottom:869.025000px;}
.y140{bottom:869.098500px;}
.y13f{bottom:869.175000px;}
.y34{bottom:869.400000px;}
.y7b{bottom:869.698500px;}
.y35{bottom:870.448500px;}
.y38{bottom:870.823500px;}
.y37{bottom:870.900000px;}
.y36{bottom:871.573500px;}
.y24a{bottom:875.400000px;}
.y249{bottom:876.448500px;}
.y248{bottom:877.198500px;}
.y13d{bottom:888.300000px;}
.y77{bottom:888.823500px;}
.y13c{bottom:889.650000px;}
.y33{bottom:891.000000px;}
.y247{bottom:896.323500px;}
.y13b{bottom:907.275000px;}
.y74{bottom:907.500000px;}
.y13a{bottom:908.400000px;}
.y75{bottom:909.000000px;}
.y139{bottom:909.448500px;}
.y76{bottom:909.675000px;}
.y32{bottom:911.473500px;}
.y246{bottom:933.375000px;}
.y31{bottom:943.948500px;}
.y72{bottom:945.000000px;}
.y73{bottom:945.375000px;}
.y138{bottom:945.823500px;}
.y137{bottom:945.900000px;}
.yb2{bottom:1017.000000px;}
.h28{height:17.666016px;}
.h2a{height:18.140625px;}
.h21{height:23.554688px;}
.h1b{height:24.187500px;}
.h26{height:29.428711px;}
.h13{height:29.443359px;}
.h1c{height:30.234375px;}
.h2c{height:31.289062px;}
.h2d{height:35.314453px;}
.hb{height:35.332031px;}
.h29{height:37.546875px;}
.h16{height:41.200195px;}
.h2{height:41.220703px;}
.h1a{height:42.328125px;}
.h9{height:43.169382px;}
.h32{height:43.804688px;}
.h20{height:47.085938px;}
.h17{height:47.109375px;}
.h1d{height:48.375000px;}
.h2b{height:50.062500px;}
.h24{height:51.216000px;}
.h2e{height:52.971680px;}
.h18{height:52.998047px;}
.h8{height:54.421875px;}
.h10{height:56.320312px;}
.h6{height:58.857422px;}
.h3{height:58.886719px;}
.he{height:60.468750px;}
.hd{height:62.578125px;}
.h27{height:64.020000px;}
.h5{height:64.743164px;}
.h4{height:64.775391px;}
.h30{height:65.520703px;}
.h14{height:66.515625px;}
.h31{height:68.835938px;}
.h11{height:70.628906px;}
.h12{height:70.664062px;}
.h19{height:76.514648px;}
.h23{height:76.552734px;}
.h1f{height:78.609375px;}
.hc{height:81.351562px;}
.hf{height:82.441406px;}
.h1e{height:84.656250px;}
.h15{height:96.750000px;}
.h2f{height:111.884766px;}
.h22{height:129.550781px;}
.h1{height:137.671875px;}
.h25{height:1002.000000px;}
.h7{height:1008.000000px;}
.h0{height:1012.500000px;}
.h33{height:1014.000000px;}
.ha{height:1017.000000px;}
.w2{width:678.000000px;}
.w0{width:679.500000px;}
.w3{width:682.500000px;}
.w1{width:688.500000px;}
.x0{left:0.000000px;}
.x3f{left:57.975000px;}
.x136{left:59.025000px;}
.xc8{left:61.200000px;}
.xa{left:79.575000px;}
.x4{left:81.000000px;}
.x37{left:86.025000px;}
.x26{left:87.150000px;}
.x1c{left:88.200000px;}
.x1d{left:89.625000px;}
.xcc{left:92.175000px;}
.xce{left:101.850000px;}
.x12e{left:105.448500px;}
.xb{left:109.800000px;}
.x3{left:111.225000px;}
.x3a{left:116.250000px;}
.x25{left:117.375000px;}
.x1{left:119.175000px;}
.x6a{left:120.225000px;}
.x72{left:121.350000px;}
.xa8{left:123.150000px;}
.x9b{left:124.575000px;}
.x90{left:125.625000px;}
.xa1{left:127.050000px;}
.x50{left:128.175000px;}
.x130{left:129.225000px;}
.x53{left:130.350000px;}
.x12{left:131.400000px;}
.xa2{left:132.825000px;}
.xa9{left:136.050000px;}
.x1e{left:138.600000px;}
.x51{left:140.025000px;}
.xa3{left:141.825000px;}
.x9d{left:143.250000px;}
.x54{left:145.050000px;}
.x11{left:146.850000px;}
.x70{left:147.975000px;}
.x91{left:149.400000px;}
.x5{left:151.950000px;}
.xa4{left:153.000000px;}
.xae{left:154.800000px;}
.xa5{left:155.850000px;}
.x6b{left:158.025000px;}
.x19{left:159.825000px;}
.x124{left:164.550000px;}
.x8e{left:165.975000px;}
.xd7{left:167.775000px;}
.xa6{left:169.575000px;}
.x118{left:170.625000px;}
.xb8{left:171.750000px;}
.x8d{left:172.800000px;}
.xb9{left:174.225000px;}
.x4d{left:175.650000px;}
.x42{left:177.450000px;}
.x71{left:178.575000px;}
.xaf{left:181.800000px;}
.x43{left:185.025000px;}
.x87{left:186.450000px;}
.x76{left:187.575000px;}
.x88{left:189.750000px;}
.x5d{left:191.550000px;}
.x77{left:192.600000px;}
.x89{left:193.648500px;}
.x5e{left:195.450000px;}
.xa7{left:196.575000px;}
.x120{left:198.375000px;}
.x128{left:199.800000px;}
.xb0{left:200.850000px;}
.x6c{left:202.648500px;}
.x110{left:203.773500px;}
.x92{left:204.825000px;}
.x102{left:206.250000px;}
.x55{left:208.425000px;}
.xe{left:211.350000px;}
.xf9{left:213.450000px;}
.x6d{left:214.950000px;}
.xab{left:216.000000px;}
.x9e{left:217.050000px;}
.x12c{left:218.550000px;}
.x10a{left:221.023500px;}
.x103{left:222.148500px;}
.xf6{left:223.950000px;}
.xf1{left:225.750000px;}
.x104{left:228.225000px;}
.x2d{left:229.350000px;}
.xb1{left:231.150000px;}
.x8a{left:232.575000px;}
.x3d{left:235.050000px;}
.x13{left:236.175000px;}
.xfe{left:237.975000px;}
.xb2{left:239.025000px;}
.x10b{left:241.950000px;}
.x30{left:243.000000px;}
.xf{left:244.425000px;}
.xb3{left:245.550000px;}
.x5f{left:246.975000px;}
.x4f{left:248.400000px;}
.xaa{left:249.450000px;}
.x8f{left:251.250000px;}
.x44{left:252.750000px;}
.xbc{left:254.850000px;}
.xdf{left:257.400000px;}
.x45{left:258.450000px;}
.x10c{left:259.575000px;}
.x93{left:261.000000px;}
.x8b{left:262.800000px;}
.x119{left:264.225000px;}
.x31{left:265.350000px;}
.xf2{left:266.400000px;}
.x7e{left:268.200000px;}
.x7f{left:270.000000px;}
.xff{left:271.425000px;}
.x40{left:273.225000px;}
.x6e{left:275.025000px;}
.xe6{left:276.150000px;}
.x134{left:277.575000px;}
.x56{left:278.625000px;}
.x52{left:281.175000px;}
.x12f{left:282.225000px;}
.x3b{left:283.650000px;}
.xfa{left:284.775000px;}
.x80{left:285.825000px;}
.x81{left:286.950000px;}
.xe7{left:288.375000px;}
.xb4{left:289.425000px;}
.x79{left:291.600000px;}
.x7a{left:294.150000px;}
.xf3{left:296.250000px;}
.x2b{left:298.050000px;}
.xfc{left:299.175000px;}
.xbd{left:301.350000px;}
.x82{left:303.150000px;}
.xe0{left:304.200000px;}
.x5a{left:305.625000px;}
.x3c{left:307.050000px;}
.xf7{left:308.175000px;}
.xd8{left:309.600000px;}
.x11a{left:310.650000px;}
.x5b{left:311.775000px;}
.x1b{left:312.825000px;}
.x6{left:316.425000px;}
.xfb{left:317.550000px;}
.x64{left:318.975000px;}
.x9c{left:320.775000px;}
.xac{left:322.575000px;}
.x129{left:324.000000px;}
.x3e{left:325.425000px;}
.xcd{left:326.550000px;}
.xc{left:328.350000px;}
.xf8{left:329.400000px;}
.x105{left:330.825000px;}
.x11d{left:331.950000px;}
.xe8{left:333.000000px;}
.x38{left:334.800000px;}
.x11e{left:335.850000px;}
.x60{left:336.975000px;}
.x5c{left:338.400000px;}
.x57{left:340.575000px;}
.x95{left:342.000000px;}
.x61{left:343.050000px;}
.xc0{left:344.550000px;}
.xfd{left:345.600000px;}
.x7{left:347.025000px;}
.x65{left:348.825000px;}
.x2{left:349.950000px;}
.xc1{left:352.050000px;}
.x83{left:353.550000px;}
.x125{left:354.600000px;}
.x32{left:355.650000px;}
.x46{left:356.775000px;}
.x47{left:358.200000px;}
.xc2{left:360.000000px;}
.x58{left:361.425000px;}
.x98{left:362.850000px;}
.x48{left:363.975000px;}
.xe9{left:365.400000px;}
.x39{left:367.950000px;}
.xb5{left:369.000000px;}
.x135{left:370.050000px;}
.xd{left:371.550000px;}
.x1a{left:373.650000px;}
.x99{left:374.775000px;}
.x1f{left:376.200000px;}
.x9a{left:378.000000px;}
.x11b{left:379.050000px;}
.x8{left:381.225000px;}
.xbe{left:382.350000px;}
.x9f{left:383.775000px;}
.xc3{left:385.575000px;}
.x12a{left:386.625000px;}
.x49{left:387.750000px;}
.x27{left:388.798500px;}
.xe1{left:389.850000px;}
.x4e{left:391.650000px;}
.x2c{left:393.450000px;}
.xea{left:394.575000px;}
.x2e{left:396.375000px;}
.x28{left:397.423500px;}
.x109{left:398.548500px;}
.x94{left:399.600000px;}
.x4a{left:401.025000px;}
.x59{left:402.150000px;}
.x7b{left:403.200000px;}
.x66{left:404.250000px;}
.xb6{left:406.048500px;}
.x10e{left:407.173500px;}
.xd0{left:408.225000px;}
.x121{left:410.025000px;}
.x67{left:411.150000px;}
.xeb{left:412.200000px;}
.x14{left:413.250000px;}
.xd9{left:414.375000px;}
.xba{left:415.798500px;}
.x12b{left:417.225000px;}
.x20{left:418.350000px;}
.xd3{left:420.450000px;}
.x62{left:422.625000px;}
.x10d{left:424.048500px;}
.x7c{left:425.850000px;}
.xd4{left:429.825000px;}
.x7d{left:432.000000px;}
.xd1{left:434.173500px;}
.x4b{left:435.600000px;}
.x8c{left:436.650000px;}
.x29{left:438.150000px;}
.x113{left:439.950000px;}
.x68{left:441.000000px;}
.xc4{left:443.173500px;}
.xe2{left:444.600000px;}
.x78{left:446.400000px;}
.xb7{left:447.450000px;}
.x84{left:448.575000px;}
.xe3{left:450.000000px;}
.x23{left:451.798500px;}
.x9{left:453.225000px;}
.xbf{left:454.650000px;}
.xec{left:456.150000px;}
.x33{left:457.200000px;}
.x96{left:459.750000px;}
.x100{left:460.800000px;}
.x114{left:462.600000px;}
.x85{left:463.650000px;}
.xc5{left:465.150000px;}
.x122{left:466.575000px;}
.x17{left:467.625000px;}
.xc6{left:469.050000px;}
.x2a{left:470.175000px;}
.x2f{left:471.600000px;}
.xdc{left:472.650000px;}
.x69{left:474.450000px;}
.x73{left:475.575000px;}
.xa0{left:477.750000px;}
.x11c{left:479.175000px;}
.x74{left:480.975000px;}
.xc9{left:482.025000px;}
.x75{left:483.150000px;}
.xbb{left:484.950000px;}
.x97{left:487.800000px;}
.x126{left:489.225000px;}
.x18{left:490.350000px;}
.xed{left:491.400000px;}
.x4c{left:492.825000px;}
.x12d{left:494.625000px;}
.x10{left:496.050000px;}
.xdd{left:497.550000px;}
.x115{left:498.600000px;}
.xad{left:500.400000px;}
.x111{left:501.825000px;}
.x63{left:503.625000px;}
.xee{left:505.800000px;}
.xe4{left:507.600000px;}
.xef{left:509.025000px;}
.xc7{left:510.150000px;}
.x101{left:511.200000px;}
.x108{left:512.250000px;}
.xf4{left:513.375000px;}
.x15{left:514.425000px;}
.x6f{left:517.350000px;}
.x133{left:518.400000px;}
.xca{left:521.250000px;}
.xda{left:522.750000px;}
.x86{left:524.850000px;}
.xf5{left:526.350000px;}
.xf0{left:527.775000px;}
.x106{left:530.625000px;}
.xe5{left:533.550000px;}
.x112{left:534.975000px;}
.xdb{left:537.450000px;}
.xcb{left:539.625000px;}
.x107{left:540.750000px;}
.x21{left:542.850000px;}
.x132{left:545.400000px;}
.x127{left:546.825000px;}
.x35{left:548.250000px;}
.x34{left:549.375000px;}
.x41{left:551.550000px;}
.x116{left:554.025000px;}
.x16{left:556.200000px;}
.x10f{left:557.625000px;}
.x11f{left:558.750000px;}
.xd5{left:560.550000px;}
.x131{left:563.400000px;}
.xde{left:568.050000px;}
.x117{left:569.850000px;}
.x123{left:571.350000px;}
.x24{left:575.625000px;}
.xd6{left:583.575000px;}
.x22{left:585.000000px;}
.xd2{left:588.600000px;}
.x36{left:590.775000px;}
.xcf{left:606.975000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.333333pt;}
.v1{vertical-align:2.666667pt;}
.v3{vertical-align:21.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.420781pt;}
.ls2{letter-spacing:58.304793pt;}
.ws2{word-spacing:-6.666667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:12.479815pt;}
._1{margin-left:-4.895647pt;}
._0{width:3.075574pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.333333pt;}
.fs9{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fse{font-size:101.333333pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y245{bottom:76.865333pt;}
.y136{bottom:79.000000pt;}
.y71{bottom:80.333333pt;}
.y30{bottom:81.065333pt;}
.y242{bottom:94.198667pt;}
.y243{bottom:94.532000pt;}
.y244{bottom:94.800000pt;}
.y135{bottom:96.333333pt;}
.y70{bottom:98.598667pt;}
.y2f{bottom:98.732000pt;}
.y23e{bottom:112.133333pt;}
.y23f{bottom:112.398667pt;}
.y240{bottom:112.466667pt;}
.y241{bottom:112.732000pt;}
.y133{bottom:114.532000pt;}
.y134{bottom:114.865333pt;}
.y6f{bottom:116.466667pt;}
.y2e{bottom:116.666667pt;}
.y132{bottom:132.133333pt;}
.y6e{bottom:134.065333pt;}
.y2d{bottom:134.265333pt;}
.y23d{bottom:142.532000pt;}
.y23c{bottom:142.800000pt;}
.y23b{bottom:143.466667pt;}
.y23a{bottom:144.133333pt;}
.y239{bottom:144.466667pt;}
.y237{bottom:145.333333pt;}
.y238{bottom:145.398667pt;}
.y130{bottom:150.065333pt;}
.y131{bottom:150.398667pt;}
.y2b{bottom:151.865333pt;}
.y6d{bottom:152.000000pt;}
.y2c{bottom:152.198667pt;}
.y232{bottom:154.666667pt;}
.y236{bottom:159.732000pt;}
.y235{bottom:159.800000pt;}
.y234{bottom:160.065333pt;}
.y233{bottom:160.133333pt;}
.y6c{bottom:168.598667pt;}
.y29{bottom:169.732000pt;}
.y2a{bottom:170.398667pt;}
.y22a{bottom:173.532000pt;}
.y22b{bottom:173.598667pt;}
.y22c{bottom:173.865333pt;}
.y22d{bottom:174.133333pt;}
.y22e{bottom:175.133333pt;}
.y22f{bottom:175.198667pt;}
.y230{bottom:175.466667pt;}
.y231{bottom:175.732000pt;}
.y126{bottom:181.732000pt;}
.y127{bottom:181.800000pt;}
.y128{bottom:182.065333pt;}
.y129{bottom:182.398667pt;}
.y12a{bottom:183.065333pt;}
.y12b{bottom:183.333333pt;}
.y12c{bottom:183.398667pt;}
.y12e{bottom:183.598667pt;}
.y12f{bottom:183.666667pt;}
.y12d{bottom:183.732000pt;}
.y26{bottom:187.666667pt;}
.y6b{bottom:187.800000pt;}
.y28{bottom:188.000000pt;}
.y27{bottom:188.333333pt;}
.y125{bottom:189.466667pt;}
.y224{bottom:192.133333pt;}
.y228{bottom:192.466667pt;}
.y225{bottom:193.000000pt;}
.y226{bottom:193.065333pt;}
.y227{bottom:193.398667pt;}
.y120{bottom:195.198667pt;}
.y122{bottom:195.532000pt;}
.y121{bottom:195.800000pt;}
.y123{bottom:196.466667pt;}
.y124{bottom:196.800000pt;}
.y229{bottom:196.865333pt;}
.y11f{bottom:198.065333pt;}
.y11b{bottom:203.198667pt;}
.y68{bottom:204.800000pt;}
.y69{bottom:205.398667pt;}
.y25{bottom:205.598667pt;}
.y6a{bottom:205.732000pt;}
.y11e{bottom:209.000000pt;}
.y11c{bottom:210.265333pt;}
.y11d{bottom:210.598667pt;}
.y221{bottom:211.000000pt;}
.y220{bottom:211.265333pt;}
.y21f{bottom:211.598667pt;}
.y223{bottom:212.865333pt;}
.y222{bottom:213.198667pt;}
.y113{bottom:216.932000pt;}
.y114{bottom:217.000000pt;}
.y116{bottom:217.265333pt;}
.y115{bottom:217.333333pt;}
.y117{bottom:217.598667pt;}
.y118{bottom:217.932000pt;}
.y119{bottom:220.198667pt;}
.y11a{bottom:220.466667pt;}
.y22{bottom:222.932000pt;}
.y67{bottom:223.000000pt;}
.y21{bottom:223.198667pt;}
.y24{bottom:223.532000pt;}
.y23{bottom:223.798667pt;}
.y10d{bottom:226.198667pt;}
.y10c{bottom:226.265333pt;}
.y10f{bottom:227.532000pt;}
.y112{bottom:227.865333pt;}
.y213{bottom:229.532000pt;}
.y214{bottom:230.532000pt;}
.y21b{bottom:231.132000pt;}
.y21c{bottom:231.198667pt;}
.y21d{bottom:231.465333pt;}
.y21e{bottom:231.798667pt;}
.y212{bottom:232.132000pt;}
.y10e{bottom:232.265333pt;}
.y110{bottom:234.198667pt;}
.y215{bottom:234.265333pt;}
.y216{bottom:234.333333pt;}
.y111{bottom:235.198667pt;}
.y21a{bottom:238.132000pt;}
.y219{bottom:238.465333pt;}
.y10b{bottom:239.000000pt;}
.y65{bottom:240.598667pt;}
.y20{bottom:241.398667pt;}
.y66{bottom:241.598667pt;}
.y217{bottom:244.532000pt;}
.y218{bottom:244.598667pt;}
.y20b{bottom:250.666667pt;}
.y20d{bottom:251.000000pt;}
.y20c{bottom:251.265333pt;}
.y20e{bottom:251.598667pt;}
.y20f{bottom:251.932000pt;}
.y210{bottom:252.000000pt;}
.y211{bottom:252.598667pt;}
.yfe{bottom:258.265333pt;}
.yff{bottom:258.532000pt;}
.y1e{bottom:258.732000pt;}
.y64{bottom:258.865333pt;}
.y1f{bottom:259.065333pt;}
.y209{bottom:264.398667pt;}
.y208{bottom:264.732000pt;}
.y207{bottom:264.798667pt;}
.y20a{bottom:266.333333pt;}
.y202{bottom:269.865333pt;}
.y201{bottom:270.198667pt;}
.y203{bottom:270.798667pt;}
.y62{bottom:275.865333pt;}
.y1c{bottom:276.666667pt;}
.y63{bottom:276.798667pt;}
.y1d{bottom:276.932000pt;}
.yf8{bottom:277.732000pt;}
.yf9{bottom:278.132000pt;}
.yfa{bottom:279.065333pt;}
.yfb{bottom:280.333333pt;}
.yfc{bottom:280.932000pt;}
.y204{bottom:283.865333pt;}
.y205{bottom:283.932000pt;}
.y206{bottom:284.000000pt;}
.yfd{bottom:288.598667pt;}
.y1fa{bottom:291.000000pt;}
.y1fb{bottom:291.333333pt;}
.y1fc{bottom:291.598667pt;}
.y1fd{bottom:291.932000pt;}
.y1fe{bottom:292.265333pt;}
.y1ff{bottom:292.865333pt;}
.y200{bottom:292.932000pt;}
.y61{bottom:294.398667pt;}
.y19{bottom:294.532000pt;}
.y1b{bottom:294.865333pt;}
.y1a{bottom:295.198667pt;}
.yf3{bottom:296.000000pt;}
.yf4{bottom:296.333333pt;}
.yf5{bottom:298.198667pt;}
.yf6{bottom:299.532000pt;}
.yf7{bottom:300.532000pt;}
.y1f9{bottom:310.798667pt;}
.y5e{bottom:311.065333pt;}
.y1f7{bottom:311.132000pt;}
.y1f8{bottom:311.198667pt;}
.y1f6{bottom:311.398667pt;}
.y1f5{bottom:311.465333pt;}
.y5f{bottom:311.666667pt;}
.y60{bottom:312.598667pt;}
.y18{bottom:312.798667pt;}
.y1f2{bottom:314.065333pt;}
.yf0{bottom:314.865333pt;}
.yf1{bottom:315.798667pt;}
.y293{bottom:316.000000pt;}
.y1f4{bottom:316.265333pt;}
.yf2{bottom:316.798667pt;}
.y1f3{bottom:318.865333pt;}
.y1f1{bottom:319.132000pt;}
.y1f0{bottom:328.065333pt;}
.y5d{bottom:329.865333pt;}
.y1ee{bottom:330.000000pt;}
.y1ef{bottom:330.065333pt;}
.y292{bottom:330.132000pt;}
.y1ed{bottom:330.333333pt;}
.y17{bottom:330.398667pt;}
.y1ec{bottom:330.666667pt;}
.yec{bottom:333.398667pt;}
.yed{bottom:334.666667pt;}
.yee{bottom:336.265333pt;}
.yef{bottom:337.265333pt;}
.y1ea{bottom:342.065333pt;}
.y1eb{bottom:342.132000pt;}
.y291{bottom:346.465333pt;}
.y1e4{bottom:347.598667pt;}
.y1e5{bottom:347.666667pt;}
.y5c{bottom:347.798667pt;}
.y1e6{bottom:347.932000pt;}
.y1e7{bottom:348.265333pt;}
.y16{bottom:348.333333pt;}
.y1e9{bottom:348.532000pt;}
.y1e8{bottom:348.598667pt;}
.y1e1{bottom:352.065333pt;}
.y1e2{bottom:352.132000pt;}
.ye7{bottom:352.932000pt;}
.ye8{bottom:353.598667pt;}
.yea{bottom:354.865333pt;}
.ye9{bottom:355.532000pt;}
.yeb{bottom:356.198667pt;}
.y1e0{bottom:356.532000pt;}
.y1df{bottom:356.598667pt;}
.y1e3{bottom:357.865333pt;}
.y5b{bottom:365.732000pt;}
.y15{bottom:366.198667pt;}
.y1d1{bottom:366.532000pt;}
.y1d2{bottom:366.865333pt;}
.y1d3{bottom:367.132000pt;}
.y1d4{bottom:367.465333pt;}
.y1d5{bottom:367.798667pt;}
.y290{bottom:367.932000pt;}
.y1d6{bottom:368.065333pt;}
.y1d7{bottom:368.132000pt;}
.y1d8{bottom:368.465333pt;}
.y1d9{bottom:369.065333pt;}
.y1da{bottom:369.333333pt;}
.y1db{bottom:369.398667pt;}
.yde{bottom:370.265333pt;}
.y1dd{bottom:370.333333pt;}
.ydf{bottom:370.532000pt;}
.ye0{bottom:370.598667pt;}
.y1de{bottom:370.666667pt;}
.ye1{bottom:371.198667pt;}
.ye2{bottom:372.132000pt;}
.ye3{bottom:373.132000pt;}
.ye4{bottom:373.732000pt;}
.ye5{bottom:374.732000pt;}
.ye6{bottom:375.000000pt;}
.y1dc{bottom:378.000000pt;}
.y14{bottom:383.532000pt;}
.y5a{bottom:383.666667pt;}
.y1d0{bottom:385.065333pt;}
.y28f{bottom:385.465333pt;}
.y1cd{bottom:385.732000pt;}
.yd8{bottom:386.198667pt;}
.yd7{bottom:386.265333pt;}
.yd9{bottom:386.865333pt;}
.yda{bottom:387.198667pt;}
.ydb{bottom:387.798667pt;}
.y1c8{bottom:388.598667pt;}
.y1c9{bottom:388.865333pt;}
.ydc{bottom:389.132000pt;}
.y1ca{bottom:389.265333pt;}
.y1cb{bottom:389.532000pt;}
.y1cc{bottom:389.865333pt;}
.y1ce{bottom:390.198667pt;}
.y1cf{bottom:390.532000pt;}
.ydd{bottom:393.865333pt;}
.y59{bottom:401.265333pt;}
.y13{bottom:401.732000pt;}
.y28e{bottom:402.465333pt;}
.y28d{bottom:403.398667pt;}
.y28c{bottom:403.732000pt;}
.yd3{bottom:407.333333pt;}
.ycf{bottom:407.666667pt;}
.y1c5{bottom:407.798667pt;}
.yd0{bottom:408.000000pt;}
.y1c3{bottom:408.065333pt;}
.y1c4{bottom:408.132000pt;}
.y1c6{bottom:408.398667pt;}
.y1c7{bottom:408.465333pt;}
.yd4{bottom:409.265333pt;}
.yd2{bottom:410.198667pt;}
.yd1{bottom:410.265333pt;}
.y1c1{bottom:410.932000pt;}
.yd5{bottom:411.198667pt;}
.y1c2{bottom:411.333333pt;}
.y1c0{bottom:411.598667pt;}
.yd6{bottom:412.465333pt;}
.y58{bottom:418.932000pt;}
.y12{bottom:419.398667pt;}
.y28b{bottom:421.000000pt;}
.yc6{bottom:422.398667pt;}
.yc7{bottom:423.000000pt;}
.yc8{bottom:423.065333pt;}
.yc9{bottom:423.333333pt;}
.yca{bottom:423.398667pt;}
.ycb{bottom:424.000000pt;}
.ycc{bottom:425.265333pt;}
.y1bf{bottom:426.000000pt;}
.y1be{bottom:426.065333pt;}
.y1bd{bottom:426.333333pt;}
.y1bc{bottom:426.666667pt;}
.yce{bottom:426.865333pt;}
.ycd{bottom:426.932000pt;}
.y1ba{bottom:430.798667pt;}
.y1bb{bottom:431.198667pt;}
.y57{bottom:437.132000pt;}
.y11{bottom:437.265333pt;}
.yc4{bottom:438.065333pt;}
.y28a{bottom:438.932000pt;}
.yc5{bottom:443.198667pt;}
.y10a{bottom:443.532000pt;}
.y109{bottom:443.865333pt;}
.y1b5{bottom:447.465333pt;}
.y1b6{bottom:447.798667pt;}
.y1b7{bottom:448.132000pt;}
.y1b8{bottom:448.398667pt;}
.y1b9{bottom:448.732000pt;}
.y1b4{bottom:450.666667pt;}
.y55{bottom:454.065333pt;}
.y56{bottom:454.666667pt;}
.y10{bottom:455.198667pt;}
.y289{bottom:456.532000pt;}
.y105{bottom:460.465333pt;}
.y106{bottom:460.798667pt;}
.y107{bottom:461.132000pt;}
.y108{bottom:462.398667pt;}
.yb9{bottom:462.666667pt;}
.yba{bottom:462.732000pt;}
.ybb{bottom:463.000000pt;}
.ybc{bottom:463.065333pt;}
.ybd{bottom:463.398667pt;}
.ybe{bottom:463.732000pt;}
.ybf{bottom:465.000000pt;}
.yc0{bottom:465.265333pt;}
.yc1{bottom:465.865333pt;}
.yc2{bottom:465.932000pt;}
.yc3{bottom:466.198667pt;}
.y1b3{bottom:466.398667pt;}
.y1af{bottom:466.666667pt;}
.y1b2{bottom:466.932000pt;}
.y1ae{bottom:467.000000pt;}
.y1b1{bottom:467.333333pt;}
.y1b0{bottom:467.598667pt;}
.y1ad{bottom:467.666667pt;}
.y1ac{bottom:467.932000pt;}
.y1ab{bottom:468.265333pt;}
.y54{bottom:472.598667pt;}
.yf{bottom:473.065333pt;}
.y288{bottom:473.532000pt;}
.y287{bottom:474.732000pt;}
.y286{bottom:475.065333pt;}
.y1a9{bottom:476.532000pt;}
.y1aa{bottom:476.598667pt;}
.y1a4{bottom:477.532000pt;}
.y104{bottom:481.198667pt;}
.y1a8{bottom:481.333333pt;}
.y1a7{bottom:481.400000pt;}
.y1a5{bottom:481.733333pt;}
.y1a6{bottom:485.865333pt;}
.y4f{bottom:489.598667pt;}
.y50{bottom:489.932000pt;}
.y51{bottom:490.532000pt;}
.y52{bottom:490.598667pt;}
.y1a3{bottom:490.666667pt;}
.ye{bottom:490.733333pt;}
.y53{bottom:490.865333pt;}
.y1a1{bottom:491.265333pt;}
.y1a0{bottom:491.333333pt;}
.y1a2{bottom:491.598667pt;}
.y285{bottom:492.333333pt;}
.y19e{bottom:497.000000pt;}
.y19f{bottom:497.066667pt;}
.y100{bottom:498.532000pt;}
.y101{bottom:498.598667pt;}
.y102{bottom:499.198667pt;}
.y103{bottom:500.465333pt;}
.yb5{bottom:502.066667pt;}
.yb6{bottom:502.400000pt;}
.yb7{bottom:502.666667pt;}
.yb8{bottom:502.733333pt;}
.y19d{bottom:505.066667pt;}
.y19c{bottom:505.400000pt;}
.y19b{bottom:505.733333pt;}
.y19a{bottom:506.066667pt;}
.y199{bottom:506.333333pt;}
.y198{bottom:506.666667pt;}
.y4e{bottom:508.198667pt;}
.yd{bottom:508.666667pt;}
.y284{bottom:510.265333pt;}
.yb3{bottom:514.532000pt;}
.y197{bottom:515.333333pt;}
.yb1{bottom:519.666667pt;}
.y196{bottom:520.333333pt;}
.y195{bottom:520.400000pt;}
.y193{bottom:520.465333pt;}
.yb4{bottom:520.598667pt;}
.y4d{bottom:526.400000pt;}
.y18d{bottom:526.465333pt;}
.yc{bottom:526.532000pt;}
.y283{bottom:526.932000pt;}
.y18f{bottom:527.400000pt;}
.y18e{bottom:527.465333pt;}
.y282{bottom:527.598667pt;}
.y194{bottom:527.666667pt;}
.y190{bottom:527.798667pt;}
.y281{bottom:527.865333pt;}
.y191{bottom:528.066667pt;}
.y192{bottom:528.132000pt;}
.y280{bottom:528.198667pt;}
.y27f{bottom:528.265333pt;}
.y27e{bottom:528.798667pt;}
.y189{bottom:532.865333pt;}
.y188{bottom:532.932000pt;}
.y186{bottom:533.198667pt;}
.y187{bottom:533.265333pt;}
.y184{bottom:533.532000pt;}
.y185{bottom:533.598667pt;}
.y183{bottom:533.865333pt;}
.y182{bottom:534.132000pt;}
.y181{bottom:534.198667pt;}
.y180{bottom:534.532000pt;}
.y17f{bottom:538.000000pt;}
.y17e{bottom:538.066667pt;}
.y18c{bottom:540.532000pt;}
.yad{bottom:540.798667pt;}
.yae{bottom:541.465333pt;}
.yaf{bottom:542.400000pt;}
.y18b{bottom:542.465333pt;}
.y18a{bottom:542.532000pt;}
.y4a{bottom:543.666667pt;}
.yb0{bottom:544.000000pt;}
.y4b{bottom:544.265333pt;}
.yb{bottom:544.465333pt;}
.y4c{bottom:544.598667pt;}
.y27d{bottom:545.465333pt;}
.y27c{bottom:545.798667pt;}
.y17b{bottom:546.333333pt;}
.y27b{bottom:546.400000pt;}
.y17a{bottom:546.666667pt;}
.y179{bottom:546.932000pt;}
.y178{bottom:547.000000pt;}
.y177{bottom:547.265333pt;}
.y176{bottom:547.333333pt;}
.y175{bottom:547.666667pt;}
.y174{bottom:548.598667pt;}
.y17c{bottom:554.000000pt;}
.y17d{bottom:554.065333pt;}
.yaa{bottom:561.932000pt;}
.ya{bottom:562.133333pt;}
.y49{bottom:562.198667pt;}
.y27a{bottom:563.398667pt;}
.y279{bottom:564.333333pt;}
.yab{bottom:564.800000pt;}
.yac{bottom:565.133333pt;}
.y278{bottom:565.666667pt;}
.y173{bottom:566.532000pt;}
.ya5{bottom:578.532000pt;}
.ya6{bottom:578.865333pt;}
.y277{bottom:579.732000pt;}
.ya7{bottom:579.800000pt;}
.y48{bottom:580.198667pt;}
.y9{bottom:580.265333pt;}
.y276{bottom:580.398667pt;}
.ya8{bottom:580.532000pt;}
.y275{bottom:581.333333pt;}
.ya9{bottom:581.398667pt;}
.y274{bottom:581.932000pt;}
.y273{bottom:582.000000pt;}
.y272{bottom:582.598667pt;}
.y172{bottom:585.065333pt;}
.y171{bottom:585.398667pt;}
.y170{bottom:585.732000pt;}
.y16e{bottom:585.932000pt;}
.y16f{bottom:586.000000pt;}
.y16d{bottom:586.065333pt;}
.y16b{bottom:586.265333pt;}
.y16c{bottom:586.333333pt;}
.y4{bottom:597.598667pt;}
.ya3{bottom:597.732000pt;}
.ya2{bottom:597.800000pt;}
.y5{bottom:597.865333pt;}
.y6{bottom:597.932000pt;}
.y7{bottom:598.198667pt;}
.y8{bottom:598.265333pt;}
.y47{bottom:598.398667pt;}
.y271{bottom:598.598667pt;}
.ya1{bottom:598.666667pt;}
.y26f{bottom:598.932000pt;}
.y270{bottom:599.265333pt;}
.y26e{bottom:599.598667pt;}
.y26d{bottom:600.198667pt;}
.ya4{bottom:600.333333pt;}
.y26c{bottom:600.532000pt;}
.y166{bottom:608.065333pt;}
.y165{bottom:608.133333pt;}
.y16a{bottom:608.398667pt;}
.y169{bottom:608.466667pt;}
.y167{bottom:608.732000pt;}
.y168{bottom:608.800000pt;}
.y3{bottom:615.800000pt;}
.y45{bottom:616.000000pt;}
.y46{bottom:616.333333pt;}
.y26b{bottom:616.532000pt;}
.y26a{bottom:616.865333pt;}
.y9b{bottom:617.265333pt;}
.y269{bottom:617.466667pt;}
.y9c{bottom:617.598667pt;}
.y9d{bottom:617.932000pt;}
.y268{bottom:618.133333pt;}
.y9e{bottom:618.265333pt;}
.y267{bottom:618.466667pt;}
.y9f{bottom:618.598667pt;}
.ya0{bottom:619.198667pt;}
.y42{bottom:633.865333pt;}
.y266{bottom:634.133333pt;}
.y43{bottom:634.198667pt;}
.y44{bottom:634.265333pt;}
.y265{bottom:634.398667pt;}
.y164{bottom:634.666667pt;}
.y97{bottom:635.198667pt;}
.y264{bottom:635.398667pt;}
.y96{bottom:635.532000pt;}
.y263{bottom:636.065333pt;}
.y262{bottom:636.398667pt;}
.y98{bottom:636.466667pt;}
.y99{bottom:636.800000pt;}
.y9a{bottom:637.732000pt;}
.y163{bottom:639.732000pt;}
.y162{bottom:639.800000pt;}
.y161{bottom:648.398667pt;}
.y15e{bottom:649.065333pt;}
.y160{bottom:649.398667pt;}
.y15f{bottom:649.666667pt;}
.y41{bottom:651.800000pt;}
.y261{bottom:652.065333pt;}
.y260{bottom:652.666667pt;}
.y25f{bottom:653.333333pt;}
.y25e{bottom:653.666667pt;}
.y25d{bottom:654.265333pt;}
.y94{bottom:655.065333pt;}
.y92{bottom:655.398667pt;}
.y95{bottom:656.265333pt;}
.y93{bottom:656.666667pt;}
.y15d{bottom:664.133333pt;}
.y15b{bottom:666.065333pt;}
.y40{bottom:670.065333pt;}
.y25c{bottom:671.598667pt;}
.y8d{bottom:673.333333pt;}
.y15a{bottom:673.398667pt;}
.y8c{bottom:673.598667pt;}
.y159{bottom:673.666667pt;}
.y158{bottom:673.732000pt;}
.y8e{bottom:673.865333pt;}
.y8b{bottom:673.932000pt;}
.y8f{bottom:674.532000pt;}
.y90{bottom:674.865333pt;}
.y91{bottom:675.532000pt;}
.y15c{bottom:677.198667pt;}
.y2{bottom:678.532000pt;}
.y3e{bottom:687.333333pt;}
.y3f{bottom:688.000000pt;}
.y25b{bottom:689.133333pt;}
.y25a{bottom:690.398667pt;}
.y87{bottom:692.800000pt;}
.y88{bottom:693.800000pt;}
.y89{bottom:694.065333pt;}
.y8a{bottom:694.398667pt;}
.y1{bottom:697.800000pt;}
.y155{bottom:702.800000pt;}
.y157{bottom:703.133333pt;}
.y154{bottom:703.466667pt;}
.y156{bottom:703.732000pt;}
.y153{bottom:704.398667pt;}
.y152{bottom:704.466667pt;}
.y14c{bottom:704.732000pt;}
.y151{bottom:704.800000pt;}
.y14d{bottom:705.065333pt;}
.y150{bottom:705.398667pt;}
.y3d{bottom:705.600000pt;}
.y14f{bottom:705.666667pt;}
.y14e{bottom:705.732000pt;}
.y259{bottom:706.133333pt;}
.y258{bottom:707.065333pt;}
.y257{bottom:707.732000pt;}
.y14b{bottom:712.466667pt;}
.y85{bottom:712.600000pt;}
.y83{bottom:712.666667pt;}
.y82{bottom:712.933333pt;}
.y84{bottom:713.266667pt;}
.y3c{bottom:723.466667pt;}
.y256{bottom:724.333333pt;}
.y255{bottom:725.000000pt;}
.y254{bottom:725.333333pt;}
.y86{bottom:725.466667pt;}
.y253{bottom:725.666667pt;}
.y14a{bottom:725.865333pt;}
.y252{bottom:725.933333pt;}
.y251{bottom:726.333333pt;}
.y7f{bottom:732.800000pt;}
.y7e{bottom:733.133333pt;}
.y7d{bottom:733.466667pt;}
.y7c{bottom:733.732000pt;}
.y80{bottom:734.398667pt;}
.y149{bottom:734.532000pt;}
.y81{bottom:735.000000pt;}
.y148{bottom:735.133333pt;}
.y147{bottom:735.466667pt;}
.y146{bottom:735.800000pt;}
.y145{bottom:736.133333pt;}
.y144{bottom:736.466667pt;}
.y142{bottom:737.065333pt;}
.y3b{bottom:737.865333pt;}
.y143{bottom:742.466667pt;}
.y250{bottom:742.600000pt;}
.y24f{bottom:742.933333pt;}
.y24e{bottom:743.600000pt;}
.y39{bottom:755.800000pt;}
.y3a{bottom:756.466667pt;}
.y24d{bottom:760.266667pt;}
.y24c{bottom:760.532000pt;}
.y24b{bottom:761.466667pt;}
.y78{bottom:770.865333pt;}
.y141{bottom:771.266667pt;}
.y79{bottom:772.133333pt;}
.y13e{bottom:772.266667pt;}
.y7a{bottom:772.466667pt;}
.y140{bottom:772.532000pt;}
.y13f{bottom:772.600000pt;}
.y34{bottom:772.800000pt;}
.y7b{bottom:773.065333pt;}
.y35{bottom:773.732000pt;}
.y38{bottom:774.065333pt;}
.y37{bottom:774.133333pt;}
.y36{bottom:774.732000pt;}
.y24a{bottom:778.133333pt;}
.y249{bottom:779.065333pt;}
.y248{bottom:779.732000pt;}
.y13d{bottom:789.600000pt;}
.y77{bottom:790.065333pt;}
.y13c{bottom:790.800000pt;}
.y33{bottom:792.000000pt;}
.y247{bottom:796.732000pt;}
.y13b{bottom:806.466667pt;}
.y74{bottom:806.666667pt;}
.y13a{bottom:807.466667pt;}
.y75{bottom:808.000000pt;}
.y139{bottom:808.398667pt;}
.y76{bottom:808.600000pt;}
.y32{bottom:810.198667pt;}
.y246{bottom:829.666667pt;}
.y31{bottom:839.065333pt;}
.y72{bottom:840.000000pt;}
.y73{bottom:840.333333pt;}
.y138{bottom:840.732000pt;}
.y137{bottom:840.800000pt;}
.yb2{bottom:904.000000pt;}
.h28{height:15.703125pt;}
.h2a{height:16.125000pt;}
.h21{height:20.937500pt;}
.h1b{height:21.500000pt;}
.h26{height:26.158854pt;}
.h13{height:26.171875pt;}
.h1c{height:26.875000pt;}
.h2c{height:27.812500pt;}
.h2d{height:31.390625pt;}
.hb{height:31.406250pt;}
.h29{height:33.375000pt;}
.h16{height:36.622396pt;}
.h2{height:36.640625pt;}
.h1a{height:37.625000pt;}
.h9{height:38.372784pt;}
.h32{height:38.937500pt;}
.h20{height:41.854167pt;}
.h17{height:41.875000pt;}
.h1d{height:43.000000pt;}
.h2b{height:44.500000pt;}
.h24{height:45.525333pt;}
.h2e{height:47.085938pt;}
.h18{height:47.109375pt;}
.h8{height:48.375000pt;}
.h10{height:50.062500pt;}
.h6{height:52.317708pt;}
.h3{height:52.343750pt;}
.he{height:53.750000pt;}
.hd{height:55.625000pt;}
.h27{height:56.906667pt;}
.h5{height:57.549479pt;}
.h4{height:57.578125pt;}
.h30{height:58.240625pt;}
.h14{height:59.125000pt;}
.h31{height:61.187500pt;}
.h11{height:62.781250pt;}
.h12{height:62.812500pt;}
.h19{height:68.013021pt;}
.h23{height:68.046875pt;}
.h1f{height:69.875000pt;}
.hc{height:72.312500pt;}
.hf{height:73.281250pt;}
.h1e{height:75.250000pt;}
.h15{height:86.000000pt;}
.h2f{height:99.453125pt;}
.h22{height:115.156250pt;}
.h1{height:122.375000pt;}
.h25{height:890.666667pt;}
.h7{height:896.000000pt;}
.h0{height:900.000000pt;}
.h33{height:901.333333pt;}
.ha{height:904.000000pt;}
.w2{width:602.666667pt;}
.w0{width:604.000000pt;}
.w3{width:606.666667pt;}
.w1{width:612.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:51.533333pt;}
.x136{left:52.466667pt;}
.xc8{left:54.400000pt;}
.xa{left:70.733333pt;}
.x4{left:72.000000pt;}
.x37{left:76.466667pt;}
.x26{left:77.466667pt;}
.x1c{left:78.400000pt;}
.x1d{left:79.666667pt;}
.xcc{left:81.933333pt;}
.xce{left:90.533333pt;}
.x12e{left:93.732000pt;}
.xb{left:97.600000pt;}
.x3{left:98.866667pt;}
.x3a{left:103.333333pt;}
.x25{left:104.333333pt;}
.x1{left:105.933333pt;}
.x6a{left:106.866667pt;}
.x72{left:107.866667pt;}
.xa8{left:109.466667pt;}
.x9b{left:110.733333pt;}
.x90{left:111.666667pt;}
.xa1{left:112.933333pt;}
.x50{left:113.933333pt;}
.x130{left:114.866667pt;}
.x53{left:115.866667pt;}
.x12{left:116.800000pt;}
.xa2{left:118.066667pt;}
.xa9{left:120.933333pt;}
.x1e{left:123.200000pt;}
.x51{left:124.466667pt;}
.xa3{left:126.066667pt;}
.x9d{left:127.333333pt;}
.x54{left:128.933333pt;}
.x11{left:130.533333pt;}
.x70{left:131.533333pt;}
.x91{left:132.800000pt;}
.x5{left:135.066667pt;}
.xa4{left:136.000000pt;}
.xae{left:137.600000pt;}
.xa5{left:138.533333pt;}
.x6b{left:140.466667pt;}
.x19{left:142.066667pt;}
.x124{left:146.266667pt;}
.x8e{left:147.533333pt;}
.xd7{left:149.133333pt;}
.xa6{left:150.733333pt;}
.x118{left:151.666667pt;}
.xb8{left:152.666667pt;}
.x8d{left:153.600000pt;}
.xb9{left:154.866667pt;}
.x4d{left:156.133333pt;}
.x42{left:157.733333pt;}
.x71{left:158.733333pt;}
.xaf{left:161.600000pt;}
.x43{left:164.466667pt;}
.x87{left:165.733333pt;}
.x76{left:166.733333pt;}
.x88{left:168.666667pt;}
.x5d{left:170.266667pt;}
.x77{left:171.200000pt;}
.x89{left:172.132000pt;}
.x5e{left:173.733333pt;}
.xa7{left:174.733333pt;}
.x120{left:176.333333pt;}
.x128{left:177.600000pt;}
.xb0{left:178.533333pt;}
.x6c{left:180.132000pt;}
.x110{left:181.132000pt;}
.x92{left:182.066667pt;}
.x102{left:183.333333pt;}
.x55{left:185.266667pt;}
.xe{left:187.866667pt;}
.xf9{left:189.733333pt;}
.x6d{left:191.066667pt;}
.xab{left:192.000000pt;}
.x9e{left:192.933333pt;}
.x12c{left:194.266667pt;}
.x10a{left:196.465333pt;}
.x103{left:197.465333pt;}
.xf6{left:199.066667pt;}
.xf1{left:200.666667pt;}
.x104{left:202.866667pt;}
.x2d{left:203.866667pt;}
.xb1{left:205.466667pt;}
.x8a{left:206.733333pt;}
.x3d{left:208.933333pt;}
.x13{left:209.933333pt;}
.xfe{left:211.533333pt;}
.xb2{left:212.466667pt;}
.x10b{left:215.066667pt;}
.x30{left:216.000000pt;}
.xf{left:217.266667pt;}
.xb3{left:218.266667pt;}
.x5f{left:219.533333pt;}
.x4f{left:220.800000pt;}
.xaa{left:221.733333pt;}
.x8f{left:223.333333pt;}
.x44{left:224.666667pt;}
.xbc{left:226.533333pt;}
.xdf{left:228.800000pt;}
.x45{left:229.733333pt;}
.x10c{left:230.733333pt;}
.x93{left:232.000000pt;}
.x8b{left:233.600000pt;}
.x119{left:234.866667pt;}
.x31{left:235.866667pt;}
.xf2{left:236.800000pt;}
.x7e{left:238.400000pt;}
.x7f{left:240.000000pt;}
.xff{left:241.266667pt;}
.x40{left:242.866667pt;}
.x6e{left:244.466667pt;}
.xe6{left:245.466667pt;}
.x134{left:246.733333pt;}
.x56{left:247.666667pt;}
.x52{left:249.933333pt;}
.x12f{left:250.866667pt;}
.x3b{left:252.133333pt;}
.xfa{left:253.133333pt;}
.x80{left:254.066667pt;}
.x81{left:255.066667pt;}
.xe7{left:256.333333pt;}
.xb4{left:257.266667pt;}
.x79{left:259.200000pt;}
.x7a{left:261.466667pt;}
.xf3{left:263.333333pt;}
.x2b{left:264.933333pt;}
.xfc{left:265.933333pt;}
.xbd{left:267.866667pt;}
.x82{left:269.466667pt;}
.xe0{left:270.400000pt;}
.x5a{left:271.666667pt;}
.x3c{left:272.933333pt;}
.xf7{left:273.933333pt;}
.xd8{left:275.200000pt;}
.x11a{left:276.133333pt;}
.x5b{left:277.133333pt;}
.x1b{left:278.066667pt;}
.x6{left:281.266667pt;}
.xfb{left:282.266667pt;}
.x64{left:283.533333pt;}
.x9c{left:285.133333pt;}
.xac{left:286.733333pt;}
.x129{left:288.000000pt;}
.x3e{left:289.266667pt;}
.xcd{left:290.266667pt;}
.xc{left:291.866667pt;}
.xf8{left:292.800000pt;}
.x105{left:294.066667pt;}
.x11d{left:295.066667pt;}
.xe8{left:296.000000pt;}
.x38{left:297.600000pt;}
.x11e{left:298.533333pt;}
.x60{left:299.533333pt;}
.x5c{left:300.800000pt;}
.x57{left:302.733333pt;}
.x95{left:304.000000pt;}
.x61{left:304.933333pt;}
.xc0{left:306.266667pt;}
.xfd{left:307.200000pt;}
.x7{left:308.466667pt;}
.x65{left:310.066667pt;}
.x2{left:311.066667pt;}
.xc1{left:312.933333pt;}
.x83{left:314.266667pt;}
.x125{left:315.200000pt;}
.x32{left:316.133333pt;}
.x46{left:317.133333pt;}
.x47{left:318.400000pt;}
.xc2{left:320.000000pt;}
.x58{left:321.266667pt;}
.x98{left:322.533333pt;}
.x48{left:323.533333pt;}
.xe9{left:324.800000pt;}
.x39{left:327.066667pt;}
.xb5{left:328.000000pt;}
.x135{left:328.933333pt;}
.xd{left:330.266667pt;}
.x1a{left:332.133333pt;}
.x99{left:333.133333pt;}
.x1f{left:334.400000pt;}
.x9a{left:336.000000pt;}
.x11b{left:336.933333pt;}
.x8{left:338.866667pt;}
.xbe{left:339.866667pt;}
.x9f{left:341.133333pt;}
.xc3{left:342.733333pt;}
.x12a{left:343.666667pt;}
.x49{left:344.666667pt;}
.x27{left:345.598667pt;}
.xe1{left:346.533333pt;}
.x4e{left:348.133333pt;}
.x2c{left:349.733333pt;}
.xea{left:350.733333pt;}
.x2e{left:352.333333pt;}
.x28{left:353.265333pt;}
.x109{left:354.265333pt;}
.x94{left:355.200000pt;}
.x4a{left:356.466667pt;}
.x59{left:357.466667pt;}
.x7b{left:358.400000pt;}
.x66{left:359.333333pt;}
.xb6{left:360.932000pt;}
.x10e{left:361.932000pt;}
.xd0{left:362.866667pt;}
.x121{left:364.466667pt;}
.x67{left:365.466667pt;}
.xeb{left:366.400000pt;}
.x14{left:367.333333pt;}
.xd9{left:368.333333pt;}
.xba{left:369.598667pt;}
.x12b{left:370.866667pt;}
.x20{left:371.866667pt;}
.xd3{left:373.733333pt;}
.x62{left:375.666667pt;}
.x10d{left:376.932000pt;}
.x7c{left:378.533333pt;}
.xd4{left:382.066667pt;}
.x7d{left:384.000000pt;}
.xd1{left:385.932000pt;}
.x4b{left:387.200000pt;}
.x8c{left:388.133333pt;}
.x29{left:389.466667pt;}
.x113{left:391.066667pt;}
.x68{left:392.000000pt;}
.xc4{left:393.932000pt;}
.xe2{left:395.200000pt;}
.x78{left:396.800000pt;}
.xb7{left:397.733333pt;}
.x84{left:398.733333pt;}
.xe3{left:400.000000pt;}
.x23{left:401.598667pt;}
.x9{left:402.866667pt;}
.xbf{left:404.133333pt;}
.xec{left:405.466667pt;}
.x33{left:406.400000pt;}
.x96{left:408.666667pt;}
.x100{left:409.600000pt;}
.x114{left:411.200000pt;}
.x85{left:412.133333pt;}
.xc5{left:413.466667pt;}
.x122{left:414.733333pt;}
.x17{left:415.666667pt;}
.xc6{left:416.933333pt;}
.x2a{left:417.933333pt;}
.x2f{left:419.200000pt;}
.xdc{left:420.133333pt;}
.x69{left:421.733333pt;}
.x73{left:422.733333pt;}
.xa0{left:424.666667pt;}
.x11c{left:425.933333pt;}
.x74{left:427.533333pt;}
.xc9{left:428.466667pt;}
.x75{left:429.466667pt;}
.xbb{left:431.066667pt;}
.x97{left:433.600000pt;}
.x126{left:434.866667pt;}
.x18{left:435.866667pt;}
.xed{left:436.800000pt;}
.x4c{left:438.066667pt;}
.x12d{left:439.666667pt;}
.x10{left:440.933333pt;}
.xdd{left:442.266667pt;}
.x115{left:443.200000pt;}
.xad{left:444.800000pt;}
.x111{left:446.066667pt;}
.x63{left:447.666667pt;}
.xee{left:449.600000pt;}
.xe4{left:451.200000pt;}
.xef{left:452.466667pt;}
.xc7{left:453.466667pt;}
.x101{left:454.400000pt;}
.x108{left:455.333333pt;}
.xf4{left:456.333333pt;}
.x15{left:457.266667pt;}
.x6f{left:459.866667pt;}
.x133{left:460.800000pt;}
.xca{left:463.333333pt;}
.xda{left:464.666667pt;}
.x86{left:466.533333pt;}
.xf5{left:467.866667pt;}
.xf0{left:469.133333pt;}
.x106{left:471.666667pt;}
.xe5{left:474.266667pt;}
.x112{left:475.533333pt;}
.xdb{left:477.733333pt;}
.xcb{left:479.666667pt;}
.x107{left:480.666667pt;}
.x21{left:482.533333pt;}
.x132{left:484.800000pt;}
.x127{left:486.066667pt;}
.x35{left:487.333333pt;}
.x34{left:488.333333pt;}
.x41{left:490.266667pt;}
.x116{left:492.466667pt;}
.x16{left:494.400000pt;}
.x10f{left:495.666667pt;}
.x11f{left:496.666667pt;}
.xd5{left:498.266667pt;}
.x131{left:500.800000pt;}
.xde{left:504.933333pt;}
.x117{left:506.533333pt;}
.x123{left:507.866667pt;}
.x24{left:511.666667pt;}
.xd6{left:518.733333pt;}
.x22{left:520.000000pt;}
.xd2{left:523.200000pt;}
.x36{left:525.133333pt;}
.xcf{left:539.533333pt;}
}




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