
    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_b530714166c4fad5286f76d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.807000;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_7ed4b2aa913ed17c127228fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_f1d92943d9160d85df1ea37f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095000;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_f2b875b5bd9790e015e385b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949000;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_22088f3fe12116fd96c34c6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.069824;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_0c7398c937be25d0fa42c329.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.826000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_78ed5b775463bb38c6c174e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7d4baf31ca7d47c84cb93567.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_88827e35367f68d54ab3de27.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aa4b1368b096a8f6ecdf866c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e35857c47ab4d2336be16947.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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;}
.m9e{transform:matrix(0.243090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243090,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.245013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245013,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.245141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245141,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.245197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245197,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.245303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245303,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.245357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245357,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245363,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.245385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245385,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.245415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245415,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.245493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245493,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.246147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246147,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.246248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246248,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.246363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246363,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246638,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246713,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.247072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247072,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.247138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247138,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.247163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247163,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247207,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247482,0.000000,0.000000,0.250000,0,0);}
.m9f{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);}
.m19{transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);}
.me0{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);}
.m141{transform:matrix(0.247587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247587,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);}
.mcf{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);}
.mdd{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.248116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248116,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.248194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248194,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m100{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);}
.md8{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.mf3{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);}
.m13f{transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.248772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248772,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);}
.mc3{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);}
.m5f{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m72{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,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);}
.m21{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);}
.m32{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m76{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m3f{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.ma0{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);}
.m96{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.mb8{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);}
.m90{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);}
.m7c{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m109{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.mf8{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.252156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252156,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);}
.mae{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);}
.mbd{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.252867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252867,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252957,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.253113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253113,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253157,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.253348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253348,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.253442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253442,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.254047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254047,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254182,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.254502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254502,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254977,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.973580px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.973580px;}
.ls1a{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.120000px;}
.ls20{letter-spacing:-0.096000px;}
.lse{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.048000px;}
.ls4{letter-spacing:-0.000060px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000525px;}
.ls1c{letter-spacing:0.048000px;}
.ls12{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.660000px;}
.ls16{letter-spacing:0.780000px;}
.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;}
}
.ws1{word-spacing:-60.000000px;}
.ws2{word-spacing:-14.982000px;}
.ws4f{word-spacing:-14.124000px;}
.ws51{word-spacing:-12.258000px;}
.ws22{word-spacing:-11.772000px;}
.ws52{word-spacing:-11.556000px;}
.ws0{word-spacing:-7.940460px;}
.ws2d{word-spacing:-0.756000px;}
.ws2c{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.486000px;}
.ws28{word-spacing:-0.330000px;}
.ws5{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.240000px;}
.ws59{word-spacing:-0.192000px;}
.ws30{word-spacing:-0.180000px;}
.ws55{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws6b{word-spacing:0.048000px;}
.ws16{word-spacing:0.060000px;}
.ws37{word-spacing:0.120000px;}
.ws66{word-spacing:0.144000px;}
.ws21{word-spacing:0.180000px;}
.ws3a{word-spacing:0.240000px;}
.ws5c{word-spacing:0.336000px;}
.ws9{word-spacing:0.360000px;}
.ws71{word-spacing:0.384000px;}
.ws4b{word-spacing:0.420000px;}
.ws56{word-spacing:0.432000px;}
.ws12{word-spacing:0.480000px;}
.ws6c{word-spacing:0.528000px;}
.wsd{word-spacing:0.660000px;}
.ws4e{word-spacing:0.720000px;}
.wsc{word-spacing:0.780000px;}
.ws47{word-spacing:0.840000px;}
.ws1a{word-spacing:0.900000px;}
.ws69{word-spacing:0.912000px;}
.ws15{word-spacing:0.960000px;}
.ws11{word-spacing:1.020000px;}
.ws65{word-spacing:1.056000px;}
.ws1d{word-spacing:1.080000px;}
.ws3d{word-spacing:1.140000px;}
.ws1e{word-spacing:1.200000px;}
.ws68{word-spacing:1.248000px;}
.ws3c{word-spacing:1.260000px;}
.ws6a{word-spacing:1.296000px;}
.wsf{word-spacing:1.320000px;}
.ws63{word-spacing:1.344000px;}
.ws6{word-spacing:1.380000px;}
.ws73{word-spacing:1.488000px;}
.ws3e{word-spacing:1.500000px;}
.ws2e{word-spacing:1.566000px;}
.ws57{word-spacing:1.584000px;}
.ws64{word-spacing:1.632000px;}
.ws24{word-spacing:1.680000px;}
.ws27{word-spacing:1.740000px;}
.ws5d{word-spacing:1.776000px;}
.ws2b{word-spacing:1.782000px;}
.ws40{word-spacing:1.800000px;}
.ws61{word-spacing:1.824000px;}
.ws29{word-spacing:1.860000px;}
.ws25{word-spacing:1.920000px;}
.ws70{word-spacing:1.968000px;}
.ws45{word-spacing:2.040000px;}
.ws4a{word-spacing:2.100000px;}
.ws4c{word-spacing:2.220000px;}
.ws54{word-spacing:2.280000px;}
.ws6e{word-spacing:2.304000px;}
.ws35{word-spacing:2.340000px;}
.ws6d{word-spacing:2.352000px;}
.ws20{word-spacing:2.400000px;}
.ws33{word-spacing:2.460000px;}
.ws5e{word-spacing:2.496000px;}
.ws1c{word-spacing:2.520000px;}
.ws5b{word-spacing:2.544000px;}
.ws62{word-spacing:2.592000px;}
.ws18{word-spacing:2.640000px;}
.ws58{word-spacing:2.688000px;}
.ws10{word-spacing:2.700000px;}
.ws5a{word-spacing:2.736000px;}
.ws1f{word-spacing:2.760000px;}
.ws72{word-spacing:2.784000px;}
.ws26{word-spacing:2.820000px;}
.ws19{word-spacing:2.880000px;}
.ws14{word-spacing:2.940000px;}
.ws67{word-spacing:2.976000px;}
.ws53{word-spacing:3.000000px;}
.ws2f{word-spacing:3.132000px;}
.ws13{word-spacing:3.180000px;}
.ws4d{word-spacing:3.240000px;}
.wsa{word-spacing:3.300000px;}
.ws7{word-spacing:3.360000px;}
.ws5f{word-spacing:3.408000px;}
.ws4{word-spacing:3.420000px;}
.ws6f{word-spacing:3.456000px;}
.ws17{word-spacing:3.480000px;}
.ws3b{word-spacing:3.600000px;}
.ws3f{word-spacing:3.660000px;}
.ws42{word-spacing:3.840000px;}
.ws34{word-spacing:3.900000px;}
.ws39{word-spacing:4.140000px;}
.ws8{word-spacing:4.560000px;}
.wse{word-spacing:4.620000px;}
.ws23{word-spacing:4.860000px;}
.ws1b{word-spacing:4.980000px;}
.ws32{word-spacing:5.040000px;}
.ws36{word-spacing:5.100000px;}
.ws44{word-spacing:5.160000px;}
.ws48{word-spacing:5.640000px;}
.ws31{word-spacing:5.700000px;}
.ws38{word-spacing:6.420000px;}
.ws41{word-spacing:7.020000px;}
.ws60{word-spacing:7.152000px;}
.ws43{word-spacing:7.500000px;}
.ws46{word-spacing:7.860000px;}
.ws49{word-spacing:9.480000px;}
.ws50{word-spacing:355.703400px;}
._e{margin-left:-12.258000px;}
._a{margin-left:-7.620000px;}
._9{margin-left:-6.468000px;}
._3{margin-left:-5.193480px;}
._6{margin-left:-3.788400px;}
._1{margin-left:-2.785200px;}
._0{margin-left:-1.085400px;}
._2{width:1.800000px;}
._7{width:3.011400px;}
._8{width:4.114800px;}
._5{width:6.078960px;}
._4{width:7.173480px;}
._b{width:54.203400px;}
._d{width:241.604400px;}
._f{width:247.444200px;}
._c{width:283.834800px;}
._10{width:317.260800px;}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs3{font-size:34.980000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.972500px;}
.yb7{bottom:76.535400px;}
.yc4{bottom:77.011650px;}
.y98{bottom:77.127300px;}
.y183{bottom:82.608450px;}
.y32{bottom:83.199000px;}
.y10f{bottom:87.987900px;}
.y2a{bottom:88.102500px;}
.y140{bottom:88.261650px;}
.yb6{bottom:92.735400px;}
.y66{bottom:93.327450px;}
.yec{bottom:94.711650px;}
.yc3{bottom:95.761650px;}
.y97{bottom:96.201300px;}
.y182{bottom:97.008300px;}
.y31{bottom:101.949000px;}
.y13f{bottom:102.661650px;}
.y10e{bottom:104.187900px;}
.y29{bottom:106.852500px;}
.yb5{bottom:108.935400px;}
.y181{bottom:111.408300px;}
.y65{bottom:112.077450px;}
.yeb{bottom:113.461650px;}
.yc2{bottom:114.511650px;}
.y96{bottom:115.275300px;}
.y13e{bottom:117.061650px;}
.y10d{bottom:120.387900px;}
.y30{bottom:120.699000px;}
.yb4{bottom:125.135400px;}
.y28{bottom:125.602500px;}
.y180{bottom:125.808450px;}
.y64{bottom:130.827450px;}
.y13d{bottom:131.461650px;}
.yea{bottom:132.211650px;}
.yc1{bottom:133.261650px;}
.y95{bottom:134.349300px;}
.y10c{bottom:136.587900px;}
.y2f{bottom:139.449000px;}
.y17f{bottom:140.208300px;}
.yb3{bottom:141.335400px;}
.y27{bottom:144.352500px;}
.y13c{bottom:145.861650px;}
.y63{bottom:149.577450px;}
.ye9{bottom:150.961650px;}
.yc0{bottom:152.011650px;}
.y94{bottom:153.423300px;}
.y17e{bottom:154.608300px;}
.yb2{bottom:157.535400px;}
.y2e{bottom:158.199000px;}
.y13b{bottom:160.261650px;}
.y10b{bottom:161.373900px;}
.y26{bottom:163.102500px;}
.y62{bottom:168.327450px;}
.y17d{bottom:169.008300px;}
.ye8{bottom:169.711650px;}
.ybf{bottom:170.761650px;}
.y93{bottom:172.497300px;}
.yb1{bottom:173.735400px;}
.y13a{bottom:174.661650px;}
.y2d{bottom:176.949000px;}
.y10a{bottom:177.573900px;}
.y25{bottom:181.852500px;}
.y17c{bottom:183.408300px;}
.yc5{bottom:183.517500px;}
.y61{bottom:187.077450px;}
.ye7{bottom:188.461650px;}
.y139{bottom:189.061650px;}
.ybe{bottom:189.511650px;}
.yb0{bottom:189.935400px;}
.y92{bottom:191.571300px;}
.y109{bottom:193.773900px;}
.y2c{bottom:195.699000px;}
.y17b{bottom:197.808450px;}
.y138{bottom:203.461650px;}
.y60{bottom:205.827450px;}
.ye6{bottom:207.211650px;}
.ybd{bottom:208.261650px;}
.y108{bottom:209.973900px;}
.y91{bottom:210.639300px;}
.y17a{bottom:212.208450px;}
.y24{bottom:213.358500px;}
.y2b{bottom:214.449000px;}
.y137{bottom:217.861650px;}
.y5f{bottom:224.577450px;}
.ye5{bottom:225.961650px;}
.y107{bottom:226.173900px;}
.y179{bottom:226.608450px;}
.ybc{bottom:227.011650px;}
.y90{bottom:229.719300px;}
.y136{bottom:232.261650px;}
.y178{bottom:241.008300px;}
.y106{bottom:242.373900px;}
.y5e{bottom:243.327450px;}
.ye4{bottom:244.711650px;}
.ybb{bottom:245.761650px;}
.y135{bottom:246.661650px;}
.y8f{bottom:248.793300px;}
.y177{bottom:255.408300px;}
.y105{bottom:258.573900px;}
.y134{bottom:261.061650px;}
.y5d{bottom:262.077450px;}
.ye3{bottom:263.461650px;}
.yba{bottom:264.511650px;}
.y8e{bottom:267.867300px;}
.y176{bottom:269.808450px;}
.y104{bottom:274.773900px;}
.y133{bottom:275.461650px;}
.y5c{bottom:280.827450px;}
.ye2{bottom:282.211650px;}
.yb9{bottom:283.261650px;}
.y175{bottom:284.208300px;}
.y8d{bottom:286.941300px;}
.y132{bottom:289.861650px;}
.y22{bottom:295.110000px;}
.y174{bottom:298.608300px;}
.y103{bottom:299.559900px;}
.y5b{bottom:299.577450px;}
.ye1{bottom:300.961650px;}
.y131{bottom:304.261650px;}
.y8c{bottom:306.003300px;}
.y173{bottom:313.008300px;}
.yb8{bottom:314.767500px;}
.y102{bottom:315.759900px;}
.y21{bottom:317.614500px;}
.y5a{bottom:318.327450px;}
.y130{bottom:318.661650px;}
.ye0{bottom:319.711650px;}
.y8b{bottom:325.083300px;}
.y172{bottom:327.408300px;}
.y101{bottom:331.959900px;}
.y20{bottom:332.613000px;}
.y12f{bottom:333.061650px;}
.y59{bottom:337.077450px;}
.ydf{bottom:338.461650px;}
.y171{bottom:341.808450px;}
.y8a{bottom:344.163300px;}
.y12e{bottom:347.461650px;}
.y1f{bottom:347.611500px;}
.y100{bottom:348.159900px;}
.y58{bottom:355.827450px;}
.y170{bottom:356.208300px;}
.yde{bottom:357.211650px;}
.y12d{bottom:361.861650px;}
.y1e{bottom:362.610000px;}
.y89{bottom:363.237300px;}
.yff{bottom:364.359900px;}
.y16f{bottom:370.608300px;}
.y57{bottom:374.577450px;}
.ydd{bottom:375.961650px;}
.y12c{bottom:376.261650px;}
.y1d{bottom:377.608500px;}
.yfe{bottom:380.559900px;}
.y88{bottom:382.311300px;}
.y16e{bottom:385.008300px;}
.y12b{bottom:390.661650px;}
.y1c{bottom:392.607000px;}
.y56{bottom:393.327450px;}
.ydc{bottom:394.711650px;}
.yfd{bottom:396.759900px;}
.y16d{bottom:399.408300px;}
.y87{bottom:401.385300px;}
.y12a{bottom:405.061650px;}
.y1b{bottom:407.605500px;}
.y55{bottom:412.077450px;}
.yfc{bottom:412.959900px;}
.ydb{bottom:413.461650px;}
.y16c{bottom:413.808450px;}
.y129{bottom:419.461650px;}
.y86{bottom:420.459300px;}
.y1a{bottom:422.604000px;}
.y16b{bottom:428.208300px;}
.y54{bottom:430.827450px;}
.yda{bottom:432.211650px;}
.y128{bottom:433.861650px;}
.y19{bottom:437.602500px;}
.y85{bottom:439.533300px;}
.yfb{bottom:441.998400px;}
.y16a{bottom:442.608300px;}
.y127{bottom:448.261650px;}
.y53{bottom:449.577450px;}
.yd9{bottom:450.961650px;}
.y18{bottom:452.601000px;}
.y169{bottom:457.008300px;}
.y84{bottom:458.607300px;}
.y126{bottom:462.661650px;}
.y17{bottom:467.599500px;}
.y52{bottom:468.327450px;}
.yd8{bottom:469.711650px;}
.y168{bottom:471.408300px;}
.yfa{bottom:472.780200px;}
.y125{bottom:477.061650px;}
.y83{bottom:477.681300px;}
.y16{bottom:482.598000px;}
.y167{bottom:485.808300px;}
.y51{bottom:487.077450px;}
.yd7{bottom:488.461650px;}
.y124{bottom:491.461650px;}
.y82{bottom:496.755300px;}
.y15{bottom:497.596500px;}
.y166{bottom:500.208300px;}
.y50{bottom:505.827450px;}
.y123{bottom:505.861650px;}
.yd6{bottom:507.211650px;}
.y14{bottom:512.595000px;}
.y165{bottom:514.608300px;}
.y81{bottom:515.829300px;}
.y122{bottom:520.261650px;}
.y4f{bottom:524.577450px;}
.yd5{bottom:525.961650px;}
.yf9{bottom:527.011650px;}
.y13{bottom:527.593500px;}
.y164{bottom:529.008300px;}
.y121{bottom:534.661650px;}
.y80{bottom:534.903300px;}
.y12{bottom:542.592000px;}
.y4e{bottom:543.327450px;}
.y163{bottom:543.408300px;}
.yd4{bottom:544.711650px;}
.yf8{bottom:545.761650px;}
.y120{bottom:549.061650px;}
.y7f{bottom:553.977300px;}
.y11{bottom:557.590500px;}
.y162{bottom:557.808450px;}
.y4d{bottom:562.077450px;}
.yd3{bottom:563.461650px;}
.yf7{bottom:564.511650px;}
.y161{bottom:572.208300px;}
.y10{bottom:572.589000px;}
.y7e{bottom:573.051300px;}
.y11f{bottom:577.861650px;}
.y4c{bottom:580.827450px;}
.yd2{bottom:582.211650px;}
.yf6{bottom:583.261650px;}
.y160{bottom:586.608300px;}
.yf{bottom:587.587500px;}
.y7d{bottom:592.125300px;}
.y11e{bottom:592.261650px;}
.y4b{bottom:599.577450px;}
.yd1{bottom:600.961650px;}
.y15f{bottom:601.008300px;}
.yf5{bottom:602.011650px;}
.yaf{bottom:603.430950px;}
.y11d{bottom:606.661650px;}
.y7c{bottom:611.199300px;}
.y15e{bottom:615.408300px;}
.y4a{bottom:618.327450px;}
.yd0{bottom:619.711650px;}
.yf4{bottom:620.761650px;}
.y11c{bottom:621.061650px;}
.yae{bottom:622.180950px;}
.y15d{bottom:629.808450px;}
.y7b{bottom:630.273300px;}
.y11b{bottom:635.461650px;}
.y49{bottom:637.077450px;}
.ycf{bottom:638.461650px;}
.yf3{bottom:639.511650px;}
.yad{bottom:640.930950px;}
.y15c{bottom:644.208300px;}
.y23{bottom:647.245500px;}
.y7a{bottom:649.347300px;}
.y11a{bottom:649.861650px;}
.y48{bottom:655.827450px;}
.yce{bottom:657.211650px;}
.yf2{bottom:658.261650px;}
.y15b{bottom:658.608300px;}
.yac{bottom:659.681100px;}
.y119{bottom:664.261650px;}
.y79{bottom:668.421300px;}
.y15a{bottom:673.008300px;}
.y47{bottom:674.577450px;}
.ycd{bottom:675.961650px;}
.yb{bottom:676.524000px;}
.yf1{bottom:677.011650px;}
.yab{bottom:678.431100px;}
.y118{bottom:678.661650px;}
.y159{bottom:687.408300px;}
.y78{bottom:687.495300px;}
.y117{bottom:693.061650px;}
.y46{bottom:693.327450px;}
.ycc{bottom:694.711650px;}
.yf0{bottom:695.761650px;}
.yaa{bottom:697.181100px;}
.ya{bottom:699.517395px;}
.y158{bottom:701.808450px;}
.y77{bottom:706.569300px;}
.y116{bottom:707.461650px;}
.y45{bottom:712.077450px;}
.ycb{bottom:713.461650px;}
.yef{bottom:714.511650px;}
.ya9{bottom:715.931100px;}
.y157{bottom:716.208300px;}
.y9{bottom:717.517395px;}
.y115{bottom:721.861650px;}
.y76{bottom:725.643300px;}
.y8{bottom:730.524000px;}
.y156{bottom:730.608300px;}
.y44{bottom:730.827450px;}
.yca{bottom:732.211650px;}
.yee{bottom:733.261650px;}
.ya8{bottom:734.681100px;}
.y114{bottom:736.261650px;}
.y75{bottom:744.717300px;}
.y155{bottom:745.008300px;}
.y43{bottom:749.577450px;}
.y113{bottom:750.661650px;}
.yc9{bottom:750.961650px;}
.ya7{bottom:753.431100px;}
.y7{bottom:753.517395px;}
.y154{bottom:759.408300px;}
.y188{bottom:759.408450px;}
.y74{bottom:763.791300px;}
.yed{bottom:764.767500px;}
.y112{bottom:765.061650px;}
.y42{bottom:768.327450px;}
.yc8{bottom:769.711650px;}
.y6{bottom:771.517395px;}
.ya6{bottom:772.181100px;}
.y153{bottom:773.808450px;}
.y111{bottom:779.461650px;}
.y73{bottom:782.865300px;}
.y41{bottom:787.077450px;}
.y152{bottom:788.208300px;}
.ya5{bottom:790.931100px;}
.y110{bottom:793.861650px;}
.yc7{bottom:801.217500px;}
.y72{bottom:801.939300px;}
.y5{bottom:802.524000px;}
.y151{bottom:802.608300px;}
.y187{bottom:802.608450px;}
.y40{bottom:805.827450px;}
.ya4{bottom:809.681100px;}
.y150{bottom:817.008300px;}
.y71{bottom:821.007300px;}
.yc6{bottom:821.017500px;}
.y3f{bottom:824.577450px;}
.ya3{bottom:828.431100px;}
.y14f{bottom:831.408300px;}
.y18b{bottom:831.408450px;}
.y70{bottom:840.087300px;}
.y3e{bottom:843.327450px;}
.y186{bottom:845.808300px;}
.y14e{bottom:845.808450px;}
.ya2{bottom:847.181100px;}
.y4{bottom:850.287000px;}
.y6f{bottom:859.161300px;}
.y14d{bottom:860.208300px;}
.y3d{bottom:862.077450px;}
.ya1{bottom:865.931100px;}
.y18a{bottom:874.608300px;}
.y14c{bottom:874.608450px;}
.y6e{bottom:878.235300px;}
.y3c{bottom:880.827450px;}
.ya0{bottom:884.681100px;}
.y3{bottom:886.287000px;}
.y14b{bottom:889.008300px;}
.y6d{bottom:897.309300px;}
.y3b{bottom:899.577450px;}
.y14a{bottom:903.408300px;}
.y9f{bottom:903.431100px;}
.y6c{bottom:916.383300px;}
.y149{bottom:917.808300px;}
.y185{bottom:917.808450px;}
.y3a{bottom:918.327450px;}
.y9e{bottom:922.181100px;}
.y2{bottom:922.287000px;}
.y148{bottom:932.208300px;}
.y6b{bottom:935.457300px;}
.y39{bottom:937.077450px;}
.y9d{bottom:940.931100px;}
.y147{bottom:946.608450px;}
.y6a{bottom:954.531300px;}
.y38{bottom:955.827450px;}
.y9c{bottom:959.681100px;}
.y146{bottom:961.008300px;}
.yd{bottom:972.840000px;}
.y69{bottom:973.605450px;}
.y37{bottom:974.577450px;}
.y145{bottom:975.408300px;}
.y9b{bottom:978.431100px;}
.y189{bottom:989.808300px;}
.y144{bottom:989.808450px;}
.y68{bottom:992.679450px;}
.y36{bottom:993.327450px;}
.y143{bottom:1004.208300px;}
.y9a{bottom:1009.936950px;}
.y67{bottom:1011.753450px;}
.y35{bottom:1012.077450px;}
.y142{bottom:1018.608450px;}
.y99{bottom:1029.736950px;}
.y34{bottom:1030.827450px;}
.y184{bottom:1033.008300px;}
.y141{bottom:1033.009650px;}
.yc{bottom:1077.859500px;}
.ye{bottom:1081.506000px;}
.y33{bottom:1089.584700px;}
.h5{height:24.555960px;}
.h2{height:38.340000px;}
.hd{height:40.128000px;}
.h9{height:42.000000px;}
.h6{height:42.120000px;}
.hc{height:42.900000px;}
.ha{height:45.144000px;}
.hb{height:46.398000px;}
.h4{height:50.160000px;}
.h8{height:51.120000px;}
.h7{height:59.586914px;}
.h3{height:84.000000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:76.536000px;}
.xf{left:81.637800px;}
.xe{left:83.385750px;}
.x7{left:106.299000px;}
.x4{left:130.419000px;}
.x3{left:131.457000px;}
.x2{left:132.510000px;}
.x9{left:149.715150px;}
.x10{left:221.835300px;}
.x11{left:350.908800px;}
.x12{left:358.779300px;}
.xd{left:426.186900px;}
.x8{left:454.960500px;}
.xa{left:461.338650px;}
.xb{left:491.102400px;}
.x13{left:535.602300px;}
.x14{left:543.472800px;}
.x1{left:630.310500px;}
.x6{left:670.881000px;}
.x15{left:702.084300px;}
.xc{left:810.992700px;}
@media print{
.v2{vertical-align:-17.754293pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.754293pt;}
.ls1a{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls20{letter-spacing:-0.085333pt;}
.lse{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:-0.000053pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000466pt;}
.ls1c{letter-spacing:0.042667pt;}
.ls12{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.693333pt;}
.ws1{word-spacing:-53.333333pt;}
.ws2{word-spacing:-13.317333pt;}
.ws4f{word-spacing:-12.554667pt;}
.ws51{word-spacing:-10.896000pt;}
.ws22{word-spacing:-10.464000pt;}
.ws52{word-spacing:-10.272000pt;}
.ws0{word-spacing:-7.058187pt;}
.ws2d{word-spacing:-0.672000pt;}
.ws2c{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.432000pt;}
.ws28{word-spacing:-0.293333pt;}
.ws5{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.213333pt;}
.ws59{word-spacing:-0.170667pt;}
.ws30{word-spacing:-0.160000pt;}
.ws55{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.042667pt;}
.ws16{word-spacing:0.053333pt;}
.ws37{word-spacing:0.106667pt;}
.ws66{word-spacing:0.128000pt;}
.ws21{word-spacing:0.160000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws5c{word-spacing:0.298667pt;}
.ws9{word-spacing:0.320000pt;}
.ws71{word-spacing:0.341333pt;}
.ws4b{word-spacing:0.373333pt;}
.ws56{word-spacing:0.384000pt;}
.ws12{word-spacing:0.426667pt;}
.ws6c{word-spacing:0.469333pt;}
.wsd{word-spacing:0.586667pt;}
.ws4e{word-spacing:0.640000pt;}
.wsc{word-spacing:0.693333pt;}
.ws47{word-spacing:0.746667pt;}
.ws1a{word-spacing:0.800000pt;}
.ws69{word-spacing:0.810667pt;}
.ws15{word-spacing:0.853333pt;}
.ws11{word-spacing:0.906667pt;}
.ws65{word-spacing:0.938667pt;}
.ws1d{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.013333pt;}
.ws1e{word-spacing:1.066667pt;}
.ws68{word-spacing:1.109333pt;}
.ws3c{word-spacing:1.120000pt;}
.ws6a{word-spacing:1.152000pt;}
.wsf{word-spacing:1.173333pt;}
.ws63{word-spacing:1.194667pt;}
.ws6{word-spacing:1.226667pt;}
.ws73{word-spacing:1.322667pt;}
.ws3e{word-spacing:1.333333pt;}
.ws2e{word-spacing:1.392000pt;}
.ws57{word-spacing:1.408000pt;}
.ws64{word-spacing:1.450667pt;}
.ws24{word-spacing:1.493333pt;}
.ws27{word-spacing:1.546667pt;}
.ws5d{word-spacing:1.578667pt;}
.ws2b{word-spacing:1.584000pt;}
.ws40{word-spacing:1.600000pt;}
.ws61{word-spacing:1.621333pt;}
.ws29{word-spacing:1.653333pt;}
.ws25{word-spacing:1.706667pt;}
.ws70{word-spacing:1.749333pt;}
.ws45{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.866667pt;}
.ws4c{word-spacing:1.973333pt;}
.ws54{word-spacing:2.026667pt;}
.ws6e{word-spacing:2.048000pt;}
.ws35{word-spacing:2.080000pt;}
.ws6d{word-spacing:2.090667pt;}
.ws20{word-spacing:2.133333pt;}
.ws33{word-spacing:2.186667pt;}
.ws5e{word-spacing:2.218667pt;}
.ws1c{word-spacing:2.240000pt;}
.ws5b{word-spacing:2.261333pt;}
.ws62{word-spacing:2.304000pt;}
.ws18{word-spacing:2.346667pt;}
.ws58{word-spacing:2.389333pt;}
.ws10{word-spacing:2.400000pt;}
.ws5a{word-spacing:2.432000pt;}
.ws1f{word-spacing:2.453333pt;}
.ws72{word-spacing:2.474667pt;}
.ws26{word-spacing:2.506667pt;}
.ws19{word-spacing:2.560000pt;}
.ws14{word-spacing:2.613333pt;}
.ws67{word-spacing:2.645333pt;}
.ws53{word-spacing:2.666667pt;}
.ws2f{word-spacing:2.784000pt;}
.ws13{word-spacing:2.826667pt;}
.ws4d{word-spacing:2.880000pt;}
.wsa{word-spacing:2.933333pt;}
.ws7{word-spacing:2.986667pt;}
.ws5f{word-spacing:3.029333pt;}
.ws4{word-spacing:3.040000pt;}
.ws6f{word-spacing:3.072000pt;}
.ws17{word-spacing:3.093333pt;}
.ws3b{word-spacing:3.200000pt;}
.ws3f{word-spacing:3.253333pt;}
.ws42{word-spacing:3.413333pt;}
.ws34{word-spacing:3.466667pt;}
.ws39{word-spacing:3.680000pt;}
.ws8{word-spacing:4.053333pt;}
.wse{word-spacing:4.106667pt;}
.ws23{word-spacing:4.320000pt;}
.ws1b{word-spacing:4.426667pt;}
.ws32{word-spacing:4.480000pt;}
.ws36{word-spacing:4.533333pt;}
.ws44{word-spacing:4.586667pt;}
.ws48{word-spacing:5.013333pt;}
.ws31{word-spacing:5.066667pt;}
.ws38{word-spacing:5.706667pt;}
.ws41{word-spacing:6.240000pt;}
.ws60{word-spacing:6.357333pt;}
.ws43{word-spacing:6.666667pt;}
.ws46{word-spacing:6.986667pt;}
.ws49{word-spacing:8.426667pt;}
.ws50{word-spacing:316.180800pt;}
._e{margin-left:-10.896000pt;}
._a{margin-left:-6.773333pt;}
._9{margin-left:-5.749333pt;}
._3{margin-left:-4.616427pt;}
._6{margin-left:-3.367467pt;}
._1{margin-left:-2.475733pt;}
._0{margin-left:-0.964800pt;}
._2{width:1.600000pt;}
._7{width:2.676800pt;}
._8{width:3.657600pt;}
._5{width:5.403520pt;}
._4{width:6.376427pt;}
._b{width:48.180800pt;}
._d{width:214.759467pt;}
._f{width:219.950400pt;}
._c{width:252.297600pt;}
._10{width:282.009600pt;}
.fs3{font-size:31.093333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.086667pt;}
.yb7{bottom:68.031467pt;}
.yc4{bottom:68.454800pt;}
.y98{bottom:68.557600pt;}
.y183{bottom:73.429733pt;}
.y32{bottom:73.954667pt;}
.y10f{bottom:78.211467pt;}
.y2a{bottom:78.313333pt;}
.y140{bottom:78.454800pt;}
.yb6{bottom:82.431467pt;}
.y66{bottom:82.957733pt;}
.yec{bottom:84.188133pt;}
.yc3{bottom:85.121467pt;}
.y97{bottom:85.512267pt;}
.y182{bottom:86.229600pt;}
.y31{bottom:90.621333pt;}
.y13f{bottom:91.254800pt;}
.y10e{bottom:92.611467pt;}
.y29{bottom:94.980000pt;}
.yb5{bottom:96.831467pt;}
.y181{bottom:99.029600pt;}
.y65{bottom:99.624400pt;}
.yeb{bottom:100.854800pt;}
.yc2{bottom:101.788133pt;}
.y96{bottom:102.466933pt;}
.y13e{bottom:104.054800pt;}
.y10d{bottom:107.011467pt;}
.y30{bottom:107.288000pt;}
.yb4{bottom:111.231467pt;}
.y28{bottom:111.646667pt;}
.y180{bottom:111.829733pt;}
.y64{bottom:116.291067pt;}
.y13d{bottom:116.854800pt;}
.yea{bottom:117.521467pt;}
.yc1{bottom:118.454800pt;}
.y95{bottom:119.421600pt;}
.y10c{bottom:121.411467pt;}
.y2f{bottom:123.954667pt;}
.y17f{bottom:124.629600pt;}
.yb3{bottom:125.631467pt;}
.y27{bottom:128.313333pt;}
.y13c{bottom:129.654800pt;}
.y63{bottom:132.957733pt;}
.ye9{bottom:134.188133pt;}
.yc0{bottom:135.121467pt;}
.y94{bottom:136.376267pt;}
.y17e{bottom:137.429600pt;}
.yb2{bottom:140.031467pt;}
.y2e{bottom:140.621333pt;}
.y13b{bottom:142.454800pt;}
.y10b{bottom:143.443467pt;}
.y26{bottom:144.980000pt;}
.y62{bottom:149.624400pt;}
.y17d{bottom:150.229600pt;}
.ye8{bottom:150.854800pt;}
.ybf{bottom:151.788133pt;}
.y93{bottom:153.330933pt;}
.yb1{bottom:154.431467pt;}
.y13a{bottom:155.254800pt;}
.y2d{bottom:157.288000pt;}
.y10a{bottom:157.843467pt;}
.y25{bottom:161.646667pt;}
.y17c{bottom:163.029600pt;}
.yc5{bottom:163.126667pt;}
.y61{bottom:166.291067pt;}
.ye7{bottom:167.521467pt;}
.y139{bottom:168.054800pt;}
.ybe{bottom:168.454800pt;}
.yb0{bottom:168.831467pt;}
.y92{bottom:170.285600pt;}
.y109{bottom:172.243467pt;}
.y2c{bottom:173.954667pt;}
.y17b{bottom:175.829733pt;}
.y138{bottom:180.854800pt;}
.y60{bottom:182.957733pt;}
.ye6{bottom:184.188133pt;}
.ybd{bottom:185.121467pt;}
.y108{bottom:186.643467pt;}
.y91{bottom:187.234933pt;}
.y17a{bottom:188.629733pt;}
.y24{bottom:189.652000pt;}
.y2b{bottom:190.621333pt;}
.y137{bottom:193.654800pt;}
.y5f{bottom:199.624400pt;}
.ye5{bottom:200.854800pt;}
.y107{bottom:201.043467pt;}
.y179{bottom:201.429733pt;}
.ybc{bottom:201.788133pt;}
.y90{bottom:204.194933pt;}
.y136{bottom:206.454800pt;}
.y178{bottom:214.229600pt;}
.y106{bottom:215.443467pt;}
.y5e{bottom:216.291067pt;}
.ye4{bottom:217.521467pt;}
.ybb{bottom:218.454800pt;}
.y135{bottom:219.254800pt;}
.y8f{bottom:221.149600pt;}
.y177{bottom:227.029600pt;}
.y105{bottom:229.843467pt;}
.y134{bottom:232.054800pt;}
.y5d{bottom:232.957733pt;}
.ye3{bottom:234.188133pt;}
.yba{bottom:235.121467pt;}
.y8e{bottom:238.104267pt;}
.y176{bottom:239.829733pt;}
.y104{bottom:244.243467pt;}
.y133{bottom:244.854800pt;}
.y5c{bottom:249.624400pt;}
.ye2{bottom:250.854800pt;}
.yb9{bottom:251.788133pt;}
.y175{bottom:252.629600pt;}
.y8d{bottom:255.058933pt;}
.y132{bottom:257.654800pt;}
.y22{bottom:262.320000pt;}
.y174{bottom:265.429600pt;}
.y103{bottom:266.275467pt;}
.y5b{bottom:266.291067pt;}
.ye1{bottom:267.521467pt;}
.y131{bottom:270.454800pt;}
.y8c{bottom:272.002933pt;}
.y173{bottom:278.229600pt;}
.yb8{bottom:279.793333pt;}
.y102{bottom:280.675467pt;}
.y21{bottom:282.324000pt;}
.y5a{bottom:282.957733pt;}
.y130{bottom:283.254800pt;}
.ye0{bottom:284.188133pt;}
.y8b{bottom:288.962933pt;}
.y172{bottom:291.029600pt;}
.y101{bottom:295.075467pt;}
.y20{bottom:295.656000pt;}
.y12f{bottom:296.054800pt;}
.y59{bottom:299.624400pt;}
.ydf{bottom:300.854800pt;}
.y171{bottom:303.829733pt;}
.y8a{bottom:305.922933pt;}
.y12e{bottom:308.854800pt;}
.y1f{bottom:308.988000pt;}
.y100{bottom:309.475467pt;}
.y58{bottom:316.291067pt;}
.y170{bottom:316.629600pt;}
.yde{bottom:317.521467pt;}
.y12d{bottom:321.654800pt;}
.y1e{bottom:322.320000pt;}
.y89{bottom:322.877600pt;}
.yff{bottom:323.875467pt;}
.y16f{bottom:329.429600pt;}
.y57{bottom:332.957733pt;}
.ydd{bottom:334.188133pt;}
.y12c{bottom:334.454800pt;}
.y1d{bottom:335.652000pt;}
.yfe{bottom:338.275467pt;}
.y88{bottom:339.832267pt;}
.y16e{bottom:342.229600pt;}
.y12b{bottom:347.254800pt;}
.y1c{bottom:348.984000pt;}
.y56{bottom:349.624400pt;}
.ydc{bottom:350.854800pt;}
.yfd{bottom:352.675467pt;}
.y16d{bottom:355.029600pt;}
.y87{bottom:356.786933pt;}
.y12a{bottom:360.054800pt;}
.y1b{bottom:362.316000pt;}
.y55{bottom:366.291067pt;}
.yfc{bottom:367.075467pt;}
.ydb{bottom:367.521467pt;}
.y16c{bottom:367.829733pt;}
.y129{bottom:372.854800pt;}
.y86{bottom:373.741600pt;}
.y1a{bottom:375.648000pt;}
.y16b{bottom:380.629600pt;}
.y54{bottom:382.957733pt;}
.yda{bottom:384.188133pt;}
.y128{bottom:385.654800pt;}
.y19{bottom:388.980000pt;}
.y85{bottom:390.696267pt;}
.yfb{bottom:392.887467pt;}
.y16a{bottom:393.429600pt;}
.y127{bottom:398.454800pt;}
.y53{bottom:399.624400pt;}
.yd9{bottom:400.854800pt;}
.y18{bottom:402.312000pt;}
.y169{bottom:406.229600pt;}
.y84{bottom:407.650933pt;}
.y126{bottom:411.254800pt;}
.y17{bottom:415.644000pt;}
.y52{bottom:416.291067pt;}
.yd8{bottom:417.521467pt;}
.y168{bottom:419.029600pt;}
.yfa{bottom:420.249067pt;}
.y125{bottom:424.054800pt;}
.y83{bottom:424.605600pt;}
.y16{bottom:428.976000pt;}
.y167{bottom:431.829600pt;}
.y51{bottom:432.957733pt;}
.yd7{bottom:434.188133pt;}
.y124{bottom:436.854800pt;}
.y82{bottom:441.560267pt;}
.y15{bottom:442.308000pt;}
.y166{bottom:444.629600pt;}
.y50{bottom:449.624400pt;}
.y123{bottom:449.654800pt;}
.yd6{bottom:450.854800pt;}
.y14{bottom:455.640000pt;}
.y165{bottom:457.429600pt;}
.y81{bottom:458.514933pt;}
.y122{bottom:462.454800pt;}
.y4f{bottom:466.291067pt;}
.yd5{bottom:467.521467pt;}
.yf9{bottom:468.454800pt;}
.y13{bottom:468.972000pt;}
.y164{bottom:470.229600pt;}
.y121{bottom:475.254800pt;}
.y80{bottom:475.469600pt;}
.y12{bottom:482.304000pt;}
.y4e{bottom:482.957733pt;}
.y163{bottom:483.029600pt;}
.yd4{bottom:484.188133pt;}
.yf8{bottom:485.121467pt;}
.y120{bottom:488.054800pt;}
.y7f{bottom:492.424267pt;}
.y11{bottom:495.636000pt;}
.y162{bottom:495.829733pt;}
.y4d{bottom:499.624400pt;}
.yd3{bottom:500.854800pt;}
.yf7{bottom:501.788133pt;}
.y161{bottom:508.629600pt;}
.y10{bottom:508.968000pt;}
.y7e{bottom:509.378933pt;}
.y11f{bottom:513.654800pt;}
.y4c{bottom:516.291067pt;}
.yd2{bottom:517.521467pt;}
.yf6{bottom:518.454800pt;}
.y160{bottom:521.429600pt;}
.yf{bottom:522.300000pt;}
.y7d{bottom:526.333600pt;}
.y11e{bottom:526.454800pt;}
.y4b{bottom:532.957733pt;}
.yd1{bottom:534.188133pt;}
.y15f{bottom:534.229600pt;}
.yf5{bottom:535.121467pt;}
.yaf{bottom:536.383067pt;}
.y11d{bottom:539.254800pt;}
.y7c{bottom:543.288267pt;}
.y15e{bottom:547.029600pt;}
.y4a{bottom:549.624400pt;}
.yd0{bottom:550.854800pt;}
.yf4{bottom:551.788133pt;}
.y11c{bottom:552.054800pt;}
.yae{bottom:553.049733pt;}
.y15d{bottom:559.829733pt;}
.y7b{bottom:560.242933pt;}
.y11b{bottom:564.854800pt;}
.y49{bottom:566.291067pt;}
.ycf{bottom:567.521467pt;}
.yf3{bottom:568.454800pt;}
.yad{bottom:569.716400pt;}
.y15c{bottom:572.629600pt;}
.y23{bottom:575.329333pt;}
.y7a{bottom:577.197600pt;}
.y11a{bottom:577.654800pt;}
.y48{bottom:582.957733pt;}
.yce{bottom:584.188133pt;}
.yf2{bottom:585.121467pt;}
.y15b{bottom:585.429600pt;}
.yac{bottom:586.383200pt;}
.y119{bottom:590.454800pt;}
.y79{bottom:594.152267pt;}
.y15a{bottom:598.229600pt;}
.y47{bottom:599.624400pt;}
.ycd{bottom:600.854800pt;}
.yb{bottom:601.354667pt;}
.yf1{bottom:601.788133pt;}
.yab{bottom:603.049867pt;}
.y118{bottom:603.254800pt;}
.y159{bottom:611.029600pt;}
.y78{bottom:611.106933pt;}
.y117{bottom:616.054800pt;}
.y46{bottom:616.291067pt;}
.ycc{bottom:617.521467pt;}
.yf0{bottom:618.454800pt;}
.yaa{bottom:619.716533pt;}
.ya{bottom:621.793240pt;}
.y158{bottom:623.829733pt;}
.y77{bottom:628.061600pt;}
.y116{bottom:628.854800pt;}
.y45{bottom:632.957733pt;}
.ycb{bottom:634.188133pt;}
.yef{bottom:635.121467pt;}
.ya9{bottom:636.383200pt;}
.y157{bottom:636.629600pt;}
.y9{bottom:637.793240pt;}
.y115{bottom:641.654800pt;}
.y76{bottom:645.016267pt;}
.y8{bottom:649.354667pt;}
.y156{bottom:649.429600pt;}
.y44{bottom:649.624400pt;}
.yca{bottom:650.854800pt;}
.yee{bottom:651.788133pt;}
.ya8{bottom:653.049867pt;}
.y114{bottom:654.454800pt;}
.y75{bottom:661.970933pt;}
.y155{bottom:662.229600pt;}
.y43{bottom:666.291067pt;}
.y113{bottom:667.254800pt;}
.yc9{bottom:667.521467pt;}
.ya7{bottom:669.716533pt;}
.y7{bottom:669.793240pt;}
.y154{bottom:675.029600pt;}
.y188{bottom:675.029733pt;}
.y74{bottom:678.925600pt;}
.yed{bottom:679.793333pt;}
.y112{bottom:680.054800pt;}
.y42{bottom:682.957733pt;}
.yc8{bottom:684.188133pt;}
.y6{bottom:685.793240pt;}
.ya6{bottom:686.383200pt;}
.y153{bottom:687.829733pt;}
.y111{bottom:692.854800pt;}
.y73{bottom:695.880267pt;}
.y41{bottom:699.624400pt;}
.y152{bottom:700.629600pt;}
.ya5{bottom:703.049867pt;}
.y110{bottom:705.654800pt;}
.yc7{bottom:712.193333pt;}
.y72{bottom:712.834933pt;}
.y5{bottom:713.354667pt;}
.y151{bottom:713.429600pt;}
.y187{bottom:713.429733pt;}
.y40{bottom:716.291067pt;}
.ya4{bottom:719.716533pt;}
.y150{bottom:726.229600pt;}
.y71{bottom:729.784267pt;}
.yc6{bottom:729.793333pt;}
.y3f{bottom:732.957733pt;}
.ya3{bottom:736.383200pt;}
.y14f{bottom:739.029600pt;}
.y18b{bottom:739.029733pt;}
.y70{bottom:746.744267pt;}
.y3e{bottom:749.624400pt;}
.y186{bottom:751.829600pt;}
.y14e{bottom:751.829733pt;}
.ya2{bottom:753.049867pt;}
.y4{bottom:755.810667pt;}
.y6f{bottom:763.698933pt;}
.y14d{bottom:764.629600pt;}
.y3d{bottom:766.291067pt;}
.ya1{bottom:769.716533pt;}
.y18a{bottom:777.429600pt;}
.y14c{bottom:777.429733pt;}
.y6e{bottom:780.653600pt;}
.y3c{bottom:782.957733pt;}
.ya0{bottom:786.383200pt;}
.y3{bottom:787.810667pt;}
.y14b{bottom:790.229600pt;}
.y6d{bottom:797.608267pt;}
.y3b{bottom:799.624400pt;}
.y14a{bottom:803.029600pt;}
.y9f{bottom:803.049867pt;}
.y6c{bottom:814.562933pt;}
.y149{bottom:815.829600pt;}
.y185{bottom:815.829733pt;}
.y3a{bottom:816.291067pt;}
.y9e{bottom:819.716533pt;}
.y2{bottom:819.810667pt;}
.y148{bottom:828.629600pt;}
.y6b{bottom:831.517600pt;}
.y39{bottom:832.957733pt;}
.y9d{bottom:836.383200pt;}
.y147{bottom:841.429733pt;}
.y6a{bottom:848.472267pt;}
.y38{bottom:849.624400pt;}
.y9c{bottom:853.049867pt;}
.y146{bottom:854.229600pt;}
.yd{bottom:864.746667pt;}
.y69{bottom:865.427067pt;}
.y37{bottom:866.291067pt;}
.y145{bottom:867.029600pt;}
.y9b{bottom:869.716533pt;}
.y189{bottom:879.829600pt;}
.y144{bottom:879.829733pt;}
.y68{bottom:882.381733pt;}
.y36{bottom:882.957733pt;}
.y143{bottom:892.629600pt;}
.y9a{bottom:897.721733pt;}
.y67{bottom:899.336400pt;}
.y35{bottom:899.624400pt;}
.y142{bottom:905.429733pt;}
.y99{bottom:915.321733pt;}
.y34{bottom:916.291067pt;}
.y184{bottom:918.229600pt;}
.y141{bottom:918.230800pt;}
.yc{bottom:958.097333pt;}
.ye{bottom:961.338667pt;}
.y33{bottom:968.519733pt;}
.h5{height:21.827520pt;}
.h2{height:34.080000pt;}
.hd{height:35.669333pt;}
.h9{height:37.333333pt;}
.h6{height:37.440000pt;}
.hc{height:38.133333pt;}
.ha{height:40.128000pt;}
.hb{height:41.242667pt;}
.h4{height:44.586667pt;}
.h8{height:45.440000pt;}
.h7{height:52.966146pt;}
.h3{height:74.666667pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:68.032000pt;}
.xf{left:72.566933pt;}
.xe{left:74.120667pt;}
.x7{left:94.488000pt;}
.x4{left:115.928000pt;}
.x3{left:116.850667pt;}
.x2{left:117.786667pt;}
.x9{left:133.080133pt;}
.x10{left:197.186933pt;}
.x11{left:311.918933pt;}
.x12{left:318.914933pt;}
.xd{left:378.832800pt;}
.x8{left:404.409333pt;}
.xa{left:410.078800pt;}
.xb{left:436.535467pt;}
.x13{left:476.090933pt;}
.x14{left:483.086933pt;}
.x1{left:560.276000pt;}
.x6{left:596.338667pt;}
.x15{left:624.074933pt;}
.xc{left:720.882400pt;}
}




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