
    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_c642073378b04e7576cca766.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179800;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_a936bf32a9cee47f8da37cfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179800;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_c642073378b04e7576cca766.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179800;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_1cc10b8edad7aa8baa0d9683.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149902;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_5129af26f20e476e23aaa51e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.174000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c642073378b04e7576cca766.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.179800;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_d2892f1c63e1bfee9a4f98e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.149902;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;}
.m56{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.244088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244088,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244574,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.244956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244956,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.245544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245544,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.245624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245624,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.246594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246594,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246638,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.246706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246706,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246962,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.247141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247141,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.247211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247211,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247332,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.247441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247441,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.247447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247447,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.247662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247662,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248106,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248147,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248571,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248618,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249456,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249556,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251279,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251329,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251847,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252059,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.252272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252272,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252288,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252438,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252474,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.252674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252674,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252768,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.252824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252824,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252982,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.253044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253044,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.253318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253318,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253518,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253519,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253812,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.254026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254026,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.254388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254388,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254606,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.254772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254772,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254774,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.255462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255462,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.256112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256112,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-16.830000px;}
.v2{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.806000px;}
.v1{vertical-align:18.840000px;}
.ls20{letter-spacing:-1.597320px;}
.ls1f{letter-spacing:-0.612000px;}
.ls30{letter-spacing:-0.561000px;}
.ls15{letter-spacing:-0.510000px;}
.ls24{letter-spacing:-0.459000px;}
.ls1e{letter-spacing:-0.408000px;}
.ls19{letter-spacing:-0.357000px;}
.ls16{letter-spacing:-0.306000px;}
.lsf{letter-spacing:-0.255000px;}
.ls27{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.210000px;}
.ls14{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.168000px;}
.ls13{letter-spacing:-0.153000px;}
.ls26{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.118320px;}
.ls10{letter-spacing:-0.102000px;}
.lse{letter-spacing:-0.051000px;}
.ls28{letter-spacing:-0.048000px;}
.ls34{letter-spacing:-0.042000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000120px;}
.ls2b{letter-spacing:0.020400px;}
.ls1d{letter-spacing:0.025500px;}
.ls22{letter-spacing:0.029580px;}
.ls2c{letter-spacing:0.042000px;}
.ls3{letter-spacing:0.051000px;}
.ls0{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.111000px;}
.ls29{letter-spacing:0.118320px;}
.ls7{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.147900px;}
.lsc{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls11{letter-spacing:0.178500px;}
.lsd{letter-spacing:0.204000px;}
.ls1b{letter-spacing:0.229500px;}
.lsb{letter-spacing:0.255000px;}
.ls2a{letter-spacing:0.280500px;}
.ls2d{letter-spacing:0.294000px;}
.ls12{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.357000px;}
.ls2e{letter-spacing:0.378000px;}
.ls5{letter-spacing:0.408000px;}
.ls1a{letter-spacing:0.459000px;}
.ls21{letter-spacing:0.510000px;}
.ls9{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.561000px;}
.ls2f{letter-spacing:0.570000px;}
.ls8{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.840000px;}
.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;}
}
.ws78{word-spacing:-14.484000px;}
.ws64{word-spacing:-14.280000px;}
.ws79{word-spacing:-14.229000px;}
.ws77{word-spacing:-14.178000px;}
.ws4{word-spacing:-13.968000px;}
.ws1{word-spacing:-13.776000px;}
.ws63{word-spacing:-8.371140px;}
.ws2{word-spacing:-8.223240px;}
.ws67{word-spacing:-7.739520px;}
.ws0{word-spacing:-6.772080px;}
.wsb{word-spacing:-2.496000px;}
.ws2f{word-spacing:-2.193000px;}
.ws23{word-spacing:-2.142000px;}
.ws22{word-spacing:-2.091000px;}
.ws16{word-spacing:-2.064000px;}
.ws1e{word-spacing:-2.040000px;}
.ws69{word-spacing:-2.016000px;}
.ws71{word-spacing:-1.989000px;}
.ws5a{word-spacing:-1.938000px;}
.ws54{word-spacing:-1.887000px;}
.ws20{word-spacing:-1.836000px;}
.ws51{word-spacing:-1.785000px;}
.ws7f{word-spacing:-1.764000px;}
.ws3d{word-spacing:-1.734000px;}
.ws32{word-spacing:-1.683000px;}
.ws10{word-spacing:-1.632000px;}
.ws11{word-spacing:-1.584000px;}
.ws35{word-spacing:-1.581000px;}
.ws6c{word-spacing:-1.536000px;}
.ws59{word-spacing:-1.530000px;}
.ws6e{word-spacing:-1.488000px;}
.ws26{word-spacing:-1.428000px;}
.ws2b{word-spacing:-1.377000px;}
.ws5f{word-spacing:-1.326000px;}
.ws7d{word-spacing:-1.302000px;}
.ws43{word-spacing:-1.275000px;}
.ws60{word-spacing:-1.224000px;}
.ws6{word-spacing:-1.176000px;}
.ws2d{word-spacing:-1.173000px;}
.ws19{word-spacing:-1.071000px;}
.ws76{word-spacing:-1.020000px;}
.wse{word-spacing:-1.008000px;}
.ws3a{word-spacing:-0.969000px;}
.ws33{word-spacing:-0.918000px;}
.ws15{word-spacing:-0.912000px;}
.ws1d{word-spacing:-0.867000px;}
.ws27{word-spacing:-0.840000px;}
.ws41{word-spacing:-0.816000px;}
.ws57{word-spacing:-0.765000px;}
.ws50{word-spacing:-0.714000px;}
.ws9{word-spacing:-0.672000px;}
.ws30{word-spacing:-0.663000px;}
.ws6f{word-spacing:-0.624000px;}
.ws74{word-spacing:-0.612000px;}
.ws2c{word-spacing:-0.561000px;}
.ws46{word-spacing:-0.510000px;}
.ws6d{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.459000px;}
.ws62{word-spacing:-0.408000px;}
.ws68{word-spacing:-0.384000px;}
.ws3b{word-spacing:-0.306000px;}
.ws6a{word-spacing:-0.288000px;}
.ws52{word-spacing:-0.255000px;}
.ws44{word-spacing:-0.204000px;}
.wsf{word-spacing:-0.192000px;}
.ws4e{word-spacing:-0.153000px;}
.ws13{word-spacing:-0.144000px;}
.ws5{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.118320px;}
.ws28{word-spacing:-0.102000px;}
.ws81{word-spacing:-0.084000px;}
.ws58{word-spacing:-0.051000px;}
.ws5b{word-spacing:-0.029580px;}
.ws3{word-spacing:0.000000px;}
.ws4d{word-spacing:0.051000px;}
.ws5c{word-spacing:0.102000px;}
.ws61{word-spacing:0.118320px;}
.ws70{word-spacing:0.144000px;}
.ws40{word-spacing:0.153000px;}
.ws36{word-spacing:0.204000px;}
.ws7e{word-spacing:0.252000px;}
.ws56{word-spacing:0.255000px;}
.ws48{word-spacing:0.306000px;}
.ws49{word-spacing:0.357000px;}
.ws75{word-spacing:0.408000px;}
.ws39{word-spacing:0.459000px;}
.wsa{word-spacing:0.480000px;}
.ws4a{word-spacing:0.510000px;}
.ws14{word-spacing:0.528000px;}
.ws34{word-spacing:0.561000px;}
.ws25{word-spacing:0.612000px;}
.ws65{word-spacing:0.663000px;}
.ws6b{word-spacing:0.672000px;}
.ws2e{word-spacing:0.714000px;}
.ws80{word-spacing:0.756000px;}
.ws5d{word-spacing:0.765000px;}
.ws38{word-spacing:0.816000px;}
.ws72{word-spacing:0.867000px;}
.ws4b{word-spacing:0.918000px;}
.wsc{word-spacing:1.008000px;}
.ws2a{word-spacing:1.020000px;}
.ws53{word-spacing:1.071000px;}
.ws1c{word-spacing:1.122000px;}
.ws31{word-spacing:1.173000px;}
.ws29{word-spacing:1.224000px;}
.ws45{word-spacing:1.275000px;}
.ws66{word-spacing:1.326000px;}
.ws1b{word-spacing:1.428000px;}
.ws3e{word-spacing:1.479000px;}
.ws3f{word-spacing:1.530000px;}
.ws37{word-spacing:1.581000px;}
.ws55{word-spacing:1.597320px;}
.ws5e{word-spacing:1.632000px;}
.ws47{word-spacing:1.683000px;}
.ws7c{word-spacing:1.722000px;}
.ws7b{word-spacing:1.764000px;}
.ws1a{word-spacing:1.785000px;}
.ws7a{word-spacing:1.836000px;}
.ws4c{word-spacing:1.887000px;}
.ws3c{word-spacing:1.938000px;}
.ws42{word-spacing:2.040000px;}
.ws1f{word-spacing:2.091000px;}
.ws24{word-spacing:2.142000px;}
.ws12{word-spacing:3.264000px;}
.wsd{word-spacing:3.456000px;}
.ws8{word-spacing:3.744000px;}
.ws18{word-spacing:6.000000px;}
.ws17{word-spacing:6.192000px;}
.ws7{word-spacing:7.488000px;}
.ws83{word-spacing:518.415000px;}
.ws84{word-spacing:551.703000px;}
.ws82{word-spacing:565.440000px;}
.ws21{word-spacing:1556.424600px;}
._7{margin-left:-6.568800px;}
._4{margin-left:-5.491200px;}
._2{margin-left:-3.958800px;}
._0{margin-left:-2.886000px;}
._3{margin-left:-1.195200px;}
._8{width:1.615200px;}
._9{width:3.228300px;}
._10{width:10.602948px;}
._f{width:13.608000px;}
._e{width:16.494000px;}
._b{width:33.642101px;}
._a{width:34.986009px;}
._c{width:36.960000px;}
._d{width:39.690067px;}
._1{width:91.308000px;}
._5{width:749.424000px;}
._6{width:1812.097200px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fsa{font-size:29.580000px;}
.fs4{font-size:30.000000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.848300px;}
.y6{bottom:85.039350px;}
.y171{bottom:85.041300px;}
.yeb{bottom:86.050350px;}
.yc4{bottom:87.987000px;}
.ya3{bottom:90.700350px;}
.yf8{bottom:95.594850px;}
.y6a{bottom:100.155600px;}
.y5{bottom:100.841850px;}
.yea{bottom:101.031600px;}
.y170{bottom:101.785050px;}
.yc3{bottom:102.968250px;}
.y151{bottom:105.879750px;}
.ya2{bottom:106.150350px;}
.y12e{bottom:110.197200px;}
.yf7{bottom:111.047850px;}
.y69{bottom:115.605750px;}
.ye9{bottom:116.012850px;}
.yc2{bottom:117.949500px;}
.y16f{bottom:118.528800px;}
.y150{bottom:120.872250px;}
.ya1{bottom:121.600350px;}
.y12d{bottom:125.178450px;}
.yf6{bottom:126.497850px;}
.y2c{bottom:128.560800px;}
.ye8{bottom:130.994100px;}
.y68{bottom:131.052750px;}
.yc1{bottom:132.930750px;}
.y16e{bottom:135.272550px;}
.y14f{bottom:135.853500px;}
.ya0{bottom:137.050350px;}
.y12c{bottom:140.159700px;}
.yf5{bottom:141.947850px;}
.y2b{bottom:143.542050px;}
.ye7{bottom:145.975350px;}
.y67{bottom:146.505750px;}
.yc0{bottom:147.912000px;}
.y9f{bottom:152.500350px;}
.y12b{bottom:155.140950px;}
.yf4{bottom:157.397850px;}
.y2a{bottom:158.523300px;}
.ye6{bottom:160.956600px;}
.y66{bottom:161.955750px;}
.ybf{bottom:162.893250px;}
.y14e{bottom:163.584750px;}
.y9e{bottom:167.950350px;}
.y12a{bottom:170.122200px;}
.yf3{bottom:172.847850px;}
.y29{bottom:173.504550px;}
.ye5{bottom:175.937850px;}
.y65{bottom:177.405750px;}
.ybe{bottom:177.874500px;}
.yed{bottom:180.145350px;}
.y9d{bottom:183.400350px;}
.y129{bottom:185.103450px;}
.yf2{bottom:188.297850px;}
.y28{bottom:188.485800px;}
.ye4{bottom:190.919100px;}
.y64{bottom:192.855750px;}
.y9b{bottom:198.850350px;}
.y128{bottom:200.084700px;}
.y9c{bottom:203.057850px;}
.y27{bottom:203.473050px;}
.ye3{bottom:205.900350px;}
.ybd{bottom:207.837000px;}
.y63{bottom:208.305750px;}
.y14d{bottom:208.324500px;}
.y9a{bottom:214.297350px;}
.y127{bottom:215.065950px;}
.yf1{bottom:216.503850px;}
.y26{bottom:218.454300px;}
.ye2{bottom:220.881600px;}
.ybc{bottom:222.818250px;}
.y14c{bottom:223.305750px;}
.y62{bottom:223.752750px;}
.y99{bottom:229.750350px;}
.y126{bottom:230.047050px;}
.y25{bottom:233.435550px;}
.ye1{bottom:235.862850px;}
.ybb{bottom:237.799500px;}
.y14b{bottom:238.287000px;}
.y61{bottom:239.205750px;}
.y125{bottom:245.028450px;}
.y98{bottom:245.200350px;}
.y24{bottom:248.416800px;}
.ye0{bottom:250.844100px;}
.yba{bottom:252.780750px;}
.y14a{bottom:253.268250px;}
.y60{bottom:254.655750px;}
.y124{bottom:260.009700px;}
.y97{bottom:260.650350px;}
.y23{bottom:263.398050px;}
.ydf{bottom:265.825350px;}
.yb9{bottom:267.762000px;}
.y149{bottom:268.249500px;}
.y5f{bottom:270.105750px;}
.y123{bottom:274.990950px;}
.y96{bottom:276.100350px;}
.yde{bottom:280.806600px;}
.yb8{bottom:282.743250px;}
.y148{bottom:283.230750px;}
.y122{bottom:289.972200px;}
.y22{bottom:291.129300px;}
.y94{bottom:291.550350px;}
.y95{bottom:295.757850px;}
.ydd{bottom:295.787850px;}
.yb7{bottom:297.724500px;}
.y147{bottom:298.212000px;}
.y5e{bottom:298.316850px;}
.y121{bottom:304.953300px;}
.y93{bottom:306.997350px;}
.ydc{bottom:310.769100px;}
.yb6{bottom:312.705750px;}
.y146{bottom:313.193250px;}
.y120{bottom:319.934700px;}
.y92{bottom:322.450350px;}
.ydb{bottom:325.750350px;}
.y21{bottom:326.283600px;}
.yb5{bottom:327.687000px;}
.y145{bottom:328.174500px;}
.y11f{bottom:334.915950px;}
.y91{bottom:337.900350px;}
.yda{bottom:340.731600px;}
.y20{bottom:341.283600px;}
.yb4{bottom:342.668250px;}
.y5d{bottom:343.056600px;}
.y144{bottom:343.155750px;}
.y11e{bottom:349.897200px;}
.y90{bottom:353.350350px;}
.yd9{bottom:355.712850px;}
.y143{bottom:358.137000px;}
.y5c{bottom:358.506600px;}
.y1f{bottom:360.531600px;}
.y11c{bottom:364.878450px;}
.y8f{bottom:368.800350px;}
.y11d{bottom:369.085950px;}
.yb3{bottom:370.405350px;}
.yd8{bottom:370.694100px;}
.y142{bottom:373.118250px;}
.y5b{bottom:373.953600px;}
.y1e{bottom:375.531600px;}
.y11b{bottom:379.859550px;}
.y8e{bottom:384.250350px;}
.yd7{bottom:385.675350px;}
.y141{bottom:388.099500px;}
.y5a{bottom:389.406600px;}
.y1d{bottom:390.531600px;}
.y11a{bottom:394.840950px;}
.y8d{bottom:399.700350px;}
.yd6{bottom:400.656600px;}
.y140{bottom:403.080750px;}
.y59{bottom:404.856600px;}
.y1c{bottom:405.531600px;}
.y119{bottom:409.822200px;}
.yb2{bottom:415.147350px;}
.y8c{bottom:415.150350px;}
.yd5{bottom:415.637850px;}
.y13f{bottom:418.062000px;}
.y58{bottom:420.306600px;}
.y1b{bottom:420.531600px;}
.y118{bottom:424.803450px;}
.y8b{bottom:430.600350px;}
.yd4{bottom:430.619100px;}
.y13e{bottom:433.043250px;}
.y1a{bottom:435.531600px;}
.y57{bottom:435.756600px;}
.y117{bottom:439.784700px;}
.yd3{bottom:445.600350px;}
.y8a{bottom:446.050350px;}
.y13d{bottom:448.024500px;}
.y19{bottom:450.531600px;}
.y56{bottom:451.206600px;}
.y116{bottom:454.765950px;}
.yd2{bottom:460.581600px;}
.y89{bottom:461.494350px;}
.yb1{bottom:461.500350px;}
.y13c{bottom:463.005750px;}
.y18{bottom:465.531600px;}
.y55{bottom:466.656600px;}
.y115{bottom:469.747200px;}
.yd1{bottom:475.562850px;}
.y88{bottom:476.947350px;}
.yb0{bottom:476.950350px;}
.y13b{bottom:477.987000px;}
.y54{bottom:482.106600px;}
.y114{bottom:484.728450px;}
.y17{bottom:484.779600px;}
.yd0{bottom:490.544100px;}
.y87{bottom:492.400350px;}
.y13a{bottom:492.968250px;}
.y53{bottom:497.556600px;}
.y113{bottom:499.709700px;}
.yef{bottom:503.104050px;}
.ycf{bottom:505.525350px;}
.y16d{bottom:507.068250px;}
.y86{bottom:507.850350px;}
.y139{bottom:507.949500px;}
.y52{bottom:513.006600px;}
.y112{bottom:514.690950px;}
.y16{bottom:515.859600px;}
.y16c{bottom:519.405750px;}
.yce{bottom:520.506600px;}
.y138{bottom:522.930750px;}
.y85{bottom:523.300350px;}
.y51{bottom:528.456600px;}
.y111{bottom:529.672050px;}
.y15{bottom:530.859600px;}
.y16b{bottom:531.743250px;}
.ycc{bottom:535.487850px;}
.y137{bottom:537.912000px;}
.y84{bottom:538.750350px;}
.ycd{bottom:539.695350px;}
.y50{bottom:543.906600px;}
.y16a{bottom:544.080750px;}
.y110{bottom:544.653450px;}
.y14{bottom:550.107600px;}
.ycb{bottom:550.469100px;}
.y136{bottom:552.893250px;}
.y83{bottom:554.194350px;}
.yaf{bottom:554.200350px;}
.y169{bottom:556.418250px;}
.y4f{bottom:559.356600px;}
.y10f{bottom:559.634700px;}
.y13{bottom:565.107600px;}
.yca{bottom:565.450350px;}
.y135{bottom:567.874350px;}
.y168{bottom:568.755750px;}
.y82{bottom:569.647350px;}
.yae{bottom:569.650350px;}
.yf9{bottom:569.657850px;}
.y10e{bottom:574.615950px;}
.y4e{bottom:574.806600px;}
.y12{bottom:580.107600px;}
.yc9{bottom:580.431600px;}
.y167{bottom:581.093100px;}
.y134{bottom:582.855750px;}
.y81{bottom:585.094350px;}
.y10d{bottom:589.597200px;}
.y4d{bottom:590.253600px;}
.y166{bottom:593.430750px;}
.y11{bottom:595.107600px;}
.yc8{bottom:595.412850px;}
.y133{bottom:597.837000px;}
.y80{bottom:600.547350px;}
.y10c{bottom:604.578300px;}
.y4c{bottom:605.706600px;}
.y165{bottom:605.768250px;}
.y10{bottom:610.107600px;}
.yc7{bottom:610.394100px;}
.y41{bottom:610.598100px;}
.y132{bottom:612.818250px;}
.y7f{bottom:616.000350px;}
.y164{bottom:618.105750px;}
.y10b{bottom:619.559700px;}
.y4b{bottom:621.156600px;}
.yf{bottom:625.107600px;}
.yc6{bottom:625.375350px;}
.y131{bottom:627.799500px;}
.y163{bottom:630.443100px;}
.y7e{bottom:631.450350px;}
.y10a{bottom:634.540950px;}
.y4a{bottom:636.606600px;}
.ye{bottom:640.107600px;}
.yc5{bottom:640.356600px;}
.y130{bottom:642.780600px;}
.y7d{bottom:646.900350px;}
.y109{bottom:649.522200px;}
.y49{bottom:652.053600px;}
.yd{bottom:655.107600px;}
.y162{bottom:655.118250px;}
.y40{bottom:655.337850px;}
.y7c{bottom:662.350350px;}
.y161{bottom:667.455750px;}
.y48{bottom:667.506600px;}
.yc{bottom:670.107600px;}
.y3f{bottom:670.319100px;}
.y12f{bottom:670.523100px;}
.yad{bottom:677.791350px;}
.y7b{bottom:677.800350px;}
.y160{bottom:679.793250px;}
.y108{bottom:681.511200px;}
.y47{bottom:682.956600px;}
.yb{bottom:685.107600px;}
.y3e{bottom:685.300350px;}
.y15f{bottom:692.130750px;}
.yac{bottom:693.244350px;}
.y7a{bottom:693.250350px;}
.y107{bottom:695.611200px;}
.y46{bottom:698.406600px;}
.y3d{bottom:700.281600px;}
.y15e{bottom:704.468100px;}
.yec{bottom:704.489100px;}
.y79{bottom:708.697350px;}
.y106{bottom:709.711200px;}
.yf0{bottom:710.310600px;}
.y45{bottom:713.856600px;}
.y3c{bottom:715.262850px;}
.y15d{bottom:716.805750px;}
.ya{bottom:718.997850px;}
.y105{bottom:723.811200px;}
.y78{bottom:724.150350px;}
.y15c{bottom:729.143250px;}
.y44{bottom:729.306600px;}
.y3b{bottom:730.244100px;}
.y9{bottom:735.197850px;}
.y104{bottom:737.911350px;}
.y76{bottom:739.600350px;}
.y15b{bottom:741.480750px;}
.y77{bottom:743.807850px;}
.y43{bottom:744.756600px;}
.y3a{bottom:745.225350px;}
.y103{bottom:752.011200px;}
.y15a{bottom:753.818250px;}
.y75{bottom:755.044350px;}
.yaa{bottom:755.050350px;}
.yab{bottom:759.257850px;}
.y39{bottom:760.206600px;}
.y102{bottom:766.111200px;}
.y159{bottom:766.155750px;}
.y8{bottom:767.750700px;}
.y74{bottom:770.497350px;}
.ya9{bottom:770.500350px;}
.y38{bottom:775.187850px;}
.y158{bottom:778.493250px;}
.y101{bottom:780.211350px;}
.ya8{bottom:785.947350px;}
.y73{bottom:785.950350px;}
.y37{bottom:790.169100px;}
.y157{bottom:790.830750px;}
.y7{bottom:791.753700px;}
.y100{bottom:794.311350px;}
.y72{bottom:801.400350px;}
.y156{bottom:803.168100px;}
.y36{bottom:805.150350px;}
.yff{bottom:808.411350px;}
.y155{bottom:815.505750px;}
.y71{bottom:816.850350px;}
.y35{bottom:820.131600px;}
.ya7{bottom:821.057850px;}
.yfe{bottom:822.511350px;}
.y154{bottom:827.843100px;}
.y70{bottom:832.300350px;}
.y34{bottom:835.112850px;}
.yfd{bottom:836.611350px;}
.y153{bottom:840.180750px;}
.y6f{bottom:847.750350px;}
.y33{bottom:850.094100px;}
.yfc{bottom:850.711350px;}
.y6e{bottom:863.200350px;}
.yfb{bottom:864.811200px;}
.y32{bottom:865.075350px;}
.y152{bottom:865.274100px;}
.ya6{bottom:878.641350px;}
.y6d{bottom:878.650350px;}
.yfa{bottom:878.911350px;}
.y31{bottom:880.056600px;}
.y3{bottom:888.220350px;}
.ya5{bottom:894.094350px;}
.y6c{bottom:894.100350px;}
.y30{bottom:895.037850px;}
.ya4{bottom:909.547350px;}
.y6b{bottom:909.550350px;}
.y2f{bottom:910.019100px;}
.y2e{bottom:925.000350px;}
.yee{bottom:925.988850px;}
.y4{bottom:935.433150px;}
.y2{bottom:947.511750px;}
.y2d{bottom:969.502950px;}
.y42{bottom:969.659250px;}
.h6{height:27.300000px;}
.hf{height:28.988400px;}
.h5{height:29.400000px;}
.h2{height:38.220000px;}
.he{height:40.534800px;}
.h7{height:41.160000px;}
.hb{height:45.820312px;}
.h3{height:46.123200px;}
.h4{height:47.040000px;}
.hc{height:48.684082px;}
.h11{height:49.827000px;}
.hd{height:49.980000px;}
.h10{height:50.004000px;}
.ha{height:52.920000px;}
.h12{height:55.689000px;}
.h9{height:63.002930px;}
.h8{height:82.320000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x3{left:76.820550px;}
.xa{left:80.788050px;}
.x5{left:92.276550px;}
.x6{left:118.534350px;}
.x1c{left:133.389750px;}
.xb{left:138.469050px;}
.x7{left:156.838350px;}
.x9{left:187.829550px;}
.x18{left:216.936600px;}
.x19{left:225.179550px;}
.x8{left:236.060100px;}
.x1d{left:290.522850px;}
.x1e{left:298.772550px;}
.x12{left:327.704400px;}
.x13{left:331.851150px;}
.x16{left:357.108600px;}
.x17{left:364.966800px;}
.x21{left:372.259800px;}
.xe{left:417.193350px;}
.xf{left:421.290300px;}
.xc{left:436.528350px;}
.x1a{left:438.713850px;}
.xd{left:440.746050px;}
.x1b{left:446.802150px;}
.x2{left:495.633450px;}
.x4{left:507.001050px;}
.x10{left:513.286200px;}
.x11{left:517.497750px;}
.x14{left:572.621250px;}
.x15{left:576.876900px;}
.x1f{left:622.069200px;}
.x20{left:630.429300px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v2{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.938667pt;}
.v1{vertical-align:16.746667pt;}
.ls20{letter-spacing:-1.419840pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls30{letter-spacing:-0.498667pt;}
.ls15{letter-spacing:-0.453333pt;}
.ls24{letter-spacing:-0.408000pt;}
.ls1e{letter-spacing:-0.362667pt;}
.ls19{letter-spacing:-0.317333pt;}
.ls16{letter-spacing:-0.272000pt;}
.lsf{letter-spacing:-0.226667pt;}
.ls27{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.186667pt;}
.ls14{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.149333pt;}
.ls13{letter-spacing:-0.136000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.105173pt;}
.ls10{letter-spacing:-0.090667pt;}
.lse{letter-spacing:-0.045333pt;}
.ls28{letter-spacing:-0.042667pt;}
.ls34{letter-spacing:-0.037333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000107pt;}
.ls2b{letter-spacing:0.018133pt;}
.ls1d{letter-spacing:0.022667pt;}
.ls22{letter-spacing:0.026293pt;}
.ls2c{letter-spacing:0.037333pt;}
.ls3{letter-spacing:0.045333pt;}
.ls0{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.098667pt;}
.ls29{letter-spacing:0.105173pt;}
.ls7{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.131467pt;}
.lsc{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls11{letter-spacing:0.158667pt;}
.lsd{letter-spacing:0.181333pt;}
.ls1b{letter-spacing:0.204000pt;}
.lsb{letter-spacing:0.226667pt;}
.ls2a{letter-spacing:0.249333pt;}
.ls2d{letter-spacing:0.261333pt;}
.ls12{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.317333pt;}
.ls2e{letter-spacing:0.336000pt;}
.ls5{letter-spacing:0.362667pt;}
.ls1a{letter-spacing:0.408000pt;}
.ls21{letter-spacing:0.453333pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.498667pt;}
.ls2f{letter-spacing:0.506667pt;}
.ls8{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.746667pt;}
.ws78{word-spacing:-12.874667pt;}
.ws64{word-spacing:-12.693333pt;}
.ws79{word-spacing:-12.648000pt;}
.ws77{word-spacing:-12.602667pt;}
.ws4{word-spacing:-12.416000pt;}
.ws1{word-spacing:-12.245333pt;}
.ws63{word-spacing:-7.441013pt;}
.ws2{word-spacing:-7.309547pt;}
.ws67{word-spacing:-6.879573pt;}
.ws0{word-spacing:-6.019627pt;}
.wsb{word-spacing:-2.218667pt;}
.ws2f{word-spacing:-1.949333pt;}
.ws23{word-spacing:-1.904000pt;}
.ws22{word-spacing:-1.858667pt;}
.ws16{word-spacing:-1.834667pt;}
.ws1e{word-spacing:-1.813333pt;}
.ws69{word-spacing:-1.792000pt;}
.ws71{word-spacing:-1.768000pt;}
.ws5a{word-spacing:-1.722667pt;}
.ws54{word-spacing:-1.677333pt;}
.ws20{word-spacing:-1.632000pt;}
.ws51{word-spacing:-1.586667pt;}
.ws7f{word-spacing:-1.568000pt;}
.ws3d{word-spacing:-1.541333pt;}
.ws32{word-spacing:-1.496000pt;}
.ws10{word-spacing:-1.450667pt;}
.ws11{word-spacing:-1.408000pt;}
.ws35{word-spacing:-1.405333pt;}
.ws6c{word-spacing:-1.365333pt;}
.ws59{word-spacing:-1.360000pt;}
.ws6e{word-spacing:-1.322667pt;}
.ws26{word-spacing:-1.269333pt;}
.ws2b{word-spacing:-1.224000pt;}
.ws5f{word-spacing:-1.178667pt;}
.ws7d{word-spacing:-1.157333pt;}
.ws43{word-spacing:-1.133333pt;}
.ws60{word-spacing:-1.088000pt;}
.ws6{word-spacing:-1.045333pt;}
.ws2d{word-spacing:-1.042667pt;}
.ws19{word-spacing:-0.952000pt;}
.ws76{word-spacing:-0.906667pt;}
.wse{word-spacing:-0.896000pt;}
.ws3a{word-spacing:-0.861333pt;}
.ws33{word-spacing:-0.816000pt;}
.ws15{word-spacing:-0.810667pt;}
.ws1d{word-spacing:-0.770667pt;}
.ws27{word-spacing:-0.746667pt;}
.ws41{word-spacing:-0.725333pt;}
.ws57{word-spacing:-0.680000pt;}
.ws50{word-spacing:-0.634667pt;}
.ws9{word-spacing:-0.597333pt;}
.ws30{word-spacing:-0.589333pt;}
.ws6f{word-spacing:-0.554667pt;}
.ws74{word-spacing:-0.544000pt;}
.ws2c{word-spacing:-0.498667pt;}
.ws46{word-spacing:-0.453333pt;}
.ws6d{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.408000pt;}
.ws62{word-spacing:-0.362667pt;}
.ws68{word-spacing:-0.341333pt;}
.ws3b{word-spacing:-0.272000pt;}
.ws6a{word-spacing:-0.256000pt;}
.ws52{word-spacing:-0.226667pt;}
.ws44{word-spacing:-0.181333pt;}
.wsf{word-spacing:-0.170667pt;}
.ws4e{word-spacing:-0.136000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws5{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.105173pt;}
.ws28{word-spacing:-0.090667pt;}
.ws81{word-spacing:-0.074667pt;}
.ws58{word-spacing:-0.045333pt;}
.ws5b{word-spacing:-0.026293pt;}
.ws3{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.045333pt;}
.ws5c{word-spacing:0.090667pt;}
.ws61{word-spacing:0.105173pt;}
.ws70{word-spacing:0.128000pt;}
.ws40{word-spacing:0.136000pt;}
.ws36{word-spacing:0.181333pt;}
.ws7e{word-spacing:0.224000pt;}
.ws56{word-spacing:0.226667pt;}
.ws48{word-spacing:0.272000pt;}
.ws49{word-spacing:0.317333pt;}
.ws75{word-spacing:0.362667pt;}
.ws39{word-spacing:0.408000pt;}
.wsa{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.453333pt;}
.ws14{word-spacing:0.469333pt;}
.ws34{word-spacing:0.498667pt;}
.ws25{word-spacing:0.544000pt;}
.ws65{word-spacing:0.589333pt;}
.ws6b{word-spacing:0.597333pt;}
.ws2e{word-spacing:0.634667pt;}
.ws80{word-spacing:0.672000pt;}
.ws5d{word-spacing:0.680000pt;}
.ws38{word-spacing:0.725333pt;}
.ws72{word-spacing:0.770667pt;}
.ws4b{word-spacing:0.816000pt;}
.wsc{word-spacing:0.896000pt;}
.ws2a{word-spacing:0.906667pt;}
.ws53{word-spacing:0.952000pt;}
.ws1c{word-spacing:0.997333pt;}
.ws31{word-spacing:1.042667pt;}
.ws29{word-spacing:1.088000pt;}
.ws45{word-spacing:1.133333pt;}
.ws66{word-spacing:1.178667pt;}
.ws1b{word-spacing:1.269333pt;}
.ws3e{word-spacing:1.314667pt;}
.ws3f{word-spacing:1.360000pt;}
.ws37{word-spacing:1.405333pt;}
.ws55{word-spacing:1.419840pt;}
.ws5e{word-spacing:1.450667pt;}
.ws47{word-spacing:1.496000pt;}
.ws7c{word-spacing:1.530667pt;}
.ws7b{word-spacing:1.568000pt;}
.ws1a{word-spacing:1.586667pt;}
.ws7a{word-spacing:1.632000pt;}
.ws4c{word-spacing:1.677333pt;}
.ws3c{word-spacing:1.722667pt;}
.ws42{word-spacing:1.813333pt;}
.ws1f{word-spacing:1.858667pt;}
.ws24{word-spacing:1.904000pt;}
.ws12{word-spacing:2.901333pt;}
.wsd{word-spacing:3.072000pt;}
.ws8{word-spacing:3.328000pt;}
.ws18{word-spacing:5.333333pt;}
.ws17{word-spacing:5.504000pt;}
.ws7{word-spacing:6.656000pt;}
.ws83{word-spacing:460.813333pt;}
.ws84{word-spacing:490.402667pt;}
.ws82{word-spacing:502.613333pt;}
.ws21{word-spacing:1383.488533pt;}
._7{margin-left:-5.838933pt;}
._4{margin-left:-4.881067pt;}
._2{margin-left:-3.518933pt;}
._0{margin-left:-2.565333pt;}
._3{margin-left:-1.062400pt;}
._8{width:1.435733pt;}
._9{width:2.869600pt;}
._10{width:9.424843pt;}
._f{width:12.096000pt;}
._e{width:14.661333pt;}
._b{width:29.904089pt;}
._a{width:31.098675pt;}
._c{width:32.853333pt;}
._d{width:35.280059pt;}
._1{width:81.162667pt;}
._5{width:666.154667pt;}
._6{width:1610.753067pt;}
.fs5{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fsa{font-size:26.293333pt;}
.fs4{font-size:26.666667pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.976267pt;}
.y6{bottom:75.590533pt;}
.y171{bottom:75.592267pt;}
.yeb{bottom:76.489200pt;}
.yc4{bottom:78.210667pt;}
.ya3{bottom:80.622533pt;}
.yf8{bottom:84.973200pt;}
.y6a{bottom:89.027200pt;}
.y5{bottom:89.637200pt;}
.yea{bottom:89.805867pt;}
.y170{bottom:90.475600pt;}
.yc3{bottom:91.527333pt;}
.y151{bottom:94.115333pt;}
.ya2{bottom:94.355867pt;}
.y12e{bottom:97.953067pt;}
.yf7{bottom:98.709200pt;}
.y69{bottom:102.760667pt;}
.ye9{bottom:103.122533pt;}
.yc2{bottom:104.844000pt;}
.y16f{bottom:105.358933pt;}
.y150{bottom:107.442000pt;}
.ya1{bottom:108.089200pt;}
.y12d{bottom:111.269733pt;}
.yf6{bottom:112.442533pt;}
.y2c{bottom:114.276267pt;}
.ye8{bottom:116.439200pt;}
.y68{bottom:116.491333pt;}
.yc1{bottom:118.160667pt;}
.y16e{bottom:120.242267pt;}
.y14f{bottom:120.758667pt;}
.ya0{bottom:121.822533pt;}
.y12c{bottom:124.586400pt;}
.yf5{bottom:126.175867pt;}
.y2b{bottom:127.592933pt;}
.ye7{bottom:129.755867pt;}
.y67{bottom:130.227333pt;}
.yc0{bottom:131.477333pt;}
.y9f{bottom:135.555867pt;}
.y12b{bottom:137.903067pt;}
.yf4{bottom:139.909200pt;}
.y2a{bottom:140.909600pt;}
.ye6{bottom:143.072533pt;}
.y66{bottom:143.960667pt;}
.ybf{bottom:144.794000pt;}
.y14e{bottom:145.408667pt;}
.y9e{bottom:149.289200pt;}
.y12a{bottom:151.219733pt;}
.yf3{bottom:153.642533pt;}
.y29{bottom:154.226267pt;}
.ye5{bottom:156.389200pt;}
.y65{bottom:157.694000pt;}
.ybe{bottom:158.110667pt;}
.yed{bottom:160.129200pt;}
.y9d{bottom:163.022533pt;}
.y129{bottom:164.536400pt;}
.yf2{bottom:167.375867pt;}
.y28{bottom:167.542933pt;}
.ye4{bottom:169.705867pt;}
.y64{bottom:171.427333pt;}
.y9b{bottom:176.755867pt;}
.y128{bottom:177.853067pt;}
.y9c{bottom:180.495867pt;}
.y27{bottom:180.864933pt;}
.ye3{bottom:183.022533pt;}
.ybd{bottom:184.744000pt;}
.y63{bottom:185.160667pt;}
.y14d{bottom:185.177333pt;}
.y9a{bottom:190.486533pt;}
.y127{bottom:191.169733pt;}
.yf1{bottom:192.447867pt;}
.y26{bottom:194.181600pt;}
.ye2{bottom:196.339200pt;}
.ybc{bottom:198.060667pt;}
.y14c{bottom:198.494000pt;}
.y62{bottom:198.891333pt;}
.y99{bottom:204.222533pt;}
.y126{bottom:204.486267pt;}
.y25{bottom:207.498267pt;}
.ye1{bottom:209.655867pt;}
.ybb{bottom:211.377333pt;}
.y14b{bottom:211.810667pt;}
.y61{bottom:212.627333pt;}
.y125{bottom:217.803067pt;}
.y98{bottom:217.955867pt;}
.y24{bottom:220.814933pt;}
.ye0{bottom:222.972533pt;}
.yba{bottom:224.694000pt;}
.y14a{bottom:225.127333pt;}
.y60{bottom:226.360667pt;}
.y124{bottom:231.119733pt;}
.y97{bottom:231.689200pt;}
.y23{bottom:234.131600pt;}
.ydf{bottom:236.289200pt;}
.yb9{bottom:238.010667pt;}
.y149{bottom:238.444000pt;}
.y5f{bottom:240.094000pt;}
.y123{bottom:244.436400pt;}
.y96{bottom:245.422533pt;}
.yde{bottom:249.605867pt;}
.yb8{bottom:251.327333pt;}
.y148{bottom:251.760667pt;}
.y122{bottom:257.753067pt;}
.y22{bottom:258.781600pt;}
.y94{bottom:259.155867pt;}
.y95{bottom:262.895867pt;}
.ydd{bottom:262.922533pt;}
.yb7{bottom:264.644000pt;}
.y147{bottom:265.077333pt;}
.y5e{bottom:265.170533pt;}
.y121{bottom:271.069600pt;}
.y93{bottom:272.886533pt;}
.ydc{bottom:276.239200pt;}
.yb6{bottom:277.960667pt;}
.y146{bottom:278.394000pt;}
.y120{bottom:284.386400pt;}
.y92{bottom:286.622533pt;}
.ydb{bottom:289.555867pt;}
.y21{bottom:290.029867pt;}
.yb5{bottom:291.277333pt;}
.y145{bottom:291.710667pt;}
.y11f{bottom:297.703067pt;}
.y91{bottom:300.355867pt;}
.yda{bottom:302.872533pt;}
.y20{bottom:303.363200pt;}
.yb4{bottom:304.594000pt;}
.y5d{bottom:304.939200pt;}
.y144{bottom:305.027333pt;}
.y11e{bottom:311.019733pt;}
.y90{bottom:314.089200pt;}
.yd9{bottom:316.189200pt;}
.y143{bottom:318.344000pt;}
.y5c{bottom:318.672533pt;}
.y1f{bottom:320.472533pt;}
.y11c{bottom:324.336400pt;}
.y8f{bottom:327.822533pt;}
.y11d{bottom:328.076400pt;}
.yb3{bottom:329.249200pt;}
.yd8{bottom:329.505867pt;}
.y142{bottom:331.660667pt;}
.y5b{bottom:332.403200pt;}
.y1e{bottom:333.805867pt;}
.y11b{bottom:337.652933pt;}
.y8e{bottom:341.555867pt;}
.yd7{bottom:342.822533pt;}
.y141{bottom:344.977333pt;}
.y5a{bottom:346.139200pt;}
.y1d{bottom:347.139200pt;}
.y11a{bottom:350.969733pt;}
.y8d{bottom:355.289200pt;}
.yd6{bottom:356.139200pt;}
.y140{bottom:358.294000pt;}
.y59{bottom:359.872533pt;}
.y1c{bottom:360.472533pt;}
.y119{bottom:364.286400pt;}
.yb2{bottom:369.019867pt;}
.y8c{bottom:369.022533pt;}
.yd5{bottom:369.455867pt;}
.y13f{bottom:371.610667pt;}
.y58{bottom:373.605867pt;}
.y1b{bottom:373.805867pt;}
.y118{bottom:377.603067pt;}
.y8b{bottom:382.755867pt;}
.yd4{bottom:382.772533pt;}
.y13e{bottom:384.927333pt;}
.y1a{bottom:387.139200pt;}
.y57{bottom:387.339200pt;}
.y117{bottom:390.919733pt;}
.yd3{bottom:396.089200pt;}
.y8a{bottom:396.489200pt;}
.y13d{bottom:398.244000pt;}
.y19{bottom:400.472533pt;}
.y56{bottom:401.072533pt;}
.y116{bottom:404.236400pt;}
.yd2{bottom:409.405867pt;}
.y89{bottom:410.217200pt;}
.yb1{bottom:410.222533pt;}
.y13c{bottom:411.560667pt;}
.y18{bottom:413.805867pt;}
.y55{bottom:414.805867pt;}
.y115{bottom:417.553067pt;}
.yd1{bottom:422.722533pt;}
.y88{bottom:423.953200pt;}
.yb0{bottom:423.955867pt;}
.y13b{bottom:424.877333pt;}
.y54{bottom:428.539200pt;}
.y114{bottom:430.869733pt;}
.y17{bottom:430.915200pt;}
.yd0{bottom:436.039200pt;}
.y87{bottom:437.689200pt;}
.y13a{bottom:438.194000pt;}
.y53{bottom:442.272533pt;}
.y113{bottom:444.186400pt;}
.yef{bottom:447.203600pt;}
.ycf{bottom:449.355867pt;}
.y16d{bottom:450.727333pt;}
.y86{bottom:451.422533pt;}
.y139{bottom:451.510667pt;}
.y52{bottom:456.005867pt;}
.y112{bottom:457.503067pt;}
.y16{bottom:458.541867pt;}
.y16c{bottom:461.694000pt;}
.yce{bottom:462.672533pt;}
.y138{bottom:464.827333pt;}
.y85{bottom:465.155867pt;}
.y51{bottom:469.739200pt;}
.y111{bottom:470.819600pt;}
.y15{bottom:471.875200pt;}
.y16b{bottom:472.660667pt;}
.ycc{bottom:475.989200pt;}
.y137{bottom:478.144000pt;}
.y84{bottom:478.889200pt;}
.ycd{bottom:479.729200pt;}
.y50{bottom:483.472533pt;}
.y16a{bottom:483.627333pt;}
.y110{bottom:484.136400pt;}
.y14{bottom:488.984533pt;}
.ycb{bottom:489.305867pt;}
.y136{bottom:491.460667pt;}
.y83{bottom:492.617200pt;}
.yaf{bottom:492.622533pt;}
.y169{bottom:494.594000pt;}
.y4f{bottom:497.205867pt;}
.y10f{bottom:497.453067pt;}
.y13{bottom:502.317867pt;}
.yca{bottom:502.622533pt;}
.y135{bottom:504.777200pt;}
.y168{bottom:505.560667pt;}
.y82{bottom:506.353200pt;}
.yae{bottom:506.355867pt;}
.yf9{bottom:506.362533pt;}
.y10e{bottom:510.769733pt;}
.y4e{bottom:510.939200pt;}
.y12{bottom:515.651200pt;}
.yc9{bottom:515.939200pt;}
.y167{bottom:516.527200pt;}
.y134{bottom:518.094000pt;}
.y81{bottom:520.083867pt;}
.y10d{bottom:524.086400pt;}
.y4d{bottom:524.669867pt;}
.y166{bottom:527.494000pt;}
.y11{bottom:528.984533pt;}
.yc8{bottom:529.255867pt;}
.y133{bottom:531.410667pt;}
.y80{bottom:533.819867pt;}
.y10c{bottom:537.402933pt;}
.y4c{bottom:538.405867pt;}
.y165{bottom:538.460667pt;}
.y10{bottom:542.317867pt;}
.yc7{bottom:542.572533pt;}
.y41{bottom:542.753867pt;}
.y132{bottom:544.727333pt;}
.y7f{bottom:547.555867pt;}
.y164{bottom:549.427333pt;}
.y10b{bottom:550.719733pt;}
.y4b{bottom:552.139200pt;}
.yf{bottom:555.651200pt;}
.yc6{bottom:555.889200pt;}
.y131{bottom:558.044000pt;}
.y163{bottom:560.393867pt;}
.y7e{bottom:561.289200pt;}
.y10a{bottom:564.036400pt;}
.y4a{bottom:565.872533pt;}
.ye{bottom:568.984533pt;}
.yc5{bottom:569.205867pt;}
.y130{bottom:571.360533pt;}
.y7d{bottom:575.022533pt;}
.y109{bottom:577.353067pt;}
.y49{bottom:579.603200pt;}
.yd{bottom:582.317867pt;}
.y162{bottom:582.327333pt;}
.y40{bottom:582.522533pt;}
.y7c{bottom:588.755867pt;}
.y161{bottom:593.294000pt;}
.y48{bottom:593.339200pt;}
.yc{bottom:595.651200pt;}
.y3f{bottom:595.839200pt;}
.y12f{bottom:596.020533pt;}
.yad{bottom:602.481200pt;}
.y7b{bottom:602.489200pt;}
.y160{bottom:604.260667pt;}
.y108{bottom:605.787733pt;}
.y47{bottom:607.072533pt;}
.yb{bottom:608.984533pt;}
.y3e{bottom:609.155867pt;}
.y15f{bottom:615.227333pt;}
.yac{bottom:616.217200pt;}
.y7a{bottom:616.222533pt;}
.y107{bottom:618.321067pt;}
.y46{bottom:620.805867pt;}
.y3d{bottom:622.472533pt;}
.y15e{bottom:626.193867pt;}
.yec{bottom:626.212533pt;}
.y79{bottom:629.953200pt;}
.y106{bottom:630.854400pt;}
.yf0{bottom:631.387200pt;}
.y45{bottom:634.539200pt;}
.y3c{bottom:635.789200pt;}
.y15d{bottom:637.160667pt;}
.ya{bottom:639.109200pt;}
.y105{bottom:643.387733pt;}
.y78{bottom:643.689200pt;}
.y15c{bottom:648.127333pt;}
.y44{bottom:648.272533pt;}
.y3b{bottom:649.105867pt;}
.y9{bottom:653.509200pt;}
.y104{bottom:655.921200pt;}
.y76{bottom:657.422533pt;}
.y15b{bottom:659.094000pt;}
.y77{bottom:661.162533pt;}
.y43{bottom:662.005867pt;}
.y3a{bottom:662.422533pt;}
.y103{bottom:668.454400pt;}
.y15a{bottom:670.060667pt;}
.y75{bottom:671.150533pt;}
.yaa{bottom:671.155867pt;}
.yab{bottom:674.895867pt;}
.y39{bottom:675.739200pt;}
.y102{bottom:680.987733pt;}
.y159{bottom:681.027333pt;}
.y8{bottom:682.445067pt;}
.y74{bottom:684.886533pt;}
.ya9{bottom:684.889200pt;}
.y38{bottom:689.055867pt;}
.y158{bottom:691.994000pt;}
.y101{bottom:693.521200pt;}
.ya8{bottom:698.619867pt;}
.y73{bottom:698.622533pt;}
.y37{bottom:702.372533pt;}
.y157{bottom:702.960667pt;}
.y7{bottom:703.781067pt;}
.y100{bottom:706.054533pt;}
.y72{bottom:712.355867pt;}
.y156{bottom:713.927200pt;}
.y36{bottom:715.689200pt;}
.yff{bottom:718.587867pt;}
.y155{bottom:724.894000pt;}
.y71{bottom:726.089200pt;}
.y35{bottom:729.005867pt;}
.ya7{bottom:729.829200pt;}
.yfe{bottom:731.121200pt;}
.y154{bottom:735.860533pt;}
.y70{bottom:739.822533pt;}
.y34{bottom:742.322533pt;}
.yfd{bottom:743.654533pt;}
.y153{bottom:746.827333pt;}
.y6f{bottom:753.555867pt;}
.y33{bottom:755.639200pt;}
.yfc{bottom:756.187867pt;}
.y6e{bottom:767.289200pt;}
.yfb{bottom:768.721067pt;}
.y32{bottom:768.955867pt;}
.y152{bottom:769.132533pt;}
.ya6{bottom:781.014533pt;}
.y6d{bottom:781.022533pt;}
.yfa{bottom:781.254533pt;}
.y31{bottom:782.272533pt;}
.y3{bottom:789.529200pt;}
.ya5{bottom:794.750533pt;}
.y6c{bottom:794.755867pt;}
.y30{bottom:795.589200pt;}
.ya4{bottom:808.486533pt;}
.y6b{bottom:808.489200pt;}
.y2f{bottom:808.905867pt;}
.y2e{bottom:822.222533pt;}
.yee{bottom:823.101200pt;}
.y4{bottom:831.496133pt;}
.y2{bottom:842.232667pt;}
.y2d{bottom:861.780400pt;}
.y42{bottom:861.919333pt;}
.h6{height:24.266667pt;}
.hf{height:25.767467pt;}
.h5{height:26.133333pt;}
.h2{height:33.973333pt;}
.he{height:36.030933pt;}
.h7{height:36.586667pt;}
.hb{height:40.729167pt;}
.h3{height:40.998400pt;}
.h4{height:41.813333pt;}
.hc{height:43.274740pt;}
.h11{height:44.290667pt;}
.hd{height:44.426667pt;}
.h10{height:44.448000pt;}
.ha{height:47.040000pt;}
.h12{height:49.501333pt;}
.h9{height:56.002604pt;}
.h8{height:73.173333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x3{left:68.284933pt;}
.xa{left:71.811600pt;}
.x5{left:82.023600pt;}
.x6{left:105.363867pt;}
.x1c{left:118.568667pt;}
.xb{left:123.083600pt;}
.x7{left:139.411867pt;}
.x9{left:166.959600pt;}
.x18{left:192.832533pt;}
.x19{left:200.159600pt;}
.x8{left:209.831200pt;}
.x1d{left:258.242533pt;}
.x1e{left:265.575600pt;}
.x12{left:291.292800pt;}
.x13{left:294.978800pt;}
.x16{left:317.429867pt;}
.x17{left:324.414933pt;}
.x21{left:330.897600pt;}
.xe{left:370.838533pt;}
.xf{left:374.480267pt;}
.xc{left:388.025200pt;}
.x1a{left:389.967867pt;}
.xd{left:391.774267pt;}
.x1b{left:397.157467pt;}
.x2{left:440.563067pt;}
.x4{left:450.667600pt;}
.x10{left:456.254400pt;}
.x11{left:459.998000pt;}
.x14{left:508.996667pt;}
.x15{left:512.779467pt;}
.x1f{left:552.950400pt;}
.x20{left:560.381600pt;}
}




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