
    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_3d5e8017a71fd8da4cf9ccd8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_a08c3d0bc01a280df374f81e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_48ea62b0be1b7225449a77f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_1caef5b8cddb98ed3828923f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_8f1f3fc04df7e32e17195739.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_1caef5b8cddb98ed3828923f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;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_3e239fb340785972c25e24d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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;}
.m1{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);}
.m10f{transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.247531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247531,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m7b{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m103{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m21{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m56{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.md1{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);}
.m5b{transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.me0{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);}
.m9f{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.mcf{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);}
.m102{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,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);}
.m11c{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m43{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,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);}
.md2{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.mae{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.mad{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);}
.mec{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.mc2{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.mdf{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);}
.m6e{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);}
.m15{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250699,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.mc7{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251088,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.m32{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.mb4{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251894,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251967,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252377,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252440,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls3d{letter-spacing:-3.780000px;}
.ls21{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.960000px;}
.lsf{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.300000px;}
.ls35{letter-spacing:-0.279840px;}
.ls8{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.210000px;}
.lsd{letter-spacing:-0.180000px;}
.ls3f{letter-spacing:-0.162000px;}
.ls2c{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.126000px;}
.ls14{letter-spacing:-0.120000px;}
.ls36{letter-spacing:-0.104940px;}
.ls25{letter-spacing:-0.096000px;}
.ls28{letter-spacing:-0.069960px;}
.ls9{letter-spacing:-0.060000px;}
.ls24{letter-spacing:-0.055968px;}
.ls3c{letter-spacing:-0.054000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls33{letter-spacing:-0.034980px;}
.ls1b{letter-spacing:-0.027984px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.027984px;}
.ls17{letter-spacing:0.030000px;}
.ls16{letter-spacing:0.034800px;}
.ls2b{letter-spacing:0.034980px;}
.ls1f{letter-spacing:0.048000px;}
.ls19{letter-spacing:0.053814px;}
.ls37{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.055968px;}
.ls3{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.069960px;}
.ls23{letter-spacing:0.083952px;}
.ls18{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.096000px;}
.ls27{letter-spacing:0.104940px;}
.ls39{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.111936px;}
.ls2{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.150000px;}
.ls38{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.174900px;}
.ls11{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.210000px;}
.lsa{letter-spacing:0.240000px;}
.ls1d{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.300000px;}
.ls3b{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.420000px;}
.ls31{letter-spacing:0.475728px;}
.ls32{letter-spacing:0.480000px;}
.ls3a{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.816000px;}
.ls1{letter-spacing:2.852337px;}
.ls4{letter-spacing:2.902589px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5e{word-spacing:-59.520000px;}
.ws7a{word-spacing:-12.180000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-12.000000px;}
.ws72{word-spacing:-11.940000px;}
.ws39{word-spacing:-11.880000px;}
.ws84{word-spacing:-11.760000px;}
.wsd{word-spacing:-11.100000px;}
.ws71{word-spacing:-11.040000px;}
.ws80{word-spacing:-10.920000px;}
.ws93{word-spacing:-10.800000px;}
.ws94{word-spacing:-10.746000px;}
.ws31{word-spacing:-9.600000px;}
.ws3b{word-spacing:-9.552000px;}
.ws55{word-spacing:-8.400000px;}
.ws70{word-spacing:-7.170900px;}
.ws66{word-spacing:-7.100940px;}
.ws47{word-spacing:-7.065960px;}
.ws95{word-spacing:-7.020000px;}
.wsc{word-spacing:-6.996000px;}
.ws6b{word-spacing:-6.926040px;}
.ws8c{word-spacing:-5.680752px;}
.ws92{word-spacing:-5.652768px;}
.ws48{word-spacing:-5.624784px;}
.wse{word-spacing:-5.596800px;}
.ws3a{word-spacing:-5.568816px;}
.ws5f{word-spacing:-5.540832px;}
.ws6c{word-spacing:-1.920000px;}
.ws1b{word-spacing:-1.860000px;}
.wsb{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.728000px;}
.ws6f{word-spacing:-1.680000px;}
.ws63{word-spacing:-1.620000px;}
.ws33{word-spacing:-1.560000px;}
.ws3{word-spacing:-1.512000px;}
.ws60{word-spacing:-1.500000px;}
.ws77{word-spacing:-1.488000px;}
.ws41{word-spacing:-1.440000px;}
.ws56{word-spacing:-1.320000px;}
.ws4{word-spacing:-1.302000px;}
.ws61{word-spacing:-1.260000px;}
.ws79{word-spacing:-1.248000px;}
.ws2b{word-spacing:-1.200000px;}
.ws42{word-spacing:-1.140000px;}
.ws7c{word-spacing:-1.080000px;}
.ws78{word-spacing:-1.056000px;}
.ws9a{word-spacing:-1.026000px;}
.ws8b{word-spacing:-1.020000px;}
.ws25{word-spacing:-0.960000px;}
.ws24{word-spacing:-0.900000px;}
.ws69{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.840000px;}
.ws87{word-spacing:-0.816000px;}
.ws4d{word-spacing:-0.780000px;}
.ws96{word-spacing:-0.756000px;}
.ws15{word-spacing:-0.720000px;}
.ws50{word-spacing:-0.660000px;}
.ws52{word-spacing:-0.600000px;}
.ws53{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.480000px;}
.ws86{word-spacing:-0.475728px;}
.wsf{word-spacing:-0.420000px;}
.ws51{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.300000px;}
.ws98{word-spacing:-0.270000px;}
.ws73{word-spacing:-0.240000px;}
.ws5a{word-spacing:-0.192000px;}
.ws23{word-spacing:-0.180000px;}
.ws99{word-spacing:-0.162000px;}
.ws45{word-spacing:-0.144000px;}
.ws7{word-spacing:-0.120000px;}
.ws7f{word-spacing:-0.111936px;}
.ws9d{word-spacing:-0.108000px;}
.ws1f{word-spacing:-0.096000px;}
.ws64{word-spacing:-0.083952px;}
.ws27{word-spacing:-0.060000px;}
.ws1e{word-spacing:-0.055968px;}
.ws6a{word-spacing:-0.048000px;}
.ws75{word-spacing:-0.034980px;}
.ws2{word-spacing:0.000000px;}
.ws5c{word-spacing:0.027984px;}
.ws89{word-spacing:0.034980px;}
.ws5d{word-spacing:0.048000px;}
.ws9b{word-spacing:0.054000px;}
.ws76{word-spacing:0.055968px;}
.ws1c{word-spacing:0.060000px;}
.ws6d{word-spacing:0.069960px;}
.ws65{word-spacing:0.096000px;}
.ws8f{word-spacing:0.104940px;}
.ws22{word-spacing:0.120000px;}
.ws90{word-spacing:0.144000px;}
.ws12{word-spacing:0.180000px;}
.ws9e{word-spacing:0.216000px;}
.ws8{word-spacing:0.240000px;}
.ws8e{word-spacing:0.279840px;}
.ws16{word-spacing:0.300000px;}
.ws83{word-spacing:0.336000px;}
.ws36{word-spacing:0.360000px;}
.ws57{word-spacing:0.420000px;}
.wsa3{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480000px;}
.ws3c{word-spacing:0.540000px;}
.ws43{word-spacing:0.576000px;}
.ws3e{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.ws11{word-spacing:0.720000px;}
.ws5b{word-spacing:0.768000px;}
.ws6e{word-spacing:0.780000px;}
.ws17{word-spacing:0.840000px;}
.ws26{word-spacing:0.900000px;}
.ws9c{word-spacing:0.918000px;}
.ws4a{word-spacing:0.960000px;}
.ws37{word-spacing:1.020000px;}
.ws1a{word-spacing:1.080000px;}
.ws20{word-spacing:1.104000px;}
.ws2e{word-spacing:1.140000px;}
.wsa{word-spacing:1.200000px;}
.ws44{word-spacing:1.248000px;}
.ws34{word-spacing:1.260000px;}
.ws4b{word-spacing:1.320000px;}
.ws21{word-spacing:1.344000px;}
.ws38{word-spacing:1.380000px;}
.ws30{word-spacing:1.392000px;}
.ws49{word-spacing:1.500000px;}
.ws81{word-spacing:1.560000px;}
.ws19{word-spacing:1.620000px;}
.ws4f{word-spacing:1.680000px;}
.ws46{word-spacing:1.728000px;}
.ws9{word-spacing:1.740000px;}
.ws58{word-spacing:1.860000px;}
.ws1d{word-spacing:1.872000px;}
.ws18{word-spacing:1.920000px;}
.ws5{word-spacing:1.974000px;}
.ws7d{word-spacing:1.980000px;}
.ws3f{word-spacing:2.040000px;}
.ws40{word-spacing:2.100000px;}
.ws7e{word-spacing:2.160000px;}
.ws68{word-spacing:2.220000px;}
.ws7b{word-spacing:2.280000px;}
.ws28{word-spacing:2.340000px;}
.ws6{word-spacing:2.400000px;}
.ws10{word-spacing:2.460000px;}
.ws97{word-spacing:2.484000px;}
.ws54{word-spacing:2.580000px;}
.ws8d{word-spacing:2.640000px;}
.ws4c{word-spacing:2.700000px;}
.ws67{word-spacing:2.760000px;}
.ws62{word-spacing:2.820000px;}
.ws4e{word-spacing:2.880000px;}
.wsa2{word-spacing:3.078000px;}
.ws2c{word-spacing:3.120000px;}
.ws74{word-spacing:3.180000px;}
.ws2a{word-spacing:3.240000px;}
.ws59{word-spacing:3.420000px;}
.ws85{word-spacing:3.480000px;}
.ws32{word-spacing:3.540000px;}
.ws82{word-spacing:4.140000px;}
.ws29{word-spacing:4.200000px;}
.ws91{word-spacing:4.320000px;}
.ws8a{word-spacing:4.740000px;}
.wsa1{word-spacing:5.130000px;}
.wsa0{word-spacing:5.184000px;}
.ws88{word-spacing:8.352000px;}
._8{margin-left:-7.800000px;}
._5{margin-left:-6.318000px;}
._3{margin-left:-4.832400px;}
._1{margin-left:-3.552000px;}
._7{margin-left:-2.456400px;}
._0{margin-left:-1.449600px;}
._4{width:1.123200px;}
._2{width:2.406000px;}
._6{width:3.936000px;}
._9{width:5.707800px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:50.226900px;}
.y17{bottom:54.502500px;}
.y5{bottom:86.740200px;}
.y40{bottom:86.740350px;}
.y86{bottom:90.736200px;}
.yb8{bottom:90.736350px;}
.y169{bottom:90.885000px;}
.y4{bottom:99.490200px;}
.y3f{bottom:101.740350px;}
.yb7{bottom:101.740500px;}
.y66{bottom:105.736200px;}
.yad{bottom:105.736350px;}
.yde{bottom:105.736500px;}
.y168{bottom:107.385000px;}
.y3{bottom:112.240200px;}
.y3e{bottom:116.740350px;}
.yac{bottom:116.740500px;}
.ye8{bottom:116.740650px;}
.ya2{bottom:120.736350px;}
.yb6{bottom:120.736500px;}
.ydd{bottom:120.736650px;}
.y167{bottom:123.885000px;}
.y2{bottom:124.990200px;}
.y3d{bottom:131.740350px;}
.yab{bottom:131.740500px;}
.yb5{bottom:131.740650px;}
.y3c{bottom:135.736350px;}
.ya1{bottom:135.736500px;}
.ydc{bottom:135.736650px;}
.y10e{bottom:138.625050px;}
.y166{bottom:140.385000px;}
.y1{bottom:141.992100px;}
.ye4{bottom:146.740350px;}
.y3b{bottom:146.740500px;}
.ya0{bottom:146.740650px;}
.y11b{bottom:150.736350px;}
.y13f{bottom:150.736500px;}
.yaa{bottom:150.736650px;}
.ye7{bottom:150.736800px;}
.ydb{bottom:150.736950px;}
.y11d{bottom:154.282950px;}
.y165{bottom:156.885000px;}
.y85{bottom:157.525050px;}
.y10d{bottom:158.875050px;}
.y100{bottom:161.740500px;}
.y9f{bottom:161.740650px;}
.ya9{bottom:161.740800px;}
.yda{bottom:161.741100px;}
.ye3{bottom:165.736350px;}
.y3a{bottom:165.736500px;}
.y116{bottom:171.290850px;}
.y164{bottom:173.385000px;}
.y112{bottom:174.532950px;}
.y65{bottom:175.882950px;}
.yff{bottom:176.740500px;}
.yb4{bottom:176.740800px;}
.yd9{bottom:176.741100px;}
.y84{bottom:177.775050px;}
.y10c{bottom:179.125050px;}
.ye2{bottom:180.736500px;}
.y9e{bottom:180.736650px;}
.ya8{bottom:180.736800px;}
.yd8{bottom:180.737100px;}
.y13e{bottom:183.359550px;}
.y163{bottom:189.885000px;}
.y115{bottom:191.540850px;}
.yfe{bottom:191.740500px;}
.y11a{bottom:191.740650px;}
.yb3{bottom:191.740800px;}
.y111{bottom:194.782950px;}
.yfd{bottom:195.736500px;}
.ye1{bottom:195.736650px;}
.y9d{bottom:195.736800px;}
.y64{bottom:196.132950px;}
.y83{bottom:198.025050px;}
.y39{bottom:199.289550px;}
.y10b{bottom:199.375050px;}
.y13d{bottom:203.609550px;}
.y162{bottom:206.385000px;}
.yfc{bottom:206.740650px;}
.yb2{bottom:206.740800px;}
.y9c{bottom:206.740950px;}
.y107{bottom:208.548750px;}
.y113{bottom:211.790850px;}
.yd7{bottom:213.198750px;}
.y110{bottom:215.032950px;}
.y63{bottom:216.382950px;}
.y114{bottom:216.785850px;}
.y82{bottom:218.275050px;}
.y38{bottom:219.539550px;}
.y10a{bottom:219.625050px;}
.yfb{bottom:221.740650px;}
.yb1{bottom:221.740800px;}
.y161{bottom:222.885000px;}
.y13c{bottom:223.724550px;}
.y9b{bottom:225.736950px;}
.y106{bottom:228.798750px;}
.ye0{bottom:232.040850px;}
.yd6{bottom:233.298750px;}
.ya7{bottom:235.282950px;}
.y62{bottom:236.632950px;}
.yfa{bottom:236.740650px;}
.y81{bottom:238.525050px;}
.y160{bottom:239.385000px;}
.y37{bottom:239.789550px;}
.y109{bottom:239.875050px;}
.yb0{bottom:240.736800px;}
.y13b{bottom:243.839550px;}
.y105{bottom:249.048750px;}
.yf9{bottom:251.740650px;}
.ydf{bottom:252.290850px;}
.yd5{bottom:253.398750px;}
.ya6{bottom:255.532950px;}
.y15f{bottom:255.885000px;}
.y61{bottom:256.882950px;}
.y80{bottom:258.775050px;}
.y36{bottom:260.039550px;}
.y13a{bottom:263.954550px;}
.yf8{bottom:266.740650px;}
.y108{bottom:268.629000px;}
.y104{bottom:269.298750px;}
.y119{bottom:270.736650px;}
.y15e{bottom:272.385000px;}
.y9a{bottom:272.540850px;}
.yd4{bottom:273.498750px;}
.ya5{bottom:275.782950px;}
.y60{bottom:277.132950px;}
.ye6{bottom:279.025050px;}
.y35{bottom:280.289550px;}
.yf7{bottom:281.740650px;}
.y139{bottom:284.069550px;}
.yf6{bottom:285.736650px;}
.y15d{bottom:288.885000px;}
.y103{bottom:289.548750px;}
.y99{bottom:292.790850px;}
.yd3{bottom:293.598750px;}
.y7f{bottom:296.032950px;}
.y5f{bottom:297.382950px;}
.y33{bottom:300.539550px;}
.y138{bottom:304.184550px;}
.y15c{bottom:305.385000px;}
.y34{bottom:305.534550px;}
.y102{bottom:309.798750px;}
.y98{bottom:313.040850px;}
.yd2{bottom:313.698750px;}
.y7e{bottom:316.282950px;}
.y5e{bottom:317.632950px;}
.y32{bottom:320.789550px;}
.y118{bottom:321.277950px;}
.y15b{bottom:321.885000px;}
.y137{bottom:324.299550px;}
.yf5{bottom:330.048750px;}
.y97{bottom:333.290850px;}
.yd1{bottom:333.798750px;}
.y7d{bottom:336.532950px;}
.y5d{bottom:337.882950px;}
.y15a{bottom:338.385000px;}
.y31{bottom:341.039550px;}
.y136{bottom:344.414550px;}
.yf4{bottom:350.298750px;}
.y96{bottom:353.540850px;}
.yd0{bottom:353.898750px;}
.y159{bottom:354.885000px;}
.y7c{bottom:356.782950px;}
.y5c{bottom:358.132950px;}
.y30{bottom:361.289550px;}
.y135{bottom:364.529550px;}
.yf3{bottom:370.548750px;}
.y158{bottom:371.385000px;}
.y95{bottom:373.790850px;}
.ycf{bottom:373.998750px;}
.y7b{bottom:377.032950px;}
.y5b{bottom:378.382950px;}
.y2f{bottom:381.539550px;}
.y10f{bottom:382.027950px;}
.y134{bottom:384.644550px;}
.y157{bottom:387.885000px;}
.yf1{bottom:390.798750px;}
.y94{bottom:394.040850px;}
.yce{bottom:394.098750px;}
.yf2{bottom:395.793750px;}
.y7a{bottom:397.282950px;}
.y5a{bottom:398.632950px;}
.y2e{bottom:401.789550px;}
.y156{bottom:404.385000px;}
.y133{bottom:404.759550px;}
.yf0{bottom:411.048750px;}
.ycd{bottom:414.198750px;}
.y93{bottom:414.290850px;}
.y79{bottom:417.532950px;}
.y59{bottom:418.882950px;}
.y155{bottom:420.885000px;}
.y2d{bottom:422.039550px;}
.y132{bottom:424.874550px;}
.yef{bottom:431.298750px;}
.ycc{bottom:434.298750px;}
.y92{bottom:434.540850px;}
.y154{bottom:437.385000px;}
.y78{bottom:437.782950px;}
.y58{bottom:439.132950px;}
.y2c{bottom:442.289550px;}
.y131{bottom:444.989550px;}
.yee{bottom:451.548750px;}
.y153{bottom:453.885000px;}
.ycb{bottom:454.398750px;}
.y91{bottom:454.790850px;}
.y77{bottom:458.032950px;}
.y57{bottom:459.382950px;}
.y2b{bottom:462.539550px;}
.y130{bottom:465.104550px;}
.y152{bottom:470.385000px;}
.yed{bottom:471.798750px;}
.y14{bottom:472.752300px;}
.yca{bottom:474.498750px;}
.y90{bottom:475.040850px;}
.y76{bottom:478.282950px;}
.y55{bottom:479.632950px;}
.y2a{bottom:482.789550px;}
.y56{bottom:484.627950px;}
.y12f{bottom:485.219550px;}
.y151{bottom:486.885000px;}
.yec{bottom:492.048750px;}
.y13{bottom:493.002300px;}
.yc9{bottom:494.598750px;}
.y8f{bottom:495.290850px;}
.y75{bottom:498.532950px;}
.y54{bottom:499.882950px;}
.y29{bottom:503.039550px;}
.y150{bottom:503.385000px;}
.y12e{bottom:505.334550px;}
.yeb{bottom:512.298750px;}
.yc8{bottom:514.698750px;}
.y8e{bottom:515.540850px;}
.y74{bottom:518.782950px;}
.y14f{bottom:519.885000px;}
.y53{bottom:520.132950px;}
.y28{bottom:523.289550px;}
.y12d{bottom:525.449550px;}
.yaf{bottom:528.636900px;}
.yea{bottom:532.548750px;}
.yc7{bottom:534.798750px;}
.y8d{bottom:535.790850px;}
.y14e{bottom:536.385000px;}
.y12{bottom:538.764150px;}
.y73{bottom:539.032950px;}
.y52{bottom:540.382950px;}
.y27{bottom:543.539550px;}
.ye5{bottom:544.027950px;}
.y12c{bottom:545.564550px;}
.ye9{bottom:552.798750px;}
.y14d{bottom:552.885000px;}
.yc6{bottom:554.898750px;}
.y8c{bottom:556.040850px;}
.y11{bottom:559.014150px;}
.y72{bottom:559.282950px;}
.y26{bottom:563.789550px;}
.y12b{bottom:565.679550px;}
.y51{bottom:569.136900px;}
.y14c{bottom:569.385000px;}
.yae{bottom:573.048750px;}
.yc5{bottom:574.998750px;}
.y8b{bottom:576.290850px;}
.y10{bottom:579.264150px;}
.y71{bottom:579.532950px;}
.y25{bottom:584.039550px;}
.y12a{bottom:585.794550px;}
.y14b{bottom:585.885000px;}
.ya4{bottom:593.298750px;}
.yc4{bottom:595.098750px;}
.y8a{bottom:596.540850px;}
.yf{bottom:599.514150px;}
.y70{bottom:599.782950px;}
.y14a{bottom:602.385000px;}
.y24{bottom:604.289550px;}
.y129{bottom:605.909550px;}
.y50{bottom:613.548750px;}
.yc3{bottom:615.198750px;}
.y89{bottom:616.790850px;}
.y149{bottom:618.885000px;}
.ye{bottom:619.764150px;}
.y6f{bottom:620.032950px;}
.y23{bottom:624.539550px;}
.y128{bottom:626.024550px;}
.y4f{bottom:633.798750px;}
.yc2{bottom:635.298750px;}
.y148{bottom:635.385000px;}
.y88{bottom:637.040850px;}
.yd{bottom:640.014150px;}
.y6e{bottom:640.282950px;}
.y22{bottom:644.789550px;}
.y127{bottom:646.139550px;}
.y147{bottom:651.885000px;}
.y4e{bottom:654.048750px;}
.yc1{bottom:655.398750px;}
.y87{bottom:657.290850px;}
.yc{bottom:660.264150px;}
.y117{bottom:662.285850px;}
.y21{bottom:665.039550px;}
.y126{bottom:666.254550px;}
.y146{bottom:668.385000px;}
.y4d{bottom:674.298750px;}
.yc0{bottom:675.498750px;}
.y6d{bottom:677.540850px;}
.y145{bottom:684.885000px;}
.y20{bottom:685.289550px;}
.y125{bottom:686.369550px;}
.y4c{bottom:694.548750px;}
.ybf{bottom:695.598750px;}
.y6c{bottom:697.790850px;}
.y144{bottom:701.385000px;}
.y1f{bottom:705.539550px;}
.y124{bottom:706.484550px;}
.y4b{bottom:714.798750px;}
.ybe{bottom:715.698750px;}
.y143{bottom:717.885000px;}
.y6b{bottom:718.040850px;}
.y1e{bottom:725.789550px;}
.y123{bottom:726.599550px;}
.y142{bottom:734.385000px;}
.y4a{bottom:735.048750px;}
.ybd{bottom:735.798750px;}
.y6a{bottom:738.290850px;}
.y1d{bottom:746.039550px;}
.y122{bottom:746.714550px;}
.y141{bottom:750.885000px;}
.yb{bottom:752.797650px;}
.y49{bottom:755.298750px;}
.ybc{bottom:755.898750px;}
.y69{bottom:758.540850px;}
.y11c{bottom:760.293750px;}
.y1c{bottom:766.289550px;}
.y121{bottom:766.829550px;}
.ya{bottom:773.797650px;}
.y48{bottom:775.548750px;}
.y140{bottom:775.888800px;}
.ybb{bottom:775.998750px;}
.y68{bottom:778.790850px;}
.y101{bottom:780.543750px;}
.y1b{bottom:786.539550px;}
.y120{bottom:786.944550px;}
.y47{bottom:795.798750px;}
.yba{bottom:796.098750px;}
.y67{bottom:799.040850px;}
.y1a{bottom:806.789550px;}
.y11f{bottom:807.059550px;}
.y9{bottom:807.553500px;}
.y46{bottom:816.048750px;}
.yb9{bottom:816.198600px;}
.y19{bottom:827.039550px;}
.y11e{bottom:827.174550px;}
.y45{bottom:836.298750px;}
.ya3{bottom:841.293750px;}
.y18{bottom:855.793500px;}
.y44{bottom:856.548750px;}
.y8{bottom:880.653450px;}
.y7{bottom:880.653600px;}
.y6{bottom:893.253600px;}
.y16{bottom:898.288950px;}
.y42{bottom:898.290300px;}
.y15{bottom:898.309800px;}
.y41{bottom:898.311150px;}
.ha{height:19.756704px;}
.h9{height:24.695880px;}
.h3{height:29.652000px;}
.h2{height:33.888000px;}
.hb{height:34.032000px;}
.hd{height:38.124000px;}
.hc{height:38.286000px;}
.h4{height:42.360000px;}
.h7{height:42.540000px;}
.h6{height:44.478000px;}
.h8{height:44.675880px;}
.h5{height:50.832000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:114.803100px;}
.x1{left:170.078700px;}
.x8{left:180.514650px;}
.xe{left:183.814950px;}
.x15{left:188.555850px;}
.x5{left:191.338500px;}
.x16{left:196.999200px;}
.x17{left:200.956200px;}
.x18{left:209.291250px;}
.x11{left:233.515050px;}
.x1b{left:237.454950px;}
.x12{left:241.953150px;}
.x1c{left:245.863050px;}
.xf{left:285.444300px;}
.x10{left:293.764800px;}
.x1a{left:302.894100px;}
.x13{left:317.657100px;}
.x14{left:326.038650px;}
.x3{left:355.806750px;}
.x9{left:376.198350px;}
.xa{left:380.467800px;}
.x2{left:441.664650px;}
.x6{left:468.220500px;}
.x7{left:472.397100px;}
.xc{left:497.557800px;}
.xd{left:506.009700px;}
.x19{left:565.766550px;}
.xb{left:569.928150px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls3d{letter-spacing:-3.360000pt;}
.ls21{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.853333pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.266667pt;}
.ls35{letter-spacing:-0.248747pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.186667pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls3f{letter-spacing:-0.144000pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls36{letter-spacing:-0.093280pt;}
.ls25{letter-spacing:-0.085333pt;}
.ls28{letter-spacing:-0.062187pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls24{letter-spacing:-0.049749pt;}
.ls3c{letter-spacing:-0.048000pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls33{letter-spacing:-0.031093pt;}
.ls1b{letter-spacing:-0.024875pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.024875pt;}
.ls17{letter-spacing:0.026667pt;}
.ls16{letter-spacing:0.030933pt;}
.ls2b{letter-spacing:0.031093pt;}
.ls1f{letter-spacing:0.042667pt;}
.ls19{letter-spacing:0.047835pt;}
.ls37{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.049749pt;}
.ls3{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.062187pt;}
.ls23{letter-spacing:0.074624pt;}
.ls18{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.085333pt;}
.ls27{letter-spacing:0.093280pt;}
.ls39{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.099499pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133333pt;}
.ls38{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.155467pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.186667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls1d{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls3b{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.373333pt;}
.ls31{letter-spacing:0.422869pt;}
.ls32{letter-spacing:0.426667pt;}
.ls3a{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.725333pt;}
.ls1{letter-spacing:2.535411pt;}
.ls4{letter-spacing:2.580079pt;}
.ws5e{word-spacing:-52.906667pt;}
.ws7a{word-spacing:-10.826667pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws72{word-spacing:-10.613333pt;}
.ws39{word-spacing:-10.560000pt;}
.ws84{word-spacing:-10.453333pt;}
.wsd{word-spacing:-9.866667pt;}
.ws71{word-spacing:-9.813333pt;}
.ws80{word-spacing:-9.706667pt;}
.ws93{word-spacing:-9.600000pt;}
.ws94{word-spacing:-9.552000pt;}
.ws31{word-spacing:-8.533333pt;}
.ws3b{word-spacing:-8.490667pt;}
.ws55{word-spacing:-7.466667pt;}
.ws70{word-spacing:-6.374133pt;}
.ws66{word-spacing:-6.311947pt;}
.ws47{word-spacing:-6.280853pt;}
.ws95{word-spacing:-6.240000pt;}
.wsc{word-spacing:-6.218667pt;}
.ws6b{word-spacing:-6.156480pt;}
.ws8c{word-spacing:-5.049557pt;}
.ws92{word-spacing:-5.024683pt;}
.ws48{word-spacing:-4.999808pt;}
.wse{word-spacing:-4.974933pt;}
.ws3a{word-spacing:-4.950059pt;}
.ws5f{word-spacing:-4.925184pt;}
.ws6c{word-spacing:-1.706667pt;}
.ws1b{word-spacing:-1.653333pt;}
.wsb{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.536000pt;}
.ws6f{word-spacing:-1.493333pt;}
.ws63{word-spacing:-1.440000pt;}
.ws33{word-spacing:-1.386667pt;}
.ws3{word-spacing:-1.344000pt;}
.ws60{word-spacing:-1.333333pt;}
.ws77{word-spacing:-1.322667pt;}
.ws41{word-spacing:-1.280000pt;}
.ws56{word-spacing:-1.173333pt;}
.ws4{word-spacing:-1.157333pt;}
.ws61{word-spacing:-1.120000pt;}
.ws79{word-spacing:-1.109333pt;}
.ws2b{word-spacing:-1.066667pt;}
.ws42{word-spacing:-1.013333pt;}
.ws7c{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.938667pt;}
.ws9a{word-spacing:-0.912000pt;}
.ws8b{word-spacing:-0.906667pt;}
.ws25{word-spacing:-0.853333pt;}
.ws24{word-spacing:-0.800000pt;}
.ws69{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.746667pt;}
.ws87{word-spacing:-0.725333pt;}
.ws4d{word-spacing:-0.693333pt;}
.ws96{word-spacing:-0.672000pt;}
.ws15{word-spacing:-0.640000pt;}
.ws50{word-spacing:-0.586667pt;}
.ws52{word-spacing:-0.533333pt;}
.ws53{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.426667pt;}
.ws86{word-spacing:-0.422869pt;}
.wsf{word-spacing:-0.373333pt;}
.ws51{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws98{word-spacing:-0.240000pt;}
.ws73{word-spacing:-0.213333pt;}
.ws5a{word-spacing:-0.170667pt;}
.ws23{word-spacing:-0.160000pt;}
.ws99{word-spacing:-0.144000pt;}
.ws45{word-spacing:-0.128000pt;}
.ws7{word-spacing:-0.106667pt;}
.ws7f{word-spacing:-0.099499pt;}
.ws9d{word-spacing:-0.096000pt;}
.ws1f{word-spacing:-0.085333pt;}
.ws64{word-spacing:-0.074624pt;}
.ws27{word-spacing:-0.053333pt;}
.ws1e{word-spacing:-0.049749pt;}
.ws6a{word-spacing:-0.042667pt;}
.ws75{word-spacing:-0.031093pt;}
.ws2{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.024875pt;}
.ws89{word-spacing:0.031093pt;}
.ws5d{word-spacing:0.042667pt;}
.ws9b{word-spacing:0.048000pt;}
.ws76{word-spacing:0.049749pt;}
.ws1c{word-spacing:0.053333pt;}
.ws6d{word-spacing:0.062187pt;}
.ws65{word-spacing:0.085333pt;}
.ws8f{word-spacing:0.093280pt;}
.ws22{word-spacing:0.106667pt;}
.ws90{word-spacing:0.128000pt;}
.ws12{word-spacing:0.160000pt;}
.ws9e{word-spacing:0.192000pt;}
.ws8{word-spacing:0.213333pt;}
.ws8e{word-spacing:0.248747pt;}
.ws16{word-spacing:0.266667pt;}
.ws83{word-spacing:0.298667pt;}
.ws36{word-spacing:0.320000pt;}
.ws57{word-spacing:0.373333pt;}
.wsa3{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.426667pt;}
.ws3c{word-spacing:0.480000pt;}
.ws43{word-spacing:0.512000pt;}
.ws3e{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.ws11{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.682667pt;}
.ws6e{word-spacing:0.693333pt;}
.ws17{word-spacing:0.746667pt;}
.ws26{word-spacing:0.800000pt;}
.ws9c{word-spacing:0.816000pt;}
.ws4a{word-spacing:0.853333pt;}
.ws37{word-spacing:0.906667pt;}
.ws1a{word-spacing:0.960000pt;}
.ws20{word-spacing:0.981333pt;}
.ws2e{word-spacing:1.013333pt;}
.wsa{word-spacing:1.066667pt;}
.ws44{word-spacing:1.109333pt;}
.ws34{word-spacing:1.120000pt;}
.ws4b{word-spacing:1.173333pt;}
.ws21{word-spacing:1.194667pt;}
.ws38{word-spacing:1.226667pt;}
.ws30{word-spacing:1.237333pt;}
.ws49{word-spacing:1.333333pt;}
.ws81{word-spacing:1.386667pt;}
.ws19{word-spacing:1.440000pt;}
.ws4f{word-spacing:1.493333pt;}
.ws46{word-spacing:1.536000pt;}
.ws9{word-spacing:1.546667pt;}
.ws58{word-spacing:1.653333pt;}
.ws1d{word-spacing:1.664000pt;}
.ws18{word-spacing:1.706667pt;}
.ws5{word-spacing:1.754667pt;}
.ws7d{word-spacing:1.760000pt;}
.ws3f{word-spacing:1.813333pt;}
.ws40{word-spacing:1.866667pt;}
.ws7e{word-spacing:1.920000pt;}
.ws68{word-spacing:1.973333pt;}
.ws7b{word-spacing:2.026667pt;}
.ws28{word-spacing:2.080000pt;}
.ws6{word-spacing:2.133333pt;}
.ws10{word-spacing:2.186667pt;}
.ws97{word-spacing:2.208000pt;}
.ws54{word-spacing:2.293333pt;}
.ws8d{word-spacing:2.346667pt;}
.ws4c{word-spacing:2.400000pt;}
.ws67{word-spacing:2.453333pt;}
.ws62{word-spacing:2.506667pt;}
.ws4e{word-spacing:2.560000pt;}
.wsa2{word-spacing:2.736000pt;}
.ws2c{word-spacing:2.773333pt;}
.ws74{word-spacing:2.826667pt;}
.ws2a{word-spacing:2.880000pt;}
.ws59{word-spacing:3.040000pt;}
.ws85{word-spacing:3.093333pt;}
.ws32{word-spacing:3.146667pt;}
.ws82{word-spacing:3.680000pt;}
.ws29{word-spacing:3.733333pt;}
.ws91{word-spacing:3.840000pt;}
.ws8a{word-spacing:4.213333pt;}
.wsa1{word-spacing:4.560000pt;}
.wsa0{word-spacing:4.608000pt;}
.ws88{word-spacing:7.424000pt;}
._8{margin-left:-6.933333pt;}
._5{margin-left:-5.616000pt;}
._3{margin-left:-4.295467pt;}
._1{margin-left:-3.157333pt;}
._7{margin-left:-2.183467pt;}
._0{margin-left:-1.288533pt;}
._4{width:0.998400pt;}
._2{width:2.138667pt;}
._6{width:3.498667pt;}
._9{width:5.073600pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:44.646133pt;}
.y17{bottom:48.446667pt;}
.y5{bottom:77.102400pt;}
.y40{bottom:77.102533pt;}
.y86{bottom:80.654400pt;}
.yb8{bottom:80.654533pt;}
.y169{bottom:80.786667pt;}
.y4{bottom:88.435733pt;}
.y3f{bottom:90.435867pt;}
.yb7{bottom:90.436000pt;}
.y66{bottom:93.987733pt;}
.yad{bottom:93.987867pt;}
.yde{bottom:93.988000pt;}
.y168{bottom:95.453333pt;}
.y3{bottom:99.769067pt;}
.y3e{bottom:103.769200pt;}
.yac{bottom:103.769333pt;}
.ye8{bottom:103.769467pt;}
.ya2{bottom:107.321200pt;}
.yb6{bottom:107.321333pt;}
.ydd{bottom:107.321467pt;}
.y167{bottom:110.120000pt;}
.y2{bottom:111.102400pt;}
.y3d{bottom:117.102533pt;}
.yab{bottom:117.102667pt;}
.yb5{bottom:117.102800pt;}
.y3c{bottom:120.654533pt;}
.ya1{bottom:120.654667pt;}
.ydc{bottom:120.654800pt;}
.y10e{bottom:123.222267pt;}
.y166{bottom:124.786667pt;}
.y1{bottom:126.215200pt;}
.ye4{bottom:130.435867pt;}
.y3b{bottom:130.436000pt;}
.ya0{bottom:130.436133pt;}
.y11b{bottom:133.987867pt;}
.y13f{bottom:133.988000pt;}
.yaa{bottom:133.988133pt;}
.ye7{bottom:133.988267pt;}
.ydb{bottom:133.988400pt;}
.y11d{bottom:137.140400pt;}
.y165{bottom:139.453333pt;}
.y85{bottom:140.022267pt;}
.y10d{bottom:141.222267pt;}
.y100{bottom:143.769333pt;}
.y9f{bottom:143.769467pt;}
.ya9{bottom:143.769600pt;}
.yda{bottom:143.769867pt;}
.ye3{bottom:147.321200pt;}
.y3a{bottom:147.321333pt;}
.y116{bottom:152.258533pt;}
.y164{bottom:154.120000pt;}
.y112{bottom:155.140400pt;}
.y65{bottom:156.340400pt;}
.yff{bottom:157.102667pt;}
.yb4{bottom:157.102933pt;}
.yd9{bottom:157.103200pt;}
.y84{bottom:158.022267pt;}
.y10c{bottom:159.222267pt;}
.ye2{bottom:160.654667pt;}
.y9e{bottom:160.654800pt;}
.ya8{bottom:160.654933pt;}
.yd8{bottom:160.655200pt;}
.y13e{bottom:162.986267pt;}
.y163{bottom:168.786667pt;}
.y115{bottom:170.258533pt;}
.yfe{bottom:170.436000pt;}
.y11a{bottom:170.436133pt;}
.yb3{bottom:170.436267pt;}
.y111{bottom:173.140400pt;}
.yfd{bottom:173.988000pt;}
.ye1{bottom:173.988133pt;}
.y9d{bottom:173.988267pt;}
.y64{bottom:174.340400pt;}
.y83{bottom:176.022267pt;}
.y39{bottom:177.146267pt;}
.y10b{bottom:177.222267pt;}
.y13d{bottom:180.986267pt;}
.y162{bottom:183.453333pt;}
.yfc{bottom:183.769467pt;}
.yb2{bottom:183.769600pt;}
.y9c{bottom:183.769733pt;}
.y107{bottom:185.376667pt;}
.y113{bottom:188.258533pt;}
.yd7{bottom:189.510000pt;}
.y110{bottom:191.140400pt;}
.y63{bottom:192.340400pt;}
.y114{bottom:192.698533pt;}
.y82{bottom:194.022267pt;}
.y38{bottom:195.146267pt;}
.y10a{bottom:195.222267pt;}
.yfb{bottom:197.102800pt;}
.yb1{bottom:197.102933pt;}
.y161{bottom:198.120000pt;}
.y13c{bottom:198.866267pt;}
.y9b{bottom:200.655067pt;}
.y106{bottom:203.376667pt;}
.ye0{bottom:206.258533pt;}
.yd6{bottom:207.376667pt;}
.ya7{bottom:209.140400pt;}
.y62{bottom:210.340400pt;}
.yfa{bottom:210.436133pt;}
.y81{bottom:212.022267pt;}
.y160{bottom:212.786667pt;}
.y37{bottom:213.146267pt;}
.y109{bottom:213.222267pt;}
.yb0{bottom:213.988267pt;}
.y13b{bottom:216.746267pt;}
.y105{bottom:221.376667pt;}
.yf9{bottom:223.769467pt;}
.ydf{bottom:224.258533pt;}
.yd5{bottom:225.243333pt;}
.ya6{bottom:227.140400pt;}
.y15f{bottom:227.453333pt;}
.y61{bottom:228.340400pt;}
.y80{bottom:230.022267pt;}
.y36{bottom:231.146267pt;}
.y13a{bottom:234.626267pt;}
.yf8{bottom:237.102800pt;}
.y108{bottom:238.781333pt;}
.y104{bottom:239.376667pt;}
.y119{bottom:240.654800pt;}
.y15e{bottom:242.120000pt;}
.y9a{bottom:242.258533pt;}
.yd4{bottom:243.110000pt;}
.ya5{bottom:245.140400pt;}
.y60{bottom:246.340400pt;}
.ye6{bottom:248.022267pt;}
.y35{bottom:249.146267pt;}
.yf7{bottom:250.436133pt;}
.y139{bottom:252.506267pt;}
.yf6{bottom:253.988133pt;}
.y15d{bottom:256.786667pt;}
.y103{bottom:257.376667pt;}
.y99{bottom:260.258533pt;}
.yd3{bottom:260.976667pt;}
.y7f{bottom:263.140400pt;}
.y5f{bottom:264.340400pt;}
.y33{bottom:267.146267pt;}
.y138{bottom:270.386267pt;}
.y15c{bottom:271.453333pt;}
.y34{bottom:271.586267pt;}
.y102{bottom:275.376667pt;}
.y98{bottom:278.258533pt;}
.yd2{bottom:278.843333pt;}
.y7e{bottom:281.140400pt;}
.y5e{bottom:282.340400pt;}
.y32{bottom:285.146267pt;}
.y118{bottom:285.580400pt;}
.y15b{bottom:286.120000pt;}
.y137{bottom:288.266267pt;}
.yf5{bottom:293.376667pt;}
.y97{bottom:296.258533pt;}
.yd1{bottom:296.710000pt;}
.y7d{bottom:299.140400pt;}
.y5d{bottom:300.340400pt;}
.y15a{bottom:300.786667pt;}
.y31{bottom:303.146267pt;}
.y136{bottom:306.146267pt;}
.yf4{bottom:311.376667pt;}
.y96{bottom:314.258533pt;}
.yd0{bottom:314.576667pt;}
.y159{bottom:315.453333pt;}
.y7c{bottom:317.140400pt;}
.y5c{bottom:318.340400pt;}
.y30{bottom:321.146267pt;}
.y135{bottom:324.026267pt;}
.yf3{bottom:329.376667pt;}
.y158{bottom:330.120000pt;}
.y95{bottom:332.258533pt;}
.ycf{bottom:332.443333pt;}
.y7b{bottom:335.140400pt;}
.y5b{bottom:336.340400pt;}
.y2f{bottom:339.146267pt;}
.y10f{bottom:339.580400pt;}
.y134{bottom:341.906267pt;}
.y157{bottom:344.786667pt;}
.yf1{bottom:347.376667pt;}
.y94{bottom:350.258533pt;}
.yce{bottom:350.310000pt;}
.yf2{bottom:351.816667pt;}
.y7a{bottom:353.140400pt;}
.y5a{bottom:354.340400pt;}
.y2e{bottom:357.146267pt;}
.y156{bottom:359.453333pt;}
.y133{bottom:359.786267pt;}
.yf0{bottom:365.376667pt;}
.ycd{bottom:368.176667pt;}
.y93{bottom:368.258533pt;}
.y79{bottom:371.140400pt;}
.y59{bottom:372.340400pt;}
.y155{bottom:374.120000pt;}
.y2d{bottom:375.146267pt;}
.y132{bottom:377.666267pt;}
.yef{bottom:383.376667pt;}
.ycc{bottom:386.043333pt;}
.y92{bottom:386.258533pt;}
.y154{bottom:388.786667pt;}
.y78{bottom:389.140400pt;}
.y58{bottom:390.340400pt;}
.y2c{bottom:393.146267pt;}
.y131{bottom:395.546267pt;}
.yee{bottom:401.376667pt;}
.y153{bottom:403.453333pt;}
.ycb{bottom:403.910000pt;}
.y91{bottom:404.258533pt;}
.y77{bottom:407.140400pt;}
.y57{bottom:408.340400pt;}
.y2b{bottom:411.146267pt;}
.y130{bottom:413.426267pt;}
.y152{bottom:418.120000pt;}
.yed{bottom:419.376667pt;}
.y14{bottom:420.224267pt;}
.yca{bottom:421.776667pt;}
.y90{bottom:422.258533pt;}
.y76{bottom:425.140400pt;}
.y55{bottom:426.340400pt;}
.y2a{bottom:429.146267pt;}
.y56{bottom:430.780400pt;}
.y12f{bottom:431.306267pt;}
.y151{bottom:432.786667pt;}
.yec{bottom:437.376667pt;}
.y13{bottom:438.224267pt;}
.yc9{bottom:439.643333pt;}
.y8f{bottom:440.258533pt;}
.y75{bottom:443.140400pt;}
.y54{bottom:444.340400pt;}
.y29{bottom:447.146267pt;}
.y150{bottom:447.453333pt;}
.y12e{bottom:449.186267pt;}
.yeb{bottom:455.376667pt;}
.yc8{bottom:457.510000pt;}
.y8e{bottom:458.258533pt;}
.y74{bottom:461.140400pt;}
.y14f{bottom:462.120000pt;}
.y53{bottom:462.340400pt;}
.y28{bottom:465.146267pt;}
.y12d{bottom:467.066267pt;}
.yaf{bottom:469.899467pt;}
.yea{bottom:473.376667pt;}
.yc7{bottom:475.376667pt;}
.y8d{bottom:476.258533pt;}
.y14e{bottom:476.786667pt;}
.y12{bottom:478.901467pt;}
.y73{bottom:479.140400pt;}
.y52{bottom:480.340400pt;}
.y27{bottom:483.146267pt;}
.ye5{bottom:483.580400pt;}
.y12c{bottom:484.946267pt;}
.ye9{bottom:491.376667pt;}
.y14d{bottom:491.453333pt;}
.yc6{bottom:493.243333pt;}
.y8c{bottom:494.258533pt;}
.y11{bottom:496.901467pt;}
.y72{bottom:497.140400pt;}
.y26{bottom:501.146267pt;}
.y12b{bottom:502.826267pt;}
.y51{bottom:505.899467pt;}
.y14c{bottom:506.120000pt;}
.yae{bottom:509.376667pt;}
.yc5{bottom:511.110000pt;}
.y8b{bottom:512.258533pt;}
.y10{bottom:514.901467pt;}
.y71{bottom:515.140400pt;}
.y25{bottom:519.146267pt;}
.y12a{bottom:520.706267pt;}
.y14b{bottom:520.786667pt;}
.ya4{bottom:527.376667pt;}
.yc4{bottom:528.976667pt;}
.y8a{bottom:530.258533pt;}
.yf{bottom:532.901467pt;}
.y70{bottom:533.140400pt;}
.y14a{bottom:535.453333pt;}
.y24{bottom:537.146267pt;}
.y129{bottom:538.586267pt;}
.y50{bottom:545.376667pt;}
.yc3{bottom:546.843333pt;}
.y89{bottom:548.258533pt;}
.y149{bottom:550.120000pt;}
.ye{bottom:550.901467pt;}
.y6f{bottom:551.140400pt;}
.y23{bottom:555.146267pt;}
.y128{bottom:556.466267pt;}
.y4f{bottom:563.376667pt;}
.yc2{bottom:564.710000pt;}
.y148{bottom:564.786667pt;}
.y88{bottom:566.258533pt;}
.yd{bottom:568.901467pt;}
.y6e{bottom:569.140400pt;}
.y22{bottom:573.146267pt;}
.y127{bottom:574.346267pt;}
.y147{bottom:579.453333pt;}
.y4e{bottom:581.376667pt;}
.yc1{bottom:582.576667pt;}
.y87{bottom:584.258533pt;}
.yc{bottom:586.901467pt;}
.y117{bottom:588.698533pt;}
.y21{bottom:591.146267pt;}
.y126{bottom:592.226267pt;}
.y146{bottom:594.120000pt;}
.y4d{bottom:599.376667pt;}
.yc0{bottom:600.443333pt;}
.y6d{bottom:602.258533pt;}
.y145{bottom:608.786667pt;}
.y20{bottom:609.146267pt;}
.y125{bottom:610.106267pt;}
.y4c{bottom:617.376667pt;}
.ybf{bottom:618.310000pt;}
.y6c{bottom:620.258533pt;}
.y144{bottom:623.453333pt;}
.y1f{bottom:627.146267pt;}
.y124{bottom:627.986267pt;}
.y4b{bottom:635.376667pt;}
.ybe{bottom:636.176667pt;}
.y143{bottom:638.120000pt;}
.y6b{bottom:638.258533pt;}
.y1e{bottom:645.146267pt;}
.y123{bottom:645.866267pt;}
.y142{bottom:652.786667pt;}
.y4a{bottom:653.376667pt;}
.ybd{bottom:654.043333pt;}
.y6a{bottom:656.258533pt;}
.y1d{bottom:663.146267pt;}
.y122{bottom:663.746267pt;}
.y141{bottom:667.453333pt;}
.yb{bottom:669.153467pt;}
.y49{bottom:671.376667pt;}
.ybc{bottom:671.910000pt;}
.y69{bottom:674.258533pt;}
.y11c{bottom:675.816667pt;}
.y1c{bottom:681.146267pt;}
.y121{bottom:681.626267pt;}
.ya{bottom:687.820133pt;}
.y48{bottom:689.376667pt;}
.y140{bottom:689.678933pt;}
.ybb{bottom:689.776667pt;}
.y68{bottom:692.258533pt;}
.y101{bottom:693.816667pt;}
.y1b{bottom:699.146267pt;}
.y120{bottom:699.506267pt;}
.y47{bottom:707.376667pt;}
.yba{bottom:707.643333pt;}
.y67{bottom:710.258533pt;}
.y1a{bottom:717.146267pt;}
.y11f{bottom:717.386267pt;}
.y9{bottom:717.825333pt;}
.y46{bottom:725.376667pt;}
.yb9{bottom:725.509867pt;}
.y19{bottom:735.146267pt;}
.y11e{bottom:735.266267pt;}
.y45{bottom:743.376667pt;}
.ya3{bottom:747.816667pt;}
.y18{bottom:760.705333pt;}
.y44{bottom:761.376667pt;}
.y8{bottom:782.803067pt;}
.y7{bottom:782.803200pt;}
.y6{bottom:794.003200pt;}
.y16{bottom:798.479067pt;}
.y42{bottom:798.480267pt;}
.y15{bottom:798.497600pt;}
.y41{bottom:798.498800pt;}
.ha{height:17.561515pt;}
.h9{height:21.951893pt;}
.h3{height:26.357333pt;}
.h2{height:30.122667pt;}
.hb{height:30.250667pt;}
.hd{height:33.888000pt;}
.hc{height:34.032000pt;}
.h4{height:37.653333pt;}
.h7{height:37.813333pt;}
.h6{height:39.536000pt;}
.h8{height:39.711893pt;}
.h5{height:45.184000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:102.047200pt;}
.x1{left:151.181067pt;}
.x8{left:160.457467pt;}
.xe{left:163.391067pt;}
.x15{left:167.605200pt;}
.x5{left:170.078667pt;}
.x16{left:175.110400pt;}
.x17{left:178.627733pt;}
.x18{left:186.036667pt;}
.x11{left:207.568933pt;}
.x1b{left:211.071067pt;}
.x12{left:215.069467pt;}
.x1c{left:218.544933pt;}
.xf{left:253.728267pt;}
.x10{left:261.124267pt;}
.x1a{left:269.239200pt;}
.x13{left:282.361867pt;}
.x14{left:289.812133pt;}
.x3{left:316.272667pt;}
.x9{left:334.398533pt;}
.xa{left:338.193600pt;}
.x2{left:392.590800pt;}
.x6{left:416.196000pt;}
.x7{left:419.908533pt;}
.xc{left:442.273600pt;}
.xd{left:449.786400pt;}
.x19{left:502.903600pt;}
.xb{left:506.602800pt;}
}




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