
    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_78e373df4bbf432ada523aa7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_68b4ae9b9df73f7b16ceb09f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_717a03a346427c93bb196239.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_97a50933750b355133e303ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6867ff066ebf69bd7396ca88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f1934c07fcd7475c02af7214.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111000;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_e7578d98f7dba0ea060c8d5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691895;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;}
.m1c{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);}
.m17{transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m86{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);}
.m25{transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m5c{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.m81{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);}
.m7b{transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.maa{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m7e{transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.m9e{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);}
.m16{transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m9b{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);}
.m63{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);}
.m14{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m8e{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);}
.m2b{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);}
.m7a{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);}
.m15{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m7d{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.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);}
.m5d{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m58{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.maf{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);}
.m8a{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m11{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.ma5{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m74{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m69{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);}
.m34{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m51{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.mad{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);}
.m60{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m40{transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m27{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m18{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.mb3{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.906800px;}
.ls12{letter-spacing:-3.510000px;}
.ls38{letter-spacing:-2.754000px;}
.ls1f{letter-spacing:-0.810000px;}
.ls31{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.420000px;}
.ls28{letter-spacing:-0.399000px;}
.ls15{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.244860px;}
.ls20{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.228000px;}
.ls9{letter-spacing:-0.192000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.174900px;}
.ls36{letter-spacing:-0.171000px;}
.ls17{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.114000px;}
.ls26{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.060000px;}
.ls25{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.030000px;}
.ls1{letter-spacing:0.057000px;}
.ls10{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.114000px;}
.lsf{letter-spacing:0.120000px;}
.ls29{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.171000px;}
.lse{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.227153px;}
.ls1e{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.285000px;}
.lsb{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.390000px;}
.ls23{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.434162px;}
.ls22{letter-spacing:0.450000px;}
.ls3{letter-spacing:0.480000px;}
.ls2d{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.720000px;}
.ls24{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.260000px;}
.ls2e{letter-spacing:1.320000px;}
.lsa{letter-spacing:1.350000px;}
.ls18{letter-spacing:1.519200px;}
.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;}
}
.ws6d{word-spacing:-60.000000px;}
.ws0{word-spacing:-21.216000px;}
.ws1{word-spacing:-17.064000px;}
.ws35{word-spacing:-15.552000px;}
.ws36{word-spacing:-14.148000px;}
.ws8f{word-spacing:-13.878000px;}
.ws32{word-spacing:-13.068000px;}
.ws58{word-spacing:-12.798000px;}
.wsbe{word-spacing:-12.474000px;}
.wsb4{word-spacing:-12.258000px;}
.ws1e{word-spacing:-11.880000px;}
.ws34{word-spacing:-11.760000px;}
.ws2{word-spacing:-11.700000px;}
.ws33{word-spacing:-11.520000px;}
.ws1f{word-spacing:-11.400000px;}
.ws80{word-spacing:-11.220000px;}
.wsbb{word-spacing:-10.710000px;}
.ws9d{word-spacing:-10.176000px;}
.ws9c{word-spacing:-10.032000px;}
.wsbd{word-spacing:-9.945000px;}
.ws9b{word-spacing:-9.360000px;}
.ws64{word-spacing:-7.345800px;}
.wsbc{word-spacing:-7.191000px;}
.ws9a{word-spacing:-7.170900px;}
.wsab{word-spacing:-7.100940px;}
.ws95{word-spacing:-3.660000px;}
.ws96{word-spacing:-2.880000px;}
.ws2a{word-spacing:-2.820000px;}
.ws9e{word-spacing:-2.760000px;}
.wsb5{word-spacing:-2.700000px;}
.ws50{word-spacing:-2.640000px;}
.ws2e{word-spacing:-2.580000px;}
.ws76{word-spacing:-2.565000px;}
.ws8{word-spacing:-2.520000px;}
.ws92{word-spacing:-2.460000px;}
.wsb2{word-spacing:-2.451000px;}
.wsac{word-spacing:-2.400000px;}
.wsf{word-spacing:-2.394000px;}
.ws42{word-spacing:-2.340000px;}
.ws25{word-spacing:-2.280000px;}
.ws6f{word-spacing:-2.220000px;}
.ws54{word-spacing:-2.166000px;}
.ws18{word-spacing:-2.160000px;}
.ws75{word-spacing:-2.100000px;}
.ws7b{word-spacing:-2.064000px;}
.ws51{word-spacing:-2.040000px;}
.ws1c{word-spacing:-2.016000px;}
.ws66{word-spacing:-1.980000px;}
.ws7{word-spacing:-1.920000px;}
.ws89{word-spacing:-1.872000px;}
.ws17{word-spacing:-1.860000px;}
.ws6c{word-spacing:-1.824000px;}
.ws6{word-spacing:-1.800000px;}
.ws7a{word-spacing:-1.776000px;}
.ws85{word-spacing:-1.740000px;}
.ws4{word-spacing:-1.680000px;}
.wsa9{word-spacing:-1.632000px;}
.ws4c{word-spacing:-1.620000px;}
.ws5{word-spacing:-1.560000px;}
.ws3f{word-spacing:-1.500000px;}
.ws90{word-spacing:-1.440000px;}
.wsae{word-spacing:-1.392000px;}
.ws2d{word-spacing:-1.380000px;}
.ws20{word-spacing:-1.350000px;}
.ws87{word-spacing:-1.344000px;}
.ws26{word-spacing:-1.320000px;}
.ws4d{word-spacing:-1.260000px;}
.wsaa{word-spacing:-1.248000px;}
.ws62{word-spacing:-1.200000px;}
.ws2b{word-spacing:-1.140000px;}
.ws61{word-spacing:-1.020000px;}
.ws8d{word-spacing:-1.008000px;}
.ws14{word-spacing:-0.960000px;}
.ws57{word-spacing:-0.900000px;}
.ws6b{word-spacing:-0.864000px;}
.wsa0{word-spacing:-0.840000px;}
.ws1a{word-spacing:-0.780000px;}
.ws2c{word-spacing:-0.720000px;}
.ws81{word-spacing:-0.660000px;}
.ws82{word-spacing:-0.600000px;}
.ws4e{word-spacing:-0.540000px;}
.ws55{word-spacing:-0.513000px;}
.wsb9{word-spacing:-0.510000px;}
.ws48{word-spacing:-0.480000px;}
.ws19{word-spacing:-0.420000px;}
.ws98{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.285000px;}
.ws31{word-spacing:-0.240000px;}
.ws29{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.144000px;}
.ws3b{word-spacing:-0.120000px;}
.ws60{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws8b{word-spacing:0.048000px;}
.ws78{word-spacing:0.057000px;}
.ws83{word-spacing:0.060000px;}
.ws6e{word-spacing:0.120000px;}
.ws40{word-spacing:0.180000px;}
.wse{word-spacing:0.228000px;}
.ws79{word-spacing:0.240000px;}
.ws24{word-spacing:0.300000px;}
.ws74{word-spacing:0.360000px;}
.ws43{word-spacing:0.420000px;}
.ws6a{word-spacing:0.480000px;}
.ws27{word-spacing:0.540000px;}
.wsb3{word-spacing:0.600000px;}
.ws56{word-spacing:0.627000px;}
.ws47{word-spacing:0.660000px;}
.wsc{word-spacing:0.684000px;}
.ws5c{word-spacing:0.720000px;}
.ws77{word-spacing:0.741000px;}
.ws52{word-spacing:0.780000px;}
.ws49{word-spacing:0.840000px;}
.ws8a{word-spacing:0.864000px;}
.ws5e{word-spacing:0.900000px;}
.ws3c{word-spacing:0.960000px;}
.ws84{word-spacing:1.020000px;}
.ws71{word-spacing:1.140000px;}
.ws3d{word-spacing:1.200000px;}
.ws53{word-spacing:1.260000px;}
.ws44{word-spacing:1.320000px;}
.wsa8{word-spacing:1.344000px;}
.ws38{word-spacing:1.380000px;}
.wsa6{word-spacing:1.392000px;}
.ws68{word-spacing:1.440000px;}
.ws5a{word-spacing:1.539000px;}
.ws7c{word-spacing:1.584000px;}
.ws12{word-spacing:1.620000px;}
.ws5b{word-spacing:1.680000px;}
.ws70{word-spacing:1.740000px;}
.ws7d{word-spacing:1.776000px;}
.ws45{word-spacing:1.800000px;}
.ws4f{word-spacing:1.920000px;}
.ws88{word-spacing:2.016000px;}
.ws16{word-spacing:2.040000px;}
.ws9f{word-spacing:2.100000px;}
.ws97{word-spacing:2.160000px;}
.wsa4{word-spacing:2.220000px;}
.wsa5{word-spacing:2.280000px;}
.ws73{word-spacing:2.340000px;}
.wsa7{word-spacing:2.352000px;}
.ws46{word-spacing:2.400000px;}
.ws4a{word-spacing:2.460000px;}
.ws65{word-spacing:2.520000px;}
.ws37{word-spacing:2.580000px;}
.ws2f{word-spacing:2.640000px;}
.wsb1{word-spacing:2.679000px;}
.ws21{word-spacing:2.700000px;}
.ws91{word-spacing:2.820000px;}
.ws11{word-spacing:2.880000px;}
.ws5d{word-spacing:2.940000px;}
.ws9{word-spacing:2.964000px;}
.ws15{word-spacing:3.000000px;}
.ws93{word-spacing:3.060000px;}
.ws8e{word-spacing:3.072000px;}
.ws69{word-spacing:3.120000px;}
.wsa2{word-spacing:3.180000px;}
.ws41{word-spacing:3.240000px;}
.wsb0{word-spacing:3.249000px;}
.ws67{word-spacing:3.300000px;}
.ws8c{word-spacing:3.312000px;}
.ws7e{word-spacing:3.360000px;}
.wsa1{word-spacing:3.420000px;}
.ws13{word-spacing:3.480000px;}
.ws1b{word-spacing:3.540000px;}
.ws59{word-spacing:3.591000px;}
.wsa3{word-spacing:3.600000px;}
.wsb8{word-spacing:3.720000px;}
.wsb7{word-spacing:3.780000px;}
.ws3e{word-spacing:3.840000px;}
.ws28{word-spacing:3.900000px;}
.wsa{word-spacing:3.933000px;}
.ws86{word-spacing:3.960000px;}
.wsb{word-spacing:3.990000px;}
.ws22{word-spacing:4.080000px;}
.ws10{word-spacing:4.140000px;}
.ws39{word-spacing:4.200000px;}
.ws3a{word-spacing:4.440000px;}
.ws5f{word-spacing:4.620000px;}
.wsad{word-spacing:4.740000px;}
.ws72{word-spacing:4.920000px;}
.wsb6{word-spacing:8.160000px;}
.ws94{word-spacing:8.640000px;}
.ws63{word-spacing:1710.453600px;}
.ws99{word-spacing:1713.315600px;}
.wsaf{word-spacing:1714.503600px;}
.wsba{word-spacing:1714.719600px;}
.ws7f{word-spacing:1719.633600px;}
.ws4b{word-spacing:1722.009600px;}
.ws1d{word-spacing:1729.893600px;}
._d{margin-left:-2177.880000px;}
._10{margin-left:-2176.740000px;}
._1a{margin-left:-23.100000px;}
._1f{margin-left:-18.180000px;}
._3{margin-left:-17.064000px;}
._b{margin-left:-15.957600px;}
._20{margin-left:-14.220000px;}
._15{margin-left:-13.200000px;}
._f{margin-left:-12.120000px;}
._19{margin-left:-10.980000px;}
._a{margin-left:-9.840000px;}
._12{margin-left:-8.234400px;}
._6{margin-left:-7.056000px;}
._8{margin-left:-5.582400px;}
._2{margin-left:-4.329600px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.440000px;}
._7{width:1.680000px;}
._4{width:3.237600px;}
._5{width:4.747200px;}
._11{width:6.972000px;}
._e{width:13.788000px;}
._18{width:15.018000px;}
._17{width:25.008000px;}
._1c{width:31.632000px;}
._1d{width:33.456000px;}
._1e{width:35.760000px;}
._1b{width:39.216000px;}
._c{width:47.280000px;}
._13{width:49.008000px;}
._14{width:53.040000px;}
._16{width:55.200000px;}
._9{width:59.088000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:59.527500px;}
.y77{bottom:59.527650px;}
.y25{bottom:59.527800px;}
.y100{bottom:63.570300px;}
.y76{bottom:74.527650px;}
.y24{bottom:74.527800px;}
.yd1{bottom:77.002650px;}
.y4c{bottom:78.236250px;}
.y57{bottom:78.239850px;}
.yff{bottom:80.821050px;}
.y75{bottom:89.527650px;}
.y42{bottom:89.527800px;}
.yd0{bottom:94.253400px;}
.y4b{bottom:96.944850px;}
.yfe{bottom:98.071800px;}
.y74{bottom:104.527650px;}
.y41{bottom:104.527800px;}
.ycf{bottom:111.504150px;}
.yfd{bottom:115.322550px;}
.y23{bottom:115.653600px;}
.y9b{bottom:115.657200px;}
.y94{bottom:119.527650px;}
.y40{bottom:119.527800px;}
.y73{bottom:119.527950px;}
.yce{bottom:128.754900px;}
.yfc{bottom:132.573300px;}
.y22{bottom:134.362200px;}
.y56{bottom:134.365800px;}
.yb4{bottom:134.369550px;}
.y89{bottom:134.527800px;}
.y72{bottom:134.527950px;}
.yac{bottom:134.528250px;}
.ycd{bottom:146.005650px;}
.y88{bottom:149.527800px;}
.y71{bottom:149.527950px;}
.yab{bottom:149.528250px;}
.yfb{bottom:149.824050px;}
.y3f{bottom:153.070800px;}
.yb3{bottom:153.074550px;}
.y60{bottom:153.078150px;}
.y21{bottom:153.089100px;}
.ycc{bottom:163.256400px;}
.y87{bottom:164.527800px;}
.y70{bottom:164.527950px;}
.yaa{bottom:164.528250px;}
.yfa{bottom:167.074800px;}
.y3e{bottom:171.779550px;}
.y5f{bottom:171.783150px;}
.y20{bottom:171.794100px;}
.ybe{bottom:171.797850px;}
.y86{bottom:179.527800px;}
.y6f{bottom:179.527950px;}
.ya9{bottom:179.528250px;}
.ycb{bottom:180.507150px;}
.yf9{bottom:184.325550px;}
.y3d{bottom:190.488150px;}
.y1f{bottom:190.499100px;}
.ybd{bottom:190.502850px;}
.y85{bottom:194.527800px;}
.y6e{bottom:194.527950px;}
.ya8{bottom:194.528250px;}
.yca{bottom:197.757900px;}
.yf8{bottom:201.576300px;}
.y3c{bottom:209.196750px;}
.y4a{bottom:209.200500px;}
.y1e{bottom:209.204100px;}
.ybc{bottom:209.207850px;}
.y84{bottom:209.527800px;}
.y93{bottom:209.527950px;}
.ya7{bottom:209.528250px;}
.yf7{bottom:218.827050px;}
.ya6{bottom:224.528250px;}
.y49{bottom:227.905500px;}
.y1d{bottom:227.909100px;}
.ybb{bottom:227.912850px;}
.yc9{bottom:232.015800px;}
.yf6{bottom:236.077800px;}
.y83{bottom:246.612600px;}
.y1c{bottom:246.614100px;}
.y9a{bottom:246.617850px;}
.yb2{bottom:246.621450px;}
.yf5{bottom:253.328550px;}
.y1b{bottom:265.322850px;}
.yb1{bottom:265.326450px;}
.yf4{bottom:270.579300px;}
.y3b{bottom:276.189000px;}
.y55{bottom:284.031450px;}
.y6d{bottom:284.035200px;}
.y5e{bottom:284.038800px;}
.y1a{bottom:284.046150px;}
.yf3{bottom:287.830050px;}
.y54{bottom:302.736900px;}
.y6c{bottom:302.740200px;}
.y5d{bottom:302.743800px;}
.ya5{bottom:302.747400px;}
.y19{bottom:302.751150px;}
.yf2{bottom:305.080800px;}
.y92{bottom:313.606350px;}
.y53{bottom:321.447150px;}
.y48{bottom:321.448800px;}
.y3a{bottom:321.452400px;}
.y18{bottom:321.456150px;}
.y82{bottom:321.459750px;}
.yf1{bottom:322.331550px;}
.yf0{bottom:339.582300px;}
.y39{bottom:340.157400px;}
.y17{bottom:340.161150px;}
.y81{bottom:340.164750px;}
.y6b{bottom:340.168500px;}
.yb0{bottom:351.023550px;}
.yef{bottom:356.833050px;}
.y16{bottom:358.866150px;}
.y80{bottom:358.869750px;}
.y6a{bottom:358.873500px;}
.yc8{bottom:358.877100px;}
.y91{bottom:358.880850px;}
.yee{bottom:374.083800px;}
.y15{bottom:377.574750px;}
.y5c{bottom:377.578500px;}
.yc7{bottom:377.582100px;}
.y90{bottom:377.585850px;}
.yba{bottom:377.589450px;}
.y99{bottom:377.600400px;}
.yed{bottom:391.334550px;}
.y38{bottom:396.283500px;}
.ya4{bottom:396.287100px;}
.y8f{bottom:396.290850px;}
.yb9{bottom:396.294450px;}
.y98{bottom:396.305400px;}
.yec{bottom:408.585300px;}
.y14{bottom:414.990600px;}
.y37{bottom:414.992100px;}
.y47{bottom:414.995850px;}
.yb8{bottom:414.999450px;}
.y97{bottom:415.010400px;}
.yeb{bottom:425.836050px;}
.y13{bottom:433.700850px;}
.y7f{bottom:433.704450px;}
.y69{bottom:433.708050px;}
.y96{bottom:433.715400px;}
.yea{bottom:443.086800px;}
.y12{bottom:452.409450px;}
.y68{bottom:452.413050px;}
.ya3{bottom:452.416800px;}
.y95{bottom:452.420400px;}
.ye9{bottom:460.337550px;}
.y11{bottom:471.118050px;}
.y36{bottom:471.121800px;}
.y5b{bottom:471.125400px;}
.yaf{bottom:471.129000px;}
.y8e{bottom:471.136350px;}
.ye8{bottom:477.588300px;}
.y10{bottom:489.826800px;}
.y5a{bottom:489.830400px;}
.y52{bottom:489.834000px;}
.y7e{bottom:489.837750px;}
.y8d{bottom:489.841350px;}
.ye7{bottom:494.839050px;}
.yf{bottom:508.533750px;}
.y35{bottom:508.535400px;}
.y51{bottom:508.539000px;}
.y7d{bottom:508.542750px;}
.y8c{bottom:508.546350px;}
.ya2{bottom:508.561050px;}
.ye{bottom:527.244000px;}
.y7c{bottom:527.247750px;}
.y8b{bottom:527.251350px;}
.ya1{bottom:527.266050px;}
.ye6{bottom:529.096950px;}
.yd{bottom:545.952750px;}
.y34{bottom:545.956350px;}
.ya0{bottom:545.971050px;}
.yc6{bottom:545.974650px;}
.yc{bottom:564.661350px;}
.y9f{bottom:564.676050px;}
.yc5{bottom:564.679650px;}
.ye5{bottom:581.098350px;}
.yb{bottom:583.370100px;}
.yb7{bottom:583.377300px;}
.y9e{bottom:583.381050px;}
.yc4{bottom:583.384650px;}
.ye4{bottom:598.349100px;}
.ya{bottom:602.078700px;}
.yb6{bottom:602.082300px;}
.y67{bottom:602.086050px;}
.yc3{bottom:602.089650px;}
.ye3{bottom:615.599850px;}
.y9{bottom:620.787300px;}
.y66{bottom:620.791050px;}
.yc2{bottom:620.794650px;}
.ye2{bottom:632.850600px;}
.y33{bottom:639.496050px;}
.yc1{bottom:639.499650px;}
.y65{bottom:639.507000px;}
.y8a{bottom:644.491050px;}
.ye1{bottom:650.101350px;}
.y8{bottom:658.204650px;}
.y64{bottom:658.212000px;}
.y7b{bottom:658.215750px;}
.ye0{bottom:667.352100px;}
.y32{bottom:676.913400px;}
.y7{bottom:676.917000px;}
.y7a{bottom:676.920750px;}
.ydf{bottom:684.602850px;}
.y6{bottom:695.622000px;}
.y79{bottom:695.625750px;}
.yde{bottom:701.853600px;}
.y31{bottom:714.330750px;}
.yae{bottom:714.345300px;}
.ydd{bottom:719.104350px;}
.y30{bottom:733.039350px;}
.y9d{bottom:733.042950px;}
.yad{bottom:733.050300px;}
.ydc{bottom:736.355100px;}
.y2f{bottom:751.747950px;}
.y46{bottom:751.755300px;}
.ydb{bottom:753.605850px;}
.yc0{bottom:762.614100px;}
.yb5{bottom:770.455050px;}
.y2e{bottom:770.456700px;}
.y45{bottom:770.460300px;}
.yda{bottom:770.856600px;}
.y5{bottom:775.187400px;}
.yd9{bottom:788.107350px;}
.y59{bottom:789.162150px;}
.y2d{bottom:789.165300px;}
.y78{bottom:789.168900px;}
.y4{bottom:796.193400px;}
.yd8{bottom:805.358100px;}
.y58{bottom:807.872400px;}
.y2c{bottom:807.873900px;}
.ybf{bottom:807.877650px;}
.y63{bottom:807.881250px;}
.yd7{bottom:822.608850px;}
.y2b{bottom:826.582650px;}
.y62{bottom:826.586250px;}
.y50{bottom:826.593600px;}
.yd6{bottom:839.859600px;}
.y3{bottom:842.729250px;}
.y2a{bottom:845.291250px;}
.y4f{bottom:845.298600px;}
.y9c{bottom:850.286250px;}
.yd5{bottom:857.110350px;}
.y29{bottom:864.000000px;}
.y4e{bottom:864.003600px;}
.y44{bottom:864.007350px;}
.y2{bottom:871.217250px;}
.yd4{bottom:874.361100px;}
.y28{bottom:882.708600px;}
.y43{bottom:882.712350px;}
.yd3{bottom:891.611850px;}
.y1{bottom:899.705250px;}
.y27{bottom:901.417350px;}
.y61{bottom:904.385250px;}
.yd2{bottom:908.862600px;}
.y26{bottom:954.666900px;}
.h9{height:31.482000px;}
.h6{height:43.200000px;}
.hb{height:45.900000px;}
.ha{height:50.004000px;}
.h7{height:50.868000px;}
.h5{height:51.300000px;}
.h4{height:54.000000px;}
.h8{height:66.672000px;}
.h3{height:67.824000px;}
.h2{height:88.896000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.xa{left:67.869900px;}
.xb{left:69.564300px;}
.x10{left:70.760700px;}
.x6{left:72.283500px;}
.x1{left:76.296450px;}
.x3{left:79.757850px;}
.x2{left:81.024450px;}
.x7{left:93.104100px;}
.x8{left:94.367100px;}
.xd{left:97.947450px;}
.x5{left:101.375850px;}
.x4{left:102.567450px;}
.x15{left:105.105150px;}
.x14{left:106.868100px;}
.xe{left:352.557000px;}
.xf{left:357.117450px;}
.x11{left:588.110550px;}
.x12{left:594.289350px;}
.x9{left:605.505300px;}
.xc{left:608.475300px;}
.x13{left:614.589750px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.694933pt;}
.ls12{letter-spacing:-3.120000pt;}
.ls38{letter-spacing:-2.448000pt;}
.ls1f{letter-spacing:-0.720000pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls28{letter-spacing:-0.354667pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.217653pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.202667pt;}
.ls9{letter-spacing:-0.170667pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.155467pt;}
.ls36{letter-spacing:-0.152000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.101333pt;}
.ls26{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls25{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.026667pt;}
.ls1{letter-spacing:0.050667pt;}
.ls10{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.101333pt;}
.lsf{letter-spacing:0.106667pt;}
.ls29{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.152000pt;}
.lse{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.201914pt;}
.ls1e{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.253333pt;}
.lsb{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.346667pt;}
.ls23{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.385922pt;}
.ls22{letter-spacing:0.400000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls37{letter-spacing:1.120000pt;}
.ls2e{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.200000pt;}
.ls18{letter-spacing:1.350400pt;}
.ws6d{word-spacing:-53.333333pt;}
.ws0{word-spacing:-18.858667pt;}
.ws1{word-spacing:-15.168000pt;}
.ws35{word-spacing:-13.824000pt;}
.ws36{word-spacing:-12.576000pt;}
.ws8f{word-spacing:-12.336000pt;}
.ws32{word-spacing:-11.616000pt;}
.ws58{word-spacing:-11.376000pt;}
.wsbe{word-spacing:-11.088000pt;}
.wsb4{word-spacing:-10.896000pt;}
.ws1e{word-spacing:-10.560000pt;}
.ws34{word-spacing:-10.453333pt;}
.ws2{word-spacing:-10.400000pt;}
.ws33{word-spacing:-10.240000pt;}
.ws1f{word-spacing:-10.133333pt;}
.ws80{word-spacing:-9.973333pt;}
.wsbb{word-spacing:-9.520000pt;}
.ws9d{word-spacing:-9.045333pt;}
.ws9c{word-spacing:-8.917333pt;}
.wsbd{word-spacing:-8.840000pt;}
.ws9b{word-spacing:-8.320000pt;}
.ws64{word-spacing:-6.529600pt;}
.wsbc{word-spacing:-6.392000pt;}
.ws9a{word-spacing:-6.374133pt;}
.wsab{word-spacing:-6.311947pt;}
.ws95{word-spacing:-3.253333pt;}
.ws96{word-spacing:-2.560000pt;}
.ws2a{word-spacing:-2.506667pt;}
.ws9e{word-spacing:-2.453333pt;}
.wsb5{word-spacing:-2.400000pt;}
.ws50{word-spacing:-2.346667pt;}
.ws2e{word-spacing:-2.293333pt;}
.ws76{word-spacing:-2.280000pt;}
.ws8{word-spacing:-2.240000pt;}
.ws92{word-spacing:-2.186667pt;}
.wsb2{word-spacing:-2.178667pt;}
.wsac{word-spacing:-2.133333pt;}
.wsf{word-spacing:-2.128000pt;}
.ws42{word-spacing:-2.080000pt;}
.ws25{word-spacing:-2.026667pt;}
.ws6f{word-spacing:-1.973333pt;}
.ws54{word-spacing:-1.925333pt;}
.ws18{word-spacing:-1.920000pt;}
.ws75{word-spacing:-1.866667pt;}
.ws7b{word-spacing:-1.834667pt;}
.ws51{word-spacing:-1.813333pt;}
.ws1c{word-spacing:-1.792000pt;}
.ws66{word-spacing:-1.760000pt;}
.ws7{word-spacing:-1.706667pt;}
.ws89{word-spacing:-1.664000pt;}
.ws17{word-spacing:-1.653333pt;}
.ws6c{word-spacing:-1.621333pt;}
.ws6{word-spacing:-1.600000pt;}
.ws7a{word-spacing:-1.578667pt;}
.ws85{word-spacing:-1.546667pt;}
.ws4{word-spacing:-1.493333pt;}
.wsa9{word-spacing:-1.450667pt;}
.ws4c{word-spacing:-1.440000pt;}
.ws5{word-spacing:-1.386667pt;}
.ws3f{word-spacing:-1.333333pt;}
.ws90{word-spacing:-1.280000pt;}
.wsae{word-spacing:-1.237333pt;}
.ws2d{word-spacing:-1.226667pt;}
.ws20{word-spacing:-1.200000pt;}
.ws87{word-spacing:-1.194667pt;}
.ws26{word-spacing:-1.173333pt;}
.ws4d{word-spacing:-1.120000pt;}
.wsaa{word-spacing:-1.109333pt;}
.ws62{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-1.013333pt;}
.ws61{word-spacing:-0.906667pt;}
.ws8d{word-spacing:-0.896000pt;}
.ws14{word-spacing:-0.853333pt;}
.ws57{word-spacing:-0.800000pt;}
.ws6b{word-spacing:-0.768000pt;}
.wsa0{word-spacing:-0.746667pt;}
.ws1a{word-spacing:-0.693333pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws81{word-spacing:-0.586667pt;}
.ws82{word-spacing:-0.533333pt;}
.ws4e{word-spacing:-0.480000pt;}
.ws55{word-spacing:-0.456000pt;}
.wsb9{word-spacing:-0.453333pt;}
.ws48{word-spacing:-0.426667pt;}
.ws19{word-spacing:-0.373333pt;}
.ws98{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.253333pt;}
.ws31{word-spacing:-0.213333pt;}
.ws29{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.128000pt;}
.ws3b{word-spacing:-0.106667pt;}
.ws60{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.042667pt;}
.ws78{word-spacing:0.050667pt;}
.ws83{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.106667pt;}
.ws40{word-spacing:0.160000pt;}
.wse{word-spacing:0.202667pt;}
.ws79{word-spacing:0.213333pt;}
.ws24{word-spacing:0.266667pt;}
.ws74{word-spacing:0.320000pt;}
.ws43{word-spacing:0.373333pt;}
.ws6a{word-spacing:0.426667pt;}
.ws27{word-spacing:0.480000pt;}
.wsb3{word-spacing:0.533333pt;}
.ws56{word-spacing:0.557333pt;}
.ws47{word-spacing:0.586667pt;}
.wsc{word-spacing:0.608000pt;}
.ws5c{word-spacing:0.640000pt;}
.ws77{word-spacing:0.658667pt;}
.ws52{word-spacing:0.693333pt;}
.ws49{word-spacing:0.746667pt;}
.ws8a{word-spacing:0.768000pt;}
.ws5e{word-spacing:0.800000pt;}
.ws3c{word-spacing:0.853333pt;}
.ws84{word-spacing:0.906667pt;}
.ws71{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.066667pt;}
.ws53{word-spacing:1.120000pt;}
.ws44{word-spacing:1.173333pt;}
.wsa8{word-spacing:1.194667pt;}
.ws38{word-spacing:1.226667pt;}
.wsa6{word-spacing:1.237333pt;}
.ws68{word-spacing:1.280000pt;}
.ws5a{word-spacing:1.368000pt;}
.ws7c{word-spacing:1.408000pt;}
.ws12{word-spacing:1.440000pt;}
.ws5b{word-spacing:1.493333pt;}
.ws70{word-spacing:1.546667pt;}
.ws7d{word-spacing:1.578667pt;}
.ws45{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.706667pt;}
.ws88{word-spacing:1.792000pt;}
.ws16{word-spacing:1.813333pt;}
.ws9f{word-spacing:1.866667pt;}
.ws97{word-spacing:1.920000pt;}
.wsa4{word-spacing:1.973333pt;}
.wsa5{word-spacing:2.026667pt;}
.ws73{word-spacing:2.080000pt;}
.wsa7{word-spacing:2.090667pt;}
.ws46{word-spacing:2.133333pt;}
.ws4a{word-spacing:2.186667pt;}
.ws65{word-spacing:2.240000pt;}
.ws37{word-spacing:2.293333pt;}
.ws2f{word-spacing:2.346667pt;}
.wsb1{word-spacing:2.381333pt;}
.ws21{word-spacing:2.400000pt;}
.ws91{word-spacing:2.506667pt;}
.ws11{word-spacing:2.560000pt;}
.ws5d{word-spacing:2.613333pt;}
.ws9{word-spacing:2.634667pt;}
.ws15{word-spacing:2.666667pt;}
.ws93{word-spacing:2.720000pt;}
.ws8e{word-spacing:2.730667pt;}
.ws69{word-spacing:2.773333pt;}
.wsa2{word-spacing:2.826667pt;}
.ws41{word-spacing:2.880000pt;}
.wsb0{word-spacing:2.888000pt;}
.ws67{word-spacing:2.933333pt;}
.ws8c{word-spacing:2.944000pt;}
.ws7e{word-spacing:2.986667pt;}
.wsa1{word-spacing:3.040000pt;}
.ws13{word-spacing:3.093333pt;}
.ws1b{word-spacing:3.146667pt;}
.ws59{word-spacing:3.192000pt;}
.wsa3{word-spacing:3.200000pt;}
.wsb8{word-spacing:3.306667pt;}
.wsb7{word-spacing:3.360000pt;}
.ws3e{word-spacing:3.413333pt;}
.ws28{word-spacing:3.466667pt;}
.wsa{word-spacing:3.496000pt;}
.ws86{word-spacing:3.520000pt;}
.wsb{word-spacing:3.546667pt;}
.ws22{word-spacing:3.626667pt;}
.ws10{word-spacing:3.680000pt;}
.ws39{word-spacing:3.733333pt;}
.ws3a{word-spacing:3.946667pt;}
.ws5f{word-spacing:4.106667pt;}
.wsad{word-spacing:4.213333pt;}
.ws72{word-spacing:4.373333pt;}
.wsb6{word-spacing:7.253333pt;}
.ws94{word-spacing:7.680000pt;}
.ws63{word-spacing:1520.403200pt;}
.ws99{word-spacing:1522.947200pt;}
.wsaf{word-spacing:1524.003200pt;}
.wsba{word-spacing:1524.195200pt;}
.ws7f{word-spacing:1528.563200pt;}
.ws4b{word-spacing:1530.675200pt;}
.ws1d{word-spacing:1537.683200pt;}
._d{margin-left:-1935.893333pt;}
._10{margin-left:-1934.880000pt;}
._1a{margin-left:-20.533333pt;}
._1f{margin-left:-16.160000pt;}
._3{margin-left:-15.168000pt;}
._b{margin-left:-14.184533pt;}
._20{margin-left:-12.640000pt;}
._15{margin-left:-11.733333pt;}
._f{margin-left:-10.773333pt;}
._19{margin-left:-9.760000pt;}
._a{margin-left:-8.746667pt;}
._12{margin-left:-7.319467pt;}
._6{margin-left:-6.272000pt;}
._8{margin-left:-4.962133pt;}
._2{margin-left:-3.848533pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.280000pt;}
._7{width:1.493333pt;}
._4{width:2.877867pt;}
._5{width:4.219733pt;}
._11{width:6.197333pt;}
._e{width:12.256000pt;}
._18{width:13.349333pt;}
._17{width:22.229333pt;}
._1c{width:28.117333pt;}
._1d{width:29.738667pt;}
._1e{width:31.786667pt;}
._1b{width:34.858667pt;}
._c{width:42.026667pt;}
._13{width:43.562667pt;}
._14{width:47.146667pt;}
._16{width:49.066667pt;}
._9{width:52.522667pt;}
.fs4{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:52.913333pt;}
.y77{bottom:52.913467pt;}
.y25{bottom:52.913600pt;}
.y100{bottom:56.506933pt;}
.y76{bottom:66.246800pt;}
.y24{bottom:66.246933pt;}
.yd1{bottom:68.446800pt;}
.y4c{bottom:69.543333pt;}
.y57{bottom:69.546533pt;}
.yff{bottom:71.840933pt;}
.y75{bottom:79.580133pt;}
.y42{bottom:79.580267pt;}
.yd0{bottom:83.780800pt;}
.y4b{bottom:86.173200pt;}
.yfe{bottom:87.174933pt;}
.y74{bottom:92.913467pt;}
.y41{bottom:92.913600pt;}
.ycf{bottom:99.114800pt;}
.yfd{bottom:102.508933pt;}
.y23{bottom:102.803200pt;}
.y9b{bottom:102.806400pt;}
.y94{bottom:106.246800pt;}
.y40{bottom:106.246933pt;}
.y73{bottom:106.247067pt;}
.yce{bottom:114.448800pt;}
.yfc{bottom:117.842933pt;}
.y22{bottom:119.433067pt;}
.y56{bottom:119.436267pt;}
.yb4{bottom:119.439600pt;}
.y89{bottom:119.580267pt;}
.y72{bottom:119.580400pt;}
.yac{bottom:119.580667pt;}
.ycd{bottom:129.782800pt;}
.y88{bottom:132.913600pt;}
.y71{bottom:132.913733pt;}
.yab{bottom:132.914000pt;}
.yfb{bottom:133.176933pt;}
.y3f{bottom:136.062933pt;}
.yb3{bottom:136.066267pt;}
.y60{bottom:136.069467pt;}
.y21{bottom:136.079200pt;}
.ycc{bottom:145.116800pt;}
.y87{bottom:146.246933pt;}
.y70{bottom:146.247067pt;}
.yaa{bottom:146.247333pt;}
.yfa{bottom:148.510933pt;}
.y3e{bottom:152.692933pt;}
.y5f{bottom:152.696133pt;}
.y20{bottom:152.705867pt;}
.ybe{bottom:152.709200pt;}
.y86{bottom:159.580267pt;}
.y6f{bottom:159.580400pt;}
.ya9{bottom:159.580667pt;}
.ycb{bottom:160.450800pt;}
.yf9{bottom:163.844933pt;}
.y3d{bottom:169.322800pt;}
.y1f{bottom:169.332533pt;}
.ybd{bottom:169.335867pt;}
.y85{bottom:172.913600pt;}
.y6e{bottom:172.913733pt;}
.ya8{bottom:172.914000pt;}
.yca{bottom:175.784800pt;}
.yf8{bottom:179.178933pt;}
.y3c{bottom:185.952667pt;}
.y4a{bottom:185.956000pt;}
.y1e{bottom:185.959200pt;}
.ybc{bottom:185.962533pt;}
.y84{bottom:186.246933pt;}
.y93{bottom:186.247067pt;}
.ya7{bottom:186.247333pt;}
.yf7{bottom:194.512933pt;}
.ya6{bottom:199.580667pt;}
.y49{bottom:202.582667pt;}
.y1d{bottom:202.585867pt;}
.ybb{bottom:202.589200pt;}
.yc9{bottom:206.236267pt;}
.yf6{bottom:209.846933pt;}
.y83{bottom:219.211200pt;}
.y1c{bottom:219.212533pt;}
.y9a{bottom:219.215867pt;}
.yb2{bottom:219.219067pt;}
.yf5{bottom:225.180933pt;}
.y1b{bottom:235.842533pt;}
.yb1{bottom:235.845733pt;}
.yf4{bottom:240.514933pt;}
.y3b{bottom:245.501333pt;}
.y55{bottom:252.472400pt;}
.y6d{bottom:252.475733pt;}
.y5e{bottom:252.478933pt;}
.y1a{bottom:252.485467pt;}
.yf3{bottom:255.848933pt;}
.y54{bottom:269.099467pt;}
.y6c{bottom:269.102400pt;}
.y5d{bottom:269.105600pt;}
.ya5{bottom:269.108800pt;}
.y19{bottom:269.112133pt;}
.yf2{bottom:271.182933pt;}
.y92{bottom:278.761200pt;}
.y53{bottom:285.730800pt;}
.y48{bottom:285.732267pt;}
.y3a{bottom:285.735467pt;}
.y18{bottom:285.738800pt;}
.y82{bottom:285.742000pt;}
.yf1{bottom:286.516933pt;}
.yf0{bottom:301.850933pt;}
.y39{bottom:302.362133pt;}
.y17{bottom:302.365467pt;}
.y81{bottom:302.368667pt;}
.y6b{bottom:302.372000pt;}
.yb0{bottom:312.020933pt;}
.yef{bottom:317.184933pt;}
.y16{bottom:318.992133pt;}
.y80{bottom:318.995333pt;}
.y6a{bottom:318.998667pt;}
.yc8{bottom:319.001867pt;}
.y91{bottom:319.005200pt;}
.yee{bottom:332.518933pt;}
.y15{bottom:335.622000pt;}
.y5c{bottom:335.625333pt;}
.yc7{bottom:335.628533pt;}
.y90{bottom:335.631867pt;}
.yba{bottom:335.635067pt;}
.y99{bottom:335.644800pt;}
.yed{bottom:347.852933pt;}
.y38{bottom:352.252000pt;}
.ya4{bottom:352.255200pt;}
.y8f{bottom:352.258533pt;}
.yb9{bottom:352.261733pt;}
.y98{bottom:352.271467pt;}
.yec{bottom:363.186933pt;}
.y14{bottom:368.880533pt;}
.y37{bottom:368.881867pt;}
.y47{bottom:368.885200pt;}
.yb8{bottom:368.888400pt;}
.y97{bottom:368.898133pt;}
.yeb{bottom:378.520933pt;}
.y13{bottom:385.511867pt;}
.y7f{bottom:385.515067pt;}
.y69{bottom:385.518267pt;}
.y96{bottom:385.524800pt;}
.yea{bottom:393.854933pt;}
.y12{bottom:402.141733pt;}
.y68{bottom:402.144933pt;}
.ya3{bottom:402.148267pt;}
.y95{bottom:402.151467pt;}
.ye9{bottom:409.188933pt;}
.y11{bottom:418.771600pt;}
.y36{bottom:418.774933pt;}
.y5b{bottom:418.778133pt;}
.yaf{bottom:418.781333pt;}
.y8e{bottom:418.787867pt;}
.ye8{bottom:424.522933pt;}
.y10{bottom:435.401600pt;}
.y5a{bottom:435.404800pt;}
.y52{bottom:435.408000pt;}
.y7e{bottom:435.411333pt;}
.y8d{bottom:435.414533pt;}
.ye7{bottom:439.856933pt;}
.yf{bottom:452.030000pt;}
.y35{bottom:452.031467pt;}
.y51{bottom:452.034667pt;}
.y7d{bottom:452.038000pt;}
.y8c{bottom:452.041200pt;}
.ya2{bottom:452.054267pt;}
.ye{bottom:468.661333pt;}
.y7c{bottom:468.664667pt;}
.y8b{bottom:468.667867pt;}
.ya1{bottom:468.680933pt;}
.ye6{bottom:470.308400pt;}
.yd{bottom:485.291333pt;}
.y34{bottom:485.294533pt;}
.ya0{bottom:485.307600pt;}
.yc6{bottom:485.310800pt;}
.yc{bottom:501.921200pt;}
.y9f{bottom:501.934267pt;}
.yc5{bottom:501.937467pt;}
.ye5{bottom:516.531867pt;}
.yb{bottom:518.551200pt;}
.yb7{bottom:518.557600pt;}
.y9e{bottom:518.560933pt;}
.yc4{bottom:518.564133pt;}
.ye4{bottom:531.865867pt;}
.ya{bottom:535.181067pt;}
.yb6{bottom:535.184267pt;}
.y67{bottom:535.187600pt;}
.yc3{bottom:535.190800pt;}
.ye3{bottom:547.199867pt;}
.y9{bottom:551.810933pt;}
.y66{bottom:551.814267pt;}
.yc2{bottom:551.817467pt;}
.ye2{bottom:562.533867pt;}
.y33{bottom:568.440933pt;}
.yc1{bottom:568.444133pt;}
.y65{bottom:568.450667pt;}
.y8a{bottom:572.880933pt;}
.ye1{bottom:577.867867pt;}
.y8{bottom:585.070800pt;}
.y64{bottom:585.077333pt;}
.y7b{bottom:585.080667pt;}
.ye0{bottom:593.201867pt;}
.y32{bottom:601.700800pt;}
.y7{bottom:601.704000pt;}
.y7a{bottom:601.707333pt;}
.ydf{bottom:608.535867pt;}
.y6{bottom:618.330667pt;}
.y79{bottom:618.334000pt;}
.yde{bottom:623.869867pt;}
.y31{bottom:634.960667pt;}
.yae{bottom:634.973600pt;}
.ydd{bottom:639.203867pt;}
.y30{bottom:651.590533pt;}
.y9d{bottom:651.593733pt;}
.yad{bottom:651.600267pt;}
.ydc{bottom:654.537867pt;}
.y2f{bottom:668.220400pt;}
.y46{bottom:668.226933pt;}
.ydb{bottom:669.871867pt;}
.yc0{bottom:677.879200pt;}
.yb5{bottom:684.848933pt;}
.y2e{bottom:684.850400pt;}
.y45{bottom:684.853600pt;}
.yda{bottom:685.205867pt;}
.y5{bottom:689.055467pt;}
.yd9{bottom:700.539867pt;}
.y59{bottom:701.477467pt;}
.y2d{bottom:701.480267pt;}
.y78{bottom:701.483467pt;}
.y4{bottom:707.727467pt;}
.yd8{bottom:715.873867pt;}
.y58{bottom:718.108800pt;}
.y2c{bottom:718.110133pt;}
.ybf{bottom:718.113467pt;}
.y63{bottom:718.116667pt;}
.yd7{bottom:731.207867pt;}
.y2b{bottom:734.740133pt;}
.y62{bottom:734.743333pt;}
.y50{bottom:734.749867pt;}
.yd6{bottom:746.541867pt;}
.y3{bottom:749.092667pt;}
.y2a{bottom:751.370000pt;}
.y4f{bottom:751.376533pt;}
.y9c{bottom:755.810000pt;}
.yd5{bottom:761.875867pt;}
.y29{bottom:768.000000pt;}
.y4e{bottom:768.003200pt;}
.y44{bottom:768.006533pt;}
.y2{bottom:774.415333pt;}
.yd4{bottom:777.209867pt;}
.y28{bottom:784.629867pt;}
.y43{bottom:784.633200pt;}
.yd3{bottom:792.543867pt;}
.y1{bottom:799.738000pt;}
.y27{bottom:801.259867pt;}
.y61{bottom:803.898000pt;}
.yd2{bottom:807.877867pt;}
.y26{bottom:848.592800pt;}
.h9{height:27.984000pt;}
.h6{height:38.400000pt;}
.hb{height:40.800000pt;}
.ha{height:44.448000pt;}
.h7{height:45.216000pt;}
.h5{height:45.600000pt;}
.h4{height:48.000000pt;}
.h8{height:59.264000pt;}
.h3{height:60.288000pt;}
.h2{height:79.018667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.xa{left:60.328800pt;}
.xb{left:61.834933pt;}
.x10{left:62.898400pt;}
.x6{left:64.252000pt;}
.x1{left:67.819067pt;}
.x3{left:70.895867pt;}
.x2{left:72.021733pt;}
.x7{left:82.759200pt;}
.x8{left:83.881867pt;}
.xd{left:87.064400pt;}
.x5{left:90.111867pt;}
.x4{left:91.171067pt;}
.x15{left:93.426800pt;}
.x14{left:94.993867pt;}
.xe{left:313.384000pt;}
.xf{left:317.437733pt;}
.x11{left:522.764933pt;}
.x12{left:528.257200pt;}
.x9{left:538.226933pt;}
.xc{left:540.866933pt;}
.x13{left:546.302000pt;}
}




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