
    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_912b0b7bd236067383abb119.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_7d3f9f36c28890fa36755671.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_3e5983bb4a613891509dd720.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.193000;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_6b4613709ba473641e5d4764.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.178000;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_23ad8f6c11d6dcb8dd4b7987.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;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_9045633aceaf2b1bec1ed2b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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;}
.m2e{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247963,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247965,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m5a{transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248174,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248637,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248653,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248731,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.me5{transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m26{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.mf3{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.mc9{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);}
.mb9{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m73{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.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);}
.mfc{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.md0{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);}
.m14{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m8c{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);}
.m8e{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);}
.mb0{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);}
.ma8{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);}
.ma7{transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251607,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251862,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m6d{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);}
.m3e{transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.959400px;}
.v1{vertical-align:20.000400px;}
.ls47{letter-spacing:-3.990000px;}
.ls2d{letter-spacing:-3.933000px;}
.ls46{letter-spacing:-3.876000px;}
.ls2e{letter-spacing:-3.534000px;}
.ls45{letter-spacing:-0.840000px;}
.ls3d{letter-spacing:-0.780000px;}
.ls40{letter-spacing:-0.672000px;}
.ls22{letter-spacing:-0.660000px;}
.ls49{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.489720px;}
.ls24{letter-spacing:-0.480000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls4a{letter-spacing:-0.384780px;}
.ls17{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.349800px;}
.ls18{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.285000px;}
.ls1b{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.228000px;}
.ls4b{letter-spacing:-0.209880px;}
.lsa{letter-spacing:-0.192000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.174900px;}
.ls34{letter-spacing:-0.171000px;}
.ls6{letter-spacing:-0.153000px;}
.ls9{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.139920px;}
.ls1c{letter-spacing:-0.120000px;}
.ls31{letter-spacing:-0.104940px;}
.ls7{letter-spacing:-0.102000px;}
.ls32{letter-spacing:-0.096000px;}
.ls16{letter-spacing:-0.060000px;}
.ls2b{letter-spacing:-0.057000px;}
.ls19{letter-spacing:-0.048000px;}
.ls3e{letter-spacing:-0.034980px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000060px;}
.ls48{letter-spacing:0.004200px;}
.ls3{letter-spacing:0.048000px;}
.ls2c{letter-spacing:0.057000px;}
.lse{letter-spacing:0.060000px;}
.ls4c{letter-spacing:0.069960px;}
.ls30{letter-spacing:0.085500px;}
.ls37{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.096000px;}
.ls27{letter-spacing:0.114000px;}
.ls12{letter-spacing:0.120000px;}
.ls2f{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.153000px;}
.ls15{letter-spacing:0.168000px;}
.ls43{letter-spacing:0.174900px;}
.ls44{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.192000px;}
.ls42{letter-spacing:0.209880px;}
.ls28{letter-spacing:0.228000px;}
.lsf{letter-spacing:0.240000px;}
.ls38{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.268064px;}
.ls41{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.300000px;}
.ls3c{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.450000px;}
.ls10{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.672000px;}
.ls3a{letter-spacing:0.696000px;}
.ls35{letter-spacing:0.720000px;}
.ls39{letter-spacing:0.780000px;}
.ls36{letter-spacing:0.810000px;}
.lsb{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.350000px;}
.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;}
}
.ws9c{word-spacing:-15.246000px;}
.ws4f{word-spacing:-13.878000px;}
.wsd7{word-spacing:-13.608000px;}
.wsbb{word-spacing:-13.068000px;}
.wsad{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.798000px;}
.ws3{word-spacing:-12.600000px;}
.ws2c{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.474000px;}
.wsd4{word-spacing:-12.360000px;}
.ws50{word-spacing:-12.300000px;}
.ws9e{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.710000px;}
.ws2b{word-spacing:-10.704000px;}
.wsd8{word-spacing:-10.455000px;}
.ws53{word-spacing:-10.224000px;}
.ws83{word-spacing:-10.080000px;}
.ws9f{word-spacing:-9.408000px;}
.wsbc{word-spacing:-8.094000px;}
.ws52{word-spacing:-8.037000px;}
.wsbd{word-spacing:-7.980000px;}
.wsae{word-spacing:-7.520700px;}
.ws4{word-spacing:-7.345800px;}
.ws9d{word-spacing:-7.310820px;}
.ws67{word-spacing:-7.240860px;}
.ws51{word-spacing:-7.170900px;}
.wsc6{word-spacing:-6.961020px;}
.ws39{word-spacing:-2.760000px;}
.ws7f{word-spacing:-2.700000px;}
.ws7e{word-spacing:-2.640000px;}
.ws20{word-spacing:-2.580000px;}
.ws1d{word-spacing:-2.520000px;}
.ws54{word-spacing:-2.460000px;}
.ws33{word-spacing:-2.400000px;}
.wsb7{word-spacing:-2.340000px;}
.ws6c{word-spacing:-2.280000px;}
.ws62{word-spacing:-2.223000px;}
.wsb8{word-spacing:-2.220000px;}
.ws9{word-spacing:-2.193000px;}
.ws5b{word-spacing:-2.160000px;}
.wsb{word-spacing:-2.142000px;}
.ws94{word-spacing:-2.100000px;}
.ws14{word-spacing:-2.064000px;}
.ws68{word-spacing:-2.040000px;}
.ws17{word-spacing:-2.016000px;}
.wse{word-spacing:-1.989000px;}
.wsc8{word-spacing:-1.980000px;}
.ws7a{word-spacing:-1.938000px;}
.ws8c{word-spacing:-1.920000px;}
.ws10{word-spacing:-1.860000px;}
.ws3c{word-spacing:-1.824000px;}
.ws6b{word-spacing:-1.800000px;}
.ws8d{word-spacing:-1.776000px;}
.wsa1{word-spacing:-1.740000px;}
.wsc4{word-spacing:-1.728000px;}
.wsb9{word-spacing:-1.680000px;}
.wsb1{word-spacing:-1.620000px;}
.ws26{word-spacing:-1.560000px;}
.wsc3{word-spacing:-1.536000px;}
.wsc0{word-spacing:-1.482000px;}
.ws5e{word-spacing:-1.440000px;}
.ws4a{word-spacing:-1.380000px;}
.ws1a{word-spacing:-1.350000px;}
.wsd9{word-spacing:-1.320000px;}
.wsbf{word-spacing:-1.311000px;}
.ws5a{word-spacing:-1.260000px;}
.ws76{word-spacing:-1.254000px;}
.ws11{word-spacing:-1.200000px;}
.ws8b{word-spacing:-1.140000px;}
.ws70{word-spacing:-1.104000px;}
.ws96{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.026000px;}
.ws8e{word-spacing:-1.008000px;}
.wsa{word-spacing:-0.969000px;}
.ws18{word-spacing:-0.960000px;}
.ws81{word-spacing:-0.900000px;}
.ws24{word-spacing:-0.840000px;}
.wsb4{word-spacing:-0.816000px;}
.ws80{word-spacing:-0.780000px;}
.wsc1{word-spacing:-0.741000px;}
.ws5c{word-spacing:-0.720000px;}
.ws42{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.600000px;}
.ws90{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.540000px;}
.wsdb{word-spacing:-0.510000px;}
.ws29{word-spacing:-0.480000px;}
.ws1e{word-spacing:-0.420000px;}
.ws95{word-spacing:-0.360000px;}
.wsaa{word-spacing:-0.336000px;}
.ws6e{word-spacing:-0.300000px;}
.ws3b{word-spacing:-0.288000px;}
.ws32{word-spacing:-0.240000px;}
.wsaf{word-spacing:-0.209880px;}
.ws99{word-spacing:-0.192000px;}
.ws84{word-spacing:-0.180000px;}
.wsb2{word-spacing:-0.174900px;}
.wsbe{word-spacing:-0.120000px;}
.ws65{word-spacing:-0.096000px;}
.wsd1{word-spacing:-0.069960px;}
.ws6a{word-spacing:-0.060000px;}
.ws72{word-spacing:-0.057000px;}
.ws5{word-spacing:0.000000px;}
.wsb3{word-spacing:0.048000px;}
.wsf{word-spacing:0.051000px;}
.ws55{word-spacing:0.060000px;}
.ws98{word-spacing:0.096000px;}
.wsd6{word-spacing:0.104940px;}
.ws89{word-spacing:0.120000px;}
.wsd5{word-spacing:0.139920px;}
.wsc{word-spacing:0.153000px;}
.wsb0{word-spacing:0.174900px;}
.ws85{word-spacing:0.180000px;}
.wsc9{word-spacing:0.209880px;}
.ws4c{word-spacing:0.240000px;}
.ws3f{word-spacing:0.300000px;}
.wsc2{word-spacing:0.336000px;}
.ws63{word-spacing:0.342000px;}
.wsda{word-spacing:0.349800px;}
.ws6f{word-spacing:0.360000px;}
.ws38{word-spacing:0.420000px;}
.ws16{word-spacing:0.432000px;}
.ws3a{word-spacing:0.480000px;}
.wsa4{word-spacing:0.489720px;}
.ws78{word-spacing:0.513000px;}
.ws93{word-spacing:0.600000px;}
.wsb5{word-spacing:0.624000px;}
.ws2f{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.wsa6{word-spacing:0.780000px;}
.ws71{word-spacing:0.816000px;}
.ws46{word-spacing:0.840000px;}
.ws97{word-spacing:0.900000px;}
.ws28{word-spacing:0.960000px;}
.ws8{word-spacing:0.969000px;}
.wsa9{word-spacing:1.008000px;}
.ws8a{word-spacing:1.020000px;}
.ws37{word-spacing:1.080000px;}
.ws13{word-spacing:1.104000px;}
.ws1f{word-spacing:1.140000px;}
.ws40{word-spacing:1.200000px;}
.ws4e{word-spacing:1.260000px;}
.ws4b{word-spacing:1.320000px;}
.ws44{word-spacing:1.380000px;}
.ws3d{word-spacing:1.440000px;}
.ws8f{word-spacing:1.488000px;}
.ws86{word-spacing:1.500000px;}
.ws74{word-spacing:1.539000px;}
.ws47{word-spacing:1.560000px;}
.ws9a{word-spacing:1.584000px;}
.ws77{word-spacing:1.596000px;}
.ws35{word-spacing:1.620000px;}
.wsa3{word-spacing:1.680000px;}
.wsd0{word-spacing:1.740000px;}
.ws79{word-spacing:1.824000px;}
.ws91{word-spacing:1.872000px;}
.ws7b{word-spacing:1.920000px;}
.ws49{word-spacing:1.980000px;}
.ws21{word-spacing:2.040000px;}
.ws2d{word-spacing:2.100000px;}
.ws2a{word-spacing:2.208000px;}
.ws69{word-spacing:2.220000px;}
.ws59{word-spacing:2.280000px;}
.ws15{word-spacing:2.304000px;}
.ws7d{word-spacing:2.340000px;}
.ws58{word-spacing:2.400000px;}
.ws43{word-spacing:2.460000px;}
.wsba{word-spacing:2.496000px;}
.ws57{word-spacing:2.520000px;}
.ws88{word-spacing:2.580000px;}
.wsa5{word-spacing:2.640000px;}
.ws2e{word-spacing:2.700000px;}
.wsac{word-spacing:2.784000px;}
.wsa2{word-spacing:2.820000px;}
.wsc7{word-spacing:2.940000px;}
.ws22{word-spacing:3.000000px;}
.wsab{word-spacing:3.024000px;}
.ws7{word-spacing:3.060000px;}
.wsa8{word-spacing:3.072000px;}
.ws56{word-spacing:3.120000px;}
.wsa0{word-spacing:3.180000px;}
.ws75{word-spacing:3.192000px;}
.ws27{word-spacing:3.240000px;}
.wsa7{word-spacing:3.264000px;}
.ws30{word-spacing:3.300000px;}
.ws12{word-spacing:3.312000px;}
.ws87{word-spacing:3.360000px;}
.ws36{word-spacing:3.420000px;}
.wscf{word-spacing:3.480000px;}
.ws6{word-spacing:3.519000px;}
.ws41{word-spacing:3.540000px;}
.ws5f{word-spacing:3.591000px;}
.ws61{word-spacing:3.648000px;}
.ws5d{word-spacing:3.660000px;}
.ws60{word-spacing:3.705000px;}
.ws4d{word-spacing:3.720000px;}
.ws1c{word-spacing:3.780000px;}
.ws92{word-spacing:3.840000px;}
.ws34{word-spacing:3.900000px;}
.ws6d{word-spacing:3.960000px;}
.wsca{word-spacing:4.020000px;}
.ws48{word-spacing:4.080000px;}
.ws1b{word-spacing:4.140000px;}
.ws25{word-spacing:4.200000px;}
.ws45{word-spacing:4.380000px;}
.ws7c{word-spacing:4.560000px;}
.ws64{word-spacing:6.669000px;}
.wsd2{word-spacing:25.440000px;}
.wscb{word-spacing:25.920000px;}
.wscd{word-spacing:30.384000px;}
.wsce{word-spacing:32.160000px;}
.wscc{word-spacing:36.576000px;}
.ws19{word-spacing:1197.348000px;}
.ws3e{word-spacing:1197.564000px;}
.wsd3{word-spacing:1199.778000px;}
.ws66{word-spacing:1210.794000px;}
.ws9b{word-spacing:1213.656000px;}
.wsb6{word-spacing:1214.844000px;}
.wsc5{word-spacing:1215.060000px;}
.ws82{word-spacing:1217.544000px;}
._12{margin-left:-2178.090000px;}
._f{margin-left:-2176.830000px;}
._1a{margin-left:-17.153400px;}
._1e{margin-left:-15.624000px;}
._d{margin-left:-14.271600px;}
._b{margin-left:-11.791200px;}
._10{margin-left:-9.970800px;}
._3{margin-left:-8.640000px;}
._7{margin-left:-7.440000px;}
._6{margin-left:-5.877600px;}
._4{margin-left:-4.865400px;}
._1{margin-left:-3.360000px;}
._0{margin-left:-1.929600px;}
._2{width:1.440000px;}
._8{width:2.791800px;}
._5{width:3.947400px;}
._a{width:5.061600px;}
._e{width:15.112800px;}
._19{width:18.240000px;}
._1c{width:20.088000px;}
._1d{width:24.912000px;}
._1b{width:26.352000px;}
._20{width:27.408000px;}
._13{width:28.560000px;}
._21{width:29.952000px;}
._1f{width:31.104000px;}
._17{width:32.592000px;}
._16{width:34.800000px;}
._15{width:35.808000px;}
._18{width:36.864000px;}
._14{width:41.712000px;}
._11{width:48.240000px;}
._c{width:51.312000px;}
._9{width:52.704000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.231000px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:59.527650px;}
.ybf{bottom:59.527800px;}
.ycd{bottom:59.527950px;}
.y6d{bottom:59.528100px;}
.yfb{bottom:59.528700px;}
.y21{bottom:74.527650px;}
.ybe{bottom:74.527800px;}
.ycc{bottom:74.527950px;}
.y6c{bottom:74.528100px;}
.yfa{bottom:74.528700px;}
.y20{bottom:89.527650px;}
.y90{bottom:89.527800px;}
.yc4{bottom:89.527950px;}
.y6b{bottom:89.528100px;}
.yf9{bottom:89.528700px;}
.y1f{bottom:104.527650px;}
.y8f{bottom:104.527800px;}
.ybd{bottom:104.527950px;}
.y6a{bottom:104.528100px;}
.yf8{bottom:104.528700px;}
.y7c{bottom:116.456400px;}
.ya7{bottom:116.461350px;}
.y1e{bottom:119.527650px;}
.ydf{bottom:119.527800px;}
.y8e{bottom:119.527950px;}
.y69{bottom:119.528100px;}
.yf7{bottom:119.528700px;}
.y1d{bottom:134.527650px;}
.yde{bottom:134.527800px;}
.y4d{bottom:134.527950px;}
.y68{bottom:134.528100px;}
.yf6{bottom:134.528700px;}
.ya6{bottom:135.186300px;}
.y7b{bottom:135.191400px;}
.y1c{bottom:149.527650px;}
.y4c{bottom:149.527950px;}
.y67{bottom:149.528100px;}
.yfd{bottom:149.528250px;}
.yf5{bottom:149.528700px;}
.yff{bottom:153.916200px;}
.y7a{bottom:153.921300px;}
.y11e{bottom:156.136500px;}
.y110{bottom:156.149250px;}
.y1b{bottom:164.527800px;}
.y4b{bottom:164.527950px;}
.y66{bottom:164.528100px;}
.yf4{bottom:164.528700px;}
.y79{bottom:172.635900px;}
.y8d{bottom:172.651200px;}
.y11d{bottom:173.387250px;}
.y10f{bottom:173.400000px;}
.y1a{bottom:179.527800px;}
.y4a{bottom:179.527950px;}
.y65{bottom:179.528100px;}
.yf3{bottom:179.528700px;}
.y11c{bottom:190.638000px;}
.y10e{bottom:190.650750px;}
.y78{bottom:191.370900px;}
.ya5{bottom:191.381100px;}
.y8c{bottom:191.386500px;}
.y19{bottom:194.527800px;}
.y49{bottom:194.527950px;}
.y64{bottom:194.528100px;}
.y11b{bottom:207.888750px;}
.y10d{bottom:207.901500px;}
.y48{bottom:209.527950px;}
.y63{bottom:209.528100px;}
.ycb{bottom:210.080550px;}
.y77{bottom:210.105900px;}
.y8b{bottom:210.111000px;}
.y47{bottom:224.527950px;}
.y9a{bottom:224.528100px;}
.yd4{bottom:224.528250px;}
.y11a{bottom:225.139500px;}
.y10c{bottom:225.152250px;}
.yca{bottom:228.815550px;}
.yf2{bottom:228.825600px;}
.y18{bottom:228.835800px;}
.y76{bottom:228.840900px;}
.yeb{bottom:239.527950px;}
.y119{bottom:242.390250px;}
.y10b{bottom:242.403000px;}
.ydd{bottom:247.545450px;}
.yc9{bottom:247.550550px;}
.yf1{bottom:247.560600px;}
.y17{bottom:247.570800px;}
.yea{bottom:254.527950px;}
.y118{bottom:259.641000px;}
.y10a{bottom:259.653750px;}
.ydc{bottom:266.280450px;}
.yc8{bottom:266.285550px;}
.y46{bottom:266.290650px;}
.ya4{bottom:266.295600px;}
.y62{bottom:266.300700px;}
.ye9{bottom:269.527950px;}
.y117{bottom:276.891750px;}
.y109{bottom:276.904500px;}
.ye8{bottom:284.527950px;}
.ydb{bottom:285.015450px;}
.ybc{bottom:285.020550px;}
.y45{bottom:285.025650px;}
.y61{bottom:285.030600px;}
.y116{bottom:294.142500px;}
.y108{bottom:294.155250px;}
.ye7{bottom:299.527950px;}
.y75{bottom:303.745350px;}
.yda{bottom:303.750450px;}
.ybb{bottom:303.755550px;}
.y44{bottom:303.760650px;}
.y115{bottom:311.393250px;}
.y107{bottom:311.406000px;}
.ye6{bottom:314.527950px;}
.y16{bottom:321.378450px;}
.ya3{bottom:322.475250px;}
.y74{bottom:322.480350px;}
.yba{bottom:322.485450px;}
.y43{bottom:322.490550px;}
.y114{bottom:328.644000px;}
.y106{bottom:328.656750px;}
.y15{bottom:338.628450px;}
.y60{bottom:341.184900px;}
.y99{bottom:341.210250px;}
.y73{bottom:341.215350px;}
.y42{bottom:341.220450px;}
.y113{bottom:345.894750px;}
.y105{bottom:345.907500px;}
.y5f{bottom:359.919900px;}
.y98{bottom:359.945250px;}
.y41{bottom:359.950350px;}
.y112{bottom:363.145500px;}
.y104{bottom:363.158250px;}
.y14{bottom:373.876950px;}
.y5e{bottom:378.654900px;}
.y40{bottom:378.680250px;}
.y111{bottom:380.396250px;}
.y103{bottom:380.409000px;}
.y13{bottom:391.127700px;}
.y5d{bottom:397.389900px;}
.y72{bottom:397.405200px;}
.y3f{bottom:397.410300px;}
.y12{bottom:408.378450px;}
.y102{bottom:414.666900px;}
.yb9{bottom:416.104650px;}
.yc3{bottom:416.109600px;}
.y8a{bottom:416.119800px;}
.y5c{bottom:416.124900px;}
.y3e{bottom:416.135100px;}
.y71{bottom:416.140200px;}
.y11{bottom:425.628450px;}
.yb8{bottom:434.839650px;}
.yc2{bottom:434.844600px;}
.y89{bottom:434.854800px;}
.y5b{bottom:434.859900px;}
.y3d{bottom:434.870100px;}
.yb7{bottom:453.574650px;}
.yc1{bottom:453.579600px;}
.yf0{bottom:453.584700px;}
.y88{bottom:453.589800px;}
.y5a{bottom:453.594900px;}
.y3c{bottom:453.600000px;}
.yd3{bottom:458.595000px;}
.y10{bottom:460.877700px;}
.yb6{bottom:472.309650px;}
.y97{bottom:472.314600px;}
.yef{bottom:472.319700px;}
.y70{bottom:472.324800px;}
.y3b{bottom:472.329900px;}
.yf{bottom:478.128450px;}
.yb5{bottom:491.044650px;}
.y96{bottom:491.049600px;}
.y87{bottom:491.054700px;}
.y3a{bottom:491.059800px;}
.ye{bottom:495.378450px;}
.y39{bottom:509.774550px;}
.yb4{bottom:509.779650px;}
.y95{bottom:509.784600px;}
.y59{bottom:509.789700px;}
.yd{bottom:512.628450px;}
.y38{bottom:528.509550px;}
.yb3{bottom:528.514650px;}
.y58{bottom:528.519600px;}
.yc{bottom:529.878450px;}
.yb{bottom:547.128450px;}
.y86{bottom:547.234350px;}
.yc0{bottom:547.239450px;}
.y37{bottom:547.244550px;}
.y57{bottom:547.249650px;}
.ye5{bottom:547.260450px;}
.ya{bottom:564.377700px;}
.y85{bottom:565.969350px;}
.y6f{bottom:565.974450px;}
.y36{bottom:565.979550px;}
.ye4{bottom:565.984950px;}
.y9{bottom:581.628450px;}
.yb2{bottom:584.683950px;}
.y56{bottom:584.689050px;}
.y84{bottom:584.704350px;}
.y35{bottom:584.709450px;}
.yd2{bottom:589.704450px;}
.y8{bottom:598.878450px;}
.yd1{bottom:603.414000px;}
.yb1{bottom:603.418950px;}
.y55{bottom:603.424050px;}
.yc7{bottom:603.434250px;}
.y34{bottom:603.439350px;}
.yd9{bottom:608.434350px;}
.y7{bottom:616.128450px;}
.yd0{bottom:622.149000px;}
.yb0{bottom:622.153950px;}
.y54{bottom:622.159050px;}
.y101{bottom:622.164150px;}
.y33{bottom:622.169250px;}
.ya2{bottom:622.174650px;}
.yfe{bottom:627.164250px;}
.y6{bottom:633.386100px;}
.yd8{bottom:640.873800px;}
.ycf{bottom:640.884000px;}
.yaf{bottom:640.888950px;}
.y53{bottom:640.894050px;}
.y94{bottom:640.899000px;}
.y32{bottom:640.899150px;}
.yd7{bottom:659.608800px;}
.ye3{bottom:659.613900px;}
.yce{bottom:659.619000px;}
.yae{bottom:659.623950px;}
.y31{bottom:659.629050px;}
.yd6{bottom:678.343800px;}
.ye2{bottom:678.348900px;}
.y93{bottom:678.354000px;}
.y30{bottom:678.358950px;}
.ya1{bottom:678.391650px;}
.y83{bottom:697.053450px;}
.yd5{bottom:697.078800px;}
.y52{bottom:697.083900px;}
.y2f{bottom:697.089000px;}
.ya0{bottom:697.116150px;}
.y82{bottom:715.788450px;}
.yee{bottom:715.803600px;}
.yc6{bottom:715.813800px;}
.y2e{bottom:715.818900px;}
.y9f{bottom:715.840650px;}
.y81{bottom:734.523450px;}
.yed{bottom:734.538600px;}
.y92{bottom:734.543700px;}
.y2d{bottom:734.548800px;}
.y9e{bottom:734.565150px;}
.y80{bottom:753.258450px;}
.yec{bottom:753.273600px;}
.y2c{bottom:753.278700px;}
.y9d{bottom:753.289650px;}
.y5{bottom:770.438100px;}
.yad{bottom:771.978150px;}
.y7f{bottom:771.993450px;}
.yc5{bottom:771.998400px;}
.y2b{bottom:772.003650px;}
.y50{bottom:772.008600px;}
.y9c{bottom:772.014150px;}
.y51{bottom:777.003600px;}
.y4{bottom:788.433600px;}
.yac{bottom:790.713150px;}
.y7e{bottom:790.728450px;}
.y2a{bottom:790.733400px;}
.y4f{bottom:790.738650px;}
.yfc{bottom:795.733650px;}
.yab{bottom:809.448150px;}
.ye1{bottom:809.458350px;}
.y7d{bottom:809.463450px;}
.y29{bottom:809.468400px;}
.y3{bottom:823.441350px;}
.yaa{bottom:828.183150px;}
.ye0{bottom:828.193350px;}
.y28{bottom:828.198450px;}
.y9b{bottom:828.203850px;}
.ya9{bottom:846.918150px;}
.y6e{bottom:846.923250px;}
.y27{bottom:846.928350px;}
.y100{bottom:851.923350px;}
.ya8{bottom:865.653150px;}
.y26{bottom:865.658250px;}
.y91{bottom:865.663650px;}
.y2{bottom:871.217250px;}
.y4e{bottom:884.383050px;}
.y25{bottom:884.388150px;}
.y1{bottom:899.705250px;}
.y24{bottom:903.118050px;}
.y23{bottom:954.666900px;}
.hc{height:31.901760px;}
.ha{height:43.776000px;}
.h7{height:46.512000px;}
.h6{height:47.073000px;}
.h4{height:50.868000px;}
.h5{height:51.030000px;}
.hf{height:51.186000px;}
.h10{height:51.984000px;}
.h8{height:54.720000px;}
.he{height:54.739800px;}
.h9{height:54.740400px;}
.hb{height:54.741000px;}
.h12{height:54.760800px;}
.h11{height:54.781200px;}
.hd{height:62.370000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x9{left:67.869300px;}
.x4{left:72.283500px;}
.xd{left:76.373850px;}
.x2{left:78.865050px;}
.x1{left:81.023250px;}
.x5{left:93.824100px;}
.xb{left:98.456250px;}
.x3{left:102.603450px;}
.x17{left:106.584900px;}
.x18{left:114.115950px;}
.x15{left:198.798000px;}
.x16{left:207.105300px;}
.x7{left:311.424000px;}
.x8{left:315.936750px;}
.x1c{left:364.306050px;}
.x1b{left:377.017800px;}
.x11{left:436.495650px;}
.x12{left:444.724050px;}
.x19{left:477.780900px;}
.x1a{left:485.013000px;}
.xf{left:525.297000px;}
.x10{left:532.130100px;}
.x13{left:539.572200px;}
.x14{left:547.913700px;}
.x6{left:604.438650px;}
.xc{left:608.475300px;}
.xa{left:611.580450px;}
.xe{left:623.091450px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.852800pt;}
.v1{vertical-align:17.778133pt;}
.ls47{letter-spacing:-3.546667pt;}
.ls2d{letter-spacing:-3.496000pt;}
.ls46{letter-spacing:-3.445333pt;}
.ls2e{letter-spacing:-3.141333pt;}
.ls45{letter-spacing:-0.746667pt;}
.ls3d{letter-spacing:-0.693333pt;}
.ls40{letter-spacing:-0.597333pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls49{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.435307pt;}
.ls24{letter-spacing:-0.426667pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls4a{letter-spacing:-0.342027pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.310933pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.253333pt;}
.ls1b{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.202667pt;}
.ls4b{letter-spacing:-0.186560pt;}
.lsa{letter-spacing:-0.170667pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.155467pt;}
.ls34{letter-spacing:-0.152000pt;}
.ls6{letter-spacing:-0.136000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.124373pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:-0.093280pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls32{letter-spacing:-0.085333pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls2b{letter-spacing:-0.050667pt;}
.ls19{letter-spacing:-0.042667pt;}
.ls3e{letter-spacing:-0.031093pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000053pt;}
.ls48{letter-spacing:0.003733pt;}
.ls3{letter-spacing:0.042667pt;}
.ls2c{letter-spacing:0.050667pt;}
.lse{letter-spacing:0.053333pt;}
.ls4c{letter-spacing:0.062187pt;}
.ls30{letter-spacing:0.076000pt;}
.ls37{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.085333pt;}
.ls27{letter-spacing:0.101333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls2f{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.136000pt;}
.ls15{letter-spacing:0.149333pt;}
.ls43{letter-spacing:0.155467pt;}
.ls44{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.170667pt;}
.ls42{letter-spacing:0.186560pt;}
.ls28{letter-spacing:0.202667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls38{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.238279pt;}
.ls41{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls3c{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.400000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.597333pt;}
.ls3a{letter-spacing:0.618667pt;}
.ls35{letter-spacing:0.640000pt;}
.ls39{letter-spacing:0.693333pt;}
.ls36{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.200000pt;}
.ws9c{word-spacing:-13.552000pt;}
.ws4f{word-spacing:-12.336000pt;}
.wsd7{word-spacing:-12.096000pt;}
.wsbb{word-spacing:-11.616000pt;}
.wsad{word-spacing:-11.520000pt;}
.ws0{word-spacing:-11.376000pt;}
.ws3{word-spacing:-11.200000pt;}
.ws2c{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.088000pt;}
.wsd4{word-spacing:-10.986667pt;}
.ws50{word-spacing:-10.933333pt;}
.ws9e{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.520000pt;}
.ws2b{word-spacing:-9.514667pt;}
.wsd8{word-spacing:-9.293333pt;}
.ws53{word-spacing:-9.088000pt;}
.ws83{word-spacing:-8.960000pt;}
.ws9f{word-spacing:-8.362667pt;}
.wsbc{word-spacing:-7.194667pt;}
.ws52{word-spacing:-7.144000pt;}
.wsbd{word-spacing:-7.093333pt;}
.wsae{word-spacing:-6.685067pt;}
.ws4{word-spacing:-6.529600pt;}
.ws9d{word-spacing:-6.498507pt;}
.ws67{word-spacing:-6.436320pt;}
.ws51{word-spacing:-6.374133pt;}
.wsc6{word-spacing:-6.187573pt;}
.ws39{word-spacing:-2.453333pt;}
.ws7f{word-spacing:-2.400000pt;}
.ws7e{word-spacing:-2.346667pt;}
.ws20{word-spacing:-2.293333pt;}
.ws1d{word-spacing:-2.240000pt;}
.ws54{word-spacing:-2.186667pt;}
.ws33{word-spacing:-2.133333pt;}
.wsb7{word-spacing:-2.080000pt;}
.ws6c{word-spacing:-2.026667pt;}
.ws62{word-spacing:-1.976000pt;}
.wsb8{word-spacing:-1.973333pt;}
.ws9{word-spacing:-1.949333pt;}
.ws5b{word-spacing:-1.920000pt;}
.wsb{word-spacing:-1.904000pt;}
.ws94{word-spacing:-1.866667pt;}
.ws14{word-spacing:-1.834667pt;}
.ws68{word-spacing:-1.813333pt;}
.ws17{word-spacing:-1.792000pt;}
.wse{word-spacing:-1.768000pt;}
.wsc8{word-spacing:-1.760000pt;}
.ws7a{word-spacing:-1.722667pt;}
.ws8c{word-spacing:-1.706667pt;}
.ws10{word-spacing:-1.653333pt;}
.ws3c{word-spacing:-1.621333pt;}
.ws6b{word-spacing:-1.600000pt;}
.ws8d{word-spacing:-1.578667pt;}
.wsa1{word-spacing:-1.546667pt;}
.wsc4{word-spacing:-1.536000pt;}
.wsb9{word-spacing:-1.493333pt;}
.wsb1{word-spacing:-1.440000pt;}
.ws26{word-spacing:-1.386667pt;}
.wsc3{word-spacing:-1.365333pt;}
.wsc0{word-spacing:-1.317333pt;}
.ws5e{word-spacing:-1.280000pt;}
.ws4a{word-spacing:-1.226667pt;}
.ws1a{word-spacing:-1.200000pt;}
.wsd9{word-spacing:-1.173333pt;}
.wsbf{word-spacing:-1.165333pt;}
.ws5a{word-spacing:-1.120000pt;}
.ws76{word-spacing:-1.114667pt;}
.ws11{word-spacing:-1.066667pt;}
.ws8b{word-spacing:-1.013333pt;}
.ws70{word-spacing:-0.981333pt;}
.ws96{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.912000pt;}
.ws8e{word-spacing:-0.896000pt;}
.wsa{word-spacing:-0.861333pt;}
.ws18{word-spacing:-0.853333pt;}
.ws81{word-spacing:-0.800000pt;}
.ws24{word-spacing:-0.746667pt;}
.wsb4{word-spacing:-0.725333pt;}
.ws80{word-spacing:-0.693333pt;}
.wsc1{word-spacing:-0.658667pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws42{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.533333pt;}
.ws90{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.480000pt;}
.wsdb{word-spacing:-0.453333pt;}
.ws29{word-spacing:-0.426667pt;}
.ws1e{word-spacing:-0.373333pt;}
.ws95{word-spacing:-0.320000pt;}
.wsaa{word-spacing:-0.298667pt;}
.ws6e{word-spacing:-0.266667pt;}
.ws3b{word-spacing:-0.256000pt;}
.ws32{word-spacing:-0.213333pt;}
.wsaf{word-spacing:-0.186560pt;}
.ws99{word-spacing:-0.170667pt;}
.ws84{word-spacing:-0.160000pt;}
.wsb2{word-spacing:-0.155467pt;}
.wsbe{word-spacing:-0.106667pt;}
.ws65{word-spacing:-0.085333pt;}
.wsd1{word-spacing:-0.062187pt;}
.ws6a{word-spacing:-0.053333pt;}
.ws72{word-spacing:-0.050667pt;}
.ws5{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.042667pt;}
.wsf{word-spacing:0.045333pt;}
.ws55{word-spacing:0.053333pt;}
.ws98{word-spacing:0.085333pt;}
.wsd6{word-spacing:0.093280pt;}
.ws89{word-spacing:0.106667pt;}
.wsd5{word-spacing:0.124373pt;}
.wsc{word-spacing:0.136000pt;}
.wsb0{word-spacing:0.155467pt;}
.ws85{word-spacing:0.160000pt;}
.wsc9{word-spacing:0.186560pt;}
.ws4c{word-spacing:0.213333pt;}
.ws3f{word-spacing:0.266667pt;}
.wsc2{word-spacing:0.298667pt;}
.ws63{word-spacing:0.304000pt;}
.wsda{word-spacing:0.310933pt;}
.ws6f{word-spacing:0.320000pt;}
.ws38{word-spacing:0.373333pt;}
.ws16{word-spacing:0.384000pt;}
.ws3a{word-spacing:0.426667pt;}
.wsa4{word-spacing:0.435307pt;}
.ws78{word-spacing:0.456000pt;}
.ws93{word-spacing:0.533333pt;}
.wsb5{word-spacing:0.554667pt;}
.ws2f{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.wsa6{word-spacing:0.693333pt;}
.ws71{word-spacing:0.725333pt;}
.ws46{word-spacing:0.746667pt;}
.ws97{word-spacing:0.800000pt;}
.ws28{word-spacing:0.853333pt;}
.ws8{word-spacing:0.861333pt;}
.wsa9{word-spacing:0.896000pt;}
.ws8a{word-spacing:0.906667pt;}
.ws37{word-spacing:0.960000pt;}
.ws13{word-spacing:0.981333pt;}
.ws1f{word-spacing:1.013333pt;}
.ws40{word-spacing:1.066667pt;}
.ws4e{word-spacing:1.120000pt;}
.ws4b{word-spacing:1.173333pt;}
.ws44{word-spacing:1.226667pt;}
.ws3d{word-spacing:1.280000pt;}
.ws8f{word-spacing:1.322667pt;}
.ws86{word-spacing:1.333333pt;}
.ws74{word-spacing:1.368000pt;}
.ws47{word-spacing:1.386667pt;}
.ws9a{word-spacing:1.408000pt;}
.ws77{word-spacing:1.418667pt;}
.ws35{word-spacing:1.440000pt;}
.wsa3{word-spacing:1.493333pt;}
.wsd0{word-spacing:1.546667pt;}
.ws79{word-spacing:1.621333pt;}
.ws91{word-spacing:1.664000pt;}
.ws7b{word-spacing:1.706667pt;}
.ws49{word-spacing:1.760000pt;}
.ws21{word-spacing:1.813333pt;}
.ws2d{word-spacing:1.866667pt;}
.ws2a{word-spacing:1.962667pt;}
.ws69{word-spacing:1.973333pt;}
.ws59{word-spacing:2.026667pt;}
.ws15{word-spacing:2.048000pt;}
.ws7d{word-spacing:2.080000pt;}
.ws58{word-spacing:2.133333pt;}
.ws43{word-spacing:2.186667pt;}
.wsba{word-spacing:2.218667pt;}
.ws57{word-spacing:2.240000pt;}
.ws88{word-spacing:2.293333pt;}
.wsa5{word-spacing:2.346667pt;}
.ws2e{word-spacing:2.400000pt;}
.wsac{word-spacing:2.474667pt;}
.wsa2{word-spacing:2.506667pt;}
.wsc7{word-spacing:2.613333pt;}
.ws22{word-spacing:2.666667pt;}
.wsab{word-spacing:2.688000pt;}
.ws7{word-spacing:2.720000pt;}
.wsa8{word-spacing:2.730667pt;}
.ws56{word-spacing:2.773333pt;}
.wsa0{word-spacing:2.826667pt;}
.ws75{word-spacing:2.837333pt;}
.ws27{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.901333pt;}
.ws30{word-spacing:2.933333pt;}
.ws12{word-spacing:2.944000pt;}
.ws87{word-spacing:2.986667pt;}
.ws36{word-spacing:3.040000pt;}
.wscf{word-spacing:3.093333pt;}
.ws6{word-spacing:3.128000pt;}
.ws41{word-spacing:3.146667pt;}
.ws5f{word-spacing:3.192000pt;}
.ws61{word-spacing:3.242667pt;}
.ws5d{word-spacing:3.253333pt;}
.ws60{word-spacing:3.293333pt;}
.ws4d{word-spacing:3.306667pt;}
.ws1c{word-spacing:3.360000pt;}
.ws92{word-spacing:3.413333pt;}
.ws34{word-spacing:3.466667pt;}
.ws6d{word-spacing:3.520000pt;}
.wsca{word-spacing:3.573333pt;}
.ws48{word-spacing:3.626667pt;}
.ws1b{word-spacing:3.680000pt;}
.ws25{word-spacing:3.733333pt;}
.ws45{word-spacing:3.893333pt;}
.ws7c{word-spacing:4.053333pt;}
.ws64{word-spacing:5.928000pt;}
.wsd2{word-spacing:22.613333pt;}
.wscb{word-spacing:23.040000pt;}
.wscd{word-spacing:27.008000pt;}
.wsce{word-spacing:28.586667pt;}
.wscc{word-spacing:32.512000pt;}
.ws19{word-spacing:1064.309333pt;}
.ws3e{word-spacing:1064.501333pt;}
.wsd3{word-spacing:1066.469333pt;}
.ws66{word-spacing:1076.261333pt;}
.ws9b{word-spacing:1078.805333pt;}
.wsb6{word-spacing:1079.861333pt;}
.wsc5{word-spacing:1080.053333pt;}
.ws82{word-spacing:1082.261333pt;}
._12{margin-left:-1936.080000pt;}
._f{margin-left:-1934.960000pt;}
._1a{margin-left:-15.247467pt;}
._1e{margin-left:-13.888000pt;}
._d{margin-left:-12.685867pt;}
._b{margin-left:-10.481067pt;}
._10{margin-left:-8.862933pt;}
._3{margin-left:-7.680000pt;}
._7{margin-left:-6.613333pt;}
._6{margin-left:-5.224533pt;}
._4{margin-left:-4.324800pt;}
._1{margin-left:-2.986667pt;}
._0{margin-left:-1.715200pt;}
._2{width:1.280000pt;}
._8{width:2.481600pt;}
._5{width:3.508800pt;}
._a{width:4.499200pt;}
._e{width:13.433600pt;}
._19{width:16.213333pt;}
._1c{width:17.856000pt;}
._1d{width:22.144000pt;}
._1b{width:23.424000pt;}
._20{width:24.362667pt;}
._13{width:25.386667pt;}
._21{width:26.624000pt;}
._1f{width:27.648000pt;}
._17{width:28.970667pt;}
._16{width:30.933333pt;}
._15{width:31.829333pt;}
._18{width:32.768000pt;}
._14{width:37.077333pt;}
._11{width:42.880000pt;}
._c{width:45.610667pt;}
._9{width:46.848000pt;}
.fs9{font-size:29.538667pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:52.913467pt;}
.ybf{bottom:52.913600pt;}
.ycd{bottom:52.913733pt;}
.y6d{bottom:52.913867pt;}
.yfb{bottom:52.914400pt;}
.y21{bottom:66.246800pt;}
.ybe{bottom:66.246933pt;}
.ycc{bottom:66.247067pt;}
.y6c{bottom:66.247200pt;}
.yfa{bottom:66.247733pt;}
.y20{bottom:79.580133pt;}
.y90{bottom:79.580267pt;}
.yc4{bottom:79.580400pt;}
.y6b{bottom:79.580533pt;}
.yf9{bottom:79.581067pt;}
.y1f{bottom:92.913467pt;}
.y8f{bottom:92.913600pt;}
.ybd{bottom:92.913733pt;}
.y6a{bottom:92.913867pt;}
.yf8{bottom:92.914400pt;}
.y7c{bottom:103.516800pt;}
.ya7{bottom:103.521200pt;}
.y1e{bottom:106.246800pt;}
.ydf{bottom:106.246933pt;}
.y8e{bottom:106.247067pt;}
.y69{bottom:106.247200pt;}
.yf7{bottom:106.247733pt;}
.y1d{bottom:119.580133pt;}
.yde{bottom:119.580267pt;}
.y4d{bottom:119.580400pt;}
.y68{bottom:119.580533pt;}
.yf6{bottom:119.581067pt;}
.ya6{bottom:120.165600pt;}
.y7b{bottom:120.170133pt;}
.y1c{bottom:132.913467pt;}
.y4c{bottom:132.913733pt;}
.y67{bottom:132.913867pt;}
.yfd{bottom:132.914000pt;}
.yf5{bottom:132.914400pt;}
.yff{bottom:136.814400pt;}
.y7a{bottom:136.818933pt;}
.y11e{bottom:138.788000pt;}
.y110{bottom:138.799333pt;}
.y1b{bottom:146.246933pt;}
.y4b{bottom:146.247067pt;}
.y66{bottom:146.247200pt;}
.yf4{bottom:146.247733pt;}
.y79{bottom:153.454133pt;}
.y8d{bottom:153.467733pt;}
.y11d{bottom:154.122000pt;}
.y10f{bottom:154.133333pt;}
.y1a{bottom:159.580267pt;}
.y4a{bottom:159.580400pt;}
.y65{bottom:159.580533pt;}
.yf3{bottom:159.581067pt;}
.y11c{bottom:169.456000pt;}
.y10e{bottom:169.467333pt;}
.y78{bottom:170.107467pt;}
.ya5{bottom:170.116533pt;}
.y8c{bottom:170.121333pt;}
.y19{bottom:172.913600pt;}
.y49{bottom:172.913733pt;}
.y64{bottom:172.913867pt;}
.y11b{bottom:184.790000pt;}
.y10d{bottom:184.801333pt;}
.y48{bottom:186.247067pt;}
.y63{bottom:186.247200pt;}
.ycb{bottom:186.738267pt;}
.y77{bottom:186.760800pt;}
.y8b{bottom:186.765333pt;}
.y47{bottom:199.580400pt;}
.y9a{bottom:199.580533pt;}
.yd4{bottom:199.580667pt;}
.y11a{bottom:200.124000pt;}
.y10c{bottom:200.135333pt;}
.yca{bottom:203.391600pt;}
.yf2{bottom:203.400533pt;}
.y18{bottom:203.409600pt;}
.y76{bottom:203.414133pt;}
.yeb{bottom:212.913733pt;}
.y119{bottom:215.458000pt;}
.y10b{bottom:215.469333pt;}
.ydd{bottom:220.040400pt;}
.yc9{bottom:220.044933pt;}
.yf1{bottom:220.053867pt;}
.y17{bottom:220.062933pt;}
.yea{bottom:226.247067pt;}
.y118{bottom:230.792000pt;}
.y10a{bottom:230.803333pt;}
.ydc{bottom:236.693733pt;}
.yc8{bottom:236.698267pt;}
.y46{bottom:236.702800pt;}
.ya4{bottom:236.707200pt;}
.y62{bottom:236.711733pt;}
.ye9{bottom:239.580400pt;}
.y117{bottom:246.126000pt;}
.y109{bottom:246.137333pt;}
.ye8{bottom:252.913733pt;}
.ydb{bottom:253.347067pt;}
.ybc{bottom:253.351600pt;}
.y45{bottom:253.356133pt;}
.y61{bottom:253.360533pt;}
.y116{bottom:261.460000pt;}
.y108{bottom:261.471333pt;}
.ye7{bottom:266.247067pt;}
.y75{bottom:269.995867pt;}
.yda{bottom:270.000400pt;}
.ybb{bottom:270.004933pt;}
.y44{bottom:270.009467pt;}
.y115{bottom:276.794000pt;}
.y107{bottom:276.805333pt;}
.ye6{bottom:279.580400pt;}
.y16{bottom:285.669733pt;}
.ya3{bottom:286.644667pt;}
.y74{bottom:286.649200pt;}
.yba{bottom:286.653733pt;}
.y43{bottom:286.658267pt;}
.y114{bottom:292.128000pt;}
.y106{bottom:292.139333pt;}
.y15{bottom:301.003067pt;}
.y60{bottom:303.275467pt;}
.y99{bottom:303.298000pt;}
.y73{bottom:303.302533pt;}
.y42{bottom:303.307067pt;}
.y113{bottom:307.462000pt;}
.y105{bottom:307.473333pt;}
.y5f{bottom:319.928800pt;}
.y98{bottom:319.951333pt;}
.y41{bottom:319.955867pt;}
.y112{bottom:322.796000pt;}
.y104{bottom:322.807333pt;}
.y14{bottom:332.335067pt;}
.y5e{bottom:336.582133pt;}
.y40{bottom:336.604667pt;}
.y111{bottom:338.130000pt;}
.y103{bottom:338.141333pt;}
.y13{bottom:347.669067pt;}
.y5d{bottom:353.235467pt;}
.y72{bottom:353.249067pt;}
.y3f{bottom:353.253600pt;}
.y12{bottom:363.003067pt;}
.y102{bottom:368.592800pt;}
.yb9{bottom:369.870800pt;}
.yc3{bottom:369.875200pt;}
.y8a{bottom:369.884267pt;}
.y5c{bottom:369.888800pt;}
.y3e{bottom:369.897867pt;}
.y71{bottom:369.902400pt;}
.y11{bottom:378.336400pt;}
.yb8{bottom:386.524133pt;}
.yc2{bottom:386.528533pt;}
.y89{bottom:386.537600pt;}
.y5b{bottom:386.542133pt;}
.y3d{bottom:386.551200pt;}
.yb7{bottom:403.177467pt;}
.yc1{bottom:403.181867pt;}
.yf0{bottom:403.186400pt;}
.y88{bottom:403.190933pt;}
.y5a{bottom:403.195467pt;}
.y3c{bottom:403.200000pt;}
.yd3{bottom:407.640000pt;}
.y10{bottom:409.669067pt;}
.yb6{bottom:419.830800pt;}
.y97{bottom:419.835200pt;}
.yef{bottom:419.839733pt;}
.y70{bottom:419.844267pt;}
.y3b{bottom:419.848800pt;}
.yf{bottom:425.003067pt;}
.yb5{bottom:436.484133pt;}
.y96{bottom:436.488533pt;}
.y87{bottom:436.493067pt;}
.y3a{bottom:436.497600pt;}
.ye{bottom:440.336400pt;}
.y39{bottom:453.132933pt;}
.yb4{bottom:453.137467pt;}
.y95{bottom:453.141867pt;}
.y59{bottom:453.146400pt;}
.yd{bottom:455.669733pt;}
.y38{bottom:469.786267pt;}
.yb3{bottom:469.790800pt;}
.y58{bottom:469.795200pt;}
.yc{bottom:471.003067pt;}
.yb{bottom:486.336400pt;}
.y86{bottom:486.430533pt;}
.yc0{bottom:486.435067pt;}
.y37{bottom:486.439600pt;}
.y57{bottom:486.444133pt;}
.ye5{bottom:486.453733pt;}
.ya{bottom:501.669067pt;}
.y85{bottom:503.083867pt;}
.y6f{bottom:503.088400pt;}
.y36{bottom:503.092933pt;}
.ye4{bottom:503.097733pt;}
.y9{bottom:517.003067pt;}
.yb2{bottom:519.719067pt;}
.y56{bottom:519.723600pt;}
.y84{bottom:519.737200pt;}
.y35{bottom:519.741733pt;}
.yd2{bottom:524.181733pt;}
.y8{bottom:532.336400pt;}
.yd1{bottom:536.368000pt;}
.yb1{bottom:536.372400pt;}
.y55{bottom:536.376933pt;}
.yc7{bottom:536.386000pt;}
.y34{bottom:536.390533pt;}
.yd9{bottom:540.830533pt;}
.y7{bottom:547.669733pt;}
.yd0{bottom:553.021333pt;}
.yb0{bottom:553.025733pt;}
.y54{bottom:553.030267pt;}
.y101{bottom:553.034800pt;}
.y33{bottom:553.039333pt;}
.ya2{bottom:553.044133pt;}
.yfe{bottom:557.479333pt;}
.y6{bottom:563.009867pt;}
.yd8{bottom:569.665600pt;}
.ycf{bottom:569.674667pt;}
.yaf{bottom:569.679067pt;}
.y53{bottom:569.683600pt;}
.y94{bottom:569.688000pt;}
.y32{bottom:569.688133pt;}
.yd7{bottom:586.318933pt;}
.ye3{bottom:586.323467pt;}
.yce{bottom:586.328000pt;}
.yae{bottom:586.332400pt;}
.y31{bottom:586.336933pt;}
.yd6{bottom:602.972267pt;}
.ye2{bottom:602.976800pt;}
.y93{bottom:602.981333pt;}
.y30{bottom:602.985733pt;}
.ya1{bottom:603.014800pt;}
.y83{bottom:619.603067pt;}
.yd5{bottom:619.625600pt;}
.y52{bottom:619.630133pt;}
.y2f{bottom:619.634667pt;}
.ya0{bottom:619.658800pt;}
.y82{bottom:636.256400pt;}
.yee{bottom:636.269867pt;}
.yc6{bottom:636.278933pt;}
.y2e{bottom:636.283467pt;}
.y9f{bottom:636.302800pt;}
.y81{bottom:652.909733pt;}
.yed{bottom:652.923200pt;}
.y92{bottom:652.927733pt;}
.y2d{bottom:652.932267pt;}
.y9e{bottom:652.946800pt;}
.y80{bottom:669.563067pt;}
.yec{bottom:669.576533pt;}
.y2c{bottom:669.581067pt;}
.y9d{bottom:669.590800pt;}
.y5{bottom:684.833867pt;}
.yad{bottom:686.202800pt;}
.y7f{bottom:686.216400pt;}
.yc5{bottom:686.220800pt;}
.y2b{bottom:686.225467pt;}
.y50{bottom:686.229867pt;}
.y9c{bottom:686.234800pt;}
.y51{bottom:690.669867pt;}
.y4{bottom:700.829867pt;}
.yac{bottom:702.856133pt;}
.y7e{bottom:702.869733pt;}
.y2a{bottom:702.874133pt;}
.y4f{bottom:702.878800pt;}
.yfc{bottom:707.318800pt;}
.yab{bottom:719.509467pt;}
.ye1{bottom:719.518533pt;}
.y7d{bottom:719.523067pt;}
.y29{bottom:719.527467pt;}
.y3{bottom:731.947867pt;}
.yaa{bottom:736.162800pt;}
.ye0{bottom:736.171867pt;}
.y28{bottom:736.176400pt;}
.y9b{bottom:736.181200pt;}
.ya9{bottom:752.816133pt;}
.y6e{bottom:752.820667pt;}
.y27{bottom:752.825200pt;}
.y100{bottom:757.265200pt;}
.ya8{bottom:769.469467pt;}
.y26{bottom:769.474000pt;}
.y91{bottom:769.478800pt;}
.y2{bottom:774.415333pt;}
.y4e{bottom:786.118267pt;}
.y25{bottom:786.122800pt;}
.y1{bottom:799.738000pt;}
.y24{bottom:802.771600pt;}
.y23{bottom:848.592800pt;}
.hc{height:28.357120pt;}
.ha{height:38.912000pt;}
.h7{height:41.344000pt;}
.h6{height:41.842667pt;}
.h4{height:45.216000pt;}
.h5{height:45.360000pt;}
.hf{height:45.498667pt;}
.h10{height:46.208000pt;}
.h8{height:48.640000pt;}
.he{height:48.657600pt;}
.h9{height:48.658133pt;}
.hb{height:48.658667pt;}
.h12{height:48.676267pt;}
.h11{height:48.694400pt;}
.hd{height:55.440000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x9{left:60.328267pt;}
.x4{left:64.252000pt;}
.xd{left:67.887867pt;}
.x2{left:70.102267pt;}
.x1{left:72.020667pt;}
.x5{left:83.399200pt;}
.xb{left:87.516667pt;}
.x3{left:91.203067pt;}
.x17{left:94.742133pt;}
.x18{left:101.436400pt;}
.x15{left:176.709333pt;}
.x16{left:184.093600pt;}
.x7{left:276.821333pt;}
.x8{left:280.832667pt;}
.x1c{left:323.827600pt;}
.x1b{left:335.126933pt;}
.x11{left:387.996133pt;}
.x12{left:395.310267pt;}
.x19{left:424.694133pt;}
.x1a{left:431.122667pt;}
.xf{left:466.930667pt;}
.x10{left:473.004533pt;}
.x13{left:479.619733pt;}
.x14{left:487.034400pt;}
.x6{left:537.278800pt;}
.xc{left:540.866933pt;}
.xa{left:543.627067pt;}
.xe{left:553.859067pt;}
}




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