
    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_4bbb2be531ec94a3cd4665da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_eef09c1ba91d81b5ad6e9bf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132812;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_a67283f3e823fdabaa3ba3d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136719;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_93ec7708a81159b976346142.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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_c3e01bed1b7e38317022a1ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969881;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_cbe552e38aa165be6acbba38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_b9401f2624f885e9e2c21a37.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026367;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_10044136d8de58248483437c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977051;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_a2f8f9890e82c8e6d54cda6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ce963f270f09b5571ebe35d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.857000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4f7e0848e1651f8ba34b7dc5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ce963f270f09b5571ebe35d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.857000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4f7e0848e1651f8ba34b7dc5.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ad2baf82d344bac8e5e083af.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.990723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fa8b152503301819fdede63c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mcb{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.243958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243958,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.mb0{transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.245142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245142,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.245229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245229,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245271,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.245302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245302,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.245408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245408,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.245433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245433,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.245571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245571,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245869,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246021,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246317,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.246388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246388,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246473,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.246496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246496,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.246519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246519,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.246687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246687,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246794,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246883,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.246954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246954,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247029,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.247046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247046,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.247296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247296,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.ma0{transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247719,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.247746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247746,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247854,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247887,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.248104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248104,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);}
.m147{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);}
.m9a{transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248446,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);}
.m7d{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);}
.me7{transform:matrix(0.248548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248548,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.248554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248554,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248804,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.m145{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);}
.m140{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249746,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,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);}
.m50{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);}
.m7b{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m115{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);}
.m27{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m59{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);}
.m76{transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m152{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.mf3{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);}
.m173{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250769,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m103{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);}
.m16{transform:matrix(0.250846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250846,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251127,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.251446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251446,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.251696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251696,0.000000,0.000000,0.250000,0,0);}
.m15e{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);}
.m19{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);}
.m131{transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.251996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251996,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.252412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252412,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.252583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252583,0.000000,0.000000,0.250000,0,0);}
.ma9{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);}
.mc7{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.252646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252646,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252723,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252756,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.252758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252758,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252767,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.252804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252804,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.252883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252883,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252896,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.253056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253056,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253104,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.mda{transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.253452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253452,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253517,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.254058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254058,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.254131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254131,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.254183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254183,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254229,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254658,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.254958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254958,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:31.968000px;}
.v3{vertical-align:48.011400px;}
.ls38{letter-spacing:-1.944000px;}
.ls36{letter-spacing:-1.872000px;}
.ls35{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.728000px;}
.ls2f{letter-spacing:-1.584000px;}
.ls31{letter-spacing:-1.440000px;}
.ls30{letter-spacing:-1.368000px;}
.ls25{letter-spacing:-1.224000px;}
.ls37{letter-spacing:-1.080000px;}
.ls2e{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.960000px;}
.ls29{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.792000px;}
.ls26{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.028018px;}
.ls4{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.189888px;}
.ls1a{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.456000px;}
.ls8{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.504000px;}
.ls2d{letter-spacing:0.576000px;}
.ls24{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls34{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.890000px;}
.lse{letter-spacing:2.520000px;}
.ls5{letter-spacing:2.706000px;}
.ls11{letter-spacing:2.940000px;}
.ls3{letter-spacing:3.360000px;}
.ls2{letter-spacing:3.780000px;}
.ls1{letter-spacing:4.200000px;}
.ls32{letter-spacing:6.120000px;}
.ls18{letter-spacing:37.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-105.840000px;}
.ws34{word-spacing:-37.500000px;}
.ws3{word-spacing:-30.672000px;}
.ws42{word-spacing:-24.437537px;}
.ws33{word-spacing:-24.341246px;}
.ws2a{word-spacing:-23.856000px;}
.ws1f{word-spacing:-20.376000px;}
.ws2b{word-spacing:-18.792000px;}
.ws72{word-spacing:-18.144000px;}
.ws71{word-spacing:-18.072000px;}
.ws70{word-spacing:-18.000000px;}
.ws6f{word-spacing:-17.928000px;}
.ws6c{word-spacing:-17.856000px;}
.ws73{word-spacing:-17.784000px;}
.ws6d{word-spacing:-17.712000px;}
.ws52{word-spacing:-17.640000px;}
.ws64{word-spacing:-17.568000px;}
.ws58{word-spacing:-17.496000px;}
.ws63{word-spacing:-17.352000px;}
.ws6b{word-spacing:-17.280000px;}
.ws65{word-spacing:-17.064000px;}
.ws6a{word-spacing:-16.992000px;}
.ws4e{word-spacing:-16.920000px;}
.ws77{word-spacing:-16.848000px;}
.ws28{word-spacing:-16.344000px;}
.ws74{word-spacing:-15.984000px;}
.ws5a{word-spacing:-14.940000px;}
.ws5b{word-spacing:-14.880000px;}
.ws4{word-spacing:-14.700000px;}
.ws25{word-spacing:-14.328000px;}
.ws7{word-spacing:-12.432000px;}
.ws9{word-spacing:-11.952000px;}
.ws8{word-spacing:-11.712000px;}
.ws22{word-spacing:-11.520000px;}
.ws59{word-spacing:-10.410048px;}
.ws24{word-spacing:-10.230000px;}
.ws21{word-spacing:-7.632000px;}
.ws27{word-spacing:-5.544000px;}
.ws26{word-spacing:-5.412000px;}
.ws23{word-spacing:-4.290000px;}
.wsc{word-spacing:-4.092000px;}
.ws29{word-spacing:-3.096000px;}
.wsf{word-spacing:-2.904000px;}
.ws20{word-spacing:-2.520000px;}
.ws1{word-spacing:-2.040000px;}
.ws54{word-spacing:-2.016000px;}
.ws3d{word-spacing:-1.944000px;}
.ws5f{word-spacing:-1.872000px;}
.ws2{word-spacing:-1.836000px;}
.ws2c{word-spacing:-1.800000px;}
.ws45{word-spacing:-1.728000px;}
.ws38{word-spacing:-1.656000px;}
.ws5{word-spacing:-1.632000px;}
.wsd{word-spacing:-1.584000px;}
.ws57{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.428000px;}
.ws68{word-spacing:-1.368000px;}
.ws12{word-spacing:-1.296000px;}
.wsa{word-spacing:-1.254000px;}
.ws3b{word-spacing:-1.224000px;}
.ws78{word-spacing:-1.140000px;}
.ws48{word-spacing:-1.080000px;}
.ws6e{word-spacing:-1.008000px;}
.ws50{word-spacing:-0.936000px;}
.ws10{word-spacing:-0.918000px;}
.ws14{word-spacing:-0.912000px;}
.ws31{word-spacing:-0.864000px;}
.ws5c{word-spacing:-0.792000px;}
.ws49{word-spacing:-0.720000px;}
.ws3e{word-spacing:-0.648000px;}
.ws60{word-spacing:-0.576000px;}
.ws3a{word-spacing:-0.504000px;}
.ws19{word-spacing:-0.480000px;}
.ws53{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.360000px;}
.ws46{word-spacing:-0.288000px;}
.ws39{word-spacing:-0.216000px;}
.wse{word-spacing:-0.198000px;}
.ws4a{word-spacing:-0.144000px;}
.ws41{word-spacing:-0.115271px;}
.ws32{word-spacing:-0.114817px;}
.ws36{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws47{word-spacing:0.072000px;}
.ws1c{word-spacing:0.096000px;}
.ws11{word-spacing:0.144000px;}
.ws4c{word-spacing:0.216000px;}
.ws15{word-spacing:0.240000px;}
.ws4b{word-spacing:0.288000px;}
.ws3f{word-spacing:0.360000px;}
.ws43{word-spacing:0.432000px;}
.ws1d{word-spacing:0.480000px;}
.ws44{word-spacing:0.504000px;}
.ws5e{word-spacing:0.576000px;}
.ws66{word-spacing:0.648000px;}
.ws1b{word-spacing:0.720000px;}
.ws76{word-spacing:0.792000px;}
.ws51{word-spacing:0.864000px;}
.ws67{word-spacing:0.936000px;}
.ws13{word-spacing:0.960000px;}
.ws56{word-spacing:1.008000px;}
.ws3c{word-spacing:1.080000px;}
.ws4f{word-spacing:1.152000px;}
.ws37{word-spacing:1.224000px;}
.ws2d{word-spacing:1.368000px;}
.ws6{word-spacing:1.440000px;}
.ws5d{word-spacing:1.500000px;}
.ws61{word-spacing:1.512000px;}
.ws55{word-spacing:1.584000px;}
.ws2f{word-spacing:1.728000px;}
.ws2e{word-spacing:1.800000px;}
.ws69{word-spacing:1.872000px;}
.ws75{word-spacing:1.944000px;}
.ws4d{word-spacing:2.016000px;}
.ws40{word-spacing:2.736000px;}
.ws16{word-spacing:3.120000px;}
.ws1a{word-spacing:3.456000px;}
.ws17{word-spacing:3.648000px;}
.ws18{word-spacing:4.080000px;}
.wsb{word-spacing:8.184000px;}
.ws62{word-spacing:155.189400px;}
._6{margin-left:-1298.076000px;}
._8{margin-left:-27.886909px;}
._13{margin-left:-20.916000px;}
._16{margin-left:-19.488878px;}
._11{margin-left:-18.244200px;}
._12{margin-left:-17.133581px;}
._b{margin-left:-15.892158px;}
._9{margin-left:-13.626600px;}
._5{margin-left:-11.148000px;}
._7{margin-left:-8.875200px;}
._15{margin-left:-7.824000px;}
._3{margin-left:-6.648000px;}
._4{margin-left:-5.016000px;}
._2{margin-left:-3.048000px;}
._1{margin-left:-1.188000px;}
._0{width:1.128000px;}
._10{width:2.232000px;}
._a{width:3.273600px;}
._e{width:5.359200px;}
._c{width:9.181800px;}
._d{width:10.452000px;}
._f{width:14.916000px;}
._14{width:77.249400px;}
.fc8{color:rgb(77,74,74);}
.fc5{color:rgb(237,28,36);}
.fc7{color:rgb(41,62,117);}
.fc3{color:rgb(44,85,174);}
.fc2{color:transparent;}
.fc1{color:rgb(26,53,107);}
.fc9{color:rgb(57,53,54);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:55.968000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs18{font-size:78.000000px;}
.fs10{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fsc{font-size:111.956400px;}
.fsd{font-size:111.957000px;}
.fs11{font-size:114.817200px;}
.fs15{font-size:115.271400px;}
.fs6{font-size:120.000000px;}
.fse{font-size:123.152400px;}
.fs13{font-size:138.000000px;}
.fs12{font-size:149.262600px;}
.fs16{font-size:149.853000px;}
.fs14{font-size:150.000000px;}
.fs5{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:14.666550px;}
.ybe{bottom:26.542350px;}
.y96{bottom:28.125000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y33{bottom:72.283650px;}
.y13d{bottom:85.039500px;}
.y188{bottom:87.903600px;}
.y32{bottom:90.283650px;}
.y1a2{bottom:94.405500px;}
.y4{bottom:97.125005px;}
.y126{bottom:97.429200px;}
.y15f{bottom:100.452750px;}
.y101{bottom:104.421300px;}
.y156{bottom:104.846400px;}
.y13c{bottom:107.291700px;}
.ye2{bottom:107.444850px;}
.y187{bottom:111.903600px;}
.y1a1{bottom:118.405500px;}
.y125{bottom:121.429200px;}
.y15e{bottom:124.452750px;}
.y100{bottom:128.421300px;}
.yba{bottom:129.194850px;}
.y13b{bottom:129.543750px;}
.y1ac{bottom:131.161350px;}
.ye1{bottom:131.444850px;}
.y155{bottom:135.103350px;}
.y22{bottom:139.264499px;}
.y1a0{bottom:142.405500px;}
.y124{bottom:145.429200px;}
.y13a{bottom:147.543750px;}
.y159{bottom:148.452750px;}
.y186{bottom:148.659450px;}
.yff{bottom:152.421300px;}
.y154{bottom:153.103350px;}
.yb9{bottom:153.194850px;}
.y1ab{bottom:155.161350px;}
.ye0{bottom:155.444850px;}
.y141{bottom:165.460650px;}
.y158{bottom:172.452750px;}
.y185{bottom:172.659450px;}
.yfe{bottom:176.421300px;}
.y153{bottom:177.109200px;}
.yb8{bottom:177.194850px;}
.y19f{bottom:179.161350px;}
.y105{bottom:179.444850px;}
.y150{bottom:180.112200px;}
.y123{bottom:186.436950px;}
.y140{bottom:189.460650px;}
.ydf{bottom:196.452750px;}
.y184{bottom:196.659450px;}
.y19{bottom:196.933500px;}
.yfd{bottom:200.421300px;}
.y152{bottom:201.115050px;}
.yb7{bottom:201.194850px;}
.y19e{bottom:203.161350px;}
.y104{bottom:203.444850px;}
.y1bf{bottom:205.901550px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y57{bottom:209.865150px;}
.y122{bottom:210.436950px;}
.y79{bottom:212.352750px;}
.y13f{bottom:213.460650px;}
.y1aa{bottom:215.917350px;}
.yde{bottom:220.452750px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yfc{bottom:224.421300px;}
.y151{bottom:225.121050px;}
.yb6{bottom:225.194850px;}
.y56{bottom:226.065150px;}
.y1b1{bottom:227.161350px;}
.y103{bottom:227.444850px;}
.y1be{bottom:229.901550px;}
.y78{bottom:230.352750px;}
.y183{bottom:233.415300px;}
.y121{bottom:234.436950px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y13e{bottom:237.460650px;}
.y19d{bottom:239.917350px;}
.ydd{bottom:244.452750px;}
.yfb{bottom:248.421300px;}
.y14f{bottom:249.126900px;}
.y1b0{bottom:251.161350px;}
.y102{bottom:251.444850px;}
.y1bd{bottom:253.901550px;}
.y182{bottom:257.415300px;}
.y120{bottom:258.436950px;}
.y1e8{bottom:259.600500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y14e{bottom:261.129900px;}
.y139{bottom:261.460650px;}
.y19c{bottom:263.917350px;}
.y77{bottom:265.360650px;}
.yb5{bottom:266.202750px;}
.ydc{bottom:268.452750px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1e7{bottom:277.600500px;}
.y181{bottom:281.415300px;}
.y11f{bottom:282.437100px;}
.y76{bottom:283.360650px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y138{bottom:285.460650px;}
.y1af{bottom:287.917350px;}
.yfa{bottom:289.429200px;}
.yb4{bottom:290.202750px;}
.y1bc{bottom:290.657550px;}
.ydb{bottom:292.452750px;}
.y1e6{bottom:295.600500px;}
.y14d{bottom:297.138750px;}
.y19b{bottom:300.673200px;}
.y75{bottom:301.360650px;}
.y180{bottom:305.415300px;}
.y55{bottom:306.044700px;}
.y11e{bottom:306.437100px;}
.y14c{bottom:309.141750px;}
.y137{bottom:309.460650px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1ae{bottom:311.917350px;}
.yf9{bottom:313.429200px;}
.y1e5{bottom:313.600500px;}
.yb3{bottom:314.202750px;}
.y1bb{bottom:314.657550px;}
.yda{bottom:316.452750px;}
.y74{bottom:319.360650px;}
.y54{bottom:322.244700px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y19a{bottom:324.673200px;}
.y16a{bottom:330.437100px;}
.y136{bottom:333.460650px;}
.yf8{bottom:337.429200px;}
.yb2{bottom:338.202750px;}
.y53{bottom:338.444700px;}
.y1ba{bottom:338.657550px;}
.yd9{bottom:340.452750px;}
.y17f{bottom:342.171300px;}
.y14b{bottom:345.150600px;}
.y11d{bottom:347.444850px;}
.y10{bottom:348.133500px;}
.y199{bottom:348.673200px;}
.y1e4{bottom:351.608250px;}
.y73{bottom:354.368550px;}
.y169{bottom:354.437100px;}
.y135{bottom:357.460650px;}
.yf7{bottom:361.429200px;}
.yb1{bottom:362.202750px;}
.yd8{bottom:364.452750px;}
.y17e{bottom:366.171300px;}
.y52{bottom:367.400550px;}
.y149{bottom:369.156450px;}
.y1e3{bottom:369.608250px;}
.y11c{bottom:371.444850px;}
.y1ad{bottom:372.673200px;}
.y1b9{bottom:375.413400px;}
.y168{bottom:378.437100px;}
.y12d{bottom:381.460650px;}
.y51{bottom:383.600550px;}
.yf6{bottom:385.429200px;}
.yb0{bottom:386.202750px;}
.yf{bottom:386.785499px;}
.yd7{bottom:388.452750px;}
.y72{bottom:389.376450px;}
.y14a{bottom:393.162300px;}
.y11b{bottom:395.444850px;}
.y1e2{bottom:396.112200px;}
.y1b8{bottom:399.413400px;}
.y167{bottom:402.437100px;}
.y17d{bottom:402.927150px;}
.y12c{bottom:405.460650px;}
.y71{bottom:407.376450px;}
.ye{bottom:408.044999px;}
.yf5{bottom:409.429200px;}
.yaf{bottom:410.202750px;}
.yd6{bottom:412.452750px;}
.y50{bottom:412.556550px;}
.y1e1{bottom:417.112200px;}
.y148{bottom:417.168300px;}
.y11a{bottom:419.444850px;}
.y1b7{bottom:423.413400px;}
.y166{bottom:426.437100px;}
.y17c{bottom:426.927150px;}
.y4f{bottom:428.756400px;}
.y12b{bottom:429.460650px;}
.yf4{bottom:433.429200px;}
.yae{bottom:434.202750px;}
.yd5{bottom:436.452750px;}
.y147{bottom:441.174150px;}
.y70{bottom:442.384350px;}
.y119{bottom:443.444850px;}
.y15d{bottom:446.468550px;}
.y1e0{bottom:446.616150px;}
.y165{bottom:450.437100px;}
.y17b{bottom:450.927150px;}
.y12a{bottom:453.460650px;}
.yf3{bottom:457.429200px;}
.y4e{bottom:457.712400px;}
.yad{bottom:458.202750px;}
.y1b6{bottom:460.169250px;}
.yd4{bottom:460.452750px;}
.y144{bottom:465.180150px;}
.y6f{bottom:465.288150px;}
.y118{bottom:467.444850px;}
.y1df{bottom:467.616150px;}
.y198{bottom:470.185050px;}
.y15c{bottom:470.468550px;}
.y4d{bottom:473.912400px;}
.y164{bottom:474.437100px;}
.y129{bottom:477.460650px;}
.yf2{bottom:481.429200px;}
.yac{bottom:482.202750px;}
.y1b5{bottom:484.169250px;}
.yd3{bottom:484.452750px;}
.y17a{bottom:487.683000px;}
.y146{bottom:489.186000px;}
.y117{bottom:491.444850px;}
.y197{bottom:494.185050px;}
.y15b{bottom:494.468550px;}
.y1de{bottom:497.120100px;}
.y128{bottom:501.460650px;}
.yd{bottom:502.864502px;}
.y4c{bottom:502.868250px;}
.yd2{bottom:508.452750px;}
.y179{bottom:511.683000px;}
.y145{bottom:513.191850px;}
.y1dd{bottom:515.120100px;}
.y116{bottom:515.444850px;}
.y157{bottom:518.468550px;}
.y4b{bottom:519.068250px;}
.yc{bottom:520.864502px;}
.yf1{bottom:522.437100px;}
.yab{bottom:523.210650px;}
.y1b4{bottom:525.177150px;}
.y127{bottom:525.460650px;}
.y196{bottom:530.940900px;}
.y1dc{bottom:533.120100px;}
.y4a{bottom:535.268250px;}
.yb{bottom:538.864499px;}
.y115{bottom:539.444850px;}
.y134{bottom:542.468550px;}
.y143{bottom:545.698800px;}
.yaa{bottom:547.210650px;}
.y178{bottom:548.439000px;}
.yd1{bottom:549.460650px;}
.y1db{bottom:551.120100px;}
.y195{bottom:554.940900px;}
.ya{bottom:556.864499px;}
.y114{bottom:563.444850px;}
.y49{bottom:564.224250px;}
.y133{bottom:566.468550px;}
.y1da{bottom:569.120100px;}
.y142{bottom:569.698800px;}
.ya9{bottom:571.210650px;}
.y177{bottom:572.439000px;}
.yd0{bottom:573.460650px;}
.y194{bottom:578.940900px;}
.y48{bottom:580.424250px;}
.yf0{bottom:580.452750px;}
.y1d9{bottom:587.120100px;}
.y113{bottom:587.444850px;}
.y132{bottom:590.468550px;}
.y1a9{bottom:591.696900px;}
.ya8{bottom:595.210650px;}
.y176{bottom:596.439000px;}
.y47{bottom:596.624250px;}
.ycf{bottom:597.460650px;}
.y1b3{bottom:602.940900px;}
.y1d8{bottom:605.120100px;}
.y163{bottom:611.444850px;}
.y29{bottom:611.818950px;}
.y131{bottom:614.468550px;}
.y193{bottom:615.696900px;}
.ya7{bottom:619.210650px;}
.y15a{bottom:620.462550px;}
.yce{bottom:621.460650px;}
.y46{bottom:625.580100px;}
.y7a{bottom:628.072650px;}
.y112{bottom:628.452750px;}
.y175{bottom:633.194850px;}
.y1d7{bottom:634.624050px;}
.y162{bottom:635.444850px;}
.yef{bottom:638.468550px;}
.y192{bottom:639.696900px;}
.y45{bottom:641.780100px;}
.ya6{bottom:643.210650px;}
.ycd{bottom:645.460650px;}
.y9{bottom:645.510000px;}
.y111{bottom:652.452750px;}
.y1d6{bottom:652.624050px;}
.y174{bottom:657.194850px;}
.y161{bottom:659.444850px;}
.yee{bottom:662.468550px;}
.y191{bottom:663.696900px;}
.y8{bottom:666.771000px;}
.ya5{bottom:667.210650px;}
.ycc{bottom:669.460650px;}
.y1d5{bottom:670.624050px;}
.y44{bottom:670.735950px;}
.y110{bottom:676.452750px;}
.y173{bottom:681.194850px;}
.y160{bottom:683.444850px;}
.yed{bottom:686.468550px;}
.y43{bottom:686.935950px;}
.y1d4{bottom:688.624050px;}
.ya4{bottom:691.210650px;}
.ycb{bottom:693.460650px;}
.y10f{bottom:700.452750px;}
.y86{bottom:702.039750px;}
.y42{bottom:703.135950px;}
.y6e{bottom:705.288150px;}
.y1d3{bottom:706.624050px;}
.yec{bottom:710.468550px;}
.ya3{bottom:715.210650px;}
.yca{bottom:717.460650px;}
.y172{bottom:717.950850px;}
.y6d{bottom:719.688150px;}
.y10e{bottom:724.452750px;}
.y1d2{bottom:724.624050px;}
.y7{bottom:726.298500px;}
.y41{bottom:732.091950px;}
.y6c{bottom:734.088300px;}
.yeb{bottom:734.468550px;}
.y1a8{bottom:737.208600px;}
.ya2{bottom:739.210650px;}
.y85{bottom:740.647650px;}
.y31{bottom:740.820450px;}
.yc9{bottom:741.460650px;}
.y171{bottom:741.950850px;}
.y1d1{bottom:742.624050px;}
.y94{bottom:744.006000px;}
.y40{bottom:748.291950px;}
.y10d{bottom:748.452750px;}
.y6b{bottom:748.488300px;}
.y3{bottom:752.599495px;}
.yea{bottom:758.468550px;}
.y1d0{bottom:760.624050px;}
.y190{bottom:761.208600px;}
.ya1{bottom:763.210650px;}
.y170{bottom:765.950850px;}
.y93{bottom:768.006000px;}
.y6a{bottom:771.392250px;}
.y10c{bottom:772.452750px;}
.y130{bottom:775.476450px;}
.y3f{bottom:777.247800px;}
.y1cf{bottom:778.624050px;}
.yc8{bottom:782.468550px;}
.y18f{bottom:785.208600px;}
.ya0{bottom:787.210650px;}
.y84{bottom:787.759500px;}
.y3e{bottom:793.447800px;}
.y10b{bottom:796.452750px;}
.y1ce{bottom:796.624050px;}
.y1a7{bottom:797.964600px;}
.y12f{bottom:799.476450px;}
.y16f{bottom:802.706700px;}
.yc7{bottom:806.468550px;}
.y92{bottom:809.013750px;}
.y18e{bottom:809.208600px;}
.y30{bottom:812.140200px;}
.y69{bottom:812.400000px;}
.y28{bottom:812.580750px;}
.y1cd{bottom:814.624050px;}
.y10a{bottom:820.452750px;}
.y1a6{bottom:821.964600px;}
.y83{bottom:822.115350px;}
.ye9{bottom:823.476450px;}
.y16e{bottom:826.706700px;}
.y9f{bottom:828.218550px;}
.yc6{bottom:830.468550px;}
.y1cc{bottom:832.624050px;}
.y91{bottom:833.013750px;}
.y1b2{bottom:833.208600px;}
.y3d{bottom:843.653850px;}
.y109{bottom:844.452750px;}
.y2f{bottom:844.540200px;}
.y68{bottom:845.270550px;}
.y18d{bottom:845.964600px;}
.ye8{bottom:847.476450px;}
.y82{bottom:847.967250px;}
.y27{bottom:848.580750px;}
.y1cb{bottom:850.624050px;}
.y9e{bottom:852.218550px;}
.yc5{bottom:854.468550px;}
.y90{bottom:857.013750px;}
.y1a5{bottom:858.720450px;}
.y67{bottom:859.670550px;}
.y16d{bottom:863.462550px;}
.y3c{bottom:867.653850px;}
.y108{bottom:868.452750px;}
.y1ca{bottom:868.624050px;}
.y81{bottom:869.567250px;}
.y18c{bottom:869.964600px;}
.ye7{bottom:871.476450px;}
.y66{bottom:874.070550px;}
.y9d{bottom:876.218550px;}
.y2e{bottom:876.940200px;}
.yc4{bottom:878.468550px;}
.y2{bottom:879.369000px;}
.y8f{bottom:881.013750px;}
.y1a4{bottom:882.720450px;}
.y26{bottom:884.580750px;}
.y16c{bottom:887.462550px;}
.y65{bottom:888.470550px;}
.y3b{bottom:891.653850px;}
.y18b{bottom:893.964600px;}
.ye6{bottom:895.476450px;}
.y1c9{bottom:898.128000px;}
.y9c{bottom:900.218550px;}
.yc3{bottom:902.468550px;}
.y8e{bottom:905.013750px;}
.y1a3{bottom:906.720450px;}
.y2d{bottom:909.340200px;}
.y107{bottom:909.460650px;}
.y64{bottom:911.374500px;}
.y16b{bottom:911.462550px;}
.y3a{bottom:915.653850px;}
.y1c8{bottom:916.128000px;}
.y80{bottom:916.679100px;}
.ye5{bottom:919.476450px;}
.y25{bottom:920.580750px;}
.y9b{bottom:924.218550px;}
.y63{bottom:925.774500px;}
.yc2{bottom:926.468550px;}
.y8d{bottom:929.013750px;}
.y18a{bottom:930.720450px;}
.y106{bottom:933.460650px;}
.y1c7{bottom:934.128000px;}
.y7f{bottom:938.278950px;}
.y39{bottom:939.653850px;}
.y2c{bottom:941.740200px;}
.ye4{bottom:943.476450px;}
.y9a{bottom:948.218550px;}
.y62{bottom:948.678450px;}
.yc1{bottom:950.468550px;}
.y8c{bottom:953.013750px;}
.y189{bottom:954.720450px;}
.y24{bottom:956.580750px;}
.y61{bottom:963.078450px;}
.y1c6{bottom:963.631950px;}
.y38{bottom:963.653850px;}
.y1{bottom:966.726000px;}
.ye3{bottom:967.476450px;}
.y7e{bottom:970.834950px;}
.y99{bottom:972.218550px;}
.y8b{bottom:977.013750px;}
.y60{bottom:977.478450px;}
.y1c5{bottom:981.631950px;}
.y37{bottom:987.653850px;}
.yc0{bottom:991.476450px;}
.y5f{bottom:991.878450px;}
.y7d{bottom:996.686850px;}
.y1c4{bottom:999.631950px;}
.y8a{bottom:1001.013750px;}
.y5e{bottom:1006.278450px;}
.y98{bottom:1013.226450px;}
.ybf{bottom:1015.476450px;}
.y12e{bottom:1021.470300px;}
.y89{bottom:1025.013750px;}
.y1c3{bottom:1029.135900px;}
.y7c{bottom:1035.294750px;}
.y5d{bottom:1047.580500px;}
.y88{bottom:1049.013750px;}
.y1c2{bottom:1050.135900px;}
.y2b{bottom:1059.354300px;}
.y1ec{bottom:1068.967350px;}
.y23{bottom:1070.834700px;}
.y7b{bottom:1073.902650px;}
.y2a{bottom:1083.354300px;}
.y5c{bottom:1086.979800px;}
.y1eb{bottom:1092.367350px;}
.y1c1{bottom:1092.395700px;}
.y87{bottom:1094.013750px;}
.ybb{bottom:1096.191000px;}
.y5b{bottom:1104.979800px;}
.y95{bottom:1110.857550px;}
.ybd{bottom:1112.310750px;}
.y1ea{bottom:1115.767350px;}
.y5a{bottom:1122.979800px;}
.y36{bottom:1127.437800px;}
.y1c0{bottom:1134.655500px;}
.y1e9{bottom:1139.167350px;}
.y35{bottom:1149.937800px;}
.y59{bottom:1157.987700px;}
.y97{bottom:1185.292350px;}
.y58{bottom:1187.842800px;}
.y34{bottom:1194.271650px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:36.492188px;}
.h23{height:38.081742px;}
.h1b{height:38.103516px;}
.h19{height:38.250000px;}
.h18{height:43.546875px;}
.h28{height:45.615234px;}
.h29{height:45.675024px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h14{height:48.726562px;}
.h15{height:48.752930px;}
.h27{height:54.169922px;}
.h10{height:54.433594px;}
.h2{height:55.152000px;}
.h2a{height:58.500000px;}
.h12{height:59.554688px;}
.h13{height:59.876953px;}
.h24{height:63.861328px;}
.h11{height:64.968750px;}
.h25{height:65.003906px;}
.h1c{height:65.320312px;}
.h1d{height:75.796875px;}
.h5{height:78.132000px;}
.hf{height:86.671875px;}
.he{height:87.093750px;}
.hd{height:97.453125px;}
.h16{height:101.078366px;}
.h26{height:102.444994px;}
.h1e{height:104.483820px;}
.h22{height:104.897100px;}
.hc{height:108.281250px;}
.h1f{height:109.968750px;}
.h17{height:111.185931px;}
.h4{height:119.055004px;}
.h20{height:135.351562px;}
.h21{height:166.644000px;}
.hb{height:389.812500px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:1.059000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x2a{left:-409.083600px;}
.x0{left:0.000000px;}
.x28{left:54.030450px;}
.x15{left:59.542050px;}
.x2b{left:92.399550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x33{left:115.178100px;}
.x25{left:139.668300px;}
.x29{left:140.684100px;}
.x2f{left:176.213850px;}
.x3b{left:183.235200px;}
.x1f{left:184.721550px;}
.x3a{left:188.691000px;}
.x4{left:203.484001px;}
.x34{left:206.220450px;}
.x14{left:259.370100px;}
.x20{left:271.591950px;}
.x23{left:273.186450px;}
.x21{left:284.881800px;}
.x24{left:288.186450px;}
.x22{left:311.839350px;}
.x7{left:315.340650px;}
.xe{left:316.876950px;}
.xa{left:341.370900px;}
.x9{left:363.988050px;}
.xf{left:391.851900px;}
.x8{left:409.559400px;}
.x6{left:415.316250px;}
.x11{left:417.546750px;}
.x30{left:426.758100px;}
.x2e{left:428.210850px;}
.x10{left:431.415900px;}
.x2c{left:436.318050px;}
.x27{left:437.770800px;}
.x3c{left:451.988550px;}
.x3{left:454.959000px;}
.xb{left:468.325950px;}
.x18{left:471.968400px;}
.x1b{left:477.257700px;}
.x1a{left:481.389750px;}
.x1e{left:482.733900px;}
.x26{left:483.829800px;}
.x1c{left:486.257700px;}
.x19{left:491.489700px;}
.x13{left:504.245100px;}
.xd{left:523.762650px;}
.x12{left:533.997450px;}
.x5{left:542.312400px;}
.x31{left:547.520250px;}
.x32{left:553.466250px;}
.xc{left:561.954000px;}
.x17{left:581.246700px;}
.x16{left:586.237050px;}
.x39{left:679.428300px;}
.x2d{left:723.172200px;}
.x35{left:729.061500px;}
.x36{left:735.034950px;}
.x1d{left:767.713500px;}
.x37{left:781.600650px;}
.x38{left:786.614250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:28.416000pt;}
.v3{vertical-align:42.676800pt;}
.ls38{letter-spacing:-1.728000pt;}
.ls36{letter-spacing:-1.664000pt;}
.ls35{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.536000pt;}
.ls2f{letter-spacing:-1.408000pt;}
.ls31{letter-spacing:-1.280000pt;}
.ls30{letter-spacing:-1.216000pt;}
.ls25{letter-spacing:-1.088000pt;}
.ls37{letter-spacing:-0.960000pt;}
.ls2e{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls29{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.024904pt;}
.ls4{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.168789pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.405333pt;}
.ls8{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.448000pt;}
.ls2d{letter-spacing:0.512000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.680000pt;}
.lse{letter-spacing:2.240000pt;}
.ls5{letter-spacing:2.405333pt;}
.ls11{letter-spacing:2.613333pt;}
.ls3{letter-spacing:2.986667pt;}
.ls2{letter-spacing:3.360000pt;}
.ls1{letter-spacing:3.733333pt;}
.ls32{letter-spacing:5.440000pt;}
.ls18{letter-spacing:33.333333pt;}
.ws1e{word-spacing:-94.080000pt;}
.ws34{word-spacing:-33.333333pt;}
.ws3{word-spacing:-27.264000pt;}
.ws42{word-spacing:-21.722255pt;}
.ws33{word-spacing:-21.636663pt;}
.ws2a{word-spacing:-21.205333pt;}
.ws1f{word-spacing:-18.112000pt;}
.ws2b{word-spacing:-16.704000pt;}
.ws72{word-spacing:-16.128000pt;}
.ws71{word-spacing:-16.064000pt;}
.ws70{word-spacing:-16.000000pt;}
.ws6f{word-spacing:-15.936000pt;}
.ws6c{word-spacing:-15.872000pt;}
.ws73{word-spacing:-15.808000pt;}
.ws6d{word-spacing:-15.744000pt;}
.ws52{word-spacing:-15.680000pt;}
.ws64{word-spacing:-15.616000pt;}
.ws58{word-spacing:-15.552000pt;}
.ws63{word-spacing:-15.424000pt;}
.ws6b{word-spacing:-15.360000pt;}
.ws65{word-spacing:-15.168000pt;}
.ws6a{word-spacing:-15.104000pt;}
.ws4e{word-spacing:-15.040000pt;}
.ws77{word-spacing:-14.976000pt;}
.ws28{word-spacing:-14.528000pt;}
.ws74{word-spacing:-14.208000pt;}
.ws5a{word-spacing:-13.280000pt;}
.ws5b{word-spacing:-13.226667pt;}
.ws4{word-spacing:-13.066667pt;}
.ws25{word-spacing:-12.736000pt;}
.ws7{word-spacing:-11.050667pt;}
.ws9{word-spacing:-10.624000pt;}
.ws8{word-spacing:-10.410667pt;}
.ws22{word-spacing:-10.240000pt;}
.ws59{word-spacing:-9.253376pt;}
.ws24{word-spacing:-9.093333pt;}
.ws21{word-spacing:-6.784000pt;}
.ws27{word-spacing:-4.928000pt;}
.ws26{word-spacing:-4.810667pt;}
.ws23{word-spacing:-3.813333pt;}
.wsc{word-spacing:-3.637333pt;}
.ws29{word-spacing:-2.752000pt;}
.wsf{word-spacing:-2.581333pt;}
.ws20{word-spacing:-2.240000pt;}
.ws1{word-spacing:-1.813333pt;}
.ws54{word-spacing:-1.792000pt;}
.ws3d{word-spacing:-1.728000pt;}
.ws5f{word-spacing:-1.664000pt;}
.ws2{word-spacing:-1.632000pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws45{word-spacing:-1.536000pt;}
.ws38{word-spacing:-1.472000pt;}
.ws5{word-spacing:-1.450667pt;}
.wsd{word-spacing:-1.408000pt;}
.ws57{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.269333pt;}
.ws68{word-spacing:-1.216000pt;}
.ws12{word-spacing:-1.152000pt;}
.wsa{word-spacing:-1.114667pt;}
.ws3b{word-spacing:-1.088000pt;}
.ws78{word-spacing:-1.013333pt;}
.ws48{word-spacing:-0.960000pt;}
.ws6e{word-spacing:-0.896000pt;}
.ws50{word-spacing:-0.832000pt;}
.ws10{word-spacing:-0.816000pt;}
.ws14{word-spacing:-0.810667pt;}
.ws31{word-spacing:-0.768000pt;}
.ws5c{word-spacing:-0.704000pt;}
.ws49{word-spacing:-0.640000pt;}
.ws3e{word-spacing:-0.576000pt;}
.ws60{word-spacing:-0.512000pt;}
.ws3a{word-spacing:-0.448000pt;}
.ws19{word-spacing:-0.426667pt;}
.ws53{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.320000pt;}
.ws46{word-spacing:-0.256000pt;}
.ws39{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.176000pt;}
.ws4a{word-spacing:-0.128000pt;}
.ws41{word-spacing:-0.102463pt;}
.ws32{word-spacing:-0.102060pt;}
.ws36{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws47{word-spacing:0.064000pt;}
.ws1c{word-spacing:0.085333pt;}
.ws11{word-spacing:0.128000pt;}
.ws4c{word-spacing:0.192000pt;}
.ws15{word-spacing:0.213333pt;}
.ws4b{word-spacing:0.256000pt;}
.ws3f{word-spacing:0.320000pt;}
.ws43{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.426667pt;}
.ws44{word-spacing:0.448000pt;}
.ws5e{word-spacing:0.512000pt;}
.ws66{word-spacing:0.576000pt;}
.ws1b{word-spacing:0.640000pt;}
.ws76{word-spacing:0.704000pt;}
.ws51{word-spacing:0.768000pt;}
.ws67{word-spacing:0.832000pt;}
.ws13{word-spacing:0.853333pt;}
.ws56{word-spacing:0.896000pt;}
.ws3c{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.024000pt;}
.ws37{word-spacing:1.088000pt;}
.ws2d{word-spacing:1.216000pt;}
.ws6{word-spacing:1.280000pt;}
.ws5d{word-spacing:1.333333pt;}
.ws61{word-spacing:1.344000pt;}
.ws55{word-spacing:1.408000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.600000pt;}
.ws69{word-spacing:1.664000pt;}
.ws75{word-spacing:1.728000pt;}
.ws4d{word-spacing:1.792000pt;}
.ws40{word-spacing:2.432000pt;}
.ws16{word-spacing:2.773333pt;}
.ws1a{word-spacing:3.072000pt;}
.ws17{word-spacing:3.242667pt;}
.ws18{word-spacing:3.626667pt;}
.wsb{word-spacing:7.274667pt;}
.ws62{word-spacing:137.946133pt;}
._6{margin-left:-1153.845333pt;}
._8{margin-left:-24.788364pt;}
._13{margin-left:-18.592000pt;}
._16{margin-left:-17.323447pt;}
._11{margin-left:-16.217067pt;}
._12{margin-left:-15.229850pt;}
._b{margin-left:-14.126363pt;}
._9{margin-left:-12.112533pt;}
._5{margin-left:-9.909333pt;}
._7{margin-left:-7.889067pt;}
._15{margin-left:-6.954667pt;}
._3{margin-left:-5.909333pt;}
._4{margin-left:-4.458667pt;}
._2{margin-left:-2.709333pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.002667pt;}
._10{width:1.984000pt;}
._a{width:2.909867pt;}
._e{width:4.763733pt;}
._c{width:8.161600pt;}
._d{width:9.290667pt;}
._f{width:13.258667pt;}
._14{width:68.666133pt;}
.fs17{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:49.749333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs18{font-size:69.333333pt;}
.fs10{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fsc{font-size:99.516800pt;}
.fsd{font-size:99.517333pt;}
.fs11{font-size:102.059733pt;}
.fs15{font-size:102.463467pt;}
.fs6{font-size:106.666667pt;}
.fse{font-size:109.468800pt;}
.fs13{font-size:122.666667pt;}
.fs12{font-size:132.677867pt;}
.fs16{font-size:133.202667pt;}
.fs14{font-size:133.333333pt;}
.fs5{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:13.036933pt;}
.ybe{bottom:23.593200pt;}
.y96{bottom:25.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y33{bottom:64.252133pt;}
.y13d{bottom:75.590667pt;}
.y188{bottom:78.136533pt;}
.y32{bottom:80.252133pt;}
.y1a2{bottom:83.916000pt;}
.y4{bottom:86.333337pt;}
.y126{bottom:86.603733pt;}
.y15f{bottom:89.291333pt;}
.y101{bottom:92.818933pt;}
.y156{bottom:93.196800pt;}
.y13c{bottom:95.370400pt;}
.ye2{bottom:95.506533pt;}
.y187{bottom:99.469867pt;}
.y1a1{bottom:105.249333pt;}
.y125{bottom:107.937067pt;}
.y15e{bottom:110.624667pt;}
.y100{bottom:114.152267pt;}
.yba{bottom:114.839867pt;}
.y13b{bottom:115.150000pt;}
.y1ac{bottom:116.587867pt;}
.ye1{bottom:116.839867pt;}
.y155{bottom:120.091867pt;}
.y22{bottom:123.790666pt;}
.y1a0{bottom:126.582667pt;}
.y124{bottom:129.270400pt;}
.y13a{bottom:131.150000pt;}
.y159{bottom:131.958000pt;}
.y186{bottom:132.141733pt;}
.yff{bottom:135.485600pt;}
.y154{bottom:136.091867pt;}
.yb9{bottom:136.173200pt;}
.y1ab{bottom:137.921200pt;}
.ye0{bottom:138.173200pt;}
.y141{bottom:147.076133pt;}
.y158{bottom:153.291333pt;}
.y185{bottom:153.475067pt;}
.yfe{bottom:156.818933pt;}
.y153{bottom:157.430400pt;}
.yb8{bottom:157.506533pt;}
.y19f{bottom:159.254533pt;}
.y105{bottom:159.506533pt;}
.y150{bottom:160.099733pt;}
.y123{bottom:165.721733pt;}
.y140{bottom:168.409467pt;}
.ydf{bottom:174.624667pt;}
.y184{bottom:174.808400pt;}
.y19{bottom:175.052000pt;}
.yfd{bottom:178.152267pt;}
.y152{bottom:178.768933pt;}
.yb7{bottom:178.839867pt;}
.y19e{bottom:180.587867pt;}
.y104{bottom:180.839867pt;}
.y1bf{bottom:183.023600pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y57{bottom:186.546800pt;}
.y122{bottom:187.055067pt;}
.y79{bottom:188.758000pt;}
.y13f{bottom:189.742800pt;}
.y1aa{bottom:191.926533pt;}
.yde{bottom:195.958000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yfc{bottom:199.485600pt;}
.y151{bottom:200.107600pt;}
.yb6{bottom:200.173200pt;}
.y56{bottom:200.946800pt;}
.y1b1{bottom:201.921200pt;}
.y103{bottom:202.173200pt;}
.y1be{bottom:204.356933pt;}
.y78{bottom:204.758000pt;}
.y183{bottom:207.480267pt;}
.y121{bottom:208.388400pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y13e{bottom:211.076133pt;}
.y19d{bottom:213.259867pt;}
.ydd{bottom:217.291333pt;}
.yfb{bottom:220.818933pt;}
.y14f{bottom:221.446133pt;}
.y1b0{bottom:223.254533pt;}
.y102{bottom:223.506533pt;}
.y1bd{bottom:225.690267pt;}
.y182{bottom:228.813600pt;}
.y120{bottom:229.721733pt;}
.y1e8{bottom:230.756000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y14e{bottom:232.115467pt;}
.y139{bottom:232.409467pt;}
.y19c{bottom:234.593200pt;}
.y77{bottom:235.876133pt;}
.yb5{bottom:236.624667pt;}
.ydc{bottom:238.624667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1e7{bottom:246.756000pt;}
.y181{bottom:250.146933pt;}
.y11f{bottom:251.055200pt;}
.y76{bottom:251.876133pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y138{bottom:253.742800pt;}
.y1af{bottom:255.926533pt;}
.yfa{bottom:257.270400pt;}
.yb4{bottom:257.958000pt;}
.y1bc{bottom:258.362267pt;}
.ydb{bottom:259.958000pt;}
.y1e6{bottom:262.756000pt;}
.y14d{bottom:264.123333pt;}
.y19b{bottom:267.265067pt;}
.y75{bottom:267.876133pt;}
.y180{bottom:271.480267pt;}
.y55{bottom:272.039733pt;}
.y11e{bottom:272.388533pt;}
.y14c{bottom:274.792667pt;}
.y137{bottom:275.076133pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1ae{bottom:277.259867pt;}
.yf9{bottom:278.603733pt;}
.y1e5{bottom:278.756000pt;}
.yb3{bottom:279.291333pt;}
.y1bb{bottom:279.695600pt;}
.yda{bottom:281.291333pt;}
.y74{bottom:283.876133pt;}
.y54{bottom:286.439733pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y19a{bottom:288.598400pt;}
.y16a{bottom:293.721867pt;}
.y136{bottom:296.409467pt;}
.yf8{bottom:299.937067pt;}
.yb2{bottom:300.624667pt;}
.y53{bottom:300.839733pt;}
.y1ba{bottom:301.028933pt;}
.yd9{bottom:302.624667pt;}
.y17f{bottom:304.152267pt;}
.y14b{bottom:306.800533pt;}
.y11d{bottom:308.839867pt;}
.y10{bottom:309.452000pt;}
.y199{bottom:309.931733pt;}
.y1e4{bottom:312.540667pt;}
.y73{bottom:314.994267pt;}
.y169{bottom:315.055200pt;}
.y135{bottom:317.742800pt;}
.yf7{bottom:321.270400pt;}
.yb1{bottom:321.958000pt;}
.yd8{bottom:323.958000pt;}
.y17e{bottom:325.485600pt;}
.y52{bottom:326.578267pt;}
.y149{bottom:328.139067pt;}
.y1e3{bottom:328.540667pt;}
.y11c{bottom:330.173200pt;}
.y1ad{bottom:331.265067pt;}
.y1b9{bottom:333.700800pt;}
.y168{bottom:336.388533pt;}
.y12d{bottom:339.076133pt;}
.y51{bottom:340.978267pt;}
.yf6{bottom:342.603733pt;}
.yb0{bottom:343.291333pt;}
.yf{bottom:343.809333pt;}
.yd7{bottom:345.291333pt;}
.y72{bottom:346.112400pt;}
.y14a{bottom:349.477600pt;}
.y11b{bottom:351.506533pt;}
.y1e2{bottom:352.099733pt;}
.y1b8{bottom:355.034133pt;}
.y167{bottom:357.721867pt;}
.y17d{bottom:358.157467pt;}
.y12c{bottom:360.409467pt;}
.y71{bottom:362.112400pt;}
.ye{bottom:362.706666pt;}
.yf5{bottom:363.937067pt;}
.yaf{bottom:364.624667pt;}
.yd6{bottom:366.624667pt;}
.y50{bottom:366.716933pt;}
.y1e1{bottom:370.766400pt;}
.y148{bottom:370.816267pt;}
.y11a{bottom:372.839867pt;}
.y1b7{bottom:376.367467pt;}
.y166{bottom:379.055200pt;}
.y17c{bottom:379.490800pt;}
.y4f{bottom:381.116800pt;}
.y12b{bottom:381.742800pt;}
.yf4{bottom:385.270400pt;}
.yae{bottom:385.958000pt;}
.yd5{bottom:387.958000pt;}
.y147{bottom:392.154800pt;}
.y70{bottom:393.230533pt;}
.y119{bottom:394.173200pt;}
.y15d{bottom:396.860933pt;}
.y1e0{bottom:396.992133pt;}
.y165{bottom:400.388533pt;}
.y17b{bottom:400.824133pt;}
.y12a{bottom:403.076133pt;}
.yf3{bottom:406.603733pt;}
.y4e{bottom:406.855467pt;}
.yad{bottom:407.291333pt;}
.y1b6{bottom:409.039333pt;}
.yd4{bottom:409.291333pt;}
.y144{bottom:413.493467pt;}
.y6f{bottom:413.589467pt;}
.y118{bottom:415.506533pt;}
.y1df{bottom:415.658800pt;}
.y198{bottom:417.942267pt;}
.y15c{bottom:418.194267pt;}
.y4d{bottom:421.255467pt;}
.y164{bottom:421.721867pt;}
.y129{bottom:424.409467pt;}
.yf2{bottom:427.937067pt;}
.yac{bottom:428.624667pt;}
.y1b5{bottom:430.372667pt;}
.yd3{bottom:430.624667pt;}
.y17a{bottom:433.496000pt;}
.y146{bottom:434.832000pt;}
.y117{bottom:436.839867pt;}
.y197{bottom:439.275600pt;}
.y15b{bottom:439.527600pt;}
.y1de{bottom:441.884533pt;}
.y128{bottom:445.742800pt;}
.yd{bottom:446.990669pt;}
.y4c{bottom:446.994000pt;}
.yd2{bottom:451.958000pt;}
.y179{bottom:454.829333pt;}
.y145{bottom:456.170533pt;}
.y1dd{bottom:457.884533pt;}
.y116{bottom:458.173200pt;}
.y157{bottom:460.860933pt;}
.y4b{bottom:461.394000pt;}
.yc{bottom:462.990669pt;}
.yf1{bottom:464.388533pt;}
.yab{bottom:465.076133pt;}
.y1b4{bottom:466.824133pt;}
.y127{bottom:467.076133pt;}
.y196{bottom:471.947467pt;}
.y1dc{bottom:473.884533pt;}
.y4a{bottom:475.794000pt;}
.yb{bottom:478.990666pt;}
.y115{bottom:479.506533pt;}
.y134{bottom:482.194267pt;}
.y143{bottom:485.065600pt;}
.yaa{bottom:486.409467pt;}
.y178{bottom:487.501333pt;}
.yd1{bottom:488.409467pt;}
.y1db{bottom:489.884533pt;}
.y195{bottom:493.280800pt;}
.ya{bottom:494.990666pt;}
.y114{bottom:500.839867pt;}
.y49{bottom:501.532667pt;}
.y133{bottom:503.527600pt;}
.y1da{bottom:505.884533pt;}
.y142{bottom:506.398933pt;}
.ya9{bottom:507.742800pt;}
.y177{bottom:508.834667pt;}
.yd0{bottom:509.742800pt;}
.y194{bottom:514.614133pt;}
.y48{bottom:515.932667pt;}
.yf0{bottom:515.958000pt;}
.y1d9{bottom:521.884533pt;}
.y113{bottom:522.173200pt;}
.y132{bottom:524.860933pt;}
.y1a9{bottom:525.952800pt;}
.ya8{bottom:529.076133pt;}
.y176{bottom:530.168000pt;}
.y47{bottom:530.332667pt;}
.ycf{bottom:531.076133pt;}
.y1b3{bottom:535.947467pt;}
.y1d8{bottom:537.884533pt;}
.y163{bottom:543.506533pt;}
.y29{bottom:543.839067pt;}
.y131{bottom:546.194267pt;}
.y193{bottom:547.286133pt;}
.ya7{bottom:550.409467pt;}
.y15a{bottom:551.522267pt;}
.yce{bottom:552.409467pt;}
.y46{bottom:556.071200pt;}
.y7a{bottom:558.286800pt;}
.y112{bottom:558.624667pt;}
.y175{bottom:562.839867pt;}
.y1d7{bottom:564.110267pt;}
.y162{bottom:564.839867pt;}
.yef{bottom:567.527600pt;}
.y192{bottom:568.619467pt;}
.y45{bottom:570.471200pt;}
.ya6{bottom:571.742800pt;}
.ycd{bottom:573.742800pt;}
.y9{bottom:573.786667pt;}
.y111{bottom:579.958000pt;}
.y1d6{bottom:580.110267pt;}
.y174{bottom:584.173200pt;}
.y161{bottom:586.173200pt;}
.yee{bottom:588.860933pt;}
.y191{bottom:589.952800pt;}
.y8{bottom:592.685334pt;}
.ya5{bottom:593.076133pt;}
.ycc{bottom:595.076133pt;}
.y1d5{bottom:596.110267pt;}
.y44{bottom:596.209733pt;}
.y110{bottom:601.291333pt;}
.y173{bottom:605.506533pt;}
.y160{bottom:607.506533pt;}
.yed{bottom:610.194267pt;}
.y43{bottom:610.609733pt;}
.y1d4{bottom:612.110267pt;}
.ya4{bottom:614.409467pt;}
.ycb{bottom:616.409467pt;}
.y10f{bottom:622.624667pt;}
.y86{bottom:624.035333pt;}
.y42{bottom:625.009733pt;}
.y6e{bottom:626.922800pt;}
.y1d3{bottom:628.110267pt;}
.yec{bottom:631.527600pt;}
.ya3{bottom:635.742800pt;}
.yca{bottom:637.742800pt;}
.y172{bottom:638.178533pt;}
.y6d{bottom:639.722800pt;}
.y10e{bottom:643.958000pt;}
.y1d2{bottom:644.110267pt;}
.y7{bottom:645.598667pt;}
.y41{bottom:650.748400pt;}
.y6c{bottom:652.522933pt;}
.yeb{bottom:652.860933pt;}
.y1a8{bottom:655.296533pt;}
.ya2{bottom:657.076133pt;}
.y85{bottom:658.353467pt;}
.y31{bottom:658.507067pt;}
.yc9{bottom:659.076133pt;}
.y171{bottom:659.511867pt;}
.y1d1{bottom:660.110267pt;}
.y94{bottom:661.338667pt;}
.y40{bottom:665.148400pt;}
.y10d{bottom:665.291333pt;}
.y6b{bottom:665.322933pt;}
.y3{bottom:668.977329pt;}
.yea{bottom:674.194267pt;}
.y1d0{bottom:676.110267pt;}
.y190{bottom:676.629867pt;}
.ya1{bottom:678.409467pt;}
.y170{bottom:680.845200pt;}
.y93{bottom:682.672000pt;}
.y6a{bottom:685.682000pt;}
.y10c{bottom:686.624667pt;}
.y130{bottom:689.312400pt;}
.y3f{bottom:690.886933pt;}
.y1cf{bottom:692.110267pt;}
.yc8{bottom:695.527600pt;}
.y18f{bottom:697.963200pt;}
.ya0{bottom:699.742800pt;}
.y84{bottom:700.230667pt;}
.y3e{bottom:705.286933pt;}
.y10b{bottom:707.958000pt;}
.y1ce{bottom:708.110267pt;}
.y1a7{bottom:709.301867pt;}
.y12f{bottom:710.645733pt;}
.y16f{bottom:713.517067pt;}
.yc7{bottom:716.860933pt;}
.y92{bottom:719.123333pt;}
.y18e{bottom:719.296533pt;}
.y30{bottom:721.902400pt;}
.y69{bottom:722.133333pt;}
.y28{bottom:722.294000pt;}
.y1cd{bottom:724.110267pt;}
.y10a{bottom:729.291333pt;}
.y1a6{bottom:730.635200pt;}
.y83{bottom:730.769200pt;}
.ye9{bottom:731.979067pt;}
.y16e{bottom:734.850400pt;}
.y9f{bottom:736.194267pt;}
.yc6{bottom:738.194267pt;}
.y1cc{bottom:740.110267pt;}
.y91{bottom:740.456667pt;}
.y1b2{bottom:740.629867pt;}
.y3d{bottom:749.914533pt;}
.y109{bottom:750.624667pt;}
.y2f{bottom:750.702400pt;}
.y68{bottom:751.351600pt;}
.y18d{bottom:751.968533pt;}
.ye8{bottom:753.312400pt;}
.y82{bottom:753.748667pt;}
.y27{bottom:754.294000pt;}
.y1cb{bottom:756.110267pt;}
.y9e{bottom:757.527600pt;}
.yc5{bottom:759.527600pt;}
.y90{bottom:761.790000pt;}
.y1a5{bottom:763.307067pt;}
.y67{bottom:764.151600pt;}
.y16d{bottom:767.522267pt;}
.y3c{bottom:771.247867pt;}
.y108{bottom:771.958000pt;}
.y1ca{bottom:772.110267pt;}
.y81{bottom:772.948667pt;}
.y18c{bottom:773.301867pt;}
.ye7{bottom:774.645733pt;}
.y66{bottom:776.951600pt;}
.y9d{bottom:778.860933pt;}
.y2e{bottom:779.502400pt;}
.yc4{bottom:780.860933pt;}
.y2{bottom:781.661334pt;}
.y8f{bottom:783.123333pt;}
.y1a4{bottom:784.640400pt;}
.y26{bottom:786.294000pt;}
.y16c{bottom:788.855600pt;}
.y65{bottom:789.751600pt;}
.y3b{bottom:792.581200pt;}
.y18b{bottom:794.635200pt;}
.ye6{bottom:795.979067pt;}
.y1c9{bottom:798.336000pt;}
.y9c{bottom:800.194267pt;}
.yc3{bottom:802.194267pt;}
.y8e{bottom:804.456667pt;}
.y1a3{bottom:805.973733pt;}
.y2d{bottom:808.302400pt;}
.y107{bottom:808.409467pt;}
.y64{bottom:810.110667pt;}
.y16b{bottom:810.188933pt;}
.y3a{bottom:813.914533pt;}
.y1c8{bottom:814.336000pt;}
.y80{bottom:814.825867pt;}
.ye5{bottom:817.312400pt;}
.y25{bottom:818.294000pt;}
.y9b{bottom:821.527600pt;}
.y63{bottom:822.910667pt;}
.yc2{bottom:823.527600pt;}
.y8d{bottom:825.790000pt;}
.y18a{bottom:827.307067pt;}
.y106{bottom:829.742800pt;}
.y1c7{bottom:830.336000pt;}
.y7f{bottom:834.025733pt;}
.y39{bottom:835.247867pt;}
.y2c{bottom:837.102400pt;}
.ye4{bottom:838.645733pt;}
.y9a{bottom:842.860933pt;}
.y62{bottom:843.269733pt;}
.yc1{bottom:844.860933pt;}
.y8c{bottom:847.123333pt;}
.y189{bottom:848.640400pt;}
.y24{bottom:850.294000pt;}
.y61{bottom:856.069733pt;}
.y1c6{bottom:856.561733pt;}
.y38{bottom:856.581200pt;}
.y1{bottom:859.312000pt;}
.ye3{bottom:859.979067pt;}
.y7e{bottom:862.964400pt;}
.y99{bottom:864.194267pt;}
.y8b{bottom:868.456667pt;}
.y60{bottom:868.869733pt;}
.y1c5{bottom:872.561733pt;}
.y37{bottom:877.914533pt;}
.yc0{bottom:881.312400pt;}
.y5f{bottom:881.669733pt;}
.y7d{bottom:885.943867pt;}
.y1c4{bottom:888.561733pt;}
.y8a{bottom:889.790000pt;}
.y5e{bottom:894.469733pt;}
.y98{bottom:900.645733pt;}
.ybf{bottom:902.645733pt;}
.y12e{bottom:907.973600pt;}
.y89{bottom:911.123333pt;}
.y1c3{bottom:914.787467pt;}
.y7c{bottom:920.262000pt;}
.y5d{bottom:931.182667pt;}
.y88{bottom:932.456667pt;}
.y1c2{bottom:933.454133pt;}
.y2b{bottom:941.648267pt;}
.y1ec{bottom:950.193200pt;}
.y23{bottom:951.853067pt;}
.y7b{bottom:954.580133pt;}
.y2a{bottom:962.981600pt;}
.y5c{bottom:966.204267pt;}
.y1eb{bottom:970.993200pt;}
.y1c1{bottom:971.018400pt;}
.y87{bottom:972.456667pt;}
.ybb{bottom:974.392000pt;}
.y5b{bottom:982.204267pt;}
.y95{bottom:987.428933pt;}
.ybd{bottom:988.720667pt;}
.y1ea{bottom:991.793200pt;}
.y5a{bottom:998.204267pt;}
.y36{bottom:1002.166933pt;}
.y1c0{bottom:1008.582667pt;}
.y1e9{bottom:1012.593200pt;}
.y35{bottom:1022.166933pt;}
.y59{bottom:1029.322400pt;}
.y97{bottom:1053.593200pt;}
.y58{bottom:1055.860267pt;}
.y34{bottom:1061.574800pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:32.437500pt;}
.h23{height:33.850437pt;}
.h1b{height:33.869792pt;}
.h19{height:34.000000pt;}
.h18{height:38.708333pt;}
.h28{height:40.546875pt;}
.h29{height:40.600021pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h14{height:43.312500pt;}
.h15{height:43.335938pt;}
.h27{height:48.151042pt;}
.h10{height:48.385417pt;}
.h2{height:49.024000pt;}
.h2a{height:52.000000pt;}
.h12{height:52.937500pt;}
.h13{height:53.223958pt;}
.h24{height:56.765625pt;}
.h11{height:57.750000pt;}
.h25{height:57.781250pt;}
.h1c{height:58.062500pt;}
.h1d{height:67.375000pt;}
.h5{height:69.450667pt;}
.hf{height:77.041667pt;}
.he{height:77.416667pt;}
.hd{height:86.625000pt;}
.h16{height:89.847436pt;}
.h26{height:91.062217pt;}
.h1e{height:92.874507pt;}
.h22{height:93.241867pt;}
.hc{height:96.250000pt;}
.h1f{height:97.750000pt;}
.h17{height:98.831939pt;}
.h4{height:105.826671pt;}
.h20{height:120.312500pt;}
.h21{height:148.128000pt;}
.hb{height:346.500000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:0.941333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2a{left:-363.629867pt;}
.x0{left:0.000000pt;}
.x28{left:48.027067pt;}
.x15{left:52.926267pt;}
.x2b{left:82.132933pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x33{left:102.380533pt;}
.x25{left:124.149600pt;}
.x29{left:125.052533pt;}
.x2f{left:156.634533pt;}
.x3b{left:162.875733pt;}
.x1f{left:164.196933pt;}
.x3a{left:167.725333pt;}
.x4{left:180.874667pt;}
.x34{left:183.307067pt;}
.x14{left:230.551200pt;}
.x20{left:241.415067pt;}
.x23{left:242.832400pt;}
.x21{left:253.228267pt;}
.x24{left:256.165733pt;}
.x22{left:277.190533pt;}
.x7{left:280.302800pt;}
.xe{left:281.668400pt;}
.xa{left:303.440800pt;}
.x9{left:323.544933pt;}
.xf{left:348.312800pt;}
.x8{left:364.052800pt;}
.x6{left:369.170000pt;}
.x11{left:371.152667pt;}
.x30{left:379.340533pt;}
.x2e{left:380.631867pt;}
.x10{left:383.480800pt;}
.x2c{left:387.838267pt;}
.x27{left:389.129600pt;}
.x3c{left:401.767600pt;}
.x3{left:404.408000pt;}
.xb{left:416.289733pt;}
.x18{left:419.527467pt;}
.x1b{left:424.229067pt;}
.x1a{left:427.902000pt;}
.x1e{left:429.096800pt;}
.x26{left:430.070933pt;}
.x1c{left:432.229067pt;}
.x19{left:436.879733pt;}
.x13{left:448.217867pt;}
.xd{left:465.566800pt;}
.x12{left:474.664400pt;}
.x5{left:482.055467pt;}
.x31{left:486.684667pt;}
.x32{left:491.970000pt;}
.xc{left:499.514667pt;}
.x17{left:516.663733pt;}
.x16{left:521.099600pt;}
.x39{left:603.936267pt;}
.x2d{left:642.819733pt;}
.x35{left:648.054667pt;}
.x36{left:653.364400pt;}
.x1d{left:682.412000pt;}
.x37{left:694.756133pt;}
.x38{left:699.212667pt;}
}




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